diff --git a/mods/.cleaner/LICENSE.txt b/mods/.cleaner/LICENSE.txt new file mode 100644 index 00000000..357bcd0f --- /dev/null +++ b/mods/.cleaner/LICENSE.txt @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright © 2021 Jordan Irwin (AntumDeluge) + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/mods/.cleaner/README.md b/mods/.cleaner/README.md new file mode 100644 index 00000000..70253ef7 --- /dev/null +++ b/mods/.cleaner/README.md @@ -0,0 +1,86 @@ +## Cleaner mod for Luanti + +### Description: + +A [Luanti (Minetest)][Luanti] mod that can be used to remove/replace unknown entities, nodes, & items. Originally forked from [PilzAdam's ***clean*** mod][f.pilzadam]. + +![screenshot](screenshot.png) + +### Licensing: + +- Code: [MIT](LICENSE.txt) +- Textures: CC0 + +### Requirements: + +- Luanti minimum version: 5.0 +- Depends: none + +### Usage: + +Registering items, entities, etc. for cleaning can be done in `cleaner.json` in the world directory. If it does not exist it will be created automatically when the server is started. + +It is formatted as follows: +```json +{ + "entities" : + { + "remove" : [] + }, + "items" : + { + "replace" : {} + }, + "nodes" : + { + "remove" : [], + "replace" : {} + }, + "ores" : + { + "remove" : [] + } +} +``` + +Cleaning nodes example: +```json +{ + "nodes" : + { + "remove" : [ + "old:node_1", + "old:node_2", + ], + "replace" : { + "old:node_3" : "new:node_1", + "old:node_4" : "new:node_2", + } + }, +} +``` + +`remove` key works for nodes, entities, & ores. `replace` key works for nodes & items. Their functions are self-explanatory. + +#### Settings: + +``` +cleaner.unsafe +- Enables unsafe methods & commands (remove_ore). +- type: bool +- default: false +``` + +### Links: + +- [![ContentDB](https://content.luanti.org/packages/AntumDeluge/cleaner/shields/title/)][ContentDB] +- [Forum](https://forum.luanti.org/viewtopic.php?t=18381) +- [Git repo](https://github.com/AntumMT/mod-cleaner) +- [Reference](https://antummt.github.io/mod-cleaner/reference/latest/) +- [Changelog](changelog.txt) +- [TODO](TODO.txt) + + +[Luanti]: https://luanti.org/ +[f.pilzadam]: https://forum.luanti.org/viewtopic.php?t=2777 +[ContentDB]: https://content.luanti.org/packages/AntumDeluge/cleaner/ diff --git a/mods/.cleaner/TODO.txt b/mods/.cleaner/TODO.txt new file mode 100644 index 00000000..b800544a --- /dev/null +++ b/mods/.cleaner/TODO.txt @@ -0,0 +1,14 @@ + +TODO: +- update world file when chat commands are used +- update inventories when items are replaced: + - creative + - storage (chests, etc.) +- add LBM when removing an item if it is a node +- add "radius" option for pencil or "xlen", "ylen", & "zlen" options +- add "xrotate" & "zrorate" modes for pencil +- don't require "server" priv for "find_unknown_nodes" & "find_neaby_nodes" commands +- add chat command to find nodes with specified attributes +- may be better to update player inventories on login than add aliases for items +- use aliases for unknown nodes instead of LBM +- only use LBM when a node to replace is still registered diff --git a/mods/.cleaner/api.lua b/mods/.cleaner/api.lua new file mode 100644 index 00000000..a8941489 --- /dev/null +++ b/mods/.cleaner/api.lua @@ -0,0 +1,194 @@ + +--- Cleaner API +-- +-- @topic api + + +local replace_items = {} +local replace_nodes = {} + + +--- Retrieves list of items to be replaced. +-- +-- @treturn table Items to be replaced. +function cleaner.get_replace_items() + return replace_items +end + +--- Retrieves list of nodes to be replaced. +-- +-- @treturn table Nodes to be replaced. +function cleaner.get_replace_nodes() + return replace_nodes +end + + +--- Registers an entity to be removed. +-- +-- @tparam string src Entity technical name. +function cleaner.register_entity_removal(src) + core.register_entity(":" .. src, { + on_activate = function(self, ...) + self.object:remove() + end, + }) +end + +--- Registers a node to be removed. +-- +-- @tparam string src Node technical name. +function cleaner.register_node_removal(src) + core.register_node(":" .. src, { + groups = {to_remove=1}, + }) +end + +local function update_list(inv, listname, src, tgt) + if not inv then + cleaner.log("error", "cannot update list of unknown inventory") + return + end + + local list = inv:get_list(listname) + if not list then + cleaner.log("warning", "unknown inventory list: " .. listname) + return + end + + for idx, stack in pairs(list) do + if stack:get_name() == src then + local new_stack = ItemStack(tgt) + new_stack:set_count(stack:get_count()) + inv:set_stack(listname, idx, new_stack) + end + end +end + +--- Replaces an item with another registered item. +-- +-- @tparam string src Technical name of item to be replaced. +-- @tparam string tgt Technical name of item to be used in place. +-- @tparam[opt] bool update_players `true` updates inventory lists associated with players (default: `false`). +function cleaner.replace_item(src, tgt, update_players) + update_players = not (update_players ~= true) + + if not core.registered_items[tgt] then + return false, S('Cannot use unknown item "@1" as replacement.', tgt) + end + + if not core.registered_items[src] then + cleaner.log("info", "\"" .. src .. "\" not registered, not unregistering") + else + cleaner.log("warning", "overriding registered item \"" .. src .. "\"") + + core.unregister_item(src) + if core.registered_items[src] then + cleaner.log("error", "could not unregister \"" .. src .. "\"") + end + end + + core.register_alias(src, tgt) + if core.registered_aliases[src] == tgt then + cleaner.log("info", "registered alias \"" .. src .. "\" for \"" .. tgt .. "\"") + else + cleaner.log("error", "could not register alias \"" .. src .. "\" for \"" .. tgt .. "\"") + end + + local bags = core.get_modpath("bags") ~= nil + local armor = core.get_modpath("3d_armor") ~= nil + + -- update player inventories + if update_players then + for _, player in ipairs(core.get_connected_players()) do + local pinv = player:get_inventory() + update_list(pinv, "main", src, tgt) + + if bags then + for i = 1, 4 do + update_list(pinv, "bag" .. i .. "contents", src, tgt) + end + end + + if armor then + local armor_inv = core.get_inventory({type="detached", name=player:get_player_name() .. "_armor"}) + update_list(armor_inv, "armor", src, tgt) + end + end + end + + return true +end + +--- Registeres an item to be replaced. +-- +-- @tparam string src Technical name of item to be replaced. +-- @tparam string tgt Technical name of item to be used in place. +function cleaner.register_item_replacement(src, tgt) + replace_items[src] = tgt +end + +--- Registers a node to be replaced. +-- +-- @tparam string src Technical name of node to be replaced. +-- @tparam string tgt Technical name of node to be used in place. +function cleaner.register_node_replacement(src, tgt) + core.register_node(":" .. src, { + groups = {to_replace=1}, + }) + + replace_nodes[src] = tgt + cleaner.register_item_replacement(src, tgt) +end + + +--- Unsafe Methods. +-- +-- Enabled with [cleaner.unsafe](settings.html#cleaner.unsafe) setting. +-- +-- @section unsafe + + +if cleaner.unsafe then + local remove_ores = {} + + --- Retrieves list of ores to be removed. + -- + -- @treturn table Ores to be removed. + function cleaner.get_remove_ores() + return remove_ores + end + + --- Registers an ore to be removed after server startup. + -- + -- @tparam string src Ore technical name. + function cleaner.register_ore_removal(src) + table.insert(remove_ores, src) + end + + --- Removes an ore definition. + -- + -- @tparam string src Ore technical name. + function cleaner.remove_ore(src) + local remove_ids = {} + local total_removed = 0 + local registered = false + + for id, def in pairs(core.registered_ores) do + if def.ore == src then + table.insert(remove_ids, id) + registered = true + end + end + + for _, id in ipairs(remove_ids) do + core.registered_ores[id] = nil + if core.registered_ores[id] then + cleaner.log("error", "unable to unregister ore " .. id) + else + total_removed = total_removed + 1 + end + end + + return registered, total_removed + end +end diff --git a/mods/.cleaner/changelog.txt b/mods/.cleaner/changelog.txt new file mode 100644 index 00000000..02140818 --- /dev/null +++ b/mods/.cleaner/changelog.txt @@ -0,0 +1,63 @@ + +2025-01-18 +---------- +- fix undeclared global +- added nil check after reading world data file + + +v1.2.1 +---- +- use sounds mod for sounds +- added nil check after reading world data file + + +v1.2 +---- +- added API +- added support for unregistering ores (unsafe) +- added setting for enabling "unsafe" methods & commands +- all types are loaded from /cleaner.json file +- added localization support +- added Spanish localization +- added pencil tool for erasing, adding, & swapping nodes +- added chat commands: + - remove_entities + - remove_nodes + - replace_items + - replace_nodes + - find_unknown_nodes + - find_nearby_nodes + - remove_ores (unsafe) + - ctool (manages wielded cleaner tool settings) + +v1.1 +---- +- uses "register_lbm" with "run_at_every_load" instead of "register_abm" to save resources + - suggested by bell07 ( https://forum.luanti.org/viewtopic.php?p=325519#p325519 ) + +v1.0 +---- +- changed license to MIT +- "clean_entities" & "clean_nodes" files now use json format +- nodes can be replaced with other nodes +- items can be replaced with other items (/clean_items.json file) + +v0.4 +---- +- changed technical name to "cleaner" +- re-added functionality to clean nodes + +v0.3 +---- +- removed functionality for cleaning anything other than entities + +v0.2 +---- +- changed license to CC0 +- added some log output +- entities to be cleaned can be configured & loaded from world directory + +v0.1 +---- +- forked from PilzAdam's "clean" mod @ forum post updated: 2013-06-08 +- replaced deprecated call to "minetest.env" diff --git a/mods/.cleaner/chat.lua b/mods/.cleaner/chat.lua new file mode 100644 index 00000000..3f7cf43c --- /dev/null +++ b/mods/.cleaner/chat.lua @@ -0,0 +1,660 @@ + +--- Cleaner Chat Commands +-- +-- @topic commands + + +local S = core.get_translator(cleaner.modname) + + +local aux = dofile(cleaner.modpath .. "/misc_functions.lua") + +local function pos_list(ppos, radius) + local plist = {} + + for x = ppos.x - radius, ppos.x + radius, 1 do + for y = ppos.y - radius, ppos.y + radius, 1 do + for z = ppos.z - radius, ppos.z + radius, 1 do + table.insert(plist, {x=x, y=y, z=z}) + end + end + end + + return plist +end + +local param_def = { + radius = {name=S("radius"), desc=S("Search radius.")}, + entity = {name=S("entity"), desc=S("Entity technical name.")}, + node = {name=S("node"), desc=S("Node technical name.")}, + old_node = {name=S("old_node"), desc=S("Technical name of node to be replaced.")}, + new_node = {name=S("new_node"), desc=S("Technical name of node to be used in place.")}, + old_item = {name=S("old_item"), desc=S("Technical name of item to be replaced.")}, + new_item = {name=S("new_item"), desc=S("Technical name of item to be used in place.")}, + ore = {name=S("ore"), desc=S("Ore technical name.")}, + action = {name=S("action"), + desc=S('Action to execute. Can be one of "@1", "@2", or "@3".', "status", "setmode", "setnode")}, + value = {name=S("value"), desc=S('Mode or node to be set for tool (not required for "@1" action).', "status")}, +} + +local cmd_repo = { + entity = { + cmd = "remove_entities", + params = {"entity"}, + oparams = {radius=100}, + }, + rem_node = { + cmd = "remove_nodes", + params = {"node"}, + oparams = {radius=5}, + }, + rep_node = { + cmd = "replace_nodes", + params = {"old_node", "new_node"}, + oparams = {radius=5}, + }, + find_node = { + cmd = "find_unknown_nodes", + oparams = {radius=100}, + }, + near_node = { + cmd = "find_nearby_nodes", + oparams = {radius=5}, + }, + item = { + cmd = "replace_items", + params = {"old_item", "new_item"}, + }, + ore = { + cmd = "remove_ores", + params = {"ore"}, + }, + tool = { + cmd = "ctool", + params = {"action", "value"}, + }, + param = { + missing = S("Missing parameter."), + excess = S("Too many parameters."), + mal_radius = S("Radius must be a number."), + }, +} + +for k, def in pairs(cmd_repo) do + if k ~= "param" then + local cmd_help = { + param_string = "", + usage_string = "/" .. def.cmd, + } + + if def.params or def.oparams then + if def.params then + local params = {} + for _, p in ipairs(def.params) do + -- translate + table.insert(params, S(p)) + end + + cmd_help.param_string = "<" .. table.concat(params, "> <") .. ">" + end + end + + if def.oparams then + for k, v in pairs(def.oparams) do + local op = k + if type(op) == "number" then + op = v + end + + cmd_help.param_string = cmd_help.param_string .. " [" .. S(op) .. "]" + end + end + + if cmd_help.param_string ~= "" then + cmd_help.usage_string = cmd_help.usage_string .. " " .. cmd_help.param_string + end + + cmd_repo[k].help = cmd_help + end +end + +local function get_cmd_def(cmd) + for k, v in pairs(cmd_repo) do + if v.cmd == cmd then return v end + end +end + +local function format_usage(cmd) + local def = get_cmd_def(cmd) + if def then + return S("Usage:") .. "\n " .. def.help.usage_string + end +end + +local function format_params(cmd) + local def = get_cmd_def(cmd) + + local param_count + -- FIXME: unused? + local all_params = {} + if def.params then + for _, p in ipairs(def.params) do + table.insert(all_params, p) + end + end + if def.oparams then + for k, v in pairs(def.oparams) do + + end + end + + local retval = "" + local p_count = 0 + + if def.params then + for _, p in ipairs(def.params) do + if p_count == 0 then + retval = retval .. S("Params:") + end + + retval = retval .. "\n " .. S(p) .. ": " .. param_def[p].desc + + p_count = p_count + 1 + end + end + + if def.oparams then + for k, v in pairs(def.oparams) do + if p_count == 0 then + retval = retval .. S("Params:") + end + + local p = k + local dvalue = v + if type(p) == "number" then + p = v + dvalue = nil + end + + retval = retval .. "\n " .. S(p) .. ": " .. param_def[p].desc + if dvalue then + retval = retval .. " (" .. S("default: @1", dvalue) .. ")" + end + + p_count = p_count + 1 + end + end + + return retval +end + +local function format_help(cmd) + return format_usage(cmd) .. "\n\n" .. format_params(cmd) +end + + +local function check_radius(radius, pname) + local is_admin = core.check_player_privs(pname, {server=true}) + + if not is_admin and radius > 10 then + radius = 10 + return radius, S("You do not have permission to set radius that high. Reduced to @1.", radius) + end + + if radius > 100 then + radius = 100 + return radius, S("Radius is too high. Reduced to @1.", radius) + end + + return radius +end + + +--- Removes nearby entities. +-- +-- @chatcmd remove_entities +-- @param entity Entity technical name. +-- @tparam[opt] int radius Search radius (default: 100). +-- @priv server +-- @usage +-- # remove all mobs:horse entities within a radius of 10 nodes +-- /remove_entities mobs:horse 10 +core.register_chatcommand(cmd_repo.entity.cmd, { + privs = {server=true}, + description = S("Remove an entity from game.") .. "\n\n" + .. format_params(cmd_repo.entity.cmd), + params = cmd_repo.entity.help.param_string, + func = function(name, param) + local entity + local radius = cmd_repo.entity.oparams.radius + if param:find(" ") then + entity = param:split(" ") + radius = tonumber(entity[2]) + entity = entity[1] + else + entity = param + end + + local err + if not entity or entity:trim() == "" then + err = cmd_repo.param.missing + elseif not radius then + err = cmd_repo.param.mal_radius + end + + local radius, msg = check_radius(radius, name) + if msg then + core.chat_send_player(name, msg) + end + + if err then + return false, err .. "\n\n" .. format_help(cmd_repo.entity.cmd) + end + + local player = core.get_player_by_name(name) + + local total_removed = 0 + for _, object in ipairs(core.get_objects_inside_radius(player:get_pos(), radius)) do + local lent = object:get_luaentity() + + if lent then + if lent.name == entity then + object:remove() + total_removed = total_removed + 1 + end + else + if object:get_properties().infotext == entity then + object:remove() + total_removed = total_removed + 1 + end + end + end + + return true, S("Removed @1 entities.", total_removed) + end, +}) + +--- Removes nearby nodes. +-- +-- @chatcmd remove_nodes +-- @param node Node technical name. +-- @tparam[opt] int radius Search radius (default: 5). +-- @priv server +-- @usage +-- # remove all default:dirt nodes within a radius of 10 +-- /remove_nodes default:dirt 10 +core.register_chatcommand(cmd_repo.rem_node.cmd, { + privs = {server=true}, + description = S("Remove a node from game.") .. "\n\n" + .. format_params(cmd_repo.rem_node.cmd), + params = cmd_repo.rem_node.help.param_string, + func = function(name, param) + local nname + local radius = cmd_repo.rem_node.oparams.radius + if param:find(" ") then + nname = param:split(" ") + radius = tonumber(nname[2]) + nname = nname[1] + else + nname = param + end + + local err + if not nname or nname:trim() == "" then + err = cmd_repo.param.missing + elseif not radius then + err = cmd_repo.param.mal_radius + end + + local radius, msg = check_radius(radius, name) + if msg then + core.chat_send_player(name, msg) + end + + if err then + return false, err .. "\n\n" .. format_help(cmd_repo.rem_node.cmd) + end + + local ppos = core.get_player_by_name(name):get_pos() + + local total_removed = 0 + for _, npos in ipairs(pos_list(ppos, radius)) do + local node = core.get_node_or_nil(npos) + if node and node.name == nname then + core.remove_node(npos) + total_removed = total_removed + 1 + end + end + + return true, S("Removed @1 nodes.", total_removed) + end, +}) + +--- Replaces an item. +-- +-- @chatcmd replace_items +-- @param old_item Technical name of item to replace. +-- @param new_item Technical name of item to be used in place. +-- @priv server +-- @usage +-- # replace default:sword_wood with default:sword_mese +-- /replace_items default:sword_wood default:sword_mese +core.register_chatcommand(cmd_repo.item.cmd, { + privs = {server=true}, + description = S("Replace an item in game.") .. "\n\n" + .. format_params(cmd_repo.item.cmd), + params = cmd_repo.item.help.param_string, + func = function(name, param) + if not param:find(" ") then + return false, cmd_repo.param.missing .. "\n\n" .. format_help(cmd_repo.item.cmd) + end + + local src = param:split(" ") + local tgt = src[2] + src = src[1] + + local retval, msg = cleaner.replace_item(src, tgt, true) + if not retval then + return false, msg + end + + return true, S("Success!") + end, +}) + +--- Replaces nearby nodes. +-- +-- @chatcmd replace_nodes +-- @param old_node Technical name of node to replace. +-- @param new_node Technical name of node to be used in place. +-- @tparam[opt] int radius Search radius (default: 5). +-- @priv server +-- @usage +-- # replace all default:dirt nodes with default:cobble within a radius of 10 +-- /replace_nodes default:dirt default:cobble 10 +core.register_chatcommand(cmd_repo.rep_node.cmd, { + privs = {server=true}, + description = S("Replace a node in game.") .. "\n\n" + .. format_params(cmd_repo.rep_node.cmd), + params = cmd_repo.rep_node.help.param_string, + func = function(name, param) + local help = format_help(cmd_repo.rep_node.cmd) + + if not param:find(" ") then + return false, cmd_repo.param.missing .. "\n\n" .. help + end + + local radius = cmd_repo.rep_node.oparams.radius + local params = param:split(" ") + + local src = params[1] + local tgt = tostring(params[2]) + if #params > 2 then + radius = tonumber(params[3]) + end + + if not radius then + return false, cmd_repo.param.mal_radius .. "\n\n" .. help + end + + local radius, msg = check_radius(radius, name) + if msg then + core.chat_send_player(name, msg) + end + + if not core.registered_nodes[tgt] then + return false, S('Cannot use unknown node "@1" as replacement.', tgt) + end + + local total_replaced = 0 + local ppos = core.get_player_by_name(name):get_pos() + for _, npos in ipairs(pos_list(ppos, radius)) do + local node = core.get_node_or_nil(npos) + if node and node.name == src then + if core.swap_node(npos, {name=tgt}) then + total_replaced = total_replaced + 1 + else + cleaner.log("error", "could not replace node at " .. core.pos_to_string(npos, 0)) + end + end + end + + return true, S("Replaced @1 nodes.", total_replaced) + end, +}) + +--- Checks for nearby unknown nodes. +-- +-- @chatcmd find_unknown_nodes +-- @tparam[opt] int radius Search radius (default: 100). +-- @priv server +-- @usage +-- # print names of all unknown nodes within radius of 10 +-- /find_unknown_nodes 10 +core.register_chatcommand(cmd_repo.find_node.cmd, { + privs = {server=true}, + description = S("Find names of unknown nodes.") .. "\n\n" + .. format_params(cmd_repo.find_node.cmd), + params = cmd_repo.find_node.help.param_string, + func = function(name, param) + local help = format_help(cmd_repo.find_node.cmd) + + if param:find(" ") then + return false, cmd_repo.param.excess .. "\n\n" .. help + end + + local radius = cmd_repo.find_node.oparams.radius + if param and param:trim() ~= "" then + radius = tonumber(param) + end + + if not radius then + return false, cmd_repo.param.mal_radius .. "\n\n" .. help + end + + local radius, msg = check_radius(radius, name) + if msg then + core.chat_send_player(name, msg) + end + + local ppos = core.get_player_by_name(name):get_pos() + + local checked_nodes = {} + local unknown_nodes = {} + for _, npos in ipairs(pos_list(ppos, radius)) do + local node = core.get_node_or_nil(npos) + if node and not checked_nodes[node.name] then + if not core.registered_nodes[node.name] then + table.insert(unknown_nodes, node.name) + end + + checked_nodes[node.name] = true + end + end + + local node_count = #unknown_nodes + if node_count > 0 then + msg = S("Found unknown nodes: @1", node_count) .. "\n " .. table.concat(unknown_nodes, ", ") + else + msg = S("No unknown nodes found.") + end + + return true, msg + end, +}) + +--- Finds names of nearby nodes. +-- +-- @chatcmd find_nearby_nodes +-- @tparam[opt] int radius Search radius (default: 5). +-- @priv server +-- @usage +-- # print names of all node types found within radius of 10 +-- /find_nearby_nodes 10 +core.register_chatcommand(cmd_repo.near_node.cmd, { + privs = {server=true}, + description = S("Find names of nearby nodes.") .. "\n\n" + .. format_params(cmd_repo.near_node.cmd), + params = cmd_repo.near_node.help.param_string, + func = function(name, param) + local help = format_help(cmd_repo.near_node.cmd) + + if param:find(" ") then + return false, cmd_repo.param.excess .. "\n\n" .. help + end + + local radius = cmd_repo.near_node.oparams.radius + if param and param:trim() ~= "" then + radius = tonumber(param) + end + + if not radius then + return false, cmd_repo.param.mal_radius .. "\n\n" .. help + end + + local radius, msg = check_radius(radius, name) + if msg then + core.chat_send_player(name, msg) + end + + local ppos = core.get_player_by_name(name):get_pos() + + local node_names = {} + for _, npos in ipairs(pos_list(ppos, radius)) do + local node = core.get_node_or_nil(npos) + if node and not node_names[node.name] then + node_names[node.name] = true + end + end + + local found_nodes = {} + for k, _ in pairs(node_names) do + table.insert(found_nodes, k) + end + + local msg + local node_count = #found_nodes + if node_count > 0 then + msg = S("Nearby nodes: @1", node_count) .. "\n " .. table.concat(found_nodes, ", ") + else + msg = S("No nearby nodes found.") + end + + return true, msg + end, +}) + + +--- Unsafe Commands. +-- +-- Enabled with [cleaner.unsafe](settings.html#cleaner.unsafe) setting. +-- +-- @section unsafe + + +if cleaner.unsafe then + --- Registers an ore to be removed. + -- + -- @chatcmd remove_ores + -- @param ore Ore technical name. + -- @priv server + -- @note This action is reverted after server restart. To make changes permanent, + -- use the [cleaner.json](config.html#cleaner.json) config. + -- @usage + -- # remove all registered ores that add default:stone_with_iron to world + -- /remove_ores default:stone_with_iron + core.register_chatcommand(cmd_repo.ore.cmd, { + privs = {server=true}, + description = S("Remove an ore from game.") .. "\n\n" + .. format_params(cmd_repo.ore.cmd), + params = cmd_repo.ore.help.param_string, + func = function(name, param) + local err + if not param or param:trim() == "" then + err = cmd_repo.param.missing + elseif param:find(" ") then + err = cmd_repo.param.excess + end + + if err then + return false, err .. "\n\n" .. format_help(cmd_repo.ore.cmd) + end + + local success = false + local msg + local registered, total_removed = cleaner.remove_ore(param) + + if not registered then + msg = S('Ore "@1" not found, not unregistering.', param) + else + msg = S("Unregistered @1 ores (this will be undone after server restart).", total_removed) + success = true + end + + return success, msg + end + }) +end + +--- @section end + + +--- Manages settings for wielded [cleaner tool](tools.html). +-- +--

Required Privileges:

+-- +-- - server +-- +-- @chatcmd ctool +-- @param action Action to execute. Can be "status", "setmode", or "setnode". +-- @param value Mode or node to be set for tool (not required for "status" action). +-- @usage +-- # while cleaner:pencil is wielded, configure to place default:dirt node when used +-- /ctool setmode write +-- /ctool setnode default:dirt +core.register_chatcommand(cmd_repo.tool.cmd, { + privs = {server=true}, + description = S("Manage settings for wielded cleaner tool.") .. "\n\n" + .. format_params(cmd_repo.tool.cmd), + params = cmd_repo.tool.help.param_string, + func = function(name, param) + local action, value = param + local idx = param:find(" ") + if idx then + param = string.split(param, " ") + action = param[1] + value = param[2] + end + + local help = format_help(cmd_repo.tool.cmd) + + local player = core.get_player_by_name(name) + local stack = player:get_wielded_item() + local iname = aux.tool:format_name(stack) + local imeta = stack:get_meta() + + if iname ~= "cleaner:pencil" then + return false, S("Unrecognized wielded item: @1", iname) .. "\n\n" .. help + end + + if action == "status" then + core.chat_send_player(name, iname .. ": " .. S("mode") .. "=" .. imeta:get_string("mode") + .. ", " .. S("node") .. "=" .. imeta:get_string("node")) + return true + end + + if not action or not value then + return false, S("Missing parameter.") .. "\n\n" .. help + end + + if action == "setmode" then + stack = aux.tool:set_mode(stack, value, name) + elseif action == "setnode" then + stack = aux.tool:set_node(stack, value, name) + else + return false, S("Unrecognized action: @1", action) .. "\n\n" .. help + end + + return player:set_wielded_item(stack) + end, +}) diff --git a/mods/.cleaner/entities.lua b/mods/.cleaner/entities.lua new file mode 100644 index 00000000..7b9da539 --- /dev/null +++ b/mods/.cleaner/entities.lua @@ -0,0 +1,59 @@ + +local aux = dofile(cleaner.modpath .. "/misc_functions.lua") + +-- populate entities list from file in world path +local entities_data = aux.get_world_data().entities + + +-- START: backward compat + +local e_path = core.get_worldpath() .. "/clean_entities.json" +local e_file = io.open(e_path, "r") + +if e_file then + cleaner.log("action", "found deprecated clean_entities.json, updating") + + local data_in = core.parse_json(e_file:read("*a")) + e_file:close() + if data_in and data_in.remove then + for _, r in ipairs(data_in.remove) do + table.insert(entities_data.remove, r) + end + end + + -- don't read deprecated file again + os.rename(e_path, e_path .. ".old") +end + +local e_path_old = core.get_worldpath() .. "/clean_entities.txt" +e_file = io.open(e_path_old, "r") + +if e_file then + cleaner.log("action", "found deprecated clean_entities.txt, converting to json") + + local data_in = string.split(e_file:read("*a"), "\n") + for _, e in ipairs(data_in) do + e = e:trim() + if e ~= "" and e:sub(1, 1) ~= "#" then + table.insert(entities_data.remove, e) + end + end + + e_file:close() + os.rename(e_path_old, e_path_old .. ".bak") -- don't read deprecated file again +end + +-- END: backward compat + + +entities_data.remove = aux.clean_duplicates(entities_data.remove) + +-- update json file with any changes +aux.update_world_data("entities", entities_data) + +core.register_on_mods_loaded(function() + for _, e in ipairs(entities_data.remove) do + cleaner.log("action", "registering entity for removal: " .. e) + cleaner.register_entity_removal(e) + end +end) diff --git a/mods/.cleaner/init.lua b/mods/.cleaner/init.lua new file mode 100644 index 00000000..71d9ef20 --- /dev/null +++ b/mods/.cleaner/init.lua @@ -0,0 +1,48 @@ + +cleaner = {} +cleaner.modname = core.get_current_modname() +cleaner.modpath = core.get_modpath(cleaner.modname) + +local cleaner_debug = core.settings:get_bool("enable_debug_mods", false) + +function cleaner.log(lvl, msg) + if lvl == "debug" and not cleaner_debug then return end + + if lvl and not msg then + msg = lvl + lvl = nil + end + + msg = "[" .. cleaner.modname .. "] " .. msg + if lvl == "debug" then + msg = "[DEBUG] " .. msg + lvl = nil + end + + if not lvl then + core.log(msg) + else + core.log(lvl, msg) + end +end + +local aux = dofile(cleaner.modpath .. "/misc_functions.lua") + +-- initialize world file +aux.update_world_data() + + +local scripts = { + "settings", + "api", + "chat", + "tools", + "entities", + "nodes", + "items", + "ores", +} + +for _, script in ipairs(scripts) do + dofile(cleaner.modpath .. "/" .. script .. ".lua") +end diff --git a/mods/.cleaner/items.lua b/mods/.cleaner/items.lua new file mode 100644 index 00000000..02cde652 --- /dev/null +++ b/mods/.cleaner/items.lua @@ -0,0 +1,49 @@ + +local aux = dofile(cleaner.modpath .. "/misc_functions.lua") + +-- populate items list from file in world path +local items_data = aux.get_world_data().items + + +-- START: backward compat + +local i_path = core.get_worldpath() .. "/clean_items.json" +local i_file = io.open(i_path, "r") + +if i_file then + cleaner.log("action", "found deprecated clean_items.json, updating") + + local data_in = core.parse_json(i_file:read("*a")) + i_file:close() + if data_in and data_in.replace then + for k, v in pairs(data_in.replace) do + if not items_data.replace[k] then + items_data.replace[k] = v + end + end + end + + -- don't read deprecated file again + os.rename(i_path, i_path .. ".old") +end + +-- END: backward compat + + +aux.update_world_data("items", items_data) + +for i_old, i_new in pairs(items_data.replace) do + cleaner.register_item_replacement(i_old, i_new) +end + +-- register actions for after server startup +core.register_on_mods_loaded(function() + for i_old, i_new in pairs(cleaner.get_replace_items()) do + cleaner.log("action", "registering item \"" .. i_old .. "\" to be replaced with \"" .. i_new .. "\"") + + local retval, msg = cleaner.replace_item(i_old, i_new) + if not retval then + cleaner.log("warning", msg) + end + end +end) diff --git a/mods/.cleaner/locale/cleaner.es.tr b/mods/.cleaner/locale/cleaner.es.tr new file mode 100644 index 00000000..bbc00072 --- /dev/null +++ b/mods/.cleaner/locale/cleaner.es.tr @@ -0,0 +1,66 @@ +# textdomain:cleaner + +# Translators: Jordan Irwin (AntumDeluge) + + +# chat commands +entity=entidad +mode=modo +node=nodo +radius=radio +old_item=objeto_antiguo +new_item=objeto_nuevo +old_node=nodo_antiguo +new_node=nodo_nuevo +ore=mineral +action=acción +value=valor +Usage:=Uso: +Params:=Parámetros: +default: @1=por defecto: @1 +Search radius.=Radio de búsqueda. +Entity technical name.=Nombre técnico de entidad. +Node technical name.=Nombre técnico de nodo. +Technical name of node to be replaced.=Nombre técnico del nodo reemplazado. +Technical name of node to be used in place.=Nombre técnico del nodo de reemplazo. +Technical name of item to be replaced.=Nombre técnico del objeto reemplazado. +Technical name of item to be used in place.=Nombre técnico del objeto de reemplazo. +Ore technical name.=Nombre técnico de mineral. +Action to execute. Can be one of "@1", "@2", or "@3".=La acción para ejecutar. Puede ser "@1", "@2", o "@3". +Mode or node to be set for tool (not required for "@1" action).=Modo o nodo para configurar a la herramienta (no se requiere para la acción de "@1"). +Remove an entity from game.=Eliminar una entidad del juego. +Remove a node from game.=Eliminar un nodo del juego. +Replace an item in game.=Sustituir un objecto del juego. +Replace a node in game.=Sustituir un nodo del juego. +Find names of unknown nodes.=Descubrir los nombres de nodos desconocidos. +Find names of nearby nodes.=Descubrir los nombres de nodos cercanos. +Remove an ore from game.=Eliminar un mineral del juego. +Missing parameter.=Parámetro extraviado. +Too many parameters.=Demasiados parámetros. +Radius must be a number.=El radio debe ser un número. +Cannot use unknown item "@1" as replacement.=El objeto "@1" es desonocido, no se puede utilizar como sustitución. +Cannot use unknown node "@1" as replacement.=El nodo "@1" es desonocido, no se puede utilizar como sustitución. +Replaced @1 nodes.=Nodos sustituidos: @1 +Removed @1 nodes.=Se eliminaron @1 nodos. +Removed @1 entities.=Se eliminaron @1 entidades. +Found unknown nodes: @1=Se encontraron @1 nodos desconocidos. +No unknown nodes found.=No se encontraron nodos desconocidos. +Nearby nodes: @1=Nodos cercanos: @1 +No nearby nodes found.=No se encontraron nodos cercanos. +Ore "@1" not found, not unregistering.=No se encontró el mineral "@1", se mantiene registrado. +Unregistered @1 ores (this will be undone after server restart).=Se anuló @1 minerales del registro. +Success!=¡Éxito! +Manage settings for wielded cleaner tool.=Administrar a los ajustes de la herramienta cleaner empuñada. +Unrecognized wielded item: @1=Objeto empuñado desconocido: @1 +Unrecognized action: @1=Acción desconocido: @1 +You do not have permission to set radius that high. Reduced to @1.=No tienes permiso para poner al radio tan alto. Se reduce a @1. +Radius is too high. Reduced to @1.=El radio es demasiado alto. Se reduce a @1. + +# tools: +@1: mode set to: @2=@1: modo configurado para: @2 +@1: node set to: @2=@1: nodo configurado para: @2 +Modes for tool "@1" not available.=Modos para herramienta "@1" no disponibles. +You do not have permission to use this item. Missing privs: @1=No tienes permiso para usar este objeto. Privs que faltan: @1 +Unknown mode: @1=Modo desconocido: @1 +Can't place node there.=No se puede poner nodo allí. +Cannot place unknown node: @1=No se puede poner nodo desconocido: @1 diff --git a/mods/.cleaner/locale/template.txt b/mods/.cleaner/locale/template.txt new file mode 100644 index 00000000..5373fb70 --- /dev/null +++ b/mods/.cleaner/locale/template.txt @@ -0,0 +1,66 @@ +# textdomain:cleaner + +# Translators: + + +# chat commands +entity= +mode= +node= +radius= +old_item= +new_item= +old_node= +new_node= +ore= +action= +value= +Usage:= +Params:= +default: @1= +Search radius.= +Entity technical name.= +Node technical name.= +Technical name of node to be replaced.= +Technical name of node to be used in place.= +Technical name of item to be replaced.= +Technical name of item to be used in place.= +Ore technical name.= +Action to execute. Can be one of "@1", "@2", or "@3".= +Mode or node to be set for tool (not required for "@1" action).= +Remove an entity from game.= +Remove a node from game.= +Replace an item in game.= +Replace a node in game.= +Find names of unknown nodes.= +Find names of nearby nodes.= +Remove an ore from game.= +Missing parameter.= +Too many parameters.= +Radius must be a number.= +Cannot use unknown item "@1" as replacement.= +Cannot use unknown node "@1" as replacement.= +Replaced @1 nodes.= +Removed @1 nodes.= +Removed @1 entities.= +Found unknown nodes: @1= +No unknown nodes found.= +Nearby nodes: @1= +No nearby nodes found.= +Ore "@1" not found, not unregistering.= +Unregistered @1 ores (this will be undone after server restart).= +Success!= +Manage settings for wielded cleaner tool.= +Unrecognized wielded item: @1= +Unrecognized action: @1= +You do not have permission to set radius that high. Reduced to @1.= +Radius is too high. Reduced to @1.= + +# tools: +@1: mode set to: @2= +Modes for tool "@1" not available.= +@1: node set to: @2= +You do not have permission to use this item. Missing privs: @1= +Can't place node there.= +Unknown mode: @1= +Cannot place unknown node: @1= diff --git a/mods/.cleaner/misc_functions.lua b/mods/.cleaner/misc_functions.lua new file mode 100644 index 00000000..27c8654b --- /dev/null +++ b/mods/.cleaner/misc_functions.lua @@ -0,0 +1,258 @@ + +local S = core.get_translator(cleaner.modname) + + +--- Cleans duplicate entries from indexed table. +-- +-- @local +-- @function clean_duplicates +-- @tparam table t +-- @treturn table +local function clean_duplicates(t) + local tmp = {} + for _, v in ipairs(t) do + tmp[v] = true + end + + t = {} + for k in pairs(tmp) do + table.insert(t, k) + end + + return t +end + +local world_file = core.get_worldpath() .. "/cleaner.json" + +local function get_world_data() + local wdata = {} + local buffer = io.open(world_file, "r") + if buffer then + local err + wdata, err = core.parse_json(buffer:read("*a"), nil, true) + buffer:close() + if wdata == nil then + cleaner.log("warning", "reading world data file failed: " .. world_file) + wdata = {} + end + end + + local rem_types = {"entities", "nodes", "ores",} + local rep_types = {"items", "nodes",} + + for _, t in ipairs(rem_types) do + wdata[t] = wdata[t] or {} + wdata[t].remove = wdata[t].remove or {} + end + + for _, t in ipairs(rep_types) do + wdata[t] = wdata[t] or {} + wdata[t].replace = wdata[t].replace or {} + end + + return wdata +end + +local function update_world_data(t, data) + local wdata = get_world_data() + if t and data then + wdata[t].remove = data.remove + wdata[t].replace = data.replace + end + + local json_string = core.write_json(wdata, true):gsub("\"remove\" : null", "\"remove\" : []") + :gsub("\"replace\" : null", "\"replace\" : {}") + + local buffer = io.open(world_file, "w") + if buffer then + buffer:write(json_string) + buffer:close() + + return true + end + + return false +end + +local tool = { + modes = { + ["cleaner:pencil"] = {"erase", "write", "swap"}, + }, + + format_name = function(self, stack) + local iname = stack:get_name() + if iname == "cleaner:pencil_1" then + iname = "cleaner:pencil" + end + + return iname + end, + + set_mode = function(self, stack, mode, pname) + local iname = self:format_name(stack) + + if not self.modes[iname] then + if pname then + core.chat_send_player(pname, iname .. ": " .. S("unknown mode: @1", mode)) + end + cleaner.log("warning", iname .. ": unknown mode: " .. mode) + return stack + end + + local imeta = stack:get_meta() + imeta:set_string("mode", mode) + + if pname then + core.chat_send_player(pname, S("@1: mode set to: @2", iname, imeta:get_string("mode"))) + end + + local new_stack + if mode == "erase" then + new_stack = ItemStack("cleaner:pencil_1") + else + new_stack = ItemStack("cleaner:pencil") + end + + local new_meta = new_stack:get_meta() + new_meta:from_table(imeta:to_table()) + + return new_stack + end, + + next_mode = function(self, stack, pname) + local iname = self:format_name(stack) + local modes = self.modes[iname] + + if not modes then + return false, stack, S('Modes for tool "@1" not available.', stack:get_name()) + end + + local imeta = stack:get_meta() + local current_mode = imeta:get_string("mode") + if not current_mode or current_mode:trim() == "" then + return true, self:set_mode(stack, modes[1], pname) + end + + local idx = 1 + for _, m in ipairs(modes) do + if current_mode == m then + break + end + idx = idx + 1 + end + + return true, self:set_mode(stack, modes[idx+1] or modes[1], pname) + end, + + set_node = function(self, stack, node, pname) + local imeta = stack:get_meta() + imeta:set_string("node", node) + + if pname then + core.chat_send_player(pname, S("@1: node set to: @2", stack:get_name(), imeta:get_string("node"))) + end + + return stack + end, +} + +local use_sounds = core.global_exists("sounds") +local sound_handle + +tool.on_use = function(stack, user, pointed_thing) + if not user:is_player() then return end + + local pname = user:get_player_name() + if not core.get_player_privs(pname).server then + core.chat_send_player(pname, S("You do not have permission to use this item. Missing privs: @1", "server")) + return stack + end + + if sound_handle then + core.sound_stop(sound_handle) + sound_handle = nil + end + + if pointed_thing.type == "node" then + local npos = core.get_pointed_thing_position(pointed_thing) + local imeta = stack:get_meta() + local mode = imeta:get_string("mode") + local new_node_name = imeta:get_string("node") + + if mode == "erase" then + core.remove_node(npos) + if use_sounds then + local sound_handle = sounds.pencil_erase({object=user}) + end + return stack + elseif core.registered_nodes[new_node_name] then + if mode == "swap" then + core.swap_node(npos, {name=new_node_name}) + if use_sounds then + local sound_handle = sounds.pencil_write({object=user}) + end + elseif mode == "write" then + local node_above = core.get_node_or_nil(pointed_thing.above) + if not node_above or node_above.name == "air" then + core.set_node(pointed_thing.above, {name=new_node_name}) + if use_sounds then + local sound_handle = sounds.pencil_write({object=user}) + end + else + core.chat_send_player(pname, S("Can't place node there.")) + end + else + core.chat_send_player(pname, S("Unknown mode: @1", mode)) + end + + return stack + end + + core.chat_send_player(pname, S("Cannot place unknown node: @1", new_node_name)) + return stack + end +end + +tool.on_secondary_use = function(stack, user, pointed_thing) + if not user:is_player() then return end + + local pname = user:get_player_name() + if not core.get_player_privs(pname).server then + core.chat_send_player(pname, S("You do not have permission to use this item. Missing privs: @1", "server")) + return stack + end + + local success, stack, msg = tool.next_mode(tool, stack, pname) + if not success then + core.chat_send_player(pname, msg) + end + + return stack +end + +tool.on_place = function(stack, placer, pointed_thing) + if not placer:is_player() then return end + + local pname = placer:get_player_name() + if not core.get_player_privs(pname).server then + core.chat_send_player(pname, S("You do not have permission to use this item. Missing privs: @1", "server")) + return stack + end + + if pointed_thing.type == "node" then + local node = core.get_node_or_nil(core.get_pointed_thing_position(pointed_thing)) + if node then + stack = tool:set_node(stack, node.name, pname) + end + end + + return stack +end + + +return { + clean_duplicates = clean_duplicates, + get_world_data = get_world_data, + update_world_data = update_world_data, + tool = tool, +} diff --git a/mods/.cleaner/mod.conf b/mods/.cleaner/mod.conf new file mode 100644 index 00000000..d88d320b --- /dev/null +++ b/mods/.cleaner/mod.conf @@ -0,0 +1,9 @@ +name = cleaner +description = A mod that can be used to remove/replace unknown entities, nodes, & items. +version = 2025-01-18 +license = MIT +author = AntumDeluge +min_minetest_version = 5.0 +optional_depends = sounds +release = 29398 +title = Cleaner diff --git a/mods/.cleaner/nodes.lua b/mods/.cleaner/nodes.lua new file mode 100644 index 00000000..f3878ab6 --- /dev/null +++ b/mods/.cleaner/nodes.lua @@ -0,0 +1,97 @@ + +local aux = dofile(cleaner.modpath .. "/misc_functions.lua") + +-- populate nodes list from file in world path +local nodes_data = aux.get_world_data().nodes + + +-- START: backward compat + +local n_path = core.get_worldpath() .. "/clean_nodes.json" +local n_file = io.open(n_path, "r") + +if n_file then + cleaner.log("action", "found deprecated clean_nodes.json, updating") + + local data_in = core.parse_json(n_file:read("*a")) + n_file:close() + if data_in then + if data_in.remove then + for _, r in ipairs(data_in.remove) do + table.insert(nodes_data.remove, r) + end + end + + if data_in.replace then + for k, v in pairs(data_in.replace) do + if not nodes_data.replace[k] then + nodes_data.replace[k] = v + end + end + end + end + + -- don't read deprecated file again + os.rename(n_path, n_path .. ".old") +end + +local n_path_old = core.get_worldpath() .. "/clean_nodes.txt" +n_file = io.open(n_path_old, "r") + +if n_file then + cleaner.log("action", "found deprecated clean_nodes.txt, converting to json") + + local data_in = string.split(n_file:read("*a"), "\n") + for _, e in ipairs(data_in) do + e = e:trim() + if e ~= "" and e:sub(1, 1) ~= "#" then + table.insert(nodes_data.remove, e) + end + end + + n_file:close() + os.rename(n_path_old, n_path_old .. ".old") -- don't read deprecated file again +end + +-- END: backward compat + + +nodes_data.remove = aux.clean_duplicates(nodes_data.remove) + +-- update json file with any changes +aux.update_world_data("nodes", nodes_data) + +core.register_lbm({ + name = "cleaner:remove_nodes", + nodenames = {"group:to_remove"}, + run_at_every_load = true, + action = function(pos, node) + core.remove_node(pos) + end, +}) + +core.register_lbm({ + name = "cleaner:replace_nodes", + nodenames = {"group:to_replace"}, + run_at_every_load = true, + action = function(pos, node) + local new_node_name = cleaner.get_replace_nodes()[node.name] + if core.registered_nodes[new_node_name] then + core.swap_node(pos, {name=new_node_name}) + else + cleaner.log("error", "cannot replace with unregistered node \"" .. tostring(new_node_name) .. "\"") + end + end, +}) + +core.register_on_mods_loaded(function() + for _, n in ipairs(nodes_data.remove) do + cleaner.log("action", "registering node for removal: " .. n) + cleaner.register_node_removal(n) + end + + for n_old, n_new in pairs(nodes_data.replace) do + cleaner.log("action", "registering node \"" .. n_old .. "\" to be replaced with \"" .. n_new .. "\"") + cleaner.register_node_replacement(n_old, n_new) + end +end) diff --git a/mods/.cleaner/ores.lua b/mods/.cleaner/ores.lua new file mode 100644 index 00000000..517f60a3 --- /dev/null +++ b/mods/.cleaner/ores.lua @@ -0,0 +1,17 @@ + +if not cleaner.unsafe then return end + +local aux = dofile(cleaner.modpath .. "/misc_functions.lua") + +local ores_data = aux.get_world_data().ores + +for _, ore in ipairs(ores_data.remove) do + cleaner.register_ore_removal(ore) +end + +core.register_on_mods_loaded(function() + for _, ore in ipairs(cleaner.get_remove_ores()) do + cleaner.log("action", "unregistering ore: " .. ore) + cleaner.remove_ore(ore) + end +end) diff --git a/mods/.cleaner/screenshot.png b/mods/.cleaner/screenshot.png new file mode 100644 index 00000000..639655d7 Binary files /dev/null and b/mods/.cleaner/screenshot.png differ diff --git a/mods/.cleaner/settings.lua b/mods/.cleaner/settings.lua new file mode 100644 index 00000000..16c2f42c --- /dev/null +++ b/mods/.cleaner/settings.lua @@ -0,0 +1,15 @@ + +--- Cleaner Settings +-- +-- @topic settings + + +--- Enables unsafe methods & chat commands. +-- +-- - `cleaner.remove_ore` +-- - `/remove_ores` +-- +-- @setting cleaner.unsafe +-- @settype bool +-- @default false +cleaner.unsafe = core.settings:get_bool("cleaner.unsafe", false) diff --git a/mods/.cleaner/settingtypes.txt b/mods/.cleaner/settingtypes.txt new file mode 100644 index 00000000..b5debc79 --- /dev/null +++ b/mods/.cleaner/settingtypes.txt @@ -0,0 +1,6 @@ + +# Enables unsafe methods & chat commands. +# +# - cleaner.remove_ore +# - /remove_ores +cleaner.unsafe (Enable unsafe methods) bool false diff --git a/mods/.cleaner/textures/cleaner_pencil.png b/mods/.cleaner/textures/cleaner_pencil.png new file mode 100644 index 00000000..35826879 Binary files /dev/null and b/mods/.cleaner/textures/cleaner_pencil.png differ diff --git a/mods/.cleaner/tools.lua b/mods/.cleaner/tools.lua new file mode 100644 index 00000000..cc1c4059 --- /dev/null +++ b/mods/.cleaner/tools.lua @@ -0,0 +1,44 @@ + +--- Cleaner Tools +-- +-- @topic tools + + +local S = core.get_translator(cleaner.modname) + + +local aux = dofile(cleaner.modpath .. "/misc_functions.lua") + +--- Master Pencil +-- +-- @tool cleaner:pencil +-- @img cleaner_pencil.png +-- @priv server +-- @usage +-- place (right-click): +-- - when not pointing at a node, changes modes +-- - when pointing at a node, sets node to be used +-- +-- use (left-click): +-- - executes action for current mode: +-- - erase: erases pointed node +-- - write: adds node +-- - swap: replaces pointed node +core.register_tool(cleaner.modname .. ":pencil", { + description = S("Master Pencil"), + inventory_image = "cleaner_pencil.png", + liquids_pointable = true, + on_use = aux.tool.on_use, + on_secondary_use = aux.tool.on_secondary_use, + on_place = aux.tool.on_place, +}) + +core.register_tool(cleaner.modname .. ":pencil_1", { + description = S("Master Pencil"), + inventory_image = "cleaner_pencil.png^[transformFXFY", + liquids_pointable = true, + groups = {not_in_creative_inventory=1}, + on_use = aux.tool.on_use, + on_secondary_use = aux.tool.on_secondary_use, + on_place = aux.tool.on_place, +}) diff --git a/mods/cozylights/LICENSE b/mods/.cozylights/LICENSE similarity index 100% rename from mods/cozylights/LICENSE rename to mods/.cozylights/LICENSE diff --git a/mods/cozylights/README.md b/mods/.cozylights/README.md similarity index 100% rename from mods/cozylights/README.md rename to mods/.cozylights/README.md diff --git a/mods/cozylights/chat_commands.lua b/mods/.cozylights/chat_commands.lua similarity index 100% rename from mods/cozylights/chat_commands.lua rename to mods/.cozylights/chat_commands.lua diff --git a/mods/cozylights/helpers.lua b/mods/.cozylights/helpers.lua similarity index 100% rename from mods/cozylights/helpers.lua rename to mods/.cozylights/helpers.lua diff --git a/mods/cozylights/init.lua b/mods/.cozylights/init.lua similarity index 100% rename from mods/cozylights/init.lua rename to mods/.cozylights/init.lua diff --git a/mods/cozylights/light_brush.lua b/mods/.cozylights/light_brush.lua similarity index 100% rename from mods/cozylights/light_brush.lua rename to mods/.cozylights/light_brush.lua diff --git a/mods/cozylights/mod.conf b/mods/.cozylights/mod.conf similarity index 100% rename from mods/cozylights/mod.conf rename to mods/.cozylights/mod.conf diff --git a/mods/cozylights/node_light.lua b/mods/.cozylights/node_light.lua similarity index 100% rename from mods/cozylights/node_light.lua rename to mods/.cozylights/node_light.lua diff --git a/mods/cozylights/nodes.lua b/mods/.cozylights/nodes.lua similarity index 100% rename from mods/cozylights/nodes.lua rename to mods/.cozylights/nodes.lua diff --git a/mods/cozylights/settingtypes.txt b/mods/.cozylights/settingtypes.txt similarity index 100% rename from mods/cozylights/settingtypes.txt rename to mods/.cozylights/settingtypes.txt diff --git a/mods/cozylights/shared.lua b/mods/.cozylights/shared.lua similarity index 100% rename from mods/cozylights/shared.lua rename to mods/.cozylights/shared.lua diff --git a/mods/cozylights/test/accuracy.lua b/mods/.cozylights/test/accuracy.lua similarity index 100% rename from mods/cozylights/test/accuracy.lua rename to mods/.cozylights/test/accuracy.lua diff --git a/mods/cozylights/textures/attribution b/mods/.cozylights/textures/attribution similarity index 100% rename from mods/cozylights/textures/attribution rename to mods/.cozylights/textures/attribution diff --git a/mods/cozylights/textures/default_glass.png b/mods/.cozylights/textures/default_glass.png similarity index 100% rename from mods/cozylights/textures/default_glass.png rename to mods/.cozylights/textures/default_glass.png diff --git a/mods/cozylights/textures/light_brush.png b/mods/.cozylights/textures/light_brush.png similarity index 100% rename from mods/cozylights/textures/light_brush.png rename to mods/.cozylights/textures/light_brush.png diff --git a/mods/cozylights/util/get_optional_depends.sh b/mods/.cozylights/util/get_optional_depends.sh similarity index 100% rename from mods/cozylights/util/get_optional_depends.sh rename to mods/.cozylights/util/get_optional_depends.sh diff --git a/mods/cozylights/wield_light.lua b/mods/.cozylights/wield_light.lua similarity index 100% rename from mods/cozylights/wield_light.lua rename to mods/.cozylights/wield_light.lua diff --git a/mods/.pbj_pup/init.lua b/mods/.pbj_pup/init.lua deleted file mode 100644 index 67f45cf7..00000000 --- a/mods/.pbj_pup/init.lua +++ /dev/null @@ -1,127 +0,0 @@ --- mod check and sound settings - -local def = core.get_modpath("default") -local mcl = core.get_modpath("mcl_core") -local snd = mcl and mcl_sounds.node_sound_glass_defaults() or default.node_sound_glass_defaults() - --- Nyan Cat node - -core.register_node(":nyancat:nyancat", { - description = "Nyan Cat", - tiles = { - "nyancat_side.png", - "nyancat_side.png", - "nyancat_side.png", - "nyancat_side.png", - "nyancat_back.png", - "nyancat_front.png", - }, - paramtype = "light", - light_source = 15, - paramtype2 = "facedir", - groups = { cracky = 2, handy = 1 }, - is_ground_content = false, - sounds = snd, - _mcl_hardness = 1, -}) - --- Rainbow node - -core.register_node(":nyancat:nyancat_rainbow", { - description = "Rainbow", - tiles = { - "nyancat_rainbow.png^[transformR90", - "nyancat_rainbow.png^[transformR90", - "nyancat_rainbow.png", - }, - paramtype = "light", - light_source = 15, - paramtype2 = "facedir", - groups = { cracky = 2, handy = 1 }, - is_ground_content = false, - sounds = snd, - _mcl_hardness = 1, -}) - --- Fuels - -core.register_craft({ - type = "fuel", - recipe = "nyancat:nyancat", - burntime = 10, -}) - -core.register_craft({ - type = "fuel", - recipe = "nyancat:nyancat_rainbow", - burntime = 10, -}) - --- helper function to place Nyan/Pup/Moo with rainbow tail - -local types = { "nyancat:nyancat" } - -local function place(pos, facedir, length) - if facedir > 3 then - facedir = 0 - end - - local tailvec = core.facedir_to_dir(facedir) - local p = { x = pos.x, y = pos.y, z = pos.z } - local num = math.random(#types) - - core.swap_node(p, { name = types[num], param2 = facedir }) - - for i = 1, length do - p.x = p.x + tailvec.x - p.z = p.z + tailvec.z - - core.swap_node(p, { name = "nyancat:nyancat_rainbow", param2 = facedir }) - end -end - --- Do we generate PB&J Pup and Nyan Cat's in world? - -local function generate(minp, maxp, seed) - local height_min = -31000 - local height_max = -32 - local chance = 1000 - - if maxp.y < height_min or minp.y > height_max then - return - end - - local y_min = math.max(minp.y, height_min) - local y_max = math.min(maxp.y, height_max) - local volume = (maxp.x - minp.x + 1) * (y_max - y_min + 1) * (maxp.z - minp.z + 1) - local pr = PseudoRandom(seed + 9324342) - local max_num_nyancats = math.floor(volume / (16 * 16 * 16)) - - for i = 1, max_num_nyancats do - if pr:next(0, 1000) == 0 then - local x0 = pr:next(minp.x, maxp.x) - local y0 = pr:next(minp.y, maxp.y) - local z0 = pr:next(minp.z, maxp.z) - local p0 = {x = x0, y = y0, z = z0} - nyancat.place(p0, pr:next(0, 3), pr:next(3, 15)) - end - end - -end - -core.register_on_generated(generate) - -if def then - default.generate_nyancats = generate -end --Legacy - --- Legacy - -core.register_alias("default:nyancat", "nyancat:nyancat") -core.register_alias("default:nyancat_rainbow", "nyancat:nyancat_rainbow") - -if def then - default.make_nyancat = place -end - -print("[MOD] PB&J Pup loaded") diff --git a/mods/airutils/airutils_biofuel.lua b/mods/airutils/airutils_biofuel.lua index 9bf05e72..00ea5cf2 100644 --- a/mods/airutils/airutils_biofuel.lua +++ b/mods/airutils/airutils_biofuel.lua @@ -4,32 +4,39 @@ local S = airutils.S local module_name = "airutils" +--[[ if core.get_modpath("technic") then - if technic then - technic.register_extractor_recipe({input = {"farming:wheat 33"}, output = "biofuel:biofuel 1"}) - technic.register_extractor_recipe({input = {"farming:corn 33"}, output = "biofuel:biofuel 1"}) - technic.register_extractor_recipe({input = {"farming:potato 33"}, output = "biofuel:biofuel 1"}) - technic.register_extractor_recipe({input = {"default:papyrus 99"}, output = "biofuel:biofuel 1"}) - end -end + if technic then + local extractor_recipes = { + { "farming:wheat 33", "biofuel:biofuel" }, + { "farming:corn 33", "biofuel:biofuel" }, + { "farming:potato 33", "biofuel:biofuel" }, + { "default:papyrus 99", "biofuel:biofuel" }, + } + for _, data in ipairs(extractor_recipes) do + technic.register_extractor_recipe({ input = { data[1] }, output = data[2] }) + end + end +end +]]-- if core.get_modpath("basic_machines") then - if basic_machines then - basic_machines.grinder_recipes["farming:wheat"] = {50,"biofuel:biofuel",1} - basic_machines.grinder_recipes["farming:corn"] = {50,"biofuel:biofuel",1} - basic_machines.grinder_recipes["farming:potato"] = {50,"biofuel:biofuel",1} - basic_machines.grinder_recipes["default:papyrus"] = {70,"biofuel:biofuel",1} - end + if basic_machines then + basic_machines.grinder_recipes["farming:wheat"] = { 50, "biofuel:biofuel", 1 } + basic_machines.grinder_recipes["farming:corn"] = { 50, "biofuel:biofuel", 1 } + basic_machines.grinder_recipes["farming:potato"] = { 50, "biofuel:biofuel", 1 } + basic_machines.grinder_recipes["default:papyrus"] = { 70, "biofuel:biofuel", 1 } + end end if core.get_modpath("default") then core.register_craft({ output = module_name .. ":biofuel_distiller", recipe = { - {"default:copper_ingot", "default:copper_ingot", "default:copper_ingot"}, - {"default:steel_ingot" , "", "default:steel_ingot"}, - {"default:steel_ingot" , "default:steel_ingot", "default:steel_ingot"}, + { "default:copper_ingot", "default:copper_ingot", "default:copper_ingot" }, + { "default:steel_ingot", "", "default:steel_ingot" }, + { "default:steel_ingot", "default:steel_ingot", "default:steel_ingot" }, }, }) end @@ -37,17 +44,16 @@ if core.get_modpath("mcl_core") then core.register_craft({ output = module_name .. ":biofuel_distiller", recipe = { - {"mcl_copper:copper_ingot", "mcl_copper:copper_ingot", "mcl_copper:copper_ingot"}, - {"mcl_core:iron_ingot" , "", "mcl_core:iron_ingot"}, - {"mcl_core:iron_ingot" , "mcl_core:iron_ingot", "mcl_core:iron_ingot"}, + { "mcl_copper:copper_ingot", "mcl_copper:copper_ingot", "mcl_copper:copper_ingot" }, + { "mcl_core:iron_ingot", "", "mcl_core:iron_ingot" }, + { "mcl_core:iron_ingot", "mcl_core:iron_ingot", "mcl_core:iron_ingot" }, }, }) end - -- biofuel local new_gallon_id = "airutils:biofuel" -core.register_craftitem(new_gallon_id,{ +core.register_craftitem(new_gallon_id, { description = S("Bio Fuel"), inventory_image = "airutils_biofuel_inv.png", }) @@ -61,43 +67,60 @@ core.register_craft({ core.register_alias("biofuel:biofuel", new_gallon_id) --for the old biofuel local ferment = { - {"default:papyrus", new_gallon_id}, - {"farming:wheat", new_gallon_id}, - {"farming:corn", new_gallon_id}, - {"farming:baked_potato", new_gallon_id}, - {"farming:potato", new_gallon_id} + { "default:papyrus", new_gallon_id }, + { "farming:wheat", new_gallon_id }, + { "farming:corn", new_gallon_id }, + { "farming:baked_potato", new_gallon_id }, + { "farming:potato", new_gallon_id }, } -local ferment_groups = {'flora', 'leaves', 'flower', 'sapling', 'tree', 'wood', 'stick', 'plant', 'seed', - 'leafdecay', 'leafdecay_drop', 'mushroom', 'vines' } +local ferment_groups = { + "flora", + "leaves", + "flower", + "sapling", + "tree", + "wood", + "stick", + "plant", + "seed", + "leafdecay", + "leafdecay_drop", + "mushroom", + "vines", +} -- distiller local biofueldistiller_formspec = "size[8,9]" - .. "list[current_name;src;2,1;1,1;]" .. airutils.get_itemslot_bg(2, 1, 1, 1) - .. "list[current_name;dst;5,1;1,1;]" .. airutils.get_itemslot_bg(5, 1, 1, 1) - .. "list[current_player;main;0,5;8,4;]" .. airutils.get_itemslot_bg(0, 5, 8, 4) + .. "list[current_name;src;2,1;1,1;]" + .. airutils.get_itemslot_bg(2, 1, 1, 1) + .. "list[current_name;dst;5,1;1,1;]" + .. airutils.get_itemslot_bg(5, 1, 1, 1) + .. "list[current_player;main;0,5;8,4;]" + .. airutils.get_itemslot_bg(0, 5, 8, 4) .. "listring[current_name;dst]" .. "listring[current_player;main]" .. "listring[current_name;src]" .. "listring[current_player;main]" .. "image[3.5,1;1,1;gui_furnace_arrow_bg.png^[transformR270]" -core.register_node( module_name .. ":biofuel_distiller", { +core.register_node(module_name .. ":biofuel_distiller", { description = S("Biofuel Distiller"), - tiles = {"airutils_black.png", "airutils_aluminum.png", "airutils_copper.png" }, + tiles = { "airutils_black.png", "airutils_aluminum.png", "airutils_copper.png" }, drawtype = "mesh", mesh = "airutils_biofuel_distiller.b3d", paramtype = "light", paramtype2 = "facedir", groups = { - choppy = 2, oddly_breakable_by_hand = 1, flammable = 2 + choppy = 2, + oddly_breakable_by_hand = 1, + flammable = 2, }, legacy_facedir_simple = true, on_place = core.rotate_node, on_construct = function(pos) - local meta = core.get_meta(pos) meta:set_string("formspec", biofueldistiller_formspec) @@ -110,13 +133,11 @@ core.register_node( module_name .. ":biofuel_distiller", { inv:set_size("dst", 1) end, - can_dig = function(pos,player) - + can_dig = function(pos, player) local meta = core.get_meta(pos) local inv = meta:get_inventory() - if not inv:is_empty("dst") - or not inv:is_empty("src") then + if not inv:is_empty("dst") or not inv:is_empty("src") then return false end @@ -124,7 +145,6 @@ core.register_node( module_name .. ":biofuel_distiller", { end, allow_metadata_inventory_take = function(pos, listname, index, stack, player) - if core.is_protected(pos, player:get_player_name()) then return 0 end @@ -133,7 +153,6 @@ core.register_node( module_name .. ":biofuel_distiller", { end, allow_metadata_inventory_put = function(pos, listname, index, stack, player) - if core.is_protected(pos, player:get_player_name()) then return 0 end @@ -146,7 +165,6 @@ core.register_node( module_name .. ":biofuel_distiller", { end, allow_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player) - if core.is_protected(pos, player:get_player_name()) then return 0 end @@ -159,20 +177,20 @@ core.register_node( module_name .. ":biofuel_distiller", { end, on_metadata_inventory_put = function(pos) - local timer = core.get_node_timer(pos) timer:start(5) end, on_timer = function(pos) - - local meta = core.get_meta(pos) ; if not meta then return end + local meta = core.get_meta(pos) + if not meta then + return + end local inv = meta:get_inventory() -- is barrel empty? if not inv or inv:is_empty("src") then - meta:set_float("status", 0.0) meta:set_string("infotext", S("Fuel Distiller")) @@ -182,7 +200,7 @@ core.register_node( module_name .. ":biofuel_distiller", { -- does it contain any of the source items on the list? local has_item - --normal items + --normal items for n = 1, #ferment do if inv:contains_item("src", ItemStack(ferment[n][1])) then has_item = n @@ -190,22 +208,22 @@ core.register_node( module_name .. ":biofuel_distiller", { end end - --groups - local has_group - if not has_item then - local inv_content = inv:get_list("src") - if inv_content then - for k, v in pairs(inv_content) do - local item_name = v:get_name() - for n = 1, #ferment_groups do - if core.get_item_group(item_name, ferment_groups[n]) == 1 then - has_group = n - break - end - end - end - end - end + --groups + local has_group + if not has_item then + local inv_content = inv:get_list("src") + if inv_content then + for k, v in pairs(inv_content) do + local item_name = v:get_name() + for n = 1, #ferment_groups do + if core.get_item_group(item_name, ferment_groups[n]) == 1 then + has_group = n + break + end + end + end + end + end if not has_item and not has_group then return false @@ -229,17 +247,17 @@ core.register_node( module_name .. ":biofuel_distiller", { meta:set_string("infotext", S("Fuel Distiller @1% done", status)) meta:set_float("status", status + 5) else - if not has_group then - inv:remove_item("src", ferment[has_item][1]) - inv:add_item("dst", ferment[has_item][2]) - else - for i,itemstack in pairs(inv:get_list("src")) do - inv:remove_item("src", ItemStack(itemstack:get_name().." 1")) - end - inv:add_item("dst", new_gallon_id) - end + if not has_group then + inv:remove_item("src", ferment[has_item][1]) + inv:add_item("dst", ferment[has_item][2]) + else + for i, itemstack in pairs(inv:get_list("src")) do + inv:remove_item("src", ItemStack(itemstack:get_name() .. " 1")) + end + inv:add_item("dst", new_gallon_id) + end - meta:set_float("status", 0,0) + meta:set_float("status", 0, 0) end if inv:is_empty("src") then @@ -252,16 +270,16 @@ core.register_node( module_name .. ":biofuel_distiller", { }) --lets remove the old one -core.register_node(":".."biofuel:biofuel_distiller", { - groups = {old_biofuel=1}, +core.register_node(":" .. "biofuel:biofuel_distiller", { + groups = { old_biofuel = 1 }, }) core.register_abm({ - nodenames = {"group:old_biofuel"}, - interval = 1, - chance = 1, - action = function(pos, node) - --core.remove_node(pos) - core.swap_node(pos,{name = module_name..":biofuel_distiller"}) - end, + nodenames = { "group:old_biofuel" }, + interval = 1, + chance = 1, + action = function(pos, node) + --core.remove_node(pos) + core.swap_node(pos, { name = module_name .. ":biofuel_distiller" }) + end, }) diff --git a/mods/basic_materials/.github/workflows/luacheck.yml b/mods/basic_materials/.github/workflows/luacheck.yml new file mode 100644 index 00000000..a13efa95 --- /dev/null +++ b/mods/basic_materials/.github/workflows/luacheck.yml @@ -0,0 +1,13 @@ +name: luacheck +on: [push, pull_request] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - name: apt + run: sudo apt-get install -y luarocks + - name: luacheck install + run: luarocks install --local luacheck + - name: luacheck run + run: $HOME/.luarocks/bin/luacheck ./ diff --git a/mods/basic_materials/.luacheckrc b/mods/basic_materials/.luacheckrc new file mode 100644 index 00000000..1dabf677 --- /dev/null +++ b/mods/basic_materials/.luacheckrc @@ -0,0 +1,7 @@ +globals = { + "minetest", "basic_materials", "crafting", +} + +read_globals = { + "default", "xcompat", +} \ No newline at end of file diff --git a/mods/basic_materials/LICENSE b/mods/basic_materials/LICENSE new file mode 100644 index 00000000..c5885ae9 --- /dev/null +++ b/mods/basic_materials/LICENSE @@ -0,0 +1,600 @@ +License for code: LGPL 3.0 +License for media and all other assets: CC-by-SA 4.0 + +############################################################################### + + GNU LESSER GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + + This version of the GNU Lesser General Public License incorporates +the terms and conditions of version 3 of the GNU General Public +License, supplemented by the additional permissions listed below. + + 0. Additional Definitions. + + As used herein, "this License" refers to version 3 of the GNU Lesser +General Public License, and the "GNU GPL" refers to version 3 of the GNU +General Public License. + + "The Library" refers to a covered work governed by this License, +other than an Application or a Combined Work as defined below. + + An "Application" is any work that makes use of an interface provided +by the Library, but which is not otherwise based on the Library. +Defining a subclass of a class defined by the Library is deemed a mode +of using an interface provided by the Library. + + A "Combined Work" is a work produced by combining or linking an +Application with the Library. The particular version of the Library +with which the Combined Work was made is also called the "Linked +Version". + + The "Minimal Corresponding Source" for a Combined Work means the +Corresponding Source for the Combined Work, excluding any source code +for portions of the Combined Work that, considered in isolation, are +based on the Application, and not on the Linked Version. + + The "Corresponding Application Code" for a Combined Work means the +object code and/or source code for the Application, including any data +and utility programs needed for reproducing the Combined Work from the +Application, but excluding the System Libraries of the Combined Work. + + 1. Exception to Section 3 of the GNU GPL. + + You may convey a covered work under sections 3 and 4 of this License +without being bound by section 3 of the GNU GPL. + + 2. Conveying Modified Versions. + + If you modify a copy of the Library, and, in your modifications, a +facility refers to a function or data to be supplied by an Application +that uses the facility (other than as an argument passed when the +facility is invoked), then you may convey a copy of the modified +version: + + a) under this License, provided that you make a good faith effort to + ensure that, in the event an Application does not supply the + function or data, the facility still operates, and performs + whatever part of its purpose remains meaningful, or + + b) under the GNU GPL, with none of the additional permissions of + this License applicable to that copy. + + 3. Object Code Incorporating Material from Library Header Files. + + The object code form of an Application may incorporate material from +a header file that is part of the Library. You may convey such object +code under terms of your choice, provided that, if the incorporated +material is not limited to numerical parameters, data structure +layouts and accessors, or small macros, inline functions and templates +(ten or fewer lines in length), you do both of the following: + + a) Give prominent notice with each copy of the object code that the + Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the object code with a copy of the GNU GPL and this license + document. + + 4. Combined Works. + + You may convey a Combined Work under terms of your choice that, +taken together, effectively do not restrict modification of the +portions of the Library contained in the Combined Work and reverse +engineering for debugging such modifications, if you also do each of +the following: + + a) Give prominent notice with each copy of the Combined Work that + the Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the Combined Work with a copy of the GNU GPL and this license + document. + + c) For a Combined Work that displays copyright notices during + execution, include the copyright notice for the Library among + these notices, as well as a reference directing the user to the + copies of the GNU GPL and this license document. + + d) Do one of the following: + + 0) Convey the Minimal Corresponding Source under the terms of this + License, and the Corresponding Application Code in a form + suitable for, and under terms that permit, the user to + recombine or relink the Application with a modified version of + the Linked Version to produce a modified Combined Work, in the + manner specified by section 6 of the GNU GPL for conveying + Corresponding Source. + + 1) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (a) uses at run time + a copy of the Library already present on the user's computer + system, and (b) will operate properly with a modified version + of the Library that is interface-compatible with the Linked + Version. + + e) Provide Installation Information, but only if you would otherwise + be required to provide such information under section 6 of the + GNU GPL, and only to the extent that such information is + necessary to install and execute a modified version of the + Combined Work produced by recombining or relinking the + Application with a modified version of the Linked Version. (If + you use option 4d0, the Installation Information must accompany + the Minimal Corresponding Source and Corresponding Application + Code. If you use option 4d1, you must provide the Installation + Information in the manner specified by section 6 of the GNU GPL + for conveying Corresponding Source.) + + 5. Combined Libraries. + + You may place library facilities that are a work based on the +Library side by side in a single library together with other library +facilities that are not Applications and are not covered by this +License, and convey such a combined library under terms of your +choice, if you do both of the following: + + a) Accompany the combined library with a copy of the same work based + on the Library, uncombined with any other library facilities, + conveyed under the terms of this License. + + b) Give prominent notice with the combined library that part of it + is a work based on the Library, and explaining where to find the + accompanying uncombined form of the same work. + + 6. Revised Versions of the GNU Lesser General Public License. + + The Free Software Foundation may publish revised and/or new versions +of the GNU Lesser General Public License from time to time. Such new +versions will be similar in spirit to the present version, but may +differ in detail to address new problems or concerns. + + Each version is given a distinguishing version number. If the +Library as you received it specifies that a certain numbered version +of the GNU Lesser General Public License "or any later version" +applies to it, you have the option of following the terms and +conditions either of that published version or of any later version +published by the Free Software Foundation. If the Library as you +received it does not specify a version number of the GNU Lesser +General Public License, you may choose any version of the GNU Lesser +General Public License ever published by the Free Software Foundation. + + If the Library as you received it specifies that a proxy can decide +whether future versions of the GNU Lesser General Public License shall +apply, that proxy's public statement of acceptance of any version is +permanent authorization for you to choose that version for the +Library. + +############################################################################### + +Attribution-ShareAlike 4.0 International + +======================================================================= + +Creative Commons Corporation ("Creative Commons") is not a law firm and +does not provide legal services or legal advice. Distribution of +Creative Commons public licenses does not create a lawyer-client or +other relationship. Creative Commons makes its licenses and related +information available on an "as-is" basis. Creative Commons gives no +warranties regarding its licenses, any material licensed under their +terms and conditions, or any related information. Creative Commons +disclaims all liability for damages resulting from their use to the +fullest extent possible. + +Using Creative Commons Public Licenses + +Creative Commons public licenses provide a standard set of terms and +conditions that creators and other rights holders may use to share +original works of authorship and other material subject to copyright +and certain other rights specified in the public license below. The +following considerations are for informational purposes only, are not +exhaustive, and do not form part of our licenses. + + Considerations for licensors: Our public licenses are + intended for use by those authorized to give the public + permission to use material in ways otherwise restricted by + copyright and certain other rights. Our licenses are + irrevocable. Licensors should read and understand the terms + and conditions of the license they choose before applying it. + Licensors should also secure all rights necessary before + applying our licenses so that the public can reuse the + material as expected. Licensors should clearly mark any + material not subject to the license. This includes other CC- + licensed material, or material used under an exception or + limitation to copyright. More considerations for licensors: + wiki.creativecommons.org/Considerations_for_licensors + + Considerations for the public: By using one of our public + licenses, a licensor grants the public permission to use the + licensed material under specified terms and conditions. If + the licensor's permission is not necessary for any reason--for + example, because of any applicable exception or limitation to + copyright--then that use is not regulated by the license. Our + licenses grant only permissions under copyright and certain + other rights that a licensor has authority to grant. Use of + the licensed material may still be restricted for other + reasons, including because others have copyright or other + rights in the material. A licensor may make special requests, + such as asking that all changes be marked or described. + Although not required by our licenses, you are encouraged to + respect those requests where reasonable. More considerations + for the public: + wiki.creativecommons.org/Considerations_for_licensees + +======================================================================= + +Creative Commons Attribution-ShareAlike 4.0 International Public +License + +By exercising the Licensed Rights (defined below), You accept and agree +to be bound by the terms and conditions of this Creative Commons +Attribution-ShareAlike 4.0 International Public License ("Public +License"). To the extent this Public License may be interpreted as a +contract, You are granted the Licensed Rights in consideration of Your +acceptance of these terms and conditions, and the Licensor grants You +such rights in consideration of benefits the Licensor receives from +making the Licensed Material available under these terms and +conditions. + + +Section 1 -- Definitions. + + a. Adapted Material means material subject to Copyright and Similar + Rights that is derived from or based upon the Licensed Material + and in which the Licensed Material is translated, altered, + arranged, transformed, or otherwise modified in a manner requiring + permission under the Copyright and Similar Rights held by the + Licensor. For purposes of this Public License, where the Licensed + Material is a musical work, performance, or sound recording, + Adapted Material is always produced where the Licensed Material is + synched in timed relation with a moving image. + + b. Adapter's License means the license You apply to Your Copyright + and Similar Rights in Your contributions to Adapted Material in + accordance with the terms and conditions of this Public License. + + c. BY-SA Compatible License means a license listed at + creativecommons.org/compatiblelicenses, approved by Creative + Commons as essentially the equivalent of this Public License. + + d. Copyright and Similar Rights means copyright and/or similar rights + closely related to copyright including, without limitation, + performance, broadcast, sound recording, and Sui Generis Database + Rights, without regard to how the rights are labeled or + categorized. For purposes of this Public License, the rights + specified in Section 2(b)(1)-(2) are not Copyright and Similar + Rights. + + e. Effective Technological Measures means those measures that, in the + absence of proper authority, may not be circumvented under laws + fulfilling obligations under Article 11 of the WIPO Copyright + Treaty adopted on December 20, 1996, and/or similar international + agreements. + + f. Exceptions and Limitations means fair use, fair dealing, and/or + any other exception or limitation to Copyright and Similar Rights + that applies to Your use of the Licensed Material. + + g. License Elements means the license attributes listed in the name + of a Creative Commons Public License. The License Elements of this + Public License are Attribution and ShareAlike. + + h. Licensed Material means the artistic or literary work, database, + or other material to which the Licensor applied this Public + License. + + i. Licensed Rights means the rights granted to You subject to the + terms and conditions of this Public License, which are limited to + all Copyright and Similar Rights that apply to Your use of the + Licensed Material and that the Licensor has authority to license. + + j. Licensor means the individual(s) or entity(ies) granting rights + under this Public License. + + k. Share means to provide material to the public by any means or + process that requires permission under the Licensed Rights, such + as reproduction, public display, public performance, distribution, + dissemination, communication, or importation, and to make material + available to the public including in ways that members of the + public may access the material from a place and at a time + individually chosen by them. + + l. Sui Generis Database Rights means rights other than copyright + resulting from Directive 96/9/EC of the European Parliament and of + the Council of 11 March 1996 on the legal protection of databases, + as amended and/or succeeded, as well as other essentially + equivalent rights anywhere in the world. + + m. You means the individual or entity exercising the Licensed Rights + under this Public License. Your has a corresponding meaning. + + +Section 2 -- Scope. + + a. License grant. + + 1. Subject to the terms and conditions of this Public License, + the Licensor hereby grants You a worldwide, royalty-free, + non-sublicensable, non-exclusive, irrevocable license to + exercise the Licensed Rights in the Licensed Material to: + + a. reproduce and Share the Licensed Material, in whole or + in part; and + + b. produce, reproduce, and Share Adapted Material. + + 2. Exceptions and Limitations. For the avoidance of doubt, where + Exceptions and Limitations apply to Your use, this Public + License does not apply, and You do not need to comply with + its terms and conditions. + + 3. Term. The term of this Public License is specified in Section + 6(a). + + 4. Media and formats; technical modifications allowed. The + Licensor authorizes You to exercise the Licensed Rights in + all media and formats whether now known or hereafter created, + and to make technical modifications necessary to do so. The + Licensor waives and/or agrees not to assert any right or + authority to forbid You from making technical modifications + necessary to exercise the Licensed Rights, including + technical modifications necessary to circumvent Effective + Technological Measures. For purposes of this Public License, + simply making modifications authorized by this Section 2(a) + (4) never produces Adapted Material. + + 5. Downstream recipients. + + a. Offer from the Licensor -- Licensed Material. Every + recipient of the Licensed Material automatically + receives an offer from the Licensor to exercise the + Licensed Rights under the terms and conditions of this + Public License. + + b. Additional offer from the Licensor -- Adapted Material. + Every recipient of Adapted Material from You + automatically receives an offer from the Licensor to + exercise the Licensed Rights in the Adapted Material + under the conditions of the Adapter's License You apply. + + c. No downstream restrictions. You may not offer or impose + any additional or different terms or conditions on, or + apply any Effective Technological Measures to, the + Licensed Material if doing so restricts exercise of the + Licensed Rights by any recipient of the Licensed + Material. + + 6. No endorsement. Nothing in this Public License constitutes or + may be construed as permission to assert or imply that You + are, or that Your use of the Licensed Material is, connected + with, or sponsored, endorsed, or granted official status by, + the Licensor or others designated to receive attribution as + provided in Section 3(a)(1)(A)(i). + + b. Other rights. + + 1. Moral rights, such as the right of integrity, are not + licensed under this Public License, nor are publicity, + privacy, and/or other similar personality rights; however, to + the extent possible, the Licensor waives and/or agrees not to + assert any such rights held by the Licensor to the limited + extent necessary to allow You to exercise the Licensed + Rights, but not otherwise. + + 2. Patent and trademark rights are not licensed under this + Public License. + + 3. To the extent possible, the Licensor waives any right to + collect royalties from You for the exercise of the Licensed + Rights, whether directly or through a collecting society + under any voluntary or waivable statutory or compulsory + licensing scheme. In all other cases the Licensor expressly + reserves any right to collect such royalties. + + +Section 3 -- License Conditions. + +Your exercise of the Licensed Rights is expressly made subject to the +following conditions. + + a. Attribution. + + 1. If You Share the Licensed Material (including in modified + form), You must: + + a. retain the following if it is supplied by the Licensor + with the Licensed Material: + + i. identification of the creator(s) of the Licensed + Material and any others designated to receive + attribution, in any reasonable manner requested by + the Licensor (including by pseudonym if + designated); + + ii. a copyright notice; + + iii. a notice that refers to this Public License; + + iv. a notice that refers to the disclaimer of + warranties; + + v. a URI or hyperlink to the Licensed Material to the + extent reasonably practicable; + + b. indicate if You modified the Licensed Material and + retain an indication of any previous modifications; and + + c. indicate the Licensed Material is licensed under this + Public License, and include the text of, or the URI or + hyperlink to, this Public License. + + 2. You may satisfy the conditions in Section 3(a)(1) in any + reasonable manner based on the medium, means, and context in + which You Share the Licensed Material. For example, it may be + reasonable to satisfy the conditions by providing a URI or + hyperlink to a resource that includes the required + information. + + 3. If requested by the Licensor, You must remove any of the + information required by Section 3(a)(1)(A) to the extent + reasonably practicable. + + b. ShareAlike. + + In addition to the conditions in Section 3(a), if You Share + Adapted Material You produce, the following conditions also apply. + + 1. The Adapter's License You apply must be a Creative Commons + license with the same License Elements, this version or + later, or a BY-SA Compatible License. + + 2. You must include the text of, or the URI or hyperlink to, the + Adapter's License You apply. You may satisfy this condition + in any reasonable manner based on the medium, means, and + context in which You Share Adapted Material. + + 3. You may not offer or impose any additional or different terms + or conditions on, or apply any Effective Technological + Measures to, Adapted Material that restrict exercise of the + rights granted under the Adapter's License You apply. + + +Section 4 -- Sui Generis Database Rights. + +Where the Licensed Rights include Sui Generis Database Rights that +apply to Your use of the Licensed Material: + + a. for the avoidance of doubt, Section 2(a)(1) grants You the right + to extract, reuse, reproduce, and Share all or a substantial + portion of the contents of the database; + + b. if You include all or a substantial portion of the database + contents in a database in which You have Sui Generis Database + Rights, then the database in which You have Sui Generis Database + Rights (but not its individual contents) is Adapted Material, + + including for purposes of Section 3(b); and + c. You must comply with the conditions in Section 3(a) if You Share + all or a substantial portion of the contents of the database. + +For the avoidance of doubt, this Section 4 supplements and does not +replace Your obligations under this Public License where the Licensed +Rights include other Copyright and Similar Rights. + + +Section 5 -- Disclaimer of Warranties and Limitation of Liability. + + a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE + EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS + AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF + ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, + IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, + WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, + ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT + KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT + ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. + + b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE + TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, + NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, + INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, + COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR + USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN + ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR + DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR + IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. + + c. The disclaimer of warranties and limitation of liability provided + above shall be interpreted in a manner that, to the extent + possible, most closely approximates an absolute disclaimer and + waiver of all liability. + + +Section 6 -- Term and Termination. + + a. This Public License applies for the term of the Copyright and + Similar Rights licensed here. However, if You fail to comply with + this Public License, then Your rights under this Public License + terminate automatically. + + b. Where Your right to use the Licensed Material has terminated under + Section 6(a), it reinstates: + + 1. automatically as of the date the violation is cured, provided + it is cured within 30 days of Your discovery of the + violation; or + + 2. upon express reinstatement by the Licensor. + + For the avoidance of doubt, this Section 6(b) does not affect any + right the Licensor may have to seek remedies for Your violations + of this Public License. + + c. For the avoidance of doubt, the Licensor may also offer the + Licensed Material under separate terms or conditions or stop + distributing the Licensed Material at any time; however, doing so + will not terminate this Public License. + + d. Sections 1, 5, 6, 7, and 8 survive termination of this Public + License. + + +Section 7 -- Other Terms and Conditions. + + a. The Licensor shall not be bound by any additional or different + terms or conditions communicated by You unless expressly agreed. + + b. Any arrangements, understandings, or agreements regarding the + Licensed Material not stated herein are separate from and + independent of the terms and conditions of this Public License. + + +Section 8 -- Interpretation. + + a. For the avoidance of doubt, this Public License does not, and + shall not be interpreted to, reduce, limit, restrict, or impose + conditions on any use of the Licensed Material that could lawfully + be made without permission under this Public License. + + b. To the extent possible, if any provision of this Public License is + deemed unenforceable, it shall be automatically reformed to the + minimum extent necessary to make it enforceable. If the provision + cannot be reformed, it shall be severed from this Public License + without affecting the enforceability of the remaining terms and + conditions. + + c. No term or condition of this Public License will be waived and no + failure to comply consented to unless expressly agreed to by the + Licensor. + + d. Nothing in this Public License constitutes or may be interpreted + as a limitation upon, or waiver of, any privileges and immunities + that apply to the Licensor or You, including from the legal + processes of any jurisdiction or authority. + + +======================================================================= + +Creative Commons is not a party to its public +licenses. Notwithstanding, Creative Commons may elect to apply one of +its public licenses to material it publishes and in those instances +will be considered the “Licensor.” The text of the Creative Commons +public licenses is dedicated to the public domain under the CC0 Public +Domain Dedication. Except for the limited purpose of indicating that +material is shared under a Creative Commons public license or as +otherwise permitted by the Creative Commons policies published at +creativecommons.org/policies, Creative Commons does not authorize the +use of the trademark "Creative Commons" or any other trademark or logo +of Creative Commons without its prior written consent including, +without limitation, in connection with any unauthorized modifications +to any of its public licenses or any other arrangements, +understandings, or agreements concerning use of licensed material. For +the avoidance of doubt, this paragraph does not form part of the +public licenses. + +Creative Commons may be contacted at creativecommons.org. diff --git a/mods/basic_materials/README.md b/mods/basic_materials/README.md new file mode 100644 index 00000000..919e4f02 --- /dev/null +++ b/mods/basic_materials/README.md @@ -0,0 +1,23 @@ +# Basic Materials mod + +mod that adds basic material nodes and items + +## Install + +### Option 1: use content tab in minetest + +* click the content tab +* search for basic materials +* click install on basic materials + +### Option 2: download from [ContentDB](https://content.minetest.net/packages/VanessaE/basic_materials/) + +* click the above link or search for basic materials on ContentDB +* select the download button on the basic materials page +* extract the zip downloaded from the previous step +* place in your mods folder + +### Option 3: use git + +* `git clone https://github.com/mt-mods/basic_materials.git` +* `cd basic_materials` \ No newline at end of file diff --git a/mods/basic_materials/aliases.lua b/mods/basic_materials/aliases.lua new file mode 100644 index 00000000..30185f4b --- /dev/null +++ b/mods/basic_materials/aliases.lua @@ -0,0 +1,34 @@ +minetest.register_alias("homedecor:plastic_sheeting", "basic_materials:plastic_sheet") +minetest.register_alias("homedecor:plastic_strips", "basic_materials:plastic_strip") +minetest.register_alias("homedecor:empty_spool", "basic_materials:empty_spool") +minetest.register_alias("homedecor:oil_extract", "basic_materials:oil_extract") +minetest.register_alias("homedecor:paraffin", "basic_materials:paraffin") +minetest.register_alias("homedecor:plastic_base", "basic_materials:paraffin") +minetest.register_alias("homedecor:terracotta_base", "basic_materials:terracotta_base") +minetest.register_alias("gloopblocks:wet_cement", "basic_materials:wet_cement") +minetest.register_alias("gloopblocks:cement", "basic_materials:cement_block") +minetest.register_alias("technic:concrete", "basic_materials:concrete_block") +minetest.register_alias("homedecor:ic", "basic_materials:ic") +minetest.register_alias("homedecor:motor", "basic_materials:motor") +minetest.register_alias("technic:motor", "basic_materials:motor") +minetest.register_alias("homedecor:heating_element", "basic_materials:heating_element") +minetest.register_alias("homedecor:power_crystal", "basic_materials:energy_crystal_simple") +minetest.register_alias("homedecor:copper_wire", "basic_materials:copper_wire") +minetest.register_alias("technic:fine_copper_wire", "basic_materials:copper_wire") +minetest.register_alias("technic:fine_silver_wire", "basic_materials:silver_wire") +minetest.register_alias("technic:fine_gold_wire", "basic_materials:gold_wire") +minetest.register_alias("homedecor:steel_wire", "basic_materials:steel_wire") +minetest.register_alias("homedecor:brass_ingot", "basic_materials:brass_ingot") +minetest.register_alias("technic:brass_ingot", "basic_materials:brass_ingot") +minetest.register_alias("technic:brass_block", "basic_materials:brass_block") +minetest.register_alias("homedecor:copper_strip", "basic_materials:copper_strip") +minetest.register_alias("homedecor:steel_strip", "basic_materials:steel_strip") +minetest.register_alias("homedecor:chainlink_brass", "basic_materials:chainlink_brass") +minetest.register_alias("chains:chain", "basic_materials:chain_steel") +minetest.register_alias("chains:chain_brass", "basic_materials:chain_brass") +minetest.register_alias("pipeworks:gear", "basic_materials:gear_steel") +minetest.register_alias("technic:rebar", "basic_materials:steel_bar") + +minetest.register_alias_force("mesecons_materials:silicon", "basic_materials:silicon") +minetest.register_alias_force("glooptest:chainlink", "basic_materials:chainlink_steel") +minetest.register_alias_force("homedecor:chainlink_steel", "basic_materials:chainlink_steel") \ No newline at end of file diff --git a/mods/basic_materials/craftitems.lua b/mods/basic_materials/craftitems.lua new file mode 100644 index 00000000..0040c67d --- /dev/null +++ b/mods/basic_materials/craftitems.lua @@ -0,0 +1,188 @@ +local S = minetest.get_translator("basic_materials") + +minetest.register_craftitem("basic_materials:plastic_sheet", { + description = S("Plastic sheet"), + inventory_image = "basic_materials_plastic_sheet.png", +}) + +minetest.register_craftitem("basic_materials:plastic_strip", { + description = S("Plastic strips"), + groups = { strip = 1 }, + inventory_image = "basic_materials_plastic_strip.png", +}) + +minetest.register_craftitem("basic_materials:empty_spool", { + description = S("Empty wire spool"), + inventory_image = "basic_materials_empty_spool.png" +}) + +minetest.register_craftitem("basic_materials:oil_extract", { + description = S("Oil extract"), + inventory_image = "basic_materials_oil_extract.png", +}) + +minetest.register_craftitem("basic_materials:paraffin", { + description = S("Unprocessed paraffin"), + inventory_image = "basic_materials_paraffin.png", +}) + +minetest.register_craftitem("basic_materials:terracotta_base", { + description = S("Uncooked Terracotta Base"), + inventory_image = "basic_materials_terracotta_base.png", +}) + +minetest.register_craftitem("basic_materials:wet_cement", { + description = S("Wet Cement"), + inventory_image = "basic_materials_wet_cement.png", +}) + +minetest.register_craftitem("basic_materials:silicon", { + description = S("Silicon lump"), + inventory_image = "basic_materials_silicon.png", +}) + +minetest.register_craftitem("basic_materials:ic", { + description = S("Simple Integrated Circuit"), + inventory_image = "basic_materials_ic.png", +}) + +minetest.register_craftitem("basic_materials:motor", { + description = S("Simple Motor"), + inventory_image = "basic_materials_motor.png", +}) + +minetest.register_craftitem("basic_materials:heating_element", { + description = S("Heating element"), + inventory_image = "basic_materials_heating_element.png", +}) + +minetest.register_craftitem("basic_materials:energy_crystal_simple", { + description = S("Simple energy crystal"), + inventory_image = "basic_materials_energy_crystal.png", +}) + +minetest.register_craftitem("basic_materials:steel_wire", { + description = S("Spool of steel wire"), + groups = { wire = 1 }, + inventory_image = "basic_materials_steel_wire.png" +}) + +minetest.register_craftitem("basic_materials:copper_wire", { + description = S("Spool of copper wire"), + groups = { wire = 1 }, + inventory_image = "basic_materials_copper_wire.png" +}) + +minetest.register_craftitem("basic_materials:silver_wire", { + description = S("Spool of silver wire"), + groups = { wire = 1 }, + inventory_image = "basic_materials_silver_wire.png" +}) + +minetest.register_craftitem("basic_materials:gold_wire", { + description = S("Spool of gold wire"), + groups = { wire = 1 }, + inventory_image = "basic_materials_gold_wire.png" +}) + +minetest.register_craftitem("basic_materials:stainless_steel_wire", { + description = S("Spool of stainless steel wire"), + groups = { wire = 1 }, + inventory_image = "basic_materials_stainless_steel_wire.png" +}) + +minetest.register_craftitem("basic_materials:aluminum_wire", { + description = S("Spool of aluminum wire"), + groups = { wire = 1 }, + inventory_image = "basic_materials_aluminum_wire.png" +}) + +minetest.register_craftitem("basic_materials:steel_strip", { + description = S("Steel Strip"), + groups = { strip = 1 }, + inventory_image = "basic_materials_steel_strip.png" +}) + +minetest.register_craftitem("basic_materials:copper_strip", { + description = S("Copper Strip"), + groups = { strip = 1 }, + inventory_image = "basic_materials_copper_strip.png" +}) + +minetest.register_craftitem("basic_materials:lead_strip", { + description = S("Lead Strip"), + groups = { strip = 1 }, + inventory_image = "basic_materials_lead_strip.png" +}) + +minetest.register_craftitem("basic_materials:gold_strip", { + description = S("Gold Strip"), + groups = { strip = 1 }, + inventory_image = "basic_materials_gold_strip.png" +}) + +minetest.register_craftitem("basic_materials:stainless_steel_strip", { + description = S("Stainless Steel Strip"), + groups = { strip = 1 }, + inventory_image = "basic_materials_stainless_steel_strip.png" +}) + +minetest.register_craftitem("basic_materials:aluminum_strip", { + description = S("Aluminum Strip"), + groups = { strip = 1 }, + inventory_image = "basic_materials_aluminum_strip.png" +}) + +minetest.register_craftitem("basic_materials:steel_bar", { + description = S("Steel Bar"), + inventory_image = "basic_materials_steel_bar.png", +}) + +minetest.register_craftitem("basic_materials:carbon_steel_bar", { + description = S("Carbon Steel Bar"), + inventory_image = "basic_materials_carbon_steel_bar.png", +}) + +minetest.register_craftitem("basic_materials:stainless_steel_bar", { + description = S("Stainless Steel Bar"), + inventory_image = "basic_materials_stainless_steel_bar.png", +}) + +minetest.register_craftitem("basic_materials:aluminum_bar", { + description = S("Aluminum Bar"), + inventory_image = "basic_materials_aluminum_bar.png", +}) + +minetest.register_craftitem("basic_materials:chainlink_brass", { + description = S("Chainlinks (brass)"), + groups = { chainlinks = 1 }, + inventory_image = "basic_materials_chainlink_brass.png" +}) + +minetest.register_craftitem("basic_materials:chainlink_steel", { + description = S("Chainlinks (steel)"), + groups = { chainlinks = 1 }, + inventory_image = "basic_materials_chainlink_steel.png" +}) + +minetest.register_craftitem("basic_materials:brass_ingot", { + description = S("Brass Ingot"), + inventory_image = "basic_materials_brass_ingot.png", +}) + +minetest.register_craftitem("basic_materials:gear_steel", { + description = S("Steel gear"), + inventory_image = "basic_materials_gear_steel.png" +}) + +minetest.register_craftitem("basic_materials:padlock", { + description = S("Padlock"), + inventory_image = "basic_materials_padlock.png" +}) + +if minetest.get_modpath("hades_materials") then + minetest.register_alias_force("basic_materials:plastic_sheet", "hades_materials:plastic_sheeting") + minetest.register_alias_force("basic_materials:paraffin", "hades_materials:plastic_base") + minetest.register_alias_force("basic_materials:silicon", "hades_materials:silicon") +end + diff --git a/mods/basic_materials/crafts.lua b/mods/basic_materials/crafts.lua new file mode 100644 index 00000000..0f24e110 --- /dev/null +++ b/mods/basic_materials/crafts.lua @@ -0,0 +1,441 @@ +local materials = xcompat.materials + +local have_hades_materials = minetest.get_modpath("hades_materials") + +local function compress_craft(input) + local buffer = {} + for _, item in pairs(input) do + if type(item)=="table" then + for _, inneritem in pairs(item) do + buffer[inneritem] = (buffer[inneritem] or 0) + 1 + end + elseif item ~= "" then + buffer[item] = (buffer[item] or 0) + 1 + end + end + + local output = {} + for item, count in pairs(buffer) do + output[#output + 1] = item .. " " .. count + end + return output +end + +local function register_craft(input) + if minetest.get_modpath("rp_crafting") then + local rp_craft = compress_craft(input.recipe) + if #rp_craft > crafting.MAX_INPUTS then + minetest.log("error", "[basic_materials] unable to register craft for " .. input.output) + return + end + + crafting.register_craft({ + output = input.output, + items = rp_craft + }) + else + minetest.register_craft(input) + end +end + +-- Craft recipes +register_craft({ + output = "basic_materials:chainlink_brass 12", + recipe = { + {"", "basic_materials:brass_ingot", "basic_materials:brass_ingot"}, + {"basic_materials:brass_ingot", "", "basic_materials:brass_ingot"}, + {"basic_materials:brass_ingot", "basic_materials:brass_ingot", ""}, + }, +}) + +register_craft({ + output = "basic_materials:chain_steel 2", + recipe = { + {"basic_materials:chainlink_steel"}, + {"basic_materials:chainlink_steel"}, + {"basic_materials:chainlink_steel"} + } +}) + +register_craft({ + output = "basic_materials:chain_brass 2", + recipe = { + {"basic_materials:chainlink_brass"}, + {"basic_materials:chainlink_brass"}, + {"basic_materials:chainlink_brass"} + } +}) + +register_craft( { + type = "shapeless", + output = "basic_materials:brass_ingot 9", + recipe = {"basic_materials:brass_block"}, +}) + +register_craft( { + output = "basic_materials:brass_block", + recipe = { + {"basic_materials:brass_ingot", "basic_materials:brass_ingot", "basic_materials:brass_ingot"}, + {"basic_materials:brass_ingot", "basic_materials:brass_ingot", "basic_materials:brass_ingot"}, + {"basic_materials:brass_ingot", "basic_materials:brass_ingot", "basic_materials:brass_ingot"}, + }, +}) + +register_craft( { + output = "basic_materials:plastic_strip 9", + recipe = { + {"basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet"} + }, +}) + +register_craft( { + output = "basic_materials:empty_spool 3", + recipe = { + {"basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet"}, + {"", "basic_materials:plastic_sheet", ""}, + {"basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet"} + }, +}) + +if have_hades_materials then + minetest.clear_craft({ + type = "shapeless", + recipe = {"group:leaves", "group:leaves", "group:leaves", "group:leaves", "group:leaves", "group:leaves"} + }) +end + +register_craft({ + type = "shapeless", + output = "basic_materials:oil_extract 2", + recipe = {"group:leaves", "group:leaves", "group:leaves", "group:leaves", "group:leaves", "group:leaves"} +}) + +-- Cooking recipes +if not have_hades_materials then + minetest.register_craft({ + type = "cooking", + output = "basic_materials:plastic_sheet", + recipe = "basic_materials:paraffin", + }) +end + +minetest.register_craft({ + type = "cooking", + output = "basic_materials:paraffin", + recipe = "basic_materials:oil_extract", +}) + +minetest.register_craft({ + type = "cooking", + output = "basic_materials:cement_block", + recipe = "basic_materials:wet_cement", + cooktime = 8 +}) + +-- Fuel recipes +minetest.register_craft({ + type = "fuel", + recipe = "basic_materials:plastic_sheet", + burntime = 30, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "basic_materials:oil_extract", + burntime = 30, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "basic_materials:paraffin", + burntime = 30, +}) + +register_craft({ + output = "basic_materials:concrete_block 6", + recipe = { + {"group:sand", "basic_materials:wet_cement", materials.gravel}, + {"basic_materials:steel_bar", "basic_materials:wet_cement", "basic_materials:steel_bar"}, + {materials.gravel, "basic_materials:wet_cement", "group:sand"}, + } +}) + +register_craft( { + output = "basic_materials:motor 2", + recipe = { + {materials.mese_crystal_fragment, "basic_materials:copper_wire", "basic_materials:plastic_sheet"}, + {materials.copper_ingot, materials.steel_ingot, materials.steel_ingot}, + {materials.mese_crystal_fragment, "basic_materials:copper_wire", "basic_materials:plastic_sheet"} + }, + replacements = { + {"basic_materials:copper_wire", "basic_materials:empty_spool"}, + {"basic_materials:copper_wire", "basic_materials:empty_spool"}, + } +}) + +register_craft( { + output = "basic_materials:heating_element 2", + recipe = { + {materials.copper_ingot, materials.mese_crystal_fragment, materials.copper_ingot} + }, +}) + +register_craft({ + --type = "shapeless", + output = "basic_materials:energy_crystal_simple 2", + recipe = { + {materials.mese_crystal_fragment, materials.torch, materials.mese_crystal_fragment}, + {materials.diamond, materials.gold_ingot, materials.diamond} + }, +}) + +register_craft( { + output = "basic_materials:copper_wire 2", + type = "shapeless", + recipe = { + materials.copper_ingot, + "basic_materials:empty_spool", + "basic_materials:empty_spool", + }, +}) + +register_craft( { + output = "basic_materials:gold_wire 2", + type = "shapeless", + recipe = { + materials.gold_ingot, + "basic_materials:empty_spool", + "basic_materials:empty_spool", + }, +}) + +register_craft( { + output = "basic_materials:steel_wire 2", + type = "shapeless", + recipe = { + materials.steel_ingot, + "basic_materials:empty_spool", + "basic_materials:empty_spool", + }, +}) + +if materials.stainless_steel_ingot then + register_craft( { + output = "basic_materials:stainless_steel_wire 2", + type = "shapeless", + recipe = { + materials.stainless_steel_ingot, + "basic_materials:empty_spool", + "basic_materials:empty_spool", + }, + }) +end + +if materials.aluminum_ingot then + register_craft( { + output = "basic_materials:aluminum_wire 2", + type = "shapeless", + recipe = { + materials.aluminum_ingot, + "basic_materials:empty_spool", + "basic_materials:empty_spool", + }, + }) +end + +register_craft( { + output = "basic_materials:steel_strip 12", + recipe = { + {"", materials.steel_ingot, ""}, + {materials.steel_ingot, "", ""}, + }, +}) + +register_craft( { + output = "basic_materials:copper_strip 12", + recipe = { + {"", materials.copper_ingot, ""}, + {materials.copper_ingot, "", ""}, + }, +}) + +register_craft( { + output = "basic_materials:gold_strip 12", + recipe = { + {"", materials.gold_ingot, ""}, + {materials.gold_ingot, "", ""}, + }, +}) + +if materials.lead_ingot then + register_craft( { + output = "basic_materials:lead_strip 12", + recipe = { + {"", materials.lead_ingot, ""}, + {materials.lead_ingot, "", ""}, + }, + }) +end + +if materials.stainless_steel_ingot then + register_craft( { + output = "basic_materials:stainless_steel_strip 12", + recipe = { + {"", materials.stainless_steel_ingot, ""}, + {materials.stainless_steel_ingot, "", ""}, + }, + }) +end + +if materials.aluminum_ingot then + register_craft( { + output = "basic_materials:aluminum_strip 12", + recipe = { + {"", materials.aluminum_ingot, ""}, + {materials.aluminum_ingot, "", ""}, + }, + }) +end + +register_craft( { + output = "basic_materials:steel_bar 6", + recipe = { + {"", "", materials.steel_ingot}, + {"", materials.steel_ingot, ""}, + {materials.steel_ingot, "", ""}, + }, +}) + +if materials.carbon_steel_ingot then + register_craft( { + output = "basic_materials:carbon_steel_bar 6", + recipe = { + {"", "", materials.carbon_steel_ingot}, + {"", materials.carbon_steel_ingot, ""}, + {materials.carbon_steel_ingot, "", ""}, + }, + }) +end + +if materials.stainless_steel_ingot then + register_craft( { + output = "basic_materials:stainless_steel_bar 6", + recipe = { + {"", "", materials.stainless_steel_ingot}, + {"", materials.stainless_steel_ingot, ""}, + {materials.stainless_steel_ingot, "", ""}, + }, + }) +end + +if materials.aluminum_ingot then + register_craft( { + output = "basic_materials:aluminum_bar 6", + recipe = { + {"", "", materials.aluminum_ingot}, + {"", materials.aluminum_ingot, ""}, + {materials.aluminum_ingot, "", ""}, + }, + }) +end + +register_craft( { + output = "basic_materials:padlock 2", + recipe = { + {"basic_materials:steel_bar"}, + {materials.steel_ingot}, + {materials.steel_ingot}, + }, +}) + +register_craft({ + output = "basic_materials:chainlink_steel 12", + recipe = { + {"", materials.steel_ingot, materials.steel_ingot}, + {materials.steel_ingot, "", materials.steel_ingot}, + {materials.steel_ingot, materials.steel_ingot, ""}, + }, +}) + +register_craft( { + output = "basic_materials:gear_steel 6", + recipe = { + {"", materials.steel_ingot, ""}, + {materials.steel_ingot,"basic_materials:chainlink_steel", materials.steel_ingot}, + {"", materials.steel_ingot, ""} + }, +}) + +register_craft( { + type = "shapeless", + output = "basic_materials:terracotta_base 8", + recipe = { + materials.water_bucket, + materials.clay_lump, + materials.gravel, + }, + replacements = {{materials.water_bucket, materials.empty_bucket}}, +}) + +register_craft({ + type = "shapeless", + output = "basic_materials:wet_cement 3", + recipe = { + materials.dirt, + materials.dye_dark_grey, + materials.dye_dark_grey, + materials.dye_dark_grey, + materials.water_bucket + }, + replacements = {{materials.water_bucket, materials.empty_bucket}}, +}) + +if not have_hades_materials then + register_craft( { + output = "basic_materials:silicon 4", + recipe = { + {materials.sand, materials.sand}, + {materials.sand, materials.steel_ingot}, + }, + }) +end + +register_craft( { + output = "basic_materials:ic 4", + recipe = { + {"basic_materials:silicon", "basic_materials:silicon"}, + {"basic_materials:silicon", materials.copper_ingot}, + }, +}) + +-- Without moreores, there still should be a way to create brass. +register_craft( { + output = "basic_materials:brass_ingot 9", + recipe = { + {materials.copper_ingot, materials.tin_ingot, materials.copper_ingot}, + {materials.gold_ingot, materials.copper_ingot, materials.tin_ingot}, + {materials.copper_ingot, materials.tin_ingot, materials.copper_ingot}, + }, +}) + +if materials.silver_ingot then + register_craft( { + output = "basic_materials:silver_wire 2", + type = "shapeless", + recipe = { + materials.silver_ingot, + "basic_materials:empty_spool", + "basic_materials:empty_spool", + }, + }) + + register_craft( { + type = "shapeless", + output = "basic_materials:brass_ingot 3", + recipe = { + materials.copper_ingot, + materials.copper_ingot, + materials.silver_ingot, + }, + }) +end diff --git a/mods/basic_materials/init.lua b/mods/basic_materials/init.lua new file mode 100644 index 00000000..ad5ea101 --- /dev/null +++ b/mods/basic_materials/init.lua @@ -0,0 +1,14 @@ +-- Basic materials mod +-- by Vanessa Dannenberg + +-- This mod supplies all those little random craft items that everyone always +-- seems to need, such as metal bars (ala rebar), plastic, wire, and so on. + +basic_materials = {} +basic_materials.mod = { author = "Vanessa Dannenberg" } +basic_materials.modpath = minetest.get_modpath("basic_materials") + +dofile(basic_materials.modpath .. "/nodes.lua") +dofile(basic_materials.modpath .. "/craftitems.lua") +dofile(basic_materials.modpath .. "/crafts.lua") +dofile(basic_materials.modpath .. "/aliases.lua") \ No newline at end of file diff --git a/mods/basic_materials/locale/basic_materials.de.tr b/mods/basic_materials/locale/basic_materials.de.tr new file mode 100644 index 00000000..8fddd8a7 --- /dev/null +++ b/mods/basic_materials/locale/basic_materials.de.tr @@ -0,0 +1,33 @@ +# textdomain: basic_materials +Silicon lump=Siliziumklumpen +Simple Integrated Circuit=Einfacher Integrierter Schaltkreis +Simple Motor=Einfacher Motor +Heating element=Heizelement +Simple energy crystal=Einfacher Energiekristall + +Spool of steel wire=Spule mit Stahldraht +Spool of copper wire=Spule mit Kupferdraht +Spool of silver wire=Spule mit Silberdraht +Spool of gold wire=Spule mit Golddraht +Steel Strip=Stahlstreifen +Copper Strip=Kupferstreifen +Steel Bar=Stahlstab +Chainlinks (brass)=Messingkettenglieder +Chainlinks (steel)=Stahlkettenglieder +Brass Ingot=Messingbarren +Steel gear=Stahlzahnrad +Padlock=Vorhängeschloss +Chain (steel, hanging)=Hängende Stahlkette +Chain (brass, hanging)=Hängende Messingkette +Brass Block=Messingblock + +Oil extract=Ölextrakt +Unprocessed paraffin=Unverarbeitetes Paraffin +Uncooked Terracotta Base=Ungebranntes Terrakotta +Wet Cement=Nasser Zement +Cement=Zement +Concrete Block=Betonblock + +Plastic sheet=Kunststoffplatte +Plastic strips=Kunststoffstreifen +Empty wire spool=Leere Drahtspule diff --git a/mods/basic_materials/locale/basic_materials.fr.tr b/mods/basic_materials/locale/basic_materials.fr.tr new file mode 100644 index 00000000..0bebf79d --- /dev/null +++ b/mods/basic_materials/locale/basic_materials.fr.tr @@ -0,0 +1,33 @@ +# textdomain: basic_materials +Silicon lump=Morceau de silicium +Simple Integrated Circuit=Circuit intégré simple +Simple Motor=Moteur simple +Heating element=Élément chauffant +Simple energy crystal=Cristal d’énergie simple + +Spool of steel wire=Bobine de fil d’acier +Spool of copper wire=Bobine de fil de cuivre +Spool of silver wire=Bobine de fil d’argent +Spool of gold wire=Bobine de fil d’or +Steel Strip=Bande de acier +Copper Strip=Bande de cuivre +Steel Bar=Barre d’acier +Chainlinks (brass)=Maillon en laiton +Chainlinks (steel)=Maillon en acier +Brass Ingot=Lingot de laiton +Steel gear=Rouage en acier +Padlock=Cadenas +Chain (steel, hanging)=Chaine en acier +Chain (brass, hanging)=Chaine en laiton +Brass Block=Bloc de laiton + +Oil extract=Extrait d’huile +Unprocessed paraffin=Paraffine non transformée +Uncooked Terracotta Base=Argile crue +Wet Cement=Ciment humide +Cement=Ciment +Concrete Block=Bloc de béton + +Plastic sheet=Morceau de plastique +Plastic strips=Bande de plastique +Empty wire spool=Bobine de fil vide diff --git a/mods/basic_materials/locale/basic_materials.it.tr b/mods/basic_materials/locale/basic_materials.it.tr new file mode 100644 index 00000000..aae0b3be --- /dev/null +++ b/mods/basic_materials/locale/basic_materials.it.tr @@ -0,0 +1,34 @@ +# textdomain: basic_materials +# Author: Salvo 'LtWorf' Tomaselli +Silicon lump=Grumo di silicio +Simple Integrated Circuit=Circuito integrato semplice +Simple Motor=Motore semplice +Heating element=Elemento riscaldante +Simple energy crystal=Cristallo di energia semplice + +Spool of steel wire=Bobina di filo d'acciaio +Spool of copper wire=Bobina di filo di rame +Spool of silver wire=Bobina di filo d'argento +Spool of gold wire=Bobina di filo d'oro +Steel Strip=Striscia d'acciaio +Copper Strip=Striscia di rame +Steel Bar=Barra d'acciaio +Chainlinks (brass)=Catena (ottone) +Chainlinks (steel)=Catena (acciaio) +Brass Ingot=Lingotto di ottone +Steel gear=Ingranaggio d'acciaio +Padlock=Catenaccio +Chain (steel, hanging)=Catena (acciaio, pendente) +Chain (brass, hanging)=Catena (ottone, pendente) +Brass Block=Blocco di ottone + +Oil extract=Estratto d'olio +Unprocessed paraffin=Paraffina grezza +Uncooked Terracotta Base=Argilla cruda +Wet Cement=Cemento umido +Cement=Cemento +Concrete Block=Blocco di calcestruzzo + +Plastic sheet=Foglio di plastica +Plastic strips=Striscia di plastica +Empty wire spool=Rocchetto vuoto diff --git a/mods/basic_materials/locale/basic_materials.ru.tr b/mods/basic_materials/locale/basic_materials.ru.tr new file mode 100644 index 00000000..85e9c0cf --- /dev/null +++ b/mods/basic_materials/locale/basic_materials.ru.tr @@ -0,0 +1,33 @@ +# textdomain: basic_materials +Silicon lump=Кусок Кремния +Simple Integrated Circuit=Микросхема +Simple Motor=Мотор +Heating element=Нить Накала +Simple energy crystal=Энергетический Кристалл + +Spool of steel wire=Катушка Стальной Проволоки +Spool of copper wire=Катушка Медной Проволоки +Spool of silver wire=Катушка Серебрянной Проволоки +Spool of gold wire=Катушка Золотой Проволоки +Steel Strip=Стальная Полоса +Copper Strip=Медная Полоса +Steel Bar=Стальной Прут +Chainlinks (brass)=Латунные Звенья +Chainlinks (steel)=Стальные Звенья +Brass Ingot=Латунный Брусок +Steel gear=Стальная Шестерня +Padlock=Навесной Замок +Chain (steel, hanging)=Стальная Цепь +Chain (brass, hanging)=Латунная Цепь +Brass Block=Латунный Блок + +Oil extract=Масляный Экстракт +Unprocessed paraffin=Необработанный Парафин +Uncooked Terracotta Base=Ком Мокрого Терракота +Wet Cement=Ком Мокрого Цемента +Cement=Цемент +Concrete Block=Железобетон + +Plastic sheet=Пластиковый Лист +Plastic strips=Пластиковая Полоса +Empty wire spool=Пустая Катушка diff --git a/mods/basic_materials/mod.conf b/mods/basic_materials/mod.conf new file mode 100644 index 00000000..739746b4 --- /dev/null +++ b/mods/basic_materials/mod.conf @@ -0,0 +1,8 @@ +name = basic_materials +depends = xcompat +optional_depends = moreores, default, mesecons_materials, dye, bucket, fl_stone, fl_trees, mcl_sounds, hades_core, hades_sounds, hades_materials, hades_dye, hades_bucket, hades_extraores, hades_mesecons_materials, aloz, rp_crafting, mcl_core, mcl_copper +min_minetest_version = 5.2.0 +release = 23751 +author = mt-mods +description = Provides a small selection of "basic" materials and items that other mods should use when possible -- things like steel bars and chains, wire, plastic strips and sheets, and more. +title = Basic Materials and items diff --git a/mods/basic_materials/models/basic_materials_chains.obj b/mods/basic_materials/models/basic_materials_chains.obj new file mode 100644 index 00000000..78724c98 --- /dev/null +++ b/mods/basic_materials/models/basic_materials_chains.obj @@ -0,0 +1,881 @@ +# Blender v2.73 (sub 0) OBJ File: 'chains.blend' +# www.blender.org +o Torus.016_Torus +v 0.000000 -0.429978 0.000002 +v 0.000000 -0.401109 0.055211 +v -0.014044 -0.391975 0.048870 +v -0.014044 -0.423304 0.000002 +v -0.009826 -0.379748 0.040970 +v -0.009826 -0.406012 0.000002 +v 0.009826 -0.379748 0.040970 +v 0.009826 -0.406012 0.000002 +v 0.014044 -0.391975 0.048870 +v 0.014044 -0.423304 0.000002 +v 0.000000 -0.316336 0.080195 +v -0.014044 -0.316336 0.069112 +v -0.009826 -0.316336 0.057941 +v 0.009826 -0.316336 0.057941 +v 0.014044 -0.316336 0.069112 +v 0.000000 -0.231564 0.055211 +v -0.014044 -0.240700 0.048870 +v -0.009826 -0.252925 0.040970 +v 0.009826 -0.252925 0.040970 +v 0.014044 -0.240700 0.048870 +v 0.000000 -0.202695 0.000002 +v -0.014044 -0.209368 0.000002 +v -0.009826 -0.226661 0.000002 +v 0.009826 -0.226661 0.000002 +v 0.014044 -0.209368 0.000002 +v 0.000000 -0.231564 -0.055206 +v -0.014044 -0.240700 -0.048868 +v -0.009826 -0.252925 -0.040967 +v 0.009826 -0.252925 -0.040967 +v 0.014044 -0.240700 -0.048865 +v 0.000000 -0.316336 -0.080190 +v -0.014044 -0.316336 -0.069108 +v -0.009826 -0.316336 -0.057936 +v 0.009826 -0.316336 -0.057936 +v 0.014044 -0.316336 -0.069108 +v 0.000000 -0.400361 -0.055206 +v -0.014044 -0.391975 -0.048868 +v -0.009826 -0.379748 -0.040967 +v 0.009826 -0.379748 -0.040967 +v 0.014044 -0.391975 -0.048868 +v 0.000000 -0.262249 0.000002 +v -0.061672 -0.233381 0.000002 +v -0.054590 -0.224245 -0.012569 +v 0.000000 -0.255577 -0.012569 +v -0.045765 -0.212018 -0.008794 +v 0.000000 -0.238285 -0.008794 +v -0.045765 -0.212018 0.008798 +v 0.000000 -0.238285 0.008798 +v -0.054590 -0.224245 0.012574 +v 0.000000 -0.255577 0.012574 +v -0.089582 -0.148609 0.000002 +v -0.077200 -0.148609 -0.012569 +v -0.064722 -0.148609 -0.008794 +v -0.064722 -0.148609 0.008799 +v -0.077200 -0.148609 0.012574 +v -0.061672 -0.063837 0.000002 +v -0.054590 -0.072971 -0.012569 +v -0.045765 -0.085198 -0.008794 +v -0.045765 -0.085198 0.008799 +v -0.054590 -0.072971 0.012574 +v 0.000000 -0.034967 0.000002 +v 0.000000 -0.041641 -0.012569 +v 0.000000 -0.058933 -0.008794 +v 0.000000 -0.058933 0.008799 +v 0.000000 -0.041641 0.012574 +v 0.061672 -0.063837 0.000002 +v 0.054590 -0.072971 -0.012569 +v 0.045765 -0.085198 -0.008794 +v 0.045765 -0.085198 0.008799 +v 0.054590 -0.072971 0.012574 +v 0.089582 -0.148609 0.000002 +v 0.077200 -0.148609 -0.012569 +v 0.064722 -0.148609 -0.008794 +v 0.064722 -0.148609 0.008799 +v 0.077200 -0.148609 0.012574 +v 0.061672 -0.232631 0.000002 +v 0.054590 -0.224245 -0.012569 +v 0.045765 -0.212018 -0.008794 +v 0.045765 -0.212018 0.008798 +v 0.054590 -0.224245 0.012574 +v 0.000000 0.073316 0.000002 +v 0.061672 0.102183 0.000002 +v 0.054590 0.111319 0.012574 +v 0.000000 0.079988 0.012574 +v 0.045765 0.123546 0.008799 +v 0.000000 0.097280 0.008799 +v 0.045765 0.123546 -0.008794 +v 0.000000 0.097280 -0.008794 +v 0.054590 0.111319 -0.012569 +v 0.000000 0.079988 -0.012569 +v 0.089582 0.186956 0.000002 +v 0.077200 0.186956 0.012574 +v 0.064722 0.186956 0.008799 +v 0.064722 0.186956 -0.008794 +v 0.077200 0.186956 -0.012569 +v 0.061672 0.271728 0.000002 +v 0.054590 0.262594 0.012574 +v 0.045765 0.250367 0.008799 +v 0.045765 0.250367 -0.008794 +v 0.054590 0.262594 -0.012569 +v 0.000000 0.300597 0.000002 +v 0.000000 0.293923 0.012574 +v 0.000000 0.276631 0.008799 +v 0.000000 0.276631 -0.008794 +v 0.000000 0.293923 -0.012569 +v -0.061672 0.271728 0.000002 +v -0.054590 0.262594 0.012574 +v -0.045765 0.250367 0.008799 +v -0.045765 0.250367 -0.008794 +v -0.054590 0.262594 -0.012569 +v -0.089582 0.186956 0.000002 +v -0.077200 0.186956 0.012574 +v -0.064722 0.186956 0.008799 +v -0.064722 0.186956 -0.008794 +v -0.077200 0.186956 -0.012569 +v -0.061672 0.102931 0.000002 +v -0.054590 0.111319 0.012574 +v -0.045765 0.123546 0.008799 +v -0.045765 0.123546 -0.008794 +v -0.054590 0.111319 -0.012569 +v 0.000000 -0.095037 0.000002 +v 0.000000 -0.066168 -0.055206 +v 0.014044 -0.057034 -0.048868 +v 0.014044 -0.088363 0.000002 +v 0.009826 -0.044807 -0.040967 +v 0.009826 -0.071071 0.000002 +v -0.009826 -0.044807 -0.040967 +v -0.009826 -0.071071 0.000002 +v -0.014044 -0.057034 -0.048868 +v -0.014044 -0.088363 0.000002 +v 0.000000 0.018605 -0.080190 +v 0.014044 0.018605 -0.069108 +v 0.009826 0.018605 -0.057936 +v -0.009826 0.018605 -0.057936 +v -0.014044 0.018605 -0.069108 +v 0.000000 0.103377 -0.055206 +v 0.014044 0.094243 -0.048868 +v 0.009826 0.082016 -0.040967 +v -0.009826 0.082016 -0.040967 +v -0.014044 0.094243 -0.048868 +v 0.000000 0.132246 0.000002 +v 0.014044 0.125572 0.000002 +v 0.009826 0.108280 0.000002 +v -0.009826 0.108280 0.000002 +v -0.014044 0.125572 0.000002 +v 0.000000 0.103377 0.055211 +v 0.014044 0.094243 0.048870 +v 0.009826 0.082016 0.040970 +v -0.009826 0.082016 0.040970 +v -0.014044 0.094243 0.048870 +v 0.000000 0.018605 0.080195 +v 0.014044 0.018605 0.069112 +v 0.009826 0.018605 0.057941 +v -0.009826 0.018605 0.057941 +v -0.014044 0.018605 0.069112 +v 0.000000 -0.065420 0.055211 +v 0.014044 -0.057032 0.048870 +v 0.009826 -0.044807 0.040970 +v -0.009826 -0.044807 0.040970 +v -0.014044 -0.057032 0.048870 +v 0.000000 -0.598329 0.000002 +v 0.061672 -0.569460 0.000002 +v 0.054590 -0.560326 0.012574 +v 0.000000 -0.591655 0.012574 +v 0.045765 -0.548099 0.008798 +v 0.000000 -0.574363 0.008798 +v 0.045765 -0.548099 -0.008794 +v 0.000000 -0.574363 -0.008794 +v 0.054590 -0.560326 -0.012569 +v 0.000000 -0.591655 -0.012569 +v 0.089582 -0.484687 0.000002 +v 0.077200 -0.484687 0.012574 +v 0.064722 -0.484687 0.008798 +v 0.064722 -0.484687 -0.008794 +v 0.077200 -0.484687 -0.012569 +v 0.061672 -0.399915 0.000002 +v 0.054590 -0.409051 0.012574 +v 0.045765 -0.421278 0.008798 +v 0.045765 -0.421278 -0.008794 +v 0.054590 -0.409051 -0.012569 +v 0.000000 -0.371048 0.000002 +v 0.000000 -0.377719 0.012574 +v 0.000000 -0.395012 0.008798 +v 0.000000 -0.395012 -0.008794 +v 0.000000 -0.377719 -0.012569 +v -0.061672 -0.399915 0.000002 +v -0.054590 -0.409051 0.012574 +v -0.045765 -0.421278 0.008798 +v -0.045765 -0.421278 -0.008794 +v -0.054590 -0.409051 -0.012569 +v -0.089582 -0.484687 0.000002 +v -0.077200 -0.484687 0.012574 +v -0.064722 -0.484687 0.008798 +v -0.064722 -0.484687 -0.008794 +v -0.077200 -0.484687 -0.012569 +v -0.061672 -0.568712 0.000002 +v -0.054590 -0.560326 0.012574 +v -0.045765 -0.548099 0.008798 +v -0.045765 -0.548099 -0.008794 +v -0.054590 -0.560326 -0.012569 +v 0.000000 0.241043 0.000002 +v 0.000000 0.269910 0.055211 +v -0.014044 0.279047 0.048870 +v -0.014044 0.247717 0.000002 +v -0.009826 0.291274 0.040970 +v -0.009826 0.265007 0.000002 +v 0.009826 0.291274 0.040970 +v 0.009826 0.265007 0.000002 +v 0.014044 0.279047 0.048870 +v 0.014044 0.247717 0.000002 +v 0.000000 0.354683 0.080195 +v -0.014044 0.354683 0.069112 +v -0.009826 0.354683 0.057941 +v 0.009826 0.354683 0.057941 +v 0.014044 0.354683 0.069112 +v 0.000000 0.439455 0.055211 +v -0.014044 0.430321 0.048870 +v -0.009826 0.418094 0.040970 +v 0.009826 0.418094 0.040970 +v 0.014044 0.430321 0.048870 +v 0.000000 0.468325 0.000002 +v -0.014044 0.461651 0.000002 +v -0.009826 0.444361 0.000002 +v 0.009826 0.444361 0.000002 +v 0.014044 0.461651 0.000002 +v 0.000000 0.439455 -0.055206 +v -0.014044 0.430321 -0.048868 +v -0.009826 0.418094 -0.040967 +v 0.009826 0.418094 -0.040967 +v 0.014044 0.430321 -0.048868 +v 0.000000 0.354683 -0.080190 +v -0.014044 0.354683 -0.069108 +v -0.009826 0.354683 -0.057936 +v 0.009826 0.354683 -0.057936 +v 0.014044 0.354683 -0.069108 +v 0.000000 0.270661 -0.055206 +v -0.014044 0.279047 -0.048868 +v -0.009826 0.291274 -0.040967 +v 0.009826 0.291274 -0.040967 +v 0.014044 0.279047 -0.048868 +vt 0.187500 0.125000 +vt 0.250000 0.125000 +vt 0.250000 0.187500 +vt 0.187500 0.187500 +vt 0.250000 0.250000 +vt 0.187500 0.250000 +vt 0.250000 0.312500 +vt 0.187500 0.312500 +vt 0.250000 0.375000 +vt 0.187500 0.375000 +vt 0.187500 0.062500 +vt 0.250000 0.062500 +vt 0.312500 0.125000 +vt 0.312500 0.187500 +vt 0.312500 0.250000 +vt 0.312500 0.312500 +vt 0.312500 0.375000 +vt 0.312500 0.062500 +vt 0.375000 0.125000 +vt 0.375000 0.187500 +vt 0.375000 0.250000 +vt 0.375000 0.312500 +vt 0.375000 0.375000 +vt 0.375000 0.062500 +vt 0.437500 0.125000 +vt 0.437500 0.187500 +vt 0.437500 0.250000 +vt 0.437500 0.312500 +vt 0.437500 0.375000 +vt 0.437500 0.062500 +vt 0.500000 0.125000 +vt 0.500000 0.187500 +vt 0.500000 0.250000 +vt 0.500000 0.312500 +vt 0.500000 0.375000 +vt 0.500000 0.062500 +vt -0.000000 0.125000 +vt 0.062500 0.125000 +vt 0.062500 0.187500 +vt -0.000000 0.187500 +vt 0.062500 0.250000 +vt -0.000000 0.250000 +vt 0.062500 0.312500 +vt -0.000000 0.312500 +vt 0.062500 0.375000 +vt -0.000000 0.375000 +vt -0.000000 0.062500 +vt 0.062500 0.062500 +vt 0.125000 0.125000 +vt 0.125000 0.187500 +vt 0.125000 0.250000 +vt 0.125000 0.312500 +vt 0.125000 0.375000 +vt 0.125000 0.062500 +vt 0.750000 0.625000 +vt 0.812500 0.625000 +vt 0.812500 0.687500 +vt 0.750000 0.687500 +vt 0.750000 0.375000 +vt 0.812500 0.375000 +vt 0.812500 0.437500 +vt 0.750000 0.437500 +vt 0.812500 0.500000 +vt 0.750000 0.500000 +vt 0.812500 0.562500 +vt 0.750000 0.562500 +vt 0.875000 0.625000 +vt 0.875000 0.687500 +vt 0.875000 0.375000 +vt 0.875000 0.437500 +vt 0.875000 0.500000 +vt 0.875000 0.562500 +vt 0.937500 0.625000 +vt 0.937500 0.687500 +vt 0.937500 0.375000 +vt 0.937500 0.437500 +vt 0.937500 0.500000 +vt 0.937500 0.562500 +vt 1.000000 0.625000 +vt 1.000000 0.687500 +vt 1.000000 0.375000 +vt 1.000000 0.437500 +vt 1.000000 0.500000 +vt 1.000000 0.562500 +vt 0.500000 0.625000 +vt 0.562500 0.625000 +vt 0.562500 0.687500 +vt 0.500000 0.687500 +vt 0.562500 0.375000 +vt 0.562500 0.437500 +vt 0.500000 0.437500 +vt 0.562500 0.500000 +vt 0.500000 0.500000 +vt 0.562500 0.562500 +vt 0.500000 0.562500 +vt 0.625000 0.625000 +vt 0.625000 0.687500 +vt 0.625000 0.375000 +vt 0.625000 0.437500 +vt 0.625000 0.500000 +vt 0.625000 0.562500 +vt 0.687500 0.625000 +vt 0.687500 0.687500 +vt 0.687500 0.375000 +vt 0.687500 0.437500 +vt 0.687500 0.500000 +vt 0.687500 0.562500 +vt 0.250000 0.625000 +vt 0.312500 0.625000 +vt 0.312500 0.687500 +vt 0.250000 0.687500 +vt 0.312500 0.437500 +vt 0.250000 0.437500 +vt 0.312500 0.500000 +vt 0.250000 0.500000 +vt 0.312500 0.562500 +vt 0.250000 0.562500 +vt 0.375000 0.625000 +vt 0.375000 0.687500 +vt 0.375000 0.437500 +vt 0.375000 0.500000 +vt 0.375000 0.562500 +vt 0.437500 0.625000 +vt 0.437500 0.687500 +vt 0.437500 0.437500 +vt 0.437500 0.500000 +vt 0.437500 0.562500 +vt -0.000000 0.625000 +vt 0.062500 0.625000 +vt 0.062500 0.687500 +vt -0.000000 0.687500 +vt 0.062500 0.437500 +vt -0.000000 0.437500 +vt 0.062500 0.500000 +vt -0.000000 0.500000 +vt 0.062500 0.562500 +vt -0.000000 0.562500 +vt 0.125000 0.625000 +vt 0.125000 0.687500 +vt 0.125000 0.437500 +vt 0.125000 0.500000 +vt 0.125000 0.562500 +vt 0.187500 0.625000 +vt 0.187500 0.687500 +vt 0.187500 0.437500 +vt 0.187500 0.500000 +vt 0.187500 0.562500 +vt 0.687500 0.750000 +vt 0.750000 0.750000 +vt 0.750000 0.812500 +vt 0.687500 0.812500 +vt 0.750000 0.875000 +vt 0.687500 0.875000 +vt 0.750000 0.937500 +vt 0.687500 0.937500 +vt 0.750000 1.000000 +vt 0.687500 1.000000 +vt 0.812500 0.750000 +vt 0.812500 0.812500 +vt 0.812500 0.875000 +vt 0.812500 0.937500 +vt 0.812500 1.000000 +vt 0.875000 0.750000 +vt 0.875000 0.812500 +vt 0.875000 0.875000 +vt 0.875000 0.937500 +vt 0.875000 1.000000 +vt 0.937500 0.750000 +vt 0.937500 0.812500 +vt 0.937500 0.875000 +vt 0.937500 0.937500 +vt 0.937500 1.000000 +vt 1.000000 0.750000 +vt 1.000000 0.812500 +vt 1.000000 0.875000 +vt 1.000000 0.937500 +vt 1.000000 1.000000 +vt 0.500000 0.750000 +vt 0.562500 0.750000 +vt 0.562500 0.812500 +vt 0.500000 0.812500 +vt 0.562500 0.875000 +vt 0.500000 0.875000 +vt 0.562500 0.937500 +vt 0.500000 0.937500 +vt 0.562500 1.000000 +vt 0.500000 1.000000 +vt 0.625000 0.750000 +vt 0.625000 0.812500 +vt 0.625000 0.875000 +vt 0.625000 0.937500 +vt 0.625000 1.000000 +vt 0.750000 0.312500 +vt 0.812500 0.312500 +vt 0.750000 0.062500 +vt 0.812500 0.062500 +vt 0.812500 0.125000 +vt 0.750000 0.125000 +vt 0.812500 0.187500 +vt 0.750000 0.187500 +vt 0.812500 0.250000 +vt 0.750000 0.250000 +vt 0.875000 0.312500 +vt 0.875000 0.062500 +vt 0.875000 0.125000 +vt 0.875000 0.187500 +vt 0.875000 0.250000 +vt 0.937500 0.312500 +vt 0.937500 0.062500 +vt 0.937500 0.125000 +vt 0.937500 0.187500 +vt 0.937500 0.250000 +vt 1.000000 0.312500 +vt 1.000000 0.062500 +vt 1.000000 0.125000 +vt 1.000000 0.187500 +vt 1.000000 0.250000 +vt 0.562500 0.312500 +vt 0.562500 0.062500 +vt 0.562500 0.125000 +vt 0.562500 0.187500 +vt 0.562500 0.250000 +vt 0.625000 0.312500 +vt 0.625000 0.062500 +vt 0.625000 0.125000 +vt 0.625000 0.187500 +vt 0.625000 0.250000 +vt 0.687500 0.312500 +vt 0.687500 0.062500 +vt 0.687500 0.125000 +vt 0.687500 0.187500 +vt 0.687500 0.250000 +vt 0.250000 0.937500 +vt 0.312500 0.937500 +vt 0.312500 1.000000 +vt 0.250000 1.000000 +vt 0.312500 0.750000 +vt 0.250000 0.750000 +vt 0.312500 0.812500 +vt 0.250000 0.812500 +vt 0.312500 0.875000 +vt 0.250000 0.875000 +vt 0.375000 0.937500 +vt 0.375000 1.000000 +vt 0.375000 0.750000 +vt 0.375000 0.812500 +vt 0.375000 0.875000 +vt 0.437500 0.937500 +vt 0.437500 1.000000 +vt 0.437500 0.750000 +vt 0.437500 0.812500 +vt 0.437500 0.875000 +vt 0.000000 0.937500 +vt 0.062500 0.937500 +vt 0.062500 1.000000 +vt 0.000000 1.000000 +vt 0.062500 0.750000 +vt 0.000000 0.750000 +vt 0.062500 0.812500 +vt 0.000000 0.812500 +vt 0.062500 0.875000 +vt 0.000000 0.875000 +vt 0.125000 0.937500 +vt 0.125000 1.000000 +vt 0.125000 0.750000 +vt 0.125000 0.812500 +vt 0.125000 0.875000 +vt 0.187500 0.937500 +vt 0.187500 1.000000 +vt 0.187500 0.750000 +vt 0.187500 0.812500 +vt 0.187500 0.875000 +vn 0.000000 -1.000000 -0.004800 +vn 0.000000 -0.657400 0.753500 +vn -0.898300 -0.248500 0.362300 +vn -0.863600 -0.504100 -0.003400 +vn -0.661500 0.421500 -0.620200 +vn -0.746000 0.665900 0.000000 +vn 0.661500 0.421500 -0.620200 +vn 0.746000 0.665900 0.000000 +vn 0.898300 -0.248500 0.362300 +vn 0.863600 -0.504100 -0.003400 +vn 0.000000 0.000000 1.000000 +vn -0.925200 0.000000 0.379500 +vn -0.617100 0.000000 -0.786900 +vn 0.617100 0.000000 -0.786900 +vn 0.925200 0.000000 0.379500 +vn 0.000000 0.657400 0.753500 +vn -0.898300 0.248400 0.362300 +vn -0.661500 -0.421500 -0.620200 +vn 0.661500 -0.421500 -0.620200 +vn 0.898300 0.248400 0.362300 +vn 0.000000 1.000000 0.000000 +vn -0.866100 0.499800 0.000000 +vn -0.746000 -0.665900 0.000000 +vn 0.746000 -0.665900 0.000000 +vn 0.866100 0.499800 0.000000 +vn 0.000000 0.657400 -0.753500 +vn -0.898300 0.248400 -0.362400 +vn -0.661600 -0.421500 0.620200 +vn 0.661500 -0.421500 0.620200 +vn 0.898300 0.248400 -0.362300 +vn 0.000000 -0.000900 -1.000000 +vn -0.924600 -0.000600 -0.380700 +vn -0.617100 0.000000 0.786900 +vn 0.617100 0.000000 0.786900 +vn 0.924700 -0.000600 -0.380700 +vn 0.000000 -0.650300 -0.759600 +vn -0.895600 -0.254600 -0.364800 +vn -0.661600 0.421500 0.620200 +vn 0.661600 0.421500 0.620200 +vn 0.895600 -0.254600 -0.364800 +vn 0.004900 -1.000000 0.000000 +vn -0.729700 -0.683800 0.000000 +vn -0.324500 -0.256300 -0.910500 +vn 0.003300 -0.475500 -0.879700 +vn 0.578700 0.436200 -0.689100 +vn 0.000000 0.666600 -0.745400 +vn 0.578700 0.436200 0.689100 +vn 0.000000 0.666600 0.745400 +vn -0.324500 -0.256300 0.910500 +vn 0.003300 -0.475500 0.879700 +vn -1.000000 0.000000 0.000000 +vn -0.359600 0.000000 -0.933100 +vn 0.756400 0.000000 -0.654100 +vn 0.756400 0.000000 0.654100 +vn -0.359600 0.000000 0.933100 +vn -0.729700 0.683700 0.000000 +vn -0.324500 0.256300 -0.910500 +vn 0.578700 -0.436200 -0.689100 +vn 0.578700 -0.436200 0.689100 +vn -0.324500 0.256300 0.910500 +vn 0.000000 0.470900 -0.882200 +vn 0.000000 -0.666600 -0.745400 +vn 0.000000 -0.666600 0.745400 +vn 0.000000 0.470900 0.882200 +vn 0.729700 0.683700 0.000000 +vn 0.324500 0.256300 -0.910500 +vn -0.578700 -0.436200 -0.689100 +vn -0.578700 -0.436200 0.689100 +vn 0.324500 0.256300 0.910500 +vn 1.000000 -0.001100 0.000000 +vn 0.361000 -0.000700 -0.932600 +vn -0.756400 0.000000 -0.654100 +vn -0.756400 0.000000 0.654100 +vn 0.361000 -0.000700 0.932600 +vn 0.736100 -0.676800 0.000000 +vn 0.327100 -0.263100 -0.907600 +vn -0.578700 0.436200 -0.689100 +vn -0.578700 0.436200 0.689100 +vn 0.327100 -0.263100 0.907600 +vn -0.004900 -1.000000 0.000000 +vn 0.729700 -0.683800 0.000000 +vn 0.324500 -0.256300 0.910500 +vn -0.003300 -0.475400 0.879700 +vn 0.324500 -0.256300 -0.910500 +vn -0.003300 -0.475400 -0.879700 +vn 1.000000 0.000000 0.000000 +vn 0.359600 0.000000 0.933100 +vn 0.359600 0.000000 -0.933100 +vn -1.000000 -0.001100 0.000000 +vn -0.361000 -0.000700 0.932600 +vn -0.361000 -0.000700 -0.932600 +vn -0.736100 -0.676800 0.000000 +vn -0.327100 -0.263100 0.907600 +vn -0.327100 -0.263100 -0.907600 +vn 0.000000 -1.000000 0.004800 +vn 0.000000 -0.657400 -0.753500 +vn 0.898300 -0.248500 -0.362400 +vn 0.863600 -0.504100 0.003400 +vn -0.898300 -0.248500 -0.362400 +vn -0.863600 -0.504100 0.003400 +vn 0.000000 0.000000 -1.000000 +vn 0.925200 0.000000 -0.379500 +vn -0.925200 0.000000 -0.379500 +vn 0.898300 0.248500 -0.362400 +vn 0.661600 -0.421500 0.620200 +vn -0.898300 0.248500 -0.362400 +vn 0.898300 0.248500 0.362300 +vn -0.898300 0.248500 0.362300 +vn 0.000000 -0.000900 1.000000 +vn 0.924700 -0.000600 0.380700 +vn -0.924700 -0.000600 0.380700 +vn 0.000000 -0.650300 0.759600 +vn 0.895600 -0.254600 0.364700 +vn -0.895600 -0.254600 0.364700 +vn 0.729700 -0.683700 0.000000 +vn 0.729700 0.683800 0.000000 +vn -0.729700 0.683800 0.000000 +vn -0.898300 -0.248400 0.362300 +vn -0.863600 -0.504100 -0.003500 +vn 0.898300 -0.248400 0.362300 +vn 0.863600 -0.504100 -0.003500 +vn -0.661500 -0.421500 0.620200 +vn 0.924600 -0.000600 -0.380700 +vn -0.661500 0.421500 0.620200 +vn 0.661500 0.421500 0.620200 +s 1 +f 1/1/1 2/2/2 3/3/3 4/4/4 +f 4/4/4 3/3/3 5/5/5 6/6/6 +f 6/6/6 5/5/5 7/7/7 8/8/8 +f 8/8/8 7/7/7 9/9/9 10/10/10 +f 1/1/1 10/11/10 9/12/9 2/2/2 +f 2/2/2 11/13/11 12/14/12 3/3/3 +f 3/3/3 12/14/12 13/15/13 5/5/5 +f 5/5/5 13/15/13 14/16/14 7/7/7 +f 7/7/7 14/16/14 15/17/15 9/9/9 +f 9/12/9 15/18/15 11/13/11 2/2/2 +f 11/13/11 16/19/16 17/20/17 12/14/12 +f 12/14/12 17/20/17 18/21/18 13/15/13 +f 13/15/13 18/21/18 19/22/19 14/16/14 +f 14/16/14 19/22/19 20/23/20 15/17/15 +f 15/18/15 20/24/20 16/19/16 11/13/11 +f 16/19/16 21/25/21 22/26/22 17/20/17 +f 17/20/17 22/26/22 23/27/23 18/21/18 +f 18/21/18 23/27/23 24/28/24 19/22/19 +f 19/22/19 24/28/24 25/29/25 20/23/20 +f 20/24/20 25/30/25 21/25/21 16/19/16 +f 21/25/21 26/31/26 27/32/27 22/26/22 +f 22/26/22 27/32/27 28/33/28 23/27/23 +f 23/27/23 28/33/28 29/34/29 24/28/24 +f 24/28/24 29/34/29 30/35/30 25/29/25 +f 25/30/25 30/36/30 26/31/26 21/25/21 +f 26/37/26 31/38/31 32/39/32 27/40/27 +f 27/40/27 32/39/32 33/41/33 28/42/28 +f 28/42/28 33/41/33 34/43/34 29/44/29 +f 29/44/29 34/43/34 35/45/35 30/46/30 +f 30/47/30 35/48/35 31/38/31 26/37/26 +f 31/38/31 36/49/36 37/50/37 32/39/32 +f 32/39/32 37/50/37 38/51/38 33/41/33 +f 33/41/33 38/51/38 39/52/39 34/43/34 +f 34/43/34 39/52/39 40/53/40 35/45/35 +f 35/48/35 40/54/40 36/49/36 31/38/31 +f 36/49/36 1/1/1 4/4/4 37/50/37 +f 37/50/37 4/4/4 6/6/6 38/51/38 +f 38/51/38 6/6/6 8/8/8 39/52/39 +f 39/52/39 8/8/8 10/10/10 40/53/40 +f 1/1/1 36/49/36 40/54/40 10/11/10 +f 41/55/41 42/56/42 43/57/43 44/58/44 +f 44/59/44 43/60/43 45/61/45 46/62/46 +f 46/62/46 45/61/45 47/63/47 48/64/48 +f 48/64/48 47/63/47 49/65/49 50/66/50 +f 41/55/41 50/66/50 49/65/49 42/56/42 +f 42/56/42 51/67/51 52/68/52 43/57/43 +f 43/60/43 52/69/52 53/70/53 45/61/45 +f 45/61/45 53/70/53 54/71/54 47/63/47 +f 47/63/47 54/71/54 55/72/55 49/65/49 +f 49/65/49 55/72/55 51/67/51 42/56/42 +f 51/67/51 56/73/56 57/74/57 52/68/52 +f 52/69/52 57/75/57 58/76/58 53/70/53 +f 53/70/53 58/76/58 59/77/59 54/71/54 +f 54/71/54 59/77/59 60/78/60 55/72/55 +f 55/72/55 60/78/60 56/73/56 51/67/51 +f 56/73/56 61/79/21 62/80/61 57/74/57 +f 57/75/57 62/81/61 63/82/62 58/76/58 +f 58/76/58 63/82/62 64/83/63 59/77/59 +f 59/77/59 64/83/63 65/84/64 60/78/60 +f 60/78/60 65/84/64 61/79/21 56/73/56 +f 61/85/21 66/86/65 67/87/66 62/88/61 +f 62/35/61 67/89/66 68/90/67 63/91/62 +f 63/91/62 68/90/67 69/92/68 64/93/63 +f 64/93/63 69/92/68 70/94/69 65/95/64 +f 65/95/64 70/94/69 66/86/65 61/85/21 +f 66/86/65 71/96/70 72/97/71 67/87/66 +f 67/89/66 72/98/71 73/99/72 68/90/67 +f 68/90/67 73/99/72 74/100/73 69/92/68 +f 69/92/68 74/100/73 75/101/74 70/94/69 +f 70/94/69 75/101/74 71/96/70 66/86/65 +f 71/96/70 76/102/75 77/103/76 72/97/71 +f 72/98/71 77/104/76 78/105/77 73/99/72 +f 73/99/72 78/105/77 79/106/78 74/100/73 +f 74/100/73 79/106/78 80/107/79 75/101/74 +f 75/101/74 80/107/79 76/102/75 71/96/70 +f 76/102/75 41/55/41 44/58/44 77/103/76 +f 77/104/76 44/59/44 46/62/46 78/105/77 +f 78/105/77 46/62/46 48/64/48 79/106/78 +f 79/106/78 48/64/48 50/66/50 80/107/79 +f 41/55/41 76/102/75 80/107/79 50/66/50 +f 81/108/80 82/109/81 83/110/82 84/111/83 +f 84/9/83 83/17/82 85/112/78 86/113/48 +f 86/113/48 85/112/78 87/114/77 88/115/46 +f 88/115/46 87/114/77 89/116/84 90/117/85 +f 81/108/80 90/117/85 89/116/84 82/109/81 +f 82/109/81 91/118/86 92/119/87 83/110/82 +f 83/17/82 92/23/87 93/120/73 85/112/78 +f 85/112/78 93/120/73 94/121/72 87/114/77 +f 87/114/77 94/121/72 95/122/88 89/116/84 +f 89/116/84 95/122/88 91/118/86 82/109/81 +f 91/118/86 96/123/65 97/124/69 92/119/87 +f 92/23/87 97/29/69 98/125/68 93/120/73 +f 93/120/73 98/125/68 99/126/67 94/121/72 +f 94/121/72 99/126/67 100/127/66 95/122/88 +f 95/122/88 100/127/66 96/123/65 91/118/86 +f 96/123/65 101/85/21 102/88/64 97/124/69 +f 97/29/69 102/35/64 103/91/63 98/125/68 +f 98/125/68 103/91/63 104/93/62 99/126/67 +f 99/126/67 104/93/62 105/95/61 100/127/66 +f 100/127/66 105/95/61 101/85/21 96/123/65 +f 101/128/21 106/129/56 107/130/60 102/131/64 +f 102/46/64 107/45/60 108/132/59 103/133/63 +f 103/133/63 108/132/59 109/134/58 104/135/62 +f 104/135/62 109/134/58 110/136/57 105/137/61 +f 105/137/61 110/136/57 106/129/56 101/128/21 +f 106/129/56 111/138/89 112/139/90 107/130/60 +f 107/45/60 112/53/90 113/140/54 108/132/59 +f 108/132/59 113/140/54 114/141/53 109/134/58 +f 109/134/58 114/141/53 115/142/91 110/136/57 +f 110/136/57 115/142/91 111/138/89 106/129/56 +f 111/138/89 116/143/92 117/144/93 112/139/90 +f 112/53/90 117/10/93 118/145/47 113/140/54 +f 113/140/54 118/145/47 119/146/45 114/141/53 +f 114/141/53 119/146/45 120/147/94 115/142/91 +f 115/142/91 120/147/94 116/143/92 111/138/89 +f 116/143/92 81/108/80 84/111/83 117/144/93 +f 117/10/93 84/9/83 86/113/48 118/145/47 +f 118/145/47 86/113/48 88/115/46 119/146/45 +f 119/146/45 88/115/46 90/117/85 120/147/94 +f 81/108/80 116/143/92 120/147/94 90/117/85 +f 121/148/95 122/149/96 123/150/97 124/151/98 +f 124/151/98 123/150/97 125/152/39 126/153/8 +f 126/153/8 125/152/39 127/154/38 128/155/6 +f 128/155/6 127/154/38 129/156/99 130/157/100 +f 121/148/95 130/103/100 129/58/99 122/149/96 +f 122/149/96 131/158/101 132/159/102 123/150/97 +f 123/150/97 132/159/102 133/160/34 125/152/39 +f 125/152/39 133/160/34 134/161/33 127/154/38 +f 127/154/38 134/161/33 135/162/103 129/156/99 +f 129/58/99 135/57/103 131/158/101 122/149/96 +f 131/158/101 136/163/26 137/164/104 132/159/102 +f 132/159/102 137/164/104 138/165/105 133/160/34 +f 133/160/34 138/165/105 139/166/28 134/161/33 +f 134/161/33 139/166/28 140/167/106 135/162/103 +f 135/57/103 140/68/106 136/163/26 131/158/101 +f 136/163/26 141/168/21 142/169/25 137/164/104 +f 137/164/104 142/169/25 143/170/24 138/165/105 +f 138/165/105 143/170/24 144/171/23 139/166/28 +f 139/166/28 144/171/23 145/172/22 140/167/106 +f 140/68/106 145/74/22 141/168/21 136/163/26 +f 141/168/21 146/173/16 147/174/107 142/169/25 +f 142/169/25 147/174/107 148/175/19 143/170/24 +f 143/170/24 148/175/19 149/176/18 144/171/23 +f 144/171/23 149/176/18 150/177/108 145/172/22 +f 145/74/22 150/80/108 146/173/16 141/168/21 +f 146/178/16 151/179/109 152/180/110 147/181/107 +f 147/181/107 152/180/110 153/182/14 148/183/19 +f 148/183/19 153/182/14 154/184/13 149/185/18 +f 149/185/18 154/184/13 155/186/111 150/187/108 +f 150/88/108 155/87/111 151/179/109 146/178/16 +f 151/179/109 156/188/112 157/189/113 152/180/110 +f 152/180/110 157/189/113 158/190/7 153/182/14 +f 153/182/14 158/190/7 159/191/5 154/184/13 +f 154/184/13 159/191/5 160/192/114 155/186/111 +f 155/87/111 160/97/114 156/188/112 151/179/109 +f 156/188/112 121/148/95 124/151/98 157/189/113 +f 157/189/113 124/151/98 126/153/8 158/190/7 +f 158/190/7 126/153/8 128/155/6 159/191/5 +f 159/191/5 128/155/6 130/157/100 160/192/114 +f 121/148/95 156/188/112 160/97/114 130/103/100 +f 161/193/80 162/194/115 163/60/82 164/59/83 +f 164/195/83 163/196/82 165/197/78 166/198/48 +f 166/198/48 165/197/78 167/199/77 168/200/46 +f 168/200/46 167/199/77 169/201/84 170/202/85 +f 161/193/80 170/202/85 169/201/84 162/194/115 +f 162/194/115 171/203/86 172/69/87 163/60/82 +f 163/196/82 172/204/87 173/205/73 165/197/78 +f 165/197/78 173/205/73 174/206/72 167/199/77 +f 167/199/77 174/206/72 175/207/88 169/201/84 +f 169/201/84 175/207/88 171/203/86 162/194/115 +f 171/203/86 176/208/116 177/75/69 172/69/87 +f 172/204/87 177/209/69 178/210/68 173/205/73 +f 173/205/73 178/210/68 179/211/67 174/206/72 +f 174/206/72 179/211/67 180/212/66 175/207/88 +f 175/207/88 180/212/66 176/208/116 171/203/86 +f 176/208/116 181/213/21 182/81/64 177/75/69 +f 177/209/69 182/214/64 183/215/63 178/210/68 +f 178/210/68 183/215/63 184/216/62 179/211/67 +f 179/211/67 184/216/62 185/217/61 180/212/66 +f 180/212/66 185/217/61 181/213/21 176/208/116 +f 181/34/21 186/218/117 187/89/60 182/35/64 +f 182/36/64 187/219/60 188/220/59 183/31/63 +f 183/31/63 188/220/59 189/221/58 184/32/62 +f 184/32/62 189/221/58 190/222/57 185/33/61 +f 185/33/61 190/222/57 186/218/117 181/34/21 +f 186/218/117 191/223/89 192/98/90 187/89/60 +f 187/219/60 192/224/90 193/225/54 188/220/59 +f 188/220/59 193/225/54 194/226/53 189/221/58 +f 189/221/58 194/226/53 195/227/91 190/222/57 +f 190/222/57 195/227/91 191/223/89 186/218/117 +f 191/223/89 196/228/92 197/104/93 192/98/90 +f 192/224/90 197/229/93 198/230/47 193/225/54 +f 193/225/54 198/230/47 199/231/45 194/226/53 +f 194/226/53 199/231/45 200/232/94 195/227/91 +f 195/227/91 200/232/94 196/228/92 191/223/89 +f 196/228/92 161/193/80 164/59/83 197/104/93 +f 197/229/93 164/195/83 166/198/48 198/230/47 +f 198/230/47 166/198/48 168/200/46 199/231/45 +f 199/231/45 168/200/46 170/202/85 200/232/94 +f 161/193/80 196/228/92 200/232/94 170/202/85 +f 201/233/1 202/234/2 203/235/118 204/236/119 +f 204/111/119 203/110/118 205/237/5 206/238/6 +f 206/238/6 205/237/5 207/239/7 208/240/8 +f 208/240/8 207/239/7 209/241/120 210/242/121 +f 201/233/1 210/242/121 209/241/120 202/234/2 +f 202/234/2 211/243/11 212/244/12 203/235/118 +f 203/110/118 212/119/12 213/245/13 205/237/5 +f 205/237/5 213/245/13 214/246/14 207/239/7 +f 207/239/7 214/246/14 215/247/15 209/241/120 +f 209/241/120 215/247/15 211/243/11 202/234/2 +f 211/243/11 216/248/16 217/249/108 212/244/12 +f 212/119/12 217/124/108 218/250/18 213/245/13 +f 213/245/13 218/250/18 219/251/19 214/246/14 +f 214/246/14 219/251/19 220/252/107 215/247/15 +f 215/247/15 220/252/107 216/248/16 211/243/11 +f 216/248/16 221/185/21 222/187/22 217/249/108 +f 217/124/108 222/88/22 223/178/23 218/250/18 +f 218/250/18 223/178/23 224/181/24 219/251/19 +f 219/251/19 224/181/24 225/183/25 220/252/107 +f 220/252/107 225/183/25 221/185/21 216/248/16 +f 221/253/21 226/254/26 227/255/106 222/256/22 +f 222/131/22 227/130/106 228/257/122 223/258/23 +f 223/258/23 228/257/122 229/259/29 224/260/24 +f 224/260/24 229/259/29 230/261/104 225/262/25 +f 225/262/25 230/261/104 226/254/26 221/253/21 +f 226/254/26 231/263/31 232/264/32 227/255/106 +f 227/130/106 232/139/32 233/265/33 228/257/122 +f 228/257/122 233/265/33 234/266/34 229/259/29 +f 229/259/29 234/266/34 235/267/123 230/261/104 +f 230/261/104 235/267/123 231/263/31 226/254/26 +f 231/263/31 236/268/36 237/269/37 232/264/32 +f 232/139/32 237/144/37 238/270/124 233/265/33 +f 233/265/33 238/270/124 239/271/125 234/266/34 +f 234/266/34 239/271/125 240/272/40 235/267/123 +f 235/267/123 240/272/40 236/268/36 231/263/31 +f 236/268/36 201/233/1 204/236/119 237/269/37 +f 237/144/37 204/111/119 206/238/6 238/270/124 +f 238/270/124 206/238/6 208/240/8 239/271/125 +f 239/271/125 208/240/8 210/242/121 240/272/40 +f 201/233/1 236/268/36 240/272/40 210/242/121 diff --git a/mods/basic_materials/nodes.lua b/mods/basic_materials/nodes.lua new file mode 100644 index 00000000..a40d1f54 --- /dev/null +++ b/mods/basic_materials/nodes.lua @@ -0,0 +1,62 @@ +local S = minetest.get_translator("basic_materials") +local sound_api = xcompat.sounds +local chains_sbox = {type = "fixed",fixed = { -0.1, -0.5, -0.1, 0.1, 0.5, 0.1 }} + +minetest.register_node("basic_materials:cement_block", { + description = S("Cement"), + tiles = {"basic_materials_cement_block.png"}, + is_ground_content = false, + groups = {cracky=2, dig_stone = 1, pickaxey=5}, + _mcl_hardness=1.6, + sounds = sound_api.node_sound_stone_defaults(), +}) + +minetest.register_node("basic_materials:concrete_block", { + description = S("Concrete Block"), + tiles = {"basic_materials_concrete_block.png",}, + is_ground_content = false, + groups = {cracky=1, concrete=1, dig_stone = 1, pickaxey=5}, + _mcl_hardness=1.6, + sounds = sound_api.node_sound_stone_defaults(), +}) + +minetest.register_node("basic_materials:chain_steel", { + description = S("Chain (steel, hanging)"), + drawtype = "mesh", + mesh = "basic_materials_chains.obj", + tiles = {"basic_materials_chain_steel.png"}, + walkable = false, + climbable = true, + sunlight_propagates = true, + paramtype = "light", + inventory_image = "basic_materials_chain_steel_inv.png", + is_ground_content = false, + groups = {cracky=3, dig_stone = 1, pickaxey=5}, + _mcl_hardness=1.6, + selection_box = chains_sbox, +}) + +minetest.register_node("basic_materials:chain_brass", { + description = S("Chain (brass, hanging)"), + drawtype = "mesh", + mesh = "basic_materials_chains.obj", + tiles = {"basic_materials_chain_brass.png"}, + walkable = false, + climbable = true, + sunlight_propagates = true, + paramtype = "light", + inventory_image = "basic_materials_chain_brass_inv.png", + is_ground_content = false, + groups = {cracky=3, dig_stone = 1, pickaxey=5}, + _mcl_hardness=1.6, + selection_box = chains_sbox, +}) + +minetest.register_node("basic_materials:brass_block", { + description = S("Brass Block"), + tiles = { "basic_materials_brass_block.png" }, + is_ground_content = false, + groups = {cracky=1, dig_stone = 1, pickaxey=5}, + _mcl_hardness=1.6, + sounds = sound_api.node_sound_metal_defaults() +}) diff --git a/mods/basic_materials/textures/basic_materials_aluminum_bar.png b/mods/basic_materials/textures/basic_materials_aluminum_bar.png new file mode 100644 index 00000000..8d3e11e2 Binary files /dev/null and b/mods/basic_materials/textures/basic_materials_aluminum_bar.png differ diff --git a/mods/basic_materials/textures/basic_materials_aluminum_strip.png b/mods/basic_materials/textures/basic_materials_aluminum_strip.png new file mode 100644 index 00000000..8957022b Binary files /dev/null and b/mods/basic_materials/textures/basic_materials_aluminum_strip.png differ diff --git a/mods/basic_materials/textures/basic_materials_aluminum_wire.png b/mods/basic_materials/textures/basic_materials_aluminum_wire.png new file mode 100644 index 00000000..f0b3dc67 Binary files /dev/null and b/mods/basic_materials/textures/basic_materials_aluminum_wire.png differ diff --git a/mods/basic_materials/textures/basic_materials_brass_block.png b/mods/basic_materials/textures/basic_materials_brass_block.png new file mode 100644 index 00000000..c9378000 Binary files /dev/null and b/mods/basic_materials/textures/basic_materials_brass_block.png differ diff --git a/mods/basic_materials/textures/basic_materials_brass_ingot.png b/mods/basic_materials/textures/basic_materials_brass_ingot.png new file mode 100644 index 00000000..0bd030a3 Binary files /dev/null and b/mods/basic_materials/textures/basic_materials_brass_ingot.png differ diff --git a/mods/basic_materials/textures/basic_materials_carbon_steel_bar.png b/mods/basic_materials/textures/basic_materials_carbon_steel_bar.png new file mode 100644 index 00000000..a8c35310 Binary files /dev/null and b/mods/basic_materials/textures/basic_materials_carbon_steel_bar.png differ diff --git a/mods/basic_materials/textures/basic_materials_cement_block.png b/mods/basic_materials/textures/basic_materials_cement_block.png new file mode 100644 index 00000000..6d30f477 Binary files /dev/null and b/mods/basic_materials/textures/basic_materials_cement_block.png differ diff --git a/mods/basic_materials/textures/basic_materials_chain_brass.png b/mods/basic_materials/textures/basic_materials_chain_brass.png new file mode 100644 index 00000000..e2fb20db Binary files /dev/null and b/mods/basic_materials/textures/basic_materials_chain_brass.png differ diff --git a/mods/basic_materials/textures/basic_materials_chain_brass_inv.png b/mods/basic_materials/textures/basic_materials_chain_brass_inv.png new file mode 100644 index 00000000..8c2d554d Binary files /dev/null and b/mods/basic_materials/textures/basic_materials_chain_brass_inv.png differ diff --git a/mods/basic_materials/textures/basic_materials_chain_steel.png b/mods/basic_materials/textures/basic_materials_chain_steel.png new file mode 100644 index 00000000..29af8dbd Binary files /dev/null and b/mods/basic_materials/textures/basic_materials_chain_steel.png differ diff --git a/mods/basic_materials/textures/basic_materials_chain_steel_inv.png b/mods/basic_materials/textures/basic_materials_chain_steel_inv.png new file mode 100644 index 00000000..c552f7b4 Binary files /dev/null and b/mods/basic_materials/textures/basic_materials_chain_steel_inv.png differ diff --git a/mods/basic_materials/textures/basic_materials_chainlink_brass.png b/mods/basic_materials/textures/basic_materials_chainlink_brass.png new file mode 100644 index 00000000..9a1ad87e Binary files /dev/null and b/mods/basic_materials/textures/basic_materials_chainlink_brass.png differ diff --git a/mods/basic_materials/textures/basic_materials_chainlink_steel.png b/mods/basic_materials/textures/basic_materials_chainlink_steel.png new file mode 100644 index 00000000..d7132c32 Binary files /dev/null and b/mods/basic_materials/textures/basic_materials_chainlink_steel.png differ diff --git a/mods/basic_materials/textures/basic_materials_concrete_block.png b/mods/basic_materials/textures/basic_materials_concrete_block.png new file mode 100644 index 00000000..5dd0d660 Binary files /dev/null and b/mods/basic_materials/textures/basic_materials_concrete_block.png differ diff --git a/mods/basic_materials/textures/basic_materials_copper_strip.png b/mods/basic_materials/textures/basic_materials_copper_strip.png new file mode 100644 index 00000000..22e572a1 Binary files /dev/null and b/mods/basic_materials/textures/basic_materials_copper_strip.png differ diff --git a/mods/basic_materials/textures/basic_materials_copper_wire.png b/mods/basic_materials/textures/basic_materials_copper_wire.png new file mode 100644 index 00000000..9df9f366 Binary files /dev/null and b/mods/basic_materials/textures/basic_materials_copper_wire.png differ diff --git a/mods/basic_materials/textures/basic_materials_empty_spool.png b/mods/basic_materials/textures/basic_materials_empty_spool.png new file mode 100644 index 00000000..017a94fd Binary files /dev/null and b/mods/basic_materials/textures/basic_materials_empty_spool.png differ diff --git a/mods/basic_materials/textures/basic_materials_energy_crystal.png b/mods/basic_materials/textures/basic_materials_energy_crystal.png new file mode 100644 index 00000000..f1c28e80 Binary files /dev/null and b/mods/basic_materials/textures/basic_materials_energy_crystal.png differ diff --git a/mods/basic_materials/textures/basic_materials_gear_steel.png b/mods/basic_materials/textures/basic_materials_gear_steel.png new file mode 100644 index 00000000..584f9a51 Binary files /dev/null and b/mods/basic_materials/textures/basic_materials_gear_steel.png differ diff --git a/mods/basic_materials/textures/basic_materials_gold_strip.png b/mods/basic_materials/textures/basic_materials_gold_strip.png new file mode 100644 index 00000000..9fe97a2b Binary files /dev/null and b/mods/basic_materials/textures/basic_materials_gold_strip.png differ diff --git a/mods/basic_materials/textures/basic_materials_gold_wire.png b/mods/basic_materials/textures/basic_materials_gold_wire.png new file mode 100644 index 00000000..781de7b1 Binary files /dev/null and b/mods/basic_materials/textures/basic_materials_gold_wire.png differ diff --git a/mods/basic_materials/textures/basic_materials_heating_element.png b/mods/basic_materials/textures/basic_materials_heating_element.png new file mode 100644 index 00000000..42e00b7a Binary files /dev/null and b/mods/basic_materials/textures/basic_materials_heating_element.png differ diff --git a/mods/basic_materials/textures/basic_materials_ic.png b/mods/basic_materials/textures/basic_materials_ic.png new file mode 100644 index 00000000..4c888945 Binary files /dev/null and b/mods/basic_materials/textures/basic_materials_ic.png differ diff --git a/mods/basic_materials/textures/basic_materials_lead_strip.png b/mods/basic_materials/textures/basic_materials_lead_strip.png new file mode 100644 index 00000000..675933f7 Binary files /dev/null and b/mods/basic_materials/textures/basic_materials_lead_strip.png differ diff --git a/mods/basic_materials/textures/basic_materials_motor.png b/mods/basic_materials/textures/basic_materials_motor.png new file mode 100644 index 00000000..f19ec0a0 Binary files /dev/null and b/mods/basic_materials/textures/basic_materials_motor.png differ diff --git a/mods/basic_materials/textures/basic_materials_oil_extract.png b/mods/basic_materials/textures/basic_materials_oil_extract.png new file mode 100644 index 00000000..e34623d0 Binary files /dev/null and b/mods/basic_materials/textures/basic_materials_oil_extract.png differ diff --git a/mods/basic_materials/textures/basic_materials_padlock.png b/mods/basic_materials/textures/basic_materials_padlock.png new file mode 100644 index 00000000..b05b7ef7 Binary files /dev/null and b/mods/basic_materials/textures/basic_materials_padlock.png differ diff --git a/mods/basic_materials/textures/basic_materials_paraffin.png b/mods/basic_materials/textures/basic_materials_paraffin.png new file mode 100644 index 00000000..77d2bbd1 Binary files /dev/null and b/mods/basic_materials/textures/basic_materials_paraffin.png differ diff --git a/mods/basic_materials/textures/basic_materials_plastic_sheet.png b/mods/basic_materials/textures/basic_materials_plastic_sheet.png new file mode 100644 index 00000000..034dcc2f Binary files /dev/null and b/mods/basic_materials/textures/basic_materials_plastic_sheet.png differ diff --git a/mods/basic_materials/textures/basic_materials_plastic_strip.png b/mods/basic_materials/textures/basic_materials_plastic_strip.png new file mode 100644 index 00000000..1318dfc0 Binary files /dev/null and b/mods/basic_materials/textures/basic_materials_plastic_strip.png differ diff --git a/mods/basic_materials/textures/basic_materials_silicon.png b/mods/basic_materials/textures/basic_materials_silicon.png new file mode 100644 index 00000000..847b366c Binary files /dev/null and b/mods/basic_materials/textures/basic_materials_silicon.png differ diff --git a/mods/basic_materials/textures/basic_materials_silver_wire.png b/mods/basic_materials/textures/basic_materials_silver_wire.png new file mode 100644 index 00000000..a38a45ea Binary files /dev/null and b/mods/basic_materials/textures/basic_materials_silver_wire.png differ diff --git a/mods/basic_materials/textures/basic_materials_stainless_steel_bar.png b/mods/basic_materials/textures/basic_materials_stainless_steel_bar.png new file mode 100644 index 00000000..7f7425e1 Binary files /dev/null and b/mods/basic_materials/textures/basic_materials_stainless_steel_bar.png differ diff --git a/mods/basic_materials/textures/basic_materials_stainless_steel_strip.png b/mods/basic_materials/textures/basic_materials_stainless_steel_strip.png new file mode 100644 index 00000000..3a331462 Binary files /dev/null and b/mods/basic_materials/textures/basic_materials_stainless_steel_strip.png differ diff --git a/mods/basic_materials/textures/basic_materials_stainless_steel_wire.png b/mods/basic_materials/textures/basic_materials_stainless_steel_wire.png new file mode 100644 index 00000000..2429bae6 Binary files /dev/null and b/mods/basic_materials/textures/basic_materials_stainless_steel_wire.png differ diff --git a/mods/basic_materials/textures/basic_materials_steel_bar.png b/mods/basic_materials/textures/basic_materials_steel_bar.png new file mode 100644 index 00000000..0673b6ee Binary files /dev/null and b/mods/basic_materials/textures/basic_materials_steel_bar.png differ diff --git a/mods/basic_materials/textures/basic_materials_steel_strip.png b/mods/basic_materials/textures/basic_materials_steel_strip.png new file mode 100644 index 00000000..6384dc83 Binary files /dev/null and b/mods/basic_materials/textures/basic_materials_steel_strip.png differ diff --git a/mods/basic_materials/textures/basic_materials_steel_wire.png b/mods/basic_materials/textures/basic_materials_steel_wire.png new file mode 100644 index 00000000..0c96c8f3 Binary files /dev/null and b/mods/basic_materials/textures/basic_materials_steel_wire.png differ diff --git a/mods/basic_materials/textures/basic_materials_terracotta_base.png b/mods/basic_materials/textures/basic_materials_terracotta_base.png new file mode 100644 index 00000000..9f04aad5 Binary files /dev/null and b/mods/basic_materials/textures/basic_materials_terracotta_base.png differ diff --git a/mods/basic_materials/textures/basic_materials_wet_cement.png b/mods/basic_materials/textures/basic_materials_wet_cement.png new file mode 100644 index 00000000..6a7fbf1b Binary files /dev/null and b/mods/basic_materials/textures/basic_materials_wet_cement.png differ diff --git a/mods/fakelib/API.md b/mods/fakelib/API.md new file mode 100644 index 00000000..92d3636f --- /dev/null +++ b/mods/fakelib/API.md @@ -0,0 +1,137 @@ +# API Documentation + +## Quick Links + +- [`fakelib.is_player(x)`](#fakelibis_playerx) +- [`fakelib.is_metadata(x)`](#fakelibis_metadatax) +- [`fakelib.is_inventory(x)`](#fakelibis_inventoryx) +- [`fakelib.is_vector(x, [add_metatable])`](#fakelibis_vectorx-add_metatable) +- [`fakelib.create_player([options])`](#fakelibcreate_playeroptions) +- [`fakelib.create_inventory([sizes])`](#fakelibcreate_inventorysizes) +- [`fakelib.create_metadata([data])`](#fakelibcreate_metadatadata) + + +## Type checks + +#### **`fakelib.is_player(x)`** + +Checks if a value is a player. Only returns true for real players and `fakelib`'s fake players. + +**Arguments** + +- `x` - Any value. The value to be checked. + +#### **`fakelib.is_inventory(x)`** + +Checks if a value is an inventory. Only returns true for real inventories and `fakelib`'s fake inventories. + +**Arguments** + +- `x` - Any value. The value to be checked. + +#### **`fakelib.is_metadata(x)`** + +Checks if a value is metadata. Only returns true for real metadata and `fakelib`'s fake metadata. + +**Arguments** + +- `x` - Any value. The value to be checked. + +#### **`fakelib.is_vector(x, [add_metatable])`** + +Checks if a value is a vector. Returns true for any table with `x`, `y`, and `z` values that are numbers. + +**Arguments** + +- `x` - Any value. The value to be checked. +- `add_metatable` - Boolean, optional. Add the vector metatable to basic vectors. + + +## Creation + +#### **`fakelib.create_player([options])`** + +Creates a new fake player. + +**Arguments** + +- `options` - Definition table, optional. Specifies player data. See [`options`](#options) below. Can also be a string as shorthand to set the player name only. + +#### **`fakelib.create_inventory([sizes])`** + +Creates a new fake player. + +**Arguments** + +- `sizes` - Definition table, optional. Specifies list names and sizes. See [`sizes`](#sizes) below. + +#### **`fakelib.create_metadata([data])`** + +Creates a new fake player. + +**Arguments** + +- `data` - Definition table, optional. Specifies metadata keys and values. See [`data`](#data) below. + + +## Definition tables. + + +#### **`options`** + +Specifies player data. Used by [`fakelib.create_player([options])`](#fakelibcreate_playeroptions). + +All values are optional. + +- `name` - String. Player name. Unlike real player names, this can contain any characters. +- `position` - Vector. Player position. +- `direction` - Vector. Player look direction. +- `controls` - Table. Player controls. Uses the same format returned by `player:get_player_controls()`. +- `metadata` - Metadata. Player metadata. Can be fake metadata or a reference to real metadata. +- `inventory` - Inventory. Player inventory. Can be a fake inventory or a reference to a real inventory. +- `wield_list` - String. Selected inventory list. Must be a list that exists in the player's inventory. +- `wield_index` - Number. Selected list index. Must be an index that exists in the selected list. + +Example: +```lua +local options = { + name = "sam", + position = vector.new(1, 5, 3), + direction = vector(1, 0, 0), + controls = {sneak = true}, +} +local player = fakelib.create_player(options) +``` + +#### **`sizes`** + +Specifies list names and sizes. Used by [`fakelib.create_inventory([sizes])`](#fakelibcreate_inventorysizes). + +List names must be strings, and list sizes must be numbers greater than zero. + +Example: +```lua +local sizes = { + main = 32, + craft = 9, + craftpreview = 1, + craftresult = 1, +} +local inv = fakelib.create_inventory(sizes) + +``` + +#### **`data`** + +Specifies metadata keys and values. Used by [`fakelib.create_metadata([data])`](#fakelibcreate_metadatadata). + +Keys must be strings, and values must be strings or numbers. + +Example: +```lua +local data = { + enabled = "true", + energy = 300, +} +local meta = fakelib.create_metadata(data) +``` \ No newline at end of file diff --git a/mods/fakelib/LICENSE b/mods/fakelib/LICENSE new file mode 100644 index 00000000..20046852 --- /dev/null +++ b/mods/fakelib/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 OgelGames + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/mods/fakelib/README.md b/mods/fakelib/README.md new file mode 100644 index 00000000..eac86277 --- /dev/null +++ b/mods/fakelib/README.md @@ -0,0 +1,26 @@ +# Minetest fake userdata library [fakelib] + +[![luacheck](https://github.com/OgelGames/fakelib/workflows/luacheck/badge.svg)](https://github.com/OgelGames/fakelib/actions) +[![License](https://img.shields.io/badge/License-MIT-green.svg)](LICENSE.md) +[![Minetest](https://img.shields.io/badge/Minetest-5.0+-blue.svg)](https://www.minetest.net) +[![ContentDB](https://content.minetest.net/packages/OgelGames/fakelib/shields/downloads/)](https://content.minetest.net/packages/OgelGames/fakelib/) + +## Overview + +This mod is a code library for creating fake userdata (players, inventories and metadata), replicating their functionality as closely as possible. + +## Usage + +Simply add `fakelib` to your mod's dependencies, and call any of the API functions from your code. + +See [API.md](API.md) for detailed documentation. + +## Installation + +Download the [master branch](https://github.com/OgelGames/fakelib/archive/master.zip) or the [latest release](https://github.com/OgelGames/fakelib/releases), and follow [the usual installation steps](https://wiki.minetest.net/Installing_Mods). + +Alternatively, you can download and install the mod from [ContentDB](https://content.minetest.net/packages/OgelGames/fakelib) or the online content tab in Minetest. + +## License + +All code is licensed under the [MIT License](LICENSE). diff --git a/mods/fakelib/init.lua b/mods/fakelib/init.lua new file mode 100644 index 00000000..ef0cf9d5 --- /dev/null +++ b/mods/fakelib/init.lua @@ -0,0 +1,53 @@ + +fakelib = {} + +local function check(n, v, a, b) + local t = type(v) + if t == a or t == b then + return v + end + local info = debug.getinfo(2, "n") + local f = info.name or "?" + if info.namewhat ~= "method" then + -- Offset argument number when called using '.' instead of ':' + n = n + 1 + end + error(string.format("bad argument #%i to '%s' (%s expected, got %s)", n, f, a, t), 3) +end + +local function secure_table(t, index, id) + setmetatable(t, { + __index = index, + __newindex = {}, + __metatable = id, + }) + return t +end + +local path = minetest.get_modpath("fakelib") + +for _,file in pairs({"metadata", "inventory", "player"}) do + loadfile(path.."/"..file..".lua")(check, secure_table) +end + +dofile(path.."/misc.lua") + +-- Tests are not included in releases, so check for them before registering the command. + +local tests = loadfile(path.."/tests.lua") + +if tests and minetest.is_singleplayer() then + minetest.register_chatcommand("fakelib_test", { + description = "Test fakelib's API.", + params = "[]", + func = function(_, param) + local start_time = minetest.get_us_time() + local success = tests(param == "true") + local end_time = minetest.get_us_time() + if success then + return true, string.format("Testing completed in %i us", end_time - start_time) + end + return true, "Testing failed. See console for errors." + end, + }) +end diff --git a/mods/fakelib/inventory.lua b/mods/fakelib/inventory.lua new file mode 100644 index 00000000..69e6b4ed --- /dev/null +++ b/mods/fakelib/inventory.lua @@ -0,0 +1,302 @@ + +local fake_inventory = {} +local identifier = "fakelib:inventory" +local check, secure_table = ... + +-- API functions +---------------------------------------- + +function fakelib.is_inventory(x) + if type(x) == "userdata" and x.get_lists then + return true + elseif type(x) == "table" and getmetatable(x) == identifier then + return true + end + return false +end + +function fakelib.create_inventory(sizes) + local lists = {} + if type(sizes) == "table" then + for listname, size in pairs(sizes) do + if type(listname) == "string" and type(size) == "number" and size > 0 then + local list = {} + for i=1, size do + list[i] = ItemStack() + end + lists[listname] = list + end + end + end + return secure_table({lists = lists}, fake_inventory, identifier) +end + +-- Helper functions +---------------------------------------- + +local function copy_list(list) + local copy = {} + for i=1, #list do + copy[i] = ItemStack(list[i]) + end + return copy +end + +local function stack_matches(a, b, match_meta) + if a:get_name() ~= b:get_name() then + return false + end + if match_meta then + if a:get_wear() ~= b:get_wear() then + return false + end + return a:get_meta():equals(b:get_meta()) + end + return true +end + +-- Inventory functions +---------------------------------------- + +function fake_inventory:is_empty(listname) + check(1, listname, "string", "number") + local list = self.lists[tostring(listname)] + if not list or #list == 0 then + return true + end + for _,stack in ipairs(list) do + if not stack:is_empty() then + return false + end + end + return true +end + +function fake_inventory:get_size(listname) + check(1, listname, "string", "number") + local list = self.lists[tostring(listname)] + return list and #list or 0 +end + +function fake_inventory:set_size(listname, size) + check(1, listname, "string", "number") + check(2, size, "number") + listname = tostring(listname) + if size ~= size or size < 0 then + return false + end + size = math.floor(size) + if size == 0 then + self.lists[listname] = nil + return true + end + local list = self.lists[listname] or {} + if #list < size then + for i=#list+1, size do + list[i] = ItemStack() + end + elseif #list > size then + for i=size+1, #list do + list[i] = nil + end + end + self.lists[listname] = list + return true +end + +function fake_inventory:get_width(listname) + check(1, listname, "string", "number") + local list = self.lists[tostring(listname)] + return list and list.width or 0 +end + +function fake_inventory:set_width(listname, width) + check(1, listname, "string", "number") + check(2, width, "number") + local list = self.lists[tostring(listname)] + if not list or width ~= width or width < 0 then + return false + end + width = math.floor(width) + list.width = width > 0 and width or nil + return true +end + +function fake_inventory:get_stack(listname, i) + check(1, listname, "string", "number") + check(2, i, "number") + i = math.floor(i) + local list = self.lists[tostring(listname)] + if not list or not list[i] then + return ItemStack() + end + return ItemStack(list[i]) +end + +function fake_inventory:set_stack(listname, i, stack) + check(1, listname, "string", "number") + check(2, i, "number") + stack = ItemStack(stack) + i = math.floor(i) + local list = self.lists[tostring(listname)] + if not list or not list[i] or stack:is_empty() then + return false + end + list[i] = stack + return true +end + +function fake_inventory:get_list(listname) + check(1, listname, "string", "number") + local list = self.lists[tostring(listname)] + return list and copy_list(list) or nil +end + +function fake_inventory:set_list(listname, list) + check(1, listname, "string", "number") + listname = tostring(listname) + if list == nil then + self.lists[listname] = nil + return + end + check(2, list, "table") + local new_list, size = {}, 0 + for i,s in pairs(list) do + check(4, i, "number") + if i > size then + size = i + end + new_list[i] = ItemStack(s) + end + for i=1, size do + if not new_list[i] then + new_list[i] = ItemStack() + end + end + self.lists[listname] = new_list +end + +function fake_inventory:get_lists() + local lists = {} + for listname, list in pairs(self.lists) do + lists[listname] = copy_list(list) + end + return lists +end + +function fake_inventory:set_lists(lists) + check(1, lists, "table") + local new_lists = {} + for listname, list in pairs(lists) do + check(3, listname, "string", "number") + check(3, list, "table") + listname = tostring(listname) + local new_list, size = {}, 0 + for i,s in pairs(list) do + check(5, i, "number") + if i > size then + size = i + end + new_list[i] = ItemStack(s) + end + for i=1, size do + if not new_list[i] then + new_list[i] = ItemStack() + end + end + new_lists[listname] = new_list + end + self.lists = new_lists +end + +function fake_inventory:add_item(listname, stack) + check(1, listname, "string", "number") + stack = ItemStack(stack) + local list = self.lists[tostring(listname)] + if not list or #list == 0 or stack:is_empty() then + return stack + end + local empty = {} + for _,s in ipairs(list) do + if s:is_empty() then + table.insert(empty, s) + else + stack = s:add_item(stack) + if stack:is_empty() then + return stack + end + end + end + for _,s in ipairs(empty) do + stack = s:add_item(stack) + if stack:is_empty() then + return stack + end + end + return stack +end + +function fake_inventory:room_for_item(listname, stack) + check(1, listname, "string", "number") + stack = ItemStack(stack) + local list = self.lists[tostring(listname)] + if not list or #list == 0 or stack:is_empty() then + return false + end + for _,s in ipairs(copy_list(list)) do + stack = s:add_item(stack) + if stack:is_empty() then + return true + end + end + return false +end + +function fake_inventory:contains_item(listname, stack, match_meta) + check(1, listname, "string", "number") + stack = ItemStack(stack) + local list = self.lists[tostring(listname)] + if not list or stack:is_empty() or stack:is_empty() then + return false + end + local count = stack:get_count() + for _,s in ipairs(list) do + if stack_matches(stack, s, match_meta) then + count = count - s:get_count() + if count <= 0 then + return true + end + end + end + return false +end + +function fake_inventory:remove_item(listname, stack) + check(1, listname, "string", "number") + stack = ItemStack(stack) + local list = self.lists[tostring(listname)] + if not list or #list == 0 or stack:is_empty() then + return ItemStack() + end + local name, remaining, removed = stack:get_name(), stack:get_count() + for i=#list, 1, -1 do + local s = list[i] + if s:get_name() == name then + s = s:take_item(remaining) + remaining = remaining - s:get_count() + if not removed then + removed = s + else + removed:set_count(removed:get_count() + s:get_count()) + end + if remaining == 0 then + break + end + end + end + return removed or ItemStack() +end + +function fake_inventory.get_location() + return {type = "undefined"} +end diff --git a/mods/fakelib/metadata.lua b/mods/fakelib/metadata.lua new file mode 100644 index 00000000..cfcde2a1 --- /dev/null +++ b/mods/fakelib/metadata.lua @@ -0,0 +1,134 @@ + +local fake_metadata = {} +local identifier = "fakelib:metadata" +local check, secure_table = ... + +-- API functions +---------------------------------------- + +function fakelib.is_metadata(x) + if type(x) == "userdata" and x.get_keys then + return true + elseif type(x) == "table" and getmetatable(x) == identifier then + return true + end + return false +end + +function fakelib.create_metadata(data) + local fields = {} + if type(data) == "table" then + for k,v in pairs(data) do + if type(k) == "string" and type(v) == "string" then + fields[k] = v + end + end + end + return secure_table({fields = fields}, fake_metadata, identifier) +end + +-- Metadata functions +---------------------------------------- + +function fake_metadata:contains(key) + check(1, key, "string", "number") + key = tostring(key) + return self.fields[key] ~= nil +end + +function fake_metadata:get(key) + check(1, key, "string", "number") + key = tostring(key) + return self.fields[key] +end + +function fake_metadata:set_string(key, value) + check(1, key, "string", "number") + check(2, value, "string", "number") + key = tostring(key) + value = tostring(value) + if value == "" then + self.fields[key] = nil + end + self.fields[key] = value +end + +function fake_metadata:get_string(key) + check(1, key, "string", "number") + key = tostring(key) + return self.fields[key] or "" +end + +function fake_metadata:set_int(key, value) + check(1, key, "string", "number") + check(2, value, "number") + key = tostring(key) + if value >= 2^31 then + value = 0 + end + self.fields[key] = string.format("%i", value) +end + +function fake_metadata:get_int(key) + check(1, key, "string", "number") + key = tostring(key) + return tonumber(self.fields[key]) or 0 +end + +function fake_metadata:set_float(key, value) + check(1, key, "string", "number") + check(2, value, "number") + key = tostring(key) + self.fields[key] = string.format("%s", value) +end + +function fake_metadata:get_float(key) + check(1, key, "string", "number") + key = tostring(key) + return tonumber(self.fields[key]) or 0 +end + +function fake_metadata:get_keys() + local keys = {} + for key in pairs(self.fields) do + table.insert(keys, key) + end + return keys +end + +function fake_metadata:to_table() + return {fields = table.copy(self.fields)} +end + +function fake_metadata:from_table(data) + if type(data) ~= "table" or type(data.fields) ~= "table" then + self.fields = {} + return true + end + local fields = {} + for k,v in pairs(data.fields) do + check(4, k, "string") + check(5, v, "string", "number") + fields[k] = tostring(v) + end + self.fields = fields + return true +end + +function fake_metadata:equals(other) + if not fakelib.is_metadata(other) then + check(1, other, "MetaDataRef") + end + local fields = other:to_table().fields + for k,v in pairs(self.fields) do + if fields[k] == v then + fields[k] = nil + elseif fields[k] ~= nil then + return false + end + end + if next(fields) == nil then + return true + end + return false +end diff --git a/mods/fakelib/misc.lua b/mods/fakelib/misc.lua new file mode 100644 index 00000000..ece4c528 --- /dev/null +++ b/mods/fakelib/misc.lua @@ -0,0 +1,10 @@ + +function fakelib.is_vector(x, add_metatable) + if type(x) ~= "table" or type(x.x) ~= "number" or type(x.y) ~= "number" or type(x.z) ~= "number" then + return false + end + if add_metatable and getmetatable(x) ~= vector.metatable then + setmetatable(x, vector.metatable) + end + return true +end diff --git a/mods/fakelib/mod.conf b/mods/fakelib/mod.conf new file mode 100644 index 00000000..88821b4f --- /dev/null +++ b/mods/fakelib/mod.conf @@ -0,0 +1,6 @@ +name = fakelib +description = Minetest fake userdata library +min_minetest_version = 5.0 +release = 25144 +author = OgelGames +title = FakeLib diff --git a/mods/fakelib/player.lua b/mods/fakelib/player.lua new file mode 100644 index 00000000..186e5575 --- /dev/null +++ b/mods/fakelib/player.lua @@ -0,0 +1,492 @@ + +local fake_player = {is_fake_player = true} +local identifier = "fakelib:player" +local check, secure_table = ... + +local player_controls = { + up = 1, down = 2, left = 4, right = 8, jump = 16, + aux1 = 32, sneak = 64, dig = 128, place = 256, zoom = 512, +} + +-- API functions +---------------------------------------- + +function fakelib.is_player(x) + if type(x) == "userdata" and x.is_player and x:is_player() then + return true + elseif type(x) == "table" and getmetatable(x) == identifier then + return true + end + return false +end + +function fakelib.create_player(options) + local data = {} + if type(options) == "table" then + if type(options.name) == "string" then + data.name = options.name + end + if fakelib.is_vector(options.position) then + data.position = vector.copy(options.position) + end + if fakelib.is_vector(options.direction) then + local dir = vector.normalize(options.direction) + data.pitch = -math.asin(dir.y) + data.yaw = math.atan2(-dir.x, dir.z) % (math.pi * 2) + end + if type(options.controls) == "table" then + data.controls = {} + for name in pairs(player_controls) do + data.controls[name] = options.controls[name] == true + end + data.controls.dig = data.controls.dig or options.controls.LMB + data.controls.place = data.controls.place or options.controls.RMB + end + if fakelib.is_metadata(options.metadata) then + data.metadata = options.metadata + end + if fakelib.is_inventory(options.inventory) then + data.inventory = options.inventory + end + local size = 32 + if data.inventory and type(options.wield_list) == "string" then + size = data.inventory:get_size(options.wield_list) + if size > 0 then + data.wield_list = options.wield_list + end + end + if type(options.wield_index) == "number" then + if options.wield_index > 0 and options.wield_index <= size then + data.wield_index = options.wield_index + end + end + elseif type(options) == "string" then + data.name = options + end + return secure_table({data = data}, fake_player, identifier) +end + +-- Helper functions +---------------------------------------- + +local function check_vector(v) + local t = type(v) + if t ~= "table" then + error(string.format("\"Invalid vector (expected table got %s).\"", t), 3) + end + for _,c in ipairs({"x", "y", "z"}) do + t = type(v[c]) + if t ~= "number" then + error(string.format("\"Invalid vector coordinate %s (expected number got %s).\"", c, t), 3) + end + end +end + +-- Dynamic get/set functions +---------------------------------------- + +function fake_player:get_player_name() + return self.data.name or "" +end + +function fake_player:get_inventory() + if not self.data.inventory then + self.data.inventory = fakelib.create_inventory({ + main = 32, craft = 9, craftpreview = 1, craftresult = 1 + }) + end + return self.data.inventory +end + +function fake_player:get_meta() + if not self.data.metadata then + self.data.metadata = fakelib:create_metadata() + end + return self.data.metadata +end + +function fake_player:get_look_dir() + local p, y = self.data.pitch or 0, self.data.yaw or 0 + return vector.new(math.sin(-y) * math.cos(p), math.sin(-p), math.cos(y) * math.cos(p)) +end + +function fake_player:get_look_horizontal() + return self.data.yaw or 0 +end + +function fake_player:set_look_horizontal(value) + check(1, value, "number") + self.data.yaw = value % (math.pi * 2) +end + +function fake_player:get_look_vertical() + return self.data.pitch or 0 +end + +function fake_player:set_look_vertical(value) + check(1, value, "number") + self.data.pitch = math.max(-math.pi / 2, math.min(value, math.pi / 2)) +end + +function fake_player:get_player_control() + local controls = {} + if self.data.controls then + for name in pairs(player_controls) do + controls[name] = self.data.controls[name] + end + else + for name in pairs(player_controls) do + controls[name] = false + end + end + controls.LMB = controls.dig + controls.RMB = controls.place + return controls +end + +function fake_player:get_player_control_bits() + if not self.data.controls then + return 0 + end + local total = 0 + for name, value in pairs(player_controls) do + total = total + self.data.controls[name] and value or 0 + end + return total +end + +function fake_player:get_pos() + if self.data.position then + return vector.copy(self.data.position) + end + return vector.zero() +end + +function fake_player:set_pos(pos) + check_vector(pos) + self.data.position = vector.copy(pos) +end +fake_player.move_to = fake_player.set_pos + +function fake_player:add_pos(pos) + check_vector(pos) + if self.data.position then + self.data.position = vector.add(self.data.position, pos) + else + self.data.position = vector.copy(pos) + end +end + +function fake_player:get_wield_index() + return self.data.wield_index or 1 +end + +function fake_player:get_wield_list() + return self.data.wield_list or "main" +end + +function fake_player:get_wielded_item() + if self.data.inventory then + return self.data.inventory:get_stack(self:get_wield_list(), self:get_wield_index()) + end + return ItemStack() +end + +function fake_player:set_wielded_item(stack) + stack = ItemStack(stack) + if not self.data.inventory and stack:is_empty() then + return true + end + self:get_inventory():set_stack(self:get_wield_list(), self:get_wield_index(), stack) + return true +end + +-- Static get functions +---------------------------------------- + +function fake_player.is_player() + return true +end + +function fake_player.get_animation() + return {x = 1, y = 1}, 15, 0, true +end + +function fake_player.get_armor_groups() + return {immortal = 1} +end + +function fake_player.get_bone_override() + return { + position = {absolute = false, vec = vector.zero(), interpolation = 0}, + rotation = {absolute = false, vec = vector.zero(), interpolation = 0}, + scale = {absolute = false, vec = vector.new(1, 1, 1), interpolation = 0}, + } +end + +function fake_player.get_bone_overrides() + return {} +end + +function fake_player.get_bone_position() + return vector.zero(), vector.zero() +end + +function fake_player.get_breath() + return 10 +end + +function fake_player.get_children() + return {} +end + +function fake_player.get_clouds() + return { + ambient = {r = 0, g = 0, b = 0, a = 255}, + color = {r = 240, g = 240, b = 255, a = 229}, + density = 0.4, + height = 120, + speed = {x = 0, y = -2}, + thickness = 16, + } +end + +function fake_player.get_eye_offset() + return vector.zero(), vector.zero(), vector.zero() +end + +function fake_player.get_formspec_prepend() + return "" +end + +function fake_player.get_fov() + return 0, false, 0 +end + +function fake_player.get_hp() + return 20 +end + +function fake_player.get_inventory_formspec() + return "" +end + +function fake_player.get_lighting() + return { + exposure = { + speed_bright_dark = 1000, + center_weight_power = 1, + luminance_min = -3, + luminance_max = -3, + exposure_correction = 0, + speed_dark_bright = 1000 + }, + saturation = 1, + shadows = {intensity = 0}, + volumetric_light = {strength = 0}, + } +end + +function fake_player.get_local_animation() + return {x = 0, y = 0}, {x = 0, y = 0}, {x = 0, y = 0}, {x = 0, y = 0}, 0 +end + +function fake_player.get_moon() + return { + scale = 1, + texture = "moon.png", + tonemap = "moon_tonemap.png", + visible = true, + } +end + +function fake_player.get_nametag_attributes() + return { + bgcolor = false, + color = {r = 255, g = 255, b = 255, a = 255}, + text = "", + } +end + +function fake_player.get_physics_override() + return { + acceleration_air = 1, acceleration_default = 1, acceleration_fast = 1, + gravity = 1, jump = 1, speed = 1, + liquid_fluidity = 1, liquid_fluidity_smooth = 1, liquid_sink = 1, + speed_climb = 1, speed_crouch = 1, speed_fast = 1, speed_walk = 1, + new_move = true, sneak = true, sneak_glitch = false, + } +end + +function fake_player.get_properties() + return { + automatic_face_movement_dir = false, + automatic_face_movement_max_rotation_per_sec = -1, + automatic_rotate = 0, + backface_culling = false, + breath_max = 10, + collide_with_objects = true, + collisionbox = {-0.5, -0.5, -0.5, 0.5, 0.5, 0.5}, + colors = {{r = 255, g = 255, b = 255, a = 255}}, + damage_texture_modifier = "^[brighten", + eye_height = 0, + glow = 0, + hp_max = 20, + infotext = "", + initial_sprite_basepos = {x = 0, y = 0}, + is_visible = true, + makes_footstep_sound = true, + mesh = "", + nametag = "", + nametag_bgcolor = false, + nametag_color = {r = 255, g = 255, b = 255, a = 255}, + physical = false, + pointable = true, + selectionbox = {-0.5, -0.5, -0.5, 0.5, 0.5, 0.5, rotate = false}, + shaded = true, + show_on_minimap = true, + spritediv = {x = 1, y = 1}, + static_save = true, + stepheight = 0.6, + textures = {"blank.png"}, + use_texture_alpha = false, + visual = "cube", + visual_size = vector.new(1, 1, 1), + wield_item = "", + zoom_fov = 15, + } +end + +function fake_player.get_sky_color() + return fake_player.get_sky(true).sky_color +end + +function fake_player.get_sky(as_table) + if as_table then + return { + base_color = {r = 255, g = 255, b = 255, a = 255}, + clouds = true, + fog = {fog_distance = -1, fog_start = -1}, + sky_color = { + day_sky = {r = 97, g = 181, b = 245, a = 255}, + day_horizon = {r = 144, g = 211, b = 246, a = 255}, + dawn_sky = {r = 180, g = 186, b = 250, a = 255}, + dawn_horizon = {r = 186, g = 193, b = 240, a = 255}, + night_sky = {r = 0, g = 107, b = 255, a = 255}, + night_horizon = {r = 64, g = 144, b = 255, a = 255}, + indoors = {r = 100, g = 100, b = 100, a = 255}, + fog_sun_tint = {r = 244, g = 125, b = 29, a = 255}, + fog_moon_tint = {r = 128, g = 153, b = 204, a = 255}, + fog_tint_type = "default", + }, + textures = {}, + type = "regular", + } + end + return {r = 255, g = 255, b = 255, a = 255}, "regular", {}, true +end + +function fake_player.get_stars() + return { + count = 1000, + day_opacity = 0, + scale = 1, + star_color = {r = 235, g = 235, b = 255, a = 105}, + visible = true, + } +end + +function fake_player.get_sun() + return { + scale = 1, + sunrise = "sunrisebg.png", + sunrise_visible = true, + texture = "sun.png", + tonemap = "sun_tonemap.png", + visible = true, + } +end + +function fake_player.get_velocity() + return vector.zero() +end + +function fake_player.hud_get_all() + return {} +end + +function fake_player.hud_get_flags() + return { + basic_debug = false, + breathbar = false, + chat = false, + crosshair = false, + healthbar = false, + hotbar = false, + minimap = false, + minimap_radar = false, + wielditem = false, + } +end + +function fake_player.hud_get_hotbar_image() + return "" +end + +function fake_player.hud_get_hotbar_itemcount() + return 8 +end + +function fake_player.hud_get_hotbar_selected_image() + return "" +end + +-- No-op functions +---------------------------------------- +do + local functions = { + -- Lua entity only (no-op for players) + "get_acceleration", "get_entity_name", "get_luaentity", "get_rotation", + "get_texture_mod", "get_yaw", "getacceleration", "getyaw", "remove", + "set_acceleration", "set_rotation", "set_sprite", "set_texture_mod", + "set_velocity", "set_yaw", "setacceleration", "setsprite", + "settexturemod", "setvelocity", "setyaw", + -- Non-functional get/set functions + "add_velocity", "get_attach", "get_attribute", "get_day_night_ratio", + "hud_add", "hud_change", "hud_get", "hud_remove", "hud_set_flags", + "hud_set_hotbar_image", "hud_set_hotbar_itemcount", + "hud_set_hotbar_selected_image", "override_day_night_ratio", + "set_animation", "set_animation_frame_speed", "set_armor_groups", + "set_attach", "set_attribute", "set_bone_override", "set_bone_position", + "set_breath", "set_clouds", "set_detach", "set_eye_offset", + "set_formspec_prepend", "set_fov", "set_hp", "set_inventory_formspec", + "set_lighting", "set_local_animation", "set_minimap_modes", "set_moon", + "set_nametag_attributes", "set_physics_override", + "set_properties", "set_sky", "set_stars", "set_sun", + -- Other functions that do nothing + "punch", "respawn", "right_click", "send_mapblock", + } + for _,func in ipairs(functions) do + fake_player[func] = function() end + end +end + +-- Deprecated functions +---------------------------------------- + +function fake_player:get_look_pitch() + return self:get_look_vertical() * -1 +end + +function fake_player:get_look_yaw() + return self:get_look_horizontal() + math.pi / 2 +end + +fake_player.set_look_pitch = fake_player.set_look_vertical +fake_player.set_look_yaw = fake_player.set_look_horizontal +fake_player.getpos = fake_player.get_pos +fake_player.setpos = fake_player.set_pos +fake_player.moveto = fake_player.set_pos +fake_player.getvelocity = fake_player.get_velocity +fake_player.add_player_velocity = fake_player.add_velocity +fake_player.get_player_velocity = fake_player.get_velocity diff --git a/mods/moreores/.editorconfig b/mods/moreores/.editorconfig new file mode 100644 index 00000000..a41c6970 --- /dev/null +++ b/mods/moreores/.editorconfig @@ -0,0 +1,13 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_style = space +indent_size = 2 +insert_final_newline = true +trim_trailing_whitespace = true + +[*.{lua,luacheckrc}] +indent_style = tab +indent_size = 4 diff --git a/mods/moreores/.github/workflows/build.yml b/mods/moreores/.github/workflows/build.yml new file mode 100644 index 00000000..48e4a35d --- /dev/null +++ b/mods/moreores/.github/workflows/build.yml @@ -0,0 +1,22 @@ +name: build +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-python@v4 + + - run: | + sudo apt-get update -qq + sudo apt-get install -qqq luarocks + - name: Install LuaCheck and pre-commit + run: | + pip3 install pre-commit + luarocks install --local luacheck + - name: Run LuaCheck using pre-commit + run: | + export PATH="$HOME/.luarocks/bin:$PATH" + pre-commit run --all-files diff --git a/mods/moreores/.gitignore b/mods/moreores/.gitignore new file mode 100644 index 00000000..8b38e58a --- /dev/null +++ b/mods/moreores/.gitignore @@ -0,0 +1,3 @@ +## Generic ignorable patterns and files +*~ +debug.txt diff --git a/mods/moreores/.luacheckrc b/mods/moreores/.luacheckrc new file mode 100644 index 00000000..fe0b58eb --- /dev/null +++ b/mods/moreores/.luacheckrc @@ -0,0 +1,34 @@ +std = "lua51+minetest" +unused_args = false +allow_defined_top = true +max_line_length = 90 + +stds.minetest = { + read_globals = { + "DIR_DELIM", + "minetest", + "core", + "dump", + "vector", + "nodeupdate", + "VoxelManip", + "VoxelArea", + "PseudoRandom", + "ItemStack", + "default", + table = { + fields = { + "copy", + }, + }, + } +} + +read_globals = { + "carts", + "farming", + "frame", + "mg", + "toolranks", + "mcl_sounds" +} diff --git a/mods/moreores/.pre-commit-config.yaml b/mods/moreores/.pre-commit-config.yaml new file mode 100644 index 00000000..2ac726ea --- /dev/null +++ b/mods/moreores/.pre-commit-config.yaml @@ -0,0 +1,15 @@ +repos: + - repo: https://github.com/pre-commit/pre-commit-hooks + rev: v3.3.0 + hooks: + - id: fix-byte-order-marker + - id: end-of-file-fixer + - id: trailing-whitespace + + - id: mixed-line-ending + args: [--fix=lf] + + - repo: https://github.com/Calinou/pre-commit-luacheck + rev: v1.0.0 + hooks: + - id: luacheck diff --git a/mods/moreores/CHANGELOG.md b/mods/moreores/CHANGELOG.md new file mode 100644 index 00000000..24ef3ad8 --- /dev/null +++ b/mods/moreores/CHANGELOG.md @@ -0,0 +1,86 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +### Changed + +- [Tweaked ore generation to better fit Minetest's new defaults.](https://github.com/minetest-mods/moreores/pull/45) + - Three layers (two underground and one high air/space) are now used instead of just one layer. + - Chunk size is no longer used as clust size anymore. Clust sizes are usually + just 3 nodes and not the whole area ("chunk"), where the ores are generated. + - Adjusted several default values. + - Mithril is now generated *below* diamond. Note that there was a change + in Minetest 5.0.0 where most ore generation was shifted to much lower + altitude (shifting diamond generation altitude below mithril generation altitude). + - The mithril ores are now also grouped together and not just found as a + single node in one chunk. + - The same overall ore density is retained in the deep layer. + +- Switch to GitHub Actions. + - Benefits include faster responses, easier management, and more. + +## [2.1.0] - 2021-06-28 + +### Added + +- More Ores tools now have [`toolranks`](https://github.com/lisacvuk/minetest-toolranks) support. +- Hungarian translation. + +### Changed + +- Migrated translations to the + [Minetest translation file format](https://rubenwardy.com/minetest_modding_book/lua_api.html#translation-file-format). + +## [2.0.0] - 2019-11-25 + +### Added + +- More Ores nodes/items/tools can now be placed in item frames + from the [`frame`](https://github.com/minetest-mods/frame) mod. +- Polish translation. + +### Changed + +- The minimum supported Minetest version is now 5.0.0. +- Copper rails are now registered using functions from the `carts` mod, + making them interoperate seamlessly with default rails. + - Copper rails can no longer be placed in the air. + +## [1.1.0] - 2019-03-23 + +### Added + +- Brazilian and Dutch translations. + +### Changed + +- Ores are now slower to mine and cannot be mined using wooden tools anymore. +- Updated intllib support to avoid using deprecated functions. + +### Deprecated + +- Deprecated hoes to follow Minetest Game's deprecation of hoes + made of "rare" materials. + - Hoes are still available in existing worlds, but they + cannot be crafted anymore. + +### Fixed + +- Hoes now use the `farming` mod's handling function and can no longer + turn desert sand into dirt. +- Handle tin which is now included in [Minetest Game](https://github.com/minetest/minetest_game). + If it is detected, then the tin nodes and items from More Ores won't be registered. + +## 1.0.0 - 2017-02-19 + +- Initial versioned release. + +[Unreleased]: https://github.com/minetest-mods/moreores/compare/v2.1.0...HEAD +[2.1.0]: https://github.com/minetest-mods/moreores/compare/v2.0.0...v2.1.0 +[2.0.0]: https://github.com/minetest-mods/moreores/compare/v1.1.0...v2.0.0 +[1.1.0]: https://github.com/minetest-mods/moreores/compare/v1.0.0...v1.1.0 diff --git a/mods/moreores/CONTRIBUTING.md b/mods/moreores/CONTRIBUTING.md new file mode 100644 index 00000000..e2a55fa9 --- /dev/null +++ b/mods/moreores/CONTRIBUTING.md @@ -0,0 +1,10 @@ +# Contributing to More Ores + +Thank you for your interest in More Ores! Before contributing, +be sure to know about these few guidelines: + +- Contributions have to be licensed under the zlib license (or compatible) + for code, and CC BY-SA 3.0 (or compatible) for assets. +- Make sure to update the changelog, keeping the + [changelog format](http://keepachangelog.com/en/1.0.0/) we use. +- Don't bump the version yourself. Maintainers will do this when necessary. diff --git a/mods/moreores/LICENSE.md b/mods/moreores/LICENSE.md new file mode 100644 index 00000000..67f5f7f0 --- /dev/null +++ b/mods/moreores/LICENSE.md @@ -0,0 +1,13 @@ +# zlib license + +Copyright © 2011-2020 Hugo Locurcio and contributors + +**This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software.** + +Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source distribution. diff --git a/mods/moreores/README.md b/mods/moreores/README.md new file mode 100644 index 00000000..3bb1cbae --- /dev/null +++ b/mods/moreores/README.md @@ -0,0 +1,72 @@ +# More Ores + +More Ores for [Minetest](https://www.minetest.net/), a free and open source infinite +world block sandbox game. + +[**Forum topic**](https://forum.minetest.net/viewtopic.php?f=11&t=549) + +## Installation + +### Download the mod + +To install More Ores, clone this Git repository into your Minetest's `mods/` +directory: + +```bash +git clone https://github.com/minetest-mods/moreores.git +``` + +You can also +[download a ZIP archive](https://github.com/minetest-mods/moreores/archive/master.zip) +of More Ores. + +### Enable the mod + +Once you have installed More Ores, you need to enable it in Minetest. +The procedure is as follows: + +#### Using the client's main menu + +This is the easiest way to enable More Ores when playing in singleplayer +(or on a server hosted from a client). + +1. Start Minetest and switch to the **Local Game** tab. +2. Select the world you want to enable More Ores in. +3. Click **Configure**, then enable `moreores` by double-clicking it + (or ticking the **Enabled** checkbox). +4. Save the changes, then start a game on the world you enabled More Ores on. +5. More Ores should now be running on your world. + +#### Using a text editor + +This is the recommended way to enable the mod on a server without using a GUI. + +1. Make sure Minetest is not currently running (otherwise, it will overwrite + the changes when exiting). +2. Open the world's `world.mt` file using a text editor. +3. Add the following line at the end of the file: + +```text +load_mod_moreores = true +``` + +If the line is already present in the file, then replace `false` with `true` +on that line. + +4. Save the file, then start a game on the world you enabled More Ores on. +5. More Ores should now be running on your world. + +## Version compatibility + +More Ores is currently primarily tested with Minetest 5.1.0. +It may or may not work with newer or older versions. Issues arising in older +versions than 5.0.0 will generally not be fixed. + +## License + +Copyright © 2011-2020 Hugo Locurcio and contributors + +- More Ores code is licensed under the zlib license, see + [`LICENSE.md`](LICENSE.md) for details. +- Unless otherwise specified, More Ores textures are licensed under + [CC BY-SA 3.0 Unported](https://creativecommons.org/licenses/by-sa/3.0/). diff --git a/mods/moreores/_config.txt b/mods/moreores/_config.txt new file mode 100644 index 00000000..46ca0796 --- /dev/null +++ b/mods/moreores/_config.txt @@ -0,0 +1,100 @@ +------------------------------------------------------------------------------ +------------------------------ CONFIGURATION --------------------------------- +------------------------------------------------------------------------------ + +------------------------------------------------------------------------------ +-------- Change settings by changing the values after the "=". --------------- +------------------------------------------------------------------------------ + +-- Chunk sizes for ore generation (bigger = ore deposits are more scattered around) +-- Tin +moreores.tin_chunk_size_high = 10 +moreores.tin_chunk_size = 13 +moreores.tin_chunk_size_deep = 10 + +-- Silver +moreores.silver_chunk_size_high = 11 +moreores.silver_chunk_size = 13 +moreores.silver_chunk_size_deep = 11 + +-- Mithril +moreores.mithril_chunk_size_high = 19 +moreores.mithril_chunk_size = 21 +moreores.mithril_chunk_size_deep = 19 + +-- Amount of ore per chunk (higher = bigger ore deposits) +-- Tin +moreores.tin_ore_per_chunk_high = 5 +moreores.tin_ore_per_chunk = 4 +moreores.tin_ore_per_chunk_deep = 5 + +-- Silver +moreores.silver_ore_per_chunk_high = 4 +moreores.silver_ore_per_chunk = 2 +moreores.silver_ore_per_chunk_deep = 4 + +-- Mithril +moreores.mithril_ore_per_chunk_high = 3 +moreores.mithril_ore_per_chunk = 2 +moreores.mithril_ore_per_chunk_deep = 4 + +-- Clust sizes for ore generation (bigger = ores in ore deposits are less bound together) +-- Tin +moreores.tin_clust_size_high = 3 +moreores.tin_clust_size = 3 +moreores.tin_clust_size_deep = 3 + +-- Silver +moreores.silver_clust_size_high = 3 +moreores.silver_clust_size = 3 +moreores.silver_clust_size_deep = 3 + +-- Mithril +moreores.mithril_clust_size_high = 3 +moreores.mithril_clust_size = 3 +moreores.mithril_clust_size_deep = 3 + + +if minetest.get_modpath("mcl_core") then + -- Example adjustments for MineClone2 + moreores.tin_max_depth_high = 0 + moreores.tin_min_depth_high = -10 + moreores.tin_max_depth = -11 + moreores.tin_min_depth = -57 + + -- Similar adjustments for silver and mithril + moreores.silver_max_depth_high = 0 + moreores.silver_min_depth_high = -10 + moreores.silver_max_depth = -11 + moreores.silver_min_depth = -57 + + moreores.mithril_max_depth_high = 0 + moreores.mithril_min_depth_high = -20 + moreores.mithril_max_depth = -21 + moreores.mithril_min_depth = -57 +else + -- Maximal and minimal depths of ore generation (Y coordinate, 0 being sea level by default) + -- Tin + moreores.tin_max_depth_high = 31000 + moreores.tin_min_depth_high = 1025 + moreores.tin_max_depth = -64 -- For v6 mapgen, -32 fits better + moreores.tin_min_depth = -127 + moreores.tin_max_depth_deep = -128 + moreores.tin_min_depth_deep = -31000 + + -- Silver + moreores.silver_max_depth_high = 31000 + moreores.silver_min_depth_high = 1025 + moreores.silver_max_depth = -64 -- For v6 mapgen, -32 fits better + moreores.silver_min_depth = -127 -- For v6 mapgen, -63 fits better + moreores.silver_max_depth_deep = -128 -- For v6 mapgen, -64 fits better + moreores.silver_min_depth_deep = -31000 + + -- Mithril + moreores.mithril_max_depth_high = 31000 + moreores.mithril_min_depth_high = 2049 + moreores.mithril_max_depth = -2048 -- For v6 mapgen, -256 fits better + moreores.mithril_min_depth = -4095 -- For v6 mapgen, -511 fits better + moreores.mithril_max_depth_deep = -4096 -- For v6 mapgen, -512 fits better + moreores.mithril_min_depth_deep = -31000 +end diff --git a/mods/moreores/init.lua b/mods/moreores/init.lua new file mode 100644 index 00000000..6911d51a --- /dev/null +++ b/mods/moreores/init.lua @@ -0,0 +1,578 @@ +--[[ +===================================================================== +** More Ores ** +By Calinou, with the help of Nore. + +Copyright © 2011-2020 Hugo Locurcio and contributors. +Licensed under the zlib license. See LICENSE.md for more information. +===================================================================== +--]] + +moreores = {} + +local modpath = minetest.get_modpath("moreores") + +local S = minetest.get_translator("moreores") +moreores.S = S + +dofile(modpath .. "/_config.txt") + +-- `mg` mapgen support +if minetest.get_modpath("mg") then + dofile(modpath .. "/mg.lua") +end + +-- `frame` support +local use_frame = minetest.get_modpath("frame") + +local is_mcl_core_present = minetest.get_modpath("mcl_core") ~= nil +local is_mcl_sounds_present = minetest.get_modpath("mcl_sounds") ~= nil +local is_mcl_copper_present = minetest.registered_items["mcl_copper:copper_ingot"] ~= nil +local stone_ingredient = is_mcl_core_present and "mcl_core:stone" or "default:stone" + +local copper_ingredient = +is_mcl_core_present and "mcl_copper:copper_ingot" or 'default:copper_ingot' + +local default_stone_sounds +local default_metal_sounds + +if is_mcl_sounds_present then + default_stone_sounds = mcl_sounds.node_sound_stone_defaults() + default_metal_sounds = mcl_sounds.node_sound_metal_defaults() +else + default_stone_sounds = default.node_sound_stone_defaults() + default_metal_sounds = default.node_sound_metal_defaults() +end + + +-- Returns the crafting recipe table for a given material and item. +local function get_recipe(material, item) + if is_mcl_core_present then + material = material:gsub("default:", "mcl_core:") + end + + if item == "sword" then + return { + {material}, + {material}, + {"group:stick"}, + } + end + if item == "shovel" then + return { + {material}, + {"group:stick"}, + {"group:stick"}, + } + end + if item == "axe" then + return { + {material, material}, + {material, "group:stick"}, + {"", "group:stick"}, + } + end + if item == "pick" then + return { + {material, material, material}, + {"", "group:stick", ""}, + {"", "group:stick", ""}, + } + end + if item == "block" then + return { + {material, material, material}, + {material, material, material}, + {material, material, material}, + } + end + if item == "lockedchest" then + return { + {"group:wood", "group:wood", "group:wood"}, + {"group:wood", material, "group:wood"}, + {"group:wood", "group:wood", "group:wood"}, + } + end +end + +local function add_ore(modname, description, mineral_name, oredef, extra_node_def) + + if mineral_name == "copper" and is_mcl_copper_present then + return + end + + local img_base = modname .. "_" .. mineral_name + local toolimg_base = modname .. "_tool_"..mineral_name + local tool_base = modname .. ":" + local tool_post = "_" .. mineral_name + local item_base = tool_base .. mineral_name + local ingot = item_base .. "_ingot" + local lump_item = item_base .. "_lump" + + local function merge_tables(t1, t2) + for k, v in pairs(t2) do + if type(v) == "table" and type(t1[k]) == "table" then + -- If both t1[k] and v are tables, merge them recursively + merge_tables(t1[k], v) + else + -- Otherwise, simply set the value + t1[k] = v + end + end + return t1 + end + + + if oredef.makes.ore then + local node_def_tbl = { + description = S("@1 Ore", S(description)), + tiles = {"default_stone.png^" .. modname .. "_mineral_" .. mineral_name .. + ".png"}, + groups = {cracky = 2}, + sounds = default_stone_sounds, + drop = lump_item, + } + if extra_node_def then + node_def_tbl = merge_tables(node_def_tbl, extra_node_def) + end + minetest.register_node(modname .. ":mineral_" .. mineral_name, node_def_tbl) + + + if use_frame then + frame.register(modname .. ":mineral_" .. mineral_name) + end + end + + if oredef.makes.block then + local block_item = item_base .. "_block" + minetest.register_node(block_item, { + description = S("@1 Block", S(description)), + tiles = {img_base .. "_block.png"}, + groups = {snappy = 1, bendy = 2, cracky = 1, melty = 2, level = 2}, + is_ground_content = false, + sounds = default_metal_sounds, + }) + minetest.register_alias(mineral_name.."_block", block_item) + if oredef.makes.ingot then + minetest.register_craft( { + output = block_item, + recipe = get_recipe(ingot, "block") + }) + minetest.register_craft( { + output = ingot .. " 9", + recipe = { + {block_item}, + } + }) + end + if use_frame then + frame.register(block_item) + end + end + + if oredef.makes.lump then + minetest.register_craftitem(lump_item, { + description = S("@1 Lump", S(description)), + inventory_image = img_base .. "_lump.png", + }) + minetest.register_alias(mineral_name .. "_lump", lump_item) + if oredef.makes.ingot then + minetest.register_craft({ + type = "cooking", + output = ingot, + recipe = lump_item, + }) + end + if use_frame then + frame.register(lump_item) + end + end + + if oredef.makes.ingot then + minetest.register_craftitem(ingot, { + description = S("@1 Ingot", S(description)), + inventory_image = img_base .. "_ingot.png", + }) + minetest.register_alias(mineral_name .. "_ingot", ingot) + if use_frame then + frame.register(ingot) + end + end + + if oredef.makes.chest then + if not is_mcl_core_present then + minetest.register_craft( { + output = "default:chest_locked", + recipe = { + {ingot}, + {"default:chest"}, + } + }) + + minetest.register_craft( { + output = "default:chest_locked", + recipe = get_recipe(ingot, "lockedchest") + }) + end + end + + oredef.oredef_high.ore_type = "scatter" + oredef.oredef_high.ore = modname .. ":mineral_" .. mineral_name + oredef.oredef_high.wherein = stone_ingredient + + oredef.oredef.ore_type = "scatter" + oredef.oredef.ore = modname .. ":mineral_" .. mineral_name + oredef.oredef.wherein = stone_ingredient + + oredef.oredef_deep.ore_type = "scatter" + oredef.oredef_deep.ore = modname .. ":mineral_" .. mineral_name + oredef.oredef_deep.wherein = stone_ingredient + + minetest.register_ore(oredef.oredef_high) + minetest.register_ore(oredef.oredef) + minetest.register_ore(oredef.oredef_deep) + + for tool_name, tooldef in pairs(oredef.tools) do + local tdef = { + description = "", + inventory_image = toolimg_base .. tool_name .. ".png", + tool_capabilities = { + max_drop_level = 3, + groupcaps = tooldef.groupcaps, + damage_groups = tooldef.damage_groups, + full_punch_interval = oredef.full_punch_interval, + }, + sound = {breaks = "default_tool_breaks"}, + _repair_material = ingot, + _mcl_toollike_wield = true, + mcl_diggroups = tooldef._mcl_diggroups, + groups = tooldef.groups, + } + + if tool_name == "sword" then + tdef.description = S("@1 Sword", S(description)) + if tdef.groups then + tdef.groups = merge_tables(tdef.groups, {sword = 1}) + else + tdef.groups = {sword = 1} + end + end + + if tool_name == "pick" then + tdef.description = S("@1 Pickaxe", S(description)) + if tdef.groups then + tdef.groups = merge_tables(tdef.groups, {pickaxe = 1, tool=1}) + else + tdef.groups = {pickaxe = 1, tool=1} + end + end + + if tool_name == "axe" then + tdef.description = S("@1 Axe", S(description)) + if tdef.groups then + tdef.groups = merge_tables(tdef.groups, {axe = 1, tool=1}) + else + tdef.groups = {axe = 1, tool=1} + end + end + + if tool_name == "shovel" then + tdef.description = S("@1 Shovel", S(description)) + if tdef.groups then + tdef.groups = merge_tables(tdef.groups, {shovel = 1, tool=1}) + else + tdef.groups = {shovel = 1, tool=1} + end + tdef.wield_image = toolimg_base .. tool_name .. ".png^[transformR90" + end + + local fulltool_name = tool_base .. tool_name .. tool_post + + if tool_name == "hoe" and minetest.get_modpath("farming") then + tdef.max_uses = tooldef.max_uses + tdef.material = ingot + tdef.description = S("@1 Hoe", S(description)) + farming.register_hoe(fulltool_name, tdef) + end + + -- Hoe registration is handled above. + -- There are no crafting recipes for hoes, as they have been + -- deprecated from Minetest Game: + -- https://github.com/minetest/minetest_game/commit/9c459e77a + if tool_name ~= "hoe" then + minetest.register_tool(fulltool_name, tdef) + + if oredef.makes.ingot then + minetest.register_craft({ + output = fulltool_name, + recipe = get_recipe(ingot, tool_name) + }) + end + end + + -- Toolranks support + if minetest.get_modpath("toolranks") then + minetest.override_item(fulltool_name, { + original_description = tdef.description, + description = toolranks.create_description(tdef.description, 0, 1), + after_use = toolranks.new_afteruse}) + end + + minetest.register_alias(tool_name .. tool_post, fulltool_name) + if use_frame then + frame.register(fulltool_name) + end + end +end + +local oredefs = { + silver = { + description = "Silver", + makes = {ore = true, block = true, lump = true, ingot = true, chest = true}, + oredef_high= { + clust_scarcity = moreores.silver_chunk_size_high ^ 3, + clust_num_ores = moreores.silver_ore_per_chunk_high, + clust_size = moreores.silver_clust_size_high, + y_min = moreores.silver_min_depth_high, + y_max = moreores.silver_max_depth_high, + }, + oredef = { + clust_scarcity = moreores.silver_chunk_size ^ 3, + clust_num_ores = moreores.silver_ore_per_chunk, + clust_size = moreores.silver_clust_size, + y_min = moreores.silver_min_depth, + y_max = moreores.silver_max_depth, + }, + oredef_deep = { + clust_scarcity = moreores.silver_chunk_size_deep ^ 3, + clust_num_ores = moreores.silver_ore_per_chunk_deep, + clust_size = moreores.silver_clust_size_deep, + y_min = moreores.silver_min_depth_deep, + y_max = moreores.silver_max_depth_deep, + }, + tools = { + pick = { + groupcaps = { + cracky = {times = {[1] = 2.60, [2] = 1.00, [3] = 0.60}, uses = 100, maxlevel = 1}, + }, + damage_groups = {fleshy = 4}, + groups = {dig_speed_class=4, enchantability=14}, + _mcl_diggroups = { + pickaxey = { speed = 6, level = 4, uses = 126 } + }, + }, + hoe = { + max_uses = 150, + }, + shovel = { + groupcaps = { + crumbly = {times = {[1] = 1.10, [2] = 0.40, [3] = 0.25}, uses = 100, maxlevel = 1}, + }, + damage_groups = {fleshy = 3}, + groups = {dig_speed_class=4, enchantability=14}, + _mcl_diggroups = { + shovely = { speed = 6, level = 4, uses = 126 } + }, + }, + axe = { + groupcaps = { + choppy = {times = {[1] = 2.50, [2] = 0.80, [3] = 0.50}, uses = 100, maxlevel = 1}, + fleshy = {times = {[2] = 1.10, [3] = 0.60}, uses = 100, maxlevel = 1}, + }, + damage_groups = {fleshy = 5}, + groups = {dig_speed_class=4, enchantability=14}, + _mcl_diggroups = { + axey = { speed = 6, level = 4, uses = 126 } + }, + }, + sword = { + groupcaps = { + fleshy = {times = {[2] = 0.70, [3] = 0.30}, uses = 100, maxlevel = 1}, + snappy = {times = {[1] = 1.70, [2] = 0.70, [3] = 0.30}, uses = 100, maxlevel = 1}, + choppy = {times = {[3] = 0.80}, uses = 100, maxlevel = 0}, + }, + damage_groups = {fleshy = 6}, + _mcl_diggroups = { + swordy = { speed = 6, level = 4, uses = 126 }, + swordy_cobweb = { speed = 6, level = 4, uses = 126 } + }, + }, + }, + full_punch_interval = 1.0, + extra_node_def = { + _mcl_blast_resistance = 3, + _mcl_hardness = 4, + _mcl_silk_touch_drop = true, + groups = {pickaxey = 4} + } + }, + mithril = { + description = "Mithril", + makes = {ore = true, block = true, lump = true, ingot = true, chest = false}, + oredef_high = { + clust_scarcity = moreores.mithril_chunk_size_high ^ 3, + clust_num_ores = moreores.mithril_ore_per_chunk_high, + clust_size = moreores.mithril_clust_size_high, + y_min = moreores.mithril_min_depth_high, + y_max = moreores.mithril_max_depth_high, + }, + oredef = { + clust_scarcity = moreores.mithril_chunk_size ^ 3, + clust_num_ores = moreores.mithril_ore_per_chunk, + clust_size = moreores.mithril_clust_size, + y_min = moreores.mithril_min_depth, + y_max = moreores.mithril_max_depth, + }, + oredef_deep = { + clust_scarcity = moreores.mithril_chunk_size_deep ^ 3, + clust_num_ores = moreores.mithril_ore_per_chunk_deep, + clust_size = moreores.mithril_clust_size_deep, + y_min = moreores.mithril_min_depth_deep, + y_max = moreores.mithril_max_depth_deep, + }, + tools = { + pick = { + groupcaps = { + cracky = {times = {[1] = 2.60, [2] = 1.00, [3] = 0.60}, uses = 3126, maxlevel = 3}, + }, + damage_groups = {fleshy = 6}, + groups = {dig_speed_class=5, enchantability=10}, + _mcl_diggroups = { + pickaxey = { speed = 8, level = 5, uses = 3126 } + }, + }, + hoe = { + max_uses = 2000, + }, + shovel = { + groupcaps = { + crumbly = {times = {[1] = 1.10, [2] = 0.40, [3] = 0.25}, uses = 3126, maxlevel = 3}, + }, + damage_groups = {fleshy = 6}, + groups = {dig_speed_class=5, enchantability=10}, + _mcl_diggroups = { + shovely = { speed = 8, level = 5, uses = 3126 } + }, + }, + axe = { + groupcaps = { + choppy = {times = {[1] = 2.50, [2] = 0.80, [3] = 0.50}, uses = 3126, maxlevel = 3}, + fleshy = {times = {[2] = 1.10, [3] = 0.60}, uses = 3126, maxlevel = 3}, + }, + damage_groups = {fleshy = 10}, + groups = {dig_speed_class=5, enchantability=10}, + _mcl_diggroups = { + axey = { speed = 8, level = 5, uses = 3126 } + }, + }, + sword = { + groupcaps = { + fleshy = {times = {[2] = 0.70, [3] = 0.30}, uses = 3126, maxlevel = 3}, + snappy = {times = {[1] = 1.70, [2] = 0.70, [3] = 0.30}, uses = 3126, maxlevel = 3}, + choppy = {times = {[3] = 0.80}, uses = 3126, maxlevel = 0}, + }, + damage_groups = {fleshy = 7}, + _mcl_diggroups = { + swordy = { speed = 8, level = 5, uses = 3126 }, + swordy_cobweb = { speed = 8, level = 5, uses = 3126 } + }, + }, + }, + full_punch_interval = 0.45, + extra_node_def = { + _mcl_blast_resistance = 3, + _mcl_hardness = 5, + _mcl_silk_touch_drop = true, + groups = {pickaxey = 5} + }, + } +} + +-- If tin is available in the `default` mod, don't register More Ores' variant of tin +local default_tin +if minetest.registered_items["default:tin_ingot"] then + default_tin = true +else + default_tin = false +end + +if default_tin then + minetest.register_alias("moreores:mineral_tin", "default:stone_with_tin") + minetest.register_alias("moreores:tin_lump", "default:tin_lump") + minetest.register_alias("moreores:tin_ingot", "default:tin_ingot") + minetest.register_alias("moreores:tin_block", "default:tinblock") +else + oredefs.tin = { + description = "Tin", + makes = {ore = true, block = true, lump = true, ingot = true, chest = false}, + oredef_high = { + clust_scarcity = moreores.tin_chunk_size_high ^ 3, + clust_num_ores = moreores.tin_ore_per_chunk_high, + clust_size = moreores.tin_clust_size_high, + y_min = moreores.tin_min_depth_high, + y_max = moreores.tin_max_depth_high, + }, + oredef = { + clust_scarcity = moreores.tin_chunk_size ^ 3, + clust_num_ores = moreores.tin_ore_per_chunk, + clust_size = moreores.tin_clust_size, + y_min = moreores.tin_min_depth, + y_max = moreores.tin_max_depth, + }, + oredef_deep = { + clust_scarcity = moreores.tin_chunk_size_deep ^ 3, + clust_num_ores = moreores.tin_ore_per_chunk_deep, + clust_size = moreores.tin_clust_size_deep, + y_min = moreores.tin_min_depth_deep, + y_max = moreores.tin_max_depth_deep, + }, + tools = {}, + extra_node_def = { + _mcl_blast_resistance = 3, + _mcl_hardness = 3, + _mcl_silk_touch_drop = true, + groups = {pickaxey = 3} + }, + } + + -- Bronze has some special cases, because it is made from copper and tin + minetest.register_craft({ + type = "shapeless", + output = "default:bronze_ingot 3", + recipe = { + "moreores:tin_ingot", + copper_ingredient, + copper_ingredient, + }, + }) +end + +-- Copper rail (unique node) +if minetest.get_modpath("carts") then + carts:register_rail("moreores:copper_rail", { + description = S("Copper Rail"), + tiles = { + "moreores_copper_rail.png", + "moreores_copper_rail_curved.png", + "moreores_copper_rail_t_junction.png", + "moreores_copper_rail_crossing.png", + }, + inventory_image = "moreores_copper_rail.png", + wield_image = "moreores_copper_rail.png", + groups = carts:get_rail_groups(), + }, {}) +end + +minetest.register_craft({ + output = "moreores:copper_rail 24", + recipe = { + {copper_ingredient, "", copper_ingredient}, + {copper_ingredient, "group:stick", copper_ingredient}, + {copper_ingredient, "", copper_ingredient}, + }, +}) + +for orename, def in pairs(oredefs) do + -- Register everything + add_ore("moreores", def.description, orename, def, def.extra_node_def) +end diff --git a/mods/moreores/locale/moreores.de.tr b/mods/moreores/locale/moreores.de.tr new file mode 100644 index 00000000..75a2cf0d --- /dev/null +++ b/mods/moreores/locale/moreores.de.tr @@ -0,0 +1,20 @@ +# textdomain: moreores + +# Translation by Xanthin + +@1 Ore=@1erz +@1 Lump=@1klumpen +@1 Ingot=@1barren +@1 Block=@1block +@1 Pickaxe=@1spitzhacke +@1 Shovel=@1schaufel +@1 Axe=@1axt +@1 Sword=@1schwert + +Copper=Kupfer +Tin=Zinn +Bronze=Bronze +Silver=Silber +Gold=Gold +Mithril=Mithril +Copper Rail=Kupferschiene diff --git a/mods/moreores/locale/moreores.es.tr b/mods/moreores/locale/moreores.es.tr new file mode 100644 index 00000000..4e113c7a --- /dev/null +++ b/mods/moreores/locale/moreores.es.tr @@ -0,0 +1,20 @@ +# textdomain: moreores + +# Translation by kaeza + +@1 Ore=Mineral de @1 +@1 Lump=Pepita de @1 +@1 Ingot=Lingote de @1 +@1 Block=Bloque de @1 +@1 Pickaxe=Pico de @1 +@1 Shovel=Pala de @1 +@1 Axe=Hacha de @1 +@1 Sword=Espada de @1 + +Copper=Cobre +Tin=Estaño +Bronze=Bronce +Silver=Plata +Gold=Oro +Mithril=Mitrilo +Copper Rail=Riel de Cobre diff --git a/mods/moreores/locale/moreores.fr.tr b/mods/moreores/locale/moreores.fr.tr new file mode 100644 index 00000000..8dbc515f --- /dev/null +++ b/mods/moreores/locale/moreores.fr.tr @@ -0,0 +1,21 @@ +# textdomain: moreores + +# Translation by Calinou + +@1 Ore=Minerai en @1 +@1 Lump=Roche en @1 +@1 Ingot=Lingot en @1 +@1 Block=Bloc en @1 +@1 Pickaxe=Pioche en @1 +@1 Shovel=Pelle en @1 +@1 Axe=Hache en @1 +@1 Sword=Épée en @1 +@1 Hoe=Houe en @1 + +Copper=cuivre +Tin=étain +Bronze=bronze +Silver=argent +Gold=or +Mithril=mithril +Copper Rail=Rail en cuivre diff --git a/mods/moreores/locale/moreores.hu.tr b/mods/moreores/locale/moreores.hu.tr new file mode 100644 index 00000000..fc9f1a6e --- /dev/null +++ b/mods/moreores/locale/moreores.hu.tr @@ -0,0 +1,20 @@ +# textdomain: moreores + +# Translation by An0n3m0us + +@1 Ore=@1 érc +@1 Lump=@1 rög +@1 Ingot=@1 öntvény +@1 Block=@1 blokk +@1 Pickaxe=@1 csákány +@1 Shovel=@1 ásó +@1 Axe=@1 fejsze +@1 Sword=@1 kard + +Copper=Réz +Tin=Ón +Bronze=Bronz +Silver=Ezüst +Gold=Arany +Mithril=Mithril +Copper Rail=Réz sín diff --git a/mods/moreores/locale/moreores.it.tr b/mods/moreores/locale/moreores.it.tr new file mode 100644 index 00000000..155105b9 --- /dev/null +++ b/mods/moreores/locale/moreores.it.tr @@ -0,0 +1,20 @@ +# textdomain: moreores + +# Translation by Pagliaccio + +@1 Ore=Minerale di @1 +@1 Lump=@1 grezzo +@1 Ingot=Lingotto di @1 +@1 Block=Blocco di @1 +@1 Pickaxe=Piccone di @1 +@1 Shovel=Badile di @1 +@1 Axe=Ascia di @1 +@1 Sword=Spada di @1 + +Copper=Rame +Tin=Stagno +Bronze=Bronzo +Silver=Argento +Gold=Oro +Mithril=Mithril +Copper Rail=Binario di rame diff --git a/mods/moreores/locale/moreores.nl.tr b/mods/moreores/locale/moreores.nl.tr new file mode 100644 index 00000000..dd143208 --- /dev/null +++ b/mods/moreores/locale/moreores.nl.tr @@ -0,0 +1,17 @@ +# textdomain: moreores + +@1 Ore=@1 Erts +@1 Lump=@1 Klomp +@1 Ingot=@1 Staaf +@1 Block=@1 Blok +@1 Pickaxe=@1 Pikhouweel +@1 Shovel=@1 Schep +@1 Axe=@1 Bijl +@1 Sword=@1 Zwaard + +Copper=Koper +Tin=Tin +Bronze=Brons +Silver=Silver +Gold=Goud +Mithril=Mithril diff --git a/mods/moreores/locale/moreores.pl.tr b/mods/moreores/locale/moreores.pl.tr new file mode 100644 index 00000000..77da16fa --- /dev/null +++ b/mods/moreores/locale/moreores.pl.tr @@ -0,0 +1,20 @@ +# textdomain: moreores + +# Translation by mat9117 + +@1 Ore=@1 Ruda +@1 Lump=@1 Bryłka +@1 Ingot=@1 Sztabka +@1 Block=@1 Blok +@1 Pickaxe=@1 Kilof +@1 Shovel=@1 Łopata +@1 Axe=@1 Siekiera +@1 Sword=@1 Miecz + +Copper=Miedź +Tin=Cyna +Bronze=Brąz +Silver=Srebro +Gold=Złoto +Mithril=Mithril +Copper Rail=Miedziany Tor diff --git a/mods/moreores/locale/moreores.pt_br.tr b/mods/moreores/locale/moreores.pt_br.tr new file mode 100644 index 00000000..6c13d397 --- /dev/null +++ b/mods/moreores/locale/moreores.pt_br.tr @@ -0,0 +1,21 @@ +# textdomain: moreores + +# Translation by github.com/caiorrs + +@1 Ore=Minério de @1 +@1 Lump=Pepita de @1 +@1 Ingot=Lingote de @1 +@1 Block=Bloco de @1 +@1 Pickaxe=Picareta de @1 +@1 Shovel=Pá de @1 +@1 Axe=Machado de @1 +@1 Sword=Espada de @1 + +Copper=Cobre +Tin=Estanho +Bronze=Bronze +Silver=Prata +Gold=Ouro +Mithril=Mitrilo + +Copper Rail=Trilho de Cobre diff --git a/mods/moreores/locale/moreores.ru.tr b/mods/moreores/locale/moreores.ru.tr new file mode 100644 index 00000000..e8ffa359 --- /dev/null +++ b/mods/moreores/locale/moreores.ru.tr @@ -0,0 +1,19 @@ +# textdomain: moreores + +@1 Ore=Руда @1 +@1 Lump=Кусок @1 +@1 Ingot=Слиток @1 +@1 Block=Блок @1 +@1 Pickaxe=Кирка из @1 +@1 Shovel=Лопата из @1 +@1 Axe=Топор из @1 +@1 Sword=Меч из @1 +@1 Hoe=Мотыга из @1 + +Copper=меди +Tin=олова +Bronze=бронзы +Silver=серебра +Gold=золота +Mithril=мифрила +Copper Rail=медные рельсы diff --git a/mods/moreores/locale/moreores.tr.tr b/mods/moreores/locale/moreores.tr.tr new file mode 100644 index 00000000..c99f7d44 --- /dev/null +++ b/mods/moreores/locale/moreores.tr.tr @@ -0,0 +1,26 @@ +# textdomain: moreores + +# Translation by Mahmutelmas06 +# mahmutelmas06@hotmail.com + +# Türkçe Çeviri +# Turkish translation +# Language 2 letter iso code is "tr" + +@1 Ore=@1 madeni +@1 Lump=@1 yığını +@1 Ingot=@1 külçesi +@1 Block=@1 blok +@1 Pickaxe=@1 kazma +@1 Shovel=@1 kürek +@1 Axe=@1 balta +@1 Sword=@1 kılıç + +Copper=Bakır +Tin=Kalay +Bronze=Bronz +Silver=Gümüş +Gold=Altın +Mithril=Mithril + +Copper Rail=Bakır ray diff --git a/mods/moreores/locale/moreores.uk.tr b/mods/moreores/locale/moreores.uk.tr new file mode 100644 index 00000000..593d6808 --- /dev/null +++ b/mods/moreores/locale/moreores.uk.tr @@ -0,0 +1,22 @@ +# textdomain: moreores + +More Ores=Більше Руд +Adds new ore types.=Додає нові типи руд. + +@1 Ore=Руда @1 +@1 Lump=Шматок @1 +@1 Ingot=Злиток @1 +@1 Block=Блок @1 +@1 Pickaxe=Кайло з @1 +@1 Shovel=Лопата з @1 +@1 Axe=Сокира з @1 +@1 Sword=Меч з @1 +@1 Hoe=Мотика з @1 + +Copper=міді +Tin=олова +Bronze=бронзи +Silver=срібла +Gold=золота +Mithril=міфрілу +Copper Rail=Мідні рейки diff --git a/mods/moreores/locale/template.txt b/mods/moreores/locale/template.txt new file mode 100644 index 00000000..37ba08e1 --- /dev/null +++ b/mods/moreores/locale/template.txt @@ -0,0 +1,18 @@ +# textdomain: moreores + +@1 Ore= +@1 Lump= +@1 Ingot= +@1 Block= +@1 Pickaxe= +@1 Shovel= +@1 Axe= +@1 Sword= + +Copper= +Tin= +Bronze= +Silver= +Gold= +Mithril= +Copper Rail= diff --git a/mods/moreores/mg.lua b/mods/moreores/mg.lua new file mode 100644 index 00000000..e7ea5b2c --- /dev/null +++ b/mods/moreores/mg.lua @@ -0,0 +1,55 @@ +--[[ +More Ores: `mg` mod support + +Copyright © 2011-2020 Hugo Locurcio and contributors. +Licensed under the zlib license. See LICENSE.md for more information. +--]] + +if not minetest.registered_items["default:tin_ingot"] then + mg.register_ore({ + name = "moreores:mineral_tin", + wherein = "default:stone", + seeddiff = 8, + maxvdistance = 10.5, + maxheight = 8, + seglenghtn = 15, + seglenghtdev = 6, + segincln = 0, + segincldev = 0.6, + turnangle = 57, + forkturnangle = 57, + numperblock = 2 + }) +end + +mg.register_ore({ + name = "moreores:mineral_silver", + wherein = "default:stone", + seeddiff = 9, + maxvdistance = 10.5, + maxheight = -2, + seglenghtn = 15, + seglenghtdev = 6, + sizen = 60, + sizedev = 30, + segincln = 0, + segincldev = 0.6, + turnangle = 57, + forkturnangle = 57, + numperblock = 2 +}) + +mg.register_ore({ + name = "moreores:mineral_mithril", + wherein = "default:stone", + seeddiff = 10, + maxvdistance = 10.5, + maxheight = -512, + seglenghtn = 2, + seglenghtdev = 4, + sizen = 12, + sizedev = 5, + segincln = 0, + segincldev = 0.6, + turnangle = 57, +}) diff --git a/mods/moreores/mod.conf b/mods/moreores/mod.conf new file mode 100644 index 00000000..c86bccc8 --- /dev/null +++ b/mods/moreores/mod.conf @@ -0,0 +1,8 @@ +name = moreores +description = Adds new ore types. +optional_depends = carts,farming,frame,mg,toolranks,mcl_core,mcl_sounds +min_minetest_version = 5.0.0 +supported_games = mineclone2,mineclonia,minetest_game +release = 30151 +author = Calinou +title = More Ores diff --git a/mods/moreores/textures/moreores_copper_rail.png b/mods/moreores/textures/moreores_copper_rail.png new file mode 100644 index 00000000..da7f5cfa Binary files /dev/null and b/mods/moreores/textures/moreores_copper_rail.png differ diff --git a/mods/moreores/textures/moreores_copper_rail_crossing.png b/mods/moreores/textures/moreores_copper_rail_crossing.png new file mode 100644 index 00000000..ca68539a Binary files /dev/null and b/mods/moreores/textures/moreores_copper_rail_crossing.png differ diff --git a/mods/moreores/textures/moreores_copper_rail_curved.png b/mods/moreores/textures/moreores_copper_rail_curved.png new file mode 100644 index 00000000..64f28305 Binary files /dev/null and b/mods/moreores/textures/moreores_copper_rail_curved.png differ diff --git a/mods/moreores/textures/moreores_copper_rail_t_junction.png b/mods/moreores/textures/moreores_copper_rail_t_junction.png new file mode 100644 index 00000000..406de1e1 Binary files /dev/null and b/mods/moreores/textures/moreores_copper_rail_t_junction.png differ diff --git a/mods/moreores/textures/moreores_mineral_mithril.png b/mods/moreores/textures/moreores_mineral_mithril.png new file mode 100644 index 00000000..e9219cb0 Binary files /dev/null and b/mods/moreores/textures/moreores_mineral_mithril.png differ diff --git a/mods/moreores/textures/moreores_mineral_silver.png b/mods/moreores/textures/moreores_mineral_silver.png new file mode 100644 index 00000000..82e91584 Binary files /dev/null and b/mods/moreores/textures/moreores_mineral_silver.png differ diff --git a/mods/moreores/textures/moreores_mineral_tin.png b/mods/moreores/textures/moreores_mineral_tin.png new file mode 100644 index 00000000..d2a240f6 Binary files /dev/null and b/mods/moreores/textures/moreores_mineral_tin.png differ diff --git a/mods/moreores/textures/moreores_mithril_block.png b/mods/moreores/textures/moreores_mithril_block.png new file mode 100644 index 00000000..7eda9cce Binary files /dev/null and b/mods/moreores/textures/moreores_mithril_block.png differ diff --git a/mods/moreores/textures/moreores_mithril_ingot.png b/mods/moreores/textures/moreores_mithril_ingot.png new file mode 100644 index 00000000..9065e6ab Binary files /dev/null and b/mods/moreores/textures/moreores_mithril_ingot.png differ diff --git a/mods/moreores/textures/moreores_mithril_lump.png b/mods/moreores/textures/moreores_mithril_lump.png new file mode 100644 index 00000000..6c7f30ce Binary files /dev/null and b/mods/moreores/textures/moreores_mithril_lump.png differ diff --git a/mods/moreores/textures/moreores_silver_block.png b/mods/moreores/textures/moreores_silver_block.png new file mode 100644 index 00000000..c2fec683 Binary files /dev/null and b/mods/moreores/textures/moreores_silver_block.png differ diff --git a/mods/moreores/textures/moreores_silver_ingot.png b/mods/moreores/textures/moreores_silver_ingot.png new file mode 100644 index 00000000..5af8d372 Binary files /dev/null and b/mods/moreores/textures/moreores_silver_ingot.png differ diff --git a/mods/moreores/textures/moreores_silver_lump.png b/mods/moreores/textures/moreores_silver_lump.png new file mode 100644 index 00000000..e815ef0f Binary files /dev/null and b/mods/moreores/textures/moreores_silver_lump.png differ diff --git a/mods/moreores/textures/moreores_tin_block.png b/mods/moreores/textures/moreores_tin_block.png new file mode 100644 index 00000000..31ebce01 Binary files /dev/null and b/mods/moreores/textures/moreores_tin_block.png differ diff --git a/mods/moreores/textures/moreores_tin_ingot.png b/mods/moreores/textures/moreores_tin_ingot.png new file mode 100644 index 00000000..4e8c4f5d Binary files /dev/null and b/mods/moreores/textures/moreores_tin_ingot.png differ diff --git a/mods/moreores/textures/moreores_tin_lump.png b/mods/moreores/textures/moreores_tin_lump.png new file mode 100644 index 00000000..72bd339b Binary files /dev/null and b/mods/moreores/textures/moreores_tin_lump.png differ diff --git a/mods/moreores/textures/moreores_tool_mithrilaxe.png b/mods/moreores/textures/moreores_tool_mithrilaxe.png new file mode 100644 index 00000000..46f77767 Binary files /dev/null and b/mods/moreores/textures/moreores_tool_mithrilaxe.png differ diff --git a/mods/moreores/textures/moreores_tool_mithrilhoe.png b/mods/moreores/textures/moreores_tool_mithrilhoe.png new file mode 100644 index 00000000..4a58e8f8 Binary files /dev/null and b/mods/moreores/textures/moreores_tool_mithrilhoe.png differ diff --git a/mods/moreores/textures/moreores_tool_mithrilpick.png b/mods/moreores/textures/moreores_tool_mithrilpick.png new file mode 100644 index 00000000..7f7c3a2b Binary files /dev/null and b/mods/moreores/textures/moreores_tool_mithrilpick.png differ diff --git a/mods/moreores/textures/moreores_tool_mithrilshovel.png b/mods/moreores/textures/moreores_tool_mithrilshovel.png new file mode 100644 index 00000000..72ec2f57 Binary files /dev/null and b/mods/moreores/textures/moreores_tool_mithrilshovel.png differ diff --git a/mods/moreores/textures/moreores_tool_mithrilsword.png b/mods/moreores/textures/moreores_tool_mithrilsword.png new file mode 100644 index 00000000..cd1d8649 Binary files /dev/null and b/mods/moreores/textures/moreores_tool_mithrilsword.png differ diff --git a/mods/moreores/textures/moreores_tool_silveraxe.png b/mods/moreores/textures/moreores_tool_silveraxe.png new file mode 100644 index 00000000..a47eb13d Binary files /dev/null and b/mods/moreores/textures/moreores_tool_silveraxe.png differ diff --git a/mods/moreores/textures/moreores_tool_silverhoe.png b/mods/moreores/textures/moreores_tool_silverhoe.png new file mode 100644 index 00000000..f3841138 Binary files /dev/null and b/mods/moreores/textures/moreores_tool_silverhoe.png differ diff --git a/mods/moreores/textures/moreores_tool_silverpick.png b/mods/moreores/textures/moreores_tool_silverpick.png new file mode 100644 index 00000000..a291d3fc Binary files /dev/null and b/mods/moreores/textures/moreores_tool_silverpick.png differ diff --git a/mods/moreores/textures/moreores_tool_silvershovel.png b/mods/moreores/textures/moreores_tool_silvershovel.png new file mode 100644 index 00000000..74676b13 Binary files /dev/null and b/mods/moreores/textures/moreores_tool_silvershovel.png differ diff --git a/mods/moreores/textures/moreores_tool_silversword.png b/mods/moreores/textures/moreores_tool_silversword.png new file mode 100644 index 00000000..1393df5a Binary files /dev/null and b/mods/moreores/textures/moreores_tool_silversword.png differ diff --git a/mods/paintings_gallery/LICENSE b/mods/paintings_gallery/LICENSE new file mode 100644 index 00000000..cc701608 --- /dev/null +++ b/mods/paintings_gallery/LICENSE @@ -0,0 +1,20 @@ +Code +---- + +MIT License + +Copyright (c) 2023 JoeEnderman + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +Textures +-------- + +CC0 + +(C) 2023 JoeEnderman diff --git a/mods/paintings_gallery/README.md b/mods/paintings_gallery/README.md new file mode 100644 index 00000000..569d5a0c --- /dev/null +++ b/mods/paintings_gallery/README.md @@ -0,0 +1,8 @@ +# Paintings Gallery + +#### +Adds a bunch of example paintings usings Paintings Library. Uses AI generated art from the following AI generators: +#### +Blue Willow https://www.bluewillow.ai/ +#### +Stable Diffusion https://huggingface.co/spaces/stabilityai/stable-diffusion-1 diff --git a/mods/paintings_gallery/craft.lua b/mods/paintings_gallery/craft.lua new file mode 100644 index 00000000..a1cc58a8 --- /dev/null +++ b/mods/paintings_gallery/craft.lua @@ -0,0 +1,1814 @@ +if minetest.get_modpath("default") ~= nil then + + if minetest.get_modpath("dye") ~= nil then + + if minetest.get_modpath("wool") ~= nil then + +-- The Basics + +minetest.register_craft({ + output = "paintings_lib:1x1_blank1x1", + recipe = { + {"default:stick", "default:stick", "default:stick"}, + {"default:stick", "group:wool", "default:stick"}, + {"default:stick", "default:stick", "default:stick"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:1x2_blank1x2", + recipe = { + {"paintings_lib:1x1_blank1x1"}, + {"paintings_lib:1x1_blank1x1"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x1_blank2x1", + recipe = { + {"paintings_lib:1x1_blank1x1", "paintings_lib:1x1_blank1x1"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x2_blank2x2", + recipe = { + {"paintings_lib:1x1_blank1x1", "paintings_lib:1x1_blank1x1"}, + {"paintings_lib:1x1_blank1x1", "paintings_lib:1x1_blank1x1"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x2_blank3x2", + recipe = { + {"paintings_lib:1x1_blank1x1", "paintings_lib:1x1_blank1x1", "paintings_lib:1x1_blank1x1"}, + {"paintings_lib:1x1_blank1x1", "paintings_lib:1x1_blank1x1", "paintings_lib:1x1_blank1x1"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_blank3x3", + recipe = { + {"paintings_lib:1x1_blank1x1", "paintings_lib:1x1_blank1x1", "paintings_lib:1x1_blank1x1"}, + {"paintings_lib:1x1_blank1x1", "paintings_lib:1x1_blank1x1", "paintings_lib:1x1_blank1x1"}, + {"paintings_lib:1x1_blank1x1", "paintings_lib:1x1_blank1x1", "paintings_lib:1x1_blank1x1"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x2_blank4x2", + recipe = { + {"paintings_lib:2x2_blank2x2", "paintings_lib:2x2_blank2x2"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x3_blank4x3", + recipe = { + {"paintings_lib:3x2_blank3x2", "paintings_lib:3x2_blank3x2"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x4_blank4x4", + recipe = { + {"paintings_lib:2x2_blank2x2", "paintings_lib:2x2_blank2x2"}, + {"paintings_lib:2x2_blank2x2", "paintings_lib:2x2_blank2x2"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x4_blank4x4", + recipe = { + {"paintings_lib:4x2_blank4x2"}, + {"paintings_lib:4x2_blank4x2"}, + } +}) + +-- The Paintings + +-- 1x1 + +minetest.register_craft({ + output = "paintings_lib:1x1_blue_vase", + recipe = { + {"paintings_lib:1x1_blank1x1", ""}, + {"dye:blue", "dye:grey"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:1x1_blue_vase_2", + recipe = { + {"paintings_lib:1x1_blank1x1", ""}, + {"dye:grey", "dye:blue"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:1x1_cello", + recipe = { + {"paintings_lib:1x1_blank1x1", ""}, + {"dye:brown", "dye:dark_grey"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:1x1_cyan", + recipe = { + {"paintings_lib:1x1_blank1x1", ""}, + {"dye:cyan", "dye:white"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:1x1_exoplanet", + recipe = { + {"paintings_lib:1x1_blank1x1", ""}, + {"dye:cyan", "dye:orange"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:1x1_exoplanet_2", + recipe = { + {"paintings_lib:1x1_blank1x1", ""}, + {"dye:orange", "dye:grey"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:1x1_fajita", + recipe = { + {"paintings_lib:1x1_blank1x1", ""}, + {"dye:blue", "dye:brown"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:1x1_highway", + recipe = { + {"paintings_lib:1x1_blank1x1", ""}, + {"dye:yellow", "dye:brown"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:1x1_hills", + recipe = { + {"paintings_lib:1x1_blank1x1", ""}, + {"dye:white", "dye:dark_green"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:1x1_larc_triumph", + recipe = { + {"paintings_lib:1x1_blank1x1", ""}, + {"dye:yellow", "dye:grey"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:1x1_last_sunrise", + recipe = { + {"paintings_lib:1x1_blank1x1", ""}, + {"dye:red", "dye:yellow"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:1x1_lit_vase", + recipe = { + {"paintings_lib:1x1_blank1x1", ""}, + {"dye:white", "dye:cyan"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:1x1_minds_eye", + recipe = { + {"paintings_lib:1x1_blank1x1", ""}, + {"dye:cyan", "dye:yellow"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:1x1_ocean_rock", + recipe = { + {"paintings_lib:1x1_blank1x1", ""}, + {"dye:violet", "dye:blue"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:1x1_painting", + recipe = { + {"paintings_lib:1x1_blank1x1", ""}, + {"dye:red", "dye:cyan"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:1x1_penguin", + recipe = { + {"paintings_lib:1x1_blank1x1", ""}, + {"dye:yellow", "dye:white"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:1x1_roses", + recipe = { + {"paintings_lib:1x1_blank1x1", ""}, + {"dye:white", "dye:yellow"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:1x1_seaside_paradise", + recipe = { + {"paintings_lib:1x1_blank1x1", ""}, + {"dye:blue", "dye:orange"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:1x1_the_darkness", + recipe = { + {"paintings_lib:1x1_blank1x1", ""}, + {"dye:brown", "dye:brown"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:1x1_tree_2", + recipe = { + {"paintings_lib:1x1_blank1x1", ""}, + {"dye:dark_green", "dye:green"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:1x1_ufo", + recipe = { + {"paintings_lib:1x1_blank1x1", ""}, + {"dye:black", "dye:yellow"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:1x1_blue_vase", + recipe = { + {"paintings_lib:1x1_blank1x1", ""}, + {"dye:cyan", "dye:dark_grey"}, + } +}) + +-- 1x2 + +minetest.register_craft({ + output = "paintings_lib:1x2_abstract_expression", + recipe = { + {"paintings_lib:1x2_blank1x2", ""}, + {"dye:cyan", "dye:magenta"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:1x2_action_figure", + recipe = { + {"paintings_lib:1x2_blank1x2", ""}, + {"dye:brown", "dye:cyan"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:1x2_cat", + recipe = { + {"paintings_lib:1x2_blank1x2", ""}, + {"dye:black", "dye:black"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:1x2_evil_elf", + recipe = { + {"paintings_lib:1x2_blank1x2", ""}, + {"dye:pink", "dye:dark_grey"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:1x2_hungry", + recipe = { + {"paintings_lib:1x2_blank1x2", ""}, + {"dye:yellow", "dye:dark_green"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:1x2_metal_sky", + recipe = { + {"paintings_lib:1x2_blank1x2", ""}, + {"dye:red", "dye:brown"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:1x2_octopus", + recipe = { + {"paintings_lib:1x2_blank1x2", ""}, + {"dye:magenta", "dye:cyan"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:1x2_parrot_4", + recipe = { + {"paintings_lib:1x2_blank1x2", ""}, + {"dye:blue", "dye:brown"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:1x2_poseidon", + recipe = { + {"paintings_lib:1x2_blank1x2", ""}, + {"dye:cyan", "dye:grey"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:1x2_river", + recipe = { + {"paintings_lib:1x2_blank1x2", ""}, + {"dye:black", "dye:cyan"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:1x2_spicy", + recipe = { + {"paintings_lib:1x2_blank1x2", ""}, + {"dye:grey", "dye:red"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:1x2_time", + recipe = { + {"paintings_lib:1x2_blank1x2", ""}, + {"dye:grey", "dye:yellow"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:1x2_waterfall_2", + recipe = { + {"paintings_lib:1x2_blank1x2", ""}, + {"dye:white", "dye:cyan"}, + } +}) + +-- 2x1 + +minetest.register_craft({ + output = "paintings_lib:2x1_aurora", + recipe = { + {"paintings_lib:2x1_blank2x1", ""}, + {"dye:cyan", "dye:yellow"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x1_car_7", + recipe = { + {"paintings_lib:2x1_blank2x1", ""}, + {"dye:grey", "dye:grey"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x1_jungle", + recipe = { + {"paintings_lib:2x1_blank2x1", ""}, + {"dye:green", "dye:orange"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x1_metal_river", + recipe = { + {"paintings_lib:2x1_blank2x1", ""}, + {"dye:grey", "dye:red"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x1_mountain_landscape", + recipe = { + {"paintings_lib:2x1_blank2x1", ""}, + {"dye:white", "dye:blue"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x1_pixel_punk", + recipe = { + {"paintings_lib:2x1_blank2x1", ""}, + {"dye:magenta", "dye:black"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x1_seafloor", + recipe = { + {"paintings_lib:2x1_blank2x1", ""}, + {"dye:blue", "dye:yellow"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x1_ufo_2", + recipe = { + {"paintings_lib:2x1_blank2x1", ""}, + {"dye:white", "dye:grey"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x1_valley_2", + recipe = { + {"paintings_lib:2x1_blank2x1", ""}, + {"dye:brown", "dye:yellow"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x1_waterfall", + recipe = { + {"paintings_lib:2x1_blank2x1", ""}, + {"dye:dark_green", "dye:dark_green"}, + } +}) + +-- 2x2 + +minetest.register_craft({ + output = "paintings_lib:2x2_abstract_man", + recipe = { + {"paintings_lib:2x2_blank2x2", ""}, + {"dye:red", "dye:magenta"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x2_asia", + recipe = { + {"paintings_lib:2x2_blank2x2", ""}, + {"dye:cyan", "dye:cyan"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x2_baroque_cyborg", + recipe = { + {"paintings_lib:2x2_blank2x2", ""}, + {"dye:yellow", "dye:brown"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x2_battle", + recipe = { + {"paintings_lib:2x2_blank2x2", ""}, + {"dye:cyan", "dye:yellow"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x2_bird", + recipe = { + {"paintings_lib:2x2_blank2x2", ""}, + {"dye:brown", "dye:cyan"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x2_bonzai", + recipe = { + {"paintings_lib:2x2_blank2x2", ""}, + {"dye:white", "dye:dark_green"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x2_burning_cabin", + recipe = { + {"paintings_lib:2x2_blank2x2", ""}, + {"dye:orange", "dye:cyan"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x2_businessman", + recipe = { + {"paintings_lib:2x2_blank2x2", ""}, + {"dye:orange", "dye:dark_grey"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x2_cello_2", + recipe = { + {"paintings_lib:2x2_blank2x2", ""}, + {"dye:brown", "dye:brown"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x2_cello_3", + recipe = { + {"paintings_lib:2x2_blank2x2", ""}, + {"dye:violet", "dye:brown"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x2_exoplanet_3", + recipe = { + {"paintings_lib:2x2_blank2x2", ""}, + {"dye:blue", "dye:grey"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x2_exoplanet_4", + recipe = { + {"paintings_lib:2x2_blank2x2", ""}, + {"dye:red", "dye:violet"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x2_fire_viking", + recipe = { + {"paintings_lib:2x2_blank2x2", ""}, + {"dye:orange", "dye:black"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x2_fishbowl", + recipe = { + {"paintings_lib:2x2_blank2x2", ""}, + {"dye:yellow", "dye:yellow"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x2_fishbowl_2", + recipe = { + {"paintings_lib:2x2_blank2x2", ""}, + {"dye:black", "dye:yellow"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x2_gingerbread_house", + recipe = { + {"paintings_lib:2x2_blank2x2", ""}, + {"dye:white", "dye:white"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x2_hamburger", + recipe = { + {"paintings_lib:2x2_blank2x2", ""}, + {"dye:grey", "dye:brown"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x2_king", + recipe = { + {"paintings_lib:2x2_blank2x2", ""}, + {"dye:blue", "dye:blue"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x2_larc_triumph_2", + recipe = { + {"paintings_lib:2x2_blank2x2", ""}, + {"dye:brown", "dye:grey"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x2_lighthouse", + recipe = { + {"paintings_lib:2x2_blank2x2", ""}, + {"dye:blue", "dye:cyan"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x2_lumina", + recipe = { + {"paintings_lib:2x2_blank2x2", ""}, + {"dye:black", "dye:white"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x2_map_4", + recipe = { + {"paintings_lib:2x2_blank2x2", ""}, + {"dye:dark_green", "dye:cyan"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x2_mountain", + recipe = { + {"paintings_lib:2x2_blank2x2", ""}, + {"dye:brown", "dye:white"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x2_mushroom_city_2", + recipe = { + {"paintings_lib:2x2_blank2x2", ""}, + {"dye:blue", "dye:dark_green"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x2_octopus_2", + recipe = { + {"paintings_lib:2x2_blank2x2", ""}, + {"dye:dark_green", "dye:red"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x2_panther", + recipe = { + {"paintings_lib:2x2_blank2x2", ""}, + {"dye:white", "dye:black"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x2_parrot_3", + recipe = { + {"paintings_lib:2x2_blank2x2", ""}, + {"dye:yellow", "dye:cyan"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x2_pixel_punk_2", + recipe = { + {"paintings_lib:2x2_blank2x2", ""}, + {"dye:yellow", "dye:white"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x2_pixel_punk_3", + recipe = { + {"paintings_lib:2x2_blank2x2", ""}, + {"dye:white", "dye:magenta"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x2_poseidon_2", + recipe = { + {"paintings_lib:2x2_blank2x2", ""}, + {"dye:white", "dye:cyan"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x2_rain", + recipe = { + {"paintings_lib:2x2_blank2x2", ""}, + {"dye:grey", "dye:grey"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x2_red_dog", + recipe = { + {"paintings_lib:2x2_blank2x2", ""}, + {"dye:cyan", "dye:red"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x2_rooftop", + recipe = { + {"paintings_lib:2x2_blank2x2", ""}, + {"dye:yellow", "dye:magenta"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x2_skull_cuttingboard", + recipe = { + {"paintings_lib:2x2_blank2x2", ""}, + {"dye:white", "dye:brown"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x2_stallman", + recipe = { + {"paintings_lib:2x2_blank2x2", ""}, + {"dye:black", "dye:blue"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x2_super_saturn", + recipe = { + {"paintings_lib:2x2_blank2x2", ""}, + {"dye:violet", "dye:yellow"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x2_the_walk", + recipe = { + {"paintings_lib:2x2_blank2x2", ""}, + {"dye:dark_green", "dye:white"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x2_tree_2", + recipe = { + {"paintings_lib:2x2_blank2x2", ""}, + {"dye:dark_green", "dye:blue"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x2_utah", + recipe = { + {"paintings_lib:2x2_blank2x2", ""}, + {"dye:brown", "dye:blue"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x2_war_unicorn", + recipe = { + {"paintings_lib:2x2_blank2x2", ""}, + {"dye:grey", "dye:blue"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x2_waterfall_6", + recipe = { + {"paintings_lib:2x2_blank2x2", ""}, + {"dye:cyan", "dye:dark_green"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x2_wildfire", + recipe = { + {"paintings_lib:2x2_blank2x2", ""}, + {"dye:brown", "dye:orange"}, + } +}) + +-- 3x2 + +minetest.register_craft({ + output = "paintings_lib:3x2_billboard", + recipe = { + {"paintings_lib:3x2_blank3x2", ""}, + {"dye:red", "dye:green"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x2_car_8", + recipe = { + {"paintings_lib:3x2_blank3x2", ""}, + {"dye:dark_grey", "dye:white"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x2_car_9", + recipe = { + {"paintings_lib:3x2_blank3x2", ""}, + {"dye:yellow", "dye:dark_green"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x2_dangerous_seas", + recipe = { + {"paintings_lib:3x2_blank3x2", ""}, + {"dye:yellow", "dye:yellow"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x2_future_ruins", + recipe = { + {"paintings_lib:3x2_blank3x2", ""}, + {"dye:grey", "dye:dark_green"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x2_galaxy", + recipe = { + {"paintings_lib:3x2_blank3x2", ""}, + {"dye:black", "dye:violet"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x2_japan", + recipe = { + {"paintings_lib:3x2_blank3x2", ""}, + {"dye:dark_green", "dye:pink"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x2_skull_sea", + recipe = { + {"paintings_lib:3x2_blank3x2", ""}, + {"dye:cyan", "dye:pink"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x2_solar_flare", + recipe = { + {"paintings_lib:3x2_blank3x2", ""}, + {"dye:black", "dye:blue"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x2_space_machine", + recipe = { + {"paintings_lib:3x2_blank3x2", ""}, + {"dye:cyan", "dye:black"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x2_the_lake", + recipe = { + {"paintings_lib:3x2_blank3x2", ""}, + {"dye:brown", "dye:yellow"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x2_wolf", + recipe = { + {"paintings_lib:3x2_blank3x2", ""}, + {"dye:dark_grey", "dye:yellow"}, + } +}) + +-- 3x3 + +minetest.register_craft({ + output = "paintings_lib:3x3_baroque_cyborg_2", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:brown", "dye:grey"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_battle_2", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:blue", "dye:brown"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_blue_vase_3", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:magenta", "dye:blue"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_bridge", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:brown", "dye:blue"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_cello_4", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:grey", "dye:brown"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_corgi", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:yellow", "dye:dark_green"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_circuit_city", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:cyan", "dye:dark_green"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_civilization", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:cyan", "dye:grey"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_fantasy_forest", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:dark_green", "dye:green"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_fire_elk", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:black", "dye:orange"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_fire_mage", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:black", "dye:yellow"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_flamingo", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:cyan", "dye:pink"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_gooseberry", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:green", "dye:magenta"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_gundam", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:dark_green", "dye:black"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_japan_4", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:cyan", "dye:yellow"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_japan_6", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:dark_green", "dye:white"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_map", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:yellow", "dye:yellow"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_meerkat", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:brown", "dye:white"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_metal_skull", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:cyan", "dye:white"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_mother_nature", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:cyan", "dye:orange"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_mountain_2", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:dark_grey", "dye:dark_green"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_natural_room", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:brown", "dye:brown"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_os", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:black", "dye:white"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_otherworld", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:yellow", "dye:brown"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_parrot", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:brown", "dye:green"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_portal", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:grey", "dye:brown"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_portrait", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:blue", "dye:pink"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_samurai", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:dark_grey", "dye:red"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_seafloor_2", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:red", "dye:blue"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_sea_god", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:blue", "dye:cyan"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_shave_robot", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:green", "dye:grey"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_shipwreck", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:blue", "dye:brown"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_shipwreck_2", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:cyan", "dye:brown"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_skull_roses", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:yellow", "dye:magenta"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_shipwreck", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:yellow", "dye:red"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_stallman_2", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:black", "dye:cyan"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_stone_carving", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:grey", "dye:dark_grey"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_sunrise", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:yellow", "dye:cyan"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_tank_top", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:brown", "dye:cyan"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_touch_it", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:orange", "dye:black"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_tree", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:grey", "dye:grey"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_war_unicorn_2", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:cyan", "dye:violet"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_wolf_2", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:dark_grey", "dye:grey"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_xenos_mechanica", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:red", "dye:black"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_yggdrasil", + recipe = { + {"paintings_lib:3x3_blank3x3", ""}, + {"dye:orange", "dye:cyan"}, + } +}) + +-- 4x2 + +minetest.register_craft({ + output = "paintings_lib:4x2_canada", + recipe = { + {"paintings_lib:4x2_blank4x2", ""}, + {"dye:dark_green", "dye:cyan"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x2_car", + recipe = { + {"paintings_lib:4x2_blank4x2", ""}, + {"dye:grey", "dye:yellow"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x2_car_5", + recipe = { + {"paintings_lib:4x2_blank4x2", ""}, + {"dye:grey", "dye:grey"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x2_civilization_3", + recipe = { + {"paintings_lib:4x2_blank4x2", ""}, + {"dye:magenta", "dye:magenta"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x2_civilization_4", + recipe = { + {"paintings_lib:4x2_blank4x2", ""}, + {"dye:white", "dye:cyan"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x2_cube", + recipe = { + {"paintings_lib:4x2_blank4x2", ""}, + {"dye:black", "dye:cyan"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x2_japan_2", + recipe = { + {"paintings_lib:4x2_blank4x2", ""}, + {"dye:cyan", "dye:cyan"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x2_japan_5", + recipe = { + {"paintings_lib:4x2_blank4x2", ""}, + {"dye:dark_green", "dye:white"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x2_leaves", + recipe = { + {"paintings_lib:4x2_blank4x2", ""}, + {"dye:orange", "dye:red"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x2_mountain_landscape_2", + recipe = { + {"paintings_lib:4x2_blank4x2", ""}, + {"dye:brown", "dye:cyan"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x2_ruins", + recipe = { + {"paintings_lib:4x2_blank4x2", ""}, + {"dye:grey", "dye:pink"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x2_sunset_shore", + recipe = { + {"paintings_lib:4x2_blank4x2", ""}, + {"dye:cyan", "dye:orange"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x2_waterfall_5", + recipe = { + {"paintings_lib:4x2_blank4x2", ""}, + {"dye:black", "dye:green"}, + } +}) + +-- 4x3 + +minetest.register_craft({ + output = "paintings_lib:4x3_alley", + recipe = { + {"paintings_lib:4x3_blank4x3", ""}, + {"dye:yellow", "dye:cyan"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x3_autumn", + recipe = { + {"paintings_lib:4x3_blank4x3", ""}, + {"dye:orange", "dye:orange"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x3_car_2", + recipe = { + {"paintings_lib:4x3_blank4x3", ""}, + {"dye:cyan", "dye:black"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x3_car_6", + recipe = { + {"paintings_lib:4x3_blank4x3", ""}, + {"dye:grey", "dye:magenta"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x3_civilization_2", + recipe = { + {"paintings_lib:4x3_blank4x3", ""}, + {"dye:cyan", "dye:red"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x3_coral", + recipe = { + {"paintings_lib:4x3_blank4x3", ""}, + {"dye:red", "dye:blue"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x3_dragon", + recipe = { + {"paintings_lib:4x3_blank4x3", ""}, + {"dye:black", "dye:grey"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x3_dust_storm", + recipe = { + {"paintings_lib:4x3_blank4x3", ""}, + {"dye:brown", "dye:grey"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x3_eiffel_aurora", + recipe = { + {"paintings_lib:4x3_blank4x3", ""}, + {"dye:green", "dye:blue"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x3_harbour", + recipe = { + {"paintings_lib:4x3_blank4x3", ""}, + {"dye:grey", "dye:brown"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x3_japan_3", + recipe = { + {"paintings_lib:4x3_blank4x3", ""}, + {"dye:dark_green", "dye:grey"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x3_mountain_3", + recipe = { + {"paintings_lib:4x3_blank4x3", ""}, + {"dye:grey", "dye:pink"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x3_neon_city", + recipe = { + {"paintings_lib:4x3_blank4x3", ""}, + {"dye:blue", "dye:orange"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x3_neon_planets", + recipe = { + {"paintings_lib:4x3_blank4x3", ""}, + {"dye:cyan", "dye:orange"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x3_pyramid", + recipe = { + {"paintings_lib:4x3_blank4x3", ""}, + {"dye:orange", "dye:cyan"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x3_starry_city", + recipe = { + {"paintings_lib:4x3_blank4x3", ""}, + {"dye:blue", "dye:yellow"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x3_still_life", + recipe = { + {"paintings_lib:4x3_blank4x3", ""}, + {"dye:grey", "dye:black"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x3_tv_portal", + recipe = { + {"paintings_lib:4x3_blank4x3", ""}, + {"dye:white", "dye:cyan"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x3_village", + recipe = { + {"paintings_lib:4x3_blank4x3", ""}, + {"dye:brown", "dye:yellow"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x3_waterfall_4", + recipe = { + {"paintings_lib:4x3_blank4x3", ""}, + {"dye:blue", "dye:blue"}, + } +}) + +-- 4x4 + +minetest.register_craft({ + output = "paintings_lib:4x4_car_3", + recipe = { + {"paintings_lib:4x4_blank4x4", ""}, + {"dye:black", "dye:cyan"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x4_car_4", + recipe = { + {"paintings_lib:4x4_blank4x4", ""}, + {"dye:orange", "dye:cyan"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x4_cello_5", + recipe = { + {"paintings_lib:4x4_blank4x4", ""}, + {"dye:brown", "dye:cyan"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x4_city_lights", + recipe = { + {"paintings_lib:4x4_blank4x4", ""}, + {"dye:orange", "dye:blue"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x4_cyberpunk", + recipe = { + {"paintings_lib:4x4_blank4x4", ""}, + {"dye:red", "dye:black"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x4_depot", + recipe = { + {"paintings_lib:4x4_blank4x4", ""}, + {"dye:cyan", "dye:grey"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x4_fishbowl_3", + recipe = { + {"paintings_lib:4x4_blank4x4", ""}, + {"dye:dark_green", "dye:blue"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x4_fishbowl_4", + recipe = { + {"paintings_lib:4x4_blank4x4", ""}, + {"dye:brown", "dye:blue"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x4_galaxy_2", + recipe = { + {"paintings_lib:4x4_blank4x4", ""}, + {"dye:dark_green", "dye:black"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x4_general", + recipe = { + {"paintings_lib:4x4_blank4x4", ""}, + {"dye:cyan", "dye:yellow"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x4_gingerbread_house", + recipe = { + {"paintings_lib:4x4_blank4x4", ""}, + {"dye:brown", "dye:white"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x4_hearthfire", + recipe = { + {"paintings_lib:4x4_blank4x4", ""}, + {"dye:brown", "dye:brown"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x4_intellectual", + recipe = { + {"paintings_lib:4x4_blank4x4", ""}, + {"dye:white", "dye:brown"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x4_man", + recipe = { + {"paintings_lib:4x4_blank4x4", ""}, + {"dye:yellow", "dye:blue"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x4_map_2", + recipe = { + {"paintings_lib:4x4_blank4x4", ""}, + {"dye:yellow", "dye:yellow"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x4_map_3", + recipe = { + {"paintings_lib:4x4_blank4x4", ""}, + {"dye:cyan", "dye:green"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x4_map_5", + recipe = { + {"paintings_lib:4x4_blank4x4", ""}, + {"dye:cyan", "dye:dark_green"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x4_metal_and_hope", + recipe = { + {"paintings_lib:4x4_blank4x4", ""}, + {"dye:blue", "dye:violet"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x4_mushroom_city", + recipe = { + {"paintings_lib:4x4_blank4x4", ""}, + {"dye:brown", "dye:yellow"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x4_parrot_2", + recipe = { + {"paintings_lib:4x4_blank4x4", ""}, + {"dye:blue", "dye:dark_green"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x4_parrot_5", + recipe = { + {"paintings_lib:4x4_blank4x4", ""}, + {"dye:blue", "dye:green"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x4_pizza", + recipe = { + {"paintings_lib:4x4_blank4x4", ""}, + {"dye:orange", "dye:red"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x4_read", + recipe = { + {"paintings_lib:4x4_blank4x4", ""}, + {"dye:brown", "dye:dark_grey"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x4_read_2", + recipe = { + {"paintings_lib:4x4_blank4x4", ""}, + {"dye:brown", "dye:grey"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x4_skeleton_flowers", + recipe = { + {"paintings_lib:4x4_blank4x4", ""}, + {"dye:yellow", "dye:magenta"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x4_steelrender", + recipe = { + {"paintings_lib:4x4_blank4x4", ""}, + {"dye:dark_grey", "dye:blue"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x4_super_saturn", + recipe = { + {"paintings_lib:4x4_blank4x4", ""}, + {"dye:white", "dye:blue"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x4_the_machine", + recipe = { + {"paintings_lib:4x4_blank4x4", ""}, + {"dye:brown", "dye:black"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x4_the_surface", + recipe = { + {"paintings_lib:4x4_blank4x4", ""}, + {"dye:brown", "dye:orange"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x4_the_walk", + recipe = { + {"paintings_lib:4x4_blank4x4", ""}, + {"dye:cyan", "dye:brown"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x4_the_wreckage", + recipe = { + {"paintings_lib:4x4_blank4x4", ""}, + {"dye:grey", "dye:grey"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x4_tree_4", + recipe = { + {"paintings_lib:4x4_blank4x4", ""}, + {"dye:brown", "dye:pink"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x4_universe", + recipe = { + {"paintings_lib:4x4_blank4x4", ""}, + {"dye:orange", "dye:orange"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x4_war_unicorn_3", + recipe = { + {"paintings_lib:4x4_blank4x4", ""}, + {"dye:violet", "dye:brown"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x4_waterfall_3", + recipe = { + {"paintings_lib:4x4_blank4x4", ""}, + {"dye:white", "dye:dark_green"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x4_winter", + recipe = { + {"paintings_lib:4x4_blank4x4", ""}, + {"dye:white", "dye:white"}, + } +}) + + end + end +end diff --git a/mods/paintings_gallery/init.lua b/mods/paintings_gallery/init.lua new file mode 100644 index 00000000..091e22be --- /dev/null +++ b/mods/paintings_gallery/init.lua @@ -0,0 +1,8 @@ +-- Paintings Gallery + +paintings_gallery = {} + +local default_path = minetest.get_modpath("paintings_gallery") + +dofile(minetest.get_modpath("paintings_gallery") .. "/paintings.lua") +dofile(minetest.get_modpath("paintings_gallery") .. "/craft.lua") diff --git a/mods/paintings_gallery/mod.conf b/mods/paintings_gallery/mod.conf new file mode 100644 index 00000000..93edfd77 --- /dev/null +++ b/mods/paintings_gallery/mod.conf @@ -0,0 +1,9 @@ +mod_name = paintings_gallery +title = Paintings Gallery +description = A bunch of carefully curated AI generated art in many styles for many build types. Now Survival friendly. +depends = default, paintings_lib, dye, wool +optional_depends = dye, wool +min_minetest_version = 5.3 +release = 21254 +author = JoeEnderman +name = paintings_gallery diff --git a/mods/paintings_gallery/paintings.lua b/mods/paintings_gallery/paintings.lua new file mode 100644 index 00000000..4b1fec25 --- /dev/null +++ b/mods/paintings_gallery/paintings.lua @@ -0,0 +1,442 @@ + +-- 1x1 + +paintings_lib.register1x1("blue_vase", "Blue Vase", "paintings_gallery_1x1_blue_vase.png^paintings_lib_frame1x1.png") + +paintings_lib.register1x1("blue_vase_2", "Blue Vase 2", "paintings_gallery_1x1_blue_vase_2.png^paintings_lib_frame1x1.png") + +paintings_lib.register1x1("cello", "Cello", "paintings_gallery_1x1_cello.png^paintings_lib_frame1x1.png") + +paintings_lib.register1x1("cyan", "Cyan", "paintings_gallery_1x1_cyan.png^paintings_lib_frame1x1.png") + +paintings_lib.register1x1("exoplanet", "Exoplanet", "paintings_gallery_1x1_exoplanet.png^paintings_lib_frame1x1.png") + +paintings_lib.register1x1("exoplanet_2", "Exoplanet 2", "paintings_gallery_1x1_exoplanet_2.png^paintings_lib_frame1x1.png") + +paintings_lib.register1x1("fajita", "Fajita", "paintings_gallery_1x1_fajita.png^paintings_lib_frame1x1.png") + +paintings_lib.register1x1("highway", "Highway", "paintings_gallery_1x1_highway.png^paintings_lib_frame1x1.png") + +paintings_lib.register1x1("hills", "Hills", "paintings_gallery_1x1_hills.png^paintings_lib_frame1x1.png") + +paintings_lib.register1x1("larc_triumph", "L'Arc de Triumph'", "paintings_gallery_1x1_larc_triumph.png^paintings_lib_frame1x1.png") + +paintings_lib.register1x1("last_sunrise", "Last Sunrise", "paintings_gallery_1x1_last_sunrise.png^paintings_lib_frame1x1.png") + +paintings_lib.register1x1("lit_vase", "Lit Vase", "paintings_gallery_1x1_lit_vase.png^paintings_lib_frame1x1.png") + +paintings_lib.register1x1("minds_eye", "Mind's Eye'", "paintings_gallery_1x1_minds_eye.png^paintings_lib_frame1x1.png") + +paintings_lib.register1x1("ocean_rock", "Ocean Rock", "paintings_gallery_1x1_ocean_rock.png^paintings_lib_frame1x1.png") + +paintings_lib.register1x1("painting", "Painting", "paintings_gallery_1x1_painting.png^paintings_lib_frame1x1.png") + +paintings_lib.register1x1("penguin", "Penguin", "paintings_gallery_1x1_penguin.png^paintings_lib_frame1x1.png") + +paintings_lib.register1x1("roses", "Roses", "paintings_gallery_1x1_roses.png^paintings_lib_frame1x1.png") + +paintings_lib.register1x1("seaside_paradise", "Seaside Paradise", "paintings_gallery_1x1_seaside_paradise.png^paintings_lib_frame1x1.png") + +paintings_lib.register1x1("the_darkness", "The Darkness", "paintings_gallery_1x1_the_darkness.png^paintings_lib_frame1x1.png") + +paintings_lib.register1x1("tree_2", "Tree 2", "paintings_gallery_1x1_tree_2.png^paintings_lib_frame1x1.png") + +paintings_lib.register1x1("ufo", "UFO", "paintings_gallery_1x1_ufo.png^paintings_lib_frame1x1.png") + +paintings_lib.register1x1("valley", "Valley", "paintings_gallery_1x1_valley.png^paintings_lib_frame1x1.png") + +-- 1x2 + +paintings_lib.register1x2("abstract_expression", "Abstract Expression", "paintings_gallery_1x2_abstract_expression.png^paintings_lib_frame1x2.png") + +paintings_lib.register1x2("action_figure", "Action Figure", "paintings_gallery_1x2_action_figure.png^paintings_lib_frame1x2.png") + +paintings_lib.register1x2("cat", "Cat", "paintings_gallery_1x2_cat.png^paintings_lib_frame1x2.png") + +paintings_lib.register1x2("evil_elf", "Evil Elf", "paintings_gallery_1x2_evil_elf.png^paintings_lib_frame1x2.png") + +paintings_lib.register1x2("hungry", "Hungry", "paintings_gallery_1x2_hungry.png^paintings_lib_frame1x2.png") + +paintings_lib.register1x2("metal_sky", "Metal Sky", "paintings_gallery_1x2_metal_sky.png^paintings_lib_frame1x2.png") + +paintings_lib.register1x2("octopus", "Octopus", "paintings_gallery_1x2_octopus.png^paintings_lib_frame1x2.png") + +paintings_lib.register1x2("parrot_4", "Parrot 4", "paintings_gallery_1x2_parrot_4.png^paintings_lib_frame1x2.png") + +paintings_lib.register1x2("poseidon", "Poseidon", "paintings_gallery_1x2_poseidon.png^paintings_lib_frame1x2.png") + +paintings_lib.register1x2("river", "River", "paintings_gallery_1x2_river.png^paintings_lib_frame1x2.png") + +paintings_lib.register1x2("spicy", "Spicy", "paintings_gallery_1x2_spicy.png^paintings_lib_frame1x2.png") + +paintings_lib.register1x2("time", "Time", "paintings_gallery_1x2_time.png^paintings_lib_frame1x2.png") + +paintings_lib.register1x2("waterfall_2", "Waterfall 2", "paintings_gallery_1x2_waterfall_2.png^paintings_lib_frame1x2.png") + +-- 2x1 + +paintings_lib.register2x1("aurora", "Aurora", "paintings_gallery_2x1_aurora.png^paintings_lib_frame2x1.png") + +paintings_lib.register2x1("car_7", "Car 7", "paintings_gallery_2x1_car_7.png^paintings_lib_frame2x1.png") + +paintings_lib.register2x1("jungle", "Jungle", "paintings_gallery_2x1_jungle.png^paintings_lib_frame2x1.png") + +paintings_lib.register2x1("metal_river", "Metal River", "paintings_gallery_2x1_metal_river.png^paintings_lib_frame2x1.png") + +paintings_lib.register2x1("mountain_landscape", "Mountain Landscape", "paintings_gallery_2x1_mountain_landscape.png^paintings_lib_frame2x1.png") + +paintings_lib.register2x1("pixel_punk", "Pixel Punk", "paintings_gallery_2x1_pixel_punk.png^paintings_lib_frame2x1.png") + +paintings_lib.register2x1("seafloor", "Seafloor", "paintings_gallery_2x1_seafloor.png^paintings_lib_frame2x1.png") + +paintings_lib.register2x1("ufo_2", "UFO 2", "paintings_gallery_2x1_ufo_2.png^paintings_lib_frame2x1.png") + +paintings_lib.register2x1("valley_2", "Valley 2", "paintings_gallery_2x1_valley_2.png^paintings_lib_frame2x1.png") + +paintings_lib.register2x1("waterfall", "Waterfall", "paintings_gallery_2x1_waterfall.png^paintings_lib_frame2x1.png") + +-- 2x2 + +paintings_lib.register2x2("abstract_man", "Abstract Man", "paintings_gallery_2x2_abstract_man.png^paintings_lib_frame2x2.png") + +paintings_lib.register2x2("asia", "Asia", "paintings_gallery_2x2_asia.png^paintings_lib_frame2x2.png") + +paintings_lib.register2x2("baroque_cyborg", "Baroque Cyborg", "paintings_gallery_2x2_baroque_cyborg.png^paintings_lib_frame2x2.png") + +paintings_lib.register2x2("battle", "Sea Battle", "paintings_gallery_2x2_battle.png^paintings_lib_frame2x2.png") + +paintings_lib.register2x2("bird", "Bird", "paintings_gallery_2x2_bird.png^paintings_lib_frame2x2.png") + +paintings_lib.register2x2("bonzai", "Bonzai", "paintings_gallery_2x2_bonzai.png^paintings_lib_frame2x2.png") + +paintings_lib.register2x2("burning_cabin", "Burning Cabin", "paintings_gallery_2x2_burning_cabin.png^paintings_lib_frame2x2.png") + +paintings_lib.register2x2("businessman", "Businessman", "paintings_gallery_2x2_businessman.png^paintings_lib_frame2x2.png") + +paintings_lib.register2x2("cello_2", "Cello 2", "paintings_gallery_2x2_cello_2.png^paintings_lib_frame2x2.png") + +paintings_lib.register2x2("cello_3", "Cello 3", "paintings_gallery_2x2_cello_3.png^paintings_lib_frame2x2.png") + +paintings_lib.register2x2("exoplanet_3", "Exoplanet 3", "paintings_gallery_2x2_exoplanet_3.png^paintings_lib_frame2x2.png") + +paintings_lib.register2x2("exoplanet_4", "Exoplanet 4", "paintings_gallery_2x2_exoplanet_4.png^paintings_lib_frame2x2.png") + +paintings_lib.register2x2("fire_viking", "Fire Viking", "paintings_gallery_2x2_fire_viking.png^paintings_lib_frame2x2.png") + +paintings_lib.register2x2("fishbowl", "Fishbowl", "paintings_gallery_2x2_fishbowl.png^paintings_lib_frame2x2.png") + +paintings_lib.register2x2("fishbowl_2", "Fishbowl 2", "paintings_gallery_2x2_fishbowl_2.png^paintings_lib_frame2x2.png") + +paintings_lib.register2x2("gingerbread_house", "Gingerbread House", "paintings_gallery_2x2_gingerbread_house.png^paintings_lib_frame2x2.png") + +paintings_lib.register2x2("hamburger", "Hamburger", "paintings_gallery_2x2_hamburger.png^paintings_lib_frame2x2.png") + +paintings_lib.register2x2("king", "King", "paintings_gallery_2x2_king.png^paintings_lib_frame2x2.png") + +paintings_lib.register2x2("larc_triumph_2", "L'Arc de Triumph 2", "paintings_gallery_2x2_larc_triumph_2.png^paintings_lib_frame2x2.png") + +paintings_lib.register2x2("lighthouse", "Lighthouse", "paintings_gallery_2x2_lighthouse.png^paintings_lib_frame2x2.png") + +paintings_lib.register2x2("lumina", "Lumina", "paintings_gallery_2x2_lumina.png^paintings_lib_frame2x2.png") + +paintings_lib.register2x2("map_4", "Map 4", "paintings_gallery_2x2_map_4.png^paintings_lib_frame2x2.png") + +paintings_lib.register2x2("mountain", "mountain", "paintings_gallery_2x2_mountain.png^paintings_lib_frame2x2.png") + +paintings_lib.register2x2("mushroom_city_2", "Mushroom City 2", "paintings_gallery_2x2_mushroom_city_2.png^paintings_lib_frame2x2.png") + +paintings_lib.register2x2("octopus_2", "Octopus 2", "paintings_gallery_2x2_octopus_2.png^paintings_lib_frame2x2.png") + +paintings_lib.register2x2("panther", "Panther", "paintings_gallery_2x2_panther.png^paintings_lib_frame2x2.png") + +paintings_lib.register2x2("parrot_3", "Parrot 3", "paintings_gallery_2x2_parrot_3.png^paintings_lib_frame2x2.png") + +paintings_lib.register2x2("pixel_punk_2", "Pixel Punk 2", "paintings_gallery_2x2_pixel_punk_2.png^paintings_lib_frame2x2.png") + +paintings_lib.register2x2("pixel_punk_3", "Pixel Punk 3", "paintings_gallery_2x2_pixel_punk_3.png^paintings_lib_frame2x2.png") + +paintings_lib.register2x2("poseidon_2", "Poseidon 2", "paintings_gallery_2x2_poseidon_2.png^paintings_lib_frame2x2.png") + +paintings_lib.register2x2("rain", "Rain", "paintings_gallery_2x2_rain.png^paintings_lib_frame2x2.png") + +paintings_lib.register2x2("red_dog", "Red Dog", "paintings_gallery_2x2_red_dog.png^paintings_lib_frame2x2.png") + +paintings_lib.register2x2("rooftop", "Rooftop", "paintings_gallery_2x2_rooftop.png^paintings_lib_frame2x2.png") + +paintings_lib.register2x2("skull_cuttingboard", "Skull Cuttingboard", "paintings_gallery_2x2_skull_cuttingboard.png^paintings_lib_frame2x2.png") + +paintings_lib.register2x2("stallman", "Stallman", "paintings_gallery_2x2_stallman.png^paintings_lib_frame2x2.png") + +paintings_lib.register2x2("super_saturn_2", "Super Saturn 2", "paintings_gallery_2x2_super_saturn_2.png^paintings_lib_frame2x2.png") + +paintings_lib.register2x2("the_walk", "The Walk", "paintings_gallery_2x2_the_walk.png^paintings_lib_frame2x2.png") + +paintings_lib.register2x2("tree_3", "Tree 3", "paintings_gallery_2x2_tree_3.png^paintings_lib_frame2x2.png") + +paintings_lib.register2x2("utah", "Utah", "paintings_gallery_2x2_utah.png^paintings_lib_frame2x2.png") + +paintings_lib.register2x2("war_unicorn", "War Unicorn", "paintings_gallery_2x2_war_unicorn.png^paintings_lib_frame2x2.png") + +paintings_lib.register2x2("waterfall_6", "Waterfall 6", "paintings_gallery_2x2_waterfall_6.png^paintings_lib_frame2x2.png") + +paintings_lib.register2x2("wildfire", "Wildfire", "paintings_gallery_2x2_wildfire.png^paintings_lib_frame2x2.png") + +-- 3x2 + +paintings_lib.register3x2("billboard", "Billboard", "paintings_gallery_3x2_billboard.png^paintings_lib_frame3x2.png") + +paintings_lib.register3x2("car_8", "Car 8", "paintings_gallery_3x2_car_8.png^paintings_lib_frame3x2.png") + +paintings_lib.register3x2("car_9", "Car 9", "paintings_gallery_3x2_car_9.png^paintings_lib_frame3x2.png") + +paintings_lib.register3x2("dangerous_seas", "Dangerous Seas", "paintings_gallery_3x2_dangerous_seas.png^paintings_lib_frame3x2.png") + +paintings_lib.register3x2("future_ruins", "Future Ruins", "paintings_gallery_3x2_future_ruins.png^paintings_lib_frame3x2.png") + +paintings_lib.register3x2("galaxy", "Galaxy", "paintings_gallery_3x2_galaxy.png^paintings_lib_frame3x2.png") + +paintings_lib.register3x2("japan", "Japan", "paintings_gallery_3x2_japan.png^paintings_lib_frame3x2.png") + +paintings_lib.register3x2("skull_sea", "Skull Sea", "paintings_gallery_3x2_skull_sea.png^paintings_lib_frame3x2.png") + +paintings_lib.register3x2("solar_flare", "Solar Flare", "paintings_gallery_3x2_solar_flare.png^paintings_lib_frame3x2.png") + +paintings_lib.register3x2("space_machine", "Space Machine", "paintings_gallery_3x2_space_machine.png^paintings_lib_frame3x2.png") + +paintings_lib.register3x2("the_lake", "The Lake", "paintings_gallery_3x2_the_lake.png^paintings_lib_frame3x2.png") + +paintings_lib.register3x2("wolf", "Wolf", "paintings_gallery_3x2_wolf.png^paintings_lib_frame3x2.png") + +--3x3 + +paintings_lib.register3x3("baroque_cyborg_2", "Baroque Cyborg 2", "paintings_gallery_3x3_baroque_cyborg_2.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("battle_2", "Sea Battle 2", "paintings_gallery_3x3_battle_2.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("blue_vase_3", "Blue Vase 3", "paintings_gallery_3x3_blue_vase_3.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("bridge", "Bridge", "paintings_gallery_3x3_bridge.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("cello_4", "Cello 4", "paintings_gallery_3x3_cello_4.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("ciruit_city", "Circuit City", "paintings_gallery_3x3_circuit_city.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("civilization", "Civilization", "paintings_gallery_3x3_civilization.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("corgi", "Corgi", "paintings_gallery_3x3_corgi.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("fantasy_forest", "Fantasy Forest", "paintings_gallery_3x3_fantasy_forest.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("fire_elk", "Fire Elk", "paintings_gallery_3x3_fire_elk.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("fire_mage", "Fire Mage", "paintings_gallery_3x3_fire_mage.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("flamingo", "Flamingo", "paintings_gallery_3x3_flamingo.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("gooseberry", "Gooseberry", "paintings_gallery_3x3_gooseberry.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("gundam", "Gundam", "paintings_gallery_3x3_gundam.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("japan_4", "Japan 4", "paintings_gallery_3x3_japan_4.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("japan_6", "Japan 6", "paintings_gallery_3x3_japan_6.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("map", "Map", "paintings_gallery_3x3_map.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("meerkat", "Meerkat", "paintings_gallery_3x3_meerkat.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("metal_skull", "Metal Skull", "paintings_gallery_3x3_metal_skull.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("mother_nature", "Mother Nature", "paintings_gallery_3x3_mother_nature.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("mountain_2", "Mountain 2", "paintings_gallery_3x3_mountain_2.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("natural_room", "Natural Room", "paintings_gallery_3x3_natural_room.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("os", "Operating System", "paintings_gallery_3x3_os.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("otherworld", "Otherworld", "paintings_gallery_3x3_otherworld.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("parrot", "Parrot", "paintings_gallery_3x3_parrot.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("portal", "Portal", "paintings_gallery_3x3_portal.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("portrait", "Portrait", "paintings_gallery_3x3_portrait.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("samurai", "Samurai", "paintings_gallery_3x3_samurai.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("seafloor_2", "Seafloor 2", "paintings_gallery_3x3_seafloor_2.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("sea_god", "Sea god", "paintings_gallery_3x3_sea_god.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("shave_robot", "Shave Robot", "paintings_gallery_3x3_shave_robot.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("shipwreck", "Shipwreck", "paintings_gallery_3x3_shipwreck.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("shipwreck_2", "Shipwreck 2", "paintings_gallery_3x3_shipwreck_2.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("skull_roses", "Skull with Roses", "paintings_gallery_3x3_skull_roses.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("skull_roses_2", "Skull with Roses 2", "paintings_gallery_3x3_skull_roses_2.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("stallman_2", "Stallman 2", "paintings_gallery_3x3_stallman_2.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("stone_carving", "Stone Carving", "paintings_gallery_3x3_stone_carving.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("sunrise", "Sunrise", "paintings_gallery_3x3_sunrise.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("tank_top", "Tank Top", "paintings_gallery_3x3_tank_top.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("touch_it", "Touch It", "paintings_gallery_3x3_touch_it.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("tree", "Tree", "paintings_gallery_3x3_tree.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("war_unicorn_2", "War Unicorn 2", "paintings_gallery_3x3_war_unicorn_2.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("wolf_2", "Wolf 2", "paintings_gallery_3x3_wolf_2.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("xenos_mechanica", "Xenos_Mechanica", "paintings_gallery_3x3_xenos_mechanica.png^paintings_lib_frame3x3.png") + +paintings_lib.register3x3("yggdrasil", "Yggdrasil", "paintings_gallery_3x3_yggdrasil.png^paintings_lib_frame3x3.png") + +-- 4x2 + +paintings_lib.register4x2("canada", "Canada", "paintings_gallery_4x2_canada.png^paintings_lib_frame4x2.png") + +paintings_lib.register4x2("car", "Car", "paintings_gallery_4x2_car.png^paintings_lib_frame4x2.png") + +paintings_lib.register4x2("car 5", "Car", "paintings_gallery_4x2_car.png^paintings_lib_frame4x2.png") + +paintings_lib.register4x2("civilization_3", "Civilization 3", "paintings_gallery_4x2_civilization_3.png^paintings_lib_frame4x2.png") + +paintings_lib.register4x2("civilization_4", "Civilization 4", "paintings_gallery_4x2_civilization_4.png^paintings_lib_frame4x2.png") + +paintings_lib.register4x2("cube", "Cube", "paintings_gallery_4x2_cube.png^paintings_lib_frame4x2.png") + +paintings_lib.register4x2("japan_2", "Japan 2", "paintings_gallery_4x2_japan_2.png^paintings_lib_frame4x2.png") + +paintings_lib.register4x2("japan_5", "Japan 5", "paintings_gallery_4x2_japan_5.png^paintings_lib_frame4x2.png") + +paintings_lib.register4x2("leaves", "Leaves", "paintings_gallery_4x2_leaves.png^paintings_lib_frame4x2.png") + +paintings_lib.register4x2("mountain_landscape_2", "Mountain Landscape 2", "paintings_gallery_4x2_mountain_landscape_2.png^paintings_lib_frame4x2.png") + +paintings_lib.register4x2("ruins", "Ruins", "paintings_gallery_4x2_ruins.png^paintings_lib_frame4x2.png") + +paintings_lib.register4x2("sunset_shore", "Sunset Shore", "paintings_gallery_4x2_sunset_shore.png^paintings_lib_frame4x2.png") + +paintings_lib.register4x2("waterfall_5", "Waterfall 5", "paintings_gallery_4x2_waterfall_5.png^paintings_lib_frame4x2.png") + +-- 4x3 + +paintings_lib.register4x3("alley", "Alley", "paintings_gallery_4x3_alley.png^paintings_lib_frame4x3.png") + +paintings_lib.register4x3("autumn", "Autumn", "paintings_gallery_4x3_autumn.png^paintings_lib_frame4x3.png") + +paintings_lib.register4x3("car_6", "Car 6", "paintings_gallery_4x3_car_6.png^paintings_lib_frame4x3.png") + +paintings_lib.register4x3("car_2", "Car 2", "paintings_gallery_4x3_car_2.png^paintings_lib_frame4x3.png") + +paintings_lib.register4x3("civilization_2", "Civilization 2", "paintings_gallery_4x3_civilization_2.png^paintings_lib_frame4x3.png") + +paintings_lib.register4x3("coral", "Coral", "paintings_gallery_4x3_coral.png^paintings_lib_frame4x3.png") + +paintings_lib.register4x3("dragon", "Dragon", "paintings_gallery_4x3_dragon.png^paintings_lib_frame4x3.png") + +paintings_lib.register4x3("dust_storm", "Dust Storm", "paintings_gallery_4x3_dust_storm.png^paintings_lib_frame4x3.png") + +paintings_lib.register4x3("eiffel_aurora", "Eiffel Aurora", "paintings_gallery_4x3_eiffel_aurora.png^paintings_lib_frame4x3.png") + +paintings_lib.register4x3("harbour", "Harbour", "paintings_gallery_4x3_harbour.png^paintings_lib_frame4x3.png") + +paintings_lib.register4x3("japan_3", "Japan 3", "paintings_gallery_4x3_japan_3.png^paintings_lib_frame4x3.png") + +paintings_lib.register4x3("mountain_3", "Mountain 3", "paintings_gallery_4x3_mountain_3.png^paintings_lib_frame4x3.png") + +paintings_lib.register4x3("neon_city", "Neon City", "paintings_gallery_4x3_neon_city.png^paintings_lib_frame4x3.png") + +paintings_lib.register4x3("neon_planets", "Neon Planets", "paintings_gallery_4x3_neon_planets.png^paintings_lib_frame4x3.png") + +paintings_lib.register4x3("pyramid", "Pyramid", "paintings_gallery_4x3_pyramid.png^paintings_lib_frame4x3.png") + +paintings_lib.register4x3("starry_city", "Starry City", "paintings_gallery_4x3_starry_city.png^paintings_lib_frame4x3.png") + +paintings_lib.register4x3("still_life", "Still Life", "paintings_gallery_4x3_still_life.png^paintings_lib_frame4x3.png") + +paintings_lib.register4x3("tv_portal", "TV Portal", "paintings_gallery_4x3_tv_portal.png^paintings_lib_frame4x3.png") + +paintings_lib.register4x3("village", "Village", "paintings_gallery_4x3_village.png^paintings_lib_frame4x3.png") + +paintings_lib.register4x3("waterfall_4", "Waterfall 4", "paintings_gallery_4x3_waterfall_4.png^paintings_lib_frame4x3.png") + +-- 4x4 + +paintings_lib.register4x4("car_3", "Car 3", "paintings_gallery_4x4_car_3.png^paintings_lib_frame4x4.png") + +paintings_lib.register4x4("car_4", "Car 4", "paintings_gallery_4x4_car_4.png^paintings_lib_frame4x4.png") + +paintings_lib.register4x4("cello_5", "Cello 5", "paintings_gallery_4x4_cello_5.png^paintings_lib_frame4x4.png") + +paintings_lib.register4x4("city_lights", "City Lights", "paintings_gallery_4x4_city_lights.png^paintings_lib_frame4x4.png") + +paintings_lib.register4x4("cyberpunk", "Cyberpunk", "paintings_gallery_4x4_cyberpunk.png^paintings_lib_frame4x4.png") + +paintings_lib.register4x4("depot", "Depot", "paintings_gallery_4x4_depot.png^paintings_lib_frame4x4.png") + +paintings_lib.register4x4("fishbowl_3", "Fishbowl 3", "paintings_gallery_4x4_fishbowl_3.png^paintings_lib_frame4x4.png") + +paintings_lib.register4x4("fishbowl_4", "Fishbowl 4", "paintings_gallery_4x4_fishbowl_4.png^paintings_lib_frame4x4.png") + +paintings_lib.register4x4("galaxy_2", "Galaxy 2", "paintings_gallery_4x4_galaxy_2.png^paintings_lib_frame4x4.png") + +paintings_lib.register4x4("general", "General", "paintings_gallery_4x4_general.png^paintings_lib_frame4x4.png") + +paintings_lib.register4x4("hearthfire", "Hearthfire", "paintings_gallery_4x4_hearthfire.png^paintings_lib_frame4x4.png") + +paintings_lib.register4x4("intellectual", "Intellectual", "paintings_gallery_4x4_intellectual.png^paintings_lib_frame4x4.png") + +paintings_lib.register4x4("man", "Man", "paintings_gallery_4x4_man.png^paintings_lib_frame4x4.png") + +paintings_lib.register4x4("map_2", "Map 2", "paintings_gallery_4x4_map_2.png^paintings_lib_frame4x4.png") + +paintings_lib.register4x4("map_3", "Map 3", "paintings_gallery_4x4_map_3.png^paintings_lib_frame4x4.png") + +paintings_lib.register4x4("map_5", "Map 5", "paintings_gallery_4x4_map_5.png^paintings_lib_frame4x4.png") + +paintings_lib.register4x4("metal_and_hope", "Metal and Hope", "paintings_gallery_4x4_metal_and_hope.png^paintings_lib_frame4x4.png") + +paintings_lib.register4x4("mushroom_city", "Mushroom City", "paintings_gallery_4x4_mushroom_city.png^paintings_lib_frame4x4.png") + +paintings_lib.register4x4("parrot_2", "Parrot 2", "paintings_gallery_4x4_parrot_2.png^paintings_lib_frame4x4.png") + +paintings_lib.register4x4("parrot_5", "Parrot 5", "paintings_gallery_4x4_parrot_5.png^paintings_lib_frame4x4.png") + +paintings_lib.register4x4("pizza", "Pizza", "paintings_gallery_4x4_pizza.png^paintings_lib_frame4x4.png") + +paintings_lib.register4x4("read", "Read", "paintings_gallery_4x4_read.png^paintings_lib_frame4x4.png") + +paintings_lib.register4x4("read_2", "Read 2", "paintings_gallery_4x4_read_2.png^paintings_lib_frame4x4.png") + +paintings_lib.register4x4("skeleton_flowers", "Skeleton Flowers", "paintings_gallery_4x4_skeleton_flowers.png^paintings_lib_frame4x4.png") + +paintings_lib.register4x4("steelrender", "Steelrender", "paintings_gallery_4x4_steelrender.png^paintings_lib_frame4x4.png") + +paintings_lib.register4x4("super_saturn", "Super Saturn", "paintings_gallery_4x4_super_saturn.png^paintings_lib_frame4x4.png") + +paintings_lib.register4x4("the_machine", "The Machine", "paintings_gallery_4x4_the_machine.png^paintings_lib_frame4x4.png") + +paintings_lib.register4x4("the_surface", "The Surface", "paintings_gallery_4x4_the_surface.png^paintings_lib_frame4x4.png") + +paintings_lib.register4x4("the_walk_2", "The Walk 2", "paintings_gallery_4x4_the_walk_2.png^paintings_lib_frame4x4.png") + +paintings_lib.register4x4("the_wreckage", "The Wreckage", "paintings_gallery_4x4_the_wreckage.png^paintings_lib_frame4x4.png") + +paintings_lib.register4x4("tree_4", "Tree 4", "paintings_gallery_4x4_tree_4.png^paintings_lib_frame4x4.png") + +paintings_lib.register4x4("universe", "Universe", "paintings_gallery_4x4_universe.png^paintings_lib_frame4x4.png") + +paintings_lib.register4x4("war_unicorn_3", "War Unicorn 3", "paintings_gallery_4x4_war_unicorn_3.png^paintings_lib_frame4x4.png") + +paintings_lib.register4x4("waterfall_3", "Waterfall 3", "paintings_gallery_4x4_waterfall_3.png^paintings_lib_frame4x4.png") + +paintings_lib.register4x4("winter", "Winter", "paintings_gallery_4x4_winter.png^paintings_lib_frame4x4.png") diff --git a/mods/paintings_gallery/textures/paintings_gallery_1x1_blue_vase.png b/mods/paintings_gallery/textures/paintings_gallery_1x1_blue_vase.png new file mode 100644 index 00000000..056f7266 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_1x1_blue_vase.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_1x1_blue_vase_2.png b/mods/paintings_gallery/textures/paintings_gallery_1x1_blue_vase_2.png new file mode 100644 index 00000000..d69900bf Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_1x1_blue_vase_2.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_1x1_cello.png b/mods/paintings_gallery/textures/paintings_gallery_1x1_cello.png new file mode 100644 index 00000000..a51f81ec Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_1x1_cello.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_1x1_cyan.png b/mods/paintings_gallery/textures/paintings_gallery_1x1_cyan.png new file mode 100644 index 00000000..1cd1c9cc Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_1x1_cyan.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_1x1_exoplanet.png b/mods/paintings_gallery/textures/paintings_gallery_1x1_exoplanet.png new file mode 100644 index 00000000..86116323 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_1x1_exoplanet.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_1x1_exoplanet_2.png b/mods/paintings_gallery/textures/paintings_gallery_1x1_exoplanet_2.png new file mode 100644 index 00000000..1f13af1a Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_1x1_exoplanet_2.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_1x1_fajita.png b/mods/paintings_gallery/textures/paintings_gallery_1x1_fajita.png new file mode 100644 index 00000000..734c703e Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_1x1_fajita.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_1x1_highway.png b/mods/paintings_gallery/textures/paintings_gallery_1x1_highway.png new file mode 100644 index 00000000..e222cf9b Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_1x1_highway.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_1x1_hills.png b/mods/paintings_gallery/textures/paintings_gallery_1x1_hills.png new file mode 100644 index 00000000..fa366d52 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_1x1_hills.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_1x1_larc_triumph.png b/mods/paintings_gallery/textures/paintings_gallery_1x1_larc_triumph.png new file mode 100644 index 00000000..19943065 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_1x1_larc_triumph.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_1x1_last_sunrise.png b/mods/paintings_gallery/textures/paintings_gallery_1x1_last_sunrise.png new file mode 100644 index 00000000..b3c001ec Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_1x1_last_sunrise.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_1x1_lit_vase.png b/mods/paintings_gallery/textures/paintings_gallery_1x1_lit_vase.png new file mode 100644 index 00000000..96e35511 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_1x1_lit_vase.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_1x1_minds_eye.png b/mods/paintings_gallery/textures/paintings_gallery_1x1_minds_eye.png new file mode 100644 index 00000000..273b3488 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_1x1_minds_eye.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_1x1_ocean_rock.png b/mods/paintings_gallery/textures/paintings_gallery_1x1_ocean_rock.png new file mode 100644 index 00000000..7a0d50a1 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_1x1_ocean_rock.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_1x1_painting.png b/mods/paintings_gallery/textures/paintings_gallery_1x1_painting.png new file mode 100644 index 00000000..36a8c58e Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_1x1_painting.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_1x1_penguin.png b/mods/paintings_gallery/textures/paintings_gallery_1x1_penguin.png new file mode 100644 index 00000000..08bf7c8a Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_1x1_penguin.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_1x1_roses.png b/mods/paintings_gallery/textures/paintings_gallery_1x1_roses.png new file mode 100644 index 00000000..0013f214 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_1x1_roses.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_1x1_seaside_paradise.png b/mods/paintings_gallery/textures/paintings_gallery_1x1_seaside_paradise.png new file mode 100644 index 00000000..864930da Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_1x1_seaside_paradise.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_1x1_the_darkness.png b/mods/paintings_gallery/textures/paintings_gallery_1x1_the_darkness.png new file mode 100644 index 00000000..b5bbb759 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_1x1_the_darkness.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_1x1_tree_2.png b/mods/paintings_gallery/textures/paintings_gallery_1x1_tree_2.png new file mode 100644 index 00000000..ee822a9b Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_1x1_tree_2.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_1x1_ufo.png b/mods/paintings_gallery/textures/paintings_gallery_1x1_ufo.png new file mode 100644 index 00000000..d5f0be54 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_1x1_ufo.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_1x1_valley.png b/mods/paintings_gallery/textures/paintings_gallery_1x1_valley.png new file mode 100644 index 00000000..704a19ff Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_1x1_valley.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_1x2_abstract_expression.png b/mods/paintings_gallery/textures/paintings_gallery_1x2_abstract_expression.png new file mode 100644 index 00000000..68b9d4d1 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_1x2_abstract_expression.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_1x2_action_figure.png b/mods/paintings_gallery/textures/paintings_gallery_1x2_action_figure.png new file mode 100644 index 00000000..7c1098b5 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_1x2_action_figure.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_1x2_cat.png b/mods/paintings_gallery/textures/paintings_gallery_1x2_cat.png new file mode 100644 index 00000000..23871922 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_1x2_cat.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_1x2_evil_elf.png b/mods/paintings_gallery/textures/paintings_gallery_1x2_evil_elf.png new file mode 100644 index 00000000..2b21f4c9 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_1x2_evil_elf.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_1x2_hungry.png b/mods/paintings_gallery/textures/paintings_gallery_1x2_hungry.png new file mode 100644 index 00000000..31ebe2a6 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_1x2_hungry.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_1x2_metal_sky.png b/mods/paintings_gallery/textures/paintings_gallery_1x2_metal_sky.png new file mode 100644 index 00000000..6b3d626e Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_1x2_metal_sky.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_1x2_octopus.png b/mods/paintings_gallery/textures/paintings_gallery_1x2_octopus.png new file mode 100644 index 00000000..1011af7a Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_1x2_octopus.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_1x2_parrot_4.png b/mods/paintings_gallery/textures/paintings_gallery_1x2_parrot_4.png new file mode 100644 index 00000000..3eef75a3 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_1x2_parrot_4.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_1x2_poseidon.png b/mods/paintings_gallery/textures/paintings_gallery_1x2_poseidon.png new file mode 100644 index 00000000..21ae2d0f Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_1x2_poseidon.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_1x2_river.png b/mods/paintings_gallery/textures/paintings_gallery_1x2_river.png new file mode 100644 index 00000000..fe2c5a19 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_1x2_river.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_1x2_spicy.png b/mods/paintings_gallery/textures/paintings_gallery_1x2_spicy.png new file mode 100644 index 00000000..ce28cb98 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_1x2_spicy.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_1x2_time.png b/mods/paintings_gallery/textures/paintings_gallery_1x2_time.png new file mode 100644 index 00000000..57031fab Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_1x2_time.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_1x2_waterfall_2.png b/mods/paintings_gallery/textures/paintings_gallery_1x2_waterfall_2.png new file mode 100644 index 00000000..b5550f93 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_1x2_waterfall_2.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x1_aurora.png b/mods/paintings_gallery/textures/paintings_gallery_2x1_aurora.png new file mode 100644 index 00000000..c4fcde45 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x1_aurora.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x1_car_7.png b/mods/paintings_gallery/textures/paintings_gallery_2x1_car_7.png new file mode 100644 index 00000000..0e0cdae2 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x1_car_7.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x1_jungle.png b/mods/paintings_gallery/textures/paintings_gallery_2x1_jungle.png new file mode 100644 index 00000000..f1f44e39 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x1_jungle.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x1_metal_river.png b/mods/paintings_gallery/textures/paintings_gallery_2x1_metal_river.png new file mode 100644 index 00000000..584b5226 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x1_metal_river.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x1_mountain_landscape.png b/mods/paintings_gallery/textures/paintings_gallery_2x1_mountain_landscape.png new file mode 100644 index 00000000..be7871f6 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x1_mountain_landscape.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x1_pixel_punk.png b/mods/paintings_gallery/textures/paintings_gallery_2x1_pixel_punk.png new file mode 100644 index 00000000..a95a0c5b Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x1_pixel_punk.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x1_seafloor.png b/mods/paintings_gallery/textures/paintings_gallery_2x1_seafloor.png new file mode 100644 index 00000000..727ae172 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x1_seafloor.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x1_ufo_2.png b/mods/paintings_gallery/textures/paintings_gallery_2x1_ufo_2.png new file mode 100644 index 00000000..d02820af Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x1_ufo_2.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x1_valley_2.png b/mods/paintings_gallery/textures/paintings_gallery_2x1_valley_2.png new file mode 100644 index 00000000..eb9fe83b Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x1_valley_2.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x1_waterfall.png b/mods/paintings_gallery/textures/paintings_gallery_2x1_waterfall.png new file mode 100644 index 00000000..06dcff5f Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x1_waterfall.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x2_abstract_man.png b/mods/paintings_gallery/textures/paintings_gallery_2x2_abstract_man.png new file mode 100644 index 00000000..1eda6a99 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x2_abstract_man.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x2_asia.png b/mods/paintings_gallery/textures/paintings_gallery_2x2_asia.png new file mode 100644 index 00000000..5eeebf1a Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x2_asia.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x2_baroque_cyborg.png b/mods/paintings_gallery/textures/paintings_gallery_2x2_baroque_cyborg.png new file mode 100644 index 00000000..0525f09c Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x2_baroque_cyborg.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x2_battle.png b/mods/paintings_gallery/textures/paintings_gallery_2x2_battle.png new file mode 100644 index 00000000..8948d226 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x2_battle.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x2_bird.png b/mods/paintings_gallery/textures/paintings_gallery_2x2_bird.png new file mode 100644 index 00000000..9956f443 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x2_bird.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x2_bonzai.png b/mods/paintings_gallery/textures/paintings_gallery_2x2_bonzai.png new file mode 100644 index 00000000..1d10f2af Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x2_bonzai.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x2_burning_cabin.png b/mods/paintings_gallery/textures/paintings_gallery_2x2_burning_cabin.png new file mode 100644 index 00000000..454408ca Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x2_burning_cabin.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x2_businessman.png b/mods/paintings_gallery/textures/paintings_gallery_2x2_businessman.png new file mode 100644 index 00000000..ac41f026 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x2_businessman.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x2_cello_2.png b/mods/paintings_gallery/textures/paintings_gallery_2x2_cello_2.png new file mode 100644 index 00000000..b7522bf5 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x2_cello_2.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x2_cello_3.png b/mods/paintings_gallery/textures/paintings_gallery_2x2_cello_3.png new file mode 100644 index 00000000..af35bef0 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x2_cello_3.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x2_exoplanet_3.png b/mods/paintings_gallery/textures/paintings_gallery_2x2_exoplanet_3.png new file mode 100644 index 00000000..f4603652 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x2_exoplanet_3.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x2_exoplanet_4.png b/mods/paintings_gallery/textures/paintings_gallery_2x2_exoplanet_4.png new file mode 100644 index 00000000..898ad4f5 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x2_exoplanet_4.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x2_fire_viking.png b/mods/paintings_gallery/textures/paintings_gallery_2x2_fire_viking.png new file mode 100644 index 00000000..a22663c1 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x2_fire_viking.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x2_fishbowl.png b/mods/paintings_gallery/textures/paintings_gallery_2x2_fishbowl.png new file mode 100644 index 00000000..fa5bedfd Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x2_fishbowl.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x2_fishbowl_2.png b/mods/paintings_gallery/textures/paintings_gallery_2x2_fishbowl_2.png new file mode 100644 index 00000000..a1f9692f Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x2_fishbowl_2.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x2_gingerbread_house.png b/mods/paintings_gallery/textures/paintings_gallery_2x2_gingerbread_house.png new file mode 100644 index 00000000..0dd46499 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x2_gingerbread_house.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x2_hamburger.png b/mods/paintings_gallery/textures/paintings_gallery_2x2_hamburger.png new file mode 100644 index 00000000..adc90d09 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x2_hamburger.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x2_king.png b/mods/paintings_gallery/textures/paintings_gallery_2x2_king.png new file mode 100644 index 00000000..747ad42f Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x2_king.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x2_larc_triumph_2.png b/mods/paintings_gallery/textures/paintings_gallery_2x2_larc_triumph_2.png new file mode 100644 index 00000000..9d4c1548 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x2_larc_triumph_2.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x2_lighthouse.png b/mods/paintings_gallery/textures/paintings_gallery_2x2_lighthouse.png new file mode 100644 index 00000000..6c5116fc Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x2_lighthouse.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x2_lumina.png b/mods/paintings_gallery/textures/paintings_gallery_2x2_lumina.png new file mode 100644 index 00000000..0bc1c4e7 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x2_lumina.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x2_map_4.png b/mods/paintings_gallery/textures/paintings_gallery_2x2_map_4.png new file mode 100644 index 00000000..8d807e8b Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x2_map_4.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x2_mountain.png b/mods/paintings_gallery/textures/paintings_gallery_2x2_mountain.png new file mode 100644 index 00000000..5c6eae4d Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x2_mountain.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x2_mushroom_city_2.png b/mods/paintings_gallery/textures/paintings_gallery_2x2_mushroom_city_2.png new file mode 100644 index 00000000..2540dadb Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x2_mushroom_city_2.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x2_octopus_2.png b/mods/paintings_gallery/textures/paintings_gallery_2x2_octopus_2.png new file mode 100644 index 00000000..1ccf6042 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x2_octopus_2.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x2_panther.png b/mods/paintings_gallery/textures/paintings_gallery_2x2_panther.png new file mode 100644 index 00000000..4cf0db02 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x2_panther.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x2_parrot_3.png b/mods/paintings_gallery/textures/paintings_gallery_2x2_parrot_3.png new file mode 100644 index 00000000..1c80b835 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x2_parrot_3.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x2_pixel_punk_2.png b/mods/paintings_gallery/textures/paintings_gallery_2x2_pixel_punk_2.png new file mode 100644 index 00000000..42145754 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x2_pixel_punk_2.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x2_pixel_punk_3.png b/mods/paintings_gallery/textures/paintings_gallery_2x2_pixel_punk_3.png new file mode 100644 index 00000000..3b2a1ec3 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x2_pixel_punk_3.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x2_poseidon_2.png b/mods/paintings_gallery/textures/paintings_gallery_2x2_poseidon_2.png new file mode 100644 index 00000000..20cb20b5 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x2_poseidon_2.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x2_rain.png b/mods/paintings_gallery/textures/paintings_gallery_2x2_rain.png new file mode 100644 index 00000000..2b770cd9 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x2_rain.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x2_red_dog.png b/mods/paintings_gallery/textures/paintings_gallery_2x2_red_dog.png new file mode 100644 index 00000000..e32b8c1e Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x2_red_dog.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x2_rooftop.png b/mods/paintings_gallery/textures/paintings_gallery_2x2_rooftop.png new file mode 100644 index 00000000..9a864c8d Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x2_rooftop.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x2_skull_cuttingboard.png b/mods/paintings_gallery/textures/paintings_gallery_2x2_skull_cuttingboard.png new file mode 100644 index 00000000..7121afe8 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x2_skull_cuttingboard.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x2_stallman.png b/mods/paintings_gallery/textures/paintings_gallery_2x2_stallman.png new file mode 100644 index 00000000..ccbc2dfb Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x2_stallman.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x2_super_saturn_2.png b/mods/paintings_gallery/textures/paintings_gallery_2x2_super_saturn_2.png new file mode 100644 index 00000000..d7c6eedd Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x2_super_saturn_2.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x2_the_walk.png b/mods/paintings_gallery/textures/paintings_gallery_2x2_the_walk.png new file mode 100644 index 00000000..a99e6628 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x2_the_walk.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x2_tree_3.png b/mods/paintings_gallery/textures/paintings_gallery_2x2_tree_3.png new file mode 100644 index 00000000..7889b55d Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x2_tree_3.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x2_utah.png b/mods/paintings_gallery/textures/paintings_gallery_2x2_utah.png new file mode 100644 index 00000000..9f87c69e Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x2_utah.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x2_war_unicorn.png b/mods/paintings_gallery/textures/paintings_gallery_2x2_war_unicorn.png new file mode 100644 index 00000000..524f505d Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x2_war_unicorn.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x2_waterfall_6.png b/mods/paintings_gallery/textures/paintings_gallery_2x2_waterfall_6.png new file mode 100644 index 00000000..66553c9a Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x2_waterfall_6.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_2x2_wildfire.png b/mods/paintings_gallery/textures/paintings_gallery_2x2_wildfire.png new file mode 100644 index 00000000..eb08bfc0 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_2x2_wildfire.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x2_billboard.png b/mods/paintings_gallery/textures/paintings_gallery_3x2_billboard.png new file mode 100644 index 00000000..034ed135 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x2_billboard.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x2_car_8.png b/mods/paintings_gallery/textures/paintings_gallery_3x2_car_8.png new file mode 100644 index 00000000..bd1d8210 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x2_car_8.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x2_car_9.png b/mods/paintings_gallery/textures/paintings_gallery_3x2_car_9.png new file mode 100644 index 00000000..68a682a2 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x2_car_9.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x2_dangerous_seas.png b/mods/paintings_gallery/textures/paintings_gallery_3x2_dangerous_seas.png new file mode 100644 index 00000000..61ddd25d Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x2_dangerous_seas.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x2_future_ruins.png b/mods/paintings_gallery/textures/paintings_gallery_3x2_future_ruins.png new file mode 100644 index 00000000..c99f47ed Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x2_future_ruins.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x2_galaxy.png b/mods/paintings_gallery/textures/paintings_gallery_3x2_galaxy.png new file mode 100644 index 00000000..f97f4e04 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x2_galaxy.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x2_japan.png b/mods/paintings_gallery/textures/paintings_gallery_3x2_japan.png new file mode 100644 index 00000000..2c85754d Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x2_japan.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x2_skull_sea.png b/mods/paintings_gallery/textures/paintings_gallery_3x2_skull_sea.png new file mode 100644 index 00000000..9b234c08 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x2_skull_sea.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x2_solar_flare.png b/mods/paintings_gallery/textures/paintings_gallery_3x2_solar_flare.png new file mode 100644 index 00000000..56c4147f Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x2_solar_flare.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x2_space_machine.png b/mods/paintings_gallery/textures/paintings_gallery_3x2_space_machine.png new file mode 100644 index 00000000..bba266c2 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x2_space_machine.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x2_the_lake.png b/mods/paintings_gallery/textures/paintings_gallery_3x2_the_lake.png new file mode 100644 index 00000000..1949a995 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x2_the_lake.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x2_wolf.png b/mods/paintings_gallery/textures/paintings_gallery_3x2_wolf.png new file mode 100644 index 00000000..3ed502d1 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x2_wolf.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_baroque_cyborg_2.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_baroque_cyborg_2.png new file mode 100644 index 00000000..000ef482 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_baroque_cyborg_2.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_battle_2.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_battle_2.png new file mode 100644 index 00000000..1be95f40 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_battle_2.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_blue_vase_3.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_blue_vase_3.png new file mode 100644 index 00000000..3fee4ca0 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_blue_vase_3.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_bridge.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_bridge.png new file mode 100644 index 00000000..3295c412 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_bridge.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_cello_4.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_cello_4.png new file mode 100644 index 00000000..014a3596 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_cello_4.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_circuit_city.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_circuit_city.png new file mode 100644 index 00000000..5a5ee68d Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_circuit_city.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_civilization.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_civilization.png new file mode 100644 index 00000000..31388dd0 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_civilization.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_corgi.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_corgi.png new file mode 100644 index 00000000..febdd879 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_corgi.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_fantasy_forest.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_fantasy_forest.png new file mode 100644 index 00000000..615f82aa Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_fantasy_forest.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_fire_elk.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_fire_elk.png new file mode 100644 index 00000000..a68022c3 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_fire_elk.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_fire_mage.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_fire_mage.png new file mode 100644 index 00000000..f49b1235 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_fire_mage.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_flamingo.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_flamingo.png new file mode 100644 index 00000000..11a823e8 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_flamingo.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_gooseberry.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_gooseberry.png new file mode 100644 index 00000000..073f6c0f Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_gooseberry.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_gundam.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_gundam.png new file mode 100644 index 00000000..62b57aa1 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_gundam.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_japan_4.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_japan_4.png new file mode 100644 index 00000000..079f02af Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_japan_4.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_japan_6.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_japan_6.png new file mode 100644 index 00000000..0a08228b Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_japan_6.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_map.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_map.png new file mode 100644 index 00000000..79bed4da Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_map.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_meerkat.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_meerkat.png new file mode 100644 index 00000000..352c85b6 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_meerkat.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_metal_skull.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_metal_skull.png new file mode 100644 index 00000000..0dcc9e64 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_metal_skull.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_mother_nature.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_mother_nature.png new file mode 100644 index 00000000..bdc3dfb2 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_mother_nature.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_mountain_2.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_mountain_2.png new file mode 100644 index 00000000..304be90b Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_mountain_2.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_natural_room.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_natural_room.png new file mode 100644 index 00000000..2c35cbf1 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_natural_room.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_os.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_os.png new file mode 100644 index 00000000..bd06cb9a Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_os.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_otherworld.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_otherworld.png new file mode 100644 index 00000000..c74b89bd Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_otherworld.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_parrot.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_parrot.png new file mode 100644 index 00000000..e82d8f3e Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_parrot.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_portal.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_portal.png new file mode 100644 index 00000000..46a8c674 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_portal.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_portrait.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_portrait.png new file mode 100644 index 00000000..a6f98906 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_portrait.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_samurai.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_samurai.png new file mode 100644 index 00000000..f00f84d3 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_samurai.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_sea_god.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_sea_god.png new file mode 100644 index 00000000..a3adab76 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_sea_god.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_seafloor_2.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_seafloor_2.png new file mode 100644 index 00000000..9a6168f5 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_seafloor_2.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_shave_robot.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_shave_robot.png new file mode 100644 index 00000000..c344694b Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_shave_robot.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_shipwreck.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_shipwreck.png new file mode 100644 index 00000000..df3e8586 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_shipwreck.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_shipwreck_2.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_shipwreck_2.png new file mode 100644 index 00000000..9ba8f55f Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_shipwreck_2.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_skull_roses.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_skull_roses.png new file mode 100644 index 00000000..bd17c372 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_skull_roses.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_skull_roses_2.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_skull_roses_2.png new file mode 100644 index 00000000..15d47fb3 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_skull_roses_2.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_stallman_2.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_stallman_2.png new file mode 100644 index 00000000..0a0fb819 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_stallman_2.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_stone_carving.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_stone_carving.png new file mode 100644 index 00000000..8630991f Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_stone_carving.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_sunrise.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_sunrise.png new file mode 100644 index 00000000..a8f2faa8 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_sunrise.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_tank_top.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_tank_top.png new file mode 100644 index 00000000..adc8f4a7 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_tank_top.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_touch_it.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_touch_it.png new file mode 100644 index 00000000..7eb4d501 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_touch_it.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_tree.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_tree.png new file mode 100644 index 00000000..dcaf4f6c Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_tree.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_war_unicorn_2.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_war_unicorn_2.png new file mode 100644 index 00000000..6813f94f Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_war_unicorn_2.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_wolf_2.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_wolf_2.png new file mode 100644 index 00000000..79453827 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_wolf_2.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_xenos_mechanica.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_xenos_mechanica.png new file mode 100644 index 00000000..a72656c4 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_xenos_mechanica.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_3x3_yggdrasil.png b/mods/paintings_gallery/textures/paintings_gallery_3x3_yggdrasil.png new file mode 100644 index 00000000..416dfff8 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_3x3_yggdrasil.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x2_canada.png b/mods/paintings_gallery/textures/paintings_gallery_4x2_canada.png new file mode 100644 index 00000000..8a2b7526 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x2_canada.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x2_car.png b/mods/paintings_gallery/textures/paintings_gallery_4x2_car.png new file mode 100644 index 00000000..f7a4ceda Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x2_car.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x2_car_5.png b/mods/paintings_gallery/textures/paintings_gallery_4x2_car_5.png new file mode 100644 index 00000000..dc1a5a78 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x2_car_5.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x2_civilization_3.png b/mods/paintings_gallery/textures/paintings_gallery_4x2_civilization_3.png new file mode 100644 index 00000000..52b97616 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x2_civilization_3.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x2_civilization_4.png b/mods/paintings_gallery/textures/paintings_gallery_4x2_civilization_4.png new file mode 100644 index 00000000..20cb9830 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x2_civilization_4.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x2_cube.png b/mods/paintings_gallery/textures/paintings_gallery_4x2_cube.png new file mode 100644 index 00000000..f530f7de Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x2_cube.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x2_japan_2.png b/mods/paintings_gallery/textures/paintings_gallery_4x2_japan_2.png new file mode 100644 index 00000000..31125bd6 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x2_japan_2.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x2_japan_5.png b/mods/paintings_gallery/textures/paintings_gallery_4x2_japan_5.png new file mode 100644 index 00000000..52517779 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x2_japan_5.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x2_leaves.png b/mods/paintings_gallery/textures/paintings_gallery_4x2_leaves.png new file mode 100644 index 00000000..92186cc4 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x2_leaves.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x2_mountain_landscape_2.png b/mods/paintings_gallery/textures/paintings_gallery_4x2_mountain_landscape_2.png new file mode 100644 index 00000000..2167e99c Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x2_mountain_landscape_2.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x2_ruins.png b/mods/paintings_gallery/textures/paintings_gallery_4x2_ruins.png new file mode 100644 index 00000000..7bc2659b Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x2_ruins.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x2_sunset_shore.png b/mods/paintings_gallery/textures/paintings_gallery_4x2_sunset_shore.png new file mode 100644 index 00000000..d864fada Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x2_sunset_shore.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x2_waterfall_5.png b/mods/paintings_gallery/textures/paintings_gallery_4x2_waterfall_5.png new file mode 100644 index 00000000..7a1354b6 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x2_waterfall_5.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x3_alley.png b/mods/paintings_gallery/textures/paintings_gallery_4x3_alley.png new file mode 100644 index 00000000..6de60d4d Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x3_alley.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x3_autumn.png b/mods/paintings_gallery/textures/paintings_gallery_4x3_autumn.png new file mode 100644 index 00000000..bdd601ee Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x3_autumn.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x3_car_2.png b/mods/paintings_gallery/textures/paintings_gallery_4x3_car_2.png new file mode 100644 index 00000000..3e7b9263 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x3_car_2.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x3_car_6.png b/mods/paintings_gallery/textures/paintings_gallery_4x3_car_6.png new file mode 100644 index 00000000..226c1f72 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x3_car_6.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x3_civilization_2.png b/mods/paintings_gallery/textures/paintings_gallery_4x3_civilization_2.png new file mode 100644 index 00000000..c1556fab Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x3_civilization_2.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x3_coral.png b/mods/paintings_gallery/textures/paintings_gallery_4x3_coral.png new file mode 100644 index 00000000..f714b5d8 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x3_coral.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x3_dragon.png b/mods/paintings_gallery/textures/paintings_gallery_4x3_dragon.png new file mode 100644 index 00000000..03a4d069 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x3_dragon.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x3_dust_storm.png b/mods/paintings_gallery/textures/paintings_gallery_4x3_dust_storm.png new file mode 100644 index 00000000..b1c30109 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x3_dust_storm.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x3_eiffel_aurora.png b/mods/paintings_gallery/textures/paintings_gallery_4x3_eiffel_aurora.png new file mode 100644 index 00000000..fef04cb5 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x3_eiffel_aurora.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x3_harbour.png b/mods/paintings_gallery/textures/paintings_gallery_4x3_harbour.png new file mode 100644 index 00000000..b3e500b8 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x3_harbour.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x3_japan_3.png b/mods/paintings_gallery/textures/paintings_gallery_4x3_japan_3.png new file mode 100644 index 00000000..a3fb6434 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x3_japan_3.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x3_mountain_3.png b/mods/paintings_gallery/textures/paintings_gallery_4x3_mountain_3.png new file mode 100644 index 00000000..d033851e Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x3_mountain_3.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x3_neon_city.png b/mods/paintings_gallery/textures/paintings_gallery_4x3_neon_city.png new file mode 100644 index 00000000..d0e2c713 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x3_neon_city.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x3_neon_planets.png b/mods/paintings_gallery/textures/paintings_gallery_4x3_neon_planets.png new file mode 100644 index 00000000..1567da28 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x3_neon_planets.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x3_pyramid.png b/mods/paintings_gallery/textures/paintings_gallery_4x3_pyramid.png new file mode 100644 index 00000000..8944d35c Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x3_pyramid.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x3_starry_city.png b/mods/paintings_gallery/textures/paintings_gallery_4x3_starry_city.png new file mode 100644 index 00000000..1edf03f1 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x3_starry_city.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x3_still_life.png b/mods/paintings_gallery/textures/paintings_gallery_4x3_still_life.png new file mode 100644 index 00000000..beaee16c Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x3_still_life.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x3_tv_portal.png b/mods/paintings_gallery/textures/paintings_gallery_4x3_tv_portal.png new file mode 100644 index 00000000..ca62de31 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x3_tv_portal.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x3_village.png b/mods/paintings_gallery/textures/paintings_gallery_4x3_village.png new file mode 100644 index 00000000..8c32b3f0 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x3_village.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x3_waterfall_4.png b/mods/paintings_gallery/textures/paintings_gallery_4x3_waterfall_4.png new file mode 100644 index 00000000..cb1ec7da Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x3_waterfall_4.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x4_car_3.png b/mods/paintings_gallery/textures/paintings_gallery_4x4_car_3.png new file mode 100644 index 00000000..f9e4151e Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x4_car_3.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x4_car_4.png b/mods/paintings_gallery/textures/paintings_gallery_4x4_car_4.png new file mode 100644 index 00000000..13d2d96d Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x4_car_4.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x4_cello_5.png b/mods/paintings_gallery/textures/paintings_gallery_4x4_cello_5.png new file mode 100644 index 00000000..31c97fdf Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x4_cello_5.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x4_city_lights.png b/mods/paintings_gallery/textures/paintings_gallery_4x4_city_lights.png new file mode 100644 index 00000000..c6e22e66 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x4_city_lights.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x4_cyberpunk.png b/mods/paintings_gallery/textures/paintings_gallery_4x4_cyberpunk.png new file mode 100644 index 00000000..ffa92412 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x4_cyberpunk.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x4_depot.png b/mods/paintings_gallery/textures/paintings_gallery_4x4_depot.png new file mode 100644 index 00000000..081bcaf8 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x4_depot.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x4_fishbowl_3.png b/mods/paintings_gallery/textures/paintings_gallery_4x4_fishbowl_3.png new file mode 100644 index 00000000..6174c8c8 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x4_fishbowl_3.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x4_fishbowl_4.png b/mods/paintings_gallery/textures/paintings_gallery_4x4_fishbowl_4.png new file mode 100644 index 00000000..6689abd9 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x4_fishbowl_4.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x4_galaxy_2.png b/mods/paintings_gallery/textures/paintings_gallery_4x4_galaxy_2.png new file mode 100644 index 00000000..f33145be Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x4_galaxy_2.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x4_general.png b/mods/paintings_gallery/textures/paintings_gallery_4x4_general.png new file mode 100644 index 00000000..2aee306a Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x4_general.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x4_gingerbread_house_2.png b/mods/paintings_gallery/textures/paintings_gallery_4x4_gingerbread_house_2.png new file mode 100644 index 00000000..de5bf153 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x4_gingerbread_house_2.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x4_hearthfire.png b/mods/paintings_gallery/textures/paintings_gallery_4x4_hearthfire.png new file mode 100644 index 00000000..94f22f54 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x4_hearthfire.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x4_intellectual.png b/mods/paintings_gallery/textures/paintings_gallery_4x4_intellectual.png new file mode 100644 index 00000000..062e85ba Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x4_intellectual.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x4_man.png b/mods/paintings_gallery/textures/paintings_gallery_4x4_man.png new file mode 100644 index 00000000..aa045ac2 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x4_man.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x4_map_2.png b/mods/paintings_gallery/textures/paintings_gallery_4x4_map_2.png new file mode 100644 index 00000000..c093f24c Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x4_map_2.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x4_map_3.png b/mods/paintings_gallery/textures/paintings_gallery_4x4_map_3.png new file mode 100644 index 00000000..83b482d9 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x4_map_3.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x4_map_5.png b/mods/paintings_gallery/textures/paintings_gallery_4x4_map_5.png new file mode 100644 index 00000000..21609499 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x4_map_5.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x4_metal_and_hope.png b/mods/paintings_gallery/textures/paintings_gallery_4x4_metal_and_hope.png new file mode 100644 index 00000000..59b13a30 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x4_metal_and_hope.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x4_mushroom_city.png b/mods/paintings_gallery/textures/paintings_gallery_4x4_mushroom_city.png new file mode 100644 index 00000000..d9dd7053 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x4_mushroom_city.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x4_parrot_2.png b/mods/paintings_gallery/textures/paintings_gallery_4x4_parrot_2.png new file mode 100644 index 00000000..3779a0bc Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x4_parrot_2.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x4_parrot_5.png b/mods/paintings_gallery/textures/paintings_gallery_4x4_parrot_5.png new file mode 100644 index 00000000..d9fe0962 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x4_parrot_5.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x4_pizza.png b/mods/paintings_gallery/textures/paintings_gallery_4x4_pizza.png new file mode 100644 index 00000000..122ff707 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x4_pizza.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x4_read.png b/mods/paintings_gallery/textures/paintings_gallery_4x4_read.png new file mode 100644 index 00000000..1fba0fbb Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x4_read.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x4_read_2.png b/mods/paintings_gallery/textures/paintings_gallery_4x4_read_2.png new file mode 100644 index 00000000..70ab1778 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x4_read_2.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x4_skeleton_flowers.png b/mods/paintings_gallery/textures/paintings_gallery_4x4_skeleton_flowers.png new file mode 100644 index 00000000..5c16a390 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x4_skeleton_flowers.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x4_steelrender.png b/mods/paintings_gallery/textures/paintings_gallery_4x4_steelrender.png new file mode 100644 index 00000000..5562cf60 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x4_steelrender.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x4_super_saturn.png b/mods/paintings_gallery/textures/paintings_gallery_4x4_super_saturn.png new file mode 100644 index 00000000..88edd59e Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x4_super_saturn.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x4_the_machine.png b/mods/paintings_gallery/textures/paintings_gallery_4x4_the_machine.png new file mode 100644 index 00000000..ae53315d Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x4_the_machine.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x4_the_surface.png b/mods/paintings_gallery/textures/paintings_gallery_4x4_the_surface.png new file mode 100644 index 00000000..1896f415 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x4_the_surface.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x4_the_walk_2.png b/mods/paintings_gallery/textures/paintings_gallery_4x4_the_walk_2.png new file mode 100644 index 00000000..d7f82c2d Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x4_the_walk_2.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x4_the_wreckage.png b/mods/paintings_gallery/textures/paintings_gallery_4x4_the_wreckage.png new file mode 100644 index 00000000..7289448b Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x4_the_wreckage.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x4_tree_4.png b/mods/paintings_gallery/textures/paintings_gallery_4x4_tree_4.png new file mode 100644 index 00000000..2debab83 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x4_tree_4.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x4_universe.png b/mods/paintings_gallery/textures/paintings_gallery_4x4_universe.png new file mode 100644 index 00000000..ec612c63 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x4_universe.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x4_war_unicorn_3.png b/mods/paintings_gallery/textures/paintings_gallery_4x4_war_unicorn_3.png new file mode 100644 index 00000000..9ff9c9b0 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x4_war_unicorn_3.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x4_waterfall_3.png b/mods/paintings_gallery/textures/paintings_gallery_4x4_waterfall_3.png new file mode 100644 index 00000000..871368fb Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x4_waterfall_3.png differ diff --git a/mods/paintings_gallery/textures/paintings_gallery_4x4_winter.png b/mods/paintings_gallery/textures/paintings_gallery_4x4_winter.png new file mode 100644 index 00000000..144fdf63 Binary files /dev/null and b/mods/paintings_gallery/textures/paintings_gallery_4x4_winter.png differ diff --git a/mods/paintings_lib/LICENSE b/mods/paintings_lib/LICENSE new file mode 100644 index 00000000..cc701608 --- /dev/null +++ b/mods/paintings_lib/LICENSE @@ -0,0 +1,20 @@ +Code +---- + +MIT License + +Copyright (c) 2023 JoeEnderman + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +Textures +-------- + +CC0 + +(C) 2023 JoeEnderman diff --git a/mods/paintings_lib/README.md b/mods/paintings_lib/README.md new file mode 100644 index 00000000..93027b8a --- /dev/null +++ b/mods/paintings_lib/README.md @@ -0,0 +1,4 @@ +# Paintings Library + +#### +Attempts to make it easy to add many paintings of various sizes. Now a paintbrush is included to cycle all paintings at random. You do not have to make your own painting recipes anymore if you do not want to. diff --git a/mods/paintings_lib/init.lua b/mods/paintings_lib/init.lua new file mode 100644 index 00000000..e107943c --- /dev/null +++ b/mods/paintings_lib/init.lua @@ -0,0 +1,99 @@ +-- Paintings Library + +paintings_lib = {} + +local default_path = minetest.get_modpath("paintings_lib") + +dofile(minetest.get_modpath("paintings_lib") .. "/register.lua") +dofile(minetest.get_modpath("paintings_lib") .. "/paintings.lua") + +-- Global variable to hold the list of painting nodes +local painting_nodes = {} + +-- Function to populate the painting nodes list +local function populate_painting_nodes() + for name, def in pairs(minetest.registered_nodes) do + if def.groups.painting then + table.insert(painting_nodes, name) + end + end +end + +-- Register the function to be called after all mods have loaded +minetest.register_on_mods_loaded(populate_painting_nodes) + +-- Call the function to populate the list at server start +populate_painting_nodes() + +-- Retrieve the number of uses from settings +local paintbrush_uses = tonumber(minetest.settings:get("paintings_lib_paintbrush_uses")) or 32 + +-- Register the paintbrush tool +minetest.register_tool("paintings_lib:paintbrush", { + description = "Paintbrush", + inventory_image = "paintings_lib_paintbrush.png", + wield_image = "paintings_lib_paintbrush.png^[transformFX" +}) + +-- Function to swap the node and wear out the paintbrush +local function swap_node(pos, node, clicker) + local wielded_item = clicker:get_wielded_item() + if wielded_item:get_name() ~= "paintings_lib:paintbrush" then + return + end + + if #painting_nodes > 0 then + local new_node_name = node.name + local attempts = 0 + -- Loop until a different painting is found or after 10 attempts + while new_node_name == node.name and attempts < 10 do + new_node_name = painting_nodes[math.random(#painting_nodes)] + attempts = attempts + 1 + end + + if new_node_name ~= node.name then + minetest.swap_node(pos, {name = new_node_name}) + -- Adding wear to the paintbrush + wielded_item:add_wear(65535 / paintbrush_uses) + clicker:set_wielded_item(wielded_item) + end + end +end + +-- Override the on_rightclick for nodes in the "painting" group +minetest.register_on_punchnode(function(pos, node, clicker, pointed_thing) + if minetest.get_item_group(node.name, "painting") > 0 then + swap_node(pos, node, clicker) + end +end) + + +-- Crafting recipe to 'refill' the paintbrush +minetest.register_on_craft(function(itemstack, player, old_craft_grid, craft_inv) + local paintbrush_found, dye_found = false, false + + for _, item in ipairs(old_craft_grid) do + if item:get_name() == "paintings_lib:paintbrush" then + paintbrush_found = true + -- Fully repair the paintbrush + itemstack:add_wear(-65535) + end + if minetest.get_item_group(item:get_name(), "dye") > 0 then + dye_found = true + end + end + + if paintbrush_found and dye_found then + return itemstack + end +end) + +minetest.register_craft({ + type = "shapeless", + output = "paintings_lib:paintbrush", + recipe = { + "paintings_lib:paintbrush", + "group:dye", "group:dye", "group:dye", "group:dye", + "group:dye", "group:dye", "group:dye", "group:dye" + } +}) diff --git a/mods/paintings_lib/mod.conf b/mods/paintings_lib/mod.conf new file mode 100644 index 00000000..8c59c580 --- /dev/null +++ b/mods/paintings_lib/mod.conf @@ -0,0 +1,8 @@ +mod_name = paintings_lib +title = Paintings Library +description = A fast, sleek, modern painting API for Minetest Game, but optional support for other games. +depends = default +min_minetest_version = 5.3 +author = JoeEnderman +release = 22800 +name = paintings_lib diff --git a/mods/paintings_lib/models/paintings_lib_1x1.obj b/mods/paintings_lib/models/paintings_lib_1x1.obj new file mode 100644 index 00000000..e66dfcbb --- /dev/null +++ b/mods/paintings_lib/models/paintings_lib_1x1.obj @@ -0,0 +1,201 @@ +# Made in Blockbench 4.6.5 +mtllib paintings_lib_1x1.mtl + +o plane +v -0.5000000000000001 -0.5000000000000006 0.48437499999999994 +v -0.5000000000000001 0.49999999999999944 0.48437500000000105 +v 0.49999999999999994 -0.5000000000000006 0.48437500000000006 +v 0.49999999999999994 0.49999999999999944 0.48437500000000117 +vt 1 0 +vt 1 1 +vt 0 1 +vt 0 0 +vn 1.2246467991473532e-16 1.1102230246251565e-15 -1 +usemtl m_4c1b2dc4-031d-4436-e7f2-9f98428f4029 +f 1/1/1 2/2/1 4/3/1 3/4/1 +o cube +v -0.4375 0.4999999999999981 0.5000000000000039 +v -0.4375 0.49999999999999833 0.43750000000000383 +v -0.4375 -0.5000000000000019 0.5 +v -0.4375 -0.5000000000000017 0.4375 +v -0.5 0.4999999999999981 0.5000000000000039 +v -0.5 0.49999999999999833 0.43750000000000383 +v -0.5 -0.5000000000000019 0.5 +v -0.5 -0.5000000000000017 0.4375 +v 0.4375 -0.43750000000000194 0.5000000000000002 +v 0.4375 -0.43750000000000167 0.4375000000000002 +v 0.4375 -0.5000000000000019 0.5 +v 0.4375 -0.5000000000000017 0.4375 +v -0.4375 -0.43750000000000194 0.5000000000000002 +v -0.4375 -0.43750000000000167 0.4375000000000002 +v -0.4375 -0.5000000000000019 0.5 +v -0.4375 -0.5000000000000017 0.4375 +v 0.4375 0.4999999999999981 0.5000000000000039 +v 0.4375 0.49999999999999833 0.43750000000000383 +v 0.4375 0.4374999999999981 0.5000000000000036 +v 0.4375 0.43749999999999833 0.4375000000000036 +v -0.4375 0.4999999999999981 0.5000000000000039 +v -0.4375 0.49999999999999833 0.43750000000000383 +v -0.4375 0.4374999999999981 0.5000000000000036 +v -0.4375 0.43749999999999833 0.4375000000000036 +v 0.5 0.4999999999999981 0.5000000000000039 +v 0.5 0.49999999999999833 0.43750000000000383 +v 0.5 -0.5000000000000019 0.5 +v 0.5 -0.5000000000000017 0.4375 +v 0.4375 0.4999999999999981 0.5000000000000039 +v 0.4375 0.49999999999999833 0.43750000000000383 +v 0.4375 -0.5000000000000019 0.5 +v 0.4375 -0.5000000000000017 0.4375 +vt 0.0625 0 +vt 0.0625 1 +vt 0 1 +vt 0 0 +vt 0.0625 0 +vt 0.0625 1 +vt 0 1 +vt 0 0 +vt 0.9375 0.9375 +vt 0.9375 1 +vt 0.875 1 +vt 0.875 0.9375 +vt 0.9375 0 +vt 0.9375 0.0625 +vt 0.875 0.0625 +vt 0.875 0 +vt 1 0 +vt 1 1 +vt 0.9375 1 +vt 0.9375 0 +vt 1 0 +vt 1 1 +vt 0.9375 1 +vt 0.9375 0 +vt 0.9375 0.25 +vt 0.9375 0.3125 +vt 0.875 0.3125 +vt 0.875 0.25 +vt 0.125 0.25 +vt 0.125 0.3125 +vt 0.0625 0.3125 +vt 0.0625 0.25 +vt 0.9375 0.9375 +vt 0.9375 1 +vt 0.0625 1 +vt 0.0625 0.9375 +vt 0.9375 0.9375 +vt 0.9375 1 +vt 0.0625 1 +vt 0.0625 0.9375 +vt 0.9375 0 +vt 0.9375 0.0625 +vt 0.0625 0.0625 +vt 0.0625 0 +vt 0.9375 0 +vt 0.9375 0.0625 +vt 0.0625 0.0625 +vt 0.0625 0 +vt 0.0625 0.9375 +vt 0.0625 1 +vt 0 1 +vt 0 0.9375 +vt 1 0.9375 +vt 1 1 +vt 0.9375 1 +vt 0.9375 0.9375 +vt 0.9375 0 +vt 0.9375 0.0625 +vt 0.0625 0.0625 +vt 0.0625 0 +vt 0.9375 0 +vt 0.9375 0.0625 +vt 0.0625 0.0625 +vt 0.0625 0 +vt 0.9375 0.9375 +vt 0.9375 1 +vt 0.0625 1 +vt 0.0625 0.9375 +vt 0.9375 0.9375 +vt 0.9375 1 +vt 0.0625 1 +vt 0.0625 0.9375 +vt 1 0 +vt 1 1 +vt 0.9375 1 +vt 0.9375 0 +vt 1 0 +vt 1 1 +vt 0.9375 1 +vt 0.9375 0 +vt 0.125 0.9375 +vt 0.125 1 +vt 0.0625 1 +vt 0.0625 0.9375 +vt 0.125 0 +vt 0.125 0.0625 +vt 0.0625 0.0625 +vt 0.0625 0 +vt 0.0625 0 +vt 0.0625 1 +vt 0 1 +vt 0 0 +vt 0.0625 0 +vt 0.0625 1 +vt 0 1 +vt 0 0 +vn 1 0 0 +vn -1 0 0 +vn 0 1 3.844147222764605e-15 +vn 0 -1 -3.844147222764605e-15 +vn 0 -3.844147222764605e-15 1 +vn 0 3.844147222764605e-15 -1 +vn 1 0 0 +vn -1 0 0 +vn 0 1 3.844147222764605e-15 +vn 0 -1 -3.844147222764605e-15 +vn 0 -3.844147222764605e-15 1 +vn 0 3.844147222764605e-15 -1 +vn 1 0 0 +vn -1 0 0 +vn 0 1 3.844147222764605e-15 +vn 0 -1 -3.844147222764605e-15 +vn 0 -3.844147222764605e-15 1 +vn 0 3.844147222764605e-15 -1 +vn 1 0 0 +vn -1 0 0 +vn 0 1 3.844147222764605e-15 +vn 0 -1 -3.844147222764605e-15 +vn 0 -3.844147222764605e-15 1 +vn 0 3.844147222764605e-15 -1 +usemtl m_7dba1dae-c168-5bcf-bc95-42b33da22c59 +f 8/5/2 6/6/2 5/7/2 7/8/2 +f 11/9/3 9/10/3 10/11/3 12/12/3 +f 5/13/4 6/14/4 10/15/4 9/16/4 +usemtl none +f 8/17/5 7/18/5 11/19/5 12/20/5 +usemtl m_7dba1dae-c168-5bcf-bc95-42b33da22c59 +f 7/21/6 5/22/6 9/23/6 11/24/6 +f 12/25/7 10/26/7 6/27/7 8/28/7 +usemtl none +f 16/29/8 14/30/8 13/31/8 15/32/8 +f 19/33/9 17/34/9 18/35/9 20/36/9 +usemtl m_7dba1dae-c168-5bcf-bc95-42b33da22c59 +f 13/37/10 14/38/10 18/39/10 17/40/10 +f 16/41/11 15/42/11 19/43/11 20/44/11 +f 15/45/12 13/46/12 17/47/12 19/48/12 +f 20/49/13 18/50/13 14/51/13 16/52/13 +usemtl none +f 24/53/14 22/54/14 21/55/14 23/56/14 +f 27/57/15 25/58/15 26/59/15 28/60/15 +usemtl m_7dba1dae-c168-5bcf-bc95-42b33da22c59 +f 21/61/16 22/62/16 26/63/16 25/64/16 +f 24/65/17 23/66/17 27/67/17 28/68/17 +f 23/69/18 21/70/18 25/71/18 27/72/18 +f 28/73/19 26/74/19 22/75/19 24/76/19 +f 32/77/20 30/78/20 29/79/20 31/80/20 +f 35/81/21 33/82/21 34/83/21 36/84/21 +f 29/85/22 30/86/22 34/87/22 33/88/22 +usemtl none +f 32/89/23 31/90/23 35/91/23 36/92/23 +usemtl m_7dba1dae-c168-5bcf-bc95-42b33da22c59 +f 31/93/24 29/94/24 33/95/24 35/96/24 +f 36/97/25 34/98/25 30/99/25 32/100/25 \ No newline at end of file diff --git a/mods/paintings_lib/models/paintings_lib_1x2.obj b/mods/paintings_lib/models/paintings_lib_1x2.obj new file mode 100644 index 00000000..8029763e --- /dev/null +++ b/mods/paintings_lib/models/paintings_lib_1x2.obj @@ -0,0 +1,197 @@ +# Made in Blockbench 4.6.5 +mtllib paintings_lib_1x2.mtl + +o plane +v -0.49999999999999994 -1.5 0.48437500000000483 +v -0.5 0.5 0.48437499999999506 +v 0.5 -1.5 0.48437500000000494 +v 0.49999999999999994 0.5 0.48437499999999517 +vt 1 0 +vt 1 1 +vt 0 1 +vt 0 0 +vn 1.2246467991473535e-16 -4.884981308350689e-15 -1 +usemtl m_ddfb71ee-ec06-5006-487f-07f80884a370 +f 1/1/1 2/2/1 4/3/1 3/4/1 +o cube +v -0.4375 0.4375 0.5 +v -0.4375 0.4375 0.4375 +v -0.4375 -1.4375 0.5 +v -0.4375 -1.4375 0.4375 +v -0.5 0.4375 0.5 +v -0.5 0.4375 0.4375 +v -0.5 -1.4375 0.5 +v -0.5 -1.4375 0.4375 +v 0.5 -1.4375 0.5 +v 0.5 -1.4375 0.4375 +v 0.5 -1.5 0.5 +v 0.5 -1.5 0.4375 +v -0.5 -1.4375 0.5 +v -0.5 -1.4375 0.4375 +v -0.5 -1.5 0.5 +v -0.5 -1.5 0.4375 +v 0.5 0.5 0.5 +v 0.5 0.5 0.4375 +v 0.5 0.4375 0.5 +v 0.5 0.4375 0.4375 +v -0.5 0.5 0.5 +v -0.5 0.5 0.4375 +v -0.5 0.4375 0.5 +v -0.5 0.4375 0.4375 +v 0.5 0.4375 0.5 +v 0.5 0.4375 0.4375 +v 0.5 -1.4375 0.5 +v 0.5 -1.4375 0.4375 +v 0.4375 0.4375 0.5 +v 0.4375 0.4375 0.4375 +v 0.4375 -1.4375 0.5 +v 0.4375 -1.4375 0.4375 +vt 1 0.03125 +vt 1 0.96875 +vt 0.9375 0.96875 +vt 0.9375 0.03125 +vt 1 0.03125 +vt 1 0.96875 +vt 0.9375 0.96875 +vt 0.9375 0.03125 +vt 0.0625 0.96875 +vt 0.0625 1 +vt 0 1 +vt 0 0.96875 +vt 0.0625 0.96875 +vt 0.0625 1 +vt 0 1 +vt 0 0.96875 +vt 1 0.03125 +vt 1 0.96875 +vt 0.9375 0.96875 +vt 0.9375 0.03125 +vt 1 0.03125 +vt 1 0.96875 +vt 0.9375 0.96875 +vt 0.9375 0.03125 +vt 0.0625 0.96875 +vt 0.0625 1 +vt 0 1 +vt 0 0.96875 +vt 0.0625 0.96875 +vt 0.0625 1 +vt 0 1 +vt 0 0.96875 +vt 1 0 +vt 1 0.03125 +vt 0 0.03125 +vt 0 0 +vt 1 0 +vt 1 0.03125 +vt 0 0.03125 +vt 0 0 +vt 1 0 +vt 1 0.03125 +vt 0 0.03125 +vt 0 0 +vt 1 0 +vt 1 0.03125 +vt 0 0.03125 +vt 0 0 +vt 0.0625 0.96875 +vt 0.0625 1 +vt 0 1 +vt 0 0.96875 +vt 0.0625 0.96875 +vt 0.0625 1 +vt 0 1 +vt 0 0.96875 +vt 1 0.96875 +vt 1 1 +vt 0 1 +vt 0 0.96875 +vt 1 0.96875 +vt 1 1 +vt 0 1 +vt 0 0.96875 +vt 1 0.96875 +vt 1 1 +vt 0 1 +vt 0 0.96875 +vt 1 0.96875 +vt 1 1 +vt 0 1 +vt 0 0.96875 +vt 0.0625 0.03125 +vt 0.0625 0.96875 +vt 0 0.96875 +vt 0 0.03125 +vt 0.0625 0.03125 +vt 0.0625 0.96875 +vt 0 0.96875 +vt 0 0.03125 +vt 0.0625 0.96875 +vt 0.0625 1 +vt 0 1 +vt 0 0.96875 +vt 0.0625 0.96875 +vt 0.0625 1 +vt 0 1 +vt 0 0.96875 +vt 0.0625 0.03125 +vt 0.0625 0.96875 +vt 0 0.96875 +vt 0 0.03125 +vt 0.0625 0.03125 +vt 0.0625 0.96875 +vt 0 0.96875 +vt 0 0.03125 +vn 1 0 0 +vn -1 0 0 +vn 0 1 0 +vn 0 -1 0 +vn 0 0 1 +vn 0 0 -1 +vn 1 0 0 +vn -1 0 0 +vn 0 1 0 +vn 0 -1 0 +vn 0 0 1 +vn 0 0 -1 +vn 1 0 0 +vn -1 0 0 +vn 0 1 0 +vn 0 -1 0 +vn 0 0 1 +vn 0 0 -1 +vn 1 0 0 +vn -1 0 0 +vn 0 1 0 +vn 0 -1 0 +vn 0 0 1 +vn 0 0 -1 +usemtl m_0cb95888-a2d2-f45b-9acd-b009709b9459 +f 8/5/2 6/6/2 5/7/2 7/8/2 +f 11/9/3 9/10/3 10/11/3 12/12/3 +usemtl none +f 5/13/4 6/14/4 10/15/4 9/16/4 +f 8/17/5 7/18/5 11/19/5 12/20/5 +usemtl m_0cb95888-a2d2-f45b-9acd-b009709b9459 +f 7/21/6 5/22/6 9/23/6 11/24/6 +f 12/25/7 10/26/7 6/27/7 8/28/7 +f 16/29/8 14/30/8 13/31/8 15/32/8 +f 19/33/9 17/34/9 18/35/9 20/36/9 +f 13/37/10 14/38/10 18/39/10 17/40/10 +f 16/41/11 15/42/11 19/43/11 20/44/11 +f 15/45/12 13/46/12 17/47/12 19/48/12 +f 20/49/13 18/50/13 14/51/13 16/52/13 +f 24/53/14 22/54/14 21/55/14 23/56/14 +f 27/57/15 25/58/15 26/59/15 28/60/15 +f 21/61/16 22/62/16 26/63/16 25/64/16 +f 24/65/17 23/66/17 27/67/17 28/68/17 +f 23/69/18 21/70/18 25/71/18 27/72/18 +f 28/73/19 26/74/19 22/75/19 24/76/19 +f 32/77/20 30/78/20 29/79/20 31/80/20 +f 35/81/21 33/82/21 34/83/21 36/84/21 +usemtl none +f 29/85/22 30/86/22 34/87/22 33/88/22 +f 32/89/23 31/90/23 35/91/23 36/92/23 +usemtl m_0cb95888-a2d2-f45b-9acd-b009709b9459 +f 31/93/24 29/94/24 33/95/24 35/96/24 +f 36/97/25 34/98/25 30/99/25 32/100/25 \ No newline at end of file diff --git a/mods/paintings_lib/models/paintings_lib_2x1.obj b/mods/paintings_lib/models/paintings_lib_2x1.obj new file mode 100644 index 00000000..c001f9d6 --- /dev/null +++ b/mods/paintings_lib/models/paintings_lib_2x1.obj @@ -0,0 +1,197 @@ +# Made in Blockbench 4.6.5 +mtllib paintings_lib_2x1.mtl + +o plane +v -1.5 -0.4999999999999979 0.4843749999999998 +v -1.5 0.5000000000000022 0.4843749999999958 +v 0.49999999999999994 -0.4999999999999978 0.4843750000000001 +v 0.4999999999999999 0.5000000000000022 0.4843749999999961 +vt 1 0 +vt 1 1 +vt 0 1 +vt 0 0 +vn 1.2246467991473532e-16 -3.9968028886505635e-15 -1 +usemtl m_2b19c736-5a6e-d890-37e6-0cadeccb4430 +f 1/1/1 2/2/1 4/3/1 3/4/1 +o cube +v -1.4375 0.5 0.5 +v -1.4375 0.5 0.4375 +v -1.4375 -0.5 0.5 +v -1.4375 -0.5 0.4375 +v -1.5 0.5 0.5 +v -1.5 0.5 0.4375 +v -1.5 -0.5 0.5 +v -1.5 -0.5 0.4375 +v 0.4375 -0.4375 0.5 +v 0.4375 -0.4375 0.4375 +v 0.4375 -0.5 0.5 +v 0.4375 -0.5 0.4375 +v -1.4375 -0.4375 0.5 +v -1.4375 -0.4375 0.4375 +v -1.4375 -0.5 0.5 +v -1.4375 -0.5 0.4375 +v 0.4375 0.5 0.5 +v 0.4375 0.5 0.4375 +v 0.4375 0.4375 0.5 +v 0.4375 0.4375 0.4375 +v -1.4375 0.5 0.5 +v -1.4375 0.5 0.4375 +v -1.4375 0.4375 0.5 +v -1.4375 0.4375 0.4375 +v 0.5 0.5 0.5 +v 0.5 0.5 0.4375 +v 0.5 -0.5 0.5 +v 0.5 -0.5 0.4375 +v 0.4375 0.5 0.5 +v 0.4375 0.5 0.4375 +v 0.4375 -0.5 0.5 +v 0.4375 -0.5 0.4375 +vt 0.03125 0 +vt 0.03125 1 +vt 0 1 +vt 0 0 +vt 0.03125 0 +vt 0.03125 1 +vt 0 1 +vt 0 0 +vt 0.03125 0.9375 +vt 0.03125 1 +vt 0 1 +vt 0 0.9375 +vt 0.03125 0.9375 +vt 0.03125 1 +vt 0 1 +vt 0 0.9375 +vt 0.03125 0 +vt 0.03125 1 +vt 0 1 +vt 0 0 +vt 0.03125 0 +vt 0.03125 1 +vt 0 1 +vt 0 0 +vt 0.03125 0.9375 +vt 0.03125 1 +vt 0 1 +vt 0 0.9375 +vt 0.03125 0.9375 +vt 0.03125 1 +vt 0 1 +vt 0 0.9375 +vt 0.96875 0 +vt 0.96875 0.0625 +vt 0.03125 0.0625 +vt 0.03125 0 +vt 0.96875 0 +vt 0.96875 0.0625 +vt 0.03125 0.0625 +vt 0.03125 0 +vt 0.96875 0 +vt 0.96875 0.0625 +vt 0.03125 0.0625 +vt 0.03125 0 +vt 0.96875 0 +vt 0.96875 0.0625 +vt 0.03125 0.0625 +vt 0.03125 0 +vt 0.03125 0.9375 +vt 0.03125 1 +vt 0 1 +vt 0 0.9375 +vt 0.03125 0.9375 +vt 0.03125 1 +vt 0 1 +vt 0 0.9375 +vt 0.96875 0.9375 +vt 0.96875 1 +vt 0.03125 1 +vt 0.03125 0.9375 +vt 0.96875 0.9375 +vt 0.96875 1 +vt 0.03125 1 +vt 0.03125 0.9375 +vt 0.96875 0.9375 +vt 0.96875 1 +vt 0.03125 1 +vt 0.03125 0.9375 +vt 0.96875 0.9375 +vt 0.96875 1 +vt 0.03125 1 +vt 0.03125 0.9375 +vt 0.03125 0 +vt 0.03125 1 +vt 0 1 +vt 0 0 +vt 0.03125 0 +vt 0.03125 1 +vt 0 1 +vt 0 0 +vt 0.03125 0.9375 +vt 0.03125 1 +vt 0 1 +vt 0 0.9375 +vt 0.03125 0.9375 +vt 0.03125 1 +vt 0 1 +vt 0 0.9375 +vt 0.03125 0 +vt 0.03125 1 +vt 0 1 +vt 0 0 +vt 0.03125 0 +vt 0.03125 1 +vt 0 1 +vt 0 0 +vn 1 0 0 +vn -1 0 0 +vn 0 1 0 +vn 0 -1 0 +vn 0 0 1 +vn 0 0 -1 +vn 1 0 0 +vn -1 0 0 +vn 0 1 0 +vn 0 -1 0 +vn 0 0 1 +vn 0 0 -1 +vn 1 0 0 +vn -1 0 0 +vn 0 1 0 +vn 0 -1 0 +vn 0 0 1 +vn 0 0 -1 +vn 1 0 0 +vn -1 0 0 +vn 0 1 0 +vn 0 -1 0 +vn 0 0 1 +vn 0 0 -1 +usemtl m_0e9c98b3-0f02-a20f-b424-3f2a79972999 +f 8/5/2 6/6/2 5/7/2 7/8/2 +f 11/9/3 9/10/3 10/11/3 12/12/3 +f 5/13/4 6/14/4 10/15/4 9/16/4 +f 8/17/5 7/18/5 11/19/5 12/20/5 +f 7/21/6 5/22/6 9/23/6 11/24/6 +f 12/25/7 10/26/7 6/27/7 8/28/7 +usemtl none +f 16/29/8 14/30/8 13/31/8 15/32/8 +f 19/33/9 17/34/9 18/35/9 20/36/9 +usemtl m_0e9c98b3-0f02-a20f-b424-3f2a79972999 +f 13/37/10 14/38/10 18/39/10 17/40/10 +f 16/41/11 15/42/11 19/43/11 20/44/11 +f 15/45/12 13/46/12 17/47/12 19/48/12 +f 20/49/13 18/50/13 14/51/13 16/52/13 +usemtl none +f 24/53/14 22/54/14 21/55/14 23/56/14 +f 27/57/15 25/58/15 26/59/15 28/60/15 +usemtl m_0e9c98b3-0f02-a20f-b424-3f2a79972999 +f 21/61/16 22/62/16 26/63/16 25/64/16 +f 24/65/17 23/66/17 27/67/17 28/68/17 +f 23/69/18 21/70/18 25/71/18 27/72/18 +f 28/73/19 26/74/19 22/75/19 24/76/19 +f 32/77/20 30/78/20 29/79/20 31/80/20 +f 35/81/21 33/82/21 34/83/21 36/84/21 +f 29/85/22 30/86/22 34/87/22 33/88/22 +f 32/89/23 31/90/23 35/91/23 36/92/23 +f 31/93/24 29/94/24 33/95/24 35/96/24 +f 36/97/25 34/98/25 30/99/25 32/100/25 \ No newline at end of file diff --git a/mods/paintings_lib/models/paintings_lib_2x2.obj b/mods/paintings_lib/models/paintings_lib_2x2.obj new file mode 100644 index 00000000..f7859955 --- /dev/null +++ b/mods/paintings_lib/models/paintings_lib_2x2.obj @@ -0,0 +1,197 @@ +# Made in Blockbench 4.6.5 +mtllib paintings_lib_2x2.mtl + +o plane +v -1.5 -1.4999999999999976 0.48437499999999983 +v -1.5 0.5000000000000022 0.48437499999999006 +v 0.49999999999999994 -1.4999999999999976 0.48437500000000006 +v 0.5 0.5000000000000022 0.4843749999999903 +vt 1 0 +vt 1 1 +vt 0 1 +vt 0 0 +vn 1.224646799147353e-16 -4.884981308350689e-15 -1 +usemtl m_3f916035-1b89-081b-faf2-171bc6a864ac +f 1/1/1 2/2/1 4/3/1 3/4/1 +o cube +v -1.4375 0.4375 0.5 +v -1.4375 0.4375 0.4375 +v -1.4375 -1.4375 0.5 +v -1.4375 -1.4375 0.4375 +v -1.5 0.4375 0.5 +v -1.5 0.4375 0.4375 +v -1.5 -1.4375 0.5 +v -1.5 -1.4375 0.4375 +v 0.5 -1.4375 0.5 +v 0.5 -1.4375 0.4375 +v 0.5 -1.5 0.5 +v 0.5 -1.5 0.4375 +v -1.5 -1.4375 0.5 +v -1.5 -1.4375 0.4375 +v -1.5 -1.5 0.5 +v -1.5 -1.5 0.4375 +v 0.5 0.5 0.5 +v 0.5 0.5 0.4375 +v 0.5 0.4375 0.5 +v 0.5 0.4375 0.4375 +v -1.5 0.5 0.5 +v -1.5 0.5 0.4375 +v -1.5 0.4375 0.5 +v -1.5 0.4375 0.4375 +v 0.5 0.4375 0.5 +v 0.5 0.4375 0.4375 +v 0.5 -1.4375 0.5 +v 0.5 -1.4375 0.4375 +v 0.4375 0.4375 0.5 +v 0.4375 0.4375 0.4375 +v 0.4375 -1.4375 0.5 +v 0.4375 -1.4375 0.4375 +vt 1 0.03125 +vt 1 0.96875 +vt 0.96875 0.96875 +vt 0.96875 0.03125 +vt 1 0.03125 +vt 1 0.96875 +vt 0.96875 0.96875 +vt 0.96875 0.03125 +vt 0.03125 0.96875 +vt 0.03125 1 +vt 0 1 +vt 0 0.96875 +vt 0.03125 0.96875 +vt 0.03125 1 +vt 0 1 +vt 0 0.96875 +vt 1 0.03125 +vt 1 0.96875 +vt 0.96875 0.96875 +vt 0.96875 0.03125 +vt 1 0.03125 +vt 1 0.96875 +vt 0.96875 0.96875 +vt 0.96875 0.03125 +vt 0.03125 0.96875 +vt 0.03125 1 +vt 0 1 +vt 0 0.96875 +vt 0.03125 0.96875 +vt 0.03125 1 +vt 0 1 +vt 0 0.96875 +vt 1 0 +vt 1 0.03125 +vt 0 0.03125 +vt 0 0 +vt 1 0 +vt 1 0.03125 +vt 0 0.03125 +vt 0 0 +vt 1 0 +vt 1 0.03125 +vt 0 0.03125 +vt 0 0 +vt 1 0 +vt 1 0.03125 +vt 0 0.03125 +vt 0 0 +vt 0.03125 0.96875 +vt 0.03125 1 +vt 0 1 +vt 0 0.96875 +vt 0.03125 0.96875 +vt 0.03125 1 +vt 0 1 +vt 0 0.96875 +vt 1 0.96875 +vt 1 1 +vt 0 1 +vt 0 0.96875 +vt 1 0.96875 +vt 1 1 +vt 0 1 +vt 0 0.96875 +vt 1 0.96875 +vt 1 1 +vt 0 1 +vt 0 0.96875 +vt 1 0.96875 +vt 1 1 +vt 0 1 +vt 0 0.96875 +vt 0.03125 0.03125 +vt 0.03125 0.96875 +vt 0 0.96875 +vt 0 0.03125 +vt 0.03125 0.03125 +vt 0.03125 0.96875 +vt 0 0.96875 +vt 0 0.03125 +vt 0.03125 0.96875 +vt 0.03125 1 +vt 0 1 +vt 0 0.96875 +vt 0.03125 0.96875 +vt 0.03125 1 +vt 0 1 +vt 0 0.96875 +vt 0.03125 0.03125 +vt 0.03125 0.96875 +vt 0 0.96875 +vt 0 0.03125 +vt 0.03125 0.03125 +vt 0.03125 0.96875 +vt 0 0.96875 +vt 0 0.03125 +vn 1 0 0 +vn -1 0 0 +vn 0 1 0 +vn 0 -1 0 +vn 0 0 1 +vn 0 0 -1 +vn 1 0 0 +vn -1 0 0 +vn 0 1 0 +vn 0 -1 0 +vn 0 0 1 +vn 0 0 -1 +vn 1 0 0 +vn -1 0 0 +vn 0 1 0 +vn 0 -1 0 +vn 0 0 1 +vn 0 0 -1 +vn 1 0 0 +vn -1 0 0 +vn 0 1 0 +vn 0 -1 0 +vn 0 0 1 +vn 0 0 -1 +usemtl m_2142c269-0c1c-2795-f85e-99009cebff40 +f 8/5/2 6/6/2 5/7/2 7/8/2 +f 11/9/3 9/10/3 10/11/3 12/12/3 +usemtl none +f 5/13/4 6/14/4 10/15/4 9/16/4 +f 8/17/5 7/18/5 11/19/5 12/20/5 +usemtl m_2142c269-0c1c-2795-f85e-99009cebff40 +f 7/21/6 5/22/6 9/23/6 11/24/6 +f 12/25/7 10/26/7 6/27/7 8/28/7 +f 16/29/8 14/30/8 13/31/8 15/32/8 +f 19/33/9 17/34/9 18/35/9 20/36/9 +f 13/37/10 14/38/10 18/39/10 17/40/10 +f 16/41/11 15/42/11 19/43/11 20/44/11 +f 15/45/12 13/46/12 17/47/12 19/48/12 +f 20/49/13 18/50/13 14/51/13 16/52/13 +f 24/53/14 22/54/14 21/55/14 23/56/14 +f 27/57/15 25/58/15 26/59/15 28/60/15 +f 21/61/16 22/62/16 26/63/16 25/64/16 +f 24/65/17 23/66/17 27/67/17 28/68/17 +f 23/69/18 21/70/18 25/71/18 27/72/18 +f 28/73/19 26/74/19 22/75/19 24/76/19 +f 32/77/20 30/78/20 29/79/20 31/80/20 +f 35/81/21 33/82/21 34/83/21 36/84/21 +usemtl none +f 29/85/22 30/86/22 34/87/22 33/88/22 +f 32/89/23 31/90/23 35/91/23 36/92/23 +usemtl m_2142c269-0c1c-2795-f85e-99009cebff40 +f 31/93/24 29/94/24 33/95/24 35/96/24 +f 36/97/25 34/98/25 30/99/25 32/100/25 \ No newline at end of file diff --git a/mods/paintings_lib/models/paintings_lib_3x2.obj b/mods/paintings_lib/models/paintings_lib_3x2.obj new file mode 100644 index 00000000..d5bf9c8b --- /dev/null +++ b/mods/paintings_lib/models/paintings_lib_3x2.obj @@ -0,0 +1,197 @@ +# Made in Blockbench 4.6.5 +mtllib paintings_lib_3x2.mtl + +o plane +v -1.5 -1.4999999999999984 0.48437499999999983 +v -1.5 0.5000000000000018 0.48437499999999317 +v 1.5 -1.4999999999999984 0.48437500000000017 +v 1.5 0.5000000000000018 0.4843749999999935 +vt 1 0 +vt 1 1 +vt 0 1 +vt 0 0 +vn 1.2246467991473532e-16 -3.3306690738754696e-15 -1 +usemtl m_2153dcb0-d97e-0f31-b270-8c4745b2c2a6 +f 1/1/1 2/2/1 4/3/1 3/4/1 +o cube +v -1.4375 0.5 0.5 +v -1.4375 0.5 0.4375 +v -1.4375 -1.5 0.5 +v -1.4375 -1.5 0.4375 +v -1.5 0.5 0.5 +v -1.5 0.5 0.4375 +v -1.5 -1.5 0.5 +v -1.5 -1.5 0.4375 +v 1.4375 -1.4375 0.5 +v 1.4375 -1.4375 0.4375 +v 1.4375 -1.5 0.5 +v 1.4375 -1.5 0.4375 +v -1.4375 -1.4375 0.5 +v -1.4375 -1.4375 0.4375 +v -1.4375 -1.5 0.5 +v -1.4375 -1.5 0.4375 +v 1.4375 0.5 0.5 +v 1.4375 0.5 0.4375 +v 1.4375 0.4375 0.5 +v 1.4375 0.4375 0.4375 +v -1.4375 0.5 0.5 +v -1.4375 0.5 0.4375 +v -1.4375 0.4375 0.5 +v -1.4375 0.4375 0.4375 +v 1.5 0.5 0.5 +v 1.5 0.5 0.4375 +v 1.5 -1.5 0.5 +v 1.5 -1.5 0.4375 +v 1.4375 0.5 0.5 +v 1.4375 0.5 0.4375 +v 1.4375 -1.5 0.5 +v 1.4375 -1.5 0.4375 +vt 1 0 +vt 1 1 +vt 0.9791666666666666 1 +vt 0.9791666666666666 0 +vt 1 0 +vt 1 1 +vt 0.9791666666666666 1 +vt 0.9791666666666666 0 +vt 0.020833333333333332 0.96875 +vt 0.020833333333333332 1 +vt 0 1 +vt 0 0.96875 +vt 0.020833333333333332 0.96875 +vt 0.020833333333333332 1 +vt 0 1 +vt 0 0.96875 +vt 1 0 +vt 1 1 +vt 0.9791666666666666 1 +vt 0.9791666666666666 0 +vt 1 0 +vt 1 1 +vt 0.9791666666666666 1 +vt 0.9791666666666666 0 +vt 0.020833333333333332 0.96875 +vt 0.020833333333333332 1 +vt 0 1 +vt 0 0.96875 +vt 0.020833333333333332 0.96875 +vt 0.020833333333333332 1 +vt 0 1 +vt 0 0.96875 +vt 0.9791666666666666 0 +vt 0.9791666666666666 0.03125 +vt 0.020833333333333332 0.03125 +vt 0.020833333333333332 0 +vt 0.9791666666666666 0 +vt 0.9791666666666666 0.03125 +vt 0.020833333333333332 0.03125 +vt 0.020833333333333332 0 +vt 0.9791666666666666 0 +vt 0.9791666666666666 0.03125 +vt 0.020833333333333332 0.03125 +vt 0.020833333333333332 0 +vt 0.9791666666666666 0 +vt 0.9791666666666666 0.03125 +vt 0.020833333333333332 0.03125 +vt 0.020833333333333332 0 +vt 0.020833333333333332 0.96875 +vt 0.020833333333333332 1 +vt 0 1 +vt 0 0.96875 +vt 0.020833333333333332 0.96875 +vt 0.020833333333333332 1 +vt 0 1 +vt 0 0.96875 +vt 0.9791666666666666 0.96875 +vt 0.9791666666666666 1 +vt 0.020833333333333332 1 +vt 0.020833333333333332 0.96875 +vt 0.9791666666666666 0.96875 +vt 0.9791666666666666 1 +vt 0.020833333333333332 1 +vt 0.020833333333333332 0.96875 +vt 0.9791666666666666 0.96875 +vt 0.9791666666666666 1 +vt 0.020833333333333332 1 +vt 0.020833333333333332 0.96875 +vt 0.9791666666666666 0.96875 +vt 0.9791666666666666 1 +vt 0.020833333333333332 1 +vt 0.020833333333333332 0.96875 +vt 0.020833333333333332 0 +vt 0.020833333333333332 1 +vt 0 1 +vt 0 0 +vt 0.020833333333333332 0 +vt 0.020833333333333332 1 +vt 0 1 +vt 0 0 +vt 0.020833333333333332 0.96875 +vt 0.020833333333333332 1 +vt 0 1 +vt 0 0.96875 +vt 0.020833333333333332 0.96875 +vt 0.020833333333333332 1 +vt 0 1 +vt 0 0.96875 +vt 0.020833333333333332 0 +vt 0.020833333333333332 1 +vt 0 1 +vt 0 0 +vt 0.020833333333333332 0 +vt 0.020833333333333332 1 +vt 0 1 +vt 0 0 +vn 1 0 0 +vn -1 0 0 +vn 0 1 0 +vn 0 -1 0 +vn 0 0 1 +vn 0 0 -1 +vn 1 0 0 +vn -1 0 0 +vn 0 1 0 +vn 0 -1 0 +vn 0 0 1 +vn 0 0 -1 +vn 1 0 0 +vn -1 0 0 +vn 0 1 0 +vn 0 -1 0 +vn 0 0 1 +vn 0 0 -1 +vn 1 0 0 +vn -1 0 0 +vn 0 1 0 +vn 0 -1 0 +vn 0 0 1 +vn 0 0 -1 +usemtl m_6b2a329c-1206-97be-c615-fa7a5d3d2d2c +f 8/5/2 6/6/2 5/7/2 7/8/2 +f 11/9/3 9/10/3 10/11/3 12/12/3 +f 5/13/4 6/14/4 10/15/4 9/16/4 +f 8/17/5 7/18/5 11/19/5 12/20/5 +f 7/21/6 5/22/6 9/23/6 11/24/6 +f 12/25/7 10/26/7 6/27/7 8/28/7 +usemtl none +f 16/29/8 14/30/8 13/31/8 15/32/8 +f 19/33/9 17/34/9 18/35/9 20/36/9 +usemtl m_6b2a329c-1206-97be-c615-fa7a5d3d2d2c +f 13/37/10 14/38/10 18/39/10 17/40/10 +f 16/41/11 15/42/11 19/43/11 20/44/11 +f 15/45/12 13/46/12 17/47/12 19/48/12 +f 20/49/13 18/50/13 14/51/13 16/52/13 +usemtl none +f 24/53/14 22/54/14 21/55/14 23/56/14 +f 27/57/15 25/58/15 26/59/15 28/60/15 +usemtl m_6b2a329c-1206-97be-c615-fa7a5d3d2d2c +f 21/61/16 22/62/16 26/63/16 25/64/16 +f 24/65/17 23/66/17 27/67/17 28/68/17 +f 23/69/18 21/70/18 25/71/18 27/72/18 +f 28/73/19 26/74/19 22/75/19 24/76/19 +f 32/77/20 30/78/20 29/79/20 31/80/20 +f 35/81/21 33/82/21 34/83/21 36/84/21 +f 29/85/22 30/86/22 34/87/22 33/88/22 +f 32/89/23 31/90/23 35/91/23 36/92/23 +f 31/93/24 29/94/24 33/95/24 35/96/24 +f 36/97/25 34/98/25 30/99/25 32/100/25 \ No newline at end of file diff --git a/mods/paintings_lib/models/paintings_lib_3x3.obj b/mods/paintings_lib/models/paintings_lib_3x3.obj new file mode 100644 index 00000000..d89fc7ac --- /dev/null +++ b/mods/paintings_lib/models/paintings_lib_3x3.obj @@ -0,0 +1,197 @@ +# Made in Blockbench 4.6.5 +mtllib paintings_lib_3x3.mtl + +o plane +v -1.5 -1.499999999999998 0.48437500000000483 +v -1.4999999999999998 1.500000000000002 0.48437499999999284 +v 1.5 -1.4999999999999982 0.48437500000000516 +v 1.5000000000000002 1.5000000000000018 0.48437499999999317 +vt 1 0 +vt 1 1 +vt 0 1 +vt 0 0 +vn 1.2246467991473535e-16 -3.9968028886505635e-15 -1 +usemtl m_b18c7dff-deab-a54b-3cf4-3950d2bcf151 +f 1/1/1 2/2/1 4/3/1 3/4/1 +o cube +v 1.5 -1.4375 0.5 +v 1.5 -1.4375 0.4375 +v 1.5 -1.5 0.5 +v 1.5 -1.5 0.4375 +v -1.5 -1.4375 0.5 +v -1.5 -1.4375 0.4375 +v -1.5 -1.5 0.5 +v -1.5 -1.5 0.4375 +v 1.5 1.5 0.5 +v 1.5 1.5 0.4375 +v 1.5 1.4375 0.5 +v 1.5 1.4375 0.4375 +v -1.5 1.5 0.5 +v -1.5 1.5 0.4375 +v -1.5 1.4375 0.5 +v -1.5 1.4375 0.4375 +v 1.5 1.4375 0.5 +v 1.5 1.4375 0.4375 +v 1.5 -1.4375 0.5 +v 1.5 -1.4375 0.4375 +v 1.4375 1.4375 0.5 +v 1.4375 1.4375 0.4375 +v 1.4375 -1.4375 0.5 +v 1.4375 -1.4375 0.4375 +v -1.4375 1.4375 0.5 +v -1.4375 1.4375 0.4375 +v -1.4375 -1.4375 0.5 +v -1.4375 -1.4375 0.4375 +v -1.5 1.4375 0.5 +v -1.5 1.4375 0.4375 +v -1.5 -1.4375 0.5 +v -1.5 -1.4375 0.4375 +vt 0.020833333333333332 0.9791666666666666 +vt 0.020833333333333332 1 +vt 0 1 +vt 0 0.9791666666666666 +vt 0.020833333333333332 0.9791666666666666 +vt 0.020833333333333332 1 +vt 0 1 +vt 0 0.9791666666666666 +vt 1 0 +vt 1 0.02083333333333337 +vt 0 0.02083333333333337 +vt 0 0 +vt 1 0 +vt 1 0.02083333333333337 +vt 0 0.02083333333333337 +vt 0 0 +vt 1 0 +vt 1 0.02083333333333337 +vt 0 0.02083333333333337 +vt 0 0 +vt 1 0 +vt 1 0.02083333333333337 +vt 0 0.02083333333333337 +vt 0 0 +vt 0.020833333333333332 0.9791666666666666 +vt 0.020833333333333332 1 +vt 0 1 +vt 0 0.9791666666666666 +vt 0.020833333333333332 0.9791666666666666 +vt 0.020833333333333332 1 +vt 0 1 +vt 0 0.9791666666666666 +vt 1 0.9791666666666666 +vt 1 1 +vt 0 1 +vt 0 0.9791666666666666 +vt 1 0.9791666666666666 +vt 1 1 +vt 0 1 +vt 0 0.9791666666666666 +vt 1 0.9791666666666666 +vt 1 1 +vt 0 1 +vt 0 0.9791666666666666 +vt 1 0.9791666666666666 +vt 1 1 +vt 0 1 +vt 0 0.9791666666666666 +vt 0.020833333333333332 0.02083333333333337 +vt 0.020833333333333332 0.9791666666666666 +vt 0 0.9791666666666666 +vt 0 0.02083333333333337 +vt 0.020833333333333332 0.02083333333333337 +vt 0.020833333333333332 0.9791666666666666 +vt 0 0.9791666666666666 +vt 0 0.02083333333333337 +vt 0.020833333333333332 0.9791666666666666 +vt 0.020833333333333332 1 +vt 0 1 +vt 0 0.9791666666666666 +vt 0.020833333333333332 0.9791666666666666 +vt 0.020833333333333332 1 +vt 0 1 +vt 0 0.9791666666666666 +vt 0.020833333333333332 0.02083333333333337 +vt 0.020833333333333332 0.9791666666666666 +vt 0 0.9791666666666666 +vt 0 0.02083333333333337 +vt 0.020833333333333332 0.02083333333333337 +vt 0.020833333333333332 0.9791666666666666 +vt 0 0.9791666666666666 +vt 0 0.02083333333333337 +vt 1 0.02083333333333337 +vt 1 0.9791666666666666 +vt 0.9791666666666666 0.9791666666666666 +vt 0.9791666666666666 0.02083333333333337 +vt 1 0.02083333333333337 +vt 1 0.9791666666666666 +vt 0.9791666666666666 0.9791666666666666 +vt 0.9791666666666666 0.02083333333333337 +vt 0.020833333333333332 0.9791666666666666 +vt 0.020833333333333332 1 +vt 0 1 +vt 0 0.9791666666666666 +vt 0.020833333333333332 0.9791666666666666 +vt 0.020833333333333332 1 +vt 0 1 +vt 0 0.9791666666666666 +vt 1 0.02083333333333337 +vt 1 0.9791666666666666 +vt 0.9791666666666666 0.9791666666666666 +vt 0.9791666666666666 0.02083333333333337 +vt 1 0.02083333333333337 +vt 1 0.9791666666666666 +vt 0.9791666666666666 0.9791666666666666 +vt 0.9791666666666666 0.02083333333333337 +vn 1 0 0 +vn -1 0 0 +vn 0 1 0 +vn 0 -1 0 +vn 0 0 1 +vn 0 0 -1 +vn 1 0 0 +vn -1 0 0 +vn 0 1 0 +vn 0 -1 0 +vn 0 0 1 +vn 0 0 -1 +vn 1 0 0 +vn -1 0 0 +vn 0 1 0 +vn 0 -1 0 +vn 0 0 1 +vn 0 0 -1 +vn 1 0 0 +vn -1 0 0 +vn 0 1 0 +vn 0 -1 0 +vn 0 0 1 +vn 0 0 -1 +usemtl m_c4f58bf3-f0cf-26fe-4831-64cde46c806f +f 8/5/2 6/6/2 5/7/2 7/8/2 +f 11/9/3 9/10/3 10/11/3 12/12/3 +f 5/13/4 6/14/4 10/15/4 9/16/4 +f 8/17/5 7/18/5 11/19/5 12/20/5 +f 7/21/6 5/22/6 9/23/6 11/24/6 +f 12/25/7 10/26/7 6/27/7 8/28/7 +f 16/29/8 14/30/8 13/31/8 15/32/8 +f 19/33/9 17/34/9 18/35/9 20/36/9 +f 13/37/10 14/38/10 18/39/10 17/40/10 +f 16/41/11 15/42/11 19/43/11 20/44/11 +f 15/45/12 13/46/12 17/47/12 19/48/12 +f 20/49/13 18/50/13 14/51/13 16/52/13 +f 24/53/14 22/54/14 21/55/14 23/56/14 +f 27/57/15 25/58/15 26/59/15 28/60/15 +usemtl none +f 21/61/16 22/62/16 26/63/16 25/64/16 +f 24/65/17 23/66/17 27/67/17 28/68/17 +usemtl m_c4f58bf3-f0cf-26fe-4831-64cde46c806f +f 23/69/18 21/70/18 25/71/18 27/72/18 +f 28/73/19 26/74/19 22/75/19 24/76/19 +f 32/77/20 30/78/20 29/79/20 31/80/20 +f 35/81/21 33/82/21 34/83/21 36/84/21 +usemtl none +f 29/85/22 30/86/22 34/87/22 33/88/22 +f 32/89/23 31/90/23 35/91/23 36/92/23 +usemtl m_c4f58bf3-f0cf-26fe-4831-64cde46c806f +f 31/93/24 29/94/24 33/95/24 35/96/24 +f 36/97/25 34/98/25 30/99/25 32/100/25 \ No newline at end of file diff --git a/mods/paintings_lib/models/paintings_lib_4x2.obj b/mods/paintings_lib/models/paintings_lib_4x2.obj new file mode 100644 index 00000000..0b74a94d --- /dev/null +++ b/mods/paintings_lib/models/paintings_lib_4x2.obj @@ -0,0 +1,197 @@ +# Made in Blockbench 4.6.5 +mtllib paintings_lib_4x2.mtl + +o plane +v -2.5 -1.4999999999999984 0.4843750000000029 +v -2.5 0.5000000000000016 0.4843749999999962 +v 1.5 -1.4999999999999982 0.48437500000000333 +v 1.5 0.5000000000000018 0.48437499999999667 +vt 0.984375 0 +vt 1 1 +vt 0 1 +vt 0 0 +vn 1.2246467991473532e-16 -3.3306690738754696e-15 -1 +usemtl m_1301f86f-a555-6fc1-cf6a-0628584373f3 +f 1/1/1 2/2/1 4/3/1 3/4/1 +o cube +v -2.4375 0.5 0.5 +v -2.4375 0.5 0.4375 +v -2.4375 -1.5 0.5 +v -2.4375 -1.5 0.4375 +v -2.5 0.5 0.5 +v -2.5 0.5 0.4375 +v -2.5 -1.5 0.5 +v -2.5 -1.5 0.4375 +v 1.4375 -1.4375 0.5 +v 1.4375 -1.4375 0.4375 +v 1.4375 -1.5 0.5 +v 1.4375 -1.5 0.4375 +v -2.4375 -1.4375 0.5 +v -2.4375 -1.4375 0.4375 +v -2.4375 -1.5 0.5 +v -2.4375 -1.5 0.4375 +v 1.4375 0.5 0.5 +v 1.4375 0.5 0.4375 +v 1.4375 0.4375 0.5 +v 1.4375 0.4375 0.4375 +v -2.4375 0.5 0.5 +v -2.4375 0.5 0.4375 +v -2.4375 0.4375 0.5 +v -2.4375 0.4375 0.4375 +v 1.5 0.5 0.5 +v 1.5 0.5 0.4375 +v 1.5 -1.5 0.5 +v 1.5 -1.5 0.4375 +v 1.4375 0.5 0.5 +v 1.4375 0.5 0.4375 +v 1.4375 -1.5 0.5 +v 1.4375 -1.5 0.4375 +vt 1 0 +vt 1 1 +vt 0.984375 1 +vt 0.984375 0 +vt 1 0 +vt 1 1 +vt 0.984375 1 +vt 0.984375 0 +vt 0.015625 0.96875 +vt 0.015625 1 +vt 0 1 +vt 0 0.96875 +vt 0.015625 0.96875 +vt 0.015625 1 +vt 0 1 +vt 0 0.96875 +vt 1 0 +vt 1 1 +vt 0.984375 1 +vt 0.984375 0 +vt 1 0 +vt 1 1 +vt 0.984375 1 +vt 0.984375 0 +vt 0.015625 0.96875 +vt 0.015625 1 +vt 0 1 +vt 0 0.96875 +vt 0.015625 0.96875 +vt 0.015625 1 +vt 0 1 +vt 0 0.96875 +vt 0.984375 0 +vt 0.984375 0.03125 +vt 0.015625 0.03125 +vt 0.015625 0 +vt 0.984375 0 +vt 0.984375 0.03125 +vt 0.015625 0.03125 +vt 0.015625 0 +vt 0.984375 0 +vt 0.984375 0.03125 +vt 0.015625 0.03125 +vt 0.015625 0 +vt 0.984375 0 +vt 0.984375 0.03125 +vt 0.015625 0.03125 +vt 0.015625 0 +vt 0.015625 0.96875 +vt 0.015625 1 +vt 0 1 +vt 0 0.96875 +vt 0.015625 0.96875 +vt 0.015625 1 +vt 0 1 +vt 0 0.96875 +vt 0.984375 0.96875 +vt 0.984375 1 +vt 0.015625 1 +vt 0.015625 0.96875 +vt 0.984375 0.96875 +vt 0.984375 1 +vt 0.015625 1 +vt 0.015625 0.96875 +vt 0.984375 0.96875 +vt 0.984375 1 +vt 0.015625 1 +vt 0.015625 0.96875 +vt 0.984375 0.96875 +vt 0.984375 1 +vt 0.015625 1 +vt 0.015625 0.96875 +vt 0.015625 0 +vt 0.015625 1 +vt 0 1 +vt 0 0 +vt 0.015625 0 +vt 0.015625 1 +vt 0 1 +vt 0 0 +vt 0.015625 0.96875 +vt 0.015625 1 +vt 0 1 +vt 0 0.96875 +vt 0.015625 0.96875 +vt 0.015625 1 +vt 0 1 +vt 0 0.96875 +vt 0.015625 0 +vt 0.015625 1 +vt 0 1 +vt 0 0 +vt 0.015625 0 +vt 0.015625 1 +vt 0 1 +vt 0 0 +vn 1 0 0 +vn -1 0 0 +vn 0 1 0 +vn 0 -1 0 +vn 0 0 1 +vn 0 0 -1 +vn 1 0 0 +vn -1 0 0 +vn 0 1 0 +vn 0 -1 0 +vn 0 0 1 +vn 0 0 -1 +vn 1 0 0 +vn -1 0 0 +vn 0 1 0 +vn 0 -1 0 +vn 0 0 1 +vn 0 0 -1 +vn 1 0 0 +vn -1 0 0 +vn 0 1 0 +vn 0 -1 0 +vn 0 0 1 +vn 0 0 -1 +usemtl m_190a9590-f98a-f621-d3b2-5a8eb48cedc5 +f 8/5/2 6/6/2 5/7/2 7/8/2 +f 11/9/3 9/10/3 10/11/3 12/12/3 +f 5/13/4 6/14/4 10/15/4 9/16/4 +f 8/17/5 7/18/5 11/19/5 12/20/5 +f 7/21/6 5/22/6 9/23/6 11/24/6 +f 12/25/7 10/26/7 6/27/7 8/28/7 +usemtl none +f 16/29/8 14/30/8 13/31/8 15/32/8 +f 19/33/9 17/34/9 18/35/9 20/36/9 +usemtl m_190a9590-f98a-f621-d3b2-5a8eb48cedc5 +f 13/37/10 14/38/10 18/39/10 17/40/10 +f 16/41/11 15/42/11 19/43/11 20/44/11 +f 15/45/12 13/46/12 17/47/12 19/48/12 +f 20/49/13 18/50/13 14/51/13 16/52/13 +usemtl none +f 24/53/14 22/54/14 21/55/14 23/56/14 +f 27/57/15 25/58/15 26/59/15 28/60/15 +usemtl m_190a9590-f98a-f621-d3b2-5a8eb48cedc5 +f 21/61/16 22/62/16 26/63/16 25/64/16 +f 24/65/17 23/66/17 27/67/17 28/68/17 +f 23/69/18 21/70/18 25/71/18 27/72/18 +f 28/73/19 26/74/19 22/75/19 24/76/19 +f 32/77/20 30/78/20 29/79/20 31/80/20 +f 35/81/21 33/82/21 34/83/21 36/84/21 +f 29/85/22 30/86/22 34/87/22 33/88/22 +f 32/89/23 31/90/23 35/91/23 36/92/23 +f 31/93/24 29/94/24 33/95/24 35/96/24 +f 36/97/25 34/98/25 30/99/25 32/100/25 \ No newline at end of file diff --git a/mods/paintings_lib/models/paintings_lib_4x3.obj b/mods/paintings_lib/models/paintings_lib_4x3.obj new file mode 100644 index 00000000..c949e909 --- /dev/null +++ b/mods/paintings_lib/models/paintings_lib_4x3.obj @@ -0,0 +1,197 @@ +# Made in Blockbench 4.6.5 +mtllib paintings_lib_4x3.mtl + +o plane +v -2.5 -1.4999999999999973 0.48437500000001055 +v -2.5 1.5000000000000027 0.4843749999999939 +v 1.5 -1.4999999999999973 0.484375000000011 +v 1.5 1.5000000000000027 0.48437499999999434 +vt 1 0 +vt 1 1 +vt 0 1 +vt 0 0 +vn 1.224646799147353e-16 -5.551115123125783e-15 -1 +usemtl m_7731411c-b95b-ef82-bd57-fc430f3f360f +f 1/1/1 2/2/1 4/3/1 3/4/1 +o cube +v -2.5 -1.5 0.5 +v -2.4375 1.5 0.5 +v -2.4375 1.5 0.4375 +v -2.4375 -1.5 0.5 +v -2.4375 -1.5 0.4375 +v -2.5 1.5 0.5 +v -2.5 1.5 0.4375 +v -2.5 -1.5 0.4375 +v 1.4375 -1.4375 0.5 +v 1.4375 -1.4375 0.4375 +v 1.4375 -1.5 0.5 +v 1.4375 -1.5 0.4375 +v -2.4375 -1.4375 0.5 +v -2.4375 -1.4375 0.4375 +v -2.4375 -1.5 0.5 +v -2.4375 -1.5 0.4375 +v 1.4375 1.5 0.5 +v 1.4375 1.5 0.4375 +v 1.4375 1.4375 0.5 +v 1.4375 1.4375 0.4375 +v -2.4375 1.5 0.5 +v -2.4375 1.5 0.4375 +v -2.4375 1.4375 0.5 +v -2.4375 1.4375 0.4375 +v 1.5 1.5 0.5 +v 1.5 1.5 0.4375 +v 1.5 -1.5 0.5 +v 1.5 -1.5 0.4375 +v 1.4375 1.5 0.5 +v 1.4375 1.5 0.4375 +v 1.4375 -1.5 0.5 +v 1.4375 -1.5 0.4375 +vt 1 0 +vt 1 1 +vt 0.984375 1 +vt 0.984375 0 +vt 1 0 +vt 1 1 +vt 0.984375 1 +vt 0.984375 0 +vt 0.015625 0.9791666666666666 +vt 0.015625 1 +vt 0 1 +vt 0 0.9791666666666666 +vt 0.015625 0.9791666666666666 +vt 0.015625 1 +vt 0 1 +vt 0 0.9791666666666666 +vt 1 0 +vt 1 1 +vt 0.984375 1 +vt 0.984375 0 +vt 1 0 +vt 1 1 +vt 0.984375 1 +vt 0.984375 0 +vt 0.015625 0.9791666666666666 +vt 0.015625 1 +vt 0 1 +vt 0 0.9791666666666666 +vt 0.015625 0.9791666666666666 +vt 0.015625 1 +vt 0 1 +vt 0 0.9791666666666666 +vt 0.984375 0 +vt 0.984375 0.02083333333333337 +vt 0.015625 0.02083333333333337 +vt 0.015625 0 +vt 0.984375 0 +vt 0.984375 0.02083333333333337 +vt 0.015625 0.02083333333333337 +vt 0.015625 0 +vt 0.984375 0 +vt 0.984375 0.02083333333333337 +vt 0.015625 0.02083333333333337 +vt 0.015625 0 +vt 0.984375 0 +vt 0.984375 0.02083333333333337 +vt 0.015625 0.02083333333333337 +vt 0.015625 0 +vt 0.015625 0.9791666666666666 +vt 0.015625 1 +vt 0 1 +vt 0 0.9791666666666666 +vt 0.015625 0.9791666666666666 +vt 0.015625 1 +vt 0 1 +vt 0 0.9791666666666666 +vt 0.984375 0.9791666666666666 +vt 0.984375 1 +vt 0.015625 1 +vt 0.015625 0.9791666666666666 +vt 0.984375 0.9791666666666666 +vt 0.984375 1 +vt 0.015625 1 +vt 0.015625 0.9791666666666666 +vt 0.984375 0.9791666666666666 +vt 0.984375 1 +vt 0.015625 1 +vt 0.015625 0.9791666666666666 +vt 0.984375 0.9791666666666666 +vt 0.984375 1 +vt 0.015625 1 +vt 0.015625 0.9791666666666666 +vt 0.015625 0 +vt 0.015625 1 +vt 0 1 +vt 0 0 +vt 0.015625 0 +vt 0.015625 1 +vt 0 1 +vt 0 0 +vt 0.015625 0.9791666666666666 +vt 0.015625 1 +vt 0 1 +vt 0 0.9791666666666666 +vt 0.015625 0.9791666666666666 +vt 0.015625 1 +vt 0 1 +vt 0 0.9791666666666666 +vt 0.015625 0 +vt 0.015625 1 +vt 0 1 +vt 0 0 +vt 0.015625 0 +vt 0.015625 1 +vt 0 1 +vt 0 0 +vn 1 0 0 +vn -1 0 0 +vn 0 1 0 +vn 0 -1 0 +vn 0 0 1 +vn 0 0 -1 +vn 1 0 0 +vn -1 0 0 +vn 0 1 0 +vn 0 -1 0 +vn 0 0 1 +vn 0 0 -1 +vn 1 0 0 +vn -1 0 0 +vn 0 1 0 +vn 0 -1 0 +vn 0 0 1 +vn 0 0 -1 +vn 1 0 0 +vn -1 0 0 +vn 0 1 0 +vn 0 -1 0 +vn 0 0 1 +vn 0 0 -1 +usemtl m_ec2c7198-dc86-c17f-923d-2128ca144c10 +f 9/5/2 7/6/2 6/7/2 8/8/2 +f 5/9/3 10/10/3 11/11/3 12/12/3 +f 6/13/4 7/14/4 11/15/4 10/16/4 +f 9/17/5 8/18/5 5/19/5 12/20/5 +f 8/21/6 6/22/6 10/23/6 5/24/6 +f 12/25/7 11/26/7 7/27/7 9/28/7 +usemtl none +f 16/29/8 14/30/8 13/31/8 15/32/8 +f 19/33/9 17/34/9 18/35/9 20/36/9 +usemtl m_ec2c7198-dc86-c17f-923d-2128ca144c10 +f 13/37/10 14/38/10 18/39/10 17/40/10 +f 16/41/11 15/42/11 19/43/11 20/44/11 +f 15/45/12 13/46/12 17/47/12 19/48/12 +f 20/49/13 18/50/13 14/51/13 16/52/13 +usemtl none +f 24/53/14 22/54/14 21/55/14 23/56/14 +f 27/57/15 25/58/15 26/59/15 28/60/15 +usemtl m_ec2c7198-dc86-c17f-923d-2128ca144c10 +f 21/61/16 22/62/16 26/63/16 25/64/16 +f 24/65/17 23/66/17 27/67/17 28/68/17 +f 23/69/18 21/70/18 25/71/18 27/72/18 +f 28/73/19 26/74/19 22/75/19 24/76/19 +f 32/77/20 30/78/20 29/79/20 31/80/20 +f 35/81/21 33/82/21 34/83/21 36/84/21 +f 29/85/22 30/86/22 34/87/22 33/88/22 +f 32/89/23 31/90/23 35/91/23 36/92/23 +f 31/93/24 29/94/24 33/95/24 35/96/24 +f 36/97/25 34/98/25 30/99/25 32/100/25 \ No newline at end of file diff --git a/mods/paintings_lib/models/paintings_lib_4x4.obj b/mods/paintings_lib/models/paintings_lib_4x4.obj new file mode 100644 index 00000000..d6ccdbd2 --- /dev/null +++ b/mods/paintings_lib/models/paintings_lib_4x4.obj @@ -0,0 +1,199 @@ +# Made in Blockbench 4.6.5 +mtllib paintings_lib_4x4.mtl + +o plane +v -2.5 -2.4999999999999973 0.4843750000000109 +v -2.5 1.5000000000000027 0.4843749999999887 +v 1.5 -2.4999999999999973 0.4843750000000113 +v 1.5 1.5000000000000027 0.4843749999999891 +vt 1 0 +vt 1 1 +vt 0 1 +vt 0 0 +vn 1.2246467991473535e-16 -5.551115123125783e-15 -1 +usemtl m_7754df98-0254-cac9-2828-f0abaaf4f8e6 +f 1/1/1 2/2/1 4/3/1 3/4/1 +o cube +v 1.5 1.4375 0.5 +v 1.5 1.4375 0.4375 +v 1.5 -2.4375 0.5 +v 1.5 -2.4375 0.4375 +v 1.4375 1.4375 0.5 +v 1.4375 1.4375 0.4375 +v 1.4375 -2.4375 0.5 +v 1.4375 -2.4375 0.4375 +v 1.5 -2.4375 0.5 +v 1.5 -2.4375 0.4375 +v 1.5 -2.5 0.5 +v 1.5 -2.5 0.4375 +v -2.5 -2.4375 0.5 +v -2.5 -2.4375 0.4375 +v -2.5 -2.5 0.5 +v -2.5 -2.5 0.4375 +v 1.5 1.5 0.5 +v 1.5 1.5 0.4375 +v 1.5 1.4375 0.5 +v 1.5 1.4375 0.4375 +v -2.5 1.5 0.5 +v -2.5 1.5 0.4375 +v -2.5 1.4375 0.5 +v -2.5 1.4375 0.4375 +v -2.4375 1.4375 0.5 +v -2.4375 1.4375 0.4375 +v -2.4375 -2.4375 0.5 +v -2.4375 -2.4375 0.4375 +v -2.5 1.4375 0.5 +v -2.5 1.4375 0.4375 +v -2.5 -2.4375 0.5 +v -2.5 -2.4375 0.4375 +vt 0.015625 0 +vt 0.015625 0.96875 +vt 0 0.96875 +vt 0 0 +vt 0.015625 0.015625 +vt 0.015625 0.984375 +vt 0 0.984375 +vt 0 0.015625 +vt 0.015625 0.984375 +vt 0.015625 1 +vt 0 1 +vt 0 0.984375 +vt 0.015625 0.984375 +vt 0.015625 1 +vt 0 1 +vt 0 0.984375 +vt 0.015625 0.015625 +vt 0.015625 0.984375 +vt 0 0.984375 +vt 0 0.015625 +vt 0.015625 0.015625 +vt 0.015625 0.984375 +vt 0 0.984375 +vt 0 0.015625 +vt 0.015625 0.984375 +vt 0.015625 1 +vt 0 1 +vt 0 0.984375 +vt 0.015625 0.984375 +vt 0.015625 1 +vt 0 1 +vt 0 0.984375 +vt 1 0 +vt 1 0.015625 +vt 0 0.015625 +vt 0 0 +vt 1 0 +vt 1 0.015625 +vt 0 0.015625 +vt 0 0 +vt 1 0 +vt 1 0.015625 +vt 0 0.015625 +vt 0 0 +vt 1 0 +vt 1 0.015625 +vt 0 0.015625 +vt 0 0 +vt 0.015625 0.984375 +vt 0.015625 1 +vt 0 1 +vt 0 0.984375 +vt 0.015625 0.984375 +vt 0.015625 1 +vt 0 1 +vt 0 0.984375 +vt 1 0.984375 +vt 1 1 +vt 0 1 +vt 0 0.984375 +vt 1 0.984375 +vt 1 1 +vt 0 1 +vt 0 0.984375 +vt 1 0.984375 +vt 1 1 +vt 0 1 +vt 0 0.984375 +vt 1 0.984375 +vt 1 1 +vt 0 1 +vt 0 0.984375 +vt 1 0.015625 +vt 1 0.984375 +vt 0.984375 0.984375 +vt 0.984375 0.015625 +vt 1 0.015625 +vt 1 0.984375 +vt 0.984375 0.984375 +vt 0.984375 0.015625 +vt 0.015625 0.984375 +vt 0.015625 1 +vt 0 1 +vt 0 0.984375 +vt 0.015625 0.984375 +vt 0.015625 1 +vt 0 1 +vt 0 0.984375 +vt 1 0.015625 +vt 1 0.984375 +vt 0.984375 0.984375 +vt 0.984375 0.015625 +vt 1 0.015625 +vt 1 0.984375 +vt 0.984375 0.984375 +vt 0.984375 0.015625 +vn 1 0 0 +vn -1 0 0 +vn 0 1 0 +vn 0 -1 0 +vn 0 0 1 +vn 0 0 -1 +vn 1 0 0 +vn -1 0 0 +vn 0 1 0 +vn 0 -1 0 +vn 0 0 1 +vn 0 0 -1 +vn 1 0 0 +vn -1 0 0 +vn 0 1 0 +vn 0 -1 0 +vn 0 0 1 +vn 0 0 -1 +vn 1 0 0 +vn -1 0 0 +vn 0 1 0 +vn 0 -1 0 +vn 0 0 1 +vn 0 0 -1 +usemtl m_a19191c5-dea6-c4da-33e1-a02fb515da85 +f 8/5/2 6/6/2 5/7/2 7/8/2 +f 11/9/3 9/10/3 10/11/3 12/12/3 +usemtl none +f 5/13/4 6/14/4 10/15/4 9/16/4 +f 8/17/5 7/18/5 11/19/5 12/20/5 +usemtl m_a19191c5-dea6-c4da-33e1-a02fb515da85 +f 7/21/6 5/22/6 9/23/6 11/24/6 +f 12/25/7 10/26/7 6/27/7 8/28/7 +f 16/29/8 14/30/8 13/31/8 15/32/8 +f 19/33/9 17/34/9 18/35/9 20/36/9 +f 13/37/10 14/38/10 18/39/10 17/40/10 +f 16/41/11 15/42/11 19/43/11 20/44/11 +f 15/45/12 13/46/12 17/47/12 19/48/12 +f 20/49/13 18/50/13 14/51/13 16/52/13 +f 24/53/14 22/54/14 21/55/14 23/56/14 +f 27/57/15 25/58/15 26/59/15 28/60/15 +f 21/61/16 22/62/16 26/63/16 25/64/16 +f 24/65/17 23/66/17 27/67/17 28/68/17 +f 23/69/18 21/70/18 25/71/18 27/72/18 +f 28/73/19 26/74/19 22/75/19 24/76/19 +usemtl none +f 32/77/20 30/78/20 29/79/20 31/80/20 +usemtl m_a19191c5-dea6-c4da-33e1-a02fb515da85 +f 35/81/21 33/82/21 34/83/21 36/84/21 +usemtl none +f 29/85/22 30/86/22 34/87/22 33/88/22 +f 32/89/23 31/90/23 35/91/23 36/92/23 +usemtl m_a19191c5-dea6-c4da-33e1-a02fb515da85 +f 31/93/24 29/94/24 33/95/24 35/96/24 +f 36/97/25 34/98/25 30/99/25 32/100/25 \ No newline at end of file diff --git a/mods/paintings_lib/paintings.lua b/mods/paintings_lib/paintings.lua new file mode 100644 index 00000000..b98cc325 --- /dev/null +++ b/mods/paintings_lib/paintings.lua @@ -0,0 +1,36 @@ + +-- 1x1 + +paintings_lib.register1x1("blank1x1", "Blank 1x1", "paintings_lib_blank_1x1.png^paintings_lib_frame1x1.png") + +-- 1x2 + +paintings_lib.register1x2("blank1x2", "Blank 1x2", "paintings_lib_blank_1x2.png^paintings_lib_frame1x2.png") + +-- 2x1 + +paintings_lib.register2x1("blank2x1", "Blank 2x1", "paintings_lib_blank_2x1.png^paintings_lib_frame2x1.png") + +-- 2x2 + +paintings_lib.register2x2("blank2x2", "Blank 2x2", "paintings_lib_blank_2x2.png^paintings_lib_frame2x2.png") + +-- 3x2 + +paintings_lib.register3x2("blank3x2", "Blank 3x2", "paintings_lib_blank_3x2.png^paintings_lib_frame3x2.png") + +--3x3 + +paintings_lib.register3x3("blank3x3", "Blank 3x3", "paintings_lib_blank_3x3.png^paintings_lib_frame3x3.png") + +-- 4x2 + +paintings_lib.register4x2("blank4x2", "Blank 4x2", "paintings_lib_blank_4x2.png^paintings_lib_frame4x2.png") + +-- 4x3 + +paintings_lib.register4x3("blank4x3", "Blank 4x3", "paintings_lib_blank_4x3.png^paintings_lib_frame4x3.png") + +-- 4x4 + +paintings_lib.register4x4("blank4x4", "Blank 4x4", "paintings_lib_blank_4x4.png^paintings_lib_frame4x4.png") diff --git a/mods/paintings_lib/register.lua b/mods/paintings_lib/register.lua new file mode 100644 index 00000000..8ca839c4 --- /dev/null +++ b/mods/paintings_lib/register.lua @@ -0,0 +1,219 @@ +-- define global variables for the node names and textures +paintings_name = {} +paintings_texture = {} + +-- define the node registration function +function paintings_lib.register1x1(identifier, display_name, texture) + local node_name = ":paintings_lib:1x1_"..identifier:gsub("%s+", "_") + paintings_name[identifier] = paintings_name[identifier] or {} + paintings_name[identifier]["1x1"] = node_name + paintings_texture[node_name] = texture + + -- register the node + minetest.register_node(node_name, { + description = display_name.." Painting", + drawtype = "mesh", + mesh = "paintings_lib_1x1"..".obj", + selection_box = {type = "fixed", fixed = {-0.5, -0.5, 0.4375, 0.5, 0.5, 0.5}}, + collision_box = {type = "fixed", fixed = {-0.5, -0.5, 0.4375, 0.5, 0.5, 0.5}}, + tiles = {texture}, + paramtype = "light", + paramtype2 = "facedir", + walkable = false, + sunlight_propagates = true, + groups = {painting = 1, choppy = 3, oddly_breakable_by_hand = 3}, + sounds = default.node_sound_wood_defaults(), + }) +end + +-- define the node registration function +function paintings_lib.register1x2(identifier, display_name, texture) + local node_name = ":paintings_lib:1x2_"..identifier:gsub("%s+", "_") + paintings_name[identifier] = paintings_name[identifier] or {} + paintings_name[identifier]["1x2"] = node_name + paintings_texture[node_name] = texture + + -- register the node + minetest.register_node(node_name, { + description = display_name.." Painting", + drawtype = "mesh", + mesh = "paintings_lib_1x2"..".obj", + selection_box = {type = "fixed", fixed = {-0.5, -1.5, 0.4375, 0.5, 0.5, 0.5}}, + collision_box = {type = "fixed", fixed = {-0.5, -1.5, 0.4375, 0.5, 0.5, 0.5}}, + tiles = {texture}, + paramtype = "light", + paramtype2 = "facedir", + walkable = false, + sunlight_propagates = true, + groups = {painting = 1, choppy = 3, oddly_breakable_by_hand = 3}, + sounds = default.node_sound_wood_defaults(), + }) +end + +-- define the node registration function +function paintings_lib.register2x1(identifier, display_name, texture) + local node_name = ":paintings_lib:2x1_"..identifier:gsub("%s+", "_") + paintings_name[identifier] = paintings_name[identifier] or {} + paintings_name[identifier]["2x1"] = node_name + paintings_texture[node_name] = texture + + -- register the node + minetest.register_node(node_name, { + description = display_name.." Painting", + drawtype = "mesh", + mesh = "paintings_lib_2x1"..".obj", + selection_box = {type = "fixed", fixed = {-0.5, -0.5, 0.4375, 1.5, 0.5, 0.5}}, + collision_box = {type = "fixed", fixed = {-0.5, -0.5, 0.4375, 1.5, 0.5, 0.5}}, + tiles = {texture}, + paramtype = "light", + paramtype2 = "facedir", + walkable = false, + sunlight_propagates = true, + groups = {painting = 1, choppy = 3, oddly_breakable_by_hand = 3}, + sounds = default.node_sound_wood_defaults(), + }) +end + +-- define the node registration function +function paintings_lib.register2x2(identifier, display_name, texture) + local node_name = ":paintings_lib:2x2_"..identifier:gsub("%s+", "_") + paintings_name[identifier] = paintings_name[identifier] or {} + paintings_name[identifier]["2x2"] = node_name + paintings_texture[node_name] = texture + + -- register the node + minetest.register_node(node_name, { + description = display_name.." Painting", + drawtype = "mesh", + mesh = "paintings_lib_2x2"..".obj", + selection_box = {type = "fixed", fixed = {-0.5, -1.5, 0.4375, 1.5, 0.5, 0.5}}, + collision_box = {type = "fixed", fixed = {-0.5, -1.5, 0.4375, 1.5, 0.5, 0.5}}, + tiles = {texture}, + paramtype = "light", + paramtype2 = "facedir", + walkable = false, + sunlight_propagates = true, + groups = {painting = 1, choppy = 3, oddly_breakable_by_hand = 3}, + sounds = default.node_sound_wood_defaults(), + }) +end + +-- define the node registration function +function paintings_lib.register3x2(identifier, display_name, texture) + local node_name = ":paintings_lib:3x2_"..identifier:gsub("%s+", "_") + paintings_name[identifier] = paintings_name[identifier] or {} + paintings_name[identifier]["3x2"] = node_name + paintings_texture[node_name] = texture + + -- register the node + minetest.register_node(node_name, { + description = display_name.." Painting", + drawtype = "mesh", + mesh = "paintings_lib_3x2"..".obj", + selection_box = {type = "fixed", fixed = {-1.5, -1.5, 0.4375, 1.5, 0.5, 0.5}}, + collision_box = {type = "fixed", fixed = {-1.5, -1.5, 0.4375, 1.5, 0.5, 0.5}}, + tiles = {texture}, + paramtype = "light", + paramtype2 = "facedir", + walkable = false, + sunlight_propagates = true, + groups = {painting = 1, choppy = 3, oddly_breakable_by_hand = 3}, + sounds = default.node_sound_wood_defaults(), + }) +end + +-- define the node registration function +function paintings_lib.register3x3(identifier, display_name, texture) + local node_name = ":paintings_lib:3x3_"..identifier:gsub("%s+", "_") + paintings_name[identifier] = paintings_name[identifier] or {} + paintings_name[identifier]["3x3"] = node_name + paintings_texture[node_name] = texture + + -- register the node + minetest.register_node(node_name, { + description = display_name.." Painting", + drawtype = "mesh", + mesh = "paintings_lib_3x3"..".obj", + selection_box = {type = "fixed", fixed = {-1.5, -1.5, 0.4375, 1.5, 1.5, 0.5}}, + collision_box = {type = "fixed", fixed = {-1.5, -1.5, 0.4375, 1.5, 1.5, 0.5}}, + tiles = {texture}, + paramtype = "light", + paramtype2 = "facedir", + walkable = false, + sunlight_propagates = true, + groups = {painting = 1, choppy = 3, oddly_breakable_by_hand = 3}, + sounds = default.node_sound_wood_defaults(), + }) +end + +-- define the node registration function +function paintings_lib.register4x2(identifier, display_name, texture) + local node_name = ":paintings_lib:4x2_"..identifier:gsub("%s+", "_") + paintings_name[identifier] = paintings_name[identifier] or {} + paintings_name[identifier]["4x2"] = node_name + paintings_texture[node_name] = texture + + -- register the node + minetest.register_node(node_name, { + description = display_name.." Painting", + drawtype = "mesh", + mesh = "paintings_lib_4x2"..".obj", + selection_box = {type = "fixed", fixed = {-1.5, -1.5, 0.4375, 2.5, 0.5, 0.5}}, + collision_box = {type = "fixed", fixed = {-1.5, -1.5, 0.4375, 2.5, 0.5, 0.5}}, + tiles = {texture}, + paramtype = "light", + paramtype2 = "facedir", + walkable = false, + sunlight_propagates = true, + groups = {painting = 1, choppy = 3, oddly_breakable_by_hand = 3}, + sounds = default.node_sound_wood_defaults(), + }) +end + +-- define the node registration function +function paintings_lib.register4x3(identifier, display_name, texture) + local node_name = ":paintings_lib:4x3_"..identifier:gsub("%s+", "_") + paintings_name[identifier] = paintings_name[identifier] or {} + paintings_name[identifier]["4x3"] = node_name + paintings_texture[node_name] = texture + + -- register the node + minetest.register_node(node_name, { + description = display_name.." Painting", + drawtype = "mesh", + mesh = "paintings_lib_4x3"..".obj", + selection_box = {type = "fixed", fixed = {-1.5, -1.5, 0.4375, 2.5, 1.5, 0.5}}, + collision_box = {type = "fixed", fixed = {-1.5, -1.5, 0.4375, 2.5, 1.5, 0.5}}, + tiles = {texture}, + paramtype = "light", + paramtype2 = "facedir", + walkable = false, + sunlight_propagates = true, + groups = {painting = 1, choppy = 3, oddly_breakable_by_hand = 3}, + sounds = default.node_sound_wood_defaults(), + }) +end + +-- define the node registration function +function paintings_lib.register4x4(identifier, display_name, texture) + local node_name = ":paintings_lib:4x4_"..identifier:gsub("%s+", "_") + paintings_name[identifier] = paintings_name[identifier] or {} + paintings_name[identifier]["4x4"] = node_name + paintings_texture[node_name] = texture + + -- register the node + minetest.register_node(node_name, { + description = display_name.." Painting", + drawtype = "mesh", + mesh = "paintings_lib_4x4"..".obj", + selection_box = {type = "fixed", fixed = {-1.5, -2.5, 0.4375, 2.5, 1.5, 0.5}}, + collision_box = {type = "fixed", fixed = {-1.5, -2.5, 0.4375, 2.5, 1.5, 0.5}}, + tiles = {texture}, + paramtype = "light", + paramtype2 = "facedir", + walkable = false, + sunlight_propagates = true, + groups = {painting = 1, choppy = 3, oddly_breakable_by_hand = 3}, + sounds = default.node_sound_wood_defaults(), + }) +end diff --git a/mods/paintings_lib/settingtypes.txt b/mods/paintings_lib/settingtypes.txt new file mode 100644 index 00000000..128edac9 --- /dev/null +++ b/mods/paintings_lib/settingtypes.txt @@ -0,0 +1,2 @@ +# Number of uses for the paintbrush +paintings_lib_paintbrush_uses (Paintbrush uses) int 32 1 1000 diff --git a/mods/paintings_lib/textures/paintings_lib_4x4_winter.png b/mods/paintings_lib/textures/paintings_lib_4x4_winter.png new file mode 100644 index 00000000..144fdf63 Binary files /dev/null and b/mods/paintings_lib/textures/paintings_lib_4x4_winter.png differ diff --git a/mods/paintings_lib/textures/paintings_lib_blank_1x1.png b/mods/paintings_lib/textures/paintings_lib_blank_1x1.png new file mode 100644 index 00000000..3d4d5868 Binary files /dev/null and b/mods/paintings_lib/textures/paintings_lib_blank_1x1.png differ diff --git a/mods/paintings_lib/textures/paintings_lib_blank_1x2.png b/mods/paintings_lib/textures/paintings_lib_blank_1x2.png new file mode 100644 index 00000000..922c8b72 Binary files /dev/null and b/mods/paintings_lib/textures/paintings_lib_blank_1x2.png differ diff --git a/mods/paintings_lib/textures/paintings_lib_blank_2x1.png b/mods/paintings_lib/textures/paintings_lib_blank_2x1.png new file mode 100644 index 00000000..b54eb5fd Binary files /dev/null and b/mods/paintings_lib/textures/paintings_lib_blank_2x1.png differ diff --git a/mods/paintings_lib/textures/paintings_lib_blank_2x2.png b/mods/paintings_lib/textures/paintings_lib_blank_2x2.png new file mode 100644 index 00000000..b12aadb7 Binary files /dev/null and b/mods/paintings_lib/textures/paintings_lib_blank_2x2.png differ diff --git a/mods/paintings_lib/textures/paintings_lib_blank_3x2.png b/mods/paintings_lib/textures/paintings_lib_blank_3x2.png new file mode 100644 index 00000000..2922ed09 Binary files /dev/null and b/mods/paintings_lib/textures/paintings_lib_blank_3x2.png differ diff --git a/mods/paintings_lib/textures/paintings_lib_blank_3x3.png b/mods/paintings_lib/textures/paintings_lib_blank_3x3.png new file mode 100644 index 00000000..6651fd0a Binary files /dev/null and b/mods/paintings_lib/textures/paintings_lib_blank_3x3.png differ diff --git a/mods/paintings_lib/textures/paintings_lib_blank_4x2.png b/mods/paintings_lib/textures/paintings_lib_blank_4x2.png new file mode 100644 index 00000000..cca00d7c Binary files /dev/null and b/mods/paintings_lib/textures/paintings_lib_blank_4x2.png differ diff --git a/mods/paintings_lib/textures/paintings_lib_blank_4x3.png b/mods/paintings_lib/textures/paintings_lib_blank_4x3.png new file mode 100644 index 00000000..65b8a81d Binary files /dev/null and b/mods/paintings_lib/textures/paintings_lib_blank_4x3.png differ diff --git a/mods/paintings_lib/textures/paintings_lib_blank_4x4.png b/mods/paintings_lib/textures/paintings_lib_blank_4x4.png new file mode 100644 index 00000000..6ca70ede Binary files /dev/null and b/mods/paintings_lib/textures/paintings_lib_blank_4x4.png differ diff --git a/mods/paintings_lib/textures/paintings_lib_frame1x1.png b/mods/paintings_lib/textures/paintings_lib_frame1x1.png new file mode 100644 index 00000000..0da62dcf Binary files /dev/null and b/mods/paintings_lib/textures/paintings_lib_frame1x1.png differ diff --git a/mods/paintings_lib/textures/paintings_lib_frame1x2.png b/mods/paintings_lib/textures/paintings_lib_frame1x2.png new file mode 100644 index 00000000..e005eb87 Binary files /dev/null and b/mods/paintings_lib/textures/paintings_lib_frame1x2.png differ diff --git a/mods/paintings_lib/textures/paintings_lib_frame2x1.png b/mods/paintings_lib/textures/paintings_lib_frame2x1.png new file mode 100644 index 00000000..0fc3258c Binary files /dev/null and b/mods/paintings_lib/textures/paintings_lib_frame2x1.png differ diff --git a/mods/paintings_lib/textures/paintings_lib_frame2x2.png b/mods/paintings_lib/textures/paintings_lib_frame2x2.png new file mode 100644 index 00000000..a201274c Binary files /dev/null and b/mods/paintings_lib/textures/paintings_lib_frame2x2.png differ diff --git a/mods/paintings_lib/textures/paintings_lib_frame3x2.png b/mods/paintings_lib/textures/paintings_lib_frame3x2.png new file mode 100644 index 00000000..881492d7 Binary files /dev/null and b/mods/paintings_lib/textures/paintings_lib_frame3x2.png differ diff --git a/mods/paintings_lib/textures/paintings_lib_frame3x3.png b/mods/paintings_lib/textures/paintings_lib_frame3x3.png new file mode 100644 index 00000000..00cae2fe Binary files /dev/null and b/mods/paintings_lib/textures/paintings_lib_frame3x3.png differ diff --git a/mods/paintings_lib/textures/paintings_lib_frame4x2.png b/mods/paintings_lib/textures/paintings_lib_frame4x2.png new file mode 100644 index 00000000..c1ec2823 Binary files /dev/null and b/mods/paintings_lib/textures/paintings_lib_frame4x2.png differ diff --git a/mods/paintings_lib/textures/paintings_lib_frame4x3.png b/mods/paintings_lib/textures/paintings_lib_frame4x3.png new file mode 100644 index 00000000..d2d69cb4 Binary files /dev/null and b/mods/paintings_lib/textures/paintings_lib_frame4x3.png differ diff --git a/mods/paintings_lib/textures/paintings_lib_frame4x4.png b/mods/paintings_lib/textures/paintings_lib_frame4x4.png new file mode 100644 index 00000000..8cc320ad Binary files /dev/null and b/mods/paintings_lib/textures/paintings_lib_frame4x4.png differ diff --git a/mods/paintings_lib/textures/paintings_lib_paintbrush.png b/mods/paintings_lib/textures/paintings_lib_paintbrush.png new file mode 100644 index 00000000..55dcea2e Binary files /dev/null and b/mods/paintings_lib/textures/paintings_lib_paintbrush.png differ diff --git a/mods/.pbj_pup/README.txt b/mods/pbj_pup/README.txt similarity index 100% rename from mods/.pbj_pup/README.txt rename to mods/pbj_pup/README.txt diff --git a/mods/pbj_pup/init.lua b/mods/pbj_pup/init.lua new file mode 100644 index 00000000..05faf05c --- /dev/null +++ b/mods/pbj_pup/init.lua @@ -0,0 +1,183 @@ +-- mod check and sound settings + +local def = core.get_modpath("default") +local mcl = core.get_modpath("mcl_core") +local snd = mcl and mcl_sounds.node_sound_glass_defaults() or default.node_sound_glass_defaults() + +-- PB&J Pup node +--[[ +core.register_node("pbj_pup:pbj_pup", { + description = "PB&J Pup", + tiles = { + "pbj_pup_sides.png", "pbj_pup_jelly.png", "pbj_pup_sides.png", + "pbj_pup_sides.png", "pbj_pup_back.png", "pbj_pup_front.png" + }, + paramtype = "light", + light_source = 15, + paramtype2 = "facedir", + groups = {cracky = 2, handy = 1}, + is_ground_content = false, + sounds = snd, + _mcl_hardness = 1, +}) +]] +-- +-- Nyan Cat node + +core.register_node(":nyancat:nyancat", { + description = "Nyan Cat", + tiles = { + "nyancat_side.png", + "nyancat_side.png", + "nyancat_side.png", + "nyancat_side.png", + "nyancat_back.png", + "nyancat_front.png", + }, + paramtype = "light", + light_source = 15, + paramtype2 = "facedir", + groups = { cracky = 2, handy = 1 }, + is_ground_content = false, + sounds = snd, + _mcl_hardness = 1, +}) + +-- MooGNU node + +--[[ +core.register_node(":moognu:moognu", { + description = "MooGNU", + tiles = { + "moognu_side.png", "moognu_side.png", "moognu_side.png", + "moognu_side.png", "moognu_back.png", "moognu_front.png" + }, + paramtype = "light", + light_source = 15, + paramtype2 = "facedir", + groups = {cracky = 2, handy = 1}, + is_ground_content = false, + sounds = snd, + _mcl_hardness = 1, +}) +]] +-- + +-- Rainbow node + +core.register_node(":nyancat:nyancat_rainbow", { + description = "Rainbow", + tiles = { + "nyancat_rainbow.png^[transformR90", + "nyancat_rainbow.png^[transformR90", + "nyancat_rainbow.png", + }, + paramtype = "light", + light_source = 15, + paramtype2 = "facedir", + groups = { cracky = 2, handy = 1 }, + is_ground_content = false, + sounds = snd, + _mcl_hardness = 1, +}) + +-- Fuels +--[[ +core.register_craft({ + type = "fuel", + recipe = "pbj_pup:pbj_pup", + burntime = 10 +}) + +core.register_craft({ + type = "fuel", + recipe = "moognu:moognu", + burntime = 10 +}) +]] +-- + +core.register_craft({ + type = "fuel", + recipe = "nyancat:nyancat", + burntime = 10, +}) + +core.register_craft({ + type = "fuel", + recipe = "nyancat:nyancat_rainbow", + burntime = 10, +}) + +-- helper function to place Nyan/Pup/Moo with rainbow tail + +--local types = {"pbj_pup:pbj_pup", "nyancat:nyancat", "moognu:moognu"} + +local nyan = "nyancat:nyancat" + +local function place(pos, facedir, length) + if facedir > 3 then + facedir = 0 + end + + local tailvec = core.facedir_to_dir(facedir) + local p = { x = pos.x, y = pos.y, z = pos.z } + --local num = math.random(#types) + --core.swap_node(p, {name = types[num], param2 = facedir}) + core.swap_node(p, { name = nyan, param2 = facedir }) + + for i = 1, length do + p.x = p.x + tailvec.x + p.z = p.z + tailvec.z + + core.swap_node(p, { name = "nyancat:nyancat_rainbow", param2 = facedir }) + end +end + +-- Do we generate PB&J Pup and Nyan Cat's in world? + +if core.settings:get_bool("pbj_pup_generate") ~= false then + local function generate(minp, maxp, seed) + local height_min = -31000 + local height_max = -32 + local chance = 1000 + + if maxp.y < height_min or minp.y > height_max then + return + end + + local y_min = math.max(minp.y, height_min) + local y_max = math.min(maxp.y, height_max) + local volume = (maxp.x - minp.x + 1) * (y_max - y_min + 1) * (maxp.z - minp.z + 1) -- + local pr = PseudoRandom(seed + 9324342) + local max_num_nyancats = math.floor(volume / (16 * 16 * 16)) + for i = 1, max_num_nyancats do + if pr:next(0, chance) == 0 then + local x0 = pr:next(minp.x, maxp.x) + local y0 = pr:next(minp.y, maxp.y) + local z0 = pr:next(minp.z, maxp.z) + local p0 = { x = x0, y = y0, z = z0 } + + place(p0, pr:next(0, 3), pr:next(3, 15)) + end + end + end + + core.register_on_generated(generate) + + if def then + default.generate_nyancats = generate + end --Legacy +end + +-- Legacy + +core.register_alias("default:nyancat", "nyancat:nyancat") +core.register_alias("default:nyancat_rainbow", "nyancat:nyancat_rainbow") +--core.register_alias("pbj_pup:pbj_pup_candies", "nyancat:nyancat_rainbow") + +if def then + default.make_nyancat = place +end + +print("[MOD] PB&J Pup loaded") diff --git a/mods/.pbj_pup/license.txt b/mods/pbj_pup/license.txt similarity index 100% rename from mods/.pbj_pup/license.txt rename to mods/pbj_pup/license.txt diff --git a/mods/.pbj_pup/mod.conf b/mods/pbj_pup/mod.conf similarity index 100% rename from mods/.pbj_pup/mod.conf rename to mods/pbj_pup/mod.conf diff --git a/mods/.pbj_pup/screenshot.png b/mods/pbj_pup/screenshot.png similarity index 100% rename from mods/.pbj_pup/screenshot.png rename to mods/pbj_pup/screenshot.png diff --git a/mods/.pbj_pup/settingtypes.txt b/mods/pbj_pup/settingtypes.txt similarity index 100% rename from mods/.pbj_pup/settingtypes.txt rename to mods/pbj_pup/settingtypes.txt diff --git a/mods/.pbj_pup/textures/moognu_back.png b/mods/pbj_pup/textures/moognu_back.png similarity index 100% rename from mods/.pbj_pup/textures/moognu_back.png rename to mods/pbj_pup/textures/moognu_back.png diff --git a/mods/.pbj_pup/textures/moognu_front.png b/mods/pbj_pup/textures/moognu_front.png similarity index 100% rename from mods/.pbj_pup/textures/moognu_front.png rename to mods/pbj_pup/textures/moognu_front.png diff --git a/mods/.pbj_pup/textures/moognu_side.png b/mods/pbj_pup/textures/moognu_side.png similarity index 100% rename from mods/.pbj_pup/textures/moognu_side.png rename to mods/pbj_pup/textures/moognu_side.png diff --git a/mods/.pbj_pup/textures/nyancat_back.png b/mods/pbj_pup/textures/nyancat_back.png similarity index 100% rename from mods/.pbj_pup/textures/nyancat_back.png rename to mods/pbj_pup/textures/nyancat_back.png diff --git a/mods/.pbj_pup/textures/nyancat_front.png b/mods/pbj_pup/textures/nyancat_front.png similarity index 100% rename from mods/.pbj_pup/textures/nyancat_front.png rename to mods/pbj_pup/textures/nyancat_front.png diff --git a/mods/.pbj_pup/textures/nyancat_rainbow.png b/mods/pbj_pup/textures/nyancat_rainbow.png similarity index 100% rename from mods/.pbj_pup/textures/nyancat_rainbow.png rename to mods/pbj_pup/textures/nyancat_rainbow.png diff --git a/mods/.pbj_pup/textures/nyancat_side.png b/mods/pbj_pup/textures/nyancat_side.png similarity index 100% rename from mods/.pbj_pup/textures/nyancat_side.png rename to mods/pbj_pup/textures/nyancat_side.png diff --git a/mods/.pbj_pup/textures/pbj_pup_back.png b/mods/pbj_pup/textures/pbj_pup_back.png similarity index 100% rename from mods/.pbj_pup/textures/pbj_pup_back.png rename to mods/pbj_pup/textures/pbj_pup_back.png diff --git a/mods/.pbj_pup/textures/pbj_pup_front.png b/mods/pbj_pup/textures/pbj_pup_front.png similarity index 100% rename from mods/.pbj_pup/textures/pbj_pup_front.png rename to mods/pbj_pup/textures/pbj_pup_front.png diff --git a/mods/.pbj_pup/textures/pbj_pup_jelly.png b/mods/pbj_pup/textures/pbj_pup_jelly.png similarity index 100% rename from mods/.pbj_pup/textures/pbj_pup_jelly.png rename to mods/pbj_pup/textures/pbj_pup_jelly.png diff --git a/mods/.pbj_pup/textures/pbj_pup_sides.png b/mods/pbj_pup/textures/pbj_pup_sides.png similarity index 100% rename from mods/.pbj_pup/textures/pbj_pup_sides.png rename to mods/pbj_pup/textures/pbj_pup_sides.png diff --git a/mods/pipeworks/.github/workflows/luacheck.yml b/mods/pipeworks/.github/workflows/luacheck.yml new file mode 100644 index 00000000..3c99a991 --- /dev/null +++ b/mods/pipeworks/.github/workflows/luacheck.yml @@ -0,0 +1,10 @@ +name: luacheck +on: [push, pull_request] +jobs: + luacheck: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@master + - name: Luacheck + uses: lunarmodules/luacheck@master diff --git a/mods/pipeworks/.gitignore b/mods/pipeworks/.gitignore new file mode 100644 index 00000000..ef02689c --- /dev/null +++ b/mods/pipeworks/.gitignore @@ -0,0 +1,22 @@ +## Files related to minetest development cycle +/*.patch +# GNU Patch reject file +*.rej + +## Editors and Development environments +*~ +*.swp +*.bak* +*.orig +# Vim +*.vim +# Kate +.*.kate-swp +.swp.* +# Eclipse (LDT) +.project +.settings/ +.buildpath +.metadata +# Idea IDE +.idea/* diff --git a/mods/pipeworks/.luacheckrc b/mods/pipeworks/.luacheckrc new file mode 100644 index 00000000..f8348126 --- /dev/null +++ b/mods/pipeworks/.luacheckrc @@ -0,0 +1,19 @@ +unused_args = false +max_line_length= 240 +redefined = false +std = "minetest+max" + +globals = { + "pipeworks", + "luaentity" +} + +read_globals = { + -- luanti (TODO: remove after lunarmodules/luacheck releases a version with proper luanti support) + "core", + -- mods + "default", "mesecon", "digilines", + "screwdriver", "unified_inventory", + "i3", "mcl_experience", "awards", + "xcompat", "fakelib", "vizlib" +} diff --git a/mods/pipeworks/LICENSE b/mods/pipeworks/LICENSE new file mode 100644 index 00000000..c5885ae9 --- /dev/null +++ b/mods/pipeworks/LICENSE @@ -0,0 +1,600 @@ +License for code: LGPL 3.0 +License for media and all other assets: CC-by-SA 4.0 + +############################################################################### + + GNU LESSER GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + + This version of the GNU Lesser General Public License incorporates +the terms and conditions of version 3 of the GNU General Public +License, supplemented by the additional permissions listed below. + + 0. Additional Definitions. + + As used herein, "this License" refers to version 3 of the GNU Lesser +General Public License, and the "GNU GPL" refers to version 3 of the GNU +General Public License. + + "The Library" refers to a covered work governed by this License, +other than an Application or a Combined Work as defined below. + + An "Application" is any work that makes use of an interface provided +by the Library, but which is not otherwise based on the Library. +Defining a subclass of a class defined by the Library is deemed a mode +of using an interface provided by the Library. + + A "Combined Work" is a work produced by combining or linking an +Application with the Library. The particular version of the Library +with which the Combined Work was made is also called the "Linked +Version". + + The "Minimal Corresponding Source" for a Combined Work means the +Corresponding Source for the Combined Work, excluding any source code +for portions of the Combined Work that, considered in isolation, are +based on the Application, and not on the Linked Version. + + The "Corresponding Application Code" for a Combined Work means the +object code and/or source code for the Application, including any data +and utility programs needed for reproducing the Combined Work from the +Application, but excluding the System Libraries of the Combined Work. + + 1. Exception to Section 3 of the GNU GPL. + + You may convey a covered work under sections 3 and 4 of this License +without being bound by section 3 of the GNU GPL. + + 2. Conveying Modified Versions. + + If you modify a copy of the Library, and, in your modifications, a +facility refers to a function or data to be supplied by an Application +that uses the facility (other than as an argument passed when the +facility is invoked), then you may convey a copy of the modified +version: + + a) under this License, provided that you make a good faith effort to + ensure that, in the event an Application does not supply the + function or data, the facility still operates, and performs + whatever part of its purpose remains meaningful, or + + b) under the GNU GPL, with none of the additional permissions of + this License applicable to that copy. + + 3. Object Code Incorporating Material from Library Header Files. + + The object code form of an Application may incorporate material from +a header file that is part of the Library. You may convey such object +code under terms of your choice, provided that, if the incorporated +material is not limited to numerical parameters, data structure +layouts and accessors, or small macros, inline functions and templates +(ten or fewer lines in length), you do both of the following: + + a) Give prominent notice with each copy of the object code that the + Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the object code with a copy of the GNU GPL and this license + document. + + 4. Combined Works. + + You may convey a Combined Work under terms of your choice that, +taken together, effectively do not restrict modification of the +portions of the Library contained in the Combined Work and reverse +engineering for debugging such modifications, if you also do each of +the following: + + a) Give prominent notice with each copy of the Combined Work that + the Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the Combined Work with a copy of the GNU GPL and this license + document. + + c) For a Combined Work that displays copyright notices during + execution, include the copyright notice for the Library among + these notices, as well as a reference directing the user to the + copies of the GNU GPL and this license document. + + d) Do one of the following: + + 0) Convey the Minimal Corresponding Source under the terms of this + License, and the Corresponding Application Code in a form + suitable for, and under terms that permit, the user to + recombine or relink the Application with a modified version of + the Linked Version to produce a modified Combined Work, in the + manner specified by section 6 of the GNU GPL for conveying + Corresponding Source. + + 1) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (a) uses at run time + a copy of the Library already present on the user's computer + system, and (b) will operate properly with a modified version + of the Library that is interface-compatible with the Linked + Version. + + e) Provide Installation Information, but only if you would otherwise + be required to provide such information under section 6 of the + GNU GPL, and only to the extent that such information is + necessary to install and execute a modified version of the + Combined Work produced by recombining or relinking the + Application with a modified version of the Linked Version. (If + you use option 4d0, the Installation Information must accompany + the Minimal Corresponding Source and Corresponding Application + Code. If you use option 4d1, you must provide the Installation + Information in the manner specified by section 6 of the GNU GPL + for conveying Corresponding Source.) + + 5. Combined Libraries. + + You may place library facilities that are a work based on the +Library side by side in a single library together with other library +facilities that are not Applications and are not covered by this +License, and convey such a combined library under terms of your +choice, if you do both of the following: + + a) Accompany the combined library with a copy of the same work based + on the Library, uncombined with any other library facilities, + conveyed under the terms of this License. + + b) Give prominent notice with the combined library that part of it + is a work based on the Library, and explaining where to find the + accompanying uncombined form of the same work. + + 6. Revised Versions of the GNU Lesser General Public License. + + The Free Software Foundation may publish revised and/or new versions +of the GNU Lesser General Public License from time to time. Such new +versions will be similar in spirit to the present version, but may +differ in detail to address new problems or concerns. + + Each version is given a distinguishing version number. If the +Library as you received it specifies that a certain numbered version +of the GNU Lesser General Public License "or any later version" +applies to it, you have the option of following the terms and +conditions either of that published version or of any later version +published by the Free Software Foundation. If the Library as you +received it does not specify a version number of the GNU Lesser +General Public License, you may choose any version of the GNU Lesser +General Public License ever published by the Free Software Foundation. + + If the Library as you received it specifies that a proxy can decide +whether future versions of the GNU Lesser General Public License shall +apply, that proxy's public statement of acceptance of any version is +permanent authorization for you to choose that version for the +Library. + +############################################################################### + +Attribution-ShareAlike 4.0 International + +======================================================================= + +Creative Commons Corporation ("Creative Commons") is not a law firm and +does not provide legal services or legal advice. Distribution of +Creative Commons public licenses does not create a lawyer-client or +other relationship. Creative Commons makes its licenses and related +information available on an "as-is" basis. Creative Commons gives no +warranties regarding its licenses, any material licensed under their +terms and conditions, or any related information. Creative Commons +disclaims all liability for damages resulting from their use to the +fullest extent possible. + +Using Creative Commons Public Licenses + +Creative Commons public licenses provide a standard set of terms and +conditions that creators and other rights holders may use to share +original works of authorship and other material subject to copyright +and certain other rights specified in the public license below. The +following considerations are for informational purposes only, are not +exhaustive, and do not form part of our licenses. + + Considerations for licensors: Our public licenses are + intended for use by those authorized to give the public + permission to use material in ways otherwise restricted by + copyright and certain other rights. Our licenses are + irrevocable. Licensors should read and understand the terms + and conditions of the license they choose before applying it. + Licensors should also secure all rights necessary before + applying our licenses so that the public can reuse the + material as expected. Licensors should clearly mark any + material not subject to the license. This includes other CC- + licensed material, or material used under an exception or + limitation to copyright. More considerations for licensors: + wiki.creativecommons.org/Considerations_for_licensors + + Considerations for the public: By using one of our public + licenses, a licensor grants the public permission to use the + licensed material under specified terms and conditions. If + the licensor's permission is not necessary for any reason--for + example, because of any applicable exception or limitation to + copyright--then that use is not regulated by the license. Our + licenses grant only permissions under copyright and certain + other rights that a licensor has authority to grant. Use of + the licensed material may still be restricted for other + reasons, including because others have copyright or other + rights in the material. A licensor may make special requests, + such as asking that all changes be marked or described. + Although not required by our licenses, you are encouraged to + respect those requests where reasonable. More considerations + for the public: + wiki.creativecommons.org/Considerations_for_licensees + +======================================================================= + +Creative Commons Attribution-ShareAlike 4.0 International Public +License + +By exercising the Licensed Rights (defined below), You accept and agree +to be bound by the terms and conditions of this Creative Commons +Attribution-ShareAlike 4.0 International Public License ("Public +License"). To the extent this Public License may be interpreted as a +contract, You are granted the Licensed Rights in consideration of Your +acceptance of these terms and conditions, and the Licensor grants You +such rights in consideration of benefits the Licensor receives from +making the Licensed Material available under these terms and +conditions. + + +Section 1 -- Definitions. + + a. Adapted Material means material subject to Copyright and Similar + Rights that is derived from or based upon the Licensed Material + and in which the Licensed Material is translated, altered, + arranged, transformed, or otherwise modified in a manner requiring + permission under the Copyright and Similar Rights held by the + Licensor. For purposes of this Public License, where the Licensed + Material is a musical work, performance, or sound recording, + Adapted Material is always produced where the Licensed Material is + synched in timed relation with a moving image. + + b. Adapter's License means the license You apply to Your Copyright + and Similar Rights in Your contributions to Adapted Material in + accordance with the terms and conditions of this Public License. + + c. BY-SA Compatible License means a license listed at + creativecommons.org/compatiblelicenses, approved by Creative + Commons as essentially the equivalent of this Public License. + + d. Copyright and Similar Rights means copyright and/or similar rights + closely related to copyright including, without limitation, + performance, broadcast, sound recording, and Sui Generis Database + Rights, without regard to how the rights are labeled or + categorized. For purposes of this Public License, the rights + specified in Section 2(b)(1)-(2) are not Copyright and Similar + Rights. + + e. Effective Technological Measures means those measures that, in the + absence of proper authority, may not be circumvented under laws + fulfilling obligations under Article 11 of the WIPO Copyright + Treaty adopted on December 20, 1996, and/or similar international + agreements. + + f. Exceptions and Limitations means fair use, fair dealing, and/or + any other exception or limitation to Copyright and Similar Rights + that applies to Your use of the Licensed Material. + + g. License Elements means the license attributes listed in the name + of a Creative Commons Public License. The License Elements of this + Public License are Attribution and ShareAlike. + + h. Licensed Material means the artistic or literary work, database, + or other material to which the Licensor applied this Public + License. + + i. Licensed Rights means the rights granted to You subject to the + terms and conditions of this Public License, which are limited to + all Copyright and Similar Rights that apply to Your use of the + Licensed Material and that the Licensor has authority to license. + + j. Licensor means the individual(s) or entity(ies) granting rights + under this Public License. + + k. Share means to provide material to the public by any means or + process that requires permission under the Licensed Rights, such + as reproduction, public display, public performance, distribution, + dissemination, communication, or importation, and to make material + available to the public including in ways that members of the + public may access the material from a place and at a time + individually chosen by them. + + l. Sui Generis Database Rights means rights other than copyright + resulting from Directive 96/9/EC of the European Parliament and of + the Council of 11 March 1996 on the legal protection of databases, + as amended and/or succeeded, as well as other essentially + equivalent rights anywhere in the world. + + m. You means the individual or entity exercising the Licensed Rights + under this Public License. Your has a corresponding meaning. + + +Section 2 -- Scope. + + a. License grant. + + 1. Subject to the terms and conditions of this Public License, + the Licensor hereby grants You a worldwide, royalty-free, + non-sublicensable, non-exclusive, irrevocable license to + exercise the Licensed Rights in the Licensed Material to: + + a. reproduce and Share the Licensed Material, in whole or + in part; and + + b. produce, reproduce, and Share Adapted Material. + + 2. Exceptions and Limitations. For the avoidance of doubt, where + Exceptions and Limitations apply to Your use, this Public + License does not apply, and You do not need to comply with + its terms and conditions. + + 3. Term. The term of this Public License is specified in Section + 6(a). + + 4. Media and formats; technical modifications allowed. The + Licensor authorizes You to exercise the Licensed Rights in + all media and formats whether now known or hereafter created, + and to make technical modifications necessary to do so. The + Licensor waives and/or agrees not to assert any right or + authority to forbid You from making technical modifications + necessary to exercise the Licensed Rights, including + technical modifications necessary to circumvent Effective + Technological Measures. For purposes of this Public License, + simply making modifications authorized by this Section 2(a) + (4) never produces Adapted Material. + + 5. Downstream recipients. + + a. Offer from the Licensor -- Licensed Material. Every + recipient of the Licensed Material automatically + receives an offer from the Licensor to exercise the + Licensed Rights under the terms and conditions of this + Public License. + + b. Additional offer from the Licensor -- Adapted Material. + Every recipient of Adapted Material from You + automatically receives an offer from the Licensor to + exercise the Licensed Rights in the Adapted Material + under the conditions of the Adapter's License You apply. + + c. No downstream restrictions. You may not offer or impose + any additional or different terms or conditions on, or + apply any Effective Technological Measures to, the + Licensed Material if doing so restricts exercise of the + Licensed Rights by any recipient of the Licensed + Material. + + 6. No endorsement. Nothing in this Public License constitutes or + may be construed as permission to assert or imply that You + are, or that Your use of the Licensed Material is, connected + with, or sponsored, endorsed, or granted official status by, + the Licensor or others designated to receive attribution as + provided in Section 3(a)(1)(A)(i). + + b. Other rights. + + 1. Moral rights, such as the right of integrity, are not + licensed under this Public License, nor are publicity, + privacy, and/or other similar personality rights; however, to + the extent possible, the Licensor waives and/or agrees not to + assert any such rights held by the Licensor to the limited + extent necessary to allow You to exercise the Licensed + Rights, but not otherwise. + + 2. Patent and trademark rights are not licensed under this + Public License. + + 3. To the extent possible, the Licensor waives any right to + collect royalties from You for the exercise of the Licensed + Rights, whether directly or through a collecting society + under any voluntary or waivable statutory or compulsory + licensing scheme. In all other cases the Licensor expressly + reserves any right to collect such royalties. + + +Section 3 -- License Conditions. + +Your exercise of the Licensed Rights is expressly made subject to the +following conditions. + + a. Attribution. + + 1. If You Share the Licensed Material (including in modified + form), You must: + + a. retain the following if it is supplied by the Licensor + with the Licensed Material: + + i. identification of the creator(s) of the Licensed + Material and any others designated to receive + attribution, in any reasonable manner requested by + the Licensor (including by pseudonym if + designated); + + ii. a copyright notice; + + iii. a notice that refers to this Public License; + + iv. a notice that refers to the disclaimer of + warranties; + + v. a URI or hyperlink to the Licensed Material to the + extent reasonably practicable; + + b. indicate if You modified the Licensed Material and + retain an indication of any previous modifications; and + + c. indicate the Licensed Material is licensed under this + Public License, and include the text of, or the URI or + hyperlink to, this Public License. + + 2. You may satisfy the conditions in Section 3(a)(1) in any + reasonable manner based on the medium, means, and context in + which You Share the Licensed Material. For example, it may be + reasonable to satisfy the conditions by providing a URI or + hyperlink to a resource that includes the required + information. + + 3. If requested by the Licensor, You must remove any of the + information required by Section 3(a)(1)(A) to the extent + reasonably practicable. + + b. ShareAlike. + + In addition to the conditions in Section 3(a), if You Share + Adapted Material You produce, the following conditions also apply. + + 1. The Adapter's License You apply must be a Creative Commons + license with the same License Elements, this version or + later, or a BY-SA Compatible License. + + 2. You must include the text of, or the URI or hyperlink to, the + Adapter's License You apply. You may satisfy this condition + in any reasonable manner based on the medium, means, and + context in which You Share Adapted Material. + + 3. You may not offer or impose any additional or different terms + or conditions on, or apply any Effective Technological + Measures to, Adapted Material that restrict exercise of the + rights granted under the Adapter's License You apply. + + +Section 4 -- Sui Generis Database Rights. + +Where the Licensed Rights include Sui Generis Database Rights that +apply to Your use of the Licensed Material: + + a. for the avoidance of doubt, Section 2(a)(1) grants You the right + to extract, reuse, reproduce, and Share all or a substantial + portion of the contents of the database; + + b. if You include all or a substantial portion of the database + contents in a database in which You have Sui Generis Database + Rights, then the database in which You have Sui Generis Database + Rights (but not its individual contents) is Adapted Material, + + including for purposes of Section 3(b); and + c. You must comply with the conditions in Section 3(a) if You Share + all or a substantial portion of the contents of the database. + +For the avoidance of doubt, this Section 4 supplements and does not +replace Your obligations under this Public License where the Licensed +Rights include other Copyright and Similar Rights. + + +Section 5 -- Disclaimer of Warranties and Limitation of Liability. + + a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE + EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS + AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF + ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, + IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, + WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, + ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT + KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT + ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. + + b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE + TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, + NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, + INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, + COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR + USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN + ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR + DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR + IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. + + c. The disclaimer of warranties and limitation of liability provided + above shall be interpreted in a manner that, to the extent + possible, most closely approximates an absolute disclaimer and + waiver of all liability. + + +Section 6 -- Term and Termination. + + a. This Public License applies for the term of the Copyright and + Similar Rights licensed here. However, if You fail to comply with + this Public License, then Your rights under this Public License + terminate automatically. + + b. Where Your right to use the Licensed Material has terminated under + Section 6(a), it reinstates: + + 1. automatically as of the date the violation is cured, provided + it is cured within 30 days of Your discovery of the + violation; or + + 2. upon express reinstatement by the Licensor. + + For the avoidance of doubt, this Section 6(b) does not affect any + right the Licensor may have to seek remedies for Your violations + of this Public License. + + c. For the avoidance of doubt, the Licensor may also offer the + Licensed Material under separate terms or conditions or stop + distributing the Licensed Material at any time; however, doing so + will not terminate this Public License. + + d. Sections 1, 5, 6, 7, and 8 survive termination of this Public + License. + + +Section 7 -- Other Terms and Conditions. + + a. The Licensor shall not be bound by any additional or different + terms or conditions communicated by You unless expressly agreed. + + b. Any arrangements, understandings, or agreements regarding the + Licensed Material not stated herein are separate from and + independent of the terms and conditions of this Public License. + + +Section 8 -- Interpretation. + + a. For the avoidance of doubt, this Public License does not, and + shall not be interpreted to, reduce, limit, restrict, or impose + conditions on any use of the Licensed Material that could lawfully + be made without permission under this Public License. + + b. To the extent possible, if any provision of this Public License is + deemed unenforceable, it shall be automatically reformed to the + minimum extent necessary to make it enforceable. If the provision + cannot be reformed, it shall be severed from this Public License + without affecting the enforceability of the remaining terms and + conditions. + + c. No term or condition of this Public License will be waived and no + failure to comply consented to unless expressly agreed to by the + Licensor. + + d. Nothing in this Public License constitutes or may be interpreted + as a limitation upon, or waiver of, any privileges and immunities + that apply to the Licensor or You, including from the legal + processes of any jurisdiction or authority. + + +======================================================================= + +Creative Commons is not a party to its public +licenses. Notwithstanding, Creative Commons may elect to apply one of +its public licenses to material it publishes and in those instances +will be considered the “Licensor.” The text of the Creative Commons +public licenses is dedicated to the public domain under the CC0 Public +Domain Dedication. Except for the limited purpose of indicating that +material is shared under a Creative Commons public license or as +otherwise permitted by the Creative Commons policies published at +creativecommons.org/policies, Creative Commons does not authorize the +use of the trademark "Creative Commons" or any other trademark or logo +of Creative Commons without its prior written consent including, +without limitation, in connection with any unauthorized modifications +to any of its public licenses or any other arrangements, +understandings, or agreements concerning use of licensed material. For +the avoidance of doubt, this paragraph does not form part of the +public licenses. + +Creative Commons may be contacted at creativecommons.org. diff --git a/mods/pipeworks/README b/mods/pipeworks/README new file mode 100644 index 00000000..ea834f29 --- /dev/null +++ b/mods/pipeworks/README @@ -0,0 +1,26 @@ +This mod uses nodeboxes to supply a complete set of 3D pipes and tubes, +along devices that work with them. + +See https://github.com/mt-mods/pipeworks/wiki/ for detailed information about usage of this mod. + +Unlike the previous version of this mod, these pipes are rounded, and when +placed, they'll automatically join together as needed. Pipes can go vertically +or horizontally, and there are enough nodes defined to allow for all possible +connections. Valves and pumps can only be placed horizontally, and will +automatically rotate and join with neighboring pipes as objects are added, as +well as joining with each other under certain circumstances. + +Pipes come in two variants: one type bears one or more dark windows on each +pipe, suggesting they're empty, while the other type bears green-tinted +windows, as if full (the two colors should also be easy to select if you want +to change them in a paint program). These windows only appear on straight +lengths and on certain junctions. + +This mod is a work in progress. + +Please note that owing to the nature of this mod, I have opted to use 64px +textures. Anything less just looks terrible. + +The teleport tube database used to be kept in a file named 'teleport_tubes'. +The database is now kept in mod storage. The migration from 'teleport_tubes' is +automatic. The old file is then kept around but is not used at all. diff --git a/mods/pipeworks/autocrafter.lua b/mods/pipeworks/autocrafter.lua new file mode 100644 index 00000000..0b600f5a --- /dev/null +++ b/mods/pipeworks/autocrafter.lua @@ -0,0 +1,649 @@ +local S = minetest.get_translator("pipeworks") +-- cache some recipe data to avoid calling the slow function +-- minetest.get_craft_result() every second +local autocrafterCache = {} + +local craft_time = 1 +local next = next + +local function count_index(invlist) + local index = {} + for _, stack in pairs(invlist) do + stack = ItemStack(stack) + if not stack:is_empty() then + local stack_name = stack:get_name() + index[stack_name] = (index[stack_name] or 0) + stack:get_count() + end + end + return index +end + +local function get_item_info(stack) + local name = stack:get_name() + local def = minetest.registered_items[name] + local description = def and def.description or S("Unknown item") + return description, name +end + +-- Get best matching recipe for what user has put in crafting grid. +-- This function does not consider crafting method (mix vs craft) +local function get_matching_craft(output_name, example_recipe) + local recipes = minetest.get_all_craft_recipes(output_name) + if not recipes then + return example_recipe + end + + if 1 == #recipes then + return recipes[1].items + end + + local index_example = count_index(example_recipe) + local best_score = 0 + local index_recipe, best_index, score, group + for i = 1, #recipes do + score = 0 + index_recipe = count_index(recipes[i].items) + for recipe_item_name, _ in pairs(index_recipe) do + if index_example[recipe_item_name] then + score = score + 1 + elseif recipe_item_name:sub(1, 6) == "group:" then + group = recipe_item_name:sub(7) + for example_item_name, _ in pairs(index_example) do + if minetest.get_item_group( + example_item_name, group) ~= 0 + then + score = score + 1 + break + end + end + end + end + if best_score < score then + best_index = i + best_score = score + end + end + + return best_index and recipes[best_index].items or example_recipe +end + +local function get_craft(pos, inventory, hash) + local hash = hash or minetest.hash_node_position(pos) + local craft = autocrafterCache[hash] + if craft then return craft end + + local example_recipe = inventory:get_list("recipe") + local output, decremented_input = minetest.get_craft_result({ + method = "normal", width = 3, items = example_recipe + }) + + local recipe = example_recipe + if output and not output.item:is_empty() then + recipe = get_matching_craft(output.item:get_name(), example_recipe) + end + + craft = { + recipe = recipe, + consumption = count_index(recipe), + output = output, + decremented_input = decremented_input.items + } + autocrafterCache[hash] = craft + return craft +end + +-- From a consumption table with groups and an inventory index, +-- build a consumption table without groups +local function calculate_consumption(inv_index, consumption_with_groups) + inv_index = table.copy(inv_index) + consumption_with_groups = table.copy(consumption_with_groups) + + -- table of items to actually consume + local consumption = {} + -- table of ingredients defined as one or more groups each + local grouped_ingredients = {} + + -- First consume all non-group requirements + -- This is done to avoid consuming a non-group item which + -- is also in a group + for key, count in pairs(consumption_with_groups) do + if key:sub(1, 6) == "group:" then + -- build table with group recipe items while looping + grouped_ingredients[key] = key:sub(7):split(',') + else + -- if the item to consume doesn't exist in inventory + -- or not enough of them, abort crafting + if not inv_index[key] or inv_index[key] < count then + return nil + end + + consumption[key] = (consumption[key] or 0) + count + consumption_with_groups[key] = consumption_with_groups[key] - count + assert(consumption_with_groups[key] == 0) + consumption_with_groups[key] = nil + inv_index[key] = inv_index[key] - count + assert(inv_index[key] >= 0) + end + end + + -- helper function to resolve matching ingredients with multiple group + -- requirements + local function ingredient_groups_match_item(ingredient_groups, name) + local found = 0 + local count_ingredient_groups = #ingredient_groups + for i = 1, count_ingredient_groups do + if minetest.get_item_group(name, + ingredient_groups[i]) ~= 0 + then + found = found + 1 + end + end + return found == count_ingredient_groups + end + + -- Next, resolve groups using the remaining items in the inventory + if next(grouped_ingredients) ~= nil then + local take + for itemname, count in pairs(inv_index) do + if count > 0 then + -- groupname is the string as defined by recipe. + -- e.g. group:dye,color_blue + -- groups holds the group names split into a list + -- ready to be passed to core.get_item_group() + for groupname, groups in pairs(grouped_ingredients) do + if consumption_with_groups[groupname] > 0 + and ingredient_groups_match_item(groups, itemname) + then + take = math.min(count, + consumption_with_groups[groupname]) + consumption_with_groups[groupname] = + consumption_with_groups[groupname] - take + + assert(consumption_with_groups[groupname] >= 0) + consumption[itemname] = + (consumption[itemname] or 0) + take + + inv_index[itemname] = + inv_index[itemname] - take + assert(inv_index[itemname] >= 0) + end + end + end + end + end + + -- Finally, check everything has been consumed + for key, count in pairs(consumption_with_groups) do + if count > 0 then + return nil + end + end + + return consumption +end + +local function has_room_for_output(list_output, index_output) + local name + local empty_count = 0 + for _, item in pairs(list_output) do + if item:is_empty() then + empty_count = empty_count + 1 + else + name = item:get_name() + if index_output[name] then + index_output[name] = index_output[name] - item:get_free_space() + end + end + end + for _, count in pairs(index_output) do + if count > 0 then + empty_count = empty_count - 1 + end + end + if empty_count < 0 then + return false + end + + return true +end + +local function autocraft(inventory, craft) + if not craft then return false end + + -- check if output and all replacements fit in dst + local output = craft.output.item + local out_items = count_index(craft.decremented_input) + out_items[output:get_name()] = + (out_items[output:get_name()] or 0) + output:get_count() + + if not has_room_for_output(inventory:get_list("dst"), out_items) then + return false + end + + -- check if we have enough material available + local inv_index = count_index(inventory:get_list("src")) + local consumption = calculate_consumption(inv_index, craft.consumption) + if not consumption then + return false + end + + -- consume material + for itemname, number in pairs(consumption) do + -- We have to do that since remove_item does not work if count > stack_max + for _ = 1, number do + inventory:remove_item("src", ItemStack(itemname)) + end + end + + -- craft the result into the dst inventory and add any "replacements" as well + inventory:add_item("dst", output) + local leftover + for i = 1, 9 do + leftover = inventory:add_item("dst", craft.decremented_input[i]) + if leftover and not leftover:is_empty() then + minetest.log("warning", "[pipeworks] autocrafter didn't " .. + "calculate output space correctly.") + end + end + return true +end + +-- returns false to stop the timer, true to continue running +-- is started only from start_autocrafter(pos) after sanity checks and +-- recipe is cached +local function run_autocrafter(pos, elapsed) + local meta = minetest.get_meta(pos) + local inventory = meta:get_inventory() + local craft = get_craft(pos, inventory) + local output_item = craft.output.item + -- only use crafts that have an actual result + if output_item:is_empty() then + meta:set_string("infotext", S("unconfigured Autocrafter: unknown recipe")) + return false + end + + for _ = 1, math.floor(elapsed / craft_time) do + local continue = autocraft(inventory, craft) + if not continue then return false end + end + return true +end + +local function start_crafter(pos) + local meta = minetest.get_meta(pos) + if meta:get_int("enabled") == 1 then + local timer = minetest.get_node_timer(pos) + if not timer:is_started() then + timer:start(craft_time) + end + end +end + +local function after_inventory_change(pos) + start_crafter(pos) +end + +-- note, that this function assumes allready being updated to virtual items +-- and doesn't handle recipes with stacksizes > 1 +local function after_recipe_change(pos, inventory) + local hash = minetest.hash_node_position(pos) + local meta = minetest.get_meta(pos) + autocrafterCache[hash] = nil + -- if we emptied the grid, there's no point in keeping it running or cached + if inventory:is_empty("recipe") then + minetest.get_node_timer(pos):stop() + meta:set_string("infotext", S("unconfigured Autocrafter")) + inventory:set_stack("output", 1, "") + return + end + local craft = get_craft(pos, inventory, hash) + local output_item = craft.output.item + local description, name = get_item_info(output_item) + meta:set_string("infotext", S("'@1' Autocrafter (@2)", description, name)) + inventory:set_stack("output", 1, output_item) + + after_inventory_change(pos) +end + +-- clean out unknown items and groups, which would be handled like unknown +-- items in the crafting grid +-- if minetest supports query by group one day, this might replace them +-- with a canonical version instead +local function normalize(item_list) + for i = 1, #item_list do + local name = item_list[i] + if not minetest.registered_items[name] then + item_list[i] = "" + end + end + return item_list +end + +local function on_output_change(pos, inventory, stack) + if not stack then + inventory:set_list("output", {}) + inventory:set_list("recipe", {}) + else + local input = minetest.get_craft_recipe(stack:get_name()) + if not input.items or input.type ~= "normal" then return end + local items, width = normalize(input.items), input.width + local item_idx, width_idx = 1, 1 + for i = 1, 9 do + if width_idx <= width then + inventory:set_stack("recipe", i, items[item_idx]) + item_idx = item_idx + 1 + else + inventory:set_stack("recipe", i, ItemStack("")) + end + width_idx = (width_idx < 3) and (width_idx + 1) or 1 + end + -- we'll set the output slot in after_recipe_change to the actual + -- result of the new recipe + end + after_recipe_change(pos, inventory) +end + +-- returns false if we shouldn't bother attempting to start the timer again +-- after this +local function update_meta(meta, enabled) + local state = enabled and "on" or "off" + meta:set_int("enabled", enabled and 1 or 0) + local list_backgrounds = "" + if minetest.get_modpath("i3") or minetest.get_modpath("mcl_formspec") then + list_backgrounds = "style_type[box;colors=#666]" + for i = 0, 2 do + for j = 0, 2 do + list_backgrounds = list_backgrounds .. "box[" .. + 0.22 + (i * 1.25) .. "," .. 0.22 + (j * 1.25) .. ";1,1;]" + end + end + for i = 0, 3 do + for j = 0, 2 do + list_backgrounds = list_backgrounds .. "box[" .. + 5.28 + (i * 1.25) .. "," .. 0.22 + (j * 1.25) .. ";1,1;]" + end + end + for i = 0, 7 do + for j = 0, 2 do + list_backgrounds = list_backgrounds .. "box[" .. + 0.22 + (i * 1.25) .. "," .. 5 + (j * 1.25) .. ";1,1;]" + end + end + end + local size = "10.2,14" + local fs = + "formspec_version[2]" .. + "size[" .. size .. "]" .. + pipeworks.fs_helpers.get_prepends(size) .. + list_backgrounds .. + "list[context;recipe;0.22,0.22;3,3;]" .. + "image[4,1.45;1,1;[combine:16x16^[noalpha^[colorize:#141318:255]" .. + "list[context;output;4,1.45;1,1;]" .. + "image_button[4,2.6;1,0.6;pipeworks_button_" .. state .. ".png;" .. + state .. ";;;false;pipeworks_button_interm.png]" .. + "list[context;dst;5.28,0.22;4,3;]" .. + "list[context;src;0.22,5;8,3;]" .. + pipeworks.fs_helpers.get_inv(9) .. + "listring[current_player;main]" .. + "listring[context;src]" .. + "listring[current_player;main]" .. + "listring[context;dst]" .. + "listring[current_player;main]" + if minetest.get_modpath("digilines") then + fs = fs .. "field[0.22,4.1;4.5,0.75;channel;" .. S("Channel") .. + ";${channel}]" .. + "button[5,4.1;1.5,0.75;set_channel;" .. S("Set") .. "]" .. + "button_exit[6.8,4.1;2,0.75;close;" .. S("Close") .. "]" + end + meta:set_string("formspec", fs) + + -- toggling the button doesn't quite call for running a recipe change check + -- so instead we run a minimal version for infotext setting only + -- this might be more written code, but actually executes less + local output = meta:get_inventory():get_stack("output", 1) + if output:is_empty() then -- doesn't matter if paused or not + meta:set_string("infotext", S("unconfigured Autocrafter")) + return false + end + + local description, name = get_item_info(output) + local infotext = enabled and S("'@1' Autocrafter (@2)", description, name) + or S("paused '@1' Autocrafter", description) + + meta:set_string("infotext", infotext) + return enabled +end + +-- 1st version of the autocrafter had actual items in the crafting grid +-- the 2nd replaced these with virtual items, dropped the content on update and +-- set "virtual_items" to string "1" +-- the third added an output inventory, changed the formspec and added a button +-- for enabling/disabling +-- so we work out way backwards on this history and update each single case +-- to the newest version +local function upgrade_autocrafter(pos, meta) + local meta = meta or minetest.get_meta(pos) + local inv = meta:get_inventory() + + if inv:get_size("output") == 0 then -- we are version 2 or 1 + inv:set_size("output", 1) + -- migrate the old autocrafters into an "enabled" state + update_meta(meta, true) + + if meta:get_string("virtual_items") == "1" then -- we are version 2 + -- we already dropped stuff, so lets remove the metadatasetting + -- (we are not being called again for this node) + meta:set_string("virtual_items", "") + else -- we are version 1 + local recipe = inv:get_list("recipe") + if not recipe then return end + for idx, stack in ipairs(recipe) do + if not stack:is_empty() then + minetest.add_item(pos, stack) + stack:set_count(1) + stack:set_wear(0) + inv:set_stack("recipe", idx, stack) + end + end + end + + -- update the recipe, cache, and start the crafter + autocrafterCache[minetest.hash_node_position(pos)] = nil + after_recipe_change(pos, inv) + end +end + +minetest.register_node("pipeworks:autocrafter", { + description = S("Autocrafter"), + drawtype = "normal", + tiles = {"pipeworks_autocrafter.png"}, + groups = {snappy = 3, tubedevice = 1, tubedevice_receiver = 1, dig_generic = 1, axey=1, handy=1, pickaxey=1}, + is_ground_content = false, + _mcl_hardness=0.8, + tube = {insert_object = function(pos, node, stack, direction) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + local added = inv:add_item("src", stack) + after_inventory_change(pos) + return added + end, + can_insert = function(pos, node, stack, direction) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + return inv:room_for_item("src", stack) + end, + input_inventory = "dst", + connect_sides = { + left = 1, right = 1, front = 1, back = 1, top = 1, bottom = 1 + } + }, + on_construct = function(pos) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + inv:set_size("src", 3 * 8) + inv:set_size("recipe", 3 * 3) + inv:set_size("dst", 4 * 3) + inv:set_size("output", 1) + update_meta(meta, false) + end, + on_receive_fields = function(pos, formname, fields, sender) + if (fields.quit and not fields.key_enter_field) + or not pipeworks.may_configure(pos, sender) + then + return + end + local meta = minetest.get_meta(pos) + if fields.on then + update_meta(meta, false) + minetest.get_node_timer(pos):stop() + elseif fields.off then + if update_meta(meta, true) then + start_crafter(pos) + end + end + if fields.channel then + meta:set_string("channel", fields.channel) + end + end, + can_dig = function(pos, player) + upgrade_autocrafter(pos) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + return (inv:is_empty("src") and inv:is_empty("dst")) + end, + after_place_node = pipeworks.scan_for_tube_objects, + after_dig_node = function(pos) + pipeworks.scan_for_tube_objects(pos) + end, + on_destruct = function(pos) + autocrafterCache[minetest.hash_node_position(pos)] = nil + end, + allow_metadata_inventory_put = function(pos, listname, index, stack, player) + if not pipeworks.may_configure(pos, player) then return 0 end + upgrade_autocrafter(pos) + local inv = minetest.get_meta(pos):get_inventory() + if listname == "recipe" then + stack:set_count(1) + inv:set_stack(listname, index, stack) + after_recipe_change(pos, inv) + return 0 + elseif listname == "output" then + on_output_change(pos, inv, stack) + return 0 + end + after_inventory_change(pos) + return stack:get_count() + end, + allow_metadata_inventory_take = function(pos, listname, index, stack, player) + if not pipeworks.may_configure(pos, player) then + minetest.log("action", string.format("%s attempted to take from " .. + "autocrafter at %s", + player:get_player_name(), minetest.pos_to_string(pos))) + return 0 + end + upgrade_autocrafter(pos) + local inv = minetest.get_meta(pos):get_inventory() + if listname == "recipe" then + inv:set_stack(listname, index, ItemStack("")) + after_recipe_change(pos, inv) + return 0 + elseif listname == "output" then + on_output_change(pos, inv, nil) + return 0 + end + after_inventory_change(pos) + return stack:get_count() + end, + allow_metadata_inventory_move = function( + pos, from_list, from_index, to_list, to_index, count, player) + + if not pipeworks.may_configure(pos, player) then return 0 end + upgrade_autocrafter(pos) + local inv = minetest.get_meta(pos):get_inventory() + local stack = inv:get_stack(from_list, from_index) + + if to_list == "output" then + on_output_change(pos, inv, stack) + return 0 + elseif from_list == "output" then + on_output_change(pos, inv, nil) + if to_list ~= "recipe" then + return 0 + end -- else fall through to recipe list handling + end + + if from_list == "recipe" or to_list == "recipe" then + if from_list == "recipe" then + inv:set_stack(from_list, from_index, ItemStack("")) + end + if to_list == "recipe" then + stack:set_count(1) + inv:set_stack(to_list, to_index, stack) + end + after_recipe_change(pos, inv) + return 0 + end + + after_inventory_change(pos) + return count + end, + on_timer = run_autocrafter, + digilines = { + receptor = {}, + effector = { + action = function(pos,node,channel,msg) + local meta = minetest.get_meta(pos) + if channel ~= meta:get_string("channel") then return end + if type(msg) == "table" then + if #msg < 3 then return end + local inv = meta:get_inventory() + for y = 0, 2, 1 do + local row = msg[y + 1] + for x = 1, 3, 1 do + local slot = y * 3 + x + if type(row) == "table" and minetest.registered_items[row[x]] then + inv:set_stack("recipe", slot, ItemStack( + row[x])) + else + inv:set_stack("recipe", slot, ItemStack("")) + end + end + end + after_recipe_change(pos,inv) + elseif msg == "get_recipe" then + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + local recipe = {} + for y = 0, 2, 1 do + local row = {} + for x = 1, 3, 1 do + local slot = y * 3 + x + table.insert(row, inv:get_stack( + "recipe", slot):get_name()) + end + table.insert(recipe, row) + end + local setchan = meta:get_string("channel") + local output = inv:get_stack("output", 1) + digilines.receptor_send(pos, digilines.rules.default, setchan, { + recipe = recipe, + result = { + name = output:get_name(), + count = output:get_count(), + } + }) + elseif msg == "off" then + update_meta(meta, false) + minetest.get_node_timer(pos):stop() + elseif msg == "on" then + if update_meta(meta, true) then + start_crafter(pos) + end + elseif msg == "single" then + run_autocrafter(pos,1) + end + end, + }, + }, +}) +pipeworks.ui_cat_tube_list[#pipeworks.ui_cat_tube_list + 1] = "pipeworks:autocrafter" diff --git a/mods/pipeworks/autodetect-finite-water.lua b/mods/pipeworks/autodetect-finite-water.lua new file mode 100644 index 00000000..d218e806 --- /dev/null +++ b/mods/pipeworks/autodetect-finite-water.lua @@ -0,0 +1,9 @@ +-- enable finite liquid in the presence of dynamic liquid to preserve water volume. +local enable = false + +if minetest.get_modpath("dynamic_liquid") then + pipeworks.logger("detected mod dynamic_liquid, enabling finite liquid flag") + enable = true +end + +pipeworks.toggles.finite_water = enable diff --git a/mods/pipeworks/autoplace_pipes.lua b/mods/pipeworks/autoplace_pipes.lua new file mode 100644 index 00000000..fc3d7d09 --- /dev/null +++ b/mods/pipeworks/autoplace_pipes.lua @@ -0,0 +1,226 @@ +--[[ + + autorouting for pipes + + To connect pipes to some node, include this in the node def... + + pipe_connections = { + pattern = , -- if supplied, search for this pattern instead of the exact node name + left = , -- true (or 1) if the left side of the node needs to connect to a pipe + right = , -- or from the right side, etc. + top = , + bottom = , + front = , + back = , + left_param2 = , -- the node must have this param2 to connect from the left + right_param2 = , -- or right, etc. + top_param2 = , -- Omit some or all of these to skip checking param2 for those sides + bottom_param2 = , + front_param2 = , + back_param2 = , + }, + + ...then add, pipeworks.scan_for_pipe_objects(pos) + to your node's after_dig_node and after_place_node callbacks. + +]]-- + +-- get the axis dir (just 6 faces) of target node, assumes the pipe is the axis + +function pipeworks.get_axis_dir(nodetable, pattern) + local pxm,pxp,pym,pyp,pzm,pzp + + if string.find(nodetable.nxm.name, pattern) + and minetest.facedir_to_dir(nodetable.nxm.param2).x ~= 0 then + pxm=1 + end + + if string.find(nodetable.nxp.name, pattern) + and minetest.facedir_to_dir(nodetable.nxp.param2).x ~= 0 then + pxp=1 + end + + if string.find(nodetable.nzm.name, pattern) + and minetest.facedir_to_dir(nodetable.nzm.param2).z ~= 0 then + pzm=1 + end + + if string.find(nodetable.nzp.name, pattern) + and minetest.facedir_to_dir(nodetable.nzp.param2).z ~= 0 then + pzp=1 + end + + if string.find(nodetable.nym.name, pattern) + and minetest.facedir_to_dir(nodetable.nym.param2).y ~= 0 then + pym=1 + end + + if string.find(nodetable.nyp.name, pattern) + and minetest.facedir_to_dir(nodetable.nyp.param2).y ~= 0 then + pyp=1 + end + local match = pxm or pxp or pym or pyp or pzm or pzp + return match,pxm,pxp,pym,pyp,pzm,pzp +end + +local tube_table = {[0] = 1, 2, 2, 4, 2, 4, 4, 5, 2, 3, 4, 6, 4, 6, 5, 7, 2, 4, 3, 6, 4, 5, 6, 7, 4, 6, 6, 8, 5, 7, 7, 9, 2, 4, 4, 5, 3, 6, 6, 7, 4, 6, 5, 7, 6, 8, 7, 9, 4, 5, 6, 7, 6, 7, 8, 9, 5, 7, 7, 9, 7, 9, 9, 10} +local tube_table_facedirs = {[0] = 0, 0, 5, 0, 3, 4, 3, 0, 2, 0, 2, 0, 6, 4, 3, 0, 7, 12, 5, 12, 7, 4, 5, 5, 18, 20, 16, 0, 7, 4, 7, 0, 1, 8, 1, 1, 1, 13, 1, 1, 10, 8, 2, 2, 17, 4, 3, 6, 9, 9, 9, 9, 21, 13, 1, 1, 10, 10, 11, 2, 19, 4, 3, 0} + +local function autoroute_pipes(pos) + local nctr = minetest.get_node(pos) + local state = "_empty" + if (string.find(nctr.name, "pipeworks:pipe_") == nil) then return end + if (string.find(nctr.name, "_loaded") ~= nil) then state = "_loaded" end + local nsurround = pipeworks.scan_pipe_surroundings(pos) + + if nsurround == 0 then nsurround = 9 end + minetest.swap_node(pos, {name = "pipeworks:pipe_"..tube_table[nsurround]..state, + param2 = tube_table_facedirs[nsurround]}) +end + +function pipeworks.scan_for_pipe_objects(pos) + autoroute_pipes({ x=pos.x-1, y=pos.y , z=pos.z }) + autoroute_pipes({ x=pos.x+1, y=pos.y , z=pos.z }) + autoroute_pipes({ x=pos.x , y=pos.y-1, z=pos.z }) + autoroute_pipes({ x=pos.x , y=pos.y+1, z=pos.z }) + autoroute_pipes({ x=pos.x , y=pos.y , z=pos.z-1 }) + autoroute_pipes({ x=pos.x , y=pos.y , z=pos.z+1 }) + autoroute_pipes(pos) +end + +-- auto-rotation code for various devices the pipes attach to + +function pipeworks.scan_pipe_surroundings(pos) + local pxm=0 + local pxp=0 + local pym=0 + local pyp=0 + local pzm=0 + local pzp=0 + + local nxm = minetest.get_node({ x=pos.x-1, y=pos.y , z=pos.z }) + local nxp = minetest.get_node({ x=pos.x+1, y=pos.y , z=pos.z }) + local nym = minetest.get_node({ x=pos.x , y=pos.y-1, z=pos.z }) + local nyp = minetest.get_node({ x=pos.x , y=pos.y+1, z=pos.z }) + local nzm = minetest.get_node({ x=pos.x , y=pos.y , z=pos.z-1 }) + local nzp = minetest.get_node({ x=pos.x , y=pos.y , z=pos.z+1 }) + + local nodetable = { + nxm = nxm, + nxp = nxp, + nym = nym, + nyp = nyp, + nzm = nzm, + nzp = nzp + } + +-- standard handling for pipes... + + if string.find(nxm.name, "pipeworks:pipe_") then pxm=1 end + if string.find(nxp.name, "pipeworks:pipe_") then pxp=1 end + if string.find(nym.name, "pipeworks:pipe_") then pym=1 end + if string.find(nyp.name, "pipeworks:pipe_") then pyp=1 end + if string.find(nzm.name, "pipeworks:pipe_") then pzm=1 end + if string.find(nzp.name, "pipeworks:pipe_") then pzp=1 end + +-- Special handling for valves... + + local match,a,b,c,d,e,f = pipeworks.get_axis_dir(nodetable, "pipeworks:valve") + if match then + pxm = a or pxm + pxp = b or pxp + pym = c or pym + pyp = d or pyp + pzm = e or pzm + pzp = f or pzp + end + +-- ...flow sensors... + + local match,a,b,c,d,e,f = pipeworks.get_axis_dir(nodetable, "pipeworks:flow_sensor") + if match then + pxm = a or pxm + pxp = b or pxp + pym = c or pym + pyp = d or pyp + pzm = e or pzm + pzp = f or pzp + end + +-- ...sealed pipe entry/exit... + + local match,a,b,c,d,e,f = pipeworks.get_axis_dir(nodetable, "pipeworks:entry_panel") + if match then + pxm = a or pxm + pxp = b or pxp + pym = c or pym + pyp = d or pyp + pzm = e or pzm + pzp = f or pzp + end + +-- ...straight-only pipe... + + local match,a,b,c,d,e,f = pipeworks.get_axis_dir(nodetable, "pipeworks:straight_pipe") + if match then + pxm = a or pxm + pxp = b or pxp + pym = c or pym + pyp = d or pyp + pzm = e or pzm + pzp = f or pzp + end + +-- ... other nodes + + local def_left = minetest.registered_nodes[nxp.name] -- the node that {pos} is to the left of (not the + local def_right = minetest.registered_nodes[nxm.name] -- ...note that is AT the left!), etc. + local def_bottom = minetest.registered_nodes[nyp.name] + local def_top = minetest.registered_nodes[nym.name] + local def_front = minetest.registered_nodes[nzp.name] + local def_back = minetest.registered_nodes[nzm.name] + + if def_left and def_left.pipe_connections and def_left.pipe_connections.left + and (not def_left.pipe_connections.pattern or string.find(nxp.name, def_left.pipe_connections.pattern)) + and (not def_left.pipe_connections.left_param2 or (nxp.param2 == def_left.pipe_connections.left_param2)) then + pxp = 1 + end + if def_right and def_right.pipe_connections and def_right.pipe_connections.right + and (not def_right.pipe_connections.pattern or string.find(nxm.name, def_right.pipe_connections.pattern)) + and (not def_right.pipe_connections.right_param2 or (nxm.param2 == def_right.pipe_connections.right_param2)) then + pxm = 1 + end + if def_top and def_top.pipe_connections and def_top.pipe_connections.top + and (not def_top.pipe_connections.pattern or string.find(nym.name, def_top.pipe_connections.pattern)) + and (not def_top.pipe_connections.top_param2 or (nym.param2 == def_top.pipe_connections.top_param2)) then + pym = 1 + end + if def_bottom and def_bottom.pipe_connections and def_bottom.pipe_connections.bottom + and (not def_bottom.pipe_connections.pattern or string.find(nyp.name, def_bottom.pipe_connections.pattern)) + and (not def_bottom.pipe_connections.bottom_param2 or (nyp.param2 == def_bottom.pipe_connections.bottom_param2)) then + pyp = 1 + end + if def_front and def_front.pipe_connections and def_front.pipe_connections.front + and (not def_front.pipe_connections.pattern or string.find(nzp.name, def_front.pipe_connections.pattern)) + and (not def_front.pipe_connections.front_param2 or (nzp.param2 == def_front.pipe_connections.front_param2)) then + pzp = 1 + end + if def_back and def_back.pipe_connections and def_back.pipe_connections.back + and (not def_back.pipe_connections.pattern or string.find(nzm.name, def_back.pipe_connections.pattern)) + and (not def_back.pipe_connections.back_param2 or (nzm.param2 == def_back.pipe_connections.back_param2)) then + pzm = 1 + end + + minetest.log("info", "stage 2 returns "..pxm+8*pxp+2*pym+16*pyp+4*pzm+32*pzp.. + " for nodes surrounding "..minetest.get_node(pos).name.." at "..minetest.pos_to_string(pos)) + return pxm+8*pxp+2*pym+16*pyp+4*pzm+32*pzp +end + +function pipeworks.look_for_stackable_tanks(pos) + local tym = minetest.get_node({ x=pos.x , y=pos.y-1, z=pos.z }) + + if string.find(tym.name, "pipeworks:storage_tank_") ~= nil or + string.find(tym.name, "pipeworks:expansion_tank_") ~= nil then + minetest.add_node(pos, { name = "pipeworks:expansion_tank_0", param2 = tym.param2}) + end +end diff --git a/mods/pipeworks/autoplace_tubes.lua b/mods/pipeworks/autoplace_tubes.lua new file mode 100644 index 00000000..9f4e112a --- /dev/null +++ b/mods/pipeworks/autoplace_tubes.lua @@ -0,0 +1,139 @@ +-- autorouting for pneumatic tubes + +local function is_tube(nodename) + return pipeworks.table_contains(pipeworks.tubenodes, nodename) +end + +--a function for determining which side of the node we are on +local function nodeside(node, tubedir) + if node.param2 < 0 or node.param2 > 23 then + node.param2 = 0 + end + + local backdir = minetest.facedir_to_dir(node.param2) + local back = vector.dot(backdir, tubedir) + if back == 1 then + return "back" + elseif back == -1 then + return "front" + end + + local topdir = pipeworks.facedir_to_top_dir(node.param2) + local top = vector.dot(topdir, tubedir) + if top == 1 then + return "top" + elseif top == -1 then + return "bottom" + end + + local rightdir = pipeworks.facedir_to_right_dir(node.param2) + local right = vector.dot(rightdir, tubedir) + if right == 1 then + return "right" + else + return "left" + end +end + +local vts = {0, 3, 1, 4, 2, 5} +local tube_table = {[0] = 1, 2, 2, 4, 2, 4, 4, 5, 2, 3, 4, 6, 4, 6, 5, 7, 2, 4, 3, 6, 4, 5, 6, 7, 4, 6, 6, 8, 5, 7, 7, 9, 2, 4, 4, 5, 3, 6, 6, 7, 4, 6, 5, 7, 6, 8, 7, 9, 4, 5, 6, 7, 6, 7, 8, 9, 5, 7, 7, 9, 7, 9, 9, 10} +local tube_table_facedirs = {[0] = 0, 0, 5, 0, 3, 4, 3, 0, 2, 0, 2, 0, 6, 4, 3, 0, 7, 12, 5, 12, 7, 4, 5, 5, 18, 20, 16, 0, 7, 4, 7, 0, 1, 8, 1, 1, 1, 13, 1, 1, 10, 8, 2, 2, 17, 4, 3, 6, 9, 9, 9, 9, 21, 13, 1, 1, 10, 10, 11, 2, 19, 4, 3, 0} +local function tube_autoroute(pos) + local active = {0, 0, 0, 0, 0, 0} + local nctr = minetest.get_node(pos) + if not is_tube(nctr.name) then return end + + local adjustments = { + {x = -1, y = 0, z = 0}, + {x = 1, y = 0, z = 0}, + {x = 0, y = -1, z = 0}, + {x = 0, y = 1, z = 0}, + {x = 0, y = 0, z = -1}, + {x = 0, y = 0, z = 1} + } + -- xm = 1, xp = 2, ym = 3, yp = 4, zm = 5, zp = 6 + + local adjlist = {} -- this will be used in item_transport + + for i, adj in ipairs(adjustments) do + local position = vector.add(pos, adj) + local node = minetest.get_node(position) + + local idef = minetest.registered_nodes[node.name] + -- handle the tubes themselves + if is_tube(node.name) then + active[i] = 1 + table.insert(adjlist, adj) + -- handle new style connectors + elseif idef and idef.tube and idef.tube.connect_sides then + if idef.tube.connect_sides[nodeside(node, vector.multiply(adj, -1))] then + active[i] = 1 + table.insert(adjlist, adj) + end + end + end + + minetest.get_meta(pos):set_string("adjlist", minetest.serialize(adjlist)) + + -- all sides checked, now figure which tube to use. + + local nodedef = minetest.registered_nodes[nctr.name] + local basename = nodedef.basename + if nodedef.style == "old" then + local nsurround = "" + for _, n in ipairs(active) do + nsurround = nsurround..n + end + nctr.name = basename.."_"..nsurround + elseif nodedef.style == "6d" then + local s = 0 + for i, n in ipairs(active) do + if n == 1 then + s = s + 2^vts[i] + end + end + nctr.name = basename.."_"..tube_table[s] + nctr.param2 = tube_table_facedirs[s] + end + minetest.swap_node(pos, nctr) +end + +function pipeworks.scan_for_tube_objects(pos) + for side = 0, 6 do + tube_autoroute(vector.add(pos, pipeworks.directions.side_to_dir(side))) + end +end + +function pipeworks.after_place(pos) + pipeworks.scan_for_tube_objects(pos) +end + +function pipeworks.after_dig(pos) + pipeworks.scan_for_tube_objects(pos) +end + +-- Screwdriver calls this function before rotating a node. +-- However, connections must be updated *after* the node is rotated +-- So, this function does the rotation itself and returns `true`. +-- (Note: screwdriver already checks for protected areas.) + +-- This should only be used for tubes that don't autoconnect. +-- (For example, one-way tubes.) +-- Autoconnecting tubes will just revert back to their original state +-- when they are updated. +function pipeworks.on_rotate(pos, node, user, mode, new_param2) + node.param2 = new_param2 + minetest.swap_node(pos, node) + pipeworks.scan_for_tube_objects(pos) + return true +end + +if minetest.get_modpath("mesecons_mvps") then + mesecon.register_on_mvps_move(function(moved_nodes) + for _, n in ipairs(moved_nodes) do + pipeworks.scan_for_tube_objects(n.pos) + pipeworks.scan_for_tube_objects(n.oldpos) + end + end) +end + diff --git a/mods/pipeworks/changelog.txt b/mods/pipeworks/changelog.txt new file mode 100644 index 00000000..76a17551 --- /dev/null +++ b/mods/pipeworks/changelog.txt @@ -0,0 +1,201 @@ +Changelog +--------- + + + +2024-02-26 (SwissalpS) +set is_ground_content to false for various nodes. + + + +2023-06-22 (SwissalpS, rubenwardy) +groups support in recipe. Set recipe as usual via recipe formspec or digilines. +Autocrafter now resolves matching recipe using groups so that items in input +inventory are used, that match group and no longer only strictly what user +has in recipe-inventory + + + +2023-06-21 (OgelGames, BuckarooBanzay) +fix autocrafter destroying replacement items (OG) +remove facedir debugging logs (BB) + + + +2023-05-28 (SwissalpS) +support setting 'can_receive' for teleport tubes via digiline + + + +2023-05-19 (fluxionary, OgelGames) +log items going through teleport tubes + + + +2022-12-02 (wsor4035) +bring back compatibility with mineclone2 + + + +2022-11-11 (OgelGames) +prevent tp- and sand-tubes from breaking themselves and refactor part of code + +2022-09-18 (fluxionary) +protection checks before break-/placeing a node -> less violation logs + + +2022-08-14 (wsor4035) +prevent tubes from connecting to furnace front + + + +2022-08-13 (TurkeyMcMac) +moved teleport-tube database to mod-storage + + + +2022-06-23 (S-S-X) +on_repair tweak, improved repairing tubes + + +* many updates not mentioned here * + + + +2017-10-19 (thetaepsilon) +Directional flowables are now implemented. +All devices for which it is relevant (valve, flow sensor etc.) have been converted so that they only flow on their connecting sides, so pressure propogation now works as expected for these devices when pressure logic is enabled. +Classic mode continues to be preserved by default as before. + + + +2017-10-14 (thetaepsilon, VanessaE) +Node breakers have been updated to not have a tool by default, and determine if the node that they are trying to break can be dug with the tool in it's inventory slot. +The crafting recipe for the node breakers has been updated, using a new gear crafting item that requires iron instead of mese, which should be a more accessible cost in most cases. +Existing node breakers in worlds will get their mese pick back if their slot is empty via LBM - the mese pick will show up in the inventory slot so you can reclaim your hard-earned mese crystals. +Gear item texture and updated node breaker textures provided by VanessaE. + + + +2017-10-08 (thetaepsilon) +A lot more of the new flow logic work. +There are two sub-modes of this now, non-finite and finite mode. +Non-finite mode most closely resembles "classic mode", whereas finite mode is more intended for use with mods such as dynamic_liquids which enable water sources to move themselves. +Everything that was functional in classic mode more or less works correctly now. +Still TODO: ++ Flow directionality - things like flow sensors and airtight panels will flow in directions that don't make sense from their visuals. +Possible feature requests: ++ Making tanks and gratings do something useful. + + + +2017-09-27 (thetaepsilon) +Start of new flow logic re-implementation. +This mode is current *very* incomplete, and requires a per-world setting to enable. +Adds a pressure value stored in all pipe node metadata, and a mechanism to balance it out with nearby nodes on ABM trigger. +Currently, this inhibits the old behaviour when enabled, and (again WHEN ENABLED) breaks pretty much everything but normal pipes, spigots and pumps. +For this reason it is far from being intended as the default for some time to come yet. +What *does* work: ++ Pumps will try to take in water (and removes it!) as long as internal pressure does not exceed a threshold. + - a TODO is to make this pressure threshold configurable. ++ Pipes will balance this pressure between themselves, and will slowly average out over time. ++ Spigots will try to make the node beneath them a water source if the pressure is great enough and the existing node is flowing water or air. + - This is admittedly of fairly limited use with default water mechanics; those looking for more realistic mechanics might want to look at the dynamic_liquid mod, though that mod comes with it's own caveats (most notably drastic changes to previous worlds...). +What *does not* work: ++ Flow sensors, valves. Valves in particular currently do not function as a barrier to water's path under the experimental logic. + - TODO: internal code to allow this to be overriden. + + + +*seems this hasn't been updated in a while* + +2013-01-13: Tubes can transport items now! Namely, I added Novatux/Nore's item +transport mod as a default part of this mod, to make tubes do something useful! +Thanks to Nore and RealBadAngel for the code contributions! + +2013-01-05: made storage tanks connect from top/bottom, made storage tank and +pipe textures use the ^ combine operator so they can show the actual liquid +going through the pipes/tanks. + +2013-01-04 (a bit later): Made pipes able to carry water! It was just a minor +logic error resulting from moving the water flowing code into it's own file +when I originally imported it. Many thanks to Mauvebic for writing it! + +2013-01-04: First stage of integrating Mauvebic's water flowing code. This is +experimental and doesn't move water yet - but at least it doesn't break +anything :-) + +2013-01-01: Various minor tweaks to textures, facedir settings, some other +stuff. Changed crafting recipes to account for revamped pumps, valves, etc. +Now requires the moreores mod and most recent git (for mese crystal fragments) +to craft a pump. Added a "sealed" entry/exit panel (really just a horizontal +pipe with a metal panel overlayed into the middle). Also, tweaked pipes to +always drop the empty ones. Revamped pumps so that now they should sit in/on +liquid and be connected only from the top, relegated grates to decorational- +only, added outlet spigot. Got rid of a few obsolete textures. Got rid of +that whole _x and _z naming thing - now all directional devices (pumps, valves, +spigots, tanks) use facedir. Valves, spigots no longer auto-rotate to find +nearby pipes. + +2012-09-17: Added test object for pneumatic tube autorouting code, made tubes +connect to it and any object that bears groups={tubedevice=1} (connects to any +side) + +2012-09-05: All recipes doubled except for junglegrass -> plastic sheet (since +that is derived from home decor) + +2012-09-02: Fixed plastic sheeting recipe. Added crafting recipes for various +objects, with options: If homedecor is installed, use the plastic sheeting +therein. If not, we define it manually. If the Technic mod is installed, +don't define any recipes at all. Also removed the extra "loaded!" messages and +tweaked the default pipe alias to point to something that is actually visible +:-) + +2012-09-01: flattened wielded pipe segment. + +2012-08-24: Added square-ish pneumatic tubes with their own autoplace code +(does not connect to steel pipes or pipe-oriented devices), then revised their +textures shortly after. Fixed a recursion bug that sometimes caused a stack +overflow. Old pipes were overriding the pipeworks:pipe defintion that belongs +with the new pipes. + +2012-08-22: Added outlet grate, made it participate in autoplace algorithm. +Extended storage tank to show fill level in 10% steps (0% to 100%). Added +"expansion tank" that appears if the user stacks tanks upwards. (Downwards is +not checked). + +2012-08-21: Made storage tank participate in autoplace algorithm. Tuned API a +little to allow for more flexible placement. Re-organized code a bit to allow +for some upcoming rules changes. Made storage tanks' upper/lower fittins and +intake grate participate in autoplace algorithm. + +2012-08-20: Added temporary nodes for storage tank and intake grating, but +without autoplace. + +2012-08-19: Pumps and valves now fully participate in the +auto-rotate/auto-place algorithm. + +2012-08-18: Total rewrite again. All pipes are now nice and round-looking, and +they auto-connect! Also added temporary nodes for pump and valve (each with an +on/off setting - punch to change). No crafting recipes yet and the pipes still +don't do anything useful yet. Soon. + +2012-08-06: Moved this changelog off the forum post and into a separate file. + +2012-08-05 (multiple updates): Rewrote pipeworks to use loops and tables to +create the nodes. Requires far less code now. Added -X, +X, -Y, +Y, -Z, +Z +capped stubs and a short centered horizontal segment. Changed node definitions +so that the aforementioned "short centered" segment is given on dig/drop. +Renamed it to just "pipeworks:pipe" (and pipe_loaded). Added empty/loaded +indicator images to the capped ends, removed some redundant comments. Made the +empty/loaded indication at the capped end more prominent. + +2012-07-21: Added screenshot showing pipes as they look now that nodebox +texture rotation is fixed. + +2012-07-18: Changed the mod name and all internals to 'pipeworks' instead of +'pipes'... after a couple of mistakes :-) + +2012-07-12: moved project to github. + +2012-06-23: Initial release, followed by reworking the textures a bit. diff --git a/mods/pipeworks/chests.lua b/mods/pipeworks/chests.lua new file mode 100644 index 00000000..74b658e1 --- /dev/null +++ b/mods/pipeworks/chests.lua @@ -0,0 +1,90 @@ +pipeworks.chests = {} + +-- register a chest to connect with pipeworks tubes. +-- will autoconnect to tubes and add tube inlets to the textures +-- it is highly recommended to allow the user to change the "splitstacks" int (1 to enable) in the node meta +-- but that can't be done by this function + +-- @param override: additional overrides, such as stuff to modify the node formspec +-- @param connect_sides: which directions the chests shall connect to +function pipeworks.override_chest(chestname, override, connect_sides) + local old_def = minetest.registered_nodes[chestname] + + local tube_entry = "^pipeworks_tube_connection_wooden.png" + override.tiles = override.tiles or old_def.tiles + -- expand the tiles table if it has been shortened + if #override.tiles < 6 then + for i = #override.tiles, 6 do + override.tiles[i] = override.tiles[#override.tiles] + end + end + -- add inlets to the sides that connect to tubes + local tile_directions = {"top", "bottom", "right", "left", "back", "front"} + for i, direction in ipairs(tile_directions) do + if connect_sides[direction] then + if type(override.tiles[i]) == "string" then + override.tiles[i] = override.tiles[i] .. tube_entry + elseif type(override.tiles[i]) == "table" and not override.tiles[i].animation then + override.tiles[i].name = override.tiles[i].name .. tube_entry + end + end + end + + local old_after_place_node = override.after_place_node or old_def.after_place_node or function() end + override.after_place_node = function(pos, placer, itemstack, pointed_thing) + old_after_place_node(pos, placer, itemstack, pointed_thing) + pipeworks.after_place(pos) + end + + local old_after_dig = override.after_dig or old_def.after_dig_node or function() end + override.after_dig_node = function(pos, oldnode, oldmetadata, digger) + old_after_dig(pos, oldnode, oldmetadata, digger) + pipeworks.after_dig(pos, oldnode, oldmetadata, digger) + end + + local old_on_rotate + if override.on_rotate ~= nil then + old_on_rotate = override.on_rotate + elseif old_def.on_rotate ~= nil then + old_on_rotate = old_def.on_rotate + else + old_on_rotate = function() end + end + -- on_rotate = false -> rotation disabled, no need to update tubes + -- everything else: undefined by the most common screwdriver mods + if type(old_on_rotate) == "function" then + override.on_rotate = function(pos, node, user, mode, new_param2) + if old_on_rotate(pos, node, user, mode, new_param2) ~= false then + return pipeworks.on_rotate(pos, node, user, mode, new_param2) + else + return false + end + end + end + + override.tube = { + insert_object = function(pos, node, stack, direction) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + return inv:add_item("main", stack) + end, + can_insert = function(pos, node, stack, direction) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + if meta:get_int("splitstacks") == 1 then + stack = stack:peek_item(1) + end + return inv:room_for_item("main", stack) + end, + input_inventory = "main", + connect_sides = connect_sides + } + + -- Add the extra groups + override.groups = override.groups or old_def.groups or {} + override.groups.tubedevice = 1 + override.groups.tubedevice_receiver = 1 + + minetest.override_item(chestname, override) + pipeworks.chests[chestname] = true +end diff --git a/mods/pipeworks/common.lua b/mods/pipeworks/common.lua new file mode 100644 index 00000000..88aad4f7 --- /dev/null +++ b/mods/pipeworks/common.lua @@ -0,0 +1,304 @@ +local S = minetest.get_translator("pipeworks") + +-- Random variables + +pipeworks.expect_infinite_stacks = true +if minetest.get_modpath("unified_inventory") or not minetest.settings:get_bool("creative_mode") then + pipeworks.expect_infinite_stacks = false +end + +pipeworks.meseadjlist={{x=0,y=0,z=1},{x=0,y=0,z=-1},{x=0,y=1,z=0},{x=0,y=-1,z=0},{x=1,y=0,z=0},{x=-1,y=0,z=0}} + +pipeworks.rules_all = {{x=0, y=0, z=1},{x=0, y=0, z=-1},{x=1, y=0, z=0},{x=-1, y=0, z=0}, + {x=0, y=1, z=1},{x=0, y=1, z=-1},{x=1, y=1, z=0},{x=-1, y=1, z=0}, + {x=0, y=-1, z=1},{x=0, y=-1, z=-1},{x=1, y=-1, z=0},{x=-1, y=-1, z=0}, + {x=0, y=1, z=0}, {x=0, y=-1, z=0}} + +pipeworks.mesecons_rules={{x=0,y=0,z=1},{x=0,y=0,z=-1},{x=1,y=0,z=0},{x=-1,y=0,z=0},{x=0,y=1,z=0},{x=0,y=-1,z=0}} + +local digilines_enabled = minetest.get_modpath("digilines") ~= nil +if digilines_enabled and pipeworks.enable_vertical_digilines_connectivity then + pipeworks.digilines_rules=digilines.rules.default +else + -- These rules break vertical connectivity to deployers, node breakers, dispensers, and digiline filter injectors + -- via digiline conducting tubes. Changing them may break some builds on some servers, so the setting was added + -- for server admins to be able to revert to the old "broken" behavior as some builds may use it as a "feature". + -- See https://github.com/mt-mods/pipeworks/issues/64 + pipeworks.digilines_rules={{x=0,y=0,z=1},{x=0,y=0,z=-1},{x=1,y=0,z=0},{x=-1,y=0,z=0},{x=0,y=1,z=0},{x=0,y=-1,z=0}} +end + +pipeworks.liquid_texture = minetest.registered_nodes[pipeworks.liquids.water.flowing].tiles[1] +if type(pipeworks.liquid_texture) == "table" then pipeworks.liquid_texture = pipeworks.liquid_texture.name end + +pipeworks.button_off = {text="", texture="pipeworks_button_off.png", addopts="false;false;pipeworks_button_interm.png"} +pipeworks.button_on = {text="", texture="pipeworks_button_on.png", addopts="false;false;pipeworks_button_interm.png"} +pipeworks.button_base = "image_button[0,4.3;1,0.6" +pipeworks.button_label = "label[0.9,4.31;"..S("Allow splitting incoming stacks from tubes").."]" + +-- Helper functions + +function pipeworks.fix_image_names(table, replacement) + local outtable={} + for i in ipairs(table) do + outtable[i]=string.gsub(table[i], "_XXXXX", replacement) + end + + return outtable +end + +local function overlay_tube_texture(texture) + -- The texture appears the first time to be colorized as the opaque background. + return ("(%s)^[noalpha^[colorize:#dadada^(%s)"):format(texture, texture) +end + +function pipeworks.make_tube_tile(tile) + if pipeworks.use_real_entities then + return tile + elseif type(tile) == "string" then + return overlay_tube_texture(tile) + else + tile = table.copy(tile) + if tile.color then + -- Won't work 100% of the time, but good enough. + tile.name = tile.name .. "^[multiply:" .. minetest.colorspec_to_colorstring(tile.color) + tile.color = nil + end + tile.name = overlay_tube_texture(tile.name) + tile.backface_culling = nil -- The texture is opaque + return tile + end +end + +function pipeworks.add_node_box(t, b) + if not t or not b then return end + for i in ipairs(b) + do table.insert(t, b[i]) + end +end + +function pipeworks.may_configure(pos, player) + local name = player:get_player_name() + local meta = minetest.get_meta(pos) + local owner = meta:get_string("owner") + + if owner ~= "" and owner == name then -- wielders and filters + return true + end + return not minetest.is_protected(pos, name) +end + +function pipeworks.replace_name(tbl,tr,name) + local ntbl={} + for key,i in pairs(tbl) do + if type(i)=="string" then + ntbl[key]=string.gsub(i,tr,name) + elseif type(i)=="table" then + ntbl[key]=pipeworks.replace_name(i,tr,name) + else + ntbl[key]=i + end + end + return ntbl +end + +----------------------- +-- Facedir functions -- +----------------------- + +function pipeworks.facedir_to_top_dir(facedir) + return ({[0] = {x = 0, y = 1, z = 0}, + {x = 0, y = 0, z = 1}, + {x = 0, y = 0, z = -1}, + {x = 1, y = 0, z = 0}, + {x = -1, y = 0, z = 0}, + {x = 0, y = -1, z = 0}}) + [math.floor(facedir / 4)] +end + +function pipeworks.facedir_to_right_dir(facedir) + return vector.cross( + pipeworks.facedir_to_top_dir(facedir), + minetest.facedir_to_dir(facedir) + ) +end + +local directions = {} +pipeworks.directions = directions +function directions.side_to_dir(side) + return ({[0] = vector.new(), + vector.new( 0, 1, 0), + vector.new( 0, -1, 0), + vector.new( 1, 0, 0), + vector.new(-1, 0, 0), + vector.new( 0, 0, 1), + vector.new( 0, 0, -1) + })[side] +end + +function directions.dir_to_side(dir) + local c = vector.dot(dir, vector.new(1, 2, 3)) + 4 + return ({6, 2, 4, 0, 3, 1, 5})[c] +end + +--------------------- +-- Table functions -- +--------------------- + +function pipeworks.table_contains(tbl, element) + for _, elt in pairs(tbl) do + if elt == element then + return true + end + end + return false +end + +function pipeworks.table_extend(tbl, tbl2) + local oldlength = #tbl + for i = 1,#tbl2 do + tbl[oldlength + i] = tbl2[i] + end +end + +function pipeworks.table_recursive_replace(tbl, pattern, replace_with) + if type(tbl) == "table" then + local tbl2 = {} + for key, value in pairs(tbl) do + tbl2[key] = pipeworks.table_recursive_replace(value, pattern, replace_with) + end + return tbl2 + elseif type(tbl) == "string" then + return tbl:gsub(pattern, replace_with) + else + return tbl + end +end + +------------------------ +-- Formspec functions -- +------------------------ + +local fs_helpers = {} +pipeworks.fs_helpers = fs_helpers +function fs_helpers.on_receive_fields(pos, fields) + local meta = minetest.get_meta(pos) + for field in pairs(fields) do + if field:match("^fs_helpers_cycling:") then + local l = field:split(":") + local new_value = tonumber(l[2]) + local meta_name = l[3] + meta:set_int(meta_name, new_value) + end + end +end + +function fs_helpers.cycling_button(meta, base, meta_name, values) + local current_value = meta:get_int(meta_name) + local new_value = (current_value + 1) % (#values) + local val = values[current_value + 1] + local text + local texture_name = nil + local addopts = nil + --when we get a table, we know the caller wants an image_button + if type(val) == "table" then + text = val["text"] + texture_name = val["texture"] + addopts = val["addopts"] + else + text = val + end + local field = "fs_helpers_cycling:"..new_value..":"..meta_name + return base..";"..(texture_name and texture_name..";" or "")..field..";"..minetest.formspec_escape(text)..(addopts and ";"..addopts or "").."]" +end + +function fs_helpers.get_inv(y) + local fs = {} + if minetest.get_modpath("i3") then + local inv_x = i3.settings.legacy_inventory and 0.75 or 0.22 + local inv_y = (y + 0.4) or 6.9 + local size, spacing = 1, 0.1 + local hotbar_len = i3.settings.hotbar_len or (i3.settings.legacy_inventory and 8 or 9) + local inv_size = i3.settings.inv_size or (hotbar_len * 4) + + table.insert(fs, "style_type[box;colors=#77777710,#77777710,#777,#777]") + + for i = 0, hotbar_len - 1 do + table.insert(fs, "box["..(i * size + inv_x + (i * spacing))..","..inv_y..";"..size..","..size..";]") + end + + table.insert(fs, "style_type[list;size="..size..";spacing="..spacing.."]") + table.insert(fs, "list[current_player;main;"..inv_x..","..inv_y..";"..hotbar_len..",1;]") + + table.insert(fs, "style_type[box;colors=#666]") + for i=0, 2 do + for j=0, hotbar_len - 1 do + table.insert(fs, "box["..0.2+(j*0.1)+(j*size)..","..(inv_y+size+spacing+0.05)+(i*0.1)+(i*size)..";"..size..","..size..";]") + end + end + + table.insert(fs, "style_type[list;size="..size..";spacing="..spacing.."]") + table.insert(fs, "list[current_player;main;"..inv_x..","..(inv_y + 1.15)..";"..hotbar_len..","..(inv_size / hotbar_len)..";"..hotbar_len.."]") + elseif minetest.get_modpath("mcl_formspec") then + local inv_x = 0.22 + local inv_y = (y + 0.4) or 6.9 + local size, spacing = 1, 0.1 + local hotbar_len = 9 + local inv_size = hotbar_len * 4 + + table.insert(fs, "style_type[box;colors=#77777710,#77777710,#777,#777]") + + for i = 0, hotbar_len - 1 do + table.insert(fs, "box["..(i * size + inv_x + (i * spacing))..","..inv_y..";"..size..","..size..";]") + end + + table.insert(fs, "style_type[list;size="..size..";spacing="..spacing.."]") + table.insert(fs, "list[current_player;main;"..inv_x..","..inv_y..";"..hotbar_len..",1;]") + + table.insert(fs, "style_type[box;colors=#666]") + for i=0, 2 do + for j=0, hotbar_len - 1 do + table.insert(fs, "box["..0.2+(j*0.1)+(j*size)..","..(inv_y+size+spacing+0.05)+(i*0.1)+(i*size)..";"..size..","..size..";]") + end + end + + table.insert(fs, "style_type[list;size="..size..";spacing="..spacing.."]") + table.insert(fs, "list[current_player;main;"..inv_x..","..(inv_y + 1.15)..";"..hotbar_len..","..(inv_size / hotbar_len)..";"..hotbar_len.."]") + else + table.insert(fs, "list[current_player;main;0.22,"..y..";8,4;]") + end + + return table.concat(fs, "") +end + +function fs_helpers.get_prepends(size) + local prepend = {} + + if minetest.get_modpath("i3") then + prepend = { + "no_prepend[]", + "bgcolor[black;neither]", + "background9[0,0;"..size..";i3_bg_full.png;false;10]", + "style_type[button;border=false;bgimg=[combine:16x16^[noalpha^[colorize:#6b6b6b]", + "listcolors[#0000;#ffffff20]" + } + end + + return table.concat(prepend, "") +end + +--------- +-- Env -- +--------- + +function pipeworks.load_position(pos) + if pos.x < -30912 or pos.y < -30912 or pos.z < -30912 or + pos.x > 30927 or pos.y > 30927 or pos.z > 30927 then return end + if minetest.get_node_or_nil(pos) then + return + end + local vm = minetest.get_voxel_manip() + vm:read_from_map(pos, pos) +end + +-- Kept for compatibility with old mods +pipeworks.create_fake_player = fakelib.create_player diff --git a/mods/pipeworks/compat-chests.lua b/mods/pipeworks/compat-chests.lua new file mode 100644 index 00000000..5465bfba --- /dev/null +++ b/mods/pipeworks/compat-chests.lua @@ -0,0 +1,184 @@ +-- this bit of code overrides the default chests from common games (mtg, hades, minclone*) to be +-- compatible with pipeworks. Where possible, it overrides their formspec to add a splitstacks switch + +local fs_helpers = pipeworks.fs_helpers + +-- formspec helper to add the splitstacks switch +local function add_pipeworks_switch(formspec, pos) + -- based on the sorting tubes + formspec = formspec .. + fs_helpers.cycling_button( + minetest.get_meta(pos), + pipeworks.button_base, + "splitstacks", + { + pipeworks.button_off, + pipeworks.button_on + } + )..pipeworks.button_label + return formspec +end + +-- helper to add the splitstacks switch to a node-formspec +local function update_node_formspec(pos) + local meta = minetest.get_meta(pos) + local old_fs = meta:get_string("formspec") + local new_fs = add_pipeworks_switch(old_fs, pos) + meta:set_string("formspec", new_fs) +end + + +if minetest.get_modpath("default") then + -- add the pipeworks switch into the default chest formspec + local old_get_chest_formspec = default.chest.get_chest_formspec + -- luacheck: ignore 122 + default.chest.get_chest_formspec = function(pos) + local old_fs = old_get_chest_formspec(pos) + local node = minetest.get_node(pos) + -- not all chests using this formspec necessary connect to pipeworks + if pipeworks.chests[node.name] then + local new_fs = add_pipeworks_switch(old_fs, pos) + return new_fs + else + return old_fs + end + end + + -- get the fields from the chest formspec, we can do this bc. newest functions are called first + -- https://github.com/minetest/minetest/blob/d4b10db998ebeb689b3d27368e30952a42169d03/doc/lua_api.md?plain=1#L5840 + minetest.register_on_player_receive_fields(function(player, formname, fields) + if fields.quit or formname ~= "default:chest" then + return + end + local pn = player:get_player_name() + local chest_open = default.chest.open_chests[pn] + if not chest_open or not chest_open.pos then + -- chest already closed before formspec + return + end + local pos = chest_open.pos + local node = minetest.get_node(pos) + if pipeworks.chests[node.name] and pipeworks.may_configure(pos, player) then + -- Pipeworks Switch + fs_helpers.on_receive_fields(pos, fields) + minetest.show_formspec(pn, + "default:chest", + default.chest.get_chest_formspec(pos)) + end + -- Do NOT return true here, the callback from default still needs to run + return false + end) + + local connect_sides = {left = 1, right = 1, back = 1, bottom = 1, top = 1} + local connect_sides_open = {left = 1, right = 1, back = 1, bottom = 1} + + pipeworks.override_chest("default:chest", {}, connect_sides) + pipeworks.override_chest("default:chest_open", {}, connect_sides_open) + pipeworks.override_chest("default:chest_locked", {}, connect_sides) + pipeworks.override_chest("default:chest_locked_open", {}, connect_sides_open) +elseif minetest.get_modpath("hades_chests") then + local chest_colors = {"", "white", "grey", "dark_grey", "black", "blue", "cyan", "dark_green", "green", "magenta", + "orange", "pink", "red", "violet", "yellow"} + for _, color in ipairs(chest_colors) do + local chestname = (color == "" and "hades_chests:chest") + or "hades_chests:chest_" .. color + local chestname_protected = (color == "" and "hades_chests:chest_locked") + or "hades_chests:chest_" .. color .. "_locked" + local old_def = minetest.registered_nodes[chestname] + + -- chest formspec-creation functions are local, we need to find other ways + -- normal chests use node formspecs, we can hack into these + local old_on_construct = old_def.on_construct + local override = { + on_construct = function(pos) + old_on_construct(pos) + update_node_formspec(pos) + end, + on_receive_fields = function(pos, formname, fields, player) + if not fields.quit and pipeworks.may_configure(pos, player) then + -- Pipeworks Switch + fs_helpers.on_receive_fields(pos, fields) + update_node_formspec(pos) + end + end, + -- chest's on_rotate is "simple", but we assumed the api from the mtg screwdriver mod + -- this will keep the same behavior, but supports the code above + on_rotate = screwdriver.rotate_simple + } + + -- locked chests uses local functions to create their formspec - we need to copy these + -- https://codeberg.org/Wuzzy/Hades_Revisited/src/branch/master/mods/hades_chests/init.lua + local function get_locked_chest_formspec(pos) + local spos = pos.x .. "," .. pos.y .. "," ..pos.z + local formspec = + "size[10,9]".. + "list[nodemeta:".. spos .. ";main;0,0;10,4;]".. + "list[current_player;main;0,5;10,4;]".. + "listring[]".. + "background9[8,8;10,9;hades_chests_chestui.png;true;8]" + + -- change from pipeworks + local new_fs = add_pipeworks_switch(formspec, pos) + return new_fs + end + + local function has_locked_chest_privilege(meta, player) + local name = player:get_player_name() + if name ~= meta:get_string("owner") and not minetest.check_player_privs(name, "protection_bypass") then + return false + end + return true + end + + -- store, which chest a formspec submission belongs to + -- {player1 = pos1, player2 = pos2, ...} + local open_chests = {} + minetest.register_on_leaveplayer(function(player) + open_chests[player:get_player_name()] = nil + end) + + local override_protected = { + on_rightclick = function(pos, node, clicker) + local meta = minetest.get_meta(pos) + if has_locked_chest_privilege(meta, clicker) then + minetest.show_formspec( + clicker:get_player_name(), + "hades_chests:chest_locked", + get_locked_chest_formspec(pos) + ) + open_chests[clicker:get_player_name()] = pos + else + minetest.sound_play({ name = "hades_chests_locked", gain = 0.3 }, { max_hear_distance = 10 }, true) + end + end, + on_rotate = screwdriver.rotate_simple + } + + -- get the fields from the chest formspec, we can do this bc. newest functions are called first + -- https://github.com/minetest/minetest/blob/d4b10db998ebeb689b3d27368e30952a42169d03/doc/lua_api.md?plain=1#L5840 + minetest.register_on_player_receive_fields(function(player, formname, fields) + if fields.quit or formname ~= "hades_chests:chest_locked" then + return + end + local pn = player:get_player_name() + local pos = open_chests[pn] + if pos and pipeworks.may_configure(pos, player) then + -- Pipeworks Switch + fs_helpers.on_receive_fields(pos, fields) + minetest.show_formspec(pn, "hades_chests:chest_locked", get_locked_chest_formspec(pos)) + end + -- Do NOT return true here, the callback from hades still needs to run (if they add one) + return false + end) + + local connect_sides = {left = 1, right = 1, back = 1, bottom = 1, top = 1} + pipeworks.override_chest(chestname, override, connect_sides) + pipeworks.override_chest(chestname_protected, override_protected, connect_sides) + end +elseif minetest.get_modpath("mcl_barrels") then + -- TODO: bring splitstacks switch in the formspec + -- with the current implementation of mcl_barrels this would mean to duplicate a lot of code from there... + local connect_sides = {left = 1, right = 1, back = 1, front = 1, bottom = 1} + pipeworks.override_chest("mcl_barrels:barrel_closed", {}, connect_sides) + pipeworks.override_chest("mcl_barrels:barrel_open", {}, connect_sides) +end diff --git a/mods/pipeworks/compat-furnaces.lua b/mods/pipeworks/compat-furnaces.lua new file mode 100644 index 00000000..c4cbd86c --- /dev/null +++ b/mods/pipeworks/compat-furnaces.lua @@ -0,0 +1,128 @@ +-- this file is basically a modified copy of +-- minetest_game/mods/default/furnaces.lua + +local def--, def_active +if minetest.get_modpath("default") then + def = table.copy(minetest.registered_nodes["default:furnace"]) + --def_active = table.copy(minetest.registered_nodes["default:furnace_active"]) +elseif minetest.get_modpath("hades_furnaces") then + def = table.copy(minetest.registered_nodes["hades_furnaces:furnace"]) + --def_active = table.copy(minetest.registered_nodes["hades_furnaces:furnace_active"]) +end + +local tube_entry = "^pipeworks_tube_connection_stony.png" + +local groups = def.groups +groups["tubedevice"] = 1 +groups["tubedevice_receiver"] = 1 +local groups_active = table.copy(groups) +groups_active["not_in_creative_inventory"] = 1 + +-- +-- Node definitions +-- + +local override = { + tiles = { + "default_furnace_top.png"..tube_entry, + "default_furnace_bottom.png"..tube_entry, + "default_furnace_side.png"..tube_entry, + "default_furnace_side.png"..tube_entry, + "default_furnace_side.png"..tube_entry, + "default_furnace_front.png" + }, + groups = groups, + tube = { + insert_object = function(pos, node, stack, direction) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + local timer = minetest.get_node_timer(pos) + if not timer:is_started() then + timer:start(1.0) + end + if direction.y == 1 then + return inv:add_item("fuel", stack) + else + return inv:add_item("src", stack) + end + end, + can_insert = function(pos,node,stack,direction) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + if direction.y == 1 then + return inv:room_for_item("fuel", stack) + else + if meta:get_int("split_material_stacks") == 1 then + stack = stack:peek_item(1) + end + return inv:room_for_item("src", stack) + end + end, + input_inventory = "dst", + connect_sides = {left = 1, right = 1, back = 1, bottom = 1, top = 1} + }, + + after_place_node = pipeworks.after_place, + after_dig_node = pipeworks.after_dig, + on_rotate = pipeworks.on_rotate +} + +local override_active = { + tiles = { + "default_furnace_top.png"..tube_entry, + "default_furnace_bottom.png"..tube_entry, + "default_furnace_side.png"..tube_entry, + "default_furnace_side.png"..tube_entry, + "default_furnace_side.png"..tube_entry, + { + image = "default_furnace_front_active.png", + backface_culling = false, + animation = { + type = "vertical_frames", + aspect_w = 16, + aspect_h = 16, + length = 1.5 + }, + } + }, + groups = groups_active, + tube = { + insert_object = function(pos,node,stack,direction) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + local timer = minetest.get_node_timer(pos) + if not timer:is_started() then + timer:start(1.0) + end + if direction.y == 1 then + return inv:add_item("fuel", stack) + else + return inv:add_item("src", stack) + end + end, + can_insert = function(pos, node, stack, direction) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + if direction.y == 1 then + return inv:room_for_item("fuel", stack) + else + return inv:room_for_item("src", stack) + end + end, + input_inventory = "dst", + connect_sides = {left = 1, right = 1, back = 1, bottom = 1, top = 1} + }, + + after_place_node = pipeworks.after_place, + after_dig_node = pipeworks.after_dig, + on_rotate = pipeworks.on_rotate +} + +if minetest.get_modpath("default") then + minetest.override_item("default:furnace", override) + minetest.override_item("default:furnace_active", override_active) +elseif minetest.get_modpath("hades_furnaces") then + minetest.override_item("hades_furnaces:furnace", override) + minetest.override_item("hades_furnaces:furnace_active", override_active) +end + diff --git a/mods/pipeworks/crafts.lua b/mods/pipeworks/crafts.lua new file mode 100644 index 00000000..45f642cf --- /dev/null +++ b/mods/pipeworks/crafts.lua @@ -0,0 +1,318 @@ +-- Crafting recipes for pipes +local materials = xcompat.materials + +minetest.register_craft( { + output = "pipeworks:pipe_1_empty 12", + recipe = { + { materials.steel_ingot, materials.steel_ingot, materials.steel_ingot }, + { "", "", "" }, + { materials.steel_ingot, materials.steel_ingot, materials.steel_ingot } + }, +}) + +minetest.register_craft( { + output = "pipeworks:straight_pipe_empty 3", + recipe = { + { "pipeworks:pipe_1_empty", "pipeworks:pipe_1_empty", "pipeworks:pipe_1_empty" }, + }, +}) + +minetest.register_craft( { + output = "pipeworks:spigot 3", + recipe = { + { "pipeworks:pipe_1_empty", "" }, + { "", "pipeworks:pipe_1_empty" }, + }, +}) + +minetest.register_craft( { +output = "pipeworks:entry_panel_empty 2", +recipe = { + { "", materials.steel_ingot, "" }, + { "", "pipeworks:pipe_1_empty", "" }, + { "", materials.steel_ingot, "" }, +}, +}) + +-- Various ancillary pipe devices + +minetest.register_craft( { + output = "pipeworks:pump_off 2", + recipe = { + { materials.stone, materials.steel_ingot, materials.stone }, + { materials.copper_ingot, materials.mese_crystal_fragment, materials.copper_ingot }, + { materials.steel_ingot, materials.steel_ingot, materials.steel_ingot } + }, +}) + +minetest.register_craft( { + output = "pipeworks:valve_off_empty 2", + recipe = { + { "", "group:stick", "" }, + { materials.steel_ingot, materials.steel_ingot, materials.steel_ingot }, + { "", materials.steel_ingot, "" } + }, +}) + +minetest.register_craft( { + output = "pipeworks:storage_tank_0 2", + recipe = { + { "", materials.steel_ingot, materials.steel_ingot }, + { materials.steel_ingot, materials.glass, materials.steel_ingot }, + { materials.steel_ingot, materials.steel_ingot, "" } + }, +}) + +minetest.register_craft( { + output = "pipeworks:grating 2", + recipe = { + { materials.steel_ingot, "", materials.steel_ingot }, + { "", "pipeworks:pipe_1_empty", "" }, + { materials.steel_ingot, "", materials.steel_ingot } + }, +}) + +minetest.register_craft( { + output = "pipeworks:flow_sensor_empty 2", + recipe = { + { "pipeworks:pipe_1_empty", "mesecons:mesecon", "pipeworks:pipe_1_empty" }, + }, +}) + +minetest.register_craft( { + output = "pipeworks:fountainhead 2", + recipe = { + { "pipeworks:pipe_1_empty" }, + { "pipeworks:pipe_1_empty" } + }, +}) + +-- injectors + +minetest.register_craft( { + output = "pipeworks:filter 2", + recipe = { + { materials.steel_ingot, materials.steel_ingot, "basic_materials:plastic_sheet" }, + { "group:stick", materials.mese_crystal, "basic_materials:plastic_sheet" }, + { materials.steel_ingot, materials.steel_ingot, "basic_materials:plastic_sheet" } + }, +}) + +minetest.register_craft( { + output = "pipeworks:mese_filter 2", + recipe = { + { materials.steel_ingot, materials.steel_ingot, "basic_materials:plastic_sheet" }, + { "group:stick", materials.mese, "basic_materials:plastic_sheet" }, + { materials.steel_ingot, materials.steel_ingot, "basic_materials:plastic_sheet" } + }, +}) + +if minetest.get_modpath("digilines") then + minetest.register_craft( { + output = "pipeworks:digiline_filter 2", + recipe = { + { materials.steel_ingot, materials.steel_ingot, "basic_materials:plastic_sheet" }, + { "group:stick", "digilines:wire_std_00000000", "basic_materials:plastic_sheet" }, + { materials.steel_ingot, materials.steel_ingot, "basic_materials:plastic_sheet" } + }, + }) +end + +-- other + +minetest.register_craft( { + output = "pipeworks:autocrafter 2", + recipe = { + { materials.steel_ingot, materials.mese_crystal, materials.steel_ingot }, + { "basic_materials:plastic_sheet", materials.steel_ingot, "basic_materials:plastic_sheet" }, + { materials.steel_ingot, materials.mese_crystal, materials.steel_ingot } + }, +}) + +minetest.register_craft( { + output = "pipeworks:steel_pane_embedded_tube 1", + recipe = { + { "", materials.steel_ingot, "" }, + { "", "pipeworks:tube_1", "" }, + { "", materials.steel_ingot, "" } + }, +}) + +minetest.register_craft({ + output = "pipeworks:trashcan", + recipe = { + { "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" }, + { materials.steel_ingot, "", materials.steel_ingot }, + { materials.steel_ingot, materials.steel_ingot, materials.steel_ingot }, + }, +}) + +minetest.register_craft( { + output = "pipeworks:teleport_tube_1 2", + recipe = { + { "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" }, + { materials.desert_stone, materials.mese, materials.desert_stone }, + { "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" } + }, +}) + +if pipeworks.enable_priority_tube then + minetest.register_craft( { + output = "pipeworks:priority_tube_1 6", + recipe = { + { "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" }, + { materials.gold_ingot, "", materials.gold_ingot }, + { "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" } + }, + }) +end + +if pipeworks.enable_accelerator_tube then + minetest.register_craft( { + output = "pipeworks:accelerator_tube_1 2", + recipe = { + { "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" }, + { materials.mese_crystal_fragment, materials.steel_ingot, materials.mese_crystal_fragment }, + { "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" } + }, + }) +end + +if pipeworks.enable_crossing_tube then + minetest.register_craft( { + output = "pipeworks:crossing_tube_1 5", + recipe = { + { "", "pipeworks:tube_1", "" }, + { "pipeworks:tube_1", "pipeworks:tube_1", "pipeworks:tube_1" }, + { "", "pipeworks:tube_1", "" } + }, + }) +end + +if pipeworks.enable_one_way_tube then + minetest.register_craft({ + output = "pipeworks:one_way_tube 2", + recipe = { + { "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" }, + { "group:stick", materials.mese_crystal, "basic_materials:plastic_sheet" }, + { "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" } + }, + }) +end + +if pipeworks.enable_mese_tube then + minetest.register_craft( { + output = "pipeworks:mese_tube_000000 2", + recipe = { + { "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" }, + { "", materials.mese_crystal, "" }, + { "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" } + }, + }) + + minetest.register_craft( { + type = "shapeless", + output = "pipeworks:mese_tube_000000", + recipe = { + "pipeworks:tube_1", + materials.mese_crystal_fragment, + materials.mese_crystal_fragment, + materials.mese_crystal_fragment, + materials.mese_crystal_fragment, + }, + }) +end + +if pipeworks.enable_item_tags and pipeworks.enable_tag_tube then + minetest.register_craft( { + output = "pipeworks:tag_tube_000000 2", + recipe = { + { "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" }, + { materials.book, materials.mese_crystal, materials.book }, + { "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" } + }, + }) + + minetest.register_craft( { + type = "shapeless", + output = "pipeworks:tag_tube_000000", + recipe = { + "pipeworks:mese_tube_000000", + materials.book, + }, + }) +end + +if pipeworks.enable_sand_tube then + minetest.register_craft( { + output = "pipeworks:sand_tube_1 2", + recipe = { + {"basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet"}, + {"group:sand", "group:sand", "group:sand"}, + {"basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet"} + }, + }) + + minetest.register_craft( { + output = "pipeworks:sand_tube_1", + recipe = { + {"group:sand", "pipeworks:tube_1", "group:sand"}, + }, + }) +end + +if pipeworks.enable_mese_sand_tube then + minetest.register_craft( { + output = "pipeworks:mese_sand_tube_1 2", + recipe = { + {"basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" }, + {"group:sand", materials.mese_crystal, "group:sand" }, + {"basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" } + }, + }) + + minetest.register_craft( { + type = "shapeless", + output = "pipeworks:mese_sand_tube_1", + recipe = { + "pipeworks:sand_tube_1", + materials.mese_crystal_fragment, + materials.mese_crystal_fragment, + materials.mese_crystal_fragment, + materials.mese_crystal_fragment, + }, + }) +end + +if pipeworks.enable_deployer then + minetest.register_craft({ + output = "pipeworks:deployer_off", + recipe = { + { "group:wood", materials.chest, "group:wood" }, + { materials.stone, "mesecons:piston", materials.stone }, + { materials.stone, "mesecons:mesecon", materials.stone }, + } + }) +end + +if pipeworks.enable_dispenser then + minetest.register_craft({ + output = "pipeworks:dispenser_off", + recipe = { + { materials.desert_sand, materials.chest, materials.desert_sand }, + { materials.stone, "mesecons:piston", materials.stone }, + { materials.stone, "mesecons:mesecon", materials.stone }, + } + }) +end + +if pipeworks.enable_node_breaker then + minetest.register_craft({ + output = "pipeworks:nodebreaker_off", + recipe = { + { "basic_materials:gear_steel", "basic_materials:gear_steel", "basic_materials:gear_steel" }, + { materials.stone, "mesecons:piston", materials.stone }, + { "group:wood", "mesecons:mesecon", "group:wood" }, + } + }) +end diff --git a/mods/pipeworks/default_settings.lua b/mods/pipeworks/default_settings.lua new file mode 100644 index 00000000..3ea96852 --- /dev/null +++ b/mods/pipeworks/default_settings.lua @@ -0,0 +1,76 @@ +-- Various settings + +local prefix = "pipeworks_" + +local settings = { + enable_pipes = true, + enable_item_tags = true, + enable_tag_tube = true, + enable_lowpoly = false, + enable_autocrafter = true, + enable_deployer = true, + enable_dispenser = true, + enable_node_breaker = true, + enable_teleport_tube = true, + enable_pipe_devices = true, + enable_redefines = true, + enable_mese_tube = true, + enable_detector_tube = true, + enable_digiline_detector_tube = true, + enable_conductor_tube = true, + enable_digiline_conductor_tube = true, + enable_accelerator_tube = true, + enable_crossing_tube = true, + enable_sand_tube = true, + enable_mese_sand_tube = true, + enable_one_way_tube = true, + enable_priority_tube = true, + enable_lua_tube = true, + enable_cyclic_mode = true, + drop_on_routing_fail = false, + delete_item_on_clearobject = true, + use_real_entities = true, + entity_update_interval = 0, + enable_vertical_digilines_connectivity = false, +} + +pipeworks.toggles = {} +-- documentation for toggles controlling pressure logic features. +-- do not edit this file directly; +-- instead, create pipeworks_settings.txt in your world directory, +-- and copy the uncommented lines from the block comments below into it. +--[[ +-- flow logic implementation. +-- set to one of the following strings. +-- "classic": classic mode written by VanessaE +-- "pressure": pressure metadata based, written by thetaepsilon. +-- has caveats such as water speed issues though. +-- setting to nil inhibits all flow logic, useful for debugging ABM crashes, +-- or for rendering the pipes purely decorative. +]] +pipeworks.toggles.pipe_mode = "classic" +--[[ +-- force-enable finite water handling mode. +-- this changes the way that water node placement is handled; +-- volume will always be preserved, +-- and water is assumed to move itself downwards. +-- nil (the default) means autodetect from installed finite liquid mods, +-- true is force-on, false is force-off. +-- note that you should NOT normally explicitly set this to true/false, +-- unless the mod you want this for is not covered by auto-detection +-- (please see autodetect-finite-water.lua). +-- please file an issue if you have a finite water mod not covered there, +-- and feel it necessary to explicitly set this toggle +pipeworks.toggles.finite_water = nil +]] + +for name, value in pairs(settings) do + local setting_type = type(value) + if setting_type == "boolean" then + pipeworks[name] = minetest.settings:get_bool(prefix..name, value) + elseif setting_type == "number" then + pipeworks[name] = tonumber(minetest.settings:get(prefix..name) or value) + else + pipeworks[name] = value + end +end diff --git a/mods/pipeworks/devices.lua b/mods/pipeworks/devices.lua new file mode 100644 index 00000000..9d0a2a1e --- /dev/null +++ b/mods/pipeworks/devices.lua @@ -0,0 +1,821 @@ +local S = minetest.get_translator("pipeworks") +local new_flow_logic_register = pipeworks.flowables.register + +local texture_alpha_mode = minetest.features.use_texture_alpha_string_modes + +local polys = "" +if pipeworks.enable_lowpoly then polys = "_lowpoly" end + +-- rotation handlers + +function pipeworks.fix_after_rotation(pos, node, user, mode, new_param2) + + if string.find(node.name, "spigot") then new_param2 = new_param2 % 4 end + + local newnode = string.gsub(node.name, "_on", "_off") + minetest.swap_node(pos, { name = newnode, param2 = new_param2 }) + pipeworks.scan_for_pipe_objects(pos) + + return true +end + +function pipeworks.rotate_on_place(itemstack, placer, pointed_thing) + + local playername = placer:get_player_name() + if not minetest.is_protected(pointed_thing.under, playername) + and not minetest.is_protected(pointed_thing.above, playername) then + + local node = minetest.get_node(pointed_thing.under) + + if (not placer:get_player_control().sneak) + and minetest.registered_nodes[node.name] + and minetest.registered_nodes[node.name].on_rightclick then + minetest.registered_nodes[node.name].on_rightclick(pointed_thing.under, + node, placer, itemstack, pointed_thing) + + else + + local pitch = -placer:get_look_vertical() + local above = pointed_thing.above + local under = pointed_thing.under + local fdir = minetest.dir_to_facedir(placer:get_look_dir()) + local undernode = minetest.get_node(under) + local uname = undernode.name + local isabove = (above.x == under.x) and (above.z == under.z) and (pitch > 0) + local pos1 = above + + -- check if the object should be turned vertically + if above.x == under.x + and above.z == under.z + and ( + string.find(uname, "pipeworks:pipe_") + or string.find(uname, "pipeworks:storage_") + or string.find(uname, "pipeworks:expansion_") + or ( string.find(uname, "pipeworks:grating") and not isabove ) + or ( string.find(uname, "pipeworks:pump_") and not isabove ) + + or ( + ( string.find(uname, "pipeworks:valve") + or string.find(uname, "pipeworks:entry_panel") + or string.find(uname, "pipeworks:flow_sensor") ) + and minetest.facedir_to_dir(undernode.param2).y ~= 0 ) + ) + then + fdir = 17 + end + + if minetest.registered_nodes[uname] + and minetest.registered_nodes[uname]["buildable_to"] then + pos1 = under + end + + if minetest.registered_nodes[minetest.get_node(pos1).name] + and not minetest.registered_nodes[minetest.get_node(pos1).name]["buildable_to"] then return end + + local placednode = string.gsub(itemstack:get_name(), "_loaded", "_empty") + placednode = string.gsub(placednode, "_on", "_off") + + minetest.swap_node(pos1, {name = placednode, param2 = fdir }) + pipeworks.scan_for_pipe_objects(pos1) + + if not pipeworks.expect_infinite_stacks then + itemstack:take_item() + end + end + end + return itemstack +end + +-- List of devices that should participate in the autoplace algorithm + +local pipereceptor_on = nil +local pipereceptor_off = nil + +if minetest.get_modpath("mesecons") then + pipereceptor_on = { + receptor = { + state = mesecon.state.on, + rules = pipeworks.mesecons_rules + } + } + + pipereceptor_off = { + receptor = { + state = mesecon.state.off, + rules = pipeworks.mesecons_rules + } + } +end + +--[[ +local pipes_devicelist = { + "pump", + "valve", + "storage_tank_0", + "storage_tank_1", + "storage_tank_2", + "storage_tank_3", + "storage_tank_4", + "storage_tank_5", + "storage_tank_6", + "storage_tank_7", + "storage_tank_8", + "storage_tank_9", + "storage_tank_10" +} +--]] + +-- Now define the nodes. + +local states = { "on", "off" } + +for s in ipairs(states) do + + local dgroups + if states[s] == "off" then + dgroups = {snappy=3, pipe=1, dig_generic = 4, axey=1, handy=1, pickaxey=1} + else + dgroups = {snappy=3, pipe=1, not_in_creative_inventory=1, dig_generic = 4, axey=1, handy=1, pickaxey=1} + end + + local pumpname = "pipeworks:pump_"..states[s] + minetest.register_node(pumpname, { + description = S("Pump/Intake Module"), + drawtype = "mesh", + mesh = "pipeworks_pump"..polys..".obj", + tiles = { "pipeworks_pump_"..states[s]..".png" }, + use_texture_alpha = texture_alpha_mode and "clip" or true, + paramtype = "light", + paramtype2 = "facedir", + groups = dgroups, + is_ground_content = false, + _mcl_hardness=0.8, + _sound_def = { + key = "node_sound_metal_defaults", + }, + walkable = true, + pipe_connections = { top = 1 }, + after_place_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + after_dig_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + drop = "pipeworks:pump_off", + mesecons = {effector = { + action_on = function (pos, node) + minetest.swap_node(pos,{name="pipeworks:pump_on", param2 = node.param2}) + end, + action_off = function (pos, node) + minetest.swap_node(pos,{name="pipeworks:pump_off", param2 = node.param2}) + end + }}, + on_rightclick = function(pos, node, clicker, itemstack, pointed_thing) + local fdir = node.param2 + minetest.swap_node(pos, { name = "pipeworks:pump_"..states[3-s], param2 = fdir }) + end, + on_rotate = screwdriver and screwdriver.rotate_simple or nil + }) + + -- FIXME: this currently assumes that pumps can only rotate around the fixed axis pointing Y+. + new_flow_logic_register.directional_vertical_fixed(pumpname, true) + local pump_drive = 4 + if states[s] ~= "off" then + new_flow_logic_register.intake_simple(pumpname, pump_drive) + end + + + + local nodename_valve_empty = "pipeworks:valve_"..states[s].."_empty" + minetest.register_node(nodename_valve_empty, { + description = S("Valve"), + drawtype = "mesh", + mesh = "pipeworks_valve_"..states[s]..polys..".obj", + tiles = { "pipeworks_valve.png" }, + sunlight_propagates = true, + paramtype = "light", + paramtype2 = "facedir", + selection_box = { + type = "fixed", + fixed = { -5/16, -4/16, -8/16, 5/16, 5/16, 8/16 } + }, + collision_box = { + type = "fixed", + fixed = { -5/16, -4/16, -8/16, 5/16, 5/16, 8/16 } + }, + groups = dgroups, + is_ground_content = false, + _mcl_hardness=0.8, + _sound_def = { + key = "node_sound_metal_defaults", + }, + walkable = true, + on_place = pipeworks.rotate_on_place, + after_dig_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + drop = "pipeworks:valve_off_empty", + mesecons = {effector = { + action_on = function (pos, node) + minetest.swap_node(pos,{name="pipeworks:valve_on_empty", param2 = node.param2}) + end, + action_off = function (pos, node) + minetest.swap_node(pos,{name="pipeworks:valve_off_empty", param2 = node.param2}) + end + }}, + on_rightclick = function(pos, node, clicker, itemstack, pointed_thing) + local fdir = node.param2 + minetest.swap_node(pos, { name = "pipeworks:valve_"..states[3-s].."_empty", param2 = fdir }) + end, + on_rotate = pipeworks.fix_after_rotation + }) + -- only register flow logic for the "on" ABM. + -- this means that the off state automatically blocks flow by not participating in the balancing operation. + if states[s] ~= "off" then + new_flow_logic_register.directional_horizonal_rotate(nodename_valve_empty, true) + end +end +pipeworks.ui_cat_tube_list[#pipeworks.ui_cat_tube_list+1] = "pipeworks:pump_off" +pipeworks.ui_cat_tube_list[#pipeworks.ui_cat_tube_list+1] = "pipeworks:valve_off_empty" + +local nodename_valve_loaded = "pipeworks:valve_on_loaded" +minetest.register_node(nodename_valve_loaded, { + description = S("Valve"), + drawtype = "mesh", + mesh = "pipeworks_valve_on"..polys..".obj", + tiles = { "pipeworks_valve.png" }, + sunlight_propagates = true, + paramtype = "light", + paramtype2 = "facedir", + selection_box = { + type = "fixed", + fixed = { -5/16, -4/16, -8/16, 5/16, 5/16, 8/16 } + }, + collision_box = { + type = "fixed", + fixed = { -5/16, -4/16, -8/16, 5/16, 5/16, 8/16 } + }, + groups = {snappy=3, pipe=1, not_in_creative_inventory=1, dig_generic = 4, axey=1, handy=1, pickaxey=1}, + is_ground_content = false, + _mcl_hardness=0.8, + _sound_def = { + key = "node_sound_metal_defaults", + }, + walkable = true, + on_place = pipeworks.rotate_on_place, + after_dig_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + drop = "pipeworks:valve_off_empty", + mesecons = {effector = { + action_on = function (pos, node) + minetest.swap_node(pos,{name="pipeworks:valve_on_empty", param2 = node.param2}) + end, + action_off = function (pos, node) + minetest.swap_node(pos,{name="pipeworks:valve_off_empty", param2 = node.param2}) + end + }}, + on_rightclick = function(pos, node, clicker, itemstack, pointed_thing) + local fdir = node.param2 + minetest.swap_node(pos, { name = "pipeworks:valve_off_empty", param2 = fdir }) + end, + on_rotate = pipeworks.fix_after_rotation +}) +-- register this the same as the on-but-empty variant, so existing nodes of this type work also. +-- note that as new_flow_logic code does not distinguish empty/full in node states, +-- right-clicking a "loaded" valve (becoming an off valve) then turning it on again will yield a on-but-empty valve, +-- but the flow logic will still function. +-- thus under new_flow_logic this serves as a kind of migration. +new_flow_logic_register.directional_horizonal_rotate(nodename_valve_loaded, true) + +-- grating + +-- FIXME: should this do anything useful in the new flow logic? +minetest.register_node("pipeworks:grating", { + description = S("Decorative grating"), + tiles = { + "pipeworks_grating_top.png", + "pipeworks_grating_sides.png", + "pipeworks_grating_sides.png", + "pipeworks_grating_sides.png", + "pipeworks_grating_sides.png", + "pipeworks_grating_sides.png" + }, + use_texture_alpha = texture_alpha_mode and "clip" or true, + drawtype = "nodebox", + node_box = { + type = "fixed", + fixed = { -0.49, -0.49, -0.49, 0.49, 0.5, 0.49 } + }, + sunlight_propagates = true, + paramtype = "light", + groups = {snappy=3, pipe=1, dig_generic = 4, axey=1, handy=1, pickaxey=1}, + is_ground_content = false, + _mcl_hardness=0.8, + _sound_def = { + key = "node_sound_metal_defaults", + }, + walkable = true, + pipe_connections = { top = 1 }, + after_place_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + after_dig_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + on_rotate = false +}) +pipeworks.ui_cat_tube_list[#pipeworks.ui_cat_tube_list+1] = "pipeworks:grating" + +-- outlet spigot + +local nodename_spigot_empty = "pipeworks:spigot" +minetest.register_node(nodename_spigot_empty, { + description = S("Spigot outlet"), + drawtype = "mesh", + mesh = "pipeworks_spigot"..polys..".obj", + tiles = { "pipeworks_spigot.png" }, + sunlight_propagates = true, + paramtype = "light", + paramtype2 = "facedir", + groups = {snappy=3, pipe=1, dig_generic = 4, axey=1, handy=1, pickaxey=1}, + is_ground_content = false, + _mcl_hardness=0.8, + _sound_def = { + key = "node_sound_metal_defaults", + }, + walkable = true, + pipe_connections = { left=1, right=1, front=1, back=1, + left_param2 = 3, right_param2 = 1, front_param2 = 2, back_param2 = 0 }, + after_place_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + after_dig_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + selection_box = { + type = "fixed", + fixed = { -2/16, -6/16, -2/16, 2/16, 2/16, 8/16 } + }, + collision_box = { + type = "fixed", + fixed = { -2/16, -6/16, -2/16, 2/16, 2/16, 8/16 } + }, + on_rotate = pipeworks.fix_after_rotation +}) + +local nodename_spigot_loaded = "pipeworks:spigot_pouring" +minetest.register_node(nodename_spigot_loaded, { + description = S("Spigot outlet"), + drawtype = "mesh", + mesh = "pipeworks_spigot_pouring"..polys..".obj", + tiles = { + minetest.registered_nodes[pipeworks.liquids.water.source].tiles[1], + { name = "pipeworks_spigot.png" } + }, + use_texture_alpha = texture_alpha_mode and "blend" or true, + sunlight_propagates = true, + paramtype = "light", + paramtype2 = "facedir", + groups = {snappy=3, pipe=1, not_in_creative_inventory=1, dig_generic = 4, axey=1, handy=1, pickaxey=1}, + is_ground_content = false, + _mcl_hardness=0.8, + _sound_def = { + key = "node_sound_metal_defaults", + }, + walkable = true, + pipe_connections = { left=1, right=1, front=1, back=1, + left_param2 = 3, right_param2 = 1, front_param2 = 2, back_param2 = 0 }, + after_place_node = function(pos) + minetest.set_node(pos, { name = "pipeworks:spigot", param2 = minetest.get_node(pos).param2 }) + pipeworks.scan_for_pipe_objects(pos) + end, + after_dig_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + selection_box = { + type = "fixed", + fixed = { -2/16, -6/16, -2/16, 2/16, 2/16, 8/16 } + }, + collision_box = { + type = "fixed", + fixed = { -2/16, -6/16, -2/16, 2/16, 2/16, 8/16 } + }, + drop = "pipeworks:spigot", + on_rotate = pipeworks.fix_after_rotation +}) +pipeworks.ui_cat_tube_list[#pipeworks.ui_cat_tube_list+1] = "pipeworks:spigot" + +-- new flow logic does not currently distinguish between these two visual states. +-- register both so existing flowing spigots continue to work (even if the visual doesn't match the spigot's behaviour). +new_flow_logic_register.directional_horizonal_rotate(nodename_spigot_empty, false) +new_flow_logic_register.directional_horizonal_rotate(nodename_spigot_loaded, false) +local spigot_upper = 1.0 +local spigot_lower = 1.0 +local spigot_neighbours={{x=0, y=-1, z=0}} +new_flow_logic_register.output_simple(nodename_spigot_empty, spigot_upper, spigot_lower, spigot_neighbours) +new_flow_logic_register.output_simple(nodename_spigot_loaded, spigot_upper, spigot_lower, spigot_neighbours) + + + +-- sealed pipe entry/exit (horizontal pipe passing through a metal +-- wall, for use in places where walls should look like they're airtight) + +local panel_cbox = { + type = "fixed", + fixed = { + { -2/16, -2/16, -8/16, 2/16, 2/16, 8/16 }, + { -8/16, -8/16, -1/16, 8/16, 8/16, 1/16 } + } +} + +local nodename_panel_empty = "pipeworks:entry_panel_empty" +minetest.register_node(nodename_panel_empty, { + description = S("Airtight Pipe entry/exit"), + drawtype = "mesh", + mesh = "pipeworks_entry_panel"..polys..".obj", + tiles = { "pipeworks_entry_panel.png" }, + paramtype = "light", + paramtype2 = "facedir", + groups = {snappy=3, pipe=1, dig_generic = 4, axey=1, handy=1, pickaxey=1}, + is_ground_content = false, + _mcl_hardness=0.8, + _sound_def = { + key = "node_sound_metal_defaults", + }, + walkable = true, + on_place = pipeworks.rotate_on_place, + after_dig_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + selection_box = panel_cbox, + collision_box = panel_cbox, + on_rotate = pipeworks.fix_after_rotation +}) + +local nodename_panel_loaded = "pipeworks:entry_panel_loaded" +minetest.register_node(nodename_panel_loaded, { + description = S("Airtight Pipe entry/exit"), + drawtype = "mesh", + mesh = "pipeworks_entry_panel"..polys..".obj", + tiles = { "pipeworks_entry_panel.png" }, + paramtype = "light", + paramtype2 = "facedir", + groups = {snappy=3, pipe=1, not_in_creative_inventory=1, dig_generic = 4, axey=1, handy=1, pickaxey=1}, + is_ground_content = false, + _mcl_hardness=0.8, + _sound_def = { + key = "node_sound_metal_defaults", + }, + walkable = true, + on_place = pipeworks.rotate_on_place, + after_dig_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + selection_box = panel_cbox, + collision_box = panel_cbox, + drop = "pipeworks:entry_panel_empty", + on_rotate = pipeworks.fix_after_rotation +}) + +pipeworks.ui_cat_tube_list[#pipeworks.ui_cat_tube_list+1] = "pipeworks:entry_panel_empty" + +-- TODO: AFAIK the two panels have no visual difference, so are redundant under new flow logic - alias? +new_flow_logic_register.directional_horizonal_rotate(nodename_panel_empty, true) +new_flow_logic_register.directional_horizonal_rotate(nodename_panel_loaded, true) + + + +local nodename_sensor_empty = "pipeworks:flow_sensor_empty" +minetest.register_node(nodename_sensor_empty, { + description = S("Flow Sensor"), + drawtype = "mesh", + mesh = "pipeworks_flow_sensor"..polys..".obj", + tiles = { "pipeworks_flow_sensor_off.png" }, + sunlight_propagates = true, + paramtype = "light", + paramtype2 = "facedir", + groups = {snappy=3, pipe=1, dig_generic = 4, axey=1, handy=1, pickaxey=1}, + is_ground_content = false, + _mcl_hardness=0.8, + _sound_def = { + key = "node_sound_metal_defaults", + }, + walkable = true, + on_place = pipeworks.rotate_on_place, + after_dig_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + on_construct = function(pos) + if mesecon then + mesecon.receptor_off(pos, pipeworks.mesecons_rules) + end + end, + selection_box = { + type = "fixed", + fixed = { + { -2/16, -2/16, -8/16, 2/16, 2/16, 8/16 }, + { -3/16, -3/16, -4/16, 3/16, 3/16, 4/16 }, + } + }, + collision_box = { + type = "fixed", + fixed = { + { -2/16, -2/16, -8/16, 2/16, 2/16, 8/16 }, + { -3/16, -3/16, -4/16, 3/16, 3/16, 4/16 }, + } + }, + mesecons = pipereceptor_off, + on_rotate = pipeworks.fix_after_rotation +}) + +local nodename_sensor_loaded = "pipeworks:flow_sensor_loaded" +minetest.register_node(nodename_sensor_loaded, { + description = S("Flow sensor (on)"), + drawtype = "mesh", + mesh = "pipeworks_flow_sensor"..polys..".obj", + tiles = { "pipeworks_flow_sensor_on.png" }, + sunlight_propagates = true, + paramtype = "light", + paramtype2 = "facedir", + groups = {snappy=3, pipe=1, not_in_creative_inventory=1, dig_generic = 4, axey=1, handy=1, pickaxey=1}, + is_ground_content = false, + _mcl_hardness=0.8, + _sound_def = { + key = "node_sound_metal_defaults", + }, + walkable = true, + on_place = pipeworks.rotate_on_place, + after_dig_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + on_construct = function(pos) + if mesecon then + mesecon.receptor_on(pos, pipeworks.mesecons_rules) + end + end, + selection_box = { + type = "fixed", + fixed = { + { -2/16, -2/16, -8/16, 2/16, 2/16, 8/16 }, + { -3/16, -3/16, -4/16, 3/16, 3/16, 4/16 }, + } + }, + collision_box = { + type = "fixed", + fixed = { + { -2/16, -2/16, -8/16, 2/16, 2/16, 8/16 }, + { -3/16, -3/16, -4/16, 3/16, 3/16, 4/16 }, + } + }, + drop = "pipeworks:flow_sensor_empty", + mesecons = pipereceptor_on, + on_rotate = pipeworks.fix_after_rotation +}) +pipeworks.ui_cat_tube_list[#pipeworks.ui_cat_tube_list+1] = "pipeworks:flow_sensor_empty" + +new_flow_logic_register.directional_horizonal_rotate(nodename_sensor_empty, true) +new_flow_logic_register.directional_horizonal_rotate(nodename_sensor_loaded, true) +-- activate flow sensor at roughly half the pressure pumps drive pipes +local sensor_pressure_set = { { nodename_sensor_empty, 0.0 }, { nodename_sensor_loaded, 1.0 } } +new_flow_logic_register.transition_simple_set(sensor_pressure_set, { mesecons=pipeworks.mesecons_rules }) + + + +-- tanks + +-- TODO flow-logic-stub: these don't currently do anything under the new flow logic. +for fill = 0, 10 do + local filldesc=S("empty") + local sgroups = {snappy=3, pipe=1, tankfill=fill+1, dig_generic = 4, axey=1, handy=1, pickaxey=1} + local image = nil + + if fill ~= 0 then + filldesc=S("@1% full", 10*fill) + sgroups = {snappy=3, pipe=1, tankfill=fill+1, not_in_creative_inventory=1, dig_generic = 4, axey=1, handy=1, pickaxey=1} + image = "pipeworks_storage_tank_fittings.png" + end + + minetest.register_node("pipeworks:expansion_tank_"..fill, { + description = S("Expansion Tank (@1)", filldesc), + tiles = { + "pipeworks_storage_tank_fittings.png", + "pipeworks_storage_tank_fittings.png", + "pipeworks_storage_tank_back.png", + "pipeworks_storage_tank_back.png", + "pipeworks_storage_tank_back.png", + pipeworks.liquid_texture.."^pipeworks_storage_tank_front_"..fill..".png" + }, + inventory_image = image, + paramtype = "light", + paramtype2 = "facedir", + groups = {snappy=3, pipe=1, tankfill=fill+1, not_in_creative_inventory=1, dig_generic = 4, axey=1, handy=1, pickaxey=1}, + is_ground_content = false, + _mcl_hardness=0.8, + _sound_def = { + key = "node_sound_metal_defaults", + }, + walkable = true, + drop = "pipeworks:storage_tank_0", + pipe_connections = { top = 1, bottom = 1}, + after_place_node = function(pos) + pipeworks.look_for_stackable_tanks(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + after_dig_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + on_rotate = false + }) + + minetest.register_node("pipeworks:storage_tank_"..fill, { + description = S("Fluid Storage Tank (@1)", filldesc), + tiles = { + "pipeworks_storage_tank_fittings.png", + "pipeworks_storage_tank_fittings.png", + "pipeworks_storage_tank_back.png", + "pipeworks_storage_tank_back.png", + "pipeworks_storage_tank_back.png", + pipeworks.liquid_texture.."^pipeworks_storage_tank_front_"..fill..".png" + }, + inventory_image = image, + paramtype = "light", + paramtype2 = "facedir", + groups = sgroups, + is_ground_content = false, + _mcl_hardness=0.8, + _sound_def = { + key = "node_sound_metal_defaults", + }, + walkable = true, + drop = "pipeworks:storage_tank_0", + pipe_connections = { top = 1, bottom = 1}, + after_place_node = function(pos) + pipeworks.look_for_stackable_tanks(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + after_dig_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + on_rotate = false + }) +end +pipeworks.ui_cat_tube_list[#pipeworks.ui_cat_tube_list+1] = "pipeworks:storage_tank_0" + +-- fountainhead + +local nodename_fountain_empty = "pipeworks:fountainhead" +minetest.register_node(nodename_fountain_empty, { + description = S("Fountainhead"), + drawtype = "mesh", + mesh = "pipeworks_fountainhead"..polys..".obj", + tiles = { "pipeworks_fountainhead.png" }, + sunlight_propagates = true, + paramtype = "light", + groups = {snappy=3, pipe=1, dig_generic = 4, axey=1, handy=1, pickaxey=1}, + is_ground_content = false, + _mcl_hardness=0.8, + _sound_def = { + key = "node_sound_metal_defaults", + }, + walkable = true, + pipe_connections = { bottom = 1 }, + after_place_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + after_dig_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + on_construct = function(pos) + if mesecon then + mesecon.receptor_on(pos, pipeworks.mesecons_rules) + end + end, + selection_box = { + type = "fixed", + fixed = { -2/16, -8/16, -2/16, 2/16, 8/16, 2/16 } + }, + collision_box = { + type = "fixed", + fixed = { -2/16, -8/16, -2/16, 2/16, 8/16, 2/16 } + }, + on_rotate = false +}) +pipeworks.ui_cat_tube_list[#pipeworks.ui_cat_tube_list+1] = "pipeworks:fountainhead" + +local nodename_fountain_loaded = "pipeworks:fountainhead_pouring" +minetest.register_node(nodename_fountain_loaded, { + description = S("Fountainhead"), + drawtype = "mesh", + mesh = "pipeworks_fountainhead"..polys..".obj", + tiles = { "pipeworks_fountainhead.png" }, + sunlight_propagates = true, + paramtype = "light", + groups = {snappy=3, pipe=1, not_in_creative_inventory=1, dig_generic = 4, axey=1, handy=1, pickaxey=1}, + is_ground_content = false, + _mcl_hardness=0.8, + _sound_def = { + key = "node_sound_metal_defaults", + }, + walkable = true, + pipe_connections = { bottom = 1 }, + after_place_node = function(pos) + minetest.set_node(pos, { name = "pipeworks:fountainhead", param2 = minetest.get_node(pos).param2 }) + pipeworks.scan_for_pipe_objects(pos) + end, + after_dig_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + on_construct = function(pos) + if mesecon then + mesecon.receptor_on(pos, pipeworks.mesecons_rules) + end + end, + selection_box = { + type = "fixed", + fixed = { -2/16, -8/16, -2/16, 2/16, 8/16, 2/16 } + }, + collision_box = { + type = "fixed", + fixed = { -2/16, -8/16, -2/16, 2/16, 8/16, 2/16 } + }, + drop = "pipeworks:fountainhead", + on_rotate = false +}) +new_flow_logic_register.directional_vertical_fixed(nodename_fountain_empty, false) +new_flow_logic_register.directional_vertical_fixed(nodename_fountain_loaded, false) +local fountain_upper = 1.0 +local fountain_lower = 1.0 +local fountain_neighbours={{x=0, y=1, z=0}} +new_flow_logic_register.output_simple(nodename_fountain_empty, fountain_upper, fountain_lower, fountain_neighbours) +new_flow_logic_register.output_simple(nodename_fountain_loaded, fountain_upper, fountain_lower, fountain_neighbours) + +local sp_cbox = { + type = "fixed", + fixed = { + { -2/16, -2/16, -8/16, 2/16, 2/16, 8/16 } + } +} + +local nodename_sp_empty = "pipeworks:straight_pipe_empty" +minetest.register_node(nodename_sp_empty, { + description = S("Straight-only Pipe"), + drawtype = "mesh", + mesh = "pipeworks_straight_pipe"..polys..".obj", + tiles = { "pipeworks_straight_pipe_empty.png" }, + paramtype = "light", + paramtype2 = "facedir", + groups = {snappy=3, pipe=1, dig_generic = 4, axey=1, handy=1, pickaxey=1}, + is_ground_content = false, + _mcl_hardness=0.8, + _sound_def = { + key = "node_sound_metal_defaults", + }, + walkable = true, + on_place = pipeworks.rotate_on_place, + after_dig_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + selection_box = sp_cbox, + collision_box = sp_cbox, + on_rotate = pipeworks.fix_after_rotation, + check_for_pole = pipeworks.check_for_vert_pipe, + check_for_horiz_pole = pipeworks.check_for_horiz_pipe +}) + +local nodename_sp_loaded = "pipeworks:straight_pipe_loaded" +minetest.register_node(nodename_sp_loaded, { + description = S("Straight-only Pipe"), + drawtype = "mesh", + mesh = "pipeworks_straight_pipe"..polys..".obj", + tiles = { "pipeworks_straight_pipe_loaded.png" }, + paramtype = "light", + paramtype2 = "facedir", + groups = {snappy=3, pipe=1, not_in_creative_inventory=1, dig_generic = 4, axey=1, handy=1, pickaxey=1}, + is_ground_content = false, + _mcl_hardness=0.8, + _sound_def = { + key = "node_sound_metal_defaults", + }, + walkable = true, + on_place = pipeworks.rotate_on_place, + after_dig_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + selection_box = sp_cbox, + collision_box = sp_cbox, + drop = "pipeworks:straight_pipe_empty", + on_rotate = pipeworks.fix_after_rotation, + check_for_pole = pipeworks.check_for_vert_pipe, + check_for_horiz_pole = pipeworks.check_for_horiz_pipe +}) +pipeworks.ui_cat_tube_list[#pipeworks.ui_cat_tube_list+1] = "pipeworks:straight_pipe_empty" + +new_flow_logic_register.directional_horizonal_rotate(nodename_sp_empty, true) +new_flow_logic_register.directional_horizonal_rotate(nodename_sp_loaded, true) + +-- Other misc stuff + +minetest.register_alias("pipeworks:valve_off_loaded", "pipeworks:valve_off_empty") +minetest.register_alias("pipeworks:entry_panel", "pipeworks:entry_panel_empty") + diff --git a/mods/pipeworks/filter-injector.lua b/mods/pipeworks/filter-injector.lua new file mode 100644 index 00000000..2aee35ec --- /dev/null +++ b/mods/pipeworks/filter-injector.lua @@ -0,0 +1,600 @@ +local S = minetest.get_translator("pipeworks") +local fs_helpers = pipeworks.fs_helpers + +local function set_filter_infotext(data, meta) + local infotext = S("@1 Filter-Injector", data.wise_desc) + if meta:get_int("slotseq_mode") == 2 then + infotext = infotext .. " "..S("(slot #@1 next)", meta:get_int("slotseq_index")) + end + meta:set_string("infotext", infotext) +end + +local function set_filter_formspec(data, meta) + local itemname = S("@1 Filter-Injector", data.wise_desc) + + local formspec + if data.digiline then + local form_height = 3 + if pipeworks.enable_item_tags then + form_height = 4 + end + formspec = + ("size[8.5,%f]"):format(form_height) .. + "item_image[0.2,0;1,1;pipeworks:"..data.name.."]".. + "label[1.2,0.2;"..minetest.formspec_escape(itemname).."]".. + "field[0.5,1.6;4.6,1;channel;"..S("Channel")..";${channel}]".. + "button[4.8,1.3;1.5,1;set_channel;"..S("Set").."]".. + fs_helpers.cycling_button(meta, ("button[0.2,%f;4.05,1"):format(form_height - 0.7), "slotseq_mode", + {S("Sequence slots by Priority"), + S("Sequence slots Randomly"), + S("Sequence slots by Rotation")}).. + fs_helpers.cycling_button(meta, ("button[4.25,%f;4.05,1"):format(form_height - 0.7), "exmatch_mode", + {S("Exact match - off"), + S("Exact match - on")}).. + ("button_exit[6.3,%f;2,1;close;" .. S("Close") .. "]"):format(form_height - 1.7) + if pipeworks.enable_item_tags then + formspec = formspec .. + ("field[0.5,%f;4.6,1;item_tags;"):format(form_height - 1.4) .. S("Item Tags") .. ";${item_tags}]" .. + ("button[4.8,%f;1.5,1;set_item_tags;"):format(form_height - 1.7) .. S("Set") .. "]" + end + else + local exmatch_button = "" + if data.stackwise then + exmatch_button = + fs_helpers.cycling_button(meta, "button["..(10.2-(0.22)-4)..",4.5;4,1", "exmatch_mode", + {S("Exact match - off"), + S("Exact match - on")}) + end + local size = "10.2,11" + local list_backgrounds = "" + if minetest.get_modpath("i3") or minetest.get_modpath("mcl_formspec") then + list_backgrounds = "style_type[box;colors=#666]" + for i=0, 7 do + for j=0, 1 do + list_backgrounds = list_backgrounds .. "box[".. 0.22+(i*1.25) ..",".. 1.75+(j*1.25) ..";1,1;]" + end + end + end + formspec = + "formspec_version[2]".. + "size["..size.."]".. + pipeworks.fs_helpers.get_prepends(size).. + "item_image[0.22,0.22;1,1;pipeworks:"..data.name.."]".. + "label[1.22,0.72;"..minetest.formspec_escape(itemname).."]".. + "label[0.22,1.5;"..S("Prefer item types:").."]".. + list_backgrounds.. + "list[context;main;0.22,1.75;8,2;]".. + fs_helpers.cycling_button(meta, "button[0.22,4.5;4,1", "slotseq_mode", + {S("Sequence slots by Priority"), + S("Sequence slots Randomly"), + S("Sequence slots by Rotation")}).. + exmatch_button.. + pipeworks.fs_helpers.get_inv(6).. + "listring[]" + if pipeworks.enable_item_tags then + formspec = formspec .. + "field[5.8,0.5;3,0.8;item_tags;" .. S("Item Tags") .. ";${item_tags}]" .. + "button[9,0.3;1,1.1;set_item_tags;" .. S("Set") .. "]" + end + end + meta:set_string("formspec", formspec) +end + +local function punch_filter(data, filtpos, filtnode, msg) + local filtmeta = minetest.get_meta(filtpos) + local filtinv = filtmeta:get_inventory() + local owner = filtmeta:get_string("owner") + local fakeplayer = fakelib.create_player(owner) + local dir = pipeworks.facedir_to_right_dir(filtnode.param2) + local frompos = vector.subtract(filtpos, dir) + local fromnode = minetest.get_node(frompos) + if not fromnode then return end + local fromdef = minetest.registered_nodes[fromnode.name] + if not fromdef or not fromdef.tube then return end + local fromtube = table.copy(fromdef.tube) + local input_special_cases = { + ["technic:mv_electric_furnace"] = "dst", + ["technic:mv_electric_furnace_active"] = "dst", + ["technic:mv_alloy_furnace"] = "dst", + ["technic:mv_alloy_furnace_active"] = "dst", + ["technic:mv_centrifuge"] = "dst", + ["technic:mv_centrifuge_active"] = "dst", + ["technic:mv_compressor"] = "dst", + ["technic:mv_compressor_active"] = "dst", + ["technic:mv_extractor"] = "dst", + ["technic:mv_extractor_active"] = "dst", + ["technic:mv_grinder"] = "dst", + ["technic:mv_grinder_active"] = "dst", + ["technic:tool_workshop"] = "src", + ["technic:mv_freezer"] = "dst", + ["technic:mv_freezer_active"] = "dst", + ["technic:hv_electric_furnace"] = "dst", + ["technic:hv_electric_furnace_active"] = "dst", + ["technic:hv_compressor"] = "dst", + ["technic:hv_compressor_active"] = "dst", + ["technic:hv_grinder"] = "dst", + ["technic:hv_grinder_active"] = "dst" + } + + -- make sure there's something appropriate to inject the item into + local topos = vector.add(filtpos, dir) + local tonode = minetest.get_node(topos) + local todef = minetest.registered_nodes[tonode.name] + + if not todef + or not (minetest.get_item_group(tonode.name, "tube") == 1 + or minetest.get_item_group(tonode.name, "tubedevice") == 1 + or minetest.get_item_group(tonode.name, "tubedevice_receiver") == 1) then + return + end + + if fromtube then fromtube.input_inventory = input_special_cases[fromnode.name] or fromtube.input_inventory end + if not (fromtube and fromtube.input_inventory) then return end + + local slotseq_mode + local exmatch_mode + + local item_tags = pipeworks.sanitize_tags(filtmeta:get_string("item_tags")) + local filters = {} + if data.digiline then + local function add_filter(name, group, count, wear, metadata) + table.insert(filters, {name = name, group = group, count = tonumber(count), wear = wear, metadata = metadata}) + end + + local function add_itemstring_filter(filter) + local filterstack = ItemStack(filter) + local filtername = filterstack:get_name() + local filtercount = filterstack:get_count() + local filterwear = string.match(filter, "%S*:%S*%s%d%s(%d)") and filterstack:get_wear() + local filtermetadata = string.match(filter, "%S*:%S*%s%d%s%d(%s.*)") and filterstack:get_metadata() + + add_filter(filtername, nil, filtercount, filterwear, filtermetadata) + end + + local t_msg = type(msg) + if t_msg == "table" then + local slotseq = msg.slotseq + local t_slotseq = type(slotseq) + if t_slotseq == "number" and slotseq >= 0 and slotseq <= 2 then + slotseq_mode = slotseq + elseif t_slotseq == "string" then + slotseq = string.lower(slotseq) + if slotseq == "priority" then + slotseq_mode = 0 + elseif slotseq == "random" then + slotseq_mode = 1 + elseif slotseq == "rotation" then + slotseq_mode = 2 + end + end + + local exmatch = msg.exmatch + local t_exmatch = type(exmatch) + if t_exmatch == "number" and (exmatch == 0 or exmatch == 1) then + exmatch_mode = exmatch + elseif t_exmatch == "boolean" then + exmatch_mode = exmatch and 1 or 0 + end + + local slotseq_index = msg.slotseq_index + if type(slotseq_index) == "number" then + -- This should allow any valid index, but I'm not completely sure what + -- constitutes a valid index, so I'm only allowing resetting it to 1. + if slotseq_index == 1 then + filtmeta:set_int("slotseq_index", slotseq_index) + set_filter_infotext(data, filtmeta) + end + end + + if slotseq_mode ~= nil then + filtmeta:set_int("slotseq_mode", slotseq_mode) + end + + if exmatch_mode ~= nil then + filtmeta:set_int("exmatch_mode", exmatch_mode) + end + + if slotseq_mode ~= nil or exmatch_mode ~= nil then + set_filter_formspec(data, filtmeta) + end + + if pipeworks.enable_item_tags then + if type(msg.tags) == "table" or type(msg.tags) == "string" then + item_tags = pipeworks.sanitize_tags(msg.tags) + elseif type(msg.tag) == "string" then + item_tags = pipeworks.sanitize_tags({msg.tag}) + end + end + + if msg.nofire then + return + end + + if msg.name or msg.group or msg.count or msg.wear or msg.metadata then + add_filter(msg.name, msg.group, msg.count, msg.wear, msg.metadata) + else + for _, filter in ipairs(msg) do + local t_filter = type(filter) + if t_filter == "table" then + if filter.name or filter.group or filter.count or filter.wear or filter.metadata then + add_filter(filter.name, filter.group, filter.count, filter.wear, filter.metadata) + end + elseif t_filter == "string" then + add_itemstring_filter(filter) + end + end + end + elseif t_msg == "string" then + add_itemstring_filter(msg) + end + else + for _, filterstack in ipairs(filtinv:get_list("main")) do + local filtername = filterstack:get_name() + local filtercount = filterstack:get_count() + if filtername ~= "" then table.insert(filters, {name = filtername, count = filtercount}) end + end + end + if #filters == 0 then table.insert(filters, "") end + + if slotseq_mode == nil then + slotseq_mode = filtmeta:get_int("slotseq_mode") + end + + if exmatch_mode == nil then + exmatch_mode = filtmeta:get_int("exmatch_mode") + end + + local frominv + if fromtube.return_input_invref then + frominv = fromtube.return_input_invref(frompos, fromnode, dir, owner) + if not frominv then + return + end + else + local frommeta = minetest.get_meta(frompos) + frominv = frommeta:get_inventory() + end + if fromtube.before_filter then fromtube.before_filter(frompos) end + + local function grabAndFire(frominvname, filterfor) + if (exmatch_mode ~= 0) and not filterfor.count then return false end + local sposes = {} + if not frominvname or not frominv:get_list(frominvname) then return end + for spos,stack in ipairs(frominv:get_list(frominvname)) do + local matches + if filterfor == "" then + matches = stack:get_name() ~= "" + else + local fname = filterfor.name + local fgroup = filterfor.group + local fwear = filterfor.wear + local fmetadata = filterfor.metadata + matches = (not fname -- If there's a name filter, + or stack:get_name() == fname) -- it must match. + + and (not fgroup -- If there's a group filter, + or (type(fgroup) == "string" -- it must be a string + and minetest.get_item_group( -- and it must match. + stack:get_name(), fgroup) ~= 0)) + + and (not fwear -- If there's a wear filter: + or (type(fwear) == "number" -- If it's a number, + and stack:get_wear() == fwear) -- it must match. + or (type(fwear) == "table" -- If it's a table: + and (not fwear[1] -- If there's a lower bound, + or (type(fwear[1]) == "number" -- it must be a number + and fwear[1] <= stack:get_wear())) -- and it must be <= the actual wear. + and (not fwear[2] -- If there's an upper bound + or (type(fwear[2]) == "number" -- it must be a number + and stack:get_wear() < fwear[2])))) -- and it must be > the actual wear. + -- If the wear filter is of any other type, fail. + + and (not fmetadata -- If there's a metadata filter, + or (type(fmetadata) == "string" -- it must be a string + and stack:get_metadata() == fmetadata)) -- and it must match. + end + if matches then table.insert(sposes, spos) end + end + if #sposes == 0 then return false end + if slotseq_mode == 1 then + for i = #sposes, 2, -1 do + local j = math.random(i) + local t = sposes[j] + sposes[j] = sposes[i] + sposes[i] = t + end + elseif slotseq_mode == 2 then + local headpos = filtmeta:get_int("slotseq_index") + table.sort(sposes, function (a, b) + if a >= headpos then + if b < headpos then return true end + else + if b >= headpos then return false end + end + return a < b + end) + end + local taken = 0 + for _, spos in ipairs(sposes) do + local stack = frominv:get_stack(frominvname, spos) + local doRemove = stack:get_count() + if fromtube.can_remove then + doRemove = fromtube.can_remove(frompos, fromnode, stack, dir, frominvname, spos) + elseif fromdef.allow_metadata_inventory_take then + doRemove = fromdef.allow_metadata_inventory_take(frompos, frominvname, spos, stack, fakeplayer) + end + -- stupid lack of continue statements grumble + if doRemove > 0 then + if slotseq_mode == 2 then + local nextpos = spos + 1 + if nextpos > frominv:get_size(frominvname) then + nextpos = 1 + end + filtmeta:set_int("slotseq_index", nextpos) + set_filter_infotext(data, filtmeta) + end + local count + if data.stackwise then + count = math.min(stack:get_count(), doRemove) + taken = taken + count + else + taken = 1 + break + end + end + end + local item + if taken == 0 then return false end + if (exmatch_mode ~= 0) and (filterfor.count > taken) then return false end + if filterfor.count then taken = math.min(taken, filterfor.count) end + local real_taken = 0 + if fromtube.remove_items then + for i, spos in ipairs(sposes) do + -- it could be the entire stack... + item = fromtube.remove_items(frompos, fromnode, frominv:get_stack(frominvname, spos), dir, taken, frominvname, spos) + local count = math.min(taken, item:get_count()) + taken = taken - count + real_taken = real_taken + count + if taken == 0 then break end + if not filterfor.count then break end + end + else + for i, spos in ipairs(sposes) do + -- it could be the entire stack... + local stack = frominv:get_stack(frominvname, spos) + local count = math.min(taken, stack:get_count()) + item = stack:take_item(taken) + frominv:set_stack(frominvname, spos, stack) + if fromdef.on_metadata_inventory_take then + fromdef.on_metadata_inventory_take(frompos, frominvname, spos, item, fakeplayer) + end + taken = taken - count + real_taken = real_taken + count + if taken == 0 then break end + if not filterfor.count then break end + end + end + local pos = vector.add(frompos, vector.multiply(dir, 1.4)) + local start_pos = vector.add(frompos, dir) + item:set_count(real_taken) + pipeworks.tube_inject_item(pos, start_pos, dir, item, + fakeplayer:get_player_name(), item_tags) + return true -- only fire one item, please + end + + for _, frominvname in ipairs(type(fromtube.input_inventory) == "table" and fromtube.input_inventory or {fromtube.input_inventory}) do + local done = false + for _, filterfor in ipairs(filters) do + if grabAndFire(frominvname, filterfor) then + done = true + break + end + end + if done then break end + end + if fromtube.after_filter then fromtube.after_filter(frompos) end +end + +for _, data in ipairs({ + { + name = "filter", + wise_desc = S("Itemwise"), + stackwise = false, + }, + { + name = "mese_filter", + wise_desc = S("Stackwise"), + stackwise = true, + }, + { -- register even if no digilines + name = "digiline_filter", + wise_desc = S("Digiline"), + stackwise = true, + digiline = true, + }, +}) do + local node = { + description = S("@1 Filter-Injector", data.wise_desc), + tiles = { + "pipeworks_"..data.name.."_top.png", + "pipeworks_"..data.name.."_top.png", + "pipeworks_"..data.name.."_output.png", + "pipeworks_"..data.name.."_input.png", + "pipeworks_"..data.name.."_side.png", + "pipeworks_"..data.name.."_top.png", + }, + paramtype2 = "facedir", + groups = {snappy = 2, choppy = 2, oddly_breakable_by_hand = 2, mesecon = 2, axey=1, handy=1, pickaxey=1}, + is_ground_content = false, + _mcl_hardness=0.8, + legacy_facedir_simple = true, + _sound_def = { + key = "node_sound_wood_defaults", + }, + on_construct = function(pos) + local meta = minetest.get_meta(pos) + set_filter_formspec(data, meta) + set_filter_infotext(data, meta) + local inv = meta:get_inventory() + inv:set_size("main", 8*2) + end, + after_place_node = function (pos, placer) + minetest.get_meta(pos):set_string("owner", placer:get_player_name()) + pipeworks.after_place(pos) + end, + after_dig_node = pipeworks.after_dig, + on_rotate = pipeworks.on_rotate, + allow_metadata_inventory_put = function(pos, listname, index, stack, player) + if not pipeworks.may_configure(pos, player) then + return 0 + end + local inv = minetest.get_meta(pos):get_inventory() + inv:set_stack("main", index, stack) + return 0 + end, + allow_metadata_inventory_take = function(pos, listname, index, stack, player) + if not pipeworks.may_configure(pos, player) then + return 0 + end + local inv = minetest.get_meta(pos):get_inventory() + local fake_stack = inv:get_stack("main", index) + fake_stack:take_item(stack:get_count()) + inv:set_stack("main", index, fake_stack) + return 0 + end, + allow_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player) + if not pipeworks.may_configure(pos, player) then return 0 end + return count + end, + tube = {connect_sides = {right = 1}}, + } + + if data.digiline then + node.groups.mesecon = nil + if not minetest.get_modpath("digilines") then + node.groups.not_in_creative_inventory = 1 + end + + node.on_receive_fields = function(pos, formname, fields, sender) + if (fields.quit and not fields.key_enter_field) + or not pipeworks.may_configure(pos, sender) then + return + end + + fs_helpers.on_receive_fields(pos, fields) + + if fields.channel and (fields.key_enter_field == "channel" or fields.set_channel) then + minetest.get_meta(pos):set_string("channel", fields.channel) + end + + local meta = minetest.get_meta(pos) + if pipeworks.enable_item_tags and fields.item_tags and (fields.key_enter_field == "item_tags" or fields.set_item_tags) then + local tags = pipeworks.sanitize_tags(fields.item_tags) + meta:set_string("item_tags", table.concat(tags, ",")) + end + --meta:set_int("slotseq_index", 1) + set_filter_formspec(data, meta) + set_filter_infotext(data, meta) + end + node.digilines = { + effector = { + action = function(pos, node, channel, msg) + local meta = minetest.get_meta(pos) + local setchan = meta:get_string("channel") + if setchan ~= channel then return end + + punch_filter(data, pos, node, msg) + end, + }, + } + else + node.on_receive_fields = function(pos, formname, fields, sender) + if not pipeworks.may_configure(pos, sender) then return end + fs_helpers.on_receive_fields(pos, fields) + local meta = minetest.get_meta(pos) + meta:set_int("slotseq_index", 1) + if pipeworks.enable_item_tags and fields.item_tags and (fields.key_enter_field == "item_tags" or fields.set_item_tags) then + local tags = pipeworks.sanitize_tags(fields.item_tags) + meta:set_string("item_tags", table.concat(tags, ",")) + end + set_filter_formspec(data, meta) + set_filter_infotext(data, meta) + end + node.mesecons = { + effector = { + action_on = function(pos, node) + punch_filter(data, pos, node) + end, + }, + } + node.on_punch = function (pos, node, puncher) + punch_filter(data, pos, node) + end + end + + + + minetest.register_node("pipeworks:"..data.name, node) + pipeworks.ui_cat_tube_list[#pipeworks.ui_cat_tube_list+1] = "pipeworks:"..data.name +end + +--[[ +In the past the filter-injectors had real items in their inventories. This code +puts them to the input to the filter-injector if possible. Else the items are +dropped. +]] +local function put_to_inputinv(pos, node, filtmeta, list) + local dir = pipeworks.facedir_to_right_dir(node.param2) + local frompos = vector.subtract(pos, dir) + local fromnode = minetest.get_node(frompos) + local fromdef = minetest.registered_nodes[fromnode.name] + if not fromdef or not fromdef.tube then + return + end + local fromtube = fromdef.tube + local frominv + if fromtube.return_input_invref then + local owner = filtmeta:get_string("owner") + frominv = fromtube.return_input_invref(frompos, fromnode, dir, owner) + if not frominv then + return + end + else + frominv = minetest.get_meta(frompos):get_inventory() + end + local listname = type(fromtube.input_inventory) == "table" and + fromtube.input_inventory[1] or fromtube.input_inventory + if not listname then + return + end + for i = 1, #list do + local item = list[i] + if not item:is_empty() then + local leftover = frominv:add_item(listname, item) + if not leftover:is_empty() then + minetest.add_item(pos, leftover) + end + end + end + return true +end +minetest.register_lbm({ + label = "Give back items of old filters that had real inventories", + name = "pipeworks:give_back_old_filter_items", + nodenames = {"pipeworks:filter", "pipeworks:mese_filter"}, + run_at_every_load = false, + action = function(pos, node) + local meta = minetest.get_meta(pos) + local list = meta:get_inventory():get_list("main") + if put_to_inputinv(pos, node, meta, list) then + return + end + pos.y = pos.y + 1 + for i = 1, #list do + local item = list[i] + if not item:is_empty() then + minetest.add_item(pos, item) + end + end + end, +}) diff --git a/mods/pipeworks/flowing_logic.lua b/mods/pipeworks/flowing_logic.lua new file mode 100644 index 00000000..b1c12aac --- /dev/null +++ b/mods/pipeworks/flowing_logic.lua @@ -0,0 +1,135 @@ +-- This file provides the actual flow and pathfinding logic that makes water +-- move through the pipes. +-- +-- Contributed by mauvebic, 2013-01-03, rewritten a bit by Vanessa Ezekowitz +-- + +local finitewater = minetest.settings:get_bool("liquid_finite") + +pipeworks.check_for_liquids = function(pos) + local coords = { + {x=pos.x,y=pos.y-1,z=pos.z}, + {x=pos.x,y=pos.y+1,z=pos.z}, + {x=pos.x-1,y=pos.y,z=pos.z}, + {x=pos.x+1,y=pos.y,z=pos.z}, + {x=pos.x,y=pos.y,z=pos.z-1}, + {x=pos.x,y=pos.y,z=pos.z+1}, } + for i =1,6 do + local name = minetest.get_node(coords[i]).name + if name and string.find(name,"water") then + if finitewater then minetest.remove_node(coords[i]) end + return true + end + end + return false +end + +pipeworks.check_for_inflows = function(pos,node) + local coords = { + {x=pos.x,y=pos.y-1,z=pos.z}, + {x=pos.x,y=pos.y+1,z=pos.z}, + {x=pos.x-1,y=pos.y,z=pos.z}, + {x=pos.x+1,y=pos.y,z=pos.z}, + {x=pos.x,y=pos.y,z=pos.z-1}, + {x=pos.x,y=pos.y,z=pos.z+1}, + } + local newnode = false + local source = false + for i = 1, 6 do + if newnode then break end + local testnode = minetest.get_node(coords[i]) + local name = testnode.name + if name and (name == "pipeworks:pump_on" and pipeworks.check_for_liquids(coords[i])) or string.find(name,"_loaded") then + if string.find(name,"_loaded") then + source = minetest.get_meta(coords[i]):get_string("source") + if source == minetest.pos_to_string(pos) then break end + end + if string.find(name, "valve") or string.find(name, "sensor") + or string.find(name, "straight_pipe") or string.find(name, "panel") then + + if ((i == 3 or i == 4) and minetest.facedir_to_dir(testnode.param2).x ~= 0) + or ((i == 5 or i == 6) and minetest.facedir_to_dir(testnode.param2).z ~= 0) + or ((i == 1 or i == 2) and minetest.facedir_to_dir(testnode.param2).y ~= 0) then + + newnode = string.gsub(node.name,"empty","loaded") + source = {x=coords[i].x,y=coords[i].y,z=coords[i].z} + end + else + newnode = string.gsub(node.name,"empty","loaded") + source = {x=coords[i].x,y=coords[i].y,z=coords[i].z} + end + end + end + if newnode then + minetest.add_node(pos,{name=newnode, param2 = node.param2}) + minetest.get_meta(pos):set_string("source",minetest.pos_to_string(source)) + end +end + +pipeworks.check_sources = function(pos,node) + local sourcepos = minetest.string_to_pos(minetest.get_meta(pos):get_string("source")) + if not sourcepos then return end + local source = minetest.get_node(sourcepos).name + local newnode = false + if source and not ((source == "pipeworks:pump_on" and pipeworks.check_for_liquids(sourcepos)) or string.find(source,"_loaded") or source == "ignore" ) then + newnode = string.gsub(node.name,"loaded","empty") + end + + if newnode then + minetest.add_node(pos,{name=newnode, param2 = node.param2}) + minetest.get_meta(pos):set_string("source","") + end +end + +pipeworks.spigot_check = function(pos, node) + local belowname = minetest.get_node({x=pos.x,y=pos.y-1,z=pos.z}).name + if belowname and (belowname == "air" or belowname == pipeworks.liquids.water.flowing or belowname == pipeworks.liquids.water.source) then + local spigotname = minetest.get_node(pos).name + local fdir=node.param2 % 4 + local check = { + {x=pos.x,y=pos.y,z=pos.z+1}, + {x=pos.x+1,y=pos.y,z=pos.z}, + {x=pos.x,y=pos.y,z=pos.z-1}, + {x=pos.x-1,y=pos.y,z=pos.z} + } + local near_node = minetest.get_node(check[fdir+1]) + if near_node and string.find(near_node.name, "_loaded") then + if spigotname and spigotname == "pipeworks:spigot" then + minetest.add_node(pos,{name = "pipeworks:spigot_pouring", param2 = fdir}) + if finitewater or belowname ~= pipeworks.liquids.water.source then + minetest.add_node({x=pos.x,y=pos.y-1,z=pos.z},{name = pipeworks.liquids.water.source}) + end + end + else + if spigotname == "pipeworks:spigot_pouring" then + minetest.add_node({x=pos.x,y=pos.y,z=pos.z},{name = "pipeworks:spigot", param2 = fdir}) + if belowname == pipeworks.liquids.water.source and not finitewater then + minetest.remove_node({x=pos.x,y=pos.y-1,z=pos.z}) + end + end + end + end +end + +pipeworks.fountainhead_check = function(pos, node) + local abovename = minetest.get_node({x=pos.x,y=pos.y+1,z=pos.z}).name + if abovename and (abovename == "air" or abovename == pipeworks.liquids.water.flowing or abovename == pipeworks.liquids.water.source) then + local fountainhead_name = minetest.get_node(pos).name + local near_node = minetest.get_node({x=pos.x,y=pos.y-1,z=pos.z}) + if near_node and string.find(near_node.name, "_loaded") then + if fountainhead_name and fountainhead_name == "pipeworks:fountainhead" then + minetest.add_node(pos,{name = "pipeworks:fountainhead_pouring"}) + if finitewater or abovename ~= pipeworks.liquids.water.source then + minetest.add_node({x=pos.x,y=pos.y+1,z=pos.z},{name = pipeworks.liquids.water.source}) + end + end + else + if fountainhead_name == "pipeworks:fountainhead_pouring" then + minetest.add_node({x=pos.x,y=pos.y,z=pos.z},{name = "pipeworks:fountainhead"}) + if abovename == pipeworks.liquids.water.source and not finitewater then + minetest.remove_node({x=pos.x,y=pos.y+1,z=pos.z}) + end + end + end + end +end diff --git a/mods/pipeworks/init.lua b/mods/pipeworks/init.lua new file mode 100644 index 00000000..76a0e21f --- /dev/null +++ b/mods/pipeworks/init.lua @@ -0,0 +1,134 @@ +-- Pipeworks mod by Vanessa Ezekowitz - 2013-07-13 +-- +-- This mod supplies various steel pipes and plastic pneumatic tubes +-- and devices that they can connect to. +-- + +pipeworks = { + ui_cat_tube_list = {}, + worldpath = minetest.get_worldpath(), + modpath = minetest.get_modpath("pipeworks"), + liquids = { + water = { + source = minetest.registered_nodes["mapgen_water_source"].name, + flowing = minetest.registered_nodes["mapgen_water_source"].liquid_alternative_flowing + }, + river_water = { + source = minetest.registered_nodes["mapgen_river_water_source"].name, + flowing = minetest.registered_nodes["mapgen_river_water_source"].liquid_alternative_flowing + } + } +} + +dofile(pipeworks.modpath.."/default_settings.lua") +-- Read the external config file if it exists. +local worldsettingspath = pipeworks.worldpath.."/pipeworks_settings.txt" +local worldsettingsfile = io.open(worldsettingspath, "r") +if worldsettingsfile then + worldsettingsfile:close() + dofile(worldsettingspath) +end +if pipeworks.toggles.pipe_mode == "pressure" then + minetest.log("warning", "pipeworks pressure logic mode comes with caveats and differences in behaviour, you have been warned!") +end +if pipeworks.entity_update_interval >= 0.2 and pipeworks.enable_accelerator_tube then + minetest.log("warning", "pipeworks accelerator tubes will not entirely work with an entity update interval 0.2 or above.") +end + +pipeworks.logger = function(msg) + minetest.log("action", "[pipeworks] "..msg) +end + +------------------------------------------- +-- Load the various other parts of the mod + +-- early auto-detection for finite water mode if not explicitly disabled +if pipeworks.toggles.finite_water == nil then + dofile(pipeworks.modpath.."/autodetect-finite-water.lua") +end + +if minetest.get_modpath("signs_lib") then + dofile(pipeworks.modpath.."/signs_compat.lua") +end + +dofile(pipeworks.modpath.."/common.lua") +dofile(pipeworks.modpath.."/models.lua") +dofile(pipeworks.modpath.."/autoplace_pipes.lua") +dofile(pipeworks.modpath.."/autoplace_tubes.lua") +dofile(pipeworks.modpath.."/luaentity.lua") +dofile(pipeworks.modpath.."/item_transport.lua") +dofile(pipeworks.modpath.."/flowing_logic.lua") +dofile(pipeworks.modpath.."/filter-injector.lua") +dofile(pipeworks.modpath.."/chests.lua") +dofile(pipeworks.modpath.."/trashcan.lua") +dofile(pipeworks.modpath.."/wielder.lua") +dofile(pipeworks.modpath.."/tubes/registration.lua") +dofile(pipeworks.modpath.."/tubes/routing.lua") +dofile(pipeworks.modpath.."/tubes/sorting.lua") +dofile(pipeworks.modpath.."/tubes/signal.lua") +dofile(pipeworks.modpath.."/tubes/embedded_tube.lua") +dofile(pipeworks.modpath.."/tubes/pane_embedded_tube.lua") +dofile(pipeworks.modpath.."/tubes/tags.lua") + +if pipeworks.enable_teleport_tube then + dofile(pipeworks.modpath.."/tubes/teleport.lua") +end +if pipeworks.enable_lua_tube and minetest.get_modpath("mesecons") then + dofile(pipeworks.modpath.."/tubes/lua.lua") +end +if pipeworks.enable_sand_tube or pipeworks.enable_mese_sand_tube then + dofile(pipeworks.modpath.."/tubes/vacuum.lua") +end + +local logicdir = "/pressure_logic/" + +-- note that even with these files the new flow logic is not yet default. +-- registration will take place but no actual ABMs/node logic will be installed, +-- unless the toggle flag is specifically enabled in the per-world settings flag. +dofile(pipeworks.modpath..logicdir.."flowable_node_registry.lua") +dofile(pipeworks.modpath..logicdir.."abms.lua") +dofile(pipeworks.modpath..logicdir.."abm_register.lua") +dofile(pipeworks.modpath..logicdir.."flowable_node_registry_install.lua") + +if pipeworks.enable_pipes then + dofile(pipeworks.modpath.."/pipes.lua") +end +if pipeworks.enable_pipe_devices then + dofile(pipeworks.modpath.."/devices.lua") +end +if pipeworks.enable_redefines then + dofile(pipeworks.modpath.."/compat-chests.lua") +end +if pipeworks.enable_redefines and (minetest.get_modpath("default") or minetest.get_modpath("hades_core")) then + dofile(pipeworks.modpath.."/compat-furnaces.lua") +end +if pipeworks.enable_redefines and minetest.get_modpath("mcl_furnaces") then + dofile(pipeworks.modpath.."/mcl_furnaces.lua") +end +if pipeworks.enable_autocrafter then + dofile(pipeworks.modpath.."/autocrafter.lua") +end + +dofile(pipeworks.modpath.."/crafts.lua") + +minetest.register_alias("pipeworks:pipe", "pipeworks:pipe_110000_empty") + +-- Unified Inventory categories integration + +if minetest.get_modpath("unified_inventory") and unified_inventory.registered_categories then + if not unified_inventory.registered_categories["automation"] then + local symbol + if pipeworks.enable_lua_tube then + symbol = "pipeworks:lua_tube000000" + else + symbol = "pipeworks:mese_filter" -- fallback when lua tube isn't registered + end + unified_inventory.register_category("automation", { + symbol = symbol, + label = "Automation components" + }) + end + unified_inventory.add_category_items("automation", pipeworks.ui_cat_tube_list) +end + +minetest.log("info", "Pipeworks loaded!") diff --git a/mods/pipeworks/item_transport.lua b/mods/pipeworks/item_transport.lua new file mode 100644 index 00000000..2b3025ba --- /dev/null +++ b/mods/pipeworks/item_transport.lua @@ -0,0 +1,454 @@ +local luaentity = pipeworks.luaentity +local enable_max_limit = minetest.settings:get_bool("pipeworks_enable_items_per_tube_limit") +local max_tube_limit = tonumber(minetest.settings:get("pipeworks_max_items_per_tube")) or 30 +if enable_max_limit == nil then enable_max_limit = true end + +if pipeworks.enable_item_tags then + local max_tag_length = tonumber(minetest.settings:get("pipeworks_max_item_tag_length")) or 32 + local max_tags = tonumber(minetest.settings:get("pipeworks_max_item_tags")) or 16 + + function pipeworks.sanitize_tags(tags) + if type(tags) == "string" then + tags = tags:split(",") + end + local sanitized = {} + for i, tag in ipairs(tags) do + if type(tag) == "string" then + tag = tag:gsub("[%s,]", "") -- Remove whitespace and commas + tag = tag:gsub("%$%b%{%}", "") -- Remove special ${key} values + if tag ~= "" then + table.insert(sanitized, tag:sub(1, max_tag_length)) + end + end + if #sanitized >= max_tags then + break + end + end + return sanitized + end +end + +function pipeworks.tube_item(pos, item) + error("obsolete pipeworks.tube_item() called; change caller to use pipeworks.tube_inject_item() instead") +end + +function pipeworks.tube_inject_item(pos, start_pos, velocity, item, owner, tags) + -- Take item in any format + local stack = ItemStack(item) + local obj = luaentity.add_entity(pos, "pipeworks:tubed_item") + obj:set_item(stack:to_string()) + obj.start_pos = vector.new(start_pos) + obj:set_velocity(velocity) + obj.owner = owner + obj.tags = tags + --obj:set_color("red") -- todo: this is test-only code + return obj +end + +-- adding two tube functions +-- can_remove(pos,node,stack,dir) returns the maximum number of items of that stack that can be removed +-- remove_items(pos,node,stack,dir,count) removes count items and returns them +-- both optional w/ sensible defaults and fallback to normal allow_* function +-- XXX: possibly change insert_object to insert_item + +local default_adjlist={{x=0,y=0,z=1},{x=0,y=0,z=-1},{x=0,y=1,z=0},{x=0,y=-1,z=0},{x=1,y=0,z=0},{x=-1,y=0,z=0}} + +function pipeworks.notvel(tbl, vel) + local tbl2={} + for _,val in ipairs(tbl) do + if val.x ~= -vel.x or val.y ~= -vel.y or val.z ~= -vel.z then table.insert(tbl2, val) end + end + return tbl2 +end + +local tube_item_count = {} + +minetest.register_globalstep(function(dtime) + if not luaentity.entities then + return + end + tube_item_count = {} + for _, entity in pairs(luaentity.entities) do + if entity.name == "pipeworks:tubed_item" then + local h = minetest.hash_node_position(vector.round(entity._pos)) + tube_item_count[h] = (tube_item_count[h] or 0) + 1 + end + end +end) + + + +-- tube overload mechanism: +-- when the tube's item count (tracked in the above tube_item_count table) +-- exceeds the limit configured per tube, replace it with a broken one. + +function pipeworks.break_tube(pos) + local node = minetest.get_node(pos) + if core.get_item_group(node.name, "tube") ~= 1 then return end + local meta = minetest.get_meta(pos) + meta:set_string("the_tube_was", minetest.serialize(node)) + minetest.swap_node(pos, {name = "pipeworks:broken_tube_1"}) + pipeworks.scan_for_tube_objects(pos) +end + +local crunch_tube = function(pos, cnode, cmeta) + if enable_max_limit then + local h = minetest.hash_node_position(pos) + local itemcount = tube_item_count[h] or 0 + if itemcount > max_tube_limit then + pipeworks.logger("Warning - a tube at "..minetest.pos_to_string(pos).." broke due to too many items ("..itemcount..")") + pipeworks.break_tube(pos) + end + end +end + + + +-- compatibility behaviour for the existing can_go() callbacks, +-- which can only specify a list of possible positions. +local function go_next_compat(pos, cnode, cmeta, cycledir, vel, stack, owner, tags) + local next_positions = {} + local max_priority = 0 + local can_go + + local def = minetest.registered_nodes[cnode.name] + if def and def.tube and def.tube.can_go then + can_go = def.tube.can_go(pos, cnode, vel, stack, tags) + else + local adjlist_string = minetest.get_meta(pos):get_string("adjlist") + local adjlist = minetest.deserialize(adjlist_string) or default_adjlist -- backward compat: if not found, use old behavior: all directions + + can_go = pipeworks.notvel(adjlist, vel) + end + -- can_go() is expected to return an array-like table of candidate offsets. + -- for each one, look at the node at that offset and determine if it can accept the item. + -- also note the prioritisation: + -- if any tube is found with a greater priority than previously discovered, + -- then the valid positions are reset and and subsequent positions under this are skipped. + -- this has the effect of allowing only equal priorities to co-exist. + for _, vect in ipairs(can_go) do + local npos = vector.add(pos, vect) + pipeworks.load_position(npos) + local node = minetest.get_node(npos) + local reg_node = minetest.registered_nodes[node.name] + if reg_node then + local tube_def = reg_node.tube + local tubedevice = minetest.get_item_group(node.name, "tubedevice") + local tube_priority = (tube_def and tube_def.priority) or 100 + if tubedevice > 0 and tube_priority >= max_priority then + if not tube_def or not tube_def.can_insert or + tube_def.can_insert(npos, node, stack, vect, owner) then + if tube_priority > max_priority then + max_priority = tube_priority + next_positions = {} + end + next_positions[#next_positions + 1] = {pos = npos, vect = vect} + end + end + end + end + + -- indicate not found if no valid rules were picked up, + -- and don't change the counter. + if not next_positions[1] then + return cycledir, false, nil, nil + end + + -- otherwise rotate to the next output direction and return that + local n = (cycledir % (#next_positions)) + 1 + local new_velocity = vector.multiply(next_positions[n].vect, vel.speed) + return n, true, new_velocity, nil +end + + + + +-- function called by the on_step callback of the pipeworks tube luaentity. +-- the routine is passed the current node position, velocity, itemstack, +-- and owner name. +-- returns three values: +-- * a boolean "found destination" status; +-- * a new velocity vector that the tubed item should use, or nil if not found; +-- * a "multi-mode" data table (or nil if N/A) where a stack was split apart. +-- if this is not nil, the luaentity spawns new tubed items for each new fragment stack, +-- then deletes itself (i.e. the original item stack). +local function go_next(pos, velocity, stack, owner, tags) + local cnode = minetest.get_node(pos) + local cmeta = minetest.get_meta(pos) + local speed = math.abs(velocity.x + velocity.y + velocity.z) + if speed == 0 then + speed = 1 + end + local vel = {x = velocity.x/speed, y = velocity.y/speed, z = velocity.z/speed,speed=speed} + if speed >= 4.1 then + speed = 4 + elseif speed >= 1.1 then + speed = speed - 0.1 + else + speed = 1 + end + vel.speed = speed + + crunch_tube(pos, cnode, cmeta) + -- cycling of outputs: + -- an integer counter is kept in each pipe's metadata, + -- which allows tracking which output was previously chosen. + -- note reliance on get_int returning 0 for uninitialised. + local cycledir = cmeta:get_int("tubedir") + + -- pulled out and factored out into go_next_compat() above. + -- n is the new value of the cycle counter. + -- XXX: this probably needs cleaning up after being split out, + -- seven args is a bit too many + local n, found, new_velocity, multimode = go_next_compat(pos, cnode, cmeta, cycledir, vel, stack, owner, tags) + + -- if not using output cycling, + -- don't update the field so it stays the same for the next item. + if pipeworks.enable_cyclic_mode then + cmeta:set_int("tubedir", n) + end + return found, new_velocity, multimode +end + + + +minetest.register_entity("pipeworks:tubed_item", { + initial_properties = { + hp_max = 1, + physical = false, + collisionbox = {0.1, 0.1, 0.1, 0.1, 0.1, 0.1}, + visual = "wielditem", + visual_size = {x = 0.15, y = 0.15}, + textures = {""}, + spritediv = {x = 1, y = 1}, + initial_sprite_basepos = {x = 0, y = 0}, + is_visible = false, + }, + + physical_state = false, + + from_data = function(self, itemstring) + local stack = ItemStack(itemstring) + --[[ + local itemtable = stack:to_table() + local itemname = nil + if itemtable then + itemname = stack:to_table().name + end + local item_texture = nil + local item_type = "" + if minetest.registered_items[itemname] then + item_texture = minetest.registered_items[itemname].inventory_image + item_type = minetest.registered_items[itemname].type + end + --]] + self.object:set_properties({ + is_visible = true, + textures = {stack:get_name()} + }) + local def = stack:get_definition() + self.object:set_yaw((def and def.type == "node") and 0 or math.pi * 0.25) + end, + + get_staticdata = luaentity.get_staticdata, + on_activate = function(self, staticdata) -- Legacy code, should be replaced later by luaentity.on_activate + if staticdata == "" or staticdata == nil then + return + end + if staticdata == "toremove" then + self.object:remove() + return + end + local item = minetest.deserialize(staticdata) + pipeworks.tube_inject_item(self.object:get_pos(), item.start_pos, item.velocity, item.itemstring) + self.object:remove() + end, +}) + +minetest.register_entity("pipeworks:color_entity", { + initial_properties = { + hp_max = 1, + physical = false, + collisionbox = {0.1, 0.1, 0.1, 0.1, 0.1, 0.1}, + visual = "cube", + visual_size = {x = 3.5, y = 3.5, z = 3.5}, -- todo: find correct size + textures = {""}, + is_visible = false, + }, + + physical_state = false, + + from_data = function(self, color) + local t = "pipeworks_color_"..color..".png" + local prop = { + is_visible = true, + visual = "cube", + textures = {t, t, t, t, t, t} -- todo: textures + } + self.object:set_properties(prop) + end, + + get_staticdata = luaentity.get_staticdata, + on_activate = luaentity.on_activate, +}) + +-- see below for usage: +-- determine if go_next returned a multi-mode set. +local is_multimode = function(v) + return (type(v) == "table") and (v.__multimode) +end + +luaentity.register_entity("pipeworks:tubed_item", { + itemstring = '', + item_entity = nil, + color_entity = nil, + color = nil, + start_pos = nil, + tags = nil, + + set_item = function(self, item) + local itemstring = ItemStack(item):to_string() -- Accept any input format + if self.itemstring == itemstring then + return + end + if self.item_entity then + self:remove_attached_entity(self.item_entity) + end + self.itemstring = itemstring + self.item_entity = self:add_attached_entity("pipeworks:tubed_item", itemstring) + end, + + set_color = function(self, color) + if self.color == color then + return + end + self.color = color + if self.color_entity then + self:remove_attached_entity(self.color_entity) + end + if color then + self.color_entity = self:add_attached_entity("pipeworks:color_entity", color) + else + self.color_entity = nil + end + end, + + on_step = function(self, dtime) + local pos = self:get_pos() + if self.start_pos == nil then + self.start_pos = vector.round(pos) + self:set_pos(pos) + end + + local velocity = self:get_velocity() + + local moved = false + local speed = math.abs(velocity.x + velocity.y + velocity.z) + if speed == 0 then + speed = 1 + moved = true + end + local vel = {x = velocity.x / speed, y = velocity.y / speed, z = velocity.z / speed, speed = speed} + local moved_by = vector.distance(pos, self.start_pos) + + if moved_by >= 1 then + self.start_pos = vector.add(self.start_pos, vel) + moved = true + end + + if not moved then + return + end + + local stack = ItemStack(self.itemstring) + + pipeworks.load_position(self.start_pos) + local node = minetest.get_node(self.start_pos) + if minetest.get_item_group(node.name, "tubedevice_receiver") == 1 then + local leftover + local def = minetest.registered_nodes[node.name] + if def.tube and def.tube.insert_object then + leftover = def.tube.insert_object(self.start_pos, node, stack, vel, self.owner) + else + leftover = stack + end + if leftover:is_empty() then + self:remove() + return + end + velocity = vector.multiply(velocity, -1) + self:set_pos(vector.subtract(self.start_pos, vector.multiply(vel, moved_by - 1))) + self:set_velocity(velocity) + self:set_item(leftover:to_string()) + return + end + + local tags + if pipeworks.enable_item_tags then + tags = self.tags or {} + end + local found_next, new_velocity, multimode = go_next(self.start_pos, velocity, stack, self.owner, tags) -- todo: color + if pipeworks.enable_item_tags then + self.tags = #tags > 0 and tags or nil + end + local rev_vel = vector.multiply(velocity, -1) + local rev_dir = vector.direction(self.start_pos,vector.add(self.start_pos,rev_vel)) + local rev_node = minetest.get_node(vector.round(vector.add(self.start_pos,rev_dir))) + local tube_present = minetest.get_item_group(rev_node.name,"tubedevice") == 1 + if not found_next then + if pipeworks.drop_on_routing_fail or not tube_present or + minetest.get_item_group(rev_node.name,"tube") ~= 1 then + -- Using add_item instead of item_drop since this makes pipeworks backward + -- compatible with Minetest 0.4.13. + -- Using item_drop here makes Minetest 0.4.13 crash. + local dropped_item = minetest.add_item(self.start_pos, stack) + if dropped_item then + dropped_item:set_velocity(vector.multiply(velocity, 5)) + self:remove() + end + return + else + velocity = vector.multiply(velocity, -1) + self:set_pos(vector.subtract(self.start_pos, vector.multiply(vel, moved_by - 1))) + self:set_velocity(velocity) + end + elseif is_multimode(multimode) then + -- create new stacks according to returned data. + local s = self.start_pos + for _, split in ipairs(multimode) do + pipeworks.tube_inject_item(s, s, split.velocity, split.itemstack, self.owner) + end + -- remove ourself now the splits are sent + self:remove() + return + end + + if new_velocity and not vector.equals(velocity, new_velocity) then + local nvelr = math.abs(new_velocity.x + new_velocity.y + new_velocity.z) + self:set_pos(vector.add(self.start_pos, vector.multiply(new_velocity, (moved_by - 1) / nvelr))) + self:set_velocity(new_velocity) + end + end +}) + +if minetest.get_modpath("mesecons_mvps") then + mesecon.register_mvps_unmov("pipeworks:tubed_item") + mesecon.register_mvps_unmov("pipeworks:color_entity") + mesecon.register_on_mvps_move(function(moved_nodes) + local moved = {} + for _, n in ipairs(moved_nodes) do + moved[minetest.hash_node_position(n.oldpos)] = vector.subtract(n.pos, n.oldpos) + end + for _, entity in pairs(luaentity.entities) do + if entity.name == "pipeworks:tubed_item" then + local pos = entity:get_pos() + local rpos = vector.round(pos) + local dir = moved[minetest.hash_node_position(rpos)] + if dir then + entity:set_pos(vector.add(pos, dir)) + entity.start_pos = vector.add(entity.start_pos, dir) + end + end + end + end) +end diff --git a/mods/pipeworks/locale/pipeworks.fr.tr b/mods/pipeworks/locale/pipeworks.fr.tr new file mode 100644 index 00000000..af5a45ed --- /dev/null +++ b/mods/pipeworks/locale/pipeworks.fr.tr @@ -0,0 +1,119 @@ +# textdomain: pipeworks + +# License: CC-by-SA 4.0 +# Author: Louis Royer <4259825-lroyer@users.noreply.gitlab.com> + +## generic interaction +Set=Fixer +Close=Fermer + +## digilines interfacing +Channel=Canal + +## init +Allow splitting incoming stacks from tubes=Séparer les piles venant des tubes + +## autocrafter +Unknown item=Item inconnu +unconfigured Autocrafter: unknown recipe=Autocrafteur non-configuré : recette inconnue +unconfigured Autocrafter=Autocrafteur non-configuré +'@1' Autocrafter (@2)=Autocrafteur de '@1' (@2) +Save=Valider +paused '@1' Autocrafter=Autocrafteur de '@1' en pause +Autocrafter=Autocrafteur + +## compat-furnaces +Allow splitting incoming material (not fuel) stacks from tubes=Séparer les piles (sauf le carburant) venant des tubes + +## decorative tubes +Airtight steelblock embedded tube=Tube hermétique intégré à un bloc d’acier +Airtight panel embedded tube=Tube hermétique intégré à un panneau + +## devices +Pump/Intake Module=Module de pompage et d’admission +Valve=Vanne +Decorative grating=Grillage décoratif +Spigot outlet=Sortie de robinet +Airtight Pipe entry/exit=Extrémité de tube hermétique +Flow Sensor=Détecteur de débit +Flow sensor (on)=Détecteur de débit (actif) +empty=vide +@1% full=plein à @1 % +Expansion Tank (@1)=Réservoir d’expansion (@1) +Fluid Storage Tank (@1)=Réservoir de liquides (@1) +Fountainhead=Tête de fontaine +Straight-only Pipe=Tuyau droit + +## filter-injector +(slot #@1 next)=(slot suivant : #@1) +@1 Filter-Injector=Filtre-injecteur @1 +Sequence slots by Priority=Ordonner par priorité +Sequence slots Randomly=Ordonner aléatoirement +Sequence slots by Rotation=Ordonner en rotation +Exact match - off=Filtrage inactif +Exact match - on=Filtrage actif +Prefer item types:=Items à filtrer : +Itemwise=par item +Stackwise=par piles d’items +Digiline=digiline + +## legacy +Auto-Tap=Robinet d’arbre automatique + +## pipes +Pipe Segment=Segment de tuyau +Pipe Segment (legacy)=Segment de tuyau (obsolète) + + +## routing tubes +Pneumatic tube segment=Segment de tuyau pneumatique +Broken Tube=Tuyau cassé +High Priority Tube Segment=Segment de tuyau haute priorité +Accelerating Pneumatic Tube Segment=Segment de tuyau pneumatique accélérante +Crossing Pneumatic Tube Segment=Intersection de tuyau pneumatique +One way tube=Tuyau unidirectionnel + +## signal tubes +Detecting Pneumatic Tube Segment on=Segment de tuyau pneumatique avec détecteur (actif) +Detecting Pneumatic Tube Segment=Segment de tuyau pneumatique avec détecteur +Digiline Detecting Pneumatic Tube Segment=Segment de tuyau pneumatique avec détecteur digiline +Digiline Detecting Tube=Tuyau avec détecteur digiline +Conducting Pneumatic Tube Segment=Segment de tuyau pneumatique conducteur +Conducting Pneumatic Tube Segment on=Segment de tuyau pneumatique conducteur actif +Digiline Conducting Pneumatic Tube Segment=Segment de tuyau pneumatique conducteur digiline +Mesecon and Digiline Conducting Pneumatic Tube Segment=Segment de tuyau pneumatique conducteur mesecon et digiline +Mesecon and Digiline Conducting Pneumatic Tube Segment on=Segment de tuyau pneumatique conducteur mesecon et digiline (actif) + +## sorting tubes +Sorting Pneumatic Tube Segment=Segment de tuyau pneumatique triant +Sorting pneumatic tube=Tuyau pneumatique triant + +## teleport tube +Receive=Reception +Channels are public by default=Les canaux sont publics par défaut +Use : for fully private channels=Utilisez : pour un canal entièrement privé +Use ; for private receivers=Utilisez ; pour une réception privée +Teleporting Pneumatic Tube Segment=Segment de tuyau pneumatique téléporteur +Teleporting Tube=Tuyau pneumatique téléporteur +Unconfigured Teleportation Tube=Tuyau téléporteur non-configuré +Sorry, channel '@1' is reserved for exclusive use by @2=Désolé, le canal '@1' est réservé exclusivement à l’utilisateur @2. +Sorry, receiving from channel '@1' is reserved for @2=Désolé, la réception depuis le canal '@1' est réservée pour @2. +Teleportation Tube @1 on '@2'=Tuyau de téléportation @1 sur '@2' + +## trashcan +Trash Can=Poubelle + +## tube registration +Pneumatic tube segment (legacy)=Segment de tuyau pneumatique (obsolète) + +## vacuum tubes +Radius=Rayon +Vacuuming Pneumatic Tube Segment=Segment de tuyau pneumatique aspirant +Adjustable Vacuuming Tube=Tuyau pneumatique aspirant réglable +Adjustable Vacuuming Pneumatic Tube Segment=Segment de tuyau pneumatique aspirant réglable +Adjustable Vacuuming Pneumatic Tube Segment (@1m)=Segment de tuyau pneumatique aspirant réglable (@1 m) + +## wielder +Node Breaker=Casseur de blocs +Deployer=Poseur de blocs +Dispenser=Distributeur diff --git a/mods/pipeworks/locale/pipeworks.ru.tr b/mods/pipeworks/locale/pipeworks.ru.tr new file mode 100644 index 00000000..942ee90d --- /dev/null +++ b/mods/pipeworks/locale/pipeworks.ru.tr @@ -0,0 +1,121 @@ +# textdomain: pipeworks + +# License: CC-by-SA 4.0 +# Author: VinAdmin ovvitalik@gmail.com + +## generic interaction +Set=Установить +Cancel=Отмена + +## digilines interfacing +Channel=Канал + +## init +Allow splitting incoming stacks from tubes=Разрешить разделение входящих стопок из трубок + +## autocrafter +Unknown item=Неизвестный предмет +unconfigured Autocrafter: unknown recipe=ненастроенный автокрафтер: неизвестный рецепт +unconfigured Autocrafter=ненастроенный автокрафтер +'@1' Autocrafter (@2)='@1' Автокрафтер (@2) +Save=Сохранить +paused '@1' Autocrafter=приостановлено '@1' Автокрафтер +Autocrafter=Автокрафтер + +## compat-furnaces +Allow splitting incoming material (not fuel) stacks from tubes=Разрешить разделение стопок поступающего материала (не топлива) из трубок. + +## decorative tubes +Airtight steelblock embedded tube=Герметичная встроенная трубка из стального блока +Airtight panel embedded tube=Герметичная встроенная в панель трубка + +## devices +Pump/Intake Module=Модуль насоса/впуска +Valve=Клапан +Decorative grating=Декоративная решетка +Spigot outlet=Выходной патрубок +Airtight Pipe entry/exit=Вход/выход герметичной трубы +Flow Sensor=Датчик потока +Flow sensor (on)=Датчик расхода (вкл.) +empty=пустой +@1% full=@1% заполнено +Expansion Tank (@1)=Расширительный бак (@1) +Fluid Storage Tank (@1)=Резервуар для хранения жидкости (@1) +Fountainhead=Источник +Straight-only Pipe=Только прямая труба + +## filter-injector +(slot #@1 next)=(слот #@1 следующий) +@1 Filter-Injector=@1 фильтр-инжектор +Sequence slots by Priority=Последовательность слотов по приоритету +Sequence slots Randomly=Слоты последовательности Случайный +Sequence slots by Rotation=Последовательность слотов по вращению +Exact match - off=Точное совпадение – выключено +Exact match - on=Точное совпадение - включено +Prefer item types:=Предпочитаете типы предметов: +Itemwise=По пунктам +Stackwise=Стекообразно +Digiline=Диджилайн + +## legacy +Auto-Tap=Авто-нажатие + +## pipes +Pipe Segment=Сегмент трубы +Pipe Segment (legacy)=Сегмент трубы (устаревший) + + +## routing tubes +Pneumatic tube segment=Сегмент пневматической трубки +Broken Tube=Сломанная трубка +High Priority Tube Segment=Сегмент трубы с высоким приоритетом +Accelerating Pneumatic Tube Segment=Ускорительный сегмент пневматической трубки +Crossing Pneumatic Tube Segment=Пересечение сегмента пневматической трубы +One way tube=Односторонняя трубка + +## signal tubes +Detecting Pneumatic Tube Segment on=Обнаружение сегмента пневматической трубки включено +Detecting Pneumatic Tube Segment=Обнаружение сегмента пневматической трубки +Digiline Detecting Pneumatic Tube Segment=Digiline обнаруживает сегмент пневматической трубки +Digiline Detecting Tube=Детекторная трубка Digiline +Conducting Pneumatic Tube Segment=Проводящий сегмент пневматической трубки +Conducting Pneumatic Tube Segment on=Проводящий сегмент пневматической трубки на +Digiline Conducting Pneumatic Tube Segment=Сегмент проводящей пневматической трубки Digiline +Mesecon and Digiline Conducting Pneumatic Tube Segment=Сегмент токопроводящей пневматической трубки Mesecon и Digiline +Mesecon and Digiline Conducting Pneumatic Tube Segment on=Сегмент проводящей пневматической трубки Mesecon и Digiline на +Tag Sorting Pneumatic Tube Segment=Сегмент пневматической трубки для сортировки тегов +Lua controlled Tube=Трубка, управляемая Lua + +## sorting tubes +Sorting Pneumatic Tube Segment=Сортировка сегментов пневматической трубки +Sorting pneumatic tube=Сортировочная пневматическая труба + +## teleport tube +Receive=Получить +Channels are public by default=По умолчанию каналы являются общедоступными +Use : for fully private channels=Используйте <игрок>:<канал> для полностью приватных каналов +Use ; for private receivers=Используйте <игрок>;<канал> для частных приемников +Teleporting Pneumatic Tube Segment=Сегмент пневматической трубы для телепортации +Teleporting Tube=Телепортационная труба +Unconfigured Teleportation Tube=Неконфигурированная телепортационная труба +Sorry, channel '@1' is reserved for exclusive use by @2=Извините, канал '@1' зарезервирован исключительно для использования @2 +Sorry, receiving from channel '@1' is reserved for @2=Извините, прием с канала '@1' зарезервирован для @2 +Teleportation Tube @1 on '@2'=Трубка телепортации @1 на '@2' + +## trashcan +Trash Can=Мусорное ведро + +## tube registration +Pneumatic tube segment (legacy)=Сегмент пневматической трубы (устаревший) + +## vacuum tubes +Radius=Радиус +Vacuuming Pneumatic Tube Segment=Сегмент пневматической трубки для вакуумирования +Adjustable Vacuuming Tube=Регулируемая вакуумная трубка +Adjustable Vacuuming Pneumatic Tube Segment=Регулируемый сегмент вакуумной пневматической трубки +Adjustable Vacuuming Pneumatic Tube Segment (@1m)=Регулируемый сегмент вакуумной пневматической трубки (@1m) + +## wielder +Node Breaker=Разрушитель узла +Deployer=Развертыватель +Dispenser=Распылитель diff --git a/mods/pipeworks/locale/pipeworks.zh_CN.tr b/mods/pipeworks/locale/pipeworks.zh_CN.tr new file mode 100644 index 00000000..c40b94d7 --- /dev/null +++ b/mods/pipeworks/locale/pipeworks.zh_CN.tr @@ -0,0 +1,117 @@ +# textdomain: pipeworks +# License: CC-by-SA 4.0 +# Author: pevernow <3450354617@qq.com> + +## generic interaction +Set= +Cancel= + +## digilines interfacing +Channel=频道 + +## init +Allow splitting incoming stacks from tubes=允许从管道中拆分传入堆栈 + +## autocrafter +Unknown item=通道 +unconfigured Autocrafter: unknown recipe=未配置的自动工作台: 未知配方 +unconfigured Autocrafter=未配置的自动工作台 +'@1' Autocrafter (@2)=自动工作台 '@1' (@2) +Save=保存 +paused '@1' Autocrafter=暂停的自动工作台 +Autocrafter=自动工作台 + +## compat-furnaces +Allow splitting incoming material (not fuel) stacks from tubes=允许从管子中分离进来的材料(不是燃料)堆 + +## decorative tubes +Airtight steelblock embedded tube=密封嵌入式铁块管道 +Airtight panel embedded tube=密封嵌入式片状管道 + +## devices +Pump/Intake Module=泵/进气模块 +Valve=阀门 +Decorative grating=Decorative grating +Spigot outlet=龙头 +Airtight Pipe entry/exit=密闭管进/出 +Flow Sensor=流量传感器 +Flow sensor (on)=流量传感器(上) +empty=空的 +@1% full=满的@1 % +Expansion Tank (@1)=扩展水箱 (@1) +Fluid Storage Tank (@1)=储液罐 (@1) +Fountainhead=源泉 +Straight-only Pipe=直管 +## filter-injector +(slot #@1 next)=(下一个插槽 : #@1) +@1 Filter-Injector=@1取物器 +Sequence slots by Priority=优先顺序排列 +Sequence slots Randomly=随机排列时隙 +Sequence slots by Rotation=旋转顺序槽 +Exact match - off=完全匹配-关闭 +Exact match - on=完全匹配-开启 +Prefer item types:=偏好物品类型 : +Itemwise=逐项 +Stackwise=堆叠方式 +Digiline=Digiline + +## legacy +Auto-Tap=自动轴阀 + +## pipes +Pipe Segment=管道 +Pipe Segment (legacy)=管道(旧版) + + +## routing tubes +Pneumatic tube segment=普通管道 +Broken Tube=断管 +High Priority Tube Segment=高优先级管段 +Accelerating Pneumatic Tube Segment=加速管道 +Crossing Pneumatic Tube Segment=定向管道 +One way tube=单向管 + +## signal tubes +Detecting Pneumatic Tube Segment on=检测管道(运行中) +Detecting Pneumatic Tube Segment=检测管道 +Digiline Detecting Pneumatic Tube Segment=Digiline检测管道 +Digiline Detecting Tube=Digiline检测管 +Conducting Pneumatic Tube Segment=传导管道 +Conducting Pneumatic Tube Segment on=传导管道(运行中) +Digiline Conducting Pneumatic Tube Segment=Digiline传导式气动管道 +Mesecon and Digiline Conducting Pneumatic Tube Segment=Mesecon和Digiline传导管道 +Mesecon and Digiline Conducting Pneumatic Tube Segment on=Mesecon和Digiline传导管道(运行中) + +## sorting tubes +Sorting Pneumatic Tube Segment=分类管道 +Sorting pneumatic tube=分类管道 + +## teleport tube +Receive=接收 +Channels are public by default=频道默认为公开 +Use : for fully private channels=将:用于完全私人的频道 +Use ; for private receivers=使用;作为私人接收器 +Teleporting Pneumatic Tube Segment=传送管道 +Teleporting Tube= +Unconfigured Teleportation Tube=未配置的传送管道 +Sorry, channel '@1' is reserved for exclusive use by @2=抱歉,频道‘@1’保留供‘@2’专用 +Sorry, receiving from channel '@1' is reserved for @2=抱歉,从频道'@1'接收的内容已保留给'@2' +Teleportation Tube @1 on '@2'=传送管'@1'在'@2'上 + +## trashcan +Trash Can=垃圾箱 + +## tube registration +Pneumatic tube segment (legacy)=普通管道(旧式) + +## vacuum tubes +Radius= +Vacuuming Pneumatic Tube Segment=拾取管道 +Adjustable Vacuuming Tube= +Adjustable Vacuuming Pneumatic Tube Segment=高级拾取管道 +Adjustable Vacuuming Pneumatic Tube Segment (@1m)=高级拾取管道(@1m) + +## wielder +Node Breaker=方块破坏器 +Deployer=放置器 +Dispenser=投掷器 diff --git a/mods/pipeworks/locale/template.txt b/mods/pipeworks/locale/template.txt new file mode 100644 index 00000000..b9c5293f --- /dev/null +++ b/mods/pipeworks/locale/template.txt @@ -0,0 +1,119 @@ +# textdomain: pipeworks + +# License: CC-by-SA 4.0 +# Author: + +## generic interaction +Set= +Cancel= + +## digilines interfacing +Channel= + +## init +Allow splitting incoming stacks from tubes= + +## autocrafter +Unknown item= +unconfigured Autocrafter: unknown recipe= +unconfigured Autocrafter= +'@1' Autocrafter (@2)= +Save= +paused '@1' Autocrafter= +Autocrafter= + +## compat-furnaces +Allow splitting incoming material (not fuel) stacks from tubes= + +## decorative tubes +Airtight steelblock embedded tube= +Airtight panel embedded tube= + +## devices +Pump/Intake Module= +Valve= +Decorative grating= +Spigot outlet= +Airtight Pipe entry/exit= +Flow Sensor= +Flow sensor (on)= +empty= +@1% full= +Expansion Tank (@1)= +Fluid Storage Tank (@1)= +Fountainhead= +Straight-only Pipe= + +## filter-injector +(slot #@1 next)= +@1 Filter-Injector= +Sequence slots by Priority= +Sequence slots Randomly= +Sequence slots by Rotation= +Exact match - off= +Exact match - on= +Prefer item types:= +Itemwise= +Stackwise= +Digiline= + +## legacy +Auto-Tap= + +## pipes +Pipe Segment= +Pipe Segment (legacy)= + + +## routing tubes +Pneumatic tube segment= +Broken Tube= +High Priority Tube Segment= +Accelerating Pneumatic Tube Segment= +Crossing Pneumatic Tube Segment= +One way tube= + +## signal tubes +Detecting Pneumatic Tube Segment on= +Detecting Pneumatic Tube Segment= +Digiline Detecting Pneumatic Tube Segment= +Digiline Detecting Tube= +Conducting Pneumatic Tube Segment= +Conducting Pneumatic Tube Segment on= +Digiline Conducting Pneumatic Tube Segment= +Mesecon and Digiline Conducting Pneumatic Tube Segment= +Mesecon and Digiline Conducting Pneumatic Tube Segment on= + +## sorting tubes +Sorting Pneumatic Tube Segment= +Sorting pneumatic tube= + +## teleport tube +Receive= +Channels are public by default= +Use : for fully private channels= +Use ; for private receivers= +Teleporting Pneumatic Tube Segment= +Teleporting Tube= +Unconfigured Teleportation Tube= +Sorry, channel '@1' is reserved for exclusive use by @2= +Sorry, receiving from channel '@1' is reserved for @2= +Teleportation Tube @1 on '@2'= + +## trashcan +Trash Can= + +## tube registration +Pneumatic tube segment (legacy)= + +## vacuum tubes +Radius= +Vacuuming Pneumatic Tube Segment= +Adjustable Vacuuming Tube= +Adjustable Vacuuming Pneumatic Tube Segment= +Adjustable Vacuuming Pneumatic Tube Segment (@1m)= + +## wielder +Node Breaker= +Deployer= +Dispenser= diff --git a/mods/pipeworks/luaentity.lua b/mods/pipeworks/luaentity.lua new file mode 100644 index 00000000..cc7d170d --- /dev/null +++ b/mods/pipeworks/luaentity.lua @@ -0,0 +1,426 @@ +local max_entity_id = 1000000000000 -- If you need more, there's a problem with your code + +local luaentity = {} +pipeworks.luaentity = luaentity + +luaentity.registered_entities = {} + +local filename = minetest.get_worldpath().."/luaentities" +local function read_file() + local f = io.open(filename, "r") + if f == nil then return {} end + local t = f:read("*all") + f:close() + if t == "" or t == nil then return {} end + return minetest.deserialize(t) or {} +end + +local function write_file(tbl) + local f = io.open(filename, "w") + f:write(minetest.serialize(tbl)) + f:close() +end + +local function read_entities() + local t = read_file() + for _, entity in pairs(t) do + + local x=entity.start_pos.x + local y=entity.start_pos.y + local z=entity.start_pos.z + + x=math.max(-30912,x) + y=math.max(-30912,y) + z=math.max(-30912,z) + x=math.min(30927,x) + y=math.min(30927,y) + z=math.min(30927,z) + + entity.start_pos.x = x + entity.start_pos.y = y + entity.start_pos.z = z + + setmetatable(entity, luaentity.registered_entities[entity.name]) + end + return t +end + +local function write_entities() + if not luaentity.entities then + -- This can happen if crashing on startup, causing another error that + -- masks the original one. Return gracefully in that case instead. + return + end + for _, entity in pairs(luaentity.entities) do + setmetatable(entity, nil) + for _, attached in pairs(entity._attached_entities) do + if attached.entity then + attached.entity:remove() + attached.entity = nil + end + end + entity._attached_entities_master = nil + end + write_file(luaentity.entities) +end + +minetest.register_on_shutdown(write_entities) +luaentity.entities_index = 0 + +local move_entities_globalstep_part1 +local is_active + +if pipeworks.use_real_entities then + local active_blocks = {} -- These only contain active blocks near players (i.e., not forceloaded ones) + + local function get_blockpos(pos) + return {x = math.floor(pos.x / 16), + y = math.floor(pos.y / 16), + z = math.floor(pos.z / 16)} + end + + move_entities_globalstep_part1 = function(dtime) + local active_block_range = tonumber(minetest.settings:get("active_block_range")) or 2 + for key in pairs(active_blocks) do + active_blocks[key] = nil + end + for _, player in ipairs(minetest.get_connected_players()) do + local blockpos = get_blockpos(player:get_pos()) + local minpx = blockpos.x - active_block_range + local minpy = blockpos.y - active_block_range + local minpz = blockpos.z - active_block_range + local maxpx = blockpos.x + active_block_range + local maxpy = blockpos.y + active_block_range + local maxpz = blockpos.z + active_block_range + + for x = minpx, maxpx do + for y = minpy, maxpy do + for z = minpz, maxpz do + local pos = {x = x, y = y, z = z} + active_blocks[minetest.hash_node_position(pos)] = true + end + end + end + end + -- todo: callbacks on block load/unload + end + + is_active = function(pos) + return active_blocks[minetest.hash_node_position(get_blockpos(pos))] ~= nil + end +else + move_entities_globalstep_part1 = function() + end + + is_active = function() + return false + end +end + +local entitydef_default = { + _attach = function(self, attached, attach_to) + local attached_def = self._attached_entities[attached] + local attach_to_def = self._attached_entities[attach_to] + attached_def.entity:set_attach( + attach_to_def.entity, "", + vector.subtract(attached_def.offset, attach_to_def.offset), -- todo: Does not work because is object space + vector.new(0, 0, 0) + ) + end, + _set_master = function(self, index) + self._attached_entities_master = index + if not index then + return + end + local def = self._attached_entities[index] + if not def.entity then + return + end + def.entity:set_pos(vector.add(self._pos, def.offset)) + def.entity:set_velocity(self._velocity) + def.entity:set_acceleration(self._acceleration) + end, + _attach_all = function(self) + local master = self._attached_entities_master + if not master then + return + end + for id, entity in pairs(self._attached_entities) do + if id ~= master and entity.entity then + self:_attach(id, master) + end + end + end, + _detach_all = function(self) + local master = self._attached_entities_master + for id, entity in pairs(self._attached_entities) do + if id ~= master and entity.entity then + entity.entity:set_detach() + end + end + end, + _add_attached = function(self, index) + local entity = self._attached_entities[index] + if entity.entity then + return + end + local entity_pos = vector.add(self._pos, entity.offset) + if not is_active(entity_pos) then + return + end + local object = minetest.add_entity(entity_pos, entity.name) + if not object then + return + end + local ent = object:get_luaentity() + ent:from_data(entity.data) + ent.parent_id = self._id + ent.attached_id = index + entity.entity = object + local master = self._attached_entities_master + if master then + self:_attach(index, master) + else + self:_set_master(index) + end + end, + _remove_attached = function(self, index) + local master = self._attached_entities_master + local entity = self._attached_entities[index] + local ent = entity and entity.entity + if entity then entity.entity = nil end + if index == master then + self:_detach_all() + local newmaster + for id, attached in pairs(self._attached_entities) do + if id ~= master and attached.entity then + newmaster = id + break + end + end + self:_set_master(newmaster) + self:_attach_all() + elseif master and ent then + ent:set_detach() + end + if ent then + ent:remove() + end + end, + _add_loaded = function(self) + for id, _ in pairs(self._attached_entities) do + self:_add_attached(id) + end + end, + get_id = function(self) + return self._id + end, + get_pos = function(self) + return vector.new(self._pos) + end, + set_pos = function(self, pos) + self._pos = vector.new(pos) + --for _, entity in pairs(self._attached_entities) do + -- if entity.entity then + -- entity.entity:set_pos(vector.add(self._pos, entity.offset)) + -- end + --end + local master = self._attached_entities_master + if master then + local master_def = self._attached_entities[master] + master_def.entity:set_pos(vector.add(self._pos, master_def.offset)) + end + end, + get_velocity = function(self) + return vector.new(self._velocity) + end, + set_velocity = function(self, velocity) + self._velocity = vector.new(velocity) + local master = self._attached_entities_master + if master then + self._attached_entities[master].entity:set_velocity(self._velocity) + end + end, + get_acceleration = function(self) + return vector.new(self._acceleration) + end, + set_acceleration = function(self, acceleration) + self._acceleration = vector.new(acceleration) + local master = self._attached_entities_master + if master then + self._attached_entities[master].entity:set_acceleration(self._acceleration) + end + end, + remove = function(self) + self:_detach_all() + for _, entity in pairs(self._attached_entities) do + if entity.entity then + entity.entity:remove() + end + end + luaentity.entities[self._id] = nil + end, + add_attached_entity = function(self, name, data, offset) + local index = #self._attached_entities + 1 + self._attached_entities[index] = { + name = name, + data = data, + offset = vector.new(offset), + } + self:_add_attached(index) + return index + end, + remove_attached_entity = function(self, index) + self:_remove_attached(index) + self._attached_entities[index] = nil + end, +} + +function luaentity.register_entity(name, prototype) + -- name = check_modname_prefix(name) + prototype.name = name + setmetatable(prototype, {__index = entitydef_default}) + prototype.__index = prototype -- Make it possible to use it as metatable + luaentity.registered_entities[name] = prototype +end + +-- function luaentity.get_entity_definition(entity) +-- return luaentity.registered_entities[entity.name] +-- end + +function luaentity.add_entity(pos, name) + if not luaentity.entities then + minetest.after(0, luaentity.add_entity, vector.new(pos), name) + return + end + local index = luaentity.entities_index + while luaentity.entities[index] do + index = index + 1 + if index >= max_entity_id then + index = 0 + end + end + luaentity.entities_index = index + + local entity = { + name = name, + _id = index, + _pos = vector.new(pos), + _velocity = {x = 0, y = 0, z = 0}, + _acceleration = {x = 0, y = 0, z = 0}, + _attached_entities = {}, + } + + local prototype = luaentity.registered_entities[name] + setmetatable(entity, prototype) -- Default to prototype for other methods + luaentity.entities[index] = entity + + if entity.on_activate then + entity:on_activate() + end + return entity +end + +-- todo: check if remove in get_staticdata works +function luaentity.get_staticdata(self) + local parent = luaentity.entities[self.parent_id] + if parent and parent._remove_attached then + parent:_remove_attached(self.attached_id) + end + return "toremove" +end + +function luaentity.on_activate(self, staticdata) + if staticdata == "toremove" then + self.object:remove() + end +end + +function luaentity.get_objects_inside_radius(pos, radius) + local objects = {} + local index = 1 + for _, entity in pairs(luaentity.entities) do + if vector.distance(pos, entity:get_pos()) <= radius then + objects[index] = entity + index = index + 1 + end + end + return objects +end + +local move_entities_globalstep_part2 = function(dtime) + if not luaentity.entities then + luaentity.entities = read_entities() + end + for _, entity in pairs(luaentity.entities) do + local master = entity._attached_entities_master + local master_def = master and entity._attached_entities[master] + local master_entity = master_def and master_def.entity + local master_entity_pos = master_entity and master_entity:get_pos() + if master_entity_pos then + entity._pos = vector.subtract(master_entity_pos, master_def.offset) + entity._velocity = master_entity:get_velocity() + entity._acceleration = master_entity:get_acceleration() + else + entity._velocity = entity._velocity or vector.new(0,0,0) + entity._acceleration = entity._acceleration or vector.new(0,0,0) + entity._pos = vector.add(vector.add( + entity._pos, + vector.multiply(entity._velocity, dtime)), + vector.multiply(entity._acceleration, 0.5 * dtime * dtime)) + entity._velocity = vector.add( + entity._velocity, + vector.multiply(entity._acceleration, dtime)) + end + if master and not master_entity_pos then -- The entity has somehow been cleared + if pipeworks.delete_item_on_clearobject then + entity:remove() + else + entity:_remove_attached(master) + entity:_add_loaded() + if entity.on_step then + entity:on_step(dtime) + end + end + else + entity:_add_loaded() + if entity.on_step then + entity:on_step(dtime) + end + end + end +end + +-- dtime after which there is an update (or skip). +local dtime_threshold = pipeworks.entity_update_interval +-- Accumulated dtime since last update (or skip). +local dtime_accum = 0 +-- Delayed dtime accumulated due to skipped updates. +local dtime_delayed = 0 +local skip_update = false + +minetest.register_globalstep(function(dtime) + if dtime >= 0.2 and dtime_delayed < 1 then + -- Reduce activity when the server is lagging. + skip_update = true + end + + dtime_accum = dtime_accum + dtime + if dtime_accum < dtime_threshold then + return + end + + if skip_update then + dtime_delayed = dtime_delayed + dtime_accum + skip_update = false + else + move_entities_globalstep_part1(dtime_accum + dtime_delayed) + move_entities_globalstep_part2(dtime_accum + dtime_delayed) + dtime_delayed = 0 + end + + -- Tune the threshold so that the average interval is pipeworks.entity_update_interval. + dtime_threshold = math.max(dtime_threshold + (pipeworks.entity_update_interval - dtime_accum) / 10, 0) + + dtime_accum = 0 +end) diff --git a/mods/pipeworks/mcl_furnaces.lua b/mods/pipeworks/mcl_furnaces.lua new file mode 100644 index 00000000..e23a297c --- /dev/null +++ b/mods/pipeworks/mcl_furnaces.lua @@ -0,0 +1,376 @@ + +local old_furnace = table.copy(minetest.registered_nodes["mcl_furnaces:furnace"]) +local old_blast_furnace = table.copy(minetest.registered_nodes["mcl_blast_furnace:blast_furnace"]) +local old_smoker = table.copy(minetest.registered_nodes["mcl_smoker:smoker"]) + +local tube_entry = "^pipeworks_tube_connection_stony.png" + +-- groups +local furnace_groups = old_furnace.groups +furnace_groups["tubedevice"] = 1 +furnace_groups["tubedevice_receiver"] = 1 +local furnace_groups_active = table.copy(furnace_groups) +furnace_groups_active["not_in_creative_inventory"] = 1 + +local blast_furnace_groups = old_blast_furnace.groups +blast_furnace_groups["tubedevice"] = 1 +blast_furnace_groups["tubedevice_receiver"] = 1 +local blast_furnace_groups_active = table.copy(blast_furnace_groups) +blast_furnace_groups_active["not_in_creative_inventory"] = 1 + +local smoker_groups = old_smoker.groups +smoker_groups["tubedevice"] = 1 +smoker_groups["tubedevice_receiver"] = 1 +local smoker_groups_active = table.copy(smoker_groups) +smoker_groups_active["not_in_creative_inventory"] = 1 + + +-- a hack to give the exp to fake players it's be dropped instead added to (fake) player inv +local function give_xp(pos, player) + local meta = minetest.get_meta(pos) + local dir = vector.divide(minetest.facedir_to_dir(minetest.get_node(pos).param2), -1.95) + local xp = meta:get_int("xp") + if xp > 0 then + mcl_experience.throw_xp(vector.add(pos, dir), xp) + meta:set_int("xp", 0) + end +end + +local override = {} + +override.tiles = { + "default_furnace_top.png"..tube_entry, + "default_furnace_bottom.png"..tube_entry, + "default_furnace_side.png"..tube_entry, + "default_furnace_side.png"..tube_entry, + "default_furnace_side.png"..tube_entry, + "default_furnace_front.png" +} + +override.groups = furnace_groups + +override.tube = { + insert_object = function(pos, node, stack, direction) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + local timer = minetest.get_node_timer(pos) + if not timer:is_started() then + timer:start(1.0) + end + if direction.y == 1 then + return inv:add_item("fuel", stack) + else + return inv:add_item("src", stack) + end + end, + can_insert = function(pos,node,stack,direction) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + if direction.y == 1 then + return inv:room_for_item("fuel", stack) + else + if meta:get_int("split_material_stacks") == 1 then + stack = stack:peek_item(1) + end + return inv:room_for_item("src", stack) + end + end, + input_inventory = "dst", + connect_sides = {left = 1, right = 1, back = 1, bottom = 1, top = 1} +} + +override.after_place_node = function(pos, placer, itemstack, pointed_thing) + pipeworks.after_place(pos, placer, itemstack, pointed_thing) +end + +override.after_dig_node = function(pos, oldnode, oldmetadata, digger) + old_furnace.after_dig_node(pos, oldnode, oldmetadata, digger) + pipeworks.after_dig(pos) +end + +override.on_metadata_inventory_take = function(pos, listname, index, stack, player) + if listname == "dst" then + if stack:get_name() == "mcl_core:iron_ingot" then + awards.unlock(player:get_player_name(), "mcl:acquireIron") + elseif stack:get_name() == "mcl_fishing:fish_cooked" then + awards.unlock(player:get_player_name(), "mcl:cookFish") + end + give_xp(pos, player) + end +end + +override.on_rotate = pipeworks.on_rotate + + +local override_active = table.copy(override) + +override_active.tiles = { + "default_furnace_top.png"..tube_entry, + "default_furnace_bottom.png"..tube_entry, + "default_furnace_side.png"..tube_entry, + "default_furnace_side.png"..tube_entry, + "default_furnace_side.png"..tube_entry, + "default_furnace_front_active.png", +} + +override_active.groups = furnace_groups_active + +override_active.tube = { + insert_object = function(pos,node,stack,direction) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + local timer = minetest.get_node_timer(pos) + if not timer:is_started() then + timer:start(1.0) + end + if direction.y == 1 then + return inv:add_item("fuel", stack) + else + return inv:add_item("src", stack) + end + end, + can_insert = function(pos, node, stack, direction) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + if direction.y == 1 then + return inv:room_for_item("fuel", stack) + else + return inv:room_for_item("src", stack) + end + end, + input_inventory = "dst", + connect_sides = {left = 1, right = 1, back = 1, bottom = 1, top = 1} +} + + +--blast furnace + +local override_blast_furnace = {} + +override_blast_furnace.tiles = { + "blast_furnace_top.png"..tube_entry, + "blast_furnace_top.png"..tube_entry, + "blast_furnace_side.png"..tube_entry, + "blast_furnace_side.png"..tube_entry, + "blast_furnace_side.png"..tube_entry, + "blast_furnace_front.png" +} + +override_blast_furnace.groups = blast_furnace_groups + +override_blast_furnace.tube = { + insert_object = function(pos, node, stack, direction) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + local timer = minetest.get_node_timer(pos) + if not timer:is_started() then + timer:start(1.0) + end + if direction.y == 1 then + return inv:add_item("fuel", stack) + else + return inv:add_item("src", stack) + end + end, + can_insert = function(pos,node,stack,direction) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + if direction.y == 1 then + return inv:room_for_item("fuel", stack) + else + if meta:get_int("split_material_stacks") == 1 then + stack = stack:peek_item(1) + end + return inv:room_for_item("src", stack) + end + end, + input_inventory = "dst", + connect_sides = {left = 1, right = 1, back = 1, bottom = 1, top = 1} +} + +override_blast_furnace.after_place_node = function(pos, placer, itemstack, pointed_thing) + pipeworks.after_place(pos, placer, itemstack, pointed_thing) +end + +override_blast_furnace.after_dig_node = function(pos, oldnode, oldmetadata, digger) + old_blast_furnace.after_dig_node(pos, oldnode, oldmetadata, digger) + pipeworks.after_dig(pos) +end + +override_blast_furnace.on_metadata_inventory_take = function(pos, listname, index, stack, player) + -- Award smelting achievements + if listname == "dst" then + if stack:get_name() == "mcl_core:iron_ingot" then + awards.unlock(player:get_player_name(), "mcl:acquireIron") + end + give_xp(pos, player) + end +end + +override_blast_furnace.on_rotate = pipeworks.on_rotate + + +local override_blast_active = table.copy(override) + +override_blast_active.tiles = { + "blast_furnace_top.png"..tube_entry, + "blast_furnace_top.png"..tube_entry, + "blast_furnace_side.png"..tube_entry, + "blast_furnace_side.png"..tube_entry, + "blast_furnace_side.png"..tube_entry, + { + name = "blast_furnace_front_on.png", + animation = { type = "vertical_frames", aspect_w = 16, aspect_h = 16, length = 48 } + }, +} + +override_blast_active.groups = blast_furnace_groups_active + +override_blast_active.tube = { + insert_object = function(pos,node,stack,direction) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + local timer = minetest.get_node_timer(pos) + if not timer:is_started() then + timer:start(1.0) + end + if direction.y == 1 then + return inv:add_item("fuel", stack) + else + return inv:add_item("src", stack) + end + end, + can_insert = function(pos, node, stack, direction) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + if direction.y == 1 then + return inv:room_for_item("fuel", stack) + else + return inv:room_for_item("src", stack) + end + end, + input_inventory = "dst", + connect_sides = {left = 1, right = 1, back = 1, bottom = 1, top = 1} +} + + +-- smoker + +local override_smoker = {} + +override_smoker.tiles = { + "smoker_top.png"..tube_entry, + "smoker_bottom.png"..tube_entry, + "smoker_side.png"..tube_entry, + "smoker_side.png"..tube_entry, + "smoker_side.png"..tube_entry, + "smoker_front.png" +} + +override_smoker.groups = smoker_groups + +override_smoker.tube = { + insert_object = function(pos, node, stack, direction) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + local timer = minetest.get_node_timer(pos) + if not timer:is_started() then + timer:start(1.0) + end + if direction.y == 1 then + return inv:add_item("fuel", stack) + else + return inv:add_item("src", stack) + end + end, + can_insert = function(pos,node,stack,direction) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + if direction.y == 1 then + return inv:room_for_item("fuel", stack) + else + if meta:get_int("split_material_stacks") == 1 then + stack = stack:peek_item(1) + end + return inv:room_for_item("src", stack) + end + end, + input_inventory = "dst", + connect_sides = {left = 1, right = 1, back = 1, bottom = 1, top = 1} +} + +override_smoker.after_place_node = function(pos, placer, itemstack, pointed_thing) + pipeworks.after_place(pos, placer, itemstack, pointed_thing) +end + +override_smoker.after_dig_node = function(pos, oldnode, oldmetadata, digger) + old_smoker.after_dig_node(pos, oldnode, oldmetadata, digger) + pipeworks.after_dig(pos) +end + +override_smoker.on_metadata_inventory_take = function(pos, listname, index, stack, player) + -- Award fish achievements + if listname == "dst" then + if stack:get_name() == "mcl_fishing:fish_cooked" then + awards.unlock(player:get_player_name(), "mcl:cookFish") + end + give_xp(pos, player) + end +end + +override_smoker.on_rotate = pipeworks.on_rotate + + +local override_smoker_active = table.copy(override) + +override_smoker_active.tiles = { + "smoker_top.png"..tube_entry, + "smoker_bottom.png"..tube_entry, + "smoker_side.png"..tube_entry, + "smoker_side.png"..tube_entry, + "smoker_side.png"..tube_entry, + { + name = "smoker_front_on.png", + animation = { type = "vertical_frames", aspect_w = 16, aspect_h = 16, length = 48 } + }, +} + +override_smoker_active.groups = smoker_groups_active + +override_smoker_active.tube = { + insert_object = function(pos,node,stack,direction) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + local timer = minetest.get_node_timer(pos) + if not timer:is_started() then + timer:start(1.0) + end + if direction.y == 1 then + return inv:add_item("fuel", stack) + else + return inv:add_item("src", stack) + end + end, + can_insert = function(pos, node, stack, direction) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + if direction.y == 1 then + return inv:room_for_item("fuel", stack) + else + return inv:room_for_item("src", stack) + end + end, + input_inventory = "dst", + connect_sides = {left = 1, right = 1, back = 1, bottom = 1, top = 1} +} + + +-- override +minetest.override_item("mcl_furnaces:furnace", override) +minetest.override_item("mcl_furnaces:furnace_active", override_active) + +minetest.override_item("mcl_blast_furnace:blast_furnace", override_blast_furnace) +minetest.override_item("mcl_blast_furnace:blast_furnace_active", override_blast_active) + +minetest.override_item("mcl_smoker:smoker", override_smoker) +minetest.override_item("mcl_smoker:smoker_active", override_smoker_active) diff --git a/mods/pipeworks/mod.conf b/mods/pipeworks/mod.conf new file mode 100644 index 00000000..4ed384b0 --- /dev/null +++ b/mods/pipeworks/mod.conf @@ -0,0 +1,8 @@ +name = pipeworks +description = This mod uses mesh nodes and nodeboxes to supply a complete set of 3D pipes and tubes, along with devices that work with them. +depends = basic_materials, xcompat, fakelib +optional_depends = mesecons, mesecons_mvps, digilines, signs_lib, unified_inventory, default, screwdriver, fl_mapgen, sound_api, i3, hades_core, hades_furnaces, hades_chests, mcl_mapgen_core, mcl_barrels, mcl_furnaces, mcl_experience, vizlib +min_minetest_version = 5.5.0 +release = 31191 +author = mt-mods +title = Pipeworks diff --git a/mods/pipeworks/models.lua b/mods/pipeworks/models.lua new file mode 100644 index 00000000..d9928d29 --- /dev/null +++ b/mods/pipeworks/models.lua @@ -0,0 +1,49 @@ +----------------------------------- +-- The various pipe select boxes + +pipeworks.pipe_selectboxes = { + { -32/64, -8/64, -8/64, 8/64, 8/64, 8/64 }, + { -8/64 , -8/64, -8/64, 32/64, 8/64, 8/64 }, + { -8/64 , -32/64, -8/64, 8/64, 8/64, 8/64 }, + { -8/64 , -8/64, -8/64, 8/64, 32/64, 8/64 }, + { -8/64 , -8/64, -32/64, 8/64, 8/64, 8/64 }, + { -8/64 , -8/64, -8/64, 8/64, 8/64, 32/64 } +} + +-- Tube models + +pipeworks.tube_leftstub = { + { -32/64, -9/64, -9/64, 9/64, 9/64, 9/64 }, -- tube segment against -X face +} + +pipeworks.tube_rightstub = { + { -9/64, -9/64, -9/64, 32/64, 9/64, 9/64 }, -- tube segment against +X face +} + +pipeworks.tube_bottomstub = { + { -9/64, -32/64, -9/64, 9/64, 9/64, 9/64 }, -- tube segment against -Y face +} + +pipeworks.tube_topstub = { + { -9/64, -9/64, -9/64, 9/64, 32/64, 9/64 }, -- tube segment against +Y face +} + +pipeworks.tube_frontstub = { + { -9/64, -9/64, -32/64, 9/64, 9/64, 9/64 }, -- tube segment against -Z face +} + +pipeworks.tube_backstub = { + { -9/64, -9/64, -9/64, 9/64, 9/64, 32/64 }, -- tube segment against +Z face +} + +pipeworks.tube_boxes = {pipeworks.tube_leftstub, pipeworks.tube_rightstub, pipeworks.tube_bottomstub, pipeworks.tube_topstub, pipeworks.tube_frontstub, pipeworks.tube_backstub} + +pipeworks.tube_selectboxes = { + { -32/64, -10/64, -10/64, 10/64, 10/64, 10/64 }, + { -10/64 , -10/64, -10/64, 32/64, 10/64, 10/64 }, + { -10/64 , -32/64, -10/64, 10/64, 10/64, 10/64 }, + { -10/64 , -10/64, -10/64, 10/64, 32/64, 10/64 }, + { -10/64 , -10/64, -32/64, 10/64, 10/64, 10/64 }, + { -10/64 , -10/64, -10/64, 10/64, 10/64, 32/64 } +} + diff --git a/mods/pipeworks/models/pipeworks_entry_panel.obj b/mods/pipeworks/models/pipeworks_entry_panel.obj new file mode 100644 index 00000000..055a28d5 --- /dev/null +++ b/mods/pipeworks/models/pipeworks_entry_panel.obj @@ -0,0 +1,2482 @@ +# Blender v2.78 (sub 0) OBJ File: 'pipe-entry-panel.blend' +# www.blender.org +o Cube.001 +v 0.038455 0.126770 0.468750 +v 0.012985 0.131837 0.468750 +v -0.012984 0.131837 0.468750 +v -0.038455 0.126770 0.468750 +v -0.062448 0.116832 0.468750 +v -0.084041 0.102404 0.468750 +v -0.102404 0.084041 0.468750 +v -0.116832 0.062448 0.468750 +v -0.126770 0.038455 0.468750 +v -0.131837 0.012985 0.468750 +v -0.131837 -0.012985 0.468750 +v -0.116832 -0.062448 0.468750 +v -0.102404 -0.084041 0.468750 +v -0.084041 -0.102404 0.468750 +v -0.062448 -0.116832 0.468750 +v -0.038455 -0.126770 0.468750 +v -0.012985 -0.131836 0.468750 +v 0.012985 -0.131836 0.468750 +v 0.038455 -0.126770 0.468750 +v 0.062448 -0.116832 0.468750 +v 0.102404 -0.084041 0.468750 +v 0.084041 -0.102404 0.468750 +v 0.116832 -0.062448 0.468750 +v 0.126770 -0.038455 0.468750 +v 0.131836 0.012985 0.468750 +v 0.116832 0.062448 0.468750 +v 0.126770 0.038455 0.468750 +v 0.102404 0.084041 0.468750 +v 0.084041 0.102404 0.468750 +v 0.062448 0.116832 0.468750 +v -0.126770 -0.038455 0.468750 +v 0.131836 -0.012985 0.468750 +v 0.059210 0.110774 0.437501 +v 0.036461 0.120197 0.437501 +v 0.012312 0.125000 0.437501 +v -0.012311 0.125001 0.437501 +v -0.036461 0.120197 0.437501 +v -0.059210 0.110774 0.437501 +v -0.079683 0.097094 0.437501 +v -0.097094 0.079683 0.437501 +v -0.110774 0.059210 0.437501 +v -0.120197 0.036461 0.437501 +v -0.125001 0.012312 0.437501 +v -0.125000 -0.012311 0.437501 +v -0.120197 -0.036461 0.437501 +v -0.110774 -0.059210 0.437501 +v -0.097094 -0.079683 0.437501 +v -0.079683 -0.097094 0.437501 +v -0.059210 -0.110774 0.437501 +v -0.036461 -0.120197 0.437501 +v -0.012311 -0.125000 0.437501 +v 0.012311 -0.125000 0.437501 +v 0.036461 -0.120197 0.437501 +v 0.059210 -0.110774 0.437501 +v 0.079683 -0.097094 0.437501 +v 0.097094 -0.079683 0.437501 +v 0.110774 -0.059210 0.437501 +v 0.120197 -0.036461 0.437501 +v 0.125000 -0.012311 0.437501 +v 0.125000 0.012311 0.437501 +v 0.120197 0.036461 0.437501 +v 0.110774 0.059210 0.437501 +v 0.097094 0.079683 0.437501 +v 0.079683 0.097094 0.437501 +v -0.120197 0.036461 -0.437501 +v -0.125000 0.012312 -0.437501 +v -0.125000 -0.012311 -0.437501 +v -0.120197 -0.036461 -0.437501 +v -0.110774 0.059210 -0.437501 +v -0.131836 0.012985 -0.468750 +v -0.126770 0.038455 -0.468750 +v -0.131836 -0.012985 -0.468750 +v -0.110774 -0.059210 -0.437501 +v -0.126770 -0.038455 -0.468750 +v -0.097094 0.079683 -0.437501 +v -0.116832 0.062448 -0.468750 +v -0.097094 -0.079683 -0.437501 +v -0.116832 -0.062448 -0.468750 +v -0.079683 0.097094 -0.437501 +v -0.102404 0.084041 -0.468750 +v -0.079683 -0.097094 -0.437501 +v -0.102404 -0.084041 -0.468750 +v -0.059210 0.110774 -0.437501 +v -0.084041 0.102404 -0.468750 +v -0.059210 -0.110774 -0.437501 +v -0.084041 -0.102404 -0.468750 +v -0.036461 0.120197 -0.437501 +v -0.062448 0.116832 -0.468750 +v -0.036461 -0.120197 -0.437501 +v -0.062448 -0.116832 -0.468750 +v -0.012311 0.125000 -0.437501 +v -0.038455 0.126770 -0.468750 +v -0.012311 -0.125001 -0.437501 +v -0.038455 -0.126770 -0.468750 +v 0.012312 0.125000 -0.437501 +v -0.012985 0.131836 -0.468750 +v 0.012312 -0.125001 -0.437501 +v -0.012985 -0.131837 -0.468750 +v 0.036461 0.120197 -0.437501 +v 0.012985 0.131836 -0.468750 +v 0.036461 -0.120197 -0.437501 +v 0.012985 -0.131837 -0.468750 +v 0.059210 0.110774 -0.437501 +v 0.038455 0.126770 -0.468750 +v 0.059210 -0.110774 -0.437501 +v 0.038455 -0.126770 -0.468750 +v 0.079683 0.097094 -0.437501 +v 0.062448 0.116832 -0.468750 +v 0.079683 -0.097094 -0.437501 +v 0.062448 -0.116832 -0.468750 +v 0.097094 0.079683 -0.437501 +v 0.084041 0.102404 -0.468750 +v 0.097094 -0.079683 -0.437501 +v 0.084041 -0.102404 -0.468750 +v 0.110774 0.059210 -0.437501 +v 0.102404 0.084041 -0.468750 +v 0.110774 -0.059210 -0.437501 +v 0.102404 -0.084041 -0.468750 +v 0.120197 0.036461 -0.437501 +v 0.116832 0.062448 -0.468750 +v 0.120197 -0.036461 -0.437501 +v 0.116832 -0.062448 -0.468750 +v 0.125001 0.012311 -0.437501 +v 0.126770 0.038455 -0.468750 +v 0.125001 -0.012311 -0.437501 +v 0.126770 -0.038455 -0.468750 +v 0.131837 0.012985 -0.468750 +v 0.131837 -0.012985 -0.468750 +v 0.063644 0.130078 -0.460912 +v 0.063644 0.130078 -0.468749 +v 0.062467 0.139022 -0.468749 +v 0.062467 0.139022 -0.460912 +v 0.054133 0.142474 -0.460912 +v 0.046976 0.136982 -0.460912 +v 0.048153 0.128039 -0.460912 +v 0.056487 0.124587 -0.460912 +v 0.056487 0.124587 -0.468749 +v 0.054133 0.142474 -0.468749 +v 0.046976 0.136982 -0.468749 +v 0.048153 0.128039 -0.468749 +v 0.046976 0.136982 0.460914 +v 0.046976 0.136982 0.468751 +v 0.054133 0.142474 0.468751 +v 0.054133 0.142474 0.460914 +v 0.062467 0.139022 0.460914 +v 0.063644 0.130078 0.460914 +v 0.056487 0.124587 0.460914 +v 0.048153 0.128039 0.460914 +v 0.048153 0.128039 0.468751 +v 0.062467 0.139022 0.468751 +v 0.063644 0.130078 0.468751 +v 0.056487 0.124587 0.468751 +v 0.136982 0.046976 -0.460912 +v 0.136982 0.046976 -0.468749 +v 0.142474 0.054133 -0.468749 +v 0.142474 0.054133 -0.460912 +v 0.139022 0.062467 -0.460912 +v 0.130078 0.063644 -0.460912 +v 0.124587 0.056488 -0.460912 +v 0.128039 0.048154 -0.460912 +v 0.128039 0.048154 -0.468749 +v 0.139022 0.062467 -0.468749 +v 0.130078 0.063644 -0.468749 +v 0.124587 0.056488 -0.468749 +v 0.130078 0.063644 0.460914 +v 0.130078 0.063644 0.468751 +v 0.139022 0.062467 0.468751 +v 0.139022 0.062467 0.460914 +v 0.142474 0.054133 0.460914 +v 0.136982 0.046976 0.460914 +v 0.128039 0.048153 0.460914 +v 0.124587 0.056487 0.460914 +v 0.124587 0.056487 0.468751 +v 0.142474 0.054133 0.468751 +v 0.136982 0.046976 0.468751 +v 0.128039 0.048153 0.468751 +v 0.130078 -0.063644 -0.460912 +v 0.130078 -0.063644 -0.468749 +v 0.139022 -0.062467 -0.468749 +v 0.139022 -0.062467 -0.460912 +v 0.142474 -0.054132 -0.460912 +v 0.136982 -0.046976 -0.460912 +v 0.128039 -0.048153 -0.460912 +v 0.124587 -0.056487 -0.460912 +v 0.124587 -0.056487 -0.468749 +v 0.142474 -0.054132 -0.468749 +v 0.136982 -0.046976 -0.468749 +v 0.128039 -0.048153 -0.468749 +v 0.136982 -0.046976 0.460914 +v 0.136982 -0.046976 0.468751 +v 0.142474 -0.054133 0.468751 +v 0.142474 -0.054133 0.460914 +v 0.139022 -0.062467 0.460914 +v 0.130078 -0.063644 0.460914 +v 0.124587 -0.056488 0.460914 +v 0.128039 -0.048153 0.460914 +v 0.128039 -0.048153 0.468751 +v 0.139022 -0.062467 0.468751 +v 0.130078 -0.063644 0.468751 +v 0.124587 -0.056488 0.468751 +v 0.046976 -0.136982 -0.460912 +v 0.046976 -0.136982 -0.468749 +v 0.054133 -0.142474 -0.468749 +v 0.054133 -0.142474 -0.460912 +v 0.062467 -0.139022 -0.460912 +v 0.063644 -0.130078 -0.460912 +v 0.056488 -0.124587 -0.460912 +v 0.048154 -0.128039 -0.460912 +v 0.048154 -0.128039 -0.468749 +v 0.062467 -0.139022 -0.468749 +v 0.063644 -0.130078 -0.468749 +v 0.056488 -0.124587 -0.468749 +v 0.063644 -0.130078 0.460914 +v 0.063644 -0.130078 0.468751 +v 0.062467 -0.139022 0.468751 +v 0.062467 -0.139022 0.460914 +v 0.054133 -0.142474 0.460914 +v 0.046976 -0.136982 0.460914 +v 0.048153 -0.128039 0.460914 +v 0.056487 -0.124587 0.460914 +v 0.056487 -0.124587 0.468751 +v 0.054133 -0.142474 0.468751 +v 0.046976 -0.136982 0.468751 +v 0.048153 -0.128039 0.468751 +v -0.063644 -0.130078 -0.460912 +v -0.063644 -0.130078 -0.468749 +v -0.062466 -0.139022 -0.468749 +v -0.062467 -0.139022 -0.460912 +v -0.054132 -0.142474 -0.460912 +v -0.046976 -0.136982 -0.460912 +v -0.048153 -0.128039 -0.460912 +v -0.056487 -0.124587 -0.460912 +v -0.056487 -0.124587 -0.468749 +v -0.054132 -0.142474 -0.468749 +v -0.046976 -0.136982 -0.468749 +v -0.048153 -0.128039 -0.468749 +v -0.046976 -0.136982 0.460914 +v -0.046976 -0.136982 0.468751 +v -0.054133 -0.142474 0.468751 +v -0.054133 -0.142474 0.460914 +v -0.062467 -0.139022 0.460914 +v -0.063644 -0.130078 0.460914 +v -0.056488 -0.124587 0.460914 +v -0.048153 -0.128039 0.460914 +v -0.048153 -0.128039 0.468751 +v -0.062467 -0.139022 0.468751 +v -0.063644 -0.130078 0.468751 +v -0.056488 -0.124587 0.468751 +v -0.136982 -0.046976 -0.460912 +v -0.136982 -0.046976 -0.468749 +v -0.142474 -0.054133 -0.468749 +v -0.142474 -0.054133 -0.460912 +v -0.139022 -0.062467 -0.460912 +v -0.130078 -0.063644 -0.460912 +v -0.124587 -0.056488 -0.460912 +v -0.128039 -0.048153 -0.460912 +v -0.128039 -0.048153 -0.468749 +v -0.139022 -0.062467 -0.468749 +v -0.130078 -0.063644 -0.468749 +v -0.124587 -0.056488 -0.468749 +v -0.130078 -0.063644 0.460914 +v -0.130078 -0.063644 0.468751 +v -0.139022 -0.062467 0.468751 +v -0.139022 -0.062467 0.460914 +v -0.142474 -0.054132 0.460914 +v -0.136982 -0.046976 0.460914 +v -0.128039 -0.048153 0.460914 +v -0.124587 -0.056487 0.460914 +v -0.124587 -0.056487 0.468751 +v -0.142474 -0.054132 0.468751 +v -0.136982 -0.046976 0.468751 +v -0.128039 -0.048153 0.468751 +v -0.130078 0.063644 -0.460912 +v -0.130078 0.063644 -0.468749 +v -0.139022 0.062467 -0.468749 +v -0.139022 0.062467 -0.460912 +v -0.142474 0.054132 -0.460912 +v -0.136982 0.046976 -0.460912 +v -0.128039 0.048153 -0.460912 +v -0.124587 0.056487 -0.460912 +v -0.124587 0.056487 -0.468749 +v -0.142474 0.054132 -0.468749 +v -0.136982 0.046976 -0.468749 +v -0.128039 0.048153 -0.468749 +v -0.136982 0.046976 0.460914 +v -0.136982 0.046976 0.468751 +v -0.142474 0.054133 0.468751 +v -0.142474 0.054133 0.460914 +v -0.139022 0.062467 0.460914 +v -0.130078 0.063644 0.460914 +v -0.124587 0.056487 0.460914 +v -0.128039 0.048153 0.460914 +v -0.128039 0.048153 0.468751 +v -0.139022 0.062467 0.468751 +v -0.130078 0.063644 0.468751 +v -0.124587 0.056487 0.468751 +v -0.046976 0.136982 -0.460912 +v -0.046976 0.136982 -0.468749 +v -0.054133 0.142474 -0.468749 +v -0.054133 0.142474 -0.460912 +v -0.062467 0.139022 -0.460912 +v -0.063644 0.130078 -0.460912 +v -0.056488 0.124587 -0.460912 +v -0.048153 0.128039 -0.460912 +v -0.048153 0.128039 -0.468749 +v -0.062467 0.139022 -0.468749 +v -0.063644 0.130078 -0.468749 +v -0.056488 0.124587 -0.468749 +v -0.063644 0.130078 0.460914 +v -0.063644 0.130078 0.468751 +v -0.062467 0.139022 0.468751 +v -0.062467 0.139022 0.460914 +v -0.054133 0.142474 0.460914 +v -0.046976 0.136982 0.460914 +v -0.048153 0.128039 0.460914 +v -0.056487 0.124587 0.460914 +v -0.056487 0.124587 0.468751 +v -0.054133 0.142474 0.468751 +v -0.046976 0.136982 0.468751 +v -0.048153 0.128039 0.468751 +v -0.121367 0.099603 0.500000 +v -0.138467 0.074012 0.500000 +v -0.150245 0.045577 0.500000 +v -0.156250 0.015390 0.500000 +v -0.156250 -0.015389 0.500000 +v -0.150245 -0.045576 0.500000 +v -0.138467 -0.074012 0.500000 +v -0.121367 -0.099603 0.500000 +v -0.099603 -0.121367 0.500000 +v -0.045576 -0.150245 0.500000 +v 0.015389 -0.156250 0.500000 +v 0.045576 -0.150245 0.500000 +v 0.099603 -0.121367 0.500000 +v 0.121367 -0.099603 0.500000 +v 0.138467 -0.074012 0.500000 +v 0.150245 -0.045576 0.500000 +v 0.156250 -0.015389 0.500000 +v 0.150245 0.045576 0.500000 +v 0.138467 0.074012 0.500000 +v 0.121367 0.099603 0.500000 +v 0.074012 0.138467 0.500000 +v 0.015389 0.156250 0.500000 +v -0.015389 0.156250 0.500000 +v -0.045576 0.150245 0.500000 +v -0.074012 0.138467 0.500000 +v -0.099603 0.121367 0.500000 +v -0.074012 -0.138466 0.500000 +v -0.015389 -0.156250 0.500000 +v 0.074012 -0.138467 0.500000 +v 0.156250 0.015389 0.500000 +v 0.099603 0.121367 0.500000 +v 0.045576 0.150245 0.500000 +v -0.121367 0.099603 0.468750 +v -0.099603 0.121367 0.468750 +v -0.138467 0.074012 0.468750 +v -0.150245 0.045577 0.468750 +v -0.156250 0.015390 0.468750 +v -0.156250 -0.015389 0.468750 +v -0.150245 -0.045576 0.468750 +v -0.138467 -0.074012 0.468750 +v -0.121367 -0.099603 0.468750 +v -0.099603 -0.121367 0.468750 +v -0.074012 -0.138466 0.468750 +v -0.045576 -0.150245 0.468750 +v -0.015389 -0.156250 0.468750 +v 0.015389 -0.156250 0.468750 +v 0.045576 -0.150245 0.468750 +v 0.074012 -0.138467 0.468750 +v 0.099603 -0.121367 0.468750 +v 0.121367 -0.099603 0.468750 +v 0.138467 -0.074012 0.468750 +v 0.150245 -0.045576 0.468750 +v 0.156250 -0.015389 0.468750 +v 0.156250 0.015389 0.468750 +v 0.138467 0.074012 0.468750 +v 0.150245 0.045576 0.468750 +v 0.121367 0.099603 0.468750 +v 0.099603 0.121367 0.468750 +v 0.074012 0.138467 0.468750 +v 0.045576 0.150245 0.468750 +v -0.015389 0.156250 0.468750 +v 0.015389 0.156250 0.468750 +v -0.045576 0.150245 0.468750 +v -0.074012 0.138467 0.468750 +v -0.074012 -0.138466 -0.468750 +v -0.045576 -0.150245 -0.468750 +v -0.015389 -0.156250 -0.468750 +v -0.099603 -0.121367 -0.468750 +v 0.015389 -0.156250 -0.468750 +v -0.138467 -0.074012 -0.468750 +v -0.121367 -0.099603 -0.468750 +v -0.099603 -0.121367 -0.500000 +v -0.074012 -0.138467 -0.500000 +v -0.045576 -0.150245 -0.500000 +v -0.015389 -0.156250 -0.500000 +v 0.015389 -0.156250 -0.500000 +v -0.150245 -0.045576 -0.468750 +v -0.121367 -0.099603 -0.500000 +v 0.045576 -0.150245 -0.468750 +v 0.045576 -0.150245 -0.500000 +v -0.156250 -0.015389 -0.468750 +v -0.150245 -0.045576 -0.500000 +v -0.138467 -0.074012 -0.500000 +v 0.074012 -0.138467 -0.468750 +v 0.074012 -0.138467 -0.500000 +v -0.156250 0.015389 -0.468750 +v -0.156250 -0.015389 -0.500000 +v 0.099603 -0.121367 -0.468750 +v 0.099603 -0.121367 -0.500000 +v -0.150245 0.045576 -0.468750 +v -0.156250 0.015389 -0.500000 +v 0.121367 -0.099603 -0.468750 +v 0.121367 -0.099603 -0.500000 +v -0.138467 0.074012 -0.468750 +v -0.150245 0.045576 -0.500000 +v 0.150245 -0.045576 -0.468750 +v 0.138467 -0.074012 -0.468750 +v 0.138467 -0.074012 -0.500000 +v -0.121367 0.099603 -0.468750 +v -0.138467 0.074012 -0.500000 +v 0.156250 -0.015389 -0.468750 +v 0.150245 -0.045576 -0.500000 +v -0.099603 0.121367 -0.468750 +v -0.121367 0.099603 -0.500000 +v 0.156250 0.015389 -0.468750 +v 0.156250 -0.015389 -0.500000 +v -0.074012 0.138466 -0.468750 +v -0.099603 0.121367 -0.500000 +v 0.150245 0.045576 -0.468750 +v 0.156250 0.015389 -0.500000 +v -0.045576 0.150245 -0.468750 +v -0.074012 0.138466 -0.500000 +v 0.138467 0.074012 -0.468750 +v 0.150245 0.045576 -0.500000 +v -0.015389 0.156249 -0.468750 +v -0.045576 0.150245 -0.500000 +v 0.015389 0.156250 -0.500000 +v 0.121367 0.099603 -0.468750 +v 0.138467 0.074012 -0.500000 +v 0.015389 0.156250 -0.468750 +v -0.015389 0.156250 -0.500000 +v 0.074012 0.138467 -0.500000 +v 0.045576 0.150245 -0.500000 +v 0.099603 0.121367 -0.500000 +v 0.121367 0.099603 -0.500000 +v 0.045576 0.150245 -0.468750 +v 0.099603 0.121367 -0.468750 +v 0.074012 0.138467 -0.468750 +v 0.108578 0.095821 -0.460912 +v 0.108578 0.095821 -0.468749 +v 0.110913 0.104534 -0.468749 +v 0.110913 0.104534 -0.460912 +v 0.104534 0.110913 -0.460912 +v 0.095821 0.108578 -0.460912 +v 0.093486 0.099865 -0.460912 +v 0.099865 0.093486 -0.460912 +v 0.099865 0.093486 -0.468749 +v 0.104534 0.110913 -0.468749 +v 0.095821 0.108578 -0.468749 +v 0.093486 0.099865 -0.468749 +v 0.095821 0.108578 0.460914 +v 0.095821 0.108578 0.468751 +v 0.104534 0.110913 0.468751 +v 0.104534 0.110913 0.460914 +v 0.110913 0.104534 0.460914 +v 0.108578 0.095821 0.460914 +v 0.099865 0.093486 0.460914 +v 0.093486 0.099865 0.460914 +v 0.093486 0.099865 0.468751 +v 0.110913 0.104534 0.468751 +v 0.108578 0.095821 0.468751 +v 0.099865 0.093486 0.468751 +v 0.144532 -0.009021 -0.460912 +v 0.144532 -0.009021 -0.468749 +v 0.152344 -0.004510 -0.468749 +v 0.152344 -0.004510 -0.460912 +v 0.152344 0.004510 -0.460912 +v 0.144532 0.009021 -0.460912 +v 0.136720 0.004510 -0.460912 +v 0.136720 -0.004510 -0.460912 +v 0.136720 -0.004510 -0.468749 +v 0.152344 0.004510 -0.468749 +v 0.144532 0.009021 -0.468749 +v 0.136720 0.004510 -0.468749 +v 0.144532 0.009021 0.460914 +v 0.144532 0.009021 0.468751 +v 0.152344 0.004510 0.468751 +v 0.152344 0.004510 0.460914 +v 0.152344 -0.004510 0.460914 +v 0.144532 -0.009021 0.460914 +v 0.136720 -0.004510 0.460914 +v 0.136720 0.004510 0.460914 +v 0.136720 0.004510 0.468751 +v 0.152344 -0.004510 0.468751 +v 0.144532 -0.009021 0.468751 +v 0.136720 -0.004510 0.468751 +v 0.095821 -0.108578 -0.460912 +v 0.095821 -0.108578 -0.468749 +v 0.104534 -0.110913 -0.468749 +v 0.104534 -0.110913 -0.460912 +v 0.110913 -0.104534 -0.460912 +v 0.108578 -0.095821 -0.460912 +v 0.099865 -0.093486 -0.460912 +v 0.093486 -0.099865 -0.460912 +v 0.093486 -0.099865 -0.468749 +v 0.110913 -0.104534 -0.468749 +v 0.108578 -0.095821 -0.468749 +v 0.099865 -0.093486 -0.468749 +v 0.108578 -0.095821 0.460914 +v 0.108578 -0.095821 0.468751 +v 0.110913 -0.104534 0.468751 +v 0.110913 -0.104534 0.460914 +v 0.104534 -0.110913 0.460914 +v 0.095821 -0.108578 0.460914 +v 0.093486 -0.099865 0.460914 +v 0.099865 -0.093486 0.460914 +v 0.099865 -0.093486 0.468751 +v 0.104534 -0.110913 0.468751 +v 0.095821 -0.108578 0.468751 +v 0.093486 -0.099865 0.468751 +v -0.009021 -0.144532 -0.460912 +v -0.009021 -0.144532 -0.468749 +v -0.004510 -0.152344 -0.468749 +v -0.004510 -0.152344 -0.460912 +v 0.004511 -0.152344 -0.460912 +v 0.009021 -0.144532 -0.460912 +v 0.004510 -0.136720 -0.460912 +v -0.004510 -0.136720 -0.460912 +v -0.004510 -0.136720 -0.468749 +v 0.004511 -0.152344 -0.468749 +v 0.009021 -0.144532 -0.468749 +v 0.004511 -0.136720 -0.468749 +v 0.009021 -0.144532 0.460914 +v 0.009021 -0.144532 0.468751 +v 0.004510 -0.152344 0.468751 +v 0.004510 -0.152344 0.460914 +v -0.004510 -0.152344 0.460914 +v -0.009021 -0.144532 0.460914 +v -0.004510 -0.136720 0.460914 +v 0.004510 -0.136720 0.460914 +v 0.004510 -0.136720 0.468751 +v -0.004510 -0.152344 0.468751 +v -0.009021 -0.144532 0.468751 +v -0.004510 -0.136720 0.468751 +v -0.108578 -0.095821 -0.460912 +v -0.108578 -0.095821 -0.468749 +v -0.110913 -0.104534 -0.468749 +v -0.110913 -0.104534 -0.460912 +v -0.104534 -0.110913 -0.460912 +v -0.095821 -0.108578 -0.460912 +v -0.093486 -0.099865 -0.460912 +v -0.099865 -0.093486 -0.460912 +v -0.099865 -0.093486 -0.468749 +v -0.104534 -0.110913 -0.468749 +v -0.095821 -0.108578 -0.468749 +v -0.093486 -0.099865 -0.468749 +v -0.095821 -0.108578 0.460914 +v -0.095821 -0.108578 0.468751 +v -0.104534 -0.110913 0.468751 +v -0.104534 -0.110913 0.460914 +v -0.110913 -0.104534 0.460914 +v -0.108578 -0.095821 0.460914 +v -0.099865 -0.093486 0.460914 +v -0.093486 -0.099865 0.460914 +v -0.093486 -0.099865 0.468751 +v -0.110913 -0.104534 0.468751 +v -0.108578 -0.095821 0.468751 +v -0.099865 -0.093486 0.468751 +v -0.144532 0.009021 -0.460912 +v -0.144532 0.009021 -0.468749 +v -0.152344 0.004510 -0.468749 +v -0.152344 0.004510 -0.460912 +v -0.152344 -0.004510 -0.460912 +v -0.144532 -0.009021 -0.460912 +v -0.136720 -0.004510 -0.460912 +v -0.136720 0.004510 -0.460912 +v -0.136720 0.004510 -0.468749 +v -0.152344 -0.004510 -0.468749 +v -0.144532 -0.009021 -0.468749 +v -0.136720 -0.004510 -0.468749 +v -0.144532 -0.009021 0.460914 +v -0.144532 -0.009021 0.468751 +v -0.152344 -0.004510 0.468751 +v -0.152344 -0.004510 0.460914 +v -0.152344 0.004510 0.460914 +v -0.144532 0.009021 0.460914 +v -0.136720 0.004510 0.460914 +v -0.136720 -0.004510 0.460914 +v -0.136720 -0.004510 0.468751 +v -0.152344 0.004510 0.468751 +v -0.144532 0.009021 0.468751 +v -0.136720 0.004510 0.468751 +v -0.095821 0.108578 -0.460912 +v -0.095821 0.108578 -0.468749 +v -0.104534 0.110913 -0.468749 +v -0.104534 0.110913 -0.460912 +v -0.110913 0.104534 -0.460912 +v -0.108578 0.095821 -0.460912 +v -0.099865 0.093486 -0.460912 +v -0.093486 0.099865 -0.460912 +v -0.093486 0.099865 -0.468749 +v -0.110913 0.104534 -0.468749 +v -0.108578 0.095821 -0.468749 +v -0.099865 0.093486 -0.468749 +v -0.108578 0.095821 0.460914 +v -0.108578 0.095821 0.468751 +v -0.110913 0.104534 0.468751 +v -0.110913 0.104534 0.460914 +v -0.104534 0.110913 0.460914 +v -0.095821 0.108578 0.460914 +v -0.093486 0.099865 0.460914 +v -0.099865 0.093486 0.460914 +v -0.099865 0.093486 0.468751 +v -0.104534 0.110913 0.468751 +v -0.095821 0.108578 0.468751 +v -0.093486 0.099865 0.468751 +v 0.009021 0.144532 -0.460912 +v 0.009021 0.144532 -0.468749 +v 0.004510 0.152344 -0.468749 +v 0.004510 0.152344 -0.460912 +v -0.004510 0.152344 -0.460912 +v -0.009021 0.144532 -0.460912 +v -0.004510 0.136720 -0.460912 +v 0.004510 0.136720 -0.460912 +v 0.004510 0.136720 -0.468749 +v -0.004510 0.152344 -0.468749 +v -0.009021 0.144532 -0.468749 +v -0.004510 0.136720 -0.468749 +v -0.009021 0.144532 0.460914 +v -0.009021 0.144532 0.468751 +v -0.004510 0.152344 0.468751 +v -0.004510 0.152344 0.460914 +v 0.004510 0.152344 0.460914 +v 0.009021 0.144532 0.460914 +v 0.004510 0.136720 0.460914 +v -0.004510 0.136720 0.460914 +v -0.004510 0.136720 0.468751 +v 0.004510 0.152344 0.468751 +v 0.009021 0.144532 0.468751 +v 0.004510 0.136720 0.468751 +v -0.473864 -0.473864 -0.062500 +v -0.500000 -0.500000 -0.036364 +v 0.500000 -0.500000 -0.036364 +v 0.473864 -0.473864 -0.062500 +v 0.473864 -0.473864 0.062500 +v 0.500000 -0.500000 0.036364 +v -0.500000 -0.500000 0.036364 +v -0.473864 -0.473864 0.062500 +v -0.500000 0.500000 -0.036364 +v -0.473864 0.473864 -0.062500 +v 0.500000 0.500000 -0.036364 +v 0.473864 0.473864 -0.062500 +v 0.473864 0.473864 0.062500 +v 0.500000 0.500000 0.036364 +v -0.500000 0.500000 0.036364 +v -0.473864 0.473864 0.062500 +vt 0.2070 0.0076 +vt 0.2070 0.4924 +vt 0.1718 0.4924 +vt 0.1718 0.0076 +vt 0.4798 0.9798 +vt 0.0202 0.9798 +vt 0.0202 0.5202 +vt 0.4798 0.5202 +vt 0.0960 0.4924 +vt 0.0960 0.0076 +vt 0.1313 0.0076 +vt 0.1313 0.4924 +vt 0.0555 0.4924 +vt 0.0202 0.4924 +vt 0.0202 0.0076 +vt 0.0555 0.0076 +vt 0.2828 0.4924 +vt 0.2475 0.4924 +vt 0.2475 0.0076 +vt 0.2828 0.0076 +vt 0.8410 0.3482 +vt 0.8473 0.3445 +vt 0.8473 0.3370 +vt 0.8410 0.3332 +vt 0.8346 0.3370 +vt 0.8346 0.3445 +vt 0.8410 0.3482 +vt 0.8473 0.3445 +vt 0.8473 0.3370 +vt 0.8410 0.3332 +vt 0.8346 0.3370 +vt 0.8346 0.3445 +vt 0.8410 0.3482 +vt 0.8473 0.3445 +vt 0.8473 0.3370 +vt 0.8410 0.3332 +vt 0.8346 0.3370 +vt 0.8346 0.3445 +vt 0.8410 0.3482 +vt 0.8473 0.3445 +vt 0.8473 0.3370 +vt 0.8410 0.3332 +vt 0.8346 0.3370 +vt 0.8346 0.3445 +vt 0.8410 0.3482 +vt 0.8473 0.3445 +vt 0.8473 0.3370 +vt 0.8410 0.3332 +vt 0.8346 0.3370 +vt 0.8346 0.3445 +vt 0.8410 0.3482 +vt 0.8473 0.3445 +vt 0.8473 0.3370 +vt 0.8410 0.3332 +vt 0.8346 0.3370 +vt 0.8346 0.3445 +vt 0.8410 0.3482 +vt 0.8473 0.3445 +vt 0.8473 0.3370 +vt 0.8410 0.3332 +vt 0.8346 0.3370 +vt 0.8346 0.3445 +vt 0.8410 0.3482 +vt 0.8473 0.3445 +vt 0.8473 0.3370 +vt 0.8410 0.3332 +vt 0.8346 0.3370 +vt 0.8346 0.3445 +vt 0.8410 0.3482 +vt 0.8473 0.3445 +vt 0.8473 0.3370 +vt 0.8410 0.3332 +vt 0.8346 0.3370 +vt 0.8346 0.3445 +vt 0.8410 0.3482 +vt 0.8473 0.3445 +vt 0.8473 0.3370 +vt 0.8410 0.3332 +vt 0.8346 0.3370 +vt 0.8346 0.3445 +vt 0.8410 0.3482 +vt 0.8473 0.3445 +vt 0.8473 0.3370 +vt 0.8410 0.3332 +vt 0.8346 0.3370 +vt 0.8346 0.3445 +vt 0.8410 0.3482 +vt 0.8473 0.3445 +vt 0.8473 0.3370 +vt 0.8410 0.3332 +vt 0.8346 0.3370 +vt 0.8346 0.3445 +vt 0.8410 0.3482 +vt 0.8473 0.3445 +vt 0.8473 0.3370 +vt 0.8410 0.3332 +vt 0.8346 0.3370 +vt 0.8346 0.3445 +vt 0.8410 0.3482 +vt 0.8473 0.3445 +vt 0.8473 0.3370 +vt 0.8410 0.3332 +vt 0.8346 0.3370 +vt 0.8346 0.3445 +vt 0.8410 0.3482 +vt 0.8473 0.3445 +vt 0.8473 0.3370 +vt 0.8410 0.3332 +vt 0.8346 0.3370 +vt 0.8346 0.3445 +vt 0.8410 0.3482 +vt 0.8473 0.3445 +vt 0.8473 0.3370 +vt 0.8410 0.3332 +vt 0.8346 0.3370 +vt 0.8346 0.3445 +vt 0.7231 0.4496 +vt 0.7334 0.4601 +vt 0.7455 0.4683 +vt 0.7590 0.4740 +vt 0.7732 0.4769 +vt 0.7878 0.4769 +vt 0.8021 0.4740 +vt 0.8155 0.4683 +vt 0.8276 0.4601 +vt 0.8379 0.4496 +vt 0.8460 0.4373 +vt 0.8516 0.4236 +vt 0.8544 0.4090 +vt 0.8544 0.3942 +vt 0.8516 0.3796 +vt 0.8460 0.3659 +vt 0.8379 0.3536 +vt 0.8276 0.3431 +vt 0.8155 0.3349 +vt 0.8021 0.3292 +vt 0.7878 0.3263 +vt 0.7732 0.3263 +vt 0.7590 0.3292 +vt 0.7455 0.3349 +vt 0.7334 0.3431 +vt 0.7231 0.3536 +vt 0.7150 0.3659 +vt 0.7095 0.3796 +vt 0.7066 0.3942 +vt 0.7066 0.4090 +vt 0.7095 0.4236 +vt 0.7150 0.4373 +vt 0.6201 0.3292 +vt 0.6335 0.3349 +vt 0.6456 0.3431 +vt 0.6559 0.3536 +vt 0.6640 0.3659 +vt 0.6696 0.3796 +vt 0.6724 0.3942 +vt 0.6724 0.4090 +vt 0.6696 0.4236 +vt 0.6640 0.4373 +vt 0.6559 0.4496 +vt 0.6456 0.4601 +vt 0.6335 0.4683 +vt 0.6201 0.4740 +vt 0.6058 0.4769 +vt 0.5912 0.4769 +vt 0.5770 0.4740 +vt 0.5635 0.4683 +vt 0.5514 0.4601 +vt 0.5411 0.4496 +vt 0.5330 0.4373 +vt 0.5275 0.4236 +vt 0.5246 0.4090 +vt 0.5246 0.3942 +vt 0.5275 0.3796 +vt 0.5330 0.3659 +vt 0.5411 0.3536 +vt 0.5514 0.3431 +vt 0.5635 0.3349 +vt 0.5770 0.3292 +vt 0.5912 0.3263 +vt 0.6058 0.3263 +vt 0.7878 0.3263 +vt 0.8021 0.3292 +vt 0.8155 0.3349 +vt 0.8276 0.3431 +vt 0.8379 0.3536 +vt 0.8460 0.3659 +vt 0.8516 0.3796 +vt 0.8544 0.3942 +vt 0.8544 0.4090 +vt 0.8516 0.4236 +vt 0.8460 0.4373 +vt 0.8379 0.4496 +vt 0.8276 0.4601 +vt 0.8155 0.4683 +vt 0.8021 0.4740 +vt 0.7878 0.4769 +vt 0.7732 0.4769 +vt 0.7590 0.4740 +vt 0.7455 0.4683 +vt 0.7334 0.4601 +vt 0.7231 0.4496 +vt 0.7150 0.4373 +vt 0.7095 0.4236 +vt 0.7066 0.4090 +vt 0.7066 0.3942 +vt 0.7095 0.3796 +vt 0.7150 0.3659 +vt 0.7231 0.3536 +vt 0.7334 0.3431 +vt 0.7455 0.3349 +vt 0.7590 0.3292 +vt 0.7732 0.3263 +vt 0.5635 0.3349 +vt 0.5514 0.3431 +vt 0.5411 0.3536 +vt 0.5330 0.3659 +vt 0.5275 0.3796 +vt 0.5246 0.3942 +vt 0.5246 0.4090 +vt 0.5275 0.4236 +vt 0.5330 0.4373 +vt 0.5411 0.4496 +vt 0.5514 0.4601 +vt 0.5635 0.4683 +vt 0.5770 0.4740 +vt 0.5912 0.4769 +vt 0.6058 0.4769 +vt 0.6201 0.4740 +vt 0.6335 0.4683 +vt 0.6456 0.4601 +vt 0.6559 0.4496 +vt 0.6640 0.4373 +vt 0.6696 0.4236 +vt 0.6724 0.4090 +vt 0.6724 0.3942 +vt 0.6696 0.3796 +vt 0.6640 0.3659 +vt 0.6559 0.3536 +vt 0.6456 0.3431 +vt 0.6335 0.3349 +vt 0.6201 0.3292 +vt 0.6058 0.3263 +vt 0.5912 0.3263 +vt 0.5770 0.3292 +vt 0.8410 0.3482 +vt 0.8473 0.3445 +vt 0.8473 0.3370 +vt 0.8410 0.3332 +vt 0.8346 0.3370 +vt 0.8346 0.3445 +vt 0.8410 0.3482 +vt 0.8473 0.3445 +vt 0.8473 0.3370 +vt 0.8410 0.3332 +vt 0.8346 0.3370 +vt 0.8346 0.3445 +vt 0.8410 0.3482 +vt 0.8473 0.3445 +vt 0.8473 0.3370 +vt 0.8410 0.3332 +vt 0.8346 0.3370 +vt 0.8346 0.3445 +vt 0.8410 0.3482 +vt 0.8473 0.3445 +vt 0.8473 0.3370 +vt 0.8410 0.3332 +vt 0.8346 0.3370 +vt 0.8346 0.3445 +vt 0.8410 0.3482 +vt 0.8473 0.3445 +vt 0.8473 0.3370 +vt 0.8410 0.3332 +vt 0.8346 0.3370 +vt 0.8346 0.3445 +vt 0.8410 0.3482 +vt 0.8473 0.3445 +vt 0.8473 0.3370 +vt 0.8410 0.3332 +vt 0.8346 0.3370 +vt 0.8346 0.3445 +vt 0.8410 0.3482 +vt 0.8473 0.3445 +vt 0.8473 0.3370 +vt 0.8410 0.3332 +vt 0.8346 0.3370 +vt 0.8346 0.3445 +vt 0.8410 0.3482 +vt 0.8473 0.3445 +vt 0.8473 0.3370 +vt 0.8410 0.3332 +vt 0.8346 0.3370 +vt 0.8346 0.3445 +vt 0.8410 0.3482 +vt 0.8473 0.3445 +vt 0.8473 0.3370 +vt 0.8410 0.3332 +vt 0.8346 0.3370 +vt 0.8346 0.3445 +vt 0.8410 0.3482 +vt 0.8473 0.3445 +vt 0.8473 0.3370 +vt 0.8410 0.3332 +vt 0.8346 0.3370 +vt 0.8346 0.3445 +vt 0.8410 0.3482 +vt 0.8473 0.3445 +vt 0.8473 0.3370 +vt 0.8410 0.3332 +vt 0.8346 0.3370 +vt 0.8346 0.3445 +vt 0.8410 0.3482 +vt 0.8473 0.3445 +vt 0.8473 0.3370 +vt 0.8410 0.3332 +vt 0.8346 0.3370 +vt 0.8346 0.3445 +vt 0.8410 0.3482 +vt 0.8473 0.3445 +vt 0.8473 0.3370 +vt 0.8410 0.3332 +vt 0.8346 0.3370 +vt 0.8346 0.3445 +vt 0.8410 0.3482 +vt 0.8473 0.3445 +vt 0.8473 0.3370 +vt 0.8410 0.3332 +vt 0.8346 0.3370 +vt 0.8346 0.3445 +vt 0.8410 0.3482 +vt 0.8473 0.3445 +vt 0.8473 0.3370 +vt 0.8410 0.3332 +vt 0.8346 0.3370 +vt 0.8346 0.3445 +vt 0.8410 0.3482 +vt 0.8473 0.3445 +vt 0.8473 0.3370 +vt 0.8410 0.3332 +vt 0.8346 0.3370 +vt 0.8346 0.3445 +vt 0.2348 0.4798 +vt 0.2348 0.0202 +vt 0.1439 0.0202 +vt 0.1439 0.4798 +vt 0.0682 0.0202 +vt 0.0682 0.4798 +vt 0.2197 0.0202 +vt 0.2197 0.4798 +vt 0.4924 0.5076 +vt 0.4924 0.9924 +vt 0.0833 0.4798 +vt 0.0833 0.0202 +vt 0.2955 0.0202 +vt 0.2955 0.4798 +vt 0.1591 0.4798 +vt 0.1591 0.0202 +vt 0.5202 0.5202 +vt 0.9798 0.5202 +vt 0.9798 0.9798 +vt 0.5202 0.9798 +vt 0.7348 0.2879 +vt 0.7348 0.2727 +vt 0.7500 0.2727 +vt 0.7500 0.2879 +vt 0.7197 0.2879 +vt 0.7197 0.2727 +vt 0.7045 0.2879 +vt 0.7045 0.2727 +vt 0.6894 0.2879 +vt 0.6894 0.2727 +vt 0.6742 0.2879 +vt 0.6742 0.2727 +vt 0.6591 0.2879 +vt 0.6591 0.2727 +vt 0.6439 0.2879 +vt 0.6439 0.2727 +vt 0.6288 0.2879 +vt 0.6288 0.2727 +vt 0.6136 0.2879 +vt 0.6136 0.2727 +vt 0.5985 0.2879 +vt 0.5985 0.2727 +vt 0.5833 0.2879 +vt 0.5833 0.2727 +vt 0.5682 0.2879 +vt 0.5682 0.2727 +vt 0.5530 0.2879 +vt 0.5530 0.2727 +vt 0.5379 0.2879 +vt 0.5379 0.2727 +vt 0.5227 0.2879 +vt 0.5227 0.2727 +vt 0.5076 0.2879 +vt 0.5076 0.2727 +vt 0.9773 0.2879 +vt 0.9773 0.2727 +vt 0.9924 0.2727 +vt 0.9924 0.2879 +vt 0.9621 0.2879 +vt 0.9621 0.2727 +vt 0.9470 0.2879 +vt 0.9470 0.2727 +vt 0.9318 0.2879 +vt 0.9318 0.2727 +vt 0.9015 0.2879 +vt 0.9015 0.2727 +vt 0.9167 0.2727 +vt 0.9167 0.2879 +vt 0.8864 0.2879 +vt 0.8864 0.2727 +vt 0.8712 0.2879 +vt 0.8712 0.2727 +vt 0.8561 0.2879 +vt 0.8561 0.2727 +vt 0.8409 0.2879 +vt 0.8409 0.2727 +vt 0.8106 0.2879 +vt 0.8106 0.2727 +vt 0.8258 0.2727 +vt 0.8258 0.2879 +vt 0.7955 0.2879 +vt 0.7955 0.2727 +vt 0.7803 0.2879 +vt 0.7803 0.2727 +vt 0.7208 0.2473 +vt 0.7208 0.2404 +vt 0.7358 0.2404 +vt 0.7358 0.2473 +vt 0.7508 0.2473 +vt 0.7508 0.2404 +vt 0.7658 0.2473 +vt 0.7658 0.2404 +vt 0.7808 0.2473 +vt 0.7808 0.2404 +vt 0.7957 0.2473 +vt 0.7957 0.2404 +vt 0.8107 0.2473 +vt 0.8107 0.2404 +vt 0.8257 0.2404 +vt 0.8257 0.2473 +vt 0.8407 0.2474 +vt 0.8407 0.2405 +vt 0.8557 0.2474 +vt 0.8557 0.2405 +vt 0.8707 0.2475 +vt 0.8708 0.2405 +vt 0.8858 0.2406 +vt 0.8858 0.2475 +vt 0.9009 0.2406 +vt 0.9008 0.2475 +vt 0.9158 0.2475 +vt 0.9159 0.2406 +vt 0.9309 0.2406 +vt 0.9309 0.2475 +vt 0.9459 0.2406 +vt 0.9460 0.2475 +vt 0.9612 0.2475 +vt 0.9610 0.2406 +vt 0.9759 0.2405 +vt 0.9764 0.2474 +vt 0.9918 0.2472 +vt 0.9907 0.2403 +vt 0.5098 0.2471 +vt 0.5108 0.2402 +vt 0.5256 0.2404 +vt 0.5251 0.2474 +vt 0.5405 0.2475 +vt 0.5407 0.2405 +vt 0.5558 0.2406 +vt 0.5558 0.2475 +vt 0.5709 0.2405 +vt 0.5709 0.2475 +vt 0.5859 0.2405 +vt 0.5859 0.2474 +vt 0.6008 0.2405 +vt 0.6009 0.2474 +vt 0.6158 0.2405 +vt 0.6159 0.2474 +vt 0.6308 0.2404 +vt 0.6308 0.2473 +vt 0.6608 0.2474 +vt 0.6458 0.2473 +vt 0.6458 0.2404 +vt 0.6608 0.2404 +vt 0.6908 0.2473 +vt 0.6758 0.2473 +vt 0.6758 0.2404 +vt 0.6908 0.2404 +vt 0.7058 0.2473 +vt 0.7058 0.2404 +vt 0.8868 0.0171 +vt 0.8719 0.0171 +vt 0.8719 0.0102 +vt 0.8570 0.0171 +vt 0.8570 0.0103 +vt 0.8868 0.0102 +vt 0.9018 0.0102 +vt 0.9017 0.0171 +vt 0.8421 0.0171 +vt 0.8272 0.0171 +vt 0.8421 0.0103 +vt 0.9168 0.0102 +vt 0.9167 0.0171 +vt 0.8272 0.0102 +vt 0.9317 0.0102 +vt 0.9316 0.0172 +vt 0.8123 0.0102 +vt 0.8123 0.0171 +vt 0.8409 0.2879 +vt 0.8409 0.2727 +vt 0.8561 0.2727 +vt 0.8561 0.2879 +vt 0.8864 0.2879 +vt 0.8864 0.2727 +vt 0.9015 0.2727 +vt 0.9015 0.2879 +vt 0.9467 0.0103 +vt 0.9465 0.0172 +vt 0.8258 0.2879 +vt 0.8258 0.2727 +vt 0.7974 0.0101 +vt 0.7973 0.0170 +vt 0.9167 0.2727 +vt 0.9167 0.2879 +vt 0.9617 0.0104 +vt 0.9614 0.0173 +vt 0.8106 0.2879 +vt 0.8106 0.2727 +vt 0.7825 0.0101 +vt 0.7824 0.0170 +vt 0.7955 0.2879 +vt 0.7955 0.2727 +vt 0.9768 0.0105 +vt 0.9761 0.0174 +vt 0.7652 0.2879 +vt 0.7652 0.2727 +vt 0.7803 0.2727 +vt 0.7803 0.2879 +vt 0.7675 0.0100 +vt 0.7674 0.0169 +vt 0.9318 0.2727 +vt 0.9318 0.2879 +vt 0.9918 0.0109 +vt 0.9906 0.0176 +vt 0.7500 0.2879 +vt 0.7500 0.2727 +vt 0.7526 0.0100 +vt 0.7525 0.0169 +vt 0.9470 0.2727 +vt 0.9470 0.2879 +vt 0.5261 0.0090 +vt 0.5264 0.0161 +vt 0.5113 0.0163 +vt 0.5105 0.0093 +vt 0.7652 0.2727 +vt 0.7652 0.2879 +vt 0.7348 0.2879 +vt 0.7348 0.2727 +vt 0.6022 0.0162 +vt 0.5871 0.0162 +vt 0.7376 0.0099 +vt 0.7375 0.0169 +vt 0.9621 0.2727 +vt 0.9621 0.2879 +vt 0.5416 0.0090 +vt 0.5417 0.0161 +vt 0.7197 0.2879 +vt 0.7197 0.2727 +vt 0.7226 0.0099 +vt 0.7225 0.0168 +vt 0.9773 0.2727 +vt 0.9773 0.2879 +vt 0.5570 0.0090 +vt 0.5569 0.0161 +vt 0.7045 0.2879 +vt 0.7045 0.2727 +vt 0.7077 0.0098 +vt 0.7076 0.0168 +vt 0.5076 0.2879 +vt 0.5076 0.2727 +vt 0.5227 0.2727 +vt 0.5227 0.2879 +vt 0.5722 0.0092 +vt 0.5720 0.0161 +vt 0.9924 0.2727 +vt 0.9924 0.2879 +vt 0.6927 0.0098 +vt 0.6926 0.0167 +vt 0.5379 0.2727 +vt 0.5379 0.2879 +vt 0.8712 0.2727 +vt 0.8712 0.2879 +vt 0.5873 0.0092 +vt 0.6894 0.2879 +vt 0.6894 0.2727 +vt 0.6625 0.0166 +vt 0.6776 0.0166 +vt 0.6777 0.0097 +vt 0.5530 0.2727 +vt 0.5530 0.2879 +vt 0.6024 0.0093 +vt 0.6742 0.2879 +vt 0.6742 0.2727 +vt 0.6627 0.0096 +vt 0.5682 0.2727 +vt 0.5682 0.2879 +vt 0.6175 0.0094 +vt 0.6174 0.0163 +vt 0.6591 0.2879 +vt 0.6591 0.2727 +vt 0.6477 0.0095 +vt 0.6475 0.0165 +vt 0.5833 0.2727 +vt 0.5833 0.2879 +vt 0.6326 0.0094 +vt 0.6325 0.0164 +vt 0.6439 0.2879 +vt 0.6439 0.2727 +vt 0.6288 0.2879 +vt 0.6288 0.2727 +vt 0.5985 0.2727 +vt 0.5985 0.2879 +vt 0.6136 0.2879 +vt 0.6136 0.2727 +vt 0.8409 0.3258 +vt 0.8409 0.3182 +vt 0.8485 0.3182 +vt 0.8485 0.3258 +vt 0.8333 0.3258 +vt 0.8333 0.3182 +vt 0.8561 0.3182 +vt 0.8561 0.3258 +vt 0.8636 0.3182 +vt 0.8636 0.3258 +vt 0.8182 0.3258 +vt 0.8182 0.3182 +vt 0.8258 0.3182 +vt 0.8258 0.3258 +vt 0.8409 0.3258 +vt 0.8409 0.3182 +vt 0.8485 0.3182 +vt 0.8485 0.3258 +vt 0.8333 0.3258 +vt 0.8333 0.3182 +vt 0.8561 0.3182 +vt 0.8561 0.3258 +vt 0.8636 0.3182 +vt 0.8636 0.3258 +vt 0.8182 0.3258 +vt 0.8182 0.3182 +vt 0.8258 0.3182 +vt 0.8258 0.3258 +vt 0.8409 0.3258 +vt 0.8409 0.3182 +vt 0.8485 0.3182 +vt 0.8485 0.3258 +vt 0.8333 0.3258 +vt 0.8333 0.3182 +vt 0.8561 0.3182 +vt 0.8561 0.3258 +vt 0.8636 0.3182 +vt 0.8636 0.3258 +vt 0.8182 0.3258 +vt 0.8182 0.3182 +vt 0.8258 0.3182 +vt 0.8258 0.3258 +vt 0.8409 0.3258 +vt 0.8409 0.3182 +vt 0.8485 0.3182 +vt 0.8485 0.3258 +vt 0.8333 0.3258 +vt 0.8333 0.3182 +vt 0.8561 0.3182 +vt 0.8561 0.3258 +vt 0.8636 0.3182 +vt 0.8636 0.3258 +vt 0.8182 0.3258 +vt 0.8182 0.3182 +vt 0.8258 0.3182 +vt 0.8258 0.3258 +vt 0.8409 0.3258 +vt 0.8409 0.3182 +vt 0.8485 0.3182 +vt 0.8485 0.3258 +vt 0.8333 0.3258 +vt 0.8333 0.3182 +vt 0.8561 0.3182 +vt 0.8561 0.3258 +vt 0.8636 0.3182 +vt 0.8636 0.3258 +vt 0.8182 0.3258 +vt 0.8182 0.3182 +vt 0.8258 0.3182 +vt 0.8258 0.3258 +vt 0.8409 0.3258 +vt 0.8409 0.3182 +vt 0.8485 0.3182 +vt 0.8485 0.3258 +vt 0.8333 0.3258 +vt 0.8333 0.3182 +vt 0.8561 0.3182 +vt 0.8561 0.3258 +vt 0.8636 0.3182 +vt 0.8636 0.3258 +vt 0.8182 0.3258 +vt 0.8182 0.3182 +vt 0.8258 0.3182 +vt 0.8258 0.3258 +vt 0.8409 0.3258 +vt 0.8409 0.3182 +vt 0.8485 0.3182 +vt 0.8485 0.3258 +vt 0.8333 0.3258 +vt 0.8333 0.3182 +vt 0.8561 0.3182 +vt 0.8561 0.3258 +vt 0.8636 0.3182 +vt 0.8636 0.3258 +vt 0.8182 0.3258 +vt 0.8182 0.3182 +vt 0.8258 0.3182 +vt 0.8258 0.3258 +vt 0.8409 0.3258 +vt 0.8409 0.3182 +vt 0.8485 0.3182 +vt 0.8485 0.3258 +vt 0.8333 0.3258 +vt 0.8333 0.3182 +vt 0.8561 0.3182 +vt 0.8561 0.3258 +vt 0.8636 0.3182 +vt 0.8636 0.3258 +vt 0.8182 0.3258 +vt 0.8182 0.3182 +vt 0.8258 0.3182 +vt 0.8258 0.3258 +vt 0.8409 0.3258 +vt 0.8409 0.3182 +vt 0.8485 0.3182 +vt 0.8485 0.3258 +vt 0.8333 0.3258 +vt 0.8333 0.3182 +vt 0.8561 0.3182 +vt 0.8561 0.3258 +vt 0.8636 0.3182 +vt 0.8636 0.3258 +vt 0.8182 0.3258 +vt 0.8182 0.3182 +vt 0.8258 0.3182 +vt 0.8258 0.3258 +vt 0.8409 0.3258 +vt 0.8409 0.3182 +vt 0.8485 0.3182 +vt 0.8485 0.3258 +vt 0.8333 0.3258 +vt 0.8333 0.3182 +vt 0.8561 0.3182 +vt 0.8561 0.3258 +vt 0.8636 0.3182 +vt 0.8636 0.3258 +vt 0.8182 0.3258 +vt 0.8182 0.3182 +vt 0.8258 0.3182 +vt 0.8258 0.3258 +vt 0.8409 0.3258 +vt 0.8409 0.3182 +vt 0.8485 0.3182 +vt 0.8485 0.3258 +vt 0.8333 0.3258 +vt 0.8333 0.3182 +vt 0.8561 0.3182 +vt 0.8561 0.3258 +vt 0.8636 0.3182 +vt 0.8636 0.3258 +vt 0.8182 0.3258 +vt 0.8182 0.3182 +vt 0.8258 0.3182 +vt 0.8258 0.3258 +vt 0.8409 0.3258 +vt 0.8409 0.3182 +vt 0.8485 0.3182 +vt 0.8485 0.3258 +vt 0.8333 0.3258 +vt 0.8333 0.3182 +vt 0.8561 0.3182 +vt 0.8561 0.3258 +vt 0.8636 0.3182 +vt 0.8636 0.3258 +vt 0.8182 0.3258 +vt 0.8182 0.3182 +vt 0.8258 0.3182 +vt 0.8258 0.3258 +vt 0.8409 0.3258 +vt 0.8409 0.3182 +vt 0.8485 0.3182 +vt 0.8485 0.3258 +vt 0.8333 0.3258 +vt 0.8333 0.3182 +vt 0.8561 0.3182 +vt 0.8561 0.3258 +vt 0.8636 0.3182 +vt 0.8636 0.3258 +vt 0.8182 0.3258 +vt 0.8182 0.3182 +vt 0.8258 0.3182 +vt 0.8258 0.3258 +vt 0.8409 0.3258 +vt 0.8409 0.3182 +vt 0.8485 0.3182 +vt 0.8485 0.3258 +vt 0.8333 0.3258 +vt 0.8333 0.3182 +vt 0.8561 0.3182 +vt 0.8561 0.3258 +vt 0.8636 0.3182 +vt 0.8636 0.3258 +vt 0.8182 0.3258 +vt 0.8182 0.3182 +vt 0.8258 0.3182 +vt 0.8258 0.3258 +vt 0.8409 0.3258 +vt 0.8409 0.3182 +vt 0.8485 0.3182 +vt 0.8485 0.3258 +vt 0.8333 0.3258 +vt 0.8333 0.3182 +vt 0.8561 0.3182 +vt 0.8561 0.3258 +vt 0.8636 0.3182 +vt 0.8636 0.3258 +vt 0.8182 0.3258 +vt 0.8182 0.3182 +vt 0.8258 0.3182 +vt 0.8258 0.3258 +vt 0.8409 0.3258 +vt 0.8409 0.3182 +vt 0.8485 0.3182 +vt 0.8485 0.3258 +vt 0.8333 0.3258 +vt 0.8333 0.3182 +vt 0.8561 0.3182 +vt 0.8561 0.3258 +vt 0.8636 0.3182 +vt 0.8636 0.3258 +vt 0.8182 0.3258 +vt 0.8182 0.3182 +vt 0.8258 0.3182 +vt 0.8258 0.3258 +vt 0.8409 0.3258 +vt 0.8409 0.3182 +vt 0.8485 0.3182 +vt 0.8485 0.3258 +vt 0.8333 0.3258 +vt 0.8333 0.3182 +vt 0.8561 0.3182 +vt 0.8561 0.3258 +vt 0.8636 0.3182 +vt 0.8636 0.3258 +vt 0.8182 0.3258 +vt 0.8182 0.3182 +vt 0.8258 0.3182 +vt 0.8258 0.3258 +vt 0.8409 0.3258 +vt 0.8409 0.3182 +vt 0.8485 0.3182 +vt 0.8485 0.3258 +vt 0.8333 0.3258 +vt 0.8333 0.3182 +vt 0.8561 0.3182 +vt 0.8561 0.3258 +vt 0.8636 0.3182 +vt 0.8636 0.3258 +vt 0.8182 0.3258 +vt 0.8182 0.3182 +vt 0.8258 0.3182 +vt 0.8258 0.3258 +vt 0.8409 0.3258 +vt 0.8409 0.3182 +vt 0.8485 0.3182 +vt 0.8485 0.3258 +vt 0.8333 0.3258 +vt 0.8333 0.3182 +vt 0.8561 0.3182 +vt 0.8561 0.3258 +vt 0.8636 0.3182 +vt 0.8636 0.3258 +vt 0.8182 0.3258 +vt 0.8182 0.3182 +vt 0.8258 0.3182 +vt 0.8258 0.3258 +vt 0.8409 0.3258 +vt 0.8409 0.3182 +vt 0.8485 0.3182 +vt 0.8485 0.3258 +vt 0.8333 0.3258 +vt 0.8333 0.3182 +vt 0.8561 0.3182 +vt 0.8561 0.3258 +vt 0.8636 0.3182 +vt 0.8636 0.3258 +vt 0.8182 0.3258 +vt 0.8182 0.3182 +vt 0.8258 0.3182 +vt 0.8258 0.3258 +vt 0.8409 0.3258 +vt 0.8409 0.3182 +vt 0.8485 0.3182 +vt 0.8485 0.3258 +vt 0.8333 0.3258 +vt 0.8333 0.3182 +vt 0.8561 0.3182 +vt 0.8561 0.3258 +vt 0.8636 0.3182 +vt 0.8636 0.3258 +vt 0.8182 0.3258 +vt 0.8182 0.3182 +vt 0.8258 0.3182 +vt 0.8258 0.3258 +vt 0.8409 0.3258 +vt 0.8409 0.3182 +vt 0.8485 0.3182 +vt 0.8485 0.3258 +vt 0.8333 0.3258 +vt 0.8333 0.3182 +vt 0.8561 0.3182 +vt 0.8561 0.3258 +vt 0.8636 0.3182 +vt 0.8636 0.3258 +vt 0.8182 0.3258 +vt 0.8182 0.3182 +vt 0.8258 0.3182 +vt 0.8258 0.3258 +vt 0.8409 0.3258 +vt 0.8409 0.3182 +vt 0.8485 0.3182 +vt 0.8485 0.3258 +vt 0.8333 0.3258 +vt 0.8333 0.3182 +vt 0.8561 0.3182 +vt 0.8561 0.3258 +vt 0.8636 0.3182 +vt 0.8636 0.3258 +vt 0.8182 0.3258 +vt 0.8182 0.3182 +vt 0.8258 0.3182 +vt 0.8258 0.3258 +vt 0.8409 0.3258 +vt 0.8409 0.3182 +vt 0.8485 0.3182 +vt 0.8485 0.3258 +vt 0.8333 0.3258 +vt 0.8333 0.3182 +vt 0.8561 0.3182 +vt 0.8561 0.3258 +vt 0.8636 0.3182 +vt 0.8636 0.3258 +vt 0.8182 0.3258 +vt 0.8182 0.3182 +vt 0.8258 0.3182 +vt 0.8258 0.3258 +vt 0.8409 0.3258 +vt 0.8409 0.3182 +vt 0.8485 0.3182 +vt 0.8485 0.3258 +vt 0.8333 0.3258 +vt 0.8333 0.3182 +vt 0.8561 0.3182 +vt 0.8561 0.3258 +vt 0.8636 0.3182 +vt 0.8636 0.3258 +vt 0.8182 0.3258 +vt 0.8182 0.3182 +vt 0.8258 0.3182 +vt 0.8258 0.3258 +vt 0.8409 0.3258 +vt 0.8409 0.3182 +vt 0.8485 0.3182 +vt 0.8485 0.3258 +vt 0.8333 0.3258 +vt 0.8333 0.3182 +vt 0.8561 0.3182 +vt 0.8561 0.3258 +vt 0.8636 0.3182 +vt 0.8636 0.3258 +vt 0.8182 0.3258 +vt 0.8182 0.3182 +vt 0.8258 0.3182 +vt 0.8258 0.3258 +vt 0.8409 0.3258 +vt 0.8409 0.3182 +vt 0.8485 0.3182 +vt 0.8485 0.3258 +vt 0.8333 0.3258 +vt 0.8333 0.3182 +vt 0.8561 0.3182 +vt 0.8561 0.3258 +vt 0.8636 0.3182 +vt 0.8636 0.3258 +vt 0.8182 0.3258 +vt 0.8182 0.3182 +vt 0.8258 0.3182 +vt 0.8258 0.3258 +vt 0.8409 0.3258 +vt 0.8409 0.3182 +vt 0.8485 0.3182 +vt 0.8485 0.3258 +vt 0.8333 0.3258 +vt 0.8333 0.3182 +vt 0.8561 0.3182 +vt 0.8561 0.3258 +vt 0.8636 0.3182 +vt 0.8636 0.3258 +vt 0.8182 0.3258 +vt 0.8182 0.3182 +vt 0.8258 0.3182 +vt 0.8258 0.3258 +vt 0.8409 0.3258 +vt 0.8409 0.3182 +vt 0.8485 0.3182 +vt 0.8485 0.3258 +vt 0.8333 0.3258 +vt 0.8333 0.3182 +vt 0.8561 0.3182 +vt 0.8561 0.3258 +vt 0.8636 0.3182 +vt 0.8636 0.3258 +vt 0.8182 0.3258 +vt 0.8182 0.3182 +vt 0.8258 0.3182 +vt 0.8258 0.3258 +vt 0.8409 0.3258 +vt 0.8409 0.3182 +vt 0.8485 0.3182 +vt 0.8485 0.3258 +vt 0.8333 0.3258 +vt 0.8333 0.3182 +vt 0.8561 0.3182 +vt 0.8561 0.3258 +vt 0.8636 0.3182 +vt 0.8636 0.3258 +vt 0.8182 0.3258 +vt 0.8182 0.3182 +vt 0.8258 0.3182 +vt 0.8258 0.3258 +vt 0.8409 0.3258 +vt 0.8409 0.3182 +vt 0.8485 0.3182 +vt 0.8485 0.3258 +vt 0.8333 0.3258 +vt 0.8333 0.3182 +vt 0.8561 0.3182 +vt 0.8561 0.3258 +vt 0.8636 0.3182 +vt 0.8636 0.3258 +vt 0.8182 0.3258 +vt 0.8182 0.3182 +vt 0.8258 0.3182 +vt 0.8258 0.3258 +vt 0.8409 0.3258 +vt 0.8409 0.3182 +vt 0.8485 0.3182 +vt 0.8485 0.3258 +vt 0.8333 0.3258 +vt 0.8333 0.3182 +vt 0.8561 0.3182 +vt 0.8561 0.3258 +vt 0.8636 0.3182 +vt 0.8636 0.3258 +vt 0.8182 0.3258 +vt 0.8182 0.3182 +vt 0.8258 0.3182 +vt 0.8258 0.3258 +vn 0.0000 -1.0000 0.0000 +vn -0.0000 0.0000 1.0000 +vn 0.0000 1.0000 0.0000 +vn 1.0000 0.0000 0.0000 +vn -1.0000 0.0000 0.0000 +vn -0.0000 0.0000 -1.0000 +vn -0.7071 0.0000 -0.7071 +vn 0.0000 0.7071 -0.7071 +vn 0.7071 0.0000 -0.7071 +vn 0.0000 -0.7071 -0.7071 +vn 0.7071 0.0000 0.7071 +vn -0.0000 0.7071 0.7071 +vn -0.7071 0.0000 0.7071 +vn -0.0000 -0.7071 0.7071 +vn -0.6965 0.2113 -0.6857 +vn -0.6965 0.2113 0.6857 +vn -0.6419 0.3431 0.6857 +vn -0.6419 0.3431 -0.6857 +vn -0.7244 0.0713 -0.6857 +vn -0.7244 0.0713 0.6857 +vn -0.7244 -0.0713 -0.6857 +vn -0.7244 -0.0713 0.6857 +vn -0.6965 -0.2113 -0.6857 +vn -0.6965 -0.2113 0.6857 +vn -0.6419 -0.3431 -0.6857 +vn -0.6419 -0.3431 0.6857 +vn -0.5626 -0.4617 -0.6857 +vn -0.5626 -0.4617 0.6857 +vn -0.4617 -0.5626 -0.6857 +vn -0.4617 -0.5626 0.6857 +vn -0.3431 -0.6419 -0.6857 +vn -0.3431 -0.6419 0.6857 +vn -0.2113 -0.6965 -0.6857 +vn -0.2113 -0.6965 0.6857 +vn -0.0713 -0.7244 -0.6857 +vn -0.0713 -0.7244 0.6857 +vn 0.0713 -0.7244 -0.6857 +vn 0.0713 -0.7244 0.6857 +vn 0.2113 -0.6965 -0.6857 +vn 0.2113 -0.6965 0.6857 +vn 0.3431 -0.6419 -0.6857 +vn 0.3431 -0.6419 0.6857 +vn 0.4617 -0.5626 -0.6857 +vn 0.4617 -0.5626 0.6857 +vn 0.5626 -0.4617 -0.6857 +vn 0.5626 -0.4617 0.6857 +vn 0.6419 -0.3431 -0.6857 +vn 0.6419 -0.3431 0.6857 +vn 0.6965 -0.2113 -0.6857 +vn 0.6965 -0.2113 0.6857 +vn 0.7244 -0.0713 -0.6857 +vn 0.7244 -0.0713 0.6857 +vn 0.7244 0.0713 -0.6857 +vn 0.7244 0.0713 0.6857 +vn 0.6965 0.2113 -0.6857 +vn 0.6965 0.2113 0.6857 +vn 0.5626 0.4617 -0.6857 +vn 0.5626 0.4617 0.6857 +vn 0.6419 0.3431 0.6857 +vn 0.6419 0.3431 -0.6857 +vn 0.4617 0.5626 -0.6857 +vn 0.4617 0.5626 0.6857 +vn 0.3431 0.6419 -0.6857 +vn 0.3431 0.6419 0.6857 +vn 0.2113 0.6965 -0.6857 +vn 0.2113 0.6965 0.6857 +vn 0.0713 0.7244 -0.6857 +vn 0.0713 0.7244 0.6857 +vn -0.2113 0.6965 -0.6857 +vn -0.2113 0.6965 0.6857 +vn -0.0713 0.7244 0.6857 +vn -0.0713 0.7244 -0.6857 +vn -0.3431 0.6419 -0.6857 +vn -0.3431 0.6419 0.6857 +vn -0.4617 0.5626 -0.6857 +vn -0.4617 0.5626 0.6857 +vn 0.4604 0.8614 -0.2147 +vn 0.4686 0.8767 -0.1087 +vn 0.2886 0.9513 -0.1087 +vn 0.2835 0.9346 -0.2147 +vn 0.0957 0.9720 -0.2147 +vn 0.0974 0.9893 -0.1087 +vn -0.0957 0.9720 -0.2147 +vn -0.0974 0.9893 -0.1087 +vn -0.2835 0.9346 -0.2147 +vn -0.2886 0.9513 -0.1087 +vn -0.4604 0.8614 -0.2147 +vn -0.4686 0.8767 -0.1087 +vn -0.6196 0.7550 -0.2147 +vn -0.6306 0.7684 -0.1087 +vn -0.7684 0.6306 -0.1087 +vn -0.7550 0.6196 -0.2147 +vn -0.8614 0.4604 -0.2147 +vn -0.8767 0.4686 -0.1087 +vn -0.9346 0.2835 -0.2147 +vn -0.9513 0.2886 -0.1087 +vn -0.9720 0.0957 -0.2147 +vn -0.9893 0.0974 -0.1087 +vn -0.9893 -0.0974 -0.1087 +vn -0.9720 -0.0957 -0.2147 +vn -0.9513 -0.2886 -0.1087 +vn -0.9346 -0.2835 -0.2147 +vn -0.8614 -0.4604 -0.2147 +vn -0.8767 -0.4686 -0.1087 +vn -0.7684 -0.6306 -0.1087 +vn -0.7550 -0.6196 -0.2147 +vn -0.6306 -0.7684 -0.1087 +vn -0.6196 -0.7550 -0.2147 +vn -0.4604 -0.8614 -0.2147 +vn -0.4686 -0.8767 -0.1087 +vn -0.2886 -0.9513 -0.1087 +vn -0.2835 -0.9346 -0.2147 +vn -0.0957 -0.9720 -0.2147 +vn -0.0974 -0.9893 -0.1087 +vn 0.0974 -0.9893 -0.1087 +vn 0.0957 -0.9720 -0.2147 +vn 0.2835 -0.9346 -0.2147 +vn 0.2886 -0.9513 -0.1087 +vn 0.4686 -0.8767 -0.1087 +vn 0.4604 -0.8614 -0.2147 +vn 0.6306 -0.7684 -0.1087 +vn 0.6196 -0.7550 -0.2147 +vn 0.7684 -0.6306 -0.1087 +vn 0.7550 -0.6196 -0.2147 +vn 0.8767 -0.4686 -0.1087 +vn 0.8614 -0.4604 -0.2147 +vn 0.9513 -0.2886 -0.1087 +vn 0.9346 -0.2835 -0.2147 +vn 0.9893 -0.0974 -0.1087 +vn 0.9720 -0.0957 -0.2147 +vn 0.9346 0.2835 -0.2147 +vn 0.9720 0.0957 -0.2147 +vn 0.9893 0.0974 -0.1087 +vn 0.9513 0.2886 -0.1087 +vn 0.7550 0.6196 -0.2147 +vn 0.8614 0.4604 -0.2147 +vn 0.8767 0.4686 -0.1087 +vn 0.7684 0.6306 -0.1087 +vn 0.6196 0.7550 -0.2147 +vn 0.6306 0.7684 -0.1087 +vn -0.9893 -0.0974 0.1087 +vn -0.9893 0.0974 0.1087 +vn -0.9720 0.0957 0.2147 +vn -0.9513 0.2886 0.1087 +vn -0.9346 0.2835 0.2147 +vn -0.9720 -0.0957 0.2147 +vn -0.9346 -0.2835 0.2147 +vn -0.9513 -0.2886 0.1087 +vn -0.8767 0.4686 0.1087 +vn -0.7684 0.6306 0.1087 +vn -0.8614 0.4604 0.2147 +vn -0.8614 -0.4604 0.2147 +vn -0.8767 -0.4686 0.1087 +vn -0.7550 0.6196 0.2147 +vn -0.7550 -0.6196 0.2147 +vn -0.7684 -0.6306 0.1087 +vn -0.6196 0.7550 0.2147 +vn -0.6306 0.7684 0.1087 +vn -0.6196 -0.7550 0.2147 +vn -0.6306 -0.7684 0.1087 +vn -0.4604 0.8614 0.2147 +vn -0.4686 0.8767 0.1087 +vn -0.4604 -0.8614 0.2147 +vn -0.4686 -0.8767 0.1087 +vn -0.2835 0.9346 0.2147 +vn -0.2886 0.9513 0.1087 +vn -0.2835 -0.9346 0.2147 +vn -0.2886 -0.9513 0.1087 +vn -0.0957 0.9720 0.2147 +vn -0.0974 0.9893 0.1087 +vn -0.0957 -0.9720 0.2147 +vn -0.0974 -0.9893 0.1087 +vn 0.0957 0.9720 0.2147 +vn 0.0974 0.9893 0.1087 +vn 0.0957 -0.9720 0.2147 +vn 0.0974 -0.9893 0.1087 +vn -0.5626 0.4617 0.6857 +vn -0.5626 0.4617 -0.6857 +vn 0.8767 -0.4686 0.1087 +vn 0.7684 -0.6306 0.1087 +vn 0.2835 0.9346 0.2147 +vn 0.2886 0.9513 0.1087 +vn 0.2835 -0.9346 0.2147 +vn 0.2886 -0.9513 0.1087 +vn 0.4604 0.8614 0.2147 +vn 0.4686 0.8767 0.1087 +vn 0.4604 -0.8614 0.2147 +vn 0.4686 -0.8767 0.1087 +vn 0.6196 0.7550 0.2147 +vn 0.6306 0.7684 0.1087 +vn 0.6196 -0.7550 0.2147 +vn 0.6306 -0.7684 0.1087 +vn 0.7550 0.6196 0.2147 +vn 0.7684 0.6306 0.1087 +vn 0.7550 -0.6196 0.2147 +vn 0.9513 0.2886 0.1087 +vn 0.8767 0.4686 0.1087 +vn 0.8614 0.4604 0.2147 +vn 0.8614 -0.4604 0.2147 +vn 0.9346 0.2835 0.2147 +vn 0.9346 -0.2835 0.2147 +vn 0.9513 -0.2886 0.1087 +vn 0.9720 0.0957 0.2147 +vn 0.9893 0.0974 0.1087 +vn 0.9720 -0.0957 0.2147 +vn 0.9893 -0.0974 0.1087 +vn 0.7321 -0.3032 0.6100 +vn 0.9239 -0.3827 0.0000 +vn 0.7933 0.6088 0.0000 +vn 0.6287 0.4824 0.6100 +vn 0.1034 -0.7856 0.6100 +vn 0.1305 -0.9914 0.0000 +vn -0.1305 0.9914 0.0000 +vn -0.1034 0.7856 0.6100 +vn -0.9239 0.3827 0.0000 +vn -0.7321 0.3032 0.6100 +vn -0.7933 -0.6088 0.0000 +vn -0.6287 -0.4824 0.6100 +vn -0.7321 0.3032 -0.6100 +vn -0.1034 0.7856 -0.6100 +vn -0.6287 -0.4824 -0.6100 +vn 0.6287 0.4824 -0.6100 +vn 0.7321 -0.3032 -0.6100 +vn 0.1034 -0.7856 -0.6100 +vn 0.3032 -0.7321 0.6100 +vn 0.3827 -0.9239 0.0000 +vn 0.9914 -0.1305 0.0000 +vn 0.7856 -0.1034 0.6100 +vn -0.4824 -0.6287 0.6100 +vn -0.6088 -0.7933 0.0000 +vn 0.6088 0.7933 0.0000 +vn 0.4824 0.6287 0.6100 +vn -0.3827 0.9239 0.0000 +vn -0.3032 0.7321 0.6100 +vn -0.9914 0.1305 0.0000 +vn -0.7856 0.1034 0.6100 +vn -0.3032 0.7321 -0.6100 +vn 0.4824 0.6287 -0.6100 +vn -0.7856 0.1034 -0.6100 +vn 0.7856 -0.1034 -0.6100 +vn 0.3032 -0.7321 -0.6100 +vn -0.4824 -0.6287 -0.6100 +vn -0.3032 -0.7321 0.6100 +vn -0.3827 -0.9239 0.0000 +vn 0.6088 -0.7933 0.0000 +vn 0.4824 -0.6287 0.6100 +vn -0.7856 -0.1034 0.6100 +vn -0.9914 -0.1305 0.0000 +vn 0.9914 0.1305 0.0000 +vn 0.7856 0.1034 0.6100 +vn 0.3827 0.9239 0.0000 +vn 0.3032 0.7321 0.6100 +vn -0.6088 0.7933 0.0000 +vn -0.4824 0.6287 0.6100 +vn 0.3032 0.7321 -0.6100 +vn 0.7856 0.1034 -0.6100 +vn -0.4824 0.6287 -0.6100 +vn 0.4824 -0.6287 -0.6100 +vn -0.3032 -0.7321 -0.6100 +vn -0.7856 -0.1034 -0.6100 +vn -0.7321 -0.3032 0.6100 +vn -0.9239 -0.3827 0.0000 +vn -0.1305 -0.9914 0.0000 +vn -0.1034 -0.7856 0.6100 +vn -0.6287 0.4824 0.6100 +vn -0.7933 0.6088 0.0000 +vn 0.7933 -0.6088 0.0000 +vn 0.6287 -0.4824 0.6100 +vn 0.9239 0.3827 0.0000 +vn 0.7321 0.3032 0.6100 +vn 0.1305 0.9914 0.0000 +vn 0.1034 0.7856 0.6100 +vn 0.7321 0.3032 -0.6100 +vn 0.6287 -0.4824 -0.6100 +vn 0.1034 0.7856 -0.6100 +vn -0.1034 -0.7856 -0.6100 +vn -0.7321 -0.3032 -0.6100 +vn -0.6287 0.4824 -0.6100 +vn 0.5603 -0.5603 0.6100 +vn 0.7071 -0.7071 0.0000 +vn 0.9659 0.2588 0.0000 +vn 0.7654 0.2051 0.6100 +vn -0.2051 -0.7654 0.6100 +vn -0.2588 -0.9659 0.0000 +vn 0.2588 0.9659 0.0000 +vn 0.2051 0.7654 0.6100 +vn -0.7071 0.7071 0.0000 +vn -0.5603 0.5603 0.6100 +vn -0.9659 -0.2588 0.0000 +vn -0.7654 -0.2051 0.6100 +vn -0.5603 0.5603 -0.6100 +vn 0.2051 0.7654 -0.6100 +vn -0.7654 -0.2051 -0.6100 +vn 0.7654 0.2051 -0.6100 +vn 0.5603 -0.5603 -0.6100 +vn -0.2051 -0.7654 -0.6100 +vn 0.0000 -0.7924 0.6100 +vn 0.8660 -0.5000 0.0000 +vn 0.6862 -0.3962 0.6100 +vn -0.6862 -0.3962 0.6100 +vn -0.8660 -0.5000 0.0000 +vn 0.8660 0.5000 0.0000 +vn 0.6862 0.3962 0.6100 +vn 0.0000 0.7924 0.6100 +vn -0.8660 0.5000 0.0000 +vn -0.6862 0.3962 0.6100 +vn 0.0000 0.7924 -0.6100 +vn 0.6862 0.3962 -0.6100 +vn -0.6862 0.3962 -0.6100 +vn 0.6862 -0.3962 -0.6100 +vn 0.0000 -0.7924 -0.6100 +vn -0.6862 -0.3962 -0.6100 +vn -0.5603 -0.5603 0.6100 +vn -0.7071 -0.7071 0.0000 +vn 0.2588 -0.9659 0.0000 +vn 0.2051 -0.7654 0.6100 +vn -0.7654 0.2051 0.6100 +vn -0.9659 0.2588 0.0000 +vn 0.9659 -0.2588 0.0000 +vn 0.7654 -0.2051 0.6100 +vn 0.7071 0.7071 0.0000 +vn 0.5603 0.5603 0.6100 +vn -0.2588 0.9659 0.0000 +vn -0.2051 0.7654 0.6100 +vn 0.5603 0.5603 -0.6100 +vn 0.7654 -0.2051 -0.6100 +vn -0.2051 0.7654 -0.6100 +vn 0.2051 -0.7654 -0.6100 +vn -0.5603 -0.5603 -0.6100 +vn -0.7654 0.2051 -0.6100 +vn -0.7924 0.0000 0.6100 +vn -0.5000 -0.8660 0.0000 +vn -0.3962 -0.6862 0.6100 +vn -0.3962 0.6862 0.6100 +vn -0.5000 0.8660 0.0000 +vn 0.5000 -0.8660 0.0000 +vn 0.3962 -0.6862 0.6100 +vn 0.7924 0.0000 0.6100 +vn 0.5000 0.8660 0.0000 +vn 0.3962 0.6862 0.6100 +vn 0.7924 0.0000 -0.6100 +vn 0.3962 -0.6862 -0.6100 +vn 0.3962 0.6862 -0.6100 +vn -0.3962 -0.6862 -0.6100 +vn -0.7924 0.0000 -0.6100 +vn -0.3962 0.6862 -0.6100 +g Cube.001_Cube.001_None +s off +f 642/1/1 643/2/1 646/3/1 647/4/1 +f 653/5/2 656/6/2 648/7/2 645/8/2 +f 655/9/3 654/10/3 651/11/3 649/12/3 +f 651/13/4 654/14/4 646/15/4 643/16/4 +f 655/17/5 649/18/5 642/19/5 647/20/5 +f 129/21/2 132/22/2 133/23/2 134/24/2 135/25/2 136/26/2 +f 141/27/6 144/28/6 145/29/6 146/30/6 147/31/6 148/32/6 +f 153/33/2 156/34/2 157/35/2 158/36/2 159/37/2 160/38/2 +f 165/39/6 168/40/6 169/41/6 170/42/6 171/43/6 172/44/6 +f 177/45/2 180/46/2 181/47/2 182/48/2 183/49/2 184/50/2 +f 189/51/6 192/52/6 193/53/6 194/54/6 195/55/6 196/56/6 +f 201/57/2 204/58/2 205/59/2 206/60/2 207/61/2 208/62/2 +f 213/63/6 216/64/6 217/65/6 218/66/6 219/67/6 220/68/6 +f 225/69/2 228/70/2 229/71/2 230/72/2 231/73/2 232/74/2 +f 237/75/6 240/76/6 241/77/6 242/78/6 243/79/6 244/80/6 +f 249/81/2 252/82/2 253/83/2 254/84/2 255/85/2 256/86/2 +f 261/87/6 264/88/6 265/89/6 266/90/6 267/91/6 268/92/6 +f 273/93/2 276/94/2 277/95/2 278/96/2 279/97/2 280/98/2 +f 285/99/6 288/100/6 289/101/6 290/102/6 291/103/6 292/104/6 +f 297/105/2 300/106/2 301/107/2 302/108/2 303/109/2 304/110/2 +f 309/111/6 312/112/6 313/113/6 314/114/6 315/115/6 316/116/6 +f 353/117/6 354/118/6 384/119/6 383/120/6 381/121/6 382/122/6 380/123/6 379/124/6 378/125/6 377/126/6 375/127/6 376/128/6 374/129/6 373/130/6 372/131/6 371/132/6 370/133/6 369/134/6 368/135/6 367/136/6 366/137/6 365/138/6 364/139/6 363/140/6 362/141/6 361/142/6 360/143/6 359/144/6 358/145/6 357/146/6 356/147/6 355/148/6 +f 332/149/2 349/150/2 333/151/2 334/152/2 335/153/2 336/154/2 337/155/2 350/156/2 338/157/2 339/158/2 340/159/2 351/160/2 341/161/2 352/162/2 342/163/2 343/164/2 344/165/2 345/166/2 346/167/2 321/168/2 322/169/2 323/170/2 324/171/2 325/172/2 326/173/2 327/174/2 328/175/2 329/176/2 347/177/2 330/178/2 348/179/2 331/180/2 +f 389/181/2 399/182/2 404/183/2 408/184/2 412/185/2 417/186/2 416/187/2 421/188/2 425/189/2 429/190/2 433/191/2 438/192/2 447/193/2 448/194/2 446/195/2 440/196/2 435/197/2 431/198/2 427/199/2 423/200/2 419/201/2 414/202/2 410/203/2 406/204/2 401/205/2 397/206/2 390/207/2 391/208/2 388/209/2 385/210/2 386/211/2 387/212/2 +f 393/213/6 392/214/6 398/215/6 403/216/6 402/217/6 407/218/6 411/219/6 415/220/6 420/221/6 424/222/6 428/223/6 432/224/6 436/225/6 441/226/6 437/227/6 443/228/6 442/229/6 444/230/6 445/231/6 439/232/6 434/233/6 430/234/6 426/235/6 422/236/6 418/237/6 413/238/6 409/239/6 405/240/6 400/241/6 396/242/6 395/243/6 394/244/6 +f 449/245/2 452/246/2 453/247/2 454/248/2 455/249/2 456/250/2 +f 461/251/6 464/252/6 465/253/6 466/254/6 467/255/6 468/256/6 +f 473/257/2 476/258/2 477/259/2 478/260/2 479/261/2 480/262/2 +f 485/263/6 488/264/6 489/265/6 490/266/6 491/267/6 492/268/6 +f 497/269/2 500/270/2 501/271/2 502/272/2 503/273/2 504/274/2 +f 509/275/6 512/276/6 513/277/6 514/278/6 515/279/6 516/280/6 +f 521/281/2 524/282/2 525/283/2 526/284/2 527/285/2 528/286/2 +f 533/287/6 536/288/6 537/289/6 538/290/6 539/291/6 540/292/6 +f 545/293/2 548/294/2 549/295/2 550/296/2 551/297/2 552/298/2 +f 557/299/6 560/300/6 561/301/6 562/302/6 563/303/6 564/304/6 +f 569/305/2 572/306/2 573/307/2 574/308/2 575/309/2 576/310/2 +f 581/311/6 584/312/6 585/313/6 586/314/6 587/315/6 588/316/6 +f 593/317/2 596/318/2 597/319/2 598/320/2 599/321/2 600/322/2 +f 605/323/6 608/324/6 609/325/6 610/326/6 611/327/6 612/328/6 +f 617/329/2 620/330/2 621/331/2 622/332/2 623/333/2 624/334/2 +f 629/335/6 632/336/6 633/337/6 634/338/6 635/339/6 636/340/6 +f 642/19/7 649/18/7 650/341/7 641/342/7 +f 649/12/8 651/11/8 652/343/8 650/344/8 +f 651/13/9 643/16/9 644/345/9 652/346/9 +f 643/2/10 642/1/10 641/347/10 644/348/10 +f 653/5/11 645/8/11 646/349/11 654/350/11 +f 654/10/12 655/9/12 656/351/12 653/352/12 +f 655/17/13 647/20/13 648/353/13 656/354/13 +f 647/4/14 646/3/14 645/355/14 648/356/14 +f 650/357/6 652/358/6 644/359/6 641/360/6 +s 1 +f 356/361/15 323/362/16 322/363/17 355/364/18 +f 357/365/19 324/366/20 323/362/16 356/361/15 +f 358/367/21 325/368/22 324/366/20 357/365/19 +f 359/369/23 326/370/24 325/368/22 358/367/21 +f 360/371/25 327/372/26 326/370/24 359/369/23 +f 361/373/27 328/374/28 327/372/26 360/371/25 +f 362/375/29 329/376/30 328/374/28 361/373/27 +f 363/377/31 347/378/32 329/376/30 362/375/29 +f 364/379/33 330/380/34 347/378/32 363/377/31 +f 365/381/35 348/382/36 330/380/34 364/379/33 +f 366/383/37 331/384/38 348/382/36 365/381/35 +f 367/385/39 332/386/40 331/384/38 366/383/37 +f 368/387/41 349/388/42 332/386/40 367/385/39 +f 369/389/43 333/390/44 349/388/42 368/387/41 +f 370/391/45 334/392/46 333/390/44 369/389/43 +f 371/393/47 335/394/48 334/392/46 370/391/45 +f 372/395/49 336/396/50 335/397/48 371/398/47 +f 373/399/51 337/400/52 336/396/50 372/395/49 +f 374/401/53 350/402/54 337/400/52 373/399/51 +f 376/403/55 338/404/56 350/402/54 374/401/53 +f 377/405/57 340/406/58 339/407/59 375/408/60 +f 375/408/60 339/407/59 338/404/56 376/403/55 +f 378/409/61 351/410/62 340/406/58 377/405/57 +f 379/411/63 341/412/64 351/410/62 378/409/61 +f 380/413/65 352/414/66 341/412/64 379/411/63 +f 382/415/67 342/416/68 352/414/66 380/413/65 +f 383/417/69 344/418/70 343/419/71 381/420/72 +f 381/420/72 343/419/71 342/416/68 382/415/67 +f 384/421/73 345/422/74 344/418/70 383/417/69 +f 354/423/75 346/424/76 345/422/74 384/421/73 +f 30/425/77 33/426/78 34/427/79 1/428/80 +f 2/429/81 1/428/80 34/427/79 35/430/82 +f 3/431/83 2/429/81 35/430/82 36/432/84 +f 4/433/85 3/431/83 36/432/84 37/434/86 +f 5/435/87 4/433/85 37/434/86 38/436/88 +f 6/437/89 5/435/87 38/436/88 39/438/90 +f 6/437/89 39/438/90 40/439/91 7/440/92 +f 8/441/93 7/440/92 40/439/91 41/442/94 +f 9/443/95 8/441/93 41/442/94 42/444/96 +f 10/445/97 9/443/95 42/444/96 43/446/98 +f 10/445/97 43/446/98 44/447/99 11/448/100 +f 11/448/100 44/447/99 45/449/101 31/450/102 +f 12/451/103 46/452/104 47/453/105 13/454/106 +f 31/450/102 45/449/101 46/452/104 12/451/103 +f 13/454/106 47/453/105 48/455/107 14/456/108 +f 15/457/109 14/456/108 48/455/107 49/458/110 +f 15/457/109 49/458/110 50/459/111 16/460/112 +f 17/461/113 16/460/112 50/459/111 51/462/114 +f 17/463/113 51/464/114 52/465/115 18/466/116 +f 19/467/117 18/466/116 52/465/115 53/468/118 +f 19/467/117 53/468/118 54/469/119 20/470/120 +f 20/470/120 54/469/119 55/471/121 22/472/122 +f 22/472/122 55/471/121 56/473/123 21/474/124 +f 21/474/124 56/473/123 57/475/125 23/476/126 +f 23/476/126 57/475/125 58/477/127 24/478/128 +f 24/478/128 58/477/127 59/479/129 32/480/130 +f 27/481/131 25/482/132 60/483/133 61/484/134 +f 25/482/132 32/480/130 59/479/129 60/483/133 +f 28/485/135 26/486/136 62/487/137 63/488/138 +f 27/481/131 61/484/134 62/487/137 26/486/136 +f 29/489/139 28/485/135 63/488/138 64/490/140 +f 29/489/139 64/490/140 33/426/78 30/425/77 +f 67/491/141 44/447/99 43/446/98 66/492/142 +f 70/493/143 66/492/142 65/494/144 71/495/145 +f 72/496/146 67/491/141 66/492/142 70/493/143 +f 74/497/147 68/498/148 67/491/141 72/496/146 +f 69/499/149 41/442/94 40/439/91 75/500/150 +f 71/495/145 65/494/144 69/499/149 76/501/151 +f 78/502/152 73/503/153 68/498/148 74/497/147 +f 80/504/154 76/501/151 69/499/149 75/500/150 +f 82/505/155 77/506/156 73/503/153 78/502/152 +f 84/507/157 80/504/154 75/500/150 79/508/158 +f 388/509/30 392/510/29 393/511/31 385/512/32 +f 387/513/36 395/514/35 396/515/37 389/516/38 +f 86/517/159 81/518/160 77/506/156 82/505/155 +f 391/519/28 398/520/27 392/510/29 388/509/30 +f 88/521/161 84/507/157 79/508/158 83/522/162 +f 389/516/38 396/515/37 400/523/39 399/524/40 +f 90/525/163 85/526/164 81/518/160 86/517/159 +f 390/527/26 403/528/25 398/520/27 391/519/28 +f 92/529/165 88/521/161 83/522/162 87/530/166 +f 397/531/24 402/532/23 403/528/25 390/527/26 +f 94/533/167 89/534/168 85/526/164 90/525/163 +f 406/535/20 411/536/19 407/537/21 401/538/22 +f 96/539/169 92/529/165 87/530/166 91/540/170 +f 399/524/40 400/523/39 405/541/41 404/542/42 +f 98/543/171 93/544/172 89/534/168 94/533/167 +f 410/545/16 415/546/15 411/536/19 406/535/20 +f 100/547/173 96/539/169 91/540/170 95/548/174 +f 404/542/42 405/541/41 409/549/43 408/550/44 +f 102/551/175 97/552/176 93/553/172 98/554/171 +f 355/364/18 322/363/17 321/555/177 353/556/178 +f 414/557/17 420/558/18 415/546/15 410/545/16 +f 36/432/84 91/540/170 87/530/166 37/434/86 +f 117/559/179 57/475/125 56/473/123 113/560/180 +f 104/561/181 100/547/173 95/548/174 99/562/182 +f 408/550/44 409/549/43 413/563/45 412/564/46 +f 106/565/183 101/566/184 97/552/176 102/551/175 +f 419/567/177 424/568/178 420/558/18 414/557/17 +f 108/569/185 104/561/181 99/562/182 103/570/186 +f 412/564/46 413/563/45 418/571/47 417/572/48 +f 110/573/187 105/574/188 101/566/184 106/565/183 +f 423/575/76 428/576/75 424/568/178 419/567/177 +f 112/577/189 108/569/185 103/570/186 107/578/190 +f 416/579/50 422/580/49 426/581/51 421/582/52 +f 110/573/187 114/583/191 109/584/192 105/574/188 +f 417/572/48 418/571/47 422/585/49 416/586/50 +f 116/587/193 112/577/189 107/578/190 111/588/194 +f 421/582/52 426/581/51 430/589/53 425/590/54 +f 385/512/32 393/511/31 394/591/33 386/592/34 +f 118/593/195 113/560/180 109/584/192 114/583/191 +f 427/594/74 432/595/73 428/576/75 423/575/76 +f 61/484/134 119/596/196 115/597/197 62/487/137 +f 120/598/198 116/587/193 111/588/194 115/597/197 +f 425/590/54 430/589/53 434/599/55 429/600/56 +f 118/593/195 122/601/199 117/559/179 113/560/180 +f 431/602/70 436/603/69 432/595/73 427/594/74 +f 124/604/200 120/598/198 115/597/197 119/596/196 +f 429/600/56 434/599/55 439/605/60 433/606/59 +f 122/601/199 126/607/201 121/608/202 117/559/179 +f 435/609/71 441/610/72 436/603/69 431/602/70 +f 401/538/22 407/537/21 402/532/23 397/531/24 +f 127/611/203 124/604/200 119/596/196 123/612/204 +f 433/606/59 439/605/60 445/613/57 438/614/58 +f 126/607/201 128/615/205 125/616/206 121/608/202 +f 440/617/68 437/618/67 441/610/72 435/609/71 +f 128/615/205 127/611/203 123/612/204 125/616/206 +f 386/592/34 394/591/33 395/514/35 387/513/36 +f 446/619/66 443/620/65 437/618/67 440/617/68 +f 438/614/58 445/613/57 444/621/61 447/622/62 +f 448/623/64 442/624/63 443/620/65 446/619/66 +f 447/622/62 444/621/61 442/624/63 448/623/64 +f 129/625/207 130/626/208 131/627/209 132/628/210 +f 136/629/211 137/630/212 130/626/208 129/625/207 +f 132/628/210 131/627/209 138/631/213 133/632/214 +f 133/632/214 138/631/213 139/633/215 134/634/216 +f 134/635/216 139/636/215 140/637/217 135/638/218 +f 135/638/218 140/637/217 137/630/212 136/629/211 +f 141/639/219 142/640/215 143/641/213 144/642/220 +f 148/643/221 149/644/217 142/640/215 141/639/219 +f 144/642/220 143/641/213 150/645/209 145/646/222 +f 145/646/222 150/645/209 151/647/208 146/648/223 +f 146/649/223 151/650/208 152/651/212 147/652/224 +f 147/652/224 152/651/212 149/644/217 148/643/221 +f 153/653/225 154/654/226 155/655/227 156/656/228 +f 160/657/229 161/658/230 154/654/226 153/653/225 +f 156/656/228 155/655/227 162/659/231 157/660/232 +f 157/660/232 162/659/231 163/661/233 158/662/234 +f 158/663/234 163/664/233 164/665/235 159/666/236 +f 159/666/236 164/665/235 161/658/230 160/657/229 +f 165/667/237 166/668/233 167/669/231 168/670/238 +f 172/671/239 173/672/235 166/668/233 165/667/237 +f 168/670/238 167/669/231 174/673/227 169/674/240 +f 169/674/240 174/673/227 175/675/226 170/676/241 +f 170/677/241 175/678/226 176/679/230 171/680/242 +f 171/680/242 176/679/230 173/672/235 172/671/239 +f 177/681/243 178/682/244 179/683/245 180/684/246 +f 184/685/247 185/686/248 178/682/244 177/681/243 +f 180/684/246 179/683/245 186/687/249 181/688/250 +f 181/688/250 186/687/249 187/689/251 182/690/252 +f 182/691/252 187/692/251 188/693/253 183/694/254 +f 183/694/254 188/693/253 185/686/248 184/685/247 +f 189/695/255 190/696/251 191/697/249 192/698/256 +f 196/699/257 197/700/253 190/696/251 189/695/255 +f 192/698/256 191/697/249 198/701/245 193/702/258 +f 193/702/258 198/701/245 199/703/244 194/704/259 +f 194/705/259 199/706/244 200/707/248 195/708/260 +f 195/708/260 200/707/248 197/700/253 196/699/257 +f 201/709/261 202/710/262 203/711/263 204/712/264 +f 208/713/265 209/714/266 202/710/262 201/709/261 +f 204/712/264 203/711/263 210/715/267 205/716/268 +f 205/716/268 210/715/267 211/717/269 206/718/270 +f 206/719/270 211/720/269 212/721/271 207/722/272 +f 207/722/272 212/721/271 209/714/266 208/713/265 +f 213/723/273 214/724/269 215/725/267 216/726/274 +f 220/727/275 221/728/271 214/724/269 213/723/273 +f 216/726/274 215/725/267 222/729/263 217/730/276 +f 217/730/276 222/729/263 223/731/262 218/732/277 +f 218/733/277 223/734/262 224/735/266 219/736/278 +f 219/736/278 224/735/266 221/728/271 220/727/275 +f 225/737/216 226/738/215 227/739/217 228/740/218 +f 232/741/214 233/742/213 226/738/215 225/737/216 +f 228/740/218 227/739/217 234/743/212 229/744/211 +f 229/744/211 234/743/212 235/745/208 230/746/207 +f 230/747/207 235/748/208 236/749/209 231/750/210 +f 231/750/210 236/749/209 233/742/213 232/741/214 +f 237/751/223 238/752/208 239/753/212 240/754/224 +f 244/755/222 245/756/209 238/752/208 237/751/223 +f 240/754/224 239/753/212 246/757/217 241/758/221 +f 241/758/221 246/757/217 247/759/215 242/760/219 +f 242/761/219 247/762/215 248/763/213 243/764/220 +f 243/764/220 248/763/213 245/756/209 244/755/222 +f 249/765/234 250/766/233 251/767/235 252/768/236 +f 256/769/232 257/770/231 250/766/233 249/765/234 +f 252/768/236 251/767/235 258/771/230 253/772/229 +f 253/772/229 258/771/230 259/773/226 254/774/225 +f 254/775/225 259/776/226 260/777/227 255/778/228 +f 255/778/228 260/777/227 257/770/231 256/769/232 +f 261/779/241 262/780/226 263/781/230 264/782/242 +f 268/783/240 269/784/227 262/780/226 261/779/241 +f 264/782/242 263/781/230 270/785/235 265/786/239 +f 265/786/239 270/785/235 271/787/233 266/788/237 +f 266/789/237 271/790/233 272/791/231 267/792/238 +f 267/792/238 272/791/231 269/784/227 268/783/240 +f 273/793/252 274/794/251 275/795/253 276/796/254 +f 280/797/250 281/798/249 274/794/251 273/793/252 +f 276/796/254 275/795/253 282/799/248 277/800/247 +f 277/800/247 282/799/248 283/801/244 278/802/243 +f 278/803/243 283/804/244 284/805/245 279/806/246 +f 279/806/246 284/805/245 281/798/249 280/797/250 +f 285/807/259 286/808/244 287/809/248 288/810/260 +f 292/811/258 293/812/245 286/808/244 285/807/259 +f 288/810/260 287/809/248 294/813/253 289/814/257 +f 289/814/257 294/813/253 295/815/251 290/816/255 +f 290/817/255 295/818/251 296/819/249 291/820/256 +f 291/820/256 296/819/249 293/812/245 292/811/258 +f 297/821/270 298/822/269 299/823/271 300/824/272 +f 304/825/268 305/826/267 298/822/269 297/821/270 +f 300/824/272 299/823/271 306/827/266 301/828/265 +f 301/828/265 306/827/266 307/829/262 302/830/261 +f 302/831/261 307/832/262 308/833/263 303/834/264 +f 303/834/264 308/833/263 305/826/267 304/825/268 +f 309/835/277 310/836/262 311/837/266 312/838/278 +f 316/839/276 317/840/263 310/836/262 309/835/277 +f 312/838/278 311/837/266 318/841/271 313/842/275 +f 313/842/275 318/841/271 319/843/269 314/844/273 +f 314/845/273 319/846/269 320/847/267 315/848/274 +f 315/848/274 320/847/267 317/840/263 316/839/276 +f 54/469/119 53/468/118 101/566/184 105/574/188 +f 64/490/140 107/578/190 103/570/186 33/426/78 +f 125/616/206 59/479/129 58/477/127 121/608/202 +f 65/494/144 42/444/96 41/442/94 69/499/149 +f 62/487/137 115/597/197 111/588/194 63/488/138 +f 89/534/168 93/544/172 51/462/114 50/459/111 +f 38/436/88 37/434/86 87/530/166 83/522/162 +f 121/608/202 58/477/127 57/475/125 117/559/179 +f 61/484/134 60/483/133 123/612/204 119/596/196 +f 64/490/140 63/488/138 111/588/194 107/578/190 +f 125/616/206 123/612/204 60/483/133 59/479/129 +f 39/438/90 79/508/158 75/500/150 40/439/91 +f 35/430/82 34/427/79 99/562/182 95/548/174 +f 55/471/121 109/584/192 113/560/180 56/473/123 +f 55/471/121 54/469/119 105/574/188 109/584/192 +f 49/458/110 48/455/107 81/518/160 85/526/164 +f 353/556/178 321/555/177 346/424/76 354/423/75 +f 36/432/84 35/430/82 95/548/174 91/540/170 +f 43/446/98 42/444/96 65/494/144 66/492/142 +f 45/449/101 68/498/148 73/503/153 46/452/104 +f 46/452/104 73/503/153 77/506/156 47/453/105 +f 44/447/99 67/491/141 68/498/148 45/449/101 +f 52/465/115 97/552/176 101/566/184 53/468/118 +f 34/427/79 33/426/78 103/570/186 99/562/182 +f 89/534/168 50/459/111 49/458/110 85/526/164 +f 449/849/279 450/850/280 451/851/281 452/852/282 +f 456/853/283 457/854/284 450/850/280 449/849/279 +f 452/852/282 451/851/281 458/855/285 453/856/286 +f 453/856/286 458/855/285 459/857/287 454/858/288 +f 454/859/288 459/860/287 460/861/289 455/862/290 +f 455/862/290 460/861/289 457/854/284 456/853/283 +f 461/863/291 462/864/287 463/865/285 464/866/292 +f 468/867/293 469/868/289 462/864/287 461/863/291 +f 464/866/292 463/865/285 470/869/281 465/870/294 +f 465/870/294 470/869/281 471/871/280 466/872/295 +f 466/873/295 471/874/280 472/875/284 467/876/296 +f 467/876/296 472/875/284 469/868/289 468/867/293 +f 473/877/297 474/878/1 475/879/298 476/880/299 +f 480/881/300 481/882/301 474/878/1 473/877/297 +f 476/880/299 475/879/298 482/883/302 477/884/303 +f 477/884/303 482/883/302 483/885/3 478/886/304 +f 478/887/304 483/888/3 484/889/305 479/890/306 +f 479/890/306 484/889/305 481/882/301 480/881/300 +f 485/891/307 486/892/3 487/893/302 488/894/308 +f 492/895/309 493/896/305 486/892/3 485/891/307 +f 488/894/308 487/893/302 494/897/298 489/898/310 +f 489/898/310 494/897/298 495/899/1 490/900/311 +f 490/901/311 495/902/1 496/903/301 491/904/312 +f 491/904/312 496/903/301 493/896/305 492/895/309 +f 497/905/313 498/906/314 499/907/315 500/908/316 +f 504/909/317 505/910/318 498/906/314 497/905/313 +f 500/908/316 499/907/315 506/911/319 501/912/320 +f 501/912/320 506/911/319 507/913/321 502/914/322 +f 502/915/322 507/916/321 508/917/323 503/918/324 +f 503/918/324 508/917/323 505/910/318 504/909/317 +f 509/919/325 510/920/321 511/921/319 512/922/326 +f 516/923/327 517/924/323 510/920/321 509/919/325 +f 512/922/326 511/921/319 518/925/315 513/926/328 +f 513/926/328 518/925/315 519/927/314 514/928/329 +f 514/929/329 519/930/314 520/931/318 515/932/330 +f 515/932/330 520/931/318 517/924/323 516/923/327 +f 521/933/331 522/934/5 523/935/332 524/936/333 +f 528/937/334 529/938/335 522/934/5 521/933/331 +f 524/936/333 523/935/332 530/939/336 525/940/337 +f 525/940/337 530/939/336 531/941/4 526/942/338 +f 526/943/338 531/944/4 532/945/339 527/946/340 +f 527/946/340 532/945/339 529/938/335 528/937/334 +f 533/947/341 534/948/4 535/949/336 536/950/342 +f 540/951/343 541/952/339 534/948/4 533/947/341 +f 536/950/342 535/949/336 542/953/332 537/954/344 +f 537/954/344 542/953/332 543/955/5 538/956/345 +f 538/957/345 543/958/5 544/959/335 539/960/346 +f 539/960/346 544/959/335 541/952/339 540/951/343 +f 545/961/288 546/962/287 547/963/289 548/964/290 +f 552/965/286 553/966/285 546/962/287 545/961/288 +f 548/964/290 547/963/289 554/967/284 549/968/283 +f 549/968/283 554/967/284 555/969/280 550/970/279 +f 550/971/279 555/972/280 556/973/281 551/974/282 +f 551/974/282 556/973/281 553/966/285 552/965/286 +f 557/975/295 558/976/280 559/977/284 560/978/296 +f 564/979/294 565/980/281 558/976/280 557/975/295 +f 560/978/296 559/977/284 566/981/289 561/982/293 +f 561/982/293 566/981/289 567/983/287 562/984/291 +f 562/985/291 567/986/287 568/987/285 563/988/292 +f 563/988/292 568/987/285 565/980/281 564/979/294 +f 569/989/304 570/990/3 571/991/305 572/992/306 +f 576/993/303 577/994/302 570/990/3 569/989/304 +f 572/992/306 571/991/305 578/995/301 573/996/300 +f 573/996/300 578/995/301 579/997/1 574/998/297 +f 574/999/297 579/1000/1 580/1001/298 575/1002/299 +f 575/1002/299 580/1001/298 577/994/302 576/993/303 +f 581/1003/311 582/1004/1 583/1005/301 584/1006/312 +f 588/1007/310 589/1008/298 582/1004/1 581/1003/311 +f 584/1006/312 583/1005/301 590/1009/305 585/1010/309 +f 585/1010/309 590/1009/305 591/1011/3 586/1012/307 +f 586/1013/307 591/1014/3 592/1015/302 587/1016/308 +f 587/1016/308 592/1015/302 589/1008/298 588/1007/310 +f 593/1017/322 594/1018/321 595/1019/323 596/1020/324 +f 600/1021/320 601/1022/319 594/1018/321 593/1017/322 +f 596/1020/324 595/1019/323 602/1023/318 597/1024/317 +f 597/1024/317 602/1023/318 603/1025/314 598/1026/313 +f 598/1027/313 603/1028/314 604/1029/315 599/1030/316 +f 599/1030/316 604/1029/315 601/1022/319 600/1021/320 +f 605/1031/329 606/1032/314 607/1033/318 608/1034/330 +f 612/1035/328 613/1036/315 606/1032/314 605/1031/329 +f 608/1034/330 607/1033/318 614/1037/323 609/1038/327 +f 609/1038/327 614/1037/323 615/1039/321 610/1040/325 +f 610/1041/325 615/1042/321 616/1043/319 611/1044/326 +f 611/1044/326 616/1043/319 613/1036/315 612/1035/328 +f 617/1045/338 618/1046/4 619/1047/339 620/1048/340 +f 624/1049/337 625/1050/336 618/1046/4 617/1045/338 +f 620/1048/340 619/1047/339 626/1051/335 621/1052/334 +f 621/1052/334 626/1051/335 627/1053/5 622/1054/331 +f 622/1055/331 627/1056/5 628/1057/332 623/1058/333 +f 623/1058/333 628/1057/332 625/1050/336 624/1049/337 +f 629/1059/345 630/1060/5 631/1061/335 632/1062/346 +f 636/1063/344 637/1064/332 630/1060/5 629/1059/345 +f 632/1062/346 631/1061/335 638/1065/339 633/1066/343 +f 633/1066/343 638/1065/339 639/1067/4 634/1068/341 +f 634/1069/341 639/1070/4 640/1071/336 635/1072/342 +f 635/1072/342 640/1071/336 637/1064/332 636/1063/344 +f 38/436/88 83/522/162 79/508/158 39/438/90 +f 81/518/160 48/455/107 47/453/105 77/506/156 +f 51/464/114 93/553/172 97/552/176 52/465/115 diff --git a/mods/pipeworks/models/pipeworks_entry_panel_lowpoly.obj b/mods/pipeworks/models/pipeworks_entry_panel_lowpoly.obj new file mode 100644 index 00000000..aa4b4fda --- /dev/null +++ b/mods/pipeworks/models/pipeworks_entry_panel_lowpoly.obj @@ -0,0 +1,236 @@ +# Blender v2.78 (sub 0) OBJ File: 'pipe-entry-panel-lowpoly.blend' +# www.blender.org +o Cylinder.000 +v -0.500000 0.500000 -0.062500 +v 0.500000 0.500000 -0.062500 +v 0.500000 -0.500000 -0.062500 +v -0.500000 -0.500000 -0.062500 +v 0.500000 0.500000 0.062500 +v 0.500000 -0.500000 0.062500 +v -0.500000 0.500000 0.062500 +v -0.500000 -0.500000 0.062500 +v -0.156250 -0.064721 0.500000 +v -0.156250 -0.064721 0.468750 +v -0.064721 -0.156250 0.500000 +v -0.064721 -0.156250 0.468750 +v 0.064721 -0.156250 0.500000 +v 0.064721 -0.156250 0.468750 +v 0.156250 -0.064721 0.500000 +v 0.156250 -0.064721 0.468750 +v 0.156250 0.064721 0.500000 +v 0.156250 0.064721 0.468750 +v 0.064721 0.156250 0.500000 +v 0.064721 0.156250 0.468750 +v -0.064721 0.156250 0.500000 +v -0.064721 0.156250 0.468750 +v -0.156250 0.064721 0.500000 +v -0.156250 0.064721 0.468750 +v -0.125000 -0.051777 0.468750 +v -0.125000 -0.051777 -0.468750 +v -0.051777 -0.125000 0.468750 +v -0.051777 -0.125000 -0.468750 +v 0.051777 -0.125000 0.468750 +v 0.051777 -0.125000 -0.468750 +v 0.125000 -0.051777 0.468750 +v 0.125000 -0.051777 -0.468750 +v 0.125000 0.051777 0.468750 +v 0.125000 0.051777 -0.468750 +v 0.051777 0.125000 0.468750 +v 0.051777 0.125000 -0.468750 +v -0.051777 0.125000 0.468750 +v -0.051777 0.125000 -0.468750 +v -0.125000 0.051777 0.468750 +v -0.125000 0.051777 -0.468750 +v -0.156250 -0.064721 -0.468750 +v -0.156250 -0.064721 -0.500000 +v -0.064721 -0.156250 -0.468750 +v -0.064721 -0.156250 -0.500000 +v 0.064721 -0.156250 -0.468750 +v 0.064721 -0.156250 -0.500000 +v 0.156250 -0.064721 -0.468750 +v 0.156250 -0.064721 -0.500000 +v 0.156250 0.064721 -0.468750 +v 0.156250 0.064721 -0.500000 +v 0.064721 0.156250 -0.468750 +v 0.064721 0.156250 -0.500000 +v -0.064721 0.156250 -0.468750 +v -0.064721 0.156250 -0.500000 +v -0.156250 0.064721 -0.468750 +v -0.156250 0.064721 -0.500000 +vt 0.5076 0.5076 +vt 0.9924 0.5076 +vt 0.9924 0.9924 +vt 0.5076 0.9924 +vt 0.0682 0.4924 +vt 0.0076 0.4924 +vt 0.0076 0.0076 +vt 0.0682 0.0076 +vt 0.4924 0.9924 +vt 0.0076 0.9924 +vt 0.0076 0.5076 +vt 0.4924 0.5076 +vt 0.2955 0.4924 +vt 0.2348 0.4924 +vt 0.2348 0.0076 +vt 0.2955 0.0076 +vt 0.2197 0.0076 +vt 0.2197 0.4924 +vt 0.1591 0.4924 +vt 0.1591 0.0076 +vt 0.0833 0.4924 +vt 0.0833 0.0076 +vt 0.1439 0.0076 +vt 0.1439 0.4924 +vt 0.8561 0.4318 +vt 0.8106 0.4773 +vt 0.7500 0.4773 +vt 0.7045 0.4318 +vt 0.7045 0.3712 +vt 0.7500 0.3258 +vt 0.8106 0.3258 +vt 0.8561 0.3712 +vt 0.6288 0.4773 +vt 0.6742 0.4318 +vt 0.6742 0.3712 +vt 0.6288 0.3258 +vt 0.5682 0.3258 +vt 0.5227 0.3712 +vt 0.5227 0.4318 +vt 0.5682 0.4773 +vt 0.6742 0.4318 +vt 0.6288 0.4773 +vt 0.5682 0.4773 +vt 0.5227 0.4318 +vt 0.5227 0.3712 +vt 0.5682 0.3258 +vt 0.6288 0.3258 +vt 0.6742 0.3712 +vt 0.8106 0.4773 +vt 0.8561 0.4318 +vt 0.8561 0.3712 +vt 0.8106 0.3258 +vt 0.7500 0.3258 +vt 0.7045 0.3712 +vt 0.7045 0.4318 +vt 0.7500 0.4773 +vt 0.9015 0.2879 +vt 0.9015 0.2727 +vt 0.9318 0.2727 +vt 0.9318 0.2879 +vt 0.9621 0.2727 +vt 0.9621 0.2879 +vt 0.9924 0.2727 +vt 0.9924 0.2879 +vt 0.7500 0.2879 +vt 0.7500 0.2727 +vt 0.7803 0.2727 +vt 0.7803 0.2879 +vt 0.8106 0.2727 +vt 0.8106 0.2879 +vt 0.8409 0.2727 +vt 0.8409 0.2879 +vt 0.8712 0.2727 +vt 0.8712 0.2879 +vt 0.6894 0.2879 +vt 0.6894 0.2727 +vt 0.7197 0.2727 +vt 0.7197 0.2879 +vt 0.6591 0.2879 +vt 0.6591 0.2727 +vt 0.7500 0.2727 +vt 0.7500 0.2879 +vt 0.5076 0.2879 +vt 0.5076 0.2727 +vt 0.5379 0.2727 +vt 0.5379 0.2879 +vt 0.5682 0.2727 +vt 0.5682 0.2879 +vt 0.5985 0.2727 +vt 0.5985 0.2879 +vt 0.6288 0.2727 +vt 0.6288 0.2879 +vt 0.5227 0.2197 +vt 0.5227 0.1894 +vt 0.9924 0.1894 +vt 0.9924 0.2197 +vt 0.9924 0.2500 +vt 0.5227 0.2500 +vt 0.9924 0.0379 +vt 0.9924 0.0682 +vt 0.5227 0.0682 +vt 0.5227 0.0379 +vt 0.5227 0.1591 +vt 0.9924 0.1591 +vt 0.5227 0.1288 +vt 0.5227 0.0985 +vt 0.9924 0.0985 +vt 0.9924 0.1288 +vt 0.9924 0.0076 +vt 0.5227 0.0076 +vn 0.0000 -0.0000 -1.0000 +vn 1.0000 -0.0000 0.0000 +vn 0.0000 0.0000 1.0000 +vn -1.0000 -0.0000 0.0000 +vn 0.0000 -1.0000 0.0000 +vn 0.0000 1.0000 0.0000 +vn -0.7173 -0.2971 0.6302 +vn -0.7173 -0.2971 -0.6302 +vn -0.2971 -0.7173 -0.6302 +vn -0.2971 -0.7173 0.6302 +vn 0.2971 -0.7173 -0.6302 +vn 0.2971 -0.7173 0.6302 +vn 0.7173 -0.2971 -0.6302 +vn 0.7173 -0.2971 0.6302 +vn 0.7173 0.2971 -0.6302 +vn 0.7173 0.2971 0.6302 +vn 0.2971 0.7173 -0.6302 +vn 0.2971 0.7173 0.6302 +vn -0.2971 0.7173 -0.6302 +vn -0.2971 0.7173 0.6302 +vn -0.7173 0.2971 -0.6302 +vn -0.7173 0.2971 0.6302 +vn 0.9239 -0.3827 0.0000 +vn 0.9239 0.3827 0.0000 +vn 0.3827 -0.9239 0.0000 +vn -0.3827 -0.9239 0.0000 +vn -0.9239 -0.3827 0.0000 +vn 0.3827 0.9239 0.0000 +vn -0.3827 0.9239 0.0000 +vn -0.9239 0.3827 0.0000 +g Cylinder.000_Cylinder.000_None +s off +f 1/1/1 2/2/1 3/3/1 4/4/1 +f 2/5/2 5/6/2 6/7/2 3/8/2 +f 5/9/3 7/10/3 8/11/3 6/12/3 +f 7/13/4 1/14/4 4/15/4 8/16/4 +f 4/17/5 3/18/5 6/19/5 8/20/5 +f 7/21/6 5/22/6 2/23/6 1/24/6 +f 12/25/1 10/26/1 24/27/1 22/28/1 20/29/1 18/30/1 16/31/1 14/32/1 +f 9/33/3 11/34/3 13/35/3 15/36/3 17/37/3 19/38/3 21/39/3 23/40/3 +f 44/41/1 42/42/1 56/43/1 54/44/1 52/45/1 50/46/1 48/47/1 46/48/1 +f 41/49/3 43/50/3 45/51/3 47/52/3 49/53/3 51/54/3 53/55/3 55/56/3 +s 1 +f 9/57/7 10/58/8 12/59/9 11/60/10 +f 11/60/10 12/59/9 14/61/11 13/62/12 +f 13/62/12 14/61/11 16/63/13 15/64/14 +f 15/65/14 16/66/13 18/67/15 17/68/16 +f 17/68/16 18/67/15 20/69/17 19/70/18 +f 19/70/18 20/69/17 22/71/19 21/72/20 +f 21/72/20 22/71/19 24/73/21 23/74/22 +f 23/74/22 24/73/21 10/58/8 9/57/7 +f 43/75/10 44/76/9 46/77/11 45/78/12 +f 41/79/7 42/80/8 44/76/9 43/75/10 +f 45/78/12 46/77/11 48/81/13 47/82/14 +f 47/83/14 48/84/13 50/85/15 49/86/16 +f 49/86/16 50/85/15 52/87/17 51/88/18 +f 51/88/18 52/87/17 54/89/19 53/90/20 +f 53/90/20 54/89/19 56/91/21 55/92/22 +f 55/92/22 56/91/21 42/80/8 41/79/7 +f 32/93/23 34/94/24 33/95/24 31/96/23 +f 32/93/23 31/96/23 29/97/25 30/98/25 +f 27/99/26 25/100/27 26/101/27 28/102/26 +f 34/94/24 36/103/28 35/104/28 33/95/24 +f 38/105/29 40/106/30 39/107/30 37/108/29 +f 38/105/29 37/108/29 35/104/28 36/103/28 +f 29/109/25 27/99/26 28/102/26 30/110/25 +f 25/100/27 39/107/30 40/106/30 26/101/27 diff --git a/mods/pipeworks/models/pipeworks_flow_sensor.obj b/mods/pipeworks/models/pipeworks_flow_sensor.obj new file mode 100644 index 00000000..3545c1b9 --- /dev/null +++ b/mods/pipeworks/models/pipeworks_flow_sensor.obj @@ -0,0 +1,6675 @@ +# Blender v2.78 (sub 0) OBJ File: 'pipe-flow-sensor.blend' +# www.blender.org +o Cube.001 +v -0.187500 -0.055390 -0.000000 +v -0.188167 0.054326 0.010598 +v -0.188807 0.051174 0.020790 +v -0.189398 0.046055 0.030182 +v -0.189916 0.039167 0.038414 +v -0.190340 0.030773 0.045170 +v -0.190656 0.021197 0.050191 +v -0.190850 0.010806 0.053282 +v -0.190916 0.000000 0.054326 +v -0.190850 -0.010806 0.053282 +v -0.190656 -0.021197 0.050191 +v -0.190340 -0.030773 0.045170 +v -0.189916 -0.039167 0.038414 +v -0.189398 -0.046055 0.030182 +v -0.188807 -0.051174 0.020790 +v -0.188167 -0.054326 0.010598 +v -0.188807 0.054326 0.009983 +v -0.190064 0.051174 0.019583 +v -0.191223 0.046055 0.028431 +v -0.192238 0.039167 0.036185 +v -0.193071 0.030773 0.042549 +v -0.193690 0.021197 0.047278 +v -0.194072 0.010806 0.050191 +v -0.194200 0.000000 0.051174 +v -0.194072 -0.010806 0.050191 +v -0.193690 -0.021197 0.047278 +v -0.193071 -0.030773 0.042549 +v -0.192238 -0.039167 0.036185 +v -0.191223 -0.046055 0.028431 +v -0.190064 -0.051174 0.019583 +v -0.188807 -0.054326 0.009983 +v -0.189398 0.054326 0.008985 +v -0.191223 0.051174 0.017624 +v -0.192904 0.046055 0.025587 +v -0.194378 0.039167 0.032566 +v -0.195588 0.030773 0.038293 +v -0.196487 0.021197 0.042549 +v -0.197040 0.010806 0.045170 +v -0.197227 0.000000 0.046055 +v -0.197040 -0.010806 0.045170 +v -0.196487 -0.021197 0.042549 +v -0.195588 -0.030773 0.038293 +v -0.194378 -0.039167 0.032566 +v -0.192904 -0.046055 0.025587 +v -0.191223 -0.051174 0.017624 +v -0.189398 -0.054326 0.008985 +v -0.189916 0.054326 0.007641 +v -0.192238 0.051174 0.014988 +v -0.194378 0.046055 0.021760 +v -0.196254 0.039167 0.027695 +v -0.197794 0.030773 0.032566 +v -0.198938 0.021197 0.036185 +v -0.199643 0.010806 0.038414 +v -0.199880 0.000000 0.039167 +v -0.199643 -0.010806 0.038414 +v -0.198938 -0.021197 0.036185 +v -0.197794 -0.030773 0.032566 +v -0.196254 -0.039167 0.027695 +v -0.194378 -0.046055 0.021760 +v -0.192238 -0.051174 0.014988 +v -0.189916 -0.054326 0.007641 +v -0.190340 0.054326 0.006003 +v -0.193071 0.051174 0.011776 +v -0.195588 0.046055 0.017097 +v -0.197794 0.039167 0.021760 +v -0.199604 0.030773 0.025587 +v -0.200950 0.021197 0.028431 +v -0.201778 0.010806 0.030182 +v -0.202058 0.000000 0.030773 +v -0.201778 -0.010806 0.030182 +v -0.200950 -0.021197 0.028431 +v -0.199604 -0.030773 0.025587 +v -0.197794 -0.039167 0.021760 +v -0.195588 -0.046055 0.017097 +v -0.193071 -0.051174 0.011776 +v -0.190340 -0.054326 0.006003 +v -0.190656 0.054326 0.004135 +v -0.193690 0.051174 0.008112 +v -0.196487 0.046055 0.011776 +v -0.198938 0.039167 0.014988 +v -0.200950 0.030773 0.017624 +v -0.202444 0.021197 0.019583 +v -0.203365 0.010806 0.020789 +v -0.203676 0.000000 0.021197 +v -0.203365 -0.010806 0.020789 +v -0.202444 -0.021197 0.019583 +v -0.200950 -0.030773 0.017624 +v -0.198938 -0.039167 0.014988 +v -0.196487 -0.046055 0.011776 +v -0.193690 -0.051174 0.008112 +v -0.190656 -0.054326 0.004135 +v -0.190850 0.054326 0.002108 +v -0.194072 0.051174 0.004135 +v -0.197040 0.046055 0.006003 +v -0.199643 0.039167 0.007641 +v -0.201778 0.030773 0.008985 +v -0.203365 0.021197 0.009983 +v -0.204342 0.010806 0.010598 +v -0.204672 0.000000 0.010806 +v -0.204342 -0.010806 0.010598 +v -0.203365 -0.021197 0.009983 +v -0.201778 -0.030773 0.008985 +v -0.199643 -0.039167 0.007641 +v -0.197040 -0.046055 0.006003 +v -0.194072 -0.051174 0.004135 +v -0.190850 -0.054326 0.002108 +v -0.190916 0.054326 -0.000000 +v -0.194200 0.051174 -0.000000 +v -0.197227 0.046055 -0.000000 +v -0.199880 0.039167 -0.000000 +v -0.202058 0.030773 -0.000000 +v -0.203676 0.021197 -0.000000 +v -0.204672 0.010806 -0.000000 +v -0.205008 0.000000 -0.000000 +v -0.204672 -0.010806 -0.000000 +v -0.203676 -0.021197 -0.000000 +v -0.202058 -0.030773 -0.000000 +v -0.199880 -0.039167 -0.000000 +v -0.197227 -0.046055 -0.000000 +v -0.194200 -0.051174 -0.000000 +v -0.190916 -0.054326 -0.000000 +v -0.190850 0.054326 -0.002108 +v -0.194072 0.051174 -0.004136 +v -0.197040 0.046055 -0.006004 +v -0.199643 0.039167 -0.007641 +v -0.201778 0.030773 -0.008985 +v -0.203365 0.021197 -0.009984 +v -0.204342 0.010806 -0.010599 +v -0.204672 0.000000 -0.010806 +v -0.204342 -0.010806 -0.010599 +v -0.203365 -0.021197 -0.009984 +v -0.201778 -0.030773 -0.008985 +v -0.199643 -0.039167 -0.007641 +v -0.197040 -0.046055 -0.006004 +v -0.194072 -0.051174 -0.004136 +v -0.190850 -0.054326 -0.002108 +v -0.190656 0.054326 -0.004136 +v -0.193690 0.051174 -0.008112 +v -0.196487 0.046055 -0.011777 +v -0.198938 0.039167 -0.014989 +v -0.200950 0.030773 -0.017625 +v -0.202444 0.021197 -0.019584 +v -0.203365 0.010806 -0.020790 +v -0.203676 0.000000 -0.021197 +v -0.203365 -0.010806 -0.020790 +v -0.202444 -0.021197 -0.019584 +v -0.200950 -0.030773 -0.017625 +v -0.198938 -0.039167 -0.014989 +v -0.196487 -0.046055 -0.011777 +v -0.193690 -0.051174 -0.008112 +v -0.190656 -0.054326 -0.004136 +v -0.190340 0.054326 -0.006004 +v -0.193071 0.051174 -0.011777 +v -0.195588 0.046055 -0.017097 +v -0.197794 0.039167 -0.021760 +v -0.199604 0.030773 -0.025587 +v -0.200950 0.021197 -0.028431 +v -0.201778 0.010806 -0.030182 +v -0.202058 0.000000 -0.030773 +v -0.201778 -0.010806 -0.030182 +v -0.200950 -0.021197 -0.028431 +v -0.199604 -0.030773 -0.025587 +v -0.197794 -0.039167 -0.021760 +v -0.195588 -0.046055 -0.017097 +v -0.193071 -0.051174 -0.011777 +v -0.190340 -0.054326 -0.006004 +v -0.189916 0.054326 -0.007641 +v -0.192238 0.051174 -0.014989 +v -0.194378 0.046055 -0.021760 +v -0.196254 0.039167 -0.027695 +v -0.197794 0.030773 -0.032566 +v -0.198938 0.021197 -0.036186 +v -0.199643 0.010806 -0.038415 +v -0.199880 0.000000 -0.039167 +v -0.199643 -0.010806 -0.038415 +v -0.198938 -0.021197 -0.036186 +v -0.197794 -0.030773 -0.032566 +v -0.196254 -0.039167 -0.027695 +v -0.194378 -0.046055 -0.021760 +v -0.192238 -0.051174 -0.014989 +v -0.189916 -0.054326 -0.007641 +v -0.189398 0.054326 -0.008985 +v -0.191223 0.051174 -0.017625 +v -0.192904 0.046055 -0.025587 +v -0.194378 0.039167 -0.032566 +v -0.195588 0.030773 -0.038294 +v -0.196487 0.021197 -0.042550 +v -0.197040 0.010806 -0.045171 +v -0.197227 0.000000 -0.046056 +v -0.197040 -0.010806 -0.045171 +v -0.196487 -0.021197 -0.042550 +v -0.195588 -0.030773 -0.038294 +v -0.194378 -0.039167 -0.032566 +v -0.192904 -0.046055 -0.025587 +v -0.191223 -0.051174 -0.017625 +v -0.189398 -0.054326 -0.008985 +v -0.188807 0.054326 -0.009984 +v -0.190064 0.051174 -0.019584 +v -0.191223 0.046055 -0.028431 +v -0.192238 0.039167 -0.036186 +v -0.193071 0.030773 -0.042550 +v -0.193690 0.021197 -0.047279 +v -0.194072 0.010806 -0.050191 +v -0.194200 0.000000 -0.051174 +v -0.194072 -0.010806 -0.050191 +v -0.193690 -0.021197 -0.047279 +v -0.193071 -0.030773 -0.042550 +v -0.192238 -0.039167 -0.036186 +v -0.191223 -0.046055 -0.028431 +v -0.190064 -0.051174 -0.019584 +v -0.188807 -0.054326 -0.009984 +v -0.188167 0.054326 -0.010599 +v -0.188807 0.051174 -0.020790 +v -0.189398 0.046055 -0.030182 +v -0.189916 0.039167 -0.038415 +v -0.190340 0.030773 -0.045171 +v -0.190656 0.021197 -0.050191 +v -0.190850 0.010806 -0.053282 +v -0.190916 0.000000 -0.054326 +v -0.190850 -0.010806 -0.053282 +v -0.190656 -0.021197 -0.050191 +v -0.190340 -0.030773 -0.045171 +v -0.189916 -0.039167 -0.038415 +v -0.189398 -0.046055 -0.030182 +v -0.188807 -0.051174 -0.020790 +v -0.188167 -0.054326 -0.010599 +v -0.187500 0.054326 -0.010806 +v -0.187500 0.051174 -0.021197 +v -0.187500 0.046055 -0.030773 +v -0.187500 0.039167 -0.039167 +v -0.187500 0.030773 -0.046056 +v -0.187500 0.021197 -0.051174 +v -0.187500 0.010806 -0.054326 +v -0.187500 0.000000 -0.055391 +v -0.187500 -0.010806 -0.054326 +v -0.187500 -0.021197 -0.051174 +v -0.187500 -0.030773 -0.046056 +v -0.187500 -0.039167 -0.039167 +v -0.187500 -0.046055 -0.030773 +v -0.187500 -0.051174 -0.021197 +v -0.187500 -0.054326 -0.010806 +v 0.188807 0.051174 -0.020790 +v 0.189398 0.046055 -0.030182 +v 0.189916 0.039167 -0.038415 +v 0.190340 0.030773 -0.045171 +v 0.190656 0.021197 -0.050191 +v 0.190850 0.010806 -0.053282 +v 0.190916 -0.000000 -0.054326 +v 0.190850 -0.010806 -0.053282 +v 0.190656 -0.021197 -0.050191 +v 0.190340 -0.030773 -0.045171 +v 0.189916 -0.039167 -0.038415 +v 0.189398 -0.046055 -0.030182 +v 0.188807 -0.051174 -0.020790 +v 0.188167 -0.054326 -0.010599 +v 0.188807 0.054326 -0.009984 +v -0.187500 0.055390 -0.000000 +v 0.190064 0.051174 -0.019584 +v 0.191223 0.046055 -0.028431 +v 0.192238 0.039167 -0.036186 +v 0.193071 0.030773 -0.042550 +v 0.193690 0.021197 -0.047279 +v 0.194072 0.010806 -0.050191 +v 0.194200 -0.000000 -0.051174 +v 0.194072 -0.010806 -0.050191 +v 0.193690 -0.021197 -0.047279 +v 0.193071 -0.030773 -0.042550 +v 0.192238 -0.039167 -0.036186 +v 0.191223 -0.046055 -0.028431 +v 0.190064 -0.051174 -0.019584 +v 0.188807 -0.054326 -0.009984 +v 0.189398 0.054326 -0.008985 +v 0.191223 0.051174 -0.017625 +v 0.192904 0.046055 -0.025587 +v 0.194378 0.039167 -0.032566 +v 0.195588 0.030773 -0.038294 +v 0.196487 0.021197 -0.042550 +v 0.197040 0.010806 -0.045171 +v 0.197227 -0.000000 -0.046056 +v 0.197040 -0.010806 -0.045171 +v 0.196487 -0.021197 -0.042550 +v 0.195588 -0.030773 -0.038294 +v 0.194378 -0.039167 -0.032566 +v 0.192904 -0.046055 -0.025587 +v 0.191223 -0.051174 -0.017625 +v 0.189398 -0.054326 -0.008985 +v 0.189916 0.054326 -0.007641 +v 0.192238 0.051174 -0.014989 +v 0.194378 0.046055 -0.021760 +v 0.196254 0.039167 -0.027695 +v 0.197794 0.030773 -0.032566 +v 0.198938 0.021197 -0.036186 +v 0.199643 0.010806 -0.038415 +v 0.199880 -0.000000 -0.039167 +v 0.199643 -0.010806 -0.038415 +v 0.198938 -0.021197 -0.036186 +v 0.197794 -0.030773 -0.032566 +v 0.196254 -0.039167 -0.027695 +v 0.194378 -0.046055 -0.021760 +v 0.192238 -0.051174 -0.014989 +v 0.189916 -0.054326 -0.007641 +v 0.190340 0.054326 -0.006004 +v 0.193071 0.051174 -0.011777 +v 0.195588 0.046055 -0.017097 +v 0.197794 0.039167 -0.021760 +v 0.199604 0.030773 -0.025587 +v 0.200950 0.021197 -0.028431 +v 0.201778 0.010806 -0.030182 +v 0.202058 -0.000000 -0.030773 +v 0.201778 -0.010806 -0.030182 +v 0.200950 -0.021197 -0.028431 +v 0.199604 -0.030773 -0.025587 +v 0.197794 -0.039167 -0.021760 +v 0.195588 -0.046055 -0.017097 +v 0.193071 -0.051174 -0.011777 +v 0.190340 -0.054326 -0.006004 +v 0.190656 0.054326 -0.004136 +v 0.193690 0.051174 -0.008112 +v 0.196487 0.046055 -0.011777 +v 0.198938 0.039167 -0.014989 +v 0.200950 0.030773 -0.017625 +v 0.202444 0.021197 -0.019584 +v 0.203365 0.010806 -0.020790 +v 0.203676 -0.000000 -0.021197 +v 0.203365 -0.010806 -0.020790 +v 0.202444 -0.021197 -0.019584 +v 0.200950 -0.030773 -0.017625 +v 0.198938 -0.039167 -0.014989 +v 0.196487 -0.046055 -0.011777 +v 0.193690 -0.051174 -0.008112 +v 0.190656 -0.054326 -0.004136 +v 0.190850 0.054326 -0.002108 +v 0.194072 0.051174 -0.004136 +v 0.197040 0.046055 -0.006004 +v 0.199643 0.039167 -0.007641 +v 0.201778 0.030773 -0.008985 +v 0.203365 0.021197 -0.009984 +v 0.204342 0.010806 -0.010599 +v 0.204672 -0.000000 -0.010806 +v 0.204342 -0.010806 -0.010599 +v 0.203365 -0.021197 -0.009984 +v 0.201778 -0.030773 -0.008985 +v 0.199643 -0.039167 -0.007641 +v 0.197040 -0.046055 -0.006004 +v 0.194072 -0.051174 -0.004136 +v 0.190850 -0.054326 -0.002108 +v 0.190916 0.054326 -0.000000 +v 0.194200 0.051174 -0.000000 +v 0.197227 0.046055 -0.000000 +v 0.199880 0.039167 -0.000000 +v 0.202058 0.030773 -0.000000 +v 0.203676 0.021197 -0.000000 +v 0.204672 0.010806 -0.000000 +v 0.205008 -0.000000 -0.000000 +v 0.204672 -0.010806 -0.000000 +v 0.203676 -0.021197 -0.000000 +v 0.202058 -0.030773 -0.000000 +v 0.199880 -0.039167 -0.000000 +v 0.197227 -0.046055 -0.000000 +v 0.194200 -0.051174 -0.000000 +v 0.190916 -0.054326 -0.000000 +v 0.190850 0.054326 0.002108 +v 0.194072 0.051174 0.004135 +v 0.197040 0.046055 0.006003 +v 0.199643 0.039167 0.007641 +v 0.201778 0.030773 0.008985 +v 0.203365 0.021197 0.009983 +v 0.204342 0.010806 0.010598 +v 0.204672 -0.000000 0.010806 +v 0.204342 -0.010806 0.010598 +v 0.203365 -0.021197 0.009983 +v 0.201778 -0.030773 0.008985 +v 0.199643 -0.039167 0.007641 +v 0.197040 -0.046055 0.006003 +v 0.194072 -0.051174 0.004135 +v 0.190850 -0.054326 0.002108 +v 0.190656 0.054326 0.004135 +v 0.193690 0.051174 0.008112 +v 0.196487 0.046055 0.011776 +v 0.198938 0.039167 0.014988 +v 0.200950 0.030773 0.017624 +v 0.202444 0.021197 0.019583 +v 0.203365 0.010806 0.020789 +v 0.203676 -0.000000 0.021197 +v 0.203365 -0.010806 0.020789 +v 0.202444 -0.021197 0.019583 +v 0.200950 -0.030773 0.017624 +v 0.198938 -0.039167 0.014988 +v 0.196487 -0.046055 0.011776 +v 0.193690 -0.051174 0.008112 +v 0.190656 -0.054326 0.004135 +v 0.190340 0.054326 0.006003 +v 0.193071 0.051174 0.011776 +v 0.195588 0.046055 0.017097 +v 0.197794 0.039167 0.021760 +v 0.199604 0.030773 0.025587 +v 0.200950 0.021197 0.028431 +v 0.201778 0.010806 0.030182 +v 0.202058 -0.000000 0.030773 +v 0.201778 -0.010806 0.030182 +v 0.200950 -0.021197 0.028431 +v 0.199604 -0.030773 0.025587 +v 0.197794 -0.039167 0.021760 +v 0.195588 -0.046055 0.017097 +v 0.193071 -0.051174 0.011776 +v 0.190340 -0.054326 0.006003 +v 0.189916 0.054326 0.007641 +v 0.192238 0.051174 0.014988 +v 0.194378 0.046055 0.021760 +v 0.196254 0.039167 0.027695 +v 0.197794 0.030773 0.032566 +v 0.198938 0.021197 0.036185 +v 0.199643 0.010806 0.038414 +v 0.199880 -0.000000 0.039167 +v 0.199643 -0.010806 0.038414 +v 0.198938 -0.021197 0.036185 +v 0.197794 -0.030773 0.032566 +v 0.196254 -0.039167 0.027695 +v 0.194378 -0.046055 0.021760 +v 0.192238 -0.051174 0.014988 +v 0.189916 -0.054326 0.007641 +v 0.189398 0.054326 0.008985 +v 0.191223 0.051174 0.017624 +v 0.192904 0.046055 0.025587 +v 0.194378 0.039167 0.032566 +v 0.195588 0.030773 0.038293 +v 0.196487 0.021197 0.042549 +v 0.197040 0.010806 0.045170 +v 0.197227 -0.000000 0.046055 +v 0.197040 -0.010806 0.045170 +v 0.196487 -0.021197 0.042549 +v 0.195588 -0.030773 0.038294 +v 0.194378 -0.039167 0.032566 +v 0.192904 -0.046055 0.025587 +v 0.191223 -0.051174 0.017624 +v 0.189398 -0.054326 0.008985 +v 0.188807 0.054326 0.009983 +v 0.190064 0.051174 0.019583 +v 0.191223 0.046055 0.028431 +v 0.192238 0.039167 0.036185 +v 0.193071 0.030773 0.042549 +v 0.193690 0.021197 0.047278 +v 0.194072 0.010806 0.050191 +v 0.194200 -0.000000 0.051174 +v 0.194072 -0.010806 0.050191 +v 0.193690 -0.021197 0.047279 +v 0.193071 -0.030773 0.042550 +v 0.192238 -0.039167 0.036185 +v 0.191223 -0.046055 0.028431 +v 0.190064 -0.051174 0.019583 +v 0.188807 -0.054326 0.009983 +v 0.188167 0.054326 0.010598 +v 0.188807 0.051174 0.020789 +v 0.189398 0.046055 0.030182 +v 0.189916 0.039167 0.038414 +v 0.190340 0.030773 0.045170 +v 0.190656 0.021197 0.050191 +v 0.190850 0.010806 0.053282 +v 0.190916 -0.000000 0.054326 +v 0.190850 -0.010806 0.053282 +v 0.190656 -0.021197 0.050191 +v 0.190340 -0.030773 0.045170 +v 0.189916 -0.039167 0.038414 +v 0.189398 -0.046055 0.030182 +v 0.188807 -0.051174 0.020790 +v 0.188167 -0.054326 0.010598 +v 0.187500 0.055390 -0.000000 +v -0.187500 0.054326 0.010806 +v -0.187500 0.051174 0.021197 +v -0.187500 0.046055 0.030773 +v -0.187500 0.039167 0.039167 +v -0.187500 0.030773 0.046055 +v -0.187500 0.021197 0.051174 +v -0.187500 0.010806 0.054326 +v -0.187500 0.000000 0.055390 +v -0.187500 -0.010806 0.054326 +v -0.187500 -0.021197 0.051174 +v -0.187500 -0.030773 0.046055 +v -0.187500 -0.039167 0.039167 +v -0.187500 -0.046055 0.030773 +v -0.187500 -0.051174 0.021197 +v -0.187500 -0.054326 0.010806 +v 0.188167 0.054326 -0.010599 +v 0.187500 -0.054326 -0.010806 +v 0.187500 -0.051174 -0.021197 +v 0.187500 -0.046055 -0.030773 +v 0.187500 -0.039167 -0.039167 +v 0.187500 -0.030773 -0.046056 +v 0.187500 -0.021197 -0.051174 +v 0.187500 -0.010806 -0.054326 +v 0.187500 -0.000000 -0.055391 +v 0.187500 0.010806 -0.054326 +v 0.187500 0.021197 -0.051174 +v 0.187500 0.030773 -0.046056 +v 0.187500 0.039167 -0.039167 +v 0.187500 0.046055 -0.030773 +v 0.187500 0.051174 -0.021197 +v 0.187500 0.054326 -0.010806 +v 0.187500 -0.055390 -0.000000 +v 0.187500 -0.054326 0.010806 +v 0.187500 -0.051174 0.021197 +v 0.187500 -0.046055 0.030773 +v 0.187500 -0.039167 0.039167 +v 0.187500 -0.030773 0.046055 +v 0.187500 -0.021197 0.051174 +v 0.187500 -0.010806 0.054326 +v 0.187500 -0.000000 0.055390 +v 0.187500 0.010806 0.054326 +v 0.187500 0.021197 0.051174 +v 0.187500 0.030773 0.046055 +v 0.187500 0.039167 0.039167 +v 0.187500 0.046055 0.030773 +v 0.187500 0.051174 0.021197 +v 0.187500 0.054326 0.010806 +v 0.131357 -0.131358 -0.250000 +v 0.187500 -0.131358 -0.193858 +v 0.131357 -0.187500 -0.193858 +v 0.143844 -0.131358 -0.248594 +v 0.155711 -0.131358 -0.244443 +v 0.166360 -0.131358 -0.237753 +v 0.131357 -0.143844 -0.248594 +v 0.144380 -0.144245 -0.246927 +v 0.156136 -0.144191 -0.242574 +v 0.165872 -0.144029 -0.236286 +v 0.131357 -0.155711 -0.244443 +v 0.144302 -0.156129 -0.242548 +v 0.155460 -0.155427 -0.238486 +v 0.164055 -0.154536 -0.233172 +v 0.131357 -0.166360 -0.237753 +v 0.144068 -0.165927 -0.236229 +v 0.154549 -0.164063 -0.233157 +v 0.162048 -0.162048 -0.229469 +v 0.186094 -0.143844 -0.193858 +v 0.181943 -0.155711 -0.193858 +v 0.175253 -0.166360 -0.193858 +v 0.186094 -0.131358 -0.206344 +v 0.184426 -0.144380 -0.206745 +v 0.180074 -0.156136 -0.206692 +v 0.173786 -0.165872 -0.206529 +v 0.181943 -0.131358 -0.218211 +v 0.180048 -0.144302 -0.218629 +v 0.175985 -0.155461 -0.217928 +v 0.170672 -0.164055 -0.217036 +v 0.175253 -0.131358 -0.228860 +v 0.173729 -0.144068 -0.228427 +v 0.170657 -0.154549 -0.226563 +v 0.166969 -0.162048 -0.224548 +v 0.131357 -0.186094 -0.206344 +v 0.131357 -0.181943 -0.218211 +v 0.131357 -0.175253 -0.228860 +v 0.143844 -0.186094 -0.193858 +v 0.144245 -0.184427 -0.206880 +v 0.144191 -0.180074 -0.218636 +v 0.144029 -0.173786 -0.228372 +v 0.155711 -0.181943 -0.193858 +v 0.156129 -0.180048 -0.206802 +v 0.155427 -0.175986 -0.217961 +v 0.154536 -0.170672 -0.226555 +v 0.166360 -0.175253 -0.193858 +v 0.165927 -0.173729 -0.206568 +v 0.164063 -0.170657 -0.217049 +v 0.162048 -0.166969 -0.224548 +v 0.131357 -0.131358 0.250000 +v 0.131357 -0.187500 0.193857 +v 0.187500 -0.131358 0.193857 +v 0.131357 -0.143844 0.248594 +v 0.131357 -0.155711 0.244443 +v 0.131357 -0.166360 0.237753 +v 0.143844 -0.131358 0.248594 +v 0.144245 -0.144380 0.246927 +v 0.144191 -0.156136 0.242574 +v 0.144029 -0.165872 0.236286 +v 0.155711 -0.131358 0.244443 +v 0.156129 -0.144302 0.242548 +v 0.155427 -0.155461 0.238485 +v 0.154536 -0.164055 0.233172 +v 0.166360 -0.131358 0.237753 +v 0.165927 -0.144068 0.236229 +v 0.164063 -0.154549 0.233157 +v 0.162048 -0.162048 0.229469 +v 0.143844 -0.186094 0.193857 +v 0.155711 -0.181943 0.193857 +v 0.166360 -0.175253 0.193857 +v 0.131357 -0.186094 0.206344 +v 0.144380 -0.184427 0.206745 +v 0.156136 -0.180074 0.206691 +v 0.165872 -0.173786 0.206529 +v 0.131357 -0.181943 0.218211 +v 0.144302 -0.180048 0.218629 +v 0.155460 -0.175986 0.217927 +v 0.164055 -0.170672 0.217036 +v 0.131357 -0.175253 0.228860 +v 0.144068 -0.173729 0.228427 +v 0.154549 -0.170657 0.226563 +v 0.162048 -0.166969 0.224548 +v 0.186094 -0.131358 0.206344 +v 0.181943 -0.131358 0.218211 +v 0.175253 -0.131358 0.228860 +v 0.186094 -0.143844 0.193857 +v 0.184426 -0.144245 0.206880 +v 0.180074 -0.144191 0.218636 +v 0.173786 -0.144029 0.228372 +v 0.181943 -0.155711 0.193857 +v 0.180048 -0.156129 0.206802 +v 0.175985 -0.155427 0.217961 +v 0.170672 -0.154536 0.226555 +v 0.175253 -0.166360 0.193857 +v 0.173729 -0.165927 0.206568 +v 0.170657 -0.164063 0.217049 +v 0.166969 -0.162048 0.224548 +v -0.187500 -0.131358 0.193857 +v -0.131358 -0.187500 0.193857 +v -0.131358 -0.131358 0.250000 +v -0.186094 -0.143844 0.193857 +v -0.181943 -0.155711 0.193857 +v -0.175253 -0.166360 0.193857 +v -0.186094 -0.131358 0.206344 +v -0.184427 -0.144380 0.206745 +v -0.180074 -0.156136 0.206691 +v -0.173786 -0.165872 0.206529 +v -0.181943 -0.131358 0.218211 +v -0.180048 -0.144302 0.218629 +v -0.175986 -0.155461 0.217927 +v -0.170672 -0.164055 0.217036 +v -0.175253 -0.131358 0.228860 +v -0.173729 -0.144068 0.228427 +v -0.170658 -0.154549 0.226563 +v -0.166969 -0.162048 0.224548 +v -0.131358 -0.186094 0.206344 +v -0.131358 -0.181943 0.218211 +v -0.131358 -0.175253 0.228860 +v -0.143844 -0.186094 0.193857 +v -0.144245 -0.184427 0.206880 +v -0.144192 -0.180074 0.218636 +v -0.144029 -0.173786 0.228372 +v -0.155711 -0.181943 0.193857 +v -0.156129 -0.180048 0.206802 +v -0.155428 -0.175986 0.217961 +v -0.154536 -0.170672 0.226555 +v -0.166360 -0.175253 0.193857 +v -0.165927 -0.173729 0.206568 +v -0.164063 -0.170657 0.217049 +v -0.162048 -0.166969 0.224548 +v -0.143844 -0.131358 0.248594 +v -0.155711 -0.131358 0.244443 +v -0.166360 -0.131358 0.237753 +v -0.131358 -0.143844 0.248594 +v -0.144380 -0.144245 0.246927 +v -0.156136 -0.144191 0.242574 +v -0.165872 -0.144029 0.236286 +v -0.131358 -0.155711 0.244443 +v -0.144302 -0.156129 0.242548 +v -0.155461 -0.155427 0.238485 +v -0.164055 -0.154536 0.233172 +v -0.131358 -0.166360 0.237753 +v -0.144068 -0.165927 0.236229 +v -0.154549 -0.164063 0.233157 +v -0.162048 -0.162048 0.229469 +v -0.131358 -0.131358 -0.250000 +v -0.131358 -0.187500 -0.193858 +v -0.187500 -0.131358 -0.193858 +v -0.131358 -0.143844 -0.248594 +v -0.131358 -0.155711 -0.244443 +v -0.131358 -0.166360 -0.237753 +v -0.143844 -0.131358 -0.248594 +v -0.144245 -0.144380 -0.246927 +v -0.144192 -0.156136 -0.242574 +v -0.144029 -0.165872 -0.236286 +v -0.155711 -0.131358 -0.244443 +v -0.156129 -0.144302 -0.242548 +v -0.155428 -0.155461 -0.238486 +v -0.154536 -0.164055 -0.233172 +v -0.166360 -0.131358 -0.237753 +v -0.165927 -0.144068 -0.236229 +v -0.164063 -0.154549 -0.233157 +v -0.162048 -0.162048 -0.229469 +v -0.143845 -0.186094 -0.193858 +v -0.155711 -0.181943 -0.193858 +v -0.166360 -0.175253 -0.193858 +v -0.131358 -0.186094 -0.206344 +v -0.144380 -0.184427 -0.206745 +v -0.156136 -0.180074 -0.206692 +v -0.165872 -0.173786 -0.206529 +v -0.131358 -0.181943 -0.218211 +v -0.144302 -0.180048 -0.218629 +v -0.155461 -0.175986 -0.217928 +v -0.164055 -0.170672 -0.217036 +v -0.131358 -0.175253 -0.228860 +v -0.144068 -0.173729 -0.228427 +v -0.154549 -0.170657 -0.226563 +v -0.162048 -0.166969 -0.224548 +v -0.186094 -0.131358 -0.206344 +v -0.181943 -0.131358 -0.218211 +v -0.175253 -0.131358 -0.228860 +v -0.186094 -0.143844 -0.193858 +v -0.184427 -0.144245 -0.206880 +v -0.180074 -0.144191 -0.218636 +v -0.173786 -0.144029 -0.228372 +v -0.181943 -0.155711 -0.193858 +v -0.180048 -0.156129 -0.206802 +v -0.175986 -0.155427 -0.217961 +v -0.170672 -0.154536 -0.226555 +v -0.175253 -0.166360 -0.193858 +v -0.173729 -0.165927 -0.206568 +v -0.170658 -0.164063 -0.217049 +v -0.166969 -0.162048 -0.224548 +v 0.131357 0.131358 -0.250000 +v 0.131357 0.187500 -0.193858 +v 0.187500 0.131358 -0.193858 +v 0.131357 0.143844 -0.248594 +v 0.131357 0.155711 -0.244443 +v 0.131357 0.166360 -0.237753 +v 0.143844 0.131358 -0.248594 +v 0.144245 0.144380 -0.246927 +v 0.144191 0.156136 -0.242574 +v 0.144029 0.165872 -0.236286 +v 0.155711 0.131358 -0.244443 +v 0.156129 0.144302 -0.242548 +v 0.155427 0.155461 -0.238486 +v 0.154536 0.164055 -0.233172 +v 0.166360 0.131358 -0.237753 +v 0.165927 0.144068 -0.236229 +v 0.164063 0.154549 -0.233157 +v 0.162048 0.162048 -0.229469 +v 0.143844 0.186094 -0.193858 +v 0.155711 0.181943 -0.193858 +v 0.166360 0.175253 -0.193858 +v 0.131357 0.186094 -0.206344 +v 0.144379 0.184427 -0.206745 +v 0.156136 0.180074 -0.206692 +v 0.165872 0.173786 -0.206529 +v 0.131357 0.181943 -0.218211 +v 0.144302 0.180048 -0.218629 +v 0.155460 0.175986 -0.217928 +v 0.164055 0.170672 -0.217036 +v 0.131357 0.175253 -0.228860 +v 0.144068 0.173729 -0.228427 +v 0.154549 0.170657 -0.226563 +v 0.162048 0.166969 -0.224548 +v 0.186094 0.131358 -0.206344 +v 0.181943 0.131358 -0.218211 +v 0.175253 0.131358 -0.228860 +v 0.186094 0.143844 -0.193858 +v 0.184426 0.144245 -0.206880 +v 0.180074 0.144191 -0.218636 +v 0.173786 0.144029 -0.228372 +v 0.181943 0.155711 -0.193858 +v 0.180048 0.156129 -0.206802 +v 0.175985 0.155427 -0.217961 +v 0.170672 0.154536 -0.226555 +v 0.175253 0.166360 -0.193858 +v 0.173729 0.165927 -0.206568 +v 0.170657 0.164063 -0.217049 +v 0.166969 0.162048 -0.224548 +v 0.131357 0.187500 0.193857 +v 0.131357 0.131358 0.250000 +v 0.187500 0.131358 0.193857 +v 0.131357 0.186094 0.206344 +v 0.131357 0.181943 0.218211 +v 0.131357 0.175253 0.228860 +v 0.143844 0.186094 0.193857 +v 0.144245 0.184427 0.206880 +v 0.144191 0.180074 0.218636 +v 0.144029 0.173786 0.228372 +v 0.155711 0.181943 0.193857 +v 0.156129 0.180048 0.206802 +v 0.155427 0.175986 0.217961 +v 0.154536 0.170672 0.226555 +v 0.166360 0.175253 0.193857 +v 0.165927 0.173729 0.206568 +v 0.164063 0.170657 0.217049 +v 0.162048 0.166969 0.224548 +v 0.143844 0.131358 0.248594 +v 0.155711 0.131358 0.244443 +v 0.166360 0.131358 0.237753 +v 0.131357 0.143844 0.248594 +v 0.144380 0.144245 0.246927 +v 0.156136 0.144191 0.242574 +v 0.165872 0.144029 0.236286 +v 0.131357 0.155711 0.244443 +v 0.144302 0.156129 0.242548 +v 0.155460 0.155427 0.238485 +v 0.164055 0.154536 0.233172 +v 0.131357 0.166360 0.237753 +v 0.144068 0.165927 0.236229 +v 0.154549 0.164063 0.233157 +v 0.162048 0.162048 0.229469 +v 0.186094 0.143844 0.193857 +v 0.181943 0.155711 0.193857 +v 0.175253 0.166360 0.193857 +v 0.186094 0.131358 0.206344 +v 0.184427 0.144380 0.206745 +v 0.180074 0.156136 0.206691 +v 0.173786 0.165872 0.206529 +v 0.181943 0.131358 0.218211 +v 0.180048 0.144302 0.218629 +v 0.175985 0.155461 0.217927 +v 0.170672 0.164055 0.217036 +v 0.175253 0.131358 0.228860 +v 0.173729 0.144068 0.228427 +v 0.170657 0.154549 0.226563 +v 0.166969 0.162048 0.224548 +v -0.131358 0.187500 0.193857 +v -0.187500 0.131358 0.193857 +v -0.131358 0.131358 0.250000 +v -0.143844 0.186094 0.193857 +v -0.155711 0.181943 0.193857 +v -0.166360 0.175253 0.193857 +v -0.131358 0.186094 0.206344 +v -0.144380 0.184427 0.206745 +v -0.156136 0.180074 0.206691 +v -0.165872 0.173786 0.206529 +v -0.131358 0.181943 0.218211 +v -0.144302 0.180048 0.218629 +v -0.155461 0.175986 0.217927 +v -0.164055 0.170672 0.217036 +v -0.131358 0.175253 0.228860 +v -0.144068 0.173729 0.228427 +v -0.154549 0.170657 0.226563 +v -0.162048 0.166969 0.224548 +v -0.186094 0.131358 0.206344 +v -0.181943 0.131358 0.218211 +v -0.175253 0.131358 0.228860 +v -0.186094 0.143844 0.193857 +v -0.184427 0.144245 0.206880 +v -0.180074 0.144191 0.218636 +v -0.173786 0.144029 0.228372 +v -0.181943 0.155711 0.193857 +v -0.180048 0.156129 0.206802 +v -0.175986 0.155427 0.217961 +v -0.170672 0.154536 0.226555 +v -0.175253 0.166360 0.193857 +v -0.173729 0.165927 0.206568 +v -0.170658 0.164063 0.217049 +v -0.166969 0.162048 0.224548 +v -0.131358 0.143844 0.248594 +v -0.131358 0.155711 0.244443 +v -0.131358 0.166360 0.237753 +v -0.143844 0.131358 0.248594 +v -0.144245 0.144380 0.246927 +v -0.144192 0.156136 0.242574 +v -0.144029 0.165872 0.236286 +v -0.155711 0.131358 0.244443 +v -0.156129 0.144302 0.242548 +v -0.155428 0.155461 0.238485 +v -0.154536 0.164055 0.233172 +v -0.166360 0.131358 0.237753 +v -0.165927 0.144068 0.236229 +v -0.164063 0.154549 0.233157 +v -0.162048 0.162048 0.229469 +v -0.131358 0.187500 -0.193858 +v -0.131358 0.131358 -0.250000 +v -0.187500 0.131358 -0.193858 +v -0.131358 0.186094 -0.206344 +v -0.131358 0.181943 -0.218211 +v -0.131358 0.175253 -0.228860 +v -0.143845 0.186094 -0.193858 +v -0.144245 0.184427 -0.206880 +v -0.144192 0.180074 -0.218636 +v -0.144029 0.173786 -0.228372 +v -0.155711 0.181943 -0.193858 +v -0.156129 0.180048 -0.206802 +v -0.155428 0.175986 -0.217961 +v -0.154536 0.170672 -0.226555 +v -0.166360 0.175253 -0.193858 +v -0.165927 0.173729 -0.206568 +v -0.164063 0.170657 -0.217049 +v -0.162048 0.166969 -0.224548 +v -0.143845 0.131358 -0.248594 +v -0.155711 0.131358 -0.244443 +v -0.166360 0.131358 -0.237753 +v -0.131358 0.143844 -0.248594 +v -0.144380 0.144245 -0.246927 +v -0.156136 0.144191 -0.242574 +v -0.165872 0.144029 -0.236286 +v -0.131358 0.155711 -0.244443 +v -0.144302 0.156129 -0.242548 +v -0.155461 0.155427 -0.238486 +v -0.164055 0.154536 -0.233172 +v -0.131358 0.166360 -0.237753 +v -0.144068 0.165927 -0.236229 +v -0.154549 0.164063 -0.233157 +v -0.162048 0.162048 -0.229469 +v -0.186094 0.143844 -0.193858 +v -0.181943 0.155711 -0.193858 +v -0.175253 0.166360 -0.193858 +v -0.186094 0.131358 -0.206344 +v -0.184427 0.144380 -0.206745 +v -0.180074 0.156136 -0.206692 +v -0.173786 0.165872 -0.206529 +v -0.181943 0.131358 -0.218211 +v -0.180048 0.144302 -0.218629 +v -0.175986 0.155461 -0.217928 +v -0.170672 0.164055 -0.217036 +v -0.175253 0.131358 -0.228860 +v -0.173729 0.144068 -0.228427 +v -0.170658 0.154549 -0.226563 +v -0.166969 0.162048 -0.224548 +v -0.038455 0.126770 -0.468750 +v -0.012985 0.131837 -0.468750 +v 0.012984 0.131837 -0.468750 +v 0.038455 0.126770 -0.468750 +v 0.062448 0.116832 -0.468750 +v 0.084041 0.102404 -0.468750 +v 0.102404 0.084041 -0.468750 +v 0.116832 0.062448 -0.468750 +v 0.126770 0.038455 -0.468750 +v 0.131836 0.012985 -0.468750 +v 0.131836 -0.012985 -0.468750 +v 0.116832 -0.062448 -0.468750 +v 0.102404 -0.084041 -0.468750 +v 0.084041 -0.102404 -0.468750 +v 0.062448 -0.116832 -0.468750 +v 0.038455 -0.126770 -0.468750 +v 0.012985 -0.131836 -0.468750 +v -0.012985 -0.131836 -0.468750 +v -0.038455 -0.126770 -0.468750 +v -0.062448 -0.116832 -0.468750 +v -0.102404 -0.084041 -0.468750 +v -0.084041 -0.102404 -0.468750 +v -0.116832 -0.062448 -0.468750 +v -0.126770 -0.038455 -0.468750 +v -0.131837 0.012985 -0.468750 +v -0.116832 0.062448 -0.468750 +v -0.126770 0.038455 -0.468750 +v -0.102404 0.084041 -0.468750 +v -0.084041 0.102404 -0.468750 +v -0.062448 0.116832 -0.468750 +v 0.126770 -0.038455 -0.468750 +v -0.131837 -0.012985 -0.468750 +v -0.059210 0.110774 -0.437501 +v -0.036461 0.120197 -0.437501 +v -0.012312 0.125000 -0.437501 +v 0.012311 0.125001 -0.437501 +v 0.036461 0.120197 -0.437501 +v 0.059210 0.110774 -0.437501 +v 0.079683 0.097094 -0.437501 +v 0.097094 0.079683 -0.437501 +v 0.110774 0.059210 -0.437501 +v 0.120197 0.036461 -0.437501 +v 0.125000 0.012312 -0.437501 +v 0.125000 -0.012311 -0.437501 +v 0.120197 -0.036461 -0.437501 +v 0.110774 -0.059210 -0.437501 +v 0.097094 -0.079683 -0.437501 +v 0.079683 -0.097094 -0.437501 +v 0.059210 -0.110774 -0.437501 +v 0.036461 -0.120197 -0.437501 +v 0.012311 -0.125000 -0.437501 +v -0.012312 -0.125000 -0.437501 +v -0.036461 -0.120197 -0.437501 +v -0.059210 -0.110774 -0.437501 +v -0.079683 -0.097094 -0.437501 +v -0.097094 -0.079683 -0.437501 +v -0.110774 -0.059210 -0.437501 +v -0.120197 -0.036461 -0.437501 +v -0.125001 -0.012311 -0.437501 +v -0.125001 0.012311 -0.437501 +v -0.120197 0.036461 -0.437501 +v -0.110774 0.059210 -0.437501 +v -0.097094 0.079683 -0.437501 +v -0.079683 0.097094 -0.437501 +v 0.120197 0.036461 0.437501 +v 0.125001 0.012312 0.437501 +v 0.125001 -0.012311 0.437501 +v 0.120197 -0.036461 0.437501 +v 0.110774 0.059210 0.437501 +v 0.131837 0.012985 0.468750 +v 0.126770 0.038455 0.468750 +v 0.131837 -0.012985 0.468750 +v 0.110774 -0.059210 0.437501 +v 0.126770 -0.038455 0.468750 +v 0.097094 0.079683 0.437501 +v 0.116832 0.062448 0.468750 +v 0.097094 -0.079683 0.437501 +v 0.116832 -0.062448 0.468750 +v 0.079683 0.097094 0.437501 +v 0.102404 0.084041 0.468750 +v 0.079683 -0.097094 0.437501 +v 0.102404 -0.084041 0.468750 +v 0.059210 0.110774 0.437501 +v 0.084041 0.102404 0.468750 +v 0.059210 -0.110774 0.437501 +v 0.084041 -0.102404 0.468750 +v 0.036461 0.120197 0.437501 +v 0.062448 0.116832 0.468750 +v 0.036461 -0.120197 0.437501 +v 0.062448 -0.116832 0.468750 +v 0.012311 0.125000 0.437501 +v 0.038455 0.126770 0.468750 +v 0.012311 -0.125001 0.437501 +v 0.038455 -0.126770 0.468750 +v -0.012312 0.125000 0.437501 +v 0.012985 0.131836 0.468750 +v -0.012311 -0.125001 0.437501 +v 0.012985 -0.131837 0.468750 +v -0.036461 0.120197 0.437501 +v -0.012985 0.131836 0.468750 +v -0.036461 -0.120197 0.437501 +v -0.012985 -0.131837 0.468750 +v -0.059210 0.110774 0.437501 +v -0.038455 0.126770 0.468750 +v -0.059210 -0.110774 0.437501 +v -0.038455 -0.126770 0.468750 +v -0.079683 0.097094 0.437501 +v -0.062448 0.116832 0.468750 +v -0.079683 -0.097094 0.437501 +v -0.062448 -0.116832 0.468750 +v -0.097094 0.079683 0.437501 +v -0.084041 0.102404 0.468750 +v -0.097094 -0.079683 0.437501 +v -0.084041 -0.102404 0.468750 +v -0.110774 0.059210 0.437501 +v -0.102404 0.084041 0.468750 +v -0.110774 -0.059210 0.437501 +v -0.102404 -0.084041 0.468750 +v -0.120197 0.036461 0.437501 +v -0.116832 0.062448 0.468750 +v -0.120197 -0.036461 0.437501 +v -0.116832 -0.062448 0.468750 +v -0.125000 0.012311 0.437501 +v -0.126770 0.038455 0.468750 +v -0.125000 -0.012311 0.437501 +v -0.126770 -0.038455 0.468750 +v -0.131836 0.012985 0.468750 +v -0.131836 -0.012985 0.468750 +v -0.063644 0.130078 0.460912 +v -0.063644 0.130078 0.468749 +v -0.062467 0.139022 0.468749 +v -0.062467 0.139022 0.460912 +v -0.054132 0.142474 0.460912 +v -0.046976 0.136982 0.460912 +v -0.048153 0.128039 0.460912 +v -0.056487 0.124587 0.460912 +v -0.056487 0.124587 0.468749 +v -0.054132 0.142474 0.468749 +v -0.046976 0.136982 0.468749 +v -0.048153 0.128039 0.468749 +v -0.046976 0.136982 -0.460914 +v -0.046976 0.136982 -0.468751 +v -0.054133 0.142474 -0.468751 +v -0.054133 0.142474 -0.460914 +v -0.062467 0.139022 -0.460914 +v -0.063644 0.130078 -0.460914 +v -0.056488 0.124587 -0.460914 +v -0.048153 0.128039 -0.460914 +v -0.048153 0.128039 -0.468751 +v -0.062467 0.139022 -0.468751 +v -0.063644 0.130078 -0.468751 +v -0.056488 0.124587 -0.468751 +v -0.136982 0.046976 0.460912 +v -0.136982 0.046976 0.468749 +v -0.142474 0.054133 0.468749 +v -0.142474 0.054133 0.460912 +v -0.139022 0.062467 0.460912 +v -0.130078 0.063644 0.460912 +v -0.124587 0.056488 0.460912 +v -0.128039 0.048154 0.460912 +v -0.128039 0.048154 0.468749 +v -0.139022 0.062467 0.468749 +v -0.130078 0.063644 0.468749 +v -0.124587 0.056488 0.468749 +v -0.130078 0.063644 -0.460914 +v -0.130078 0.063644 -0.468751 +v -0.139022 0.062467 -0.468751 +v -0.139022 0.062467 -0.460914 +v -0.142474 0.054133 -0.460914 +v -0.136982 0.046976 -0.460914 +v -0.128039 0.048153 -0.460914 +v -0.124587 0.056487 -0.460914 +v -0.124587 0.056487 -0.468751 +v -0.142474 0.054133 -0.468751 +v -0.136982 0.046976 -0.468751 +v -0.128039 0.048153 -0.468751 +v -0.130078 -0.063644 0.460912 +v -0.130078 -0.063644 0.468749 +v -0.139022 -0.062467 0.468749 +v -0.139022 -0.062467 0.460912 +v -0.142474 -0.054132 0.460912 +v -0.136982 -0.046976 0.460912 +v -0.128039 -0.048153 0.460912 +v -0.124587 -0.056487 0.460912 +v -0.124587 -0.056487 0.468749 +v -0.142474 -0.054132 0.468749 +v -0.136982 -0.046976 0.468749 +v -0.128039 -0.048153 0.468749 +v -0.136982 -0.046976 -0.460914 +v -0.136982 -0.046976 -0.468751 +v -0.142474 -0.054133 -0.468751 +v -0.142474 -0.054133 -0.460914 +v -0.139022 -0.062467 -0.460914 +v -0.130078 -0.063644 -0.460914 +v -0.124587 -0.056488 -0.460914 +v -0.128039 -0.048153 -0.460914 +v -0.128039 -0.048153 -0.468751 +v -0.139022 -0.062467 -0.468751 +v -0.130078 -0.063644 -0.468751 +v -0.124587 -0.056488 -0.468751 +v -0.046976 -0.136982 0.460912 +v -0.046976 -0.136982 0.468749 +v -0.054133 -0.142474 0.468749 +v -0.054133 -0.142474 0.460912 +v -0.062467 -0.139022 0.460912 +v -0.063644 -0.130078 0.460912 +v -0.056488 -0.124587 0.460912 +v -0.048153 -0.128039 0.460912 +v -0.048153 -0.128039 0.468749 +v -0.062467 -0.139022 0.468749 +v -0.063644 -0.130078 0.468749 +v -0.056488 -0.124587 0.468749 +v -0.063644 -0.130078 -0.460914 +v -0.063644 -0.130078 -0.468751 +v -0.062467 -0.139022 -0.468751 +v -0.062467 -0.139022 -0.460914 +v -0.054133 -0.142474 -0.460914 +v -0.046976 -0.136982 -0.460914 +v -0.048153 -0.128039 -0.460914 +v -0.056488 -0.124587 -0.460914 +v -0.056488 -0.124587 -0.468751 +v -0.054133 -0.142474 -0.468751 +v -0.046976 -0.136982 -0.468751 +v -0.048153 -0.128039 -0.468751 +v 0.063644 -0.130078 0.460912 +v 0.063644 -0.130078 0.468749 +v 0.062467 -0.139022 0.468749 +v 0.062467 -0.139022 0.460912 +v 0.054132 -0.142474 0.460912 +v 0.046976 -0.136982 0.460912 +v 0.048153 -0.128039 0.460912 +v 0.056487 -0.124587 0.460912 +v 0.056487 -0.124587 0.468749 +v 0.054132 -0.142474 0.468749 +v 0.046976 -0.136982 0.468749 +v 0.048153 -0.128039 0.468749 +v 0.046976 -0.136982 -0.460914 +v 0.046976 -0.136982 -0.468751 +v 0.054133 -0.142474 -0.468751 +v 0.054133 -0.142474 -0.460914 +v 0.062467 -0.139022 -0.460914 +v 0.063644 -0.130078 -0.460914 +v 0.056487 -0.124587 -0.460914 +v 0.048153 -0.128039 -0.460914 +v 0.048153 -0.128039 -0.468751 +v 0.062467 -0.139022 -0.468751 +v 0.063644 -0.130078 -0.468751 +v 0.056487 -0.124587 -0.468751 +v 0.136982 -0.046976 0.460912 +v 0.136982 -0.046976 0.468749 +v 0.142474 -0.054133 0.468749 +v 0.142474 -0.054133 0.460912 +v 0.139022 -0.062467 0.460912 +v 0.130078 -0.063644 0.460912 +v 0.124587 -0.056488 0.460912 +v 0.128039 -0.048153 0.460912 +v 0.128039 -0.048153 0.468749 +v 0.139022 -0.062467 0.468749 +v 0.130078 -0.063644 0.468749 +v 0.124587 -0.056488 0.468749 +v 0.130078 -0.063644 -0.460914 +v 0.130078 -0.063644 -0.468751 +v 0.139022 -0.062467 -0.468751 +v 0.139022 -0.062467 -0.460914 +v 0.142474 -0.054132 -0.460914 +v 0.136982 -0.046976 -0.460914 +v 0.128039 -0.048153 -0.460914 +v 0.124587 -0.056487 -0.460914 +v 0.124587 -0.056487 -0.468751 +v 0.142474 -0.054132 -0.468751 +v 0.136982 -0.046976 -0.468751 +v 0.128039 -0.048153 -0.468751 +v 0.130078 0.063644 0.460912 +v 0.130078 0.063644 0.468749 +v 0.139022 0.062467 0.468749 +v 0.139022 0.062467 0.460912 +v 0.142474 0.054132 0.460912 +v 0.136982 0.046976 0.460912 +v 0.128039 0.048153 0.460912 +v 0.124587 0.056487 0.460912 +v 0.124587 0.056487 0.468749 +v 0.142474 0.054132 0.468749 +v 0.136982 0.046976 0.468749 +v 0.128039 0.048153 0.468749 +v 0.136982 0.046976 -0.460914 +v 0.136982 0.046976 -0.468751 +v 0.142474 0.054133 -0.468751 +v 0.142474 0.054133 -0.460914 +v 0.139022 0.062467 -0.460914 +v 0.130078 0.063644 -0.460914 +v 0.124587 0.056487 -0.460914 +v 0.128039 0.048153 -0.460914 +v 0.128039 0.048153 -0.468751 +v 0.139022 0.062467 -0.468751 +v 0.130078 0.063644 -0.468751 +v 0.124587 0.056487 -0.468751 +v 0.046976 0.136982 0.460912 +v 0.046976 0.136982 0.468749 +v 0.054133 0.142474 0.468749 +v 0.054133 0.142474 0.460912 +v 0.062467 0.139022 0.460912 +v 0.063644 0.130078 0.460912 +v 0.056488 0.124587 0.460912 +v 0.048154 0.128039 0.460912 +v 0.048154 0.128039 0.468749 +v 0.062467 0.139022 0.468749 +v 0.063644 0.130078 0.468749 +v 0.056488 0.124587 0.468749 +v 0.063644 0.130078 -0.460914 +v 0.063644 0.130078 -0.468751 +v 0.062467 0.139022 -0.468751 +v 0.062467 0.139022 -0.460914 +v 0.054132 0.142474 -0.460914 +v 0.046976 0.136982 -0.460914 +v 0.048153 0.128039 -0.460914 +v 0.056487 0.124587 -0.460914 +v 0.056487 0.124587 -0.468751 +v 0.054132 0.142474 -0.468751 +v 0.046976 0.136982 -0.468751 +v 0.048153 0.128039 -0.468751 +v 0.079683 0.097094 -0.097094 +v 0.097094 0.079683 -0.079683 +v 0.110774 0.059210 -0.059210 +v 0.120197 0.036461 -0.036461 +v 0.125000 0.012312 -0.012312 +v 0.125000 0.012312 0.012311 +v 0.120197 0.036461 0.036461 +v 0.125000 -0.012312 -0.012312 +v 0.120197 -0.036461 -0.036461 +v 0.110774 -0.059210 -0.059210 +v 0.097094 -0.079683 -0.079683 +v 0.079683 -0.097094 -0.097094 +v 0.059210 -0.110774 -0.110774 +v 0.036461 -0.120197 -0.120197 +v 0.012311 -0.125000 -0.125000 +v -0.012311 -0.125000 -0.125000 +v -0.036461 -0.120197 -0.120197 +v -0.059210 -0.110774 -0.110774 +v -0.079683 -0.097094 -0.097094 +v -0.097094 -0.079683 -0.079683 +v -0.120197 -0.036461 -0.036461 +v 0.110774 0.059210 0.059210 +v 0.097094 0.079683 0.079683 +v 0.079683 0.097094 0.097094 +v 0.059210 0.110774 0.110774 +v 0.036461 0.120197 0.120197 +v 0.012311 -0.125001 0.125000 +v -0.036461 0.120197 0.120197 +v -0.059210 -0.110774 0.110774 +v -0.079683 0.097094 0.097094 +v -0.079683 -0.097094 0.097094 +v -0.097094 -0.079683 0.079683 +v -0.110774 0.059210 0.059210 +v -0.120197 -0.036461 0.036461 +v -0.088389 -0.088389 0.088389 +v 0.088389 0.088389 0.088389 +v 0.088389 0.088389 -0.088389 +v -0.088389 0.088389 -0.088389 +v -0.088389 -0.088389 -0.088389 +v 0.088389 -0.088389 -0.088389 +v 0.125000 -0.012312 0.012312 +v 0.120197 -0.036461 0.036461 +v 0.110774 -0.059210 0.059210 +v 0.097094 -0.079683 0.079683 +v 0.079683 -0.097094 0.097094 +v 0.059210 -0.110774 0.110774 +v 0.036461 -0.120197 0.120197 +v -0.012311 -0.125000 0.125000 +v -0.036461 -0.120197 0.120197 +v -0.110774 -0.059210 0.059210 +v -0.125000 -0.012311 0.012311 +v -0.125000 -0.012311 -0.012311 +v -0.110774 -0.059210 -0.059210 +v 0.059210 0.110774 -0.110774 +v 0.036461 0.120197 -0.120197 +v 0.012311 0.125000 -0.125000 +v 0.012311 0.125001 0.125001 +v -0.012311 0.125001 -0.125000 +v -0.012311 0.125001 0.125000 +v -0.036461 0.120197 -0.120197 +v -0.059210 0.110774 -0.110774 +v -0.059210 0.110774 0.110774 +v -0.079683 0.097094 -0.097094 +v -0.097094 0.079683 -0.079683 +v -0.097094 0.079683 0.079683 +v -0.110774 0.059210 -0.059210 +v -0.120197 0.036461 -0.036461 +v -0.120197 0.036461 0.036461 +v -0.125000 0.012312 -0.012312 +v -0.125000 0.012312 0.012312 +v 0.125000 -0.012312 -0.125001 +v 0.125000 0.012311 -0.125001 +v 0.120197 0.036461 -0.120197 +v 0.110774 0.059210 -0.110774 +v 0.097094 0.079683 -0.097094 +v 0.079683 0.097094 -0.079683 +v 0.036461 0.120197 -0.036461 +v 0.012312 0.125000 -0.012312 +v -0.012311 0.125000 -0.012312 +v -0.036461 0.120197 -0.036461 +v -0.036461 0.120197 0.036461 +v -0.012311 0.125000 0.012312 +v 0.079683 0.097094 0.079683 +v 0.110774 0.059210 0.110774 +v 0.120197 0.036461 0.120197 +v 0.125000 0.012311 0.125000 +v 0.120197 -0.036461 0.120197 +v 0.097094 -0.079683 0.097094 +v 0.079683 -0.097094 0.079683 +v 0.036461 -0.120197 0.036461 +v -0.059210 0.110774 -0.059210 +v -0.059210 0.110774 0.059210 +v -0.079683 0.097094 -0.079683 +v -0.079683 0.097094 0.079683 +v -0.097094 0.079683 -0.097094 +v -0.097094 0.079683 0.097094 +v -0.110774 0.059210 -0.110774 +v -0.110774 0.059210 0.110774 +v -0.120197 0.036461 -0.120197 +v -0.120197 0.036461 0.120197 +v -0.125001 0.012311 -0.125000 +v -0.125000 0.012311 0.125001 +v -0.125001 -0.012311 -0.125000 +v -0.120197 -0.036461 -0.120197 +v -0.120197 -0.036461 0.120197 +v -0.110774 -0.059210 -0.110774 +v -0.097094 -0.079683 -0.097094 +v -0.079683 -0.097094 -0.079683 +v -0.059210 -0.110774 -0.059210 +v -0.036461 -0.120197 -0.036461 +v -0.012312 -0.125000 -0.012311 +v 0.036461 0.120197 0.036461 +v 0.012312 0.125000 0.012311 +v 0.059210 0.110774 -0.059210 +v 0.120197 -0.036461 -0.120197 +v 0.110774 -0.059210 -0.110774 +v 0.097094 -0.079683 -0.097094 +v 0.079683 -0.097094 -0.079683 +v 0.059210 -0.110774 -0.059210 +v 0.036461 -0.120197 -0.036461 +v 0.012311 -0.125000 -0.012311 +v 0.059210 0.110774 0.059210 +v 0.097094 0.079683 0.097094 +v -0.125000 -0.012311 0.125001 +v 0.125001 -0.012311 0.125000 +v -0.110774 -0.059210 0.110774 +v 0.110774 -0.059210 0.110774 +v -0.097094 -0.079683 0.097094 +v -0.079683 -0.097094 0.079683 +v -0.059210 -0.110774 0.059210 +v 0.059210 -0.110774 0.059210 +v -0.036461 -0.120197 0.036461 +v -0.012312 -0.125000 0.012311 +v 0.012312 -0.125000 0.012311 +v -0.088389 0.088389 0.088389 +v 0.088389 -0.088389 0.088389 +v 0.121367 0.099603 -0.500000 +v 0.138467 0.074012 -0.500000 +v 0.150245 0.045577 -0.500000 +v 0.156250 0.015390 -0.500000 +v 0.156250 -0.015389 -0.500000 +v 0.150245 -0.045576 -0.500000 +v 0.138467 -0.074012 -0.500000 +v 0.121367 -0.099603 -0.500000 +v 0.099603 -0.121367 -0.500000 +v 0.045576 -0.150245 -0.500000 +v -0.015389 -0.156250 -0.500000 +v -0.045576 -0.150245 -0.500000 +v -0.099603 -0.121367 -0.500000 +v -0.121367 -0.099603 -0.500000 +v -0.138467 -0.074012 -0.500000 +v -0.150245 -0.045576 -0.500000 +v -0.156250 -0.015389 -0.500000 +v -0.150245 0.045576 -0.500000 +v -0.138467 0.074012 -0.500000 +v -0.121367 0.099603 -0.500000 +v -0.074012 0.138467 -0.500000 +v -0.015389 0.156250 -0.500000 +v 0.015389 0.156250 -0.500000 +v 0.045576 0.150245 -0.500000 +v 0.074012 0.138467 -0.500000 +v 0.099603 0.121367 -0.500000 +v 0.074012 -0.138466 -0.500000 +v 0.015389 -0.156250 -0.500000 +v -0.074012 -0.138467 -0.500000 +v -0.156250 0.015389 -0.500000 +v -0.099603 0.121367 -0.500000 +v -0.045576 0.150245 -0.500000 +v 0.121367 0.099603 -0.468750 +v 0.099603 0.121367 -0.468750 +v 0.138467 0.074012 -0.468750 +v 0.150245 0.045577 -0.468750 +v 0.156250 0.015390 -0.468750 +v 0.156250 -0.015389 -0.468750 +v 0.150245 -0.045576 -0.468750 +v 0.138467 -0.074012 -0.468750 +v 0.121367 -0.099603 -0.468750 +v 0.099603 -0.121367 -0.468750 +v 0.074012 -0.138466 -0.468750 +v 0.045576 -0.150245 -0.468750 +v 0.015389 -0.156250 -0.468750 +v -0.015389 -0.156250 -0.468750 +v -0.045576 -0.150245 -0.468750 +v -0.074012 -0.138467 -0.468750 +v -0.099603 -0.121367 -0.468750 +v -0.121367 -0.099603 -0.468750 +v -0.138467 -0.074012 -0.468750 +v -0.150245 -0.045576 -0.468750 +v -0.156250 -0.015389 -0.468750 +v -0.156250 0.015389 -0.468750 +v -0.138467 0.074012 -0.468750 +v -0.150245 0.045576 -0.468750 +v -0.121367 0.099603 -0.468750 +v -0.099603 0.121367 -0.468750 +v -0.074012 0.138467 -0.468750 +v -0.045576 0.150245 -0.468750 +v 0.015389 0.156250 -0.468750 +v -0.015389 0.156250 -0.468750 +v 0.045576 0.150245 -0.468750 +v 0.074012 0.138467 -0.468750 +v 0.074012 -0.138466 0.468750 +v 0.045576 -0.150245 0.468750 +v 0.015389 -0.156250 0.468750 +v 0.099603 -0.121367 0.468750 +v -0.015389 -0.156250 0.468750 +v 0.138467 -0.074012 0.468750 +v 0.121367 -0.099603 0.468750 +v 0.099603 -0.121367 0.500000 +v 0.074012 -0.138467 0.500000 +v 0.045576 -0.150245 0.500000 +v 0.015389 -0.156250 0.500000 +v -0.015389 -0.156250 0.500000 +v 0.150245 -0.045576 0.468750 +v 0.121367 -0.099603 0.500000 +v -0.045576 -0.150245 0.468750 +v -0.045576 -0.150245 0.500000 +v 0.156250 -0.015389 0.468750 +v 0.150245 -0.045576 0.500000 +v 0.138467 -0.074012 0.500000 +v -0.074012 -0.138467 0.468750 +v -0.074012 -0.138467 0.500000 +v 0.156250 0.015389 0.468750 +v 0.156250 -0.015389 0.500000 +v -0.099603 -0.121367 0.468750 +v -0.099603 -0.121367 0.500000 +v 0.150245 0.045576 0.468750 +v 0.156250 0.015389 0.500000 +v -0.121367 -0.099603 0.468750 +v -0.121367 -0.099603 0.500000 +v 0.138467 0.074012 0.468750 +v 0.150245 0.045576 0.500000 +v -0.150245 -0.045576 0.468750 +v -0.138467 -0.074012 0.468750 +v -0.138467 -0.074012 0.500000 +v 0.121367 0.099603 0.468750 +v 0.138467 0.074012 0.500000 +v -0.156250 -0.015389 0.468750 +v -0.150245 -0.045576 0.500000 +v 0.099604 0.121367 0.468750 +v 0.121367 0.099603 0.500000 +v -0.156250 0.015389 0.468750 +v -0.156250 -0.015389 0.500000 +v 0.074012 0.138466 0.468750 +v 0.099604 0.121367 0.500000 +v -0.150245 0.045576 0.468750 +v -0.156250 0.015389 0.500000 +v 0.045577 0.150245 0.468750 +v 0.074012 0.138466 0.500000 +v -0.138467 0.074012 0.468750 +v -0.150245 0.045576 0.500000 +v 0.015389 0.156249 0.468750 +v 0.045577 0.150245 0.500000 +v -0.015389 0.156250 0.500000 +v -0.121367 0.099603 0.468750 +v -0.138467 0.074012 0.500000 +v -0.015389 0.156250 0.468750 +v 0.015389 0.156250 0.500000 +v -0.074012 0.138467 0.500000 +v -0.045576 0.150245 0.500000 +v -0.099603 0.121367 0.500000 +v -0.121367 0.099603 0.500000 +v -0.045576 0.150245 0.468750 +v -0.099603 0.121367 0.468750 +v -0.074012 0.138467 0.468750 +v -0.108578 0.095821 0.460912 +v -0.108578 0.095821 0.468749 +v -0.110913 0.104534 0.468749 +v -0.110913 0.104534 0.460912 +v -0.104534 0.110913 0.460912 +v -0.095821 0.108578 0.460912 +v -0.093486 0.099865 0.460912 +v -0.099865 0.093486 0.460912 +v -0.099865 0.093486 0.468749 +v -0.104534 0.110913 0.468749 +v -0.095821 0.108578 0.468749 +v -0.093486 0.099865 0.468749 +v -0.095821 0.108578 -0.460914 +v -0.095821 0.108578 -0.468751 +v -0.104534 0.110913 -0.468751 +v -0.104534 0.110913 -0.460914 +v -0.110913 0.104534 -0.460914 +v -0.108578 0.095821 -0.460914 +v -0.099865 0.093486 -0.460914 +v -0.093486 0.099865 -0.460914 +v -0.093486 0.099865 -0.468751 +v -0.110913 0.104534 -0.468751 +v -0.108578 0.095821 -0.468751 +v -0.099865 0.093486 -0.468751 +v -0.144532 -0.009021 0.460912 +v -0.144532 -0.009021 0.468749 +v -0.152344 -0.004510 0.468749 +v -0.152344 -0.004510 0.460912 +v -0.152344 0.004510 0.460912 +v -0.144532 0.009021 0.460912 +v -0.136720 0.004510 0.460912 +v -0.136720 -0.004510 0.460912 +v -0.136720 -0.004510 0.468749 +v -0.152344 0.004510 0.468749 +v -0.144532 0.009021 0.468749 +v -0.136720 0.004510 0.468749 +v -0.144532 0.009021 -0.460914 +v -0.144532 0.009021 -0.468751 +v -0.152344 0.004510 -0.468751 +v -0.152344 0.004510 -0.460914 +v -0.152344 -0.004510 -0.460914 +v -0.144532 -0.009021 -0.460914 +v -0.136720 -0.004510 -0.460914 +v -0.136720 0.004510 -0.460914 +v -0.136720 0.004510 -0.468751 +v -0.152344 -0.004510 -0.468751 +v -0.144532 -0.009021 -0.468751 +v -0.136720 -0.004510 -0.468751 +v -0.095821 -0.108578 0.460912 +v -0.095821 -0.108578 0.468749 +v -0.104534 -0.110913 0.468749 +v -0.104534 -0.110913 0.460912 +v -0.110913 -0.104534 0.460912 +v -0.108578 -0.095821 0.460912 +v -0.099865 -0.093486 0.460912 +v -0.093486 -0.099865 0.460912 +v -0.093486 -0.099865 0.468749 +v -0.110913 -0.104534 0.468749 +v -0.108578 -0.095821 0.468749 +v -0.099865 -0.093486 0.468749 +v -0.108578 -0.095821 -0.460914 +v -0.108578 -0.095821 -0.468751 +v -0.110913 -0.104534 -0.468751 +v -0.110913 -0.104534 -0.460914 +v -0.104534 -0.110913 -0.460914 +v -0.095821 -0.108578 -0.460914 +v -0.093486 -0.099865 -0.460914 +v -0.099865 -0.093486 -0.460914 +v -0.099865 -0.093486 -0.468751 +v -0.104534 -0.110913 -0.468751 +v -0.095821 -0.108578 -0.468751 +v -0.093486 -0.099865 -0.468751 +v 0.009021 -0.144532 0.460912 +v 0.009021 -0.144532 0.468749 +v 0.004510 -0.152344 0.468749 +v 0.004510 -0.152344 0.460912 +v -0.004510 -0.152344 0.460912 +v -0.009021 -0.144532 0.460912 +v -0.004510 -0.136720 0.460912 +v 0.004510 -0.136720 0.460912 +v 0.004510 -0.136720 0.468749 +v -0.004510 -0.152344 0.468749 +v -0.009021 -0.144532 0.468749 +v -0.004510 -0.136720 0.468749 +v -0.009021 -0.144532 -0.460914 +v -0.009021 -0.144532 -0.468751 +v -0.004510 -0.152344 -0.468751 +v -0.004510 -0.152344 -0.460914 +v 0.004510 -0.152344 -0.460914 +v 0.009021 -0.144532 -0.460914 +v 0.004510 -0.136720 -0.460914 +v -0.004510 -0.136720 -0.460914 +v -0.004510 -0.136720 -0.468751 +v 0.004510 -0.152344 -0.468751 +v 0.009021 -0.144532 -0.468751 +v 0.004510 -0.136720 -0.468751 +v 0.108578 -0.095821 0.460912 +v 0.108578 -0.095821 0.468749 +v 0.110913 -0.104534 0.468749 +v 0.110913 -0.104534 0.460912 +v 0.104534 -0.110913 0.460912 +v 0.095821 -0.108578 0.460912 +v 0.093486 -0.099865 0.460912 +v 0.099865 -0.093486 0.460912 +v 0.099865 -0.093486 0.468749 +v 0.104534 -0.110913 0.468749 +v 0.095821 -0.108578 0.468749 +v 0.093486 -0.099865 0.468749 +v 0.095821 -0.108578 -0.460914 +v 0.095821 -0.108578 -0.468751 +v 0.104534 -0.110913 -0.468751 +v 0.104534 -0.110913 -0.460914 +v 0.110913 -0.104534 -0.460914 +v 0.108578 -0.095821 -0.460914 +v 0.099865 -0.093486 -0.460914 +v 0.093486 -0.099865 -0.460914 +v 0.093486 -0.099865 -0.468751 +v 0.110913 -0.104534 -0.468751 +v 0.108578 -0.095821 -0.468751 +v 0.099865 -0.093486 -0.468751 +v 0.144532 0.009021 0.460912 +v 0.144532 0.009021 0.468749 +v 0.152344 0.004510 0.468749 +v 0.152344 0.004510 0.460912 +v 0.152344 -0.004510 0.460912 +v 0.144532 -0.009021 0.460912 +v 0.136720 -0.004510 0.460912 +v 0.136720 0.004510 0.460912 +v 0.136720 0.004510 0.468749 +v 0.152344 -0.004510 0.468749 +v 0.144532 -0.009021 0.468749 +v 0.136720 -0.004510 0.468749 +v 0.144532 -0.009021 -0.460914 +v 0.144532 -0.009021 -0.468751 +v 0.152344 -0.004510 -0.468751 +v 0.152344 -0.004510 -0.460914 +v 0.152344 0.004510 -0.460914 +v 0.144532 0.009021 -0.460914 +v 0.136720 0.004510 -0.460914 +v 0.136720 -0.004510 -0.460914 +v 0.136720 -0.004510 -0.468751 +v 0.152344 0.004510 -0.468751 +v 0.144532 0.009021 -0.468751 +v 0.136720 0.004510 -0.468751 +v 0.095821 0.108578 0.460912 +v 0.095821 0.108578 0.468749 +v 0.104534 0.110913 0.468749 +v 0.104534 0.110913 0.460912 +v 0.110913 0.104534 0.460912 +v 0.108578 0.095821 0.460912 +v 0.099865 0.093486 0.460912 +v 0.093486 0.099865 0.460912 +v 0.093486 0.099865 0.468749 +v 0.110913 0.104534 0.468749 +v 0.108578 0.095821 0.468749 +v 0.099865 0.093486 0.468749 +v 0.108578 0.095821 -0.460914 +v 0.108578 0.095821 -0.468751 +v 0.110913 0.104534 -0.468751 +v 0.110913 0.104534 -0.460914 +v 0.104534 0.110913 -0.460914 +v 0.095821 0.108578 -0.460914 +v 0.093486 0.099865 -0.460914 +v 0.099865 0.093486 -0.460914 +v 0.099865 0.093486 -0.468751 +v 0.104534 0.110913 -0.468751 +v 0.095821 0.108578 -0.468751 +v 0.093486 0.099865 -0.468751 +v -0.009021 0.144532 0.460912 +v -0.009021 0.144532 0.468749 +v -0.004510 0.152344 0.468749 +v -0.004510 0.152344 0.460912 +v 0.004511 0.152344 0.460912 +v 0.009021 0.144532 0.460912 +v 0.004511 0.136720 0.460912 +v -0.004510 0.136720 0.460912 +v -0.004510 0.136720 0.468749 +v 0.004511 0.152344 0.468749 +v 0.009021 0.144532 0.468749 +v 0.004510 0.136720 0.468749 +v 0.009021 0.144532 -0.460914 +v 0.009021 0.144532 -0.468751 +v 0.004510 0.152344 -0.468751 +v 0.004510 0.152344 -0.460914 +v -0.004510 0.152344 -0.460914 +v -0.009021 0.144532 -0.460914 +v -0.004510 0.136720 -0.460914 +v 0.004510 0.136720 -0.460914 +v 0.004510 0.136720 -0.468751 +v -0.004510 0.152344 -0.468751 +v -0.009021 0.144532 -0.468751 +v -0.004510 0.136720 -0.468751 +v 0.125000 0.012312 -0.000000 +v -0.097094 -0.079683 0.000000 +v -0.110774 -0.059210 0.000000 +v -0.120197 -0.036461 0.000000 +v -0.120197 0.036461 0.000000 +v -0.110774 0.059210 0.000000 +v -0.097094 0.079683 0.000000 +v -0.036461 0.120197 -0.000000 +v -0.059210 0.110774 -0.000000 +v -0.079683 0.097094 -0.000000 +v 0.036461 0.120197 -0.000000 +v -0.125000 -0.012311 0.000000 +v 0.059210 0.110774 -0.000000 +v 0.079683 0.097094 -0.000000 +v 0.097094 0.079683 -0.000000 +v 0.110774 0.059210 -0.000000 +v 0.120197 0.036461 -0.000000 +v -0.125000 0.012312 0.000000 +v -0.012311 0.125000 -0.000000 +v 0.012312 -0.125000 0.000000 +v -0.012312 -0.125000 -0.000000 +v 0.012312 0.125000 -0.000000 +v 0.125000 -0.012312 0.000000 +v -0.079683 -0.097094 -0.000000 +v -0.059210 -0.110774 -0.000000 +v -0.036461 -0.120197 -0.000000 +v 0.097094 -0.079683 0.000000 +v 0.110774 -0.059210 0.000000 +v 0.120197 -0.036461 0.000000 +v 0.079683 -0.097094 0.000000 +v 0.059210 -0.110774 0.000000 +v 0.036461 -0.120197 -0.000000 +v 0.000000 0.125000 0.012312 +v 0.000000 0.125000 -0.012312 +v 0.000000 0.125000 -0.000000 +v 0.125000 0.000000 -0.012312 +v 0.125000 0.000000 0.012312 +v 0.125000 0.000000 0.000000 +v -0.125000 0.000000 0.012312 +v -0.125000 0.000000 -0.012311 +v -0.125000 0.000000 0.000000 +v 0.000000 -0.125000 0.012311 +v -0.000000 -0.125000 -0.012311 +v 0.000000 -0.125000 0.000000 +vt 0.2883 0.2099 +vt 0.0450 0.2099 +vt 0.0450 0.0450 +vt 0.2883 0.0450 +vt 0.7981 0.9549 +vt 0.5549 0.9549 +vt 0.5549 0.7901 +vt 0.7981 0.7901 +vt 0.0450 0.2901 +vt 0.2883 0.2901 +vt 0.2883 0.4550 +vt 0.0450 0.4550 +vt 0.2999 0.9550 +vt 0.2999 0.7901 +vt 0.4648 0.7901 +vt 0.4648 0.9550 +vt 0.2099 0.7901 +vt 0.2099 0.9550 +vt 0.0450 0.9550 +vt 0.0450 0.7901 +vt 0.0450 0.9628 +vt 0.0369 0.9631 +vt 0.0372 0.9550 +vt 0.0450 0.9703 +vt 0.0370 0.9705 +vt 0.0450 0.9769 +vt 0.0371 0.9766 +vt 0.0450 0.9902 +vt 0.0371 0.9902 +vt 0.0295 0.9631 +vt 0.0297 0.9550 +vt 0.0299 0.9701 +vt 0.0305 0.9755 +vt 0.0305 0.9902 +vt 0.0233 0.9629 +vt 0.0231 0.9550 +vt 0.0245 0.9695 +vt 0.0258 0.9742 +vt 0.0258 0.9902 +vt 0.5548 0.9550 +vt 0.5548 0.9628 +vt 0.5467 0.9631 +vt 0.5470 0.9550 +vt 0.5548 0.9703 +vt 0.5467 0.9705 +vt 0.5548 0.9769 +vt 0.5468 0.9766 +vt 0.5548 0.9902 +vt 0.5468 0.9902 +vt 0.5392 0.9631 +vt 0.5395 0.9550 +vt 0.5397 0.9701 +vt 0.5402 0.9755 +vt 0.5402 0.9902 +vt 0.5331 0.9630 +vt 0.5328 0.9550 +vt 0.5343 0.9695 +vt 0.5355 0.9742 +vt 0.5355 0.9902 +vt 0.2961 0.2099 +vt 0.2965 0.2180 +vt 0.2883 0.2177 +vt 0.3036 0.2099 +vt 0.3039 0.2179 +vt 0.3103 0.2099 +vt 0.3100 0.2178 +vt 0.3235 0.2099 +vt 0.3235 0.2178 +vt 0.2964 0.2254 +vt 0.2883 0.2252 +vt 0.3034 0.2250 +vt 0.3088 0.2244 +vt 0.3235 0.2244 +vt 0.2963 0.2316 +vt 0.2883 0.2318 +vt 0.3029 0.2304 +vt 0.3076 0.2291 +vt 0.3235 0.2291 +vt 0.0098 0.9742 +vt 0.4726 0.9550 +vt 0.4729 0.9631 +vt 0.4648 0.9628 +vt 0.4801 0.9550 +vt 0.4803 0.9630 +vt 0.4867 0.9550 +vt 0.4864 0.9629 +vt 0.5000 0.9550 +vt 0.5000 0.9629 +vt 0.4729 0.9705 +vt 0.4648 0.9703 +vt 0.4799 0.9701 +vt 0.4853 0.9695 +vt 0.5000 0.9695 +vt 0.4727 0.9767 +vt 0.4648 0.9769 +vt 0.4793 0.9755 +vt 0.4840 0.9742 +vt 0.5000 0.9742 +vt 0.0450 0.2177 +vt 0.0369 0.2180 +vt 0.0372 0.2099 +vt 0.0450 0.2252 +vt 0.0370 0.2254 +vt 0.0450 0.2318 +vt 0.0371 0.2315 +vt 0.0450 0.2451 +vt 0.0371 0.2451 +vt 0.0295 0.2180 +vt 0.0297 0.2099 +vt 0.0299 0.2250 +vt 0.0305 0.2304 +vt 0.0305 0.2451 +vt 0.0233 0.2178 +vt 0.0231 0.2099 +vt 0.0245 0.2244 +vt 0.0258 0.2291 +vt 0.0258 0.2451 +vt 0.7981 0.9550 +vt 0.8059 0.9550 +vt 0.8062 0.9631 +vt 0.7981 0.9628 +vt 0.8133 0.9550 +vt 0.8136 0.9630 +vt 0.8200 0.9550 +vt 0.8197 0.9629 +vt 0.8333 0.9550 +vt 0.8333 0.9630 +vt 0.8062 0.9705 +vt 0.7981 0.9703 +vt 0.8132 0.9701 +vt 0.8186 0.9695 +vt 0.8333 0.9695 +vt 0.8060 0.9767 +vt 0.7981 0.9769 +vt 0.8126 0.9755 +vt 0.8173 0.9742 +vt 0.8333 0.9742 +vt 0.4840 0.9902 +vt 0.7981 0.7823 +vt 0.8062 0.7820 +vt 0.8059 0.7901 +vt 0.7981 0.7749 +vt 0.8061 0.7746 +vt 0.7981 0.7682 +vt 0.8060 0.7685 +vt 0.7981 0.7549 +vt 0.8061 0.7549 +vt 0.8136 0.7820 +vt 0.8134 0.7901 +vt 0.8132 0.7750 +vt 0.8126 0.7696 +vt 0.8126 0.7549 +vt 0.8198 0.7822 +vt 0.8200 0.7901 +vt 0.8186 0.7756 +vt 0.8173 0.7709 +vt 0.8173 0.7549 +vt 0.0372 0.0450 +vt 0.0369 0.0369 +vt 0.0450 0.0372 +vt 0.0297 0.0450 +vt 0.0295 0.0370 +vt 0.0231 0.0450 +vt 0.0234 0.0371 +vt 0.0098 0.0450 +vt 0.0098 0.0371 +vt 0.0369 0.0295 +vt 0.0450 0.0297 +vt 0.0299 0.0299 +vt 0.0245 0.0305 +vt 0.0098 0.0305 +vt 0.0371 0.0233 +vt 0.0450 0.0231 +vt 0.0305 0.0245 +vt 0.0258 0.0258 +vt 0.0098 0.0258 +vt 0.4648 0.7823 +vt 0.4729 0.7820 +vt 0.4726 0.7901 +vt 0.4648 0.7748 +vt 0.4728 0.7746 +vt 0.4648 0.7682 +vt 0.4727 0.7685 +vt 0.4648 0.7549 +vt 0.4727 0.7549 +vt 0.4803 0.7820 +vt 0.4801 0.7901 +vt 0.4799 0.7750 +vt 0.4793 0.7696 +vt 0.4793 0.7549 +vt 0.4865 0.7822 +vt 0.4867 0.7901 +vt 0.4853 0.7756 +vt 0.4840 0.7709 +vt 0.4840 0.7549 +vt 0.8333 0.7709 +vt 0.0372 0.7901 +vt 0.0369 0.7820 +vt 0.0450 0.7823 +vt 0.0297 0.7901 +vt 0.0295 0.7821 +vt 0.0231 0.7901 +vt 0.0234 0.7822 +vt 0.0098 0.7901 +vt 0.0098 0.7822 +vt 0.0369 0.7746 +vt 0.0450 0.7748 +vt 0.0299 0.7750 +vt 0.0245 0.7756 +vt 0.0098 0.7756 +vt 0.0371 0.7684 +vt 0.0450 0.7682 +vt 0.0305 0.7696 +vt 0.0258 0.7709 +vt 0.0098 0.7709 +vt 0.2883 0.0372 +vt 0.2964 0.0369 +vt 0.2961 0.0450 +vt 0.2883 0.0297 +vt 0.2964 0.0295 +vt 0.2883 0.0231 +vt 0.2963 0.0234 +vt 0.2883 0.0098 +vt 0.2963 0.0098 +vt 0.3038 0.0369 +vt 0.3036 0.0450 +vt 0.3034 0.0299 +vt 0.3028 0.0245 +vt 0.3029 0.0098 +vt 0.3100 0.0371 +vt 0.3103 0.0450 +vt 0.3088 0.0305 +vt 0.3076 0.0258 +vt 0.3076 0.0098 +vt 0.5470 0.7901 +vt 0.5467 0.7820 +vt 0.5549 0.7823 +vt 0.5396 0.7901 +vt 0.5393 0.7821 +vt 0.5329 0.7901 +vt 0.5332 0.7822 +vt 0.5196 0.7901 +vt 0.5196 0.7822 +vt 0.5467 0.7746 +vt 0.5549 0.7749 +vt 0.5397 0.7750 +vt 0.5343 0.7756 +vt 0.5196 0.7756 +vt 0.5469 0.7684 +vt 0.5549 0.7682 +vt 0.5403 0.7696 +vt 0.5356 0.7709 +vt 0.5196 0.7709 +vt 0.0258 0.7549 +vt 0.2177 0.9550 +vt 0.2180 0.9631 +vt 0.2099 0.9628 +vt 0.2252 0.9550 +vt 0.2254 0.9630 +vt 0.2318 0.9550 +vt 0.2315 0.9629 +vt 0.2451 0.9550 +vt 0.2451 0.9629 +vt 0.2180 0.9705 +vt 0.2099 0.9703 +vt 0.2250 0.9701 +vt 0.2304 0.9695 +vt 0.2451 0.9695 +vt 0.2178 0.9767 +vt 0.2099 0.9769 +vt 0.2244 0.9755 +vt 0.2291 0.9742 +vt 0.2451 0.9742 +vt 0.0450 0.4628 +vt 0.0369 0.4631 +vt 0.0372 0.4550 +vt 0.0450 0.4703 +vt 0.0370 0.4705 +vt 0.0450 0.4769 +vt 0.0371 0.4766 +vt 0.0450 0.4902 +vt 0.0371 0.4902 +vt 0.0295 0.4631 +vt 0.0297 0.4550 +vt 0.0299 0.4701 +vt 0.0305 0.4755 +vt 0.0305 0.4902 +vt 0.0233 0.4629 +vt 0.0231 0.4550 +vt 0.0245 0.4695 +vt 0.0258 0.4742 +vt 0.0258 0.4902 +vt 0.5548 0.7901 +vt 0.5470 0.7901 +vt 0.5466 0.7820 +vt 0.5548 0.7823 +vt 0.5395 0.7901 +vt 0.5392 0.7821 +vt 0.5328 0.7901 +vt 0.5331 0.7822 +vt 0.5196 0.7901 +vt 0.5196 0.7822 +vt 0.5467 0.7746 +vt 0.5548 0.7749 +vt 0.5397 0.7750 +vt 0.5343 0.7756 +vt 0.5196 0.7756 +vt 0.5468 0.7684 +vt 0.5548 0.7682 +vt 0.5402 0.7696 +vt 0.5355 0.7709 +vt 0.5196 0.7709 +vt 0.2291 0.9902 +vt 0.2961 0.4550 +vt 0.2965 0.4631 +vt 0.2883 0.4628 +vt 0.3036 0.4550 +vt 0.3039 0.4630 +vt 0.3103 0.4550 +vt 0.3100 0.4629 +vt 0.3235 0.4550 +vt 0.3235 0.4629 +vt 0.2964 0.4705 +vt 0.2883 0.4703 +vt 0.3034 0.4701 +vt 0.3088 0.4695 +vt 0.3235 0.4695 +vt 0.2963 0.4767 +vt 0.2883 0.4769 +vt 0.3029 0.4755 +vt 0.3076 0.4742 +vt 0.3235 0.4742 +vt 0.2999 0.9628 +vt 0.2918 0.9631 +vt 0.2921 0.9550 +vt 0.2999 0.9703 +vt 0.2919 0.9705 +vt 0.2999 0.9769 +vt 0.2920 0.9766 +vt 0.2999 0.9902 +vt 0.2920 0.9902 +vt 0.2844 0.9631 +vt 0.2847 0.9550 +vt 0.2848 0.9701 +vt 0.2854 0.9755 +vt 0.2854 0.9902 +vt 0.2782 0.9629 +vt 0.2780 0.9550 +vt 0.2794 0.9695 +vt 0.2807 0.9742 +vt 0.2807 0.9902 +vt 0.7981 0.7901 +vt 0.7981 0.7823 +vt 0.8061 0.7820 +vt 0.8059 0.7901 +vt 0.7981 0.7749 +vt 0.8061 0.7746 +vt 0.7981 0.7682 +vt 0.8060 0.7685 +vt 0.7981 0.7549 +vt 0.8060 0.7549 +vt 0.8136 0.7820 +vt 0.8133 0.7901 +vt 0.8132 0.7750 +vt 0.8126 0.7696 +vt 0.8126 0.7549 +vt 0.8198 0.7822 +vt 0.8200 0.7901 +vt 0.8186 0.7756 +vt 0.8173 0.7709 +vt 0.8173 0.7549 +vt 0.3076 0.4902 +vt 0.2883 0.2823 +vt 0.2964 0.2820 +vt 0.2961 0.2901 +vt 0.2883 0.2748 +vt 0.2964 0.2746 +vt 0.2883 0.2682 +vt 0.2963 0.2685 +vt 0.2883 0.2549 +vt 0.2963 0.2549 +vt 0.3038 0.2820 +vt 0.3036 0.2901 +vt 0.3034 0.2750 +vt 0.3028 0.2696 +vt 0.3029 0.2549 +vt 0.3100 0.2822 +vt 0.3103 0.2901 +vt 0.3088 0.2756 +vt 0.3076 0.2709 +vt 0.3076 0.2549 +vt 0.8059 0.9549 +vt 0.8063 0.9630 +vt 0.7981 0.9628 +vt 0.8134 0.9549 +vt 0.8136 0.9630 +vt 0.8200 0.9549 +vt 0.8197 0.9629 +vt 0.8333 0.9549 +vt 0.8333 0.9629 +vt 0.8062 0.9705 +vt 0.7981 0.9702 +vt 0.8132 0.9700 +vt 0.8186 0.9695 +vt 0.8333 0.9695 +vt 0.8061 0.9766 +vt 0.7981 0.9769 +vt 0.8126 0.9755 +vt 0.8173 0.9742 +vt 0.8333 0.9742 +vt 0.2921 0.7901 +vt 0.2918 0.7820 +vt 0.2999 0.7823 +vt 0.2847 0.7901 +vt 0.2844 0.7821 +vt 0.2780 0.7901 +vt 0.2783 0.7822 +vt 0.2647 0.7901 +vt 0.2647 0.7822 +vt 0.2918 0.7746 +vt 0.2999 0.7748 +vt 0.2848 0.7750 +vt 0.2794 0.7756 +vt 0.2647 0.7756 +vt 0.2920 0.7684 +vt 0.2999 0.7682 +vt 0.2854 0.7696 +vt 0.2807 0.7709 +vt 0.2647 0.7709 +vt 0.3235 0.2709 +vt 0.0372 0.2901 +vt 0.0369 0.2820 +vt 0.0450 0.2823 +vt 0.0297 0.2901 +vt 0.0295 0.2821 +vt 0.0231 0.2901 +vt 0.0234 0.2822 +vt 0.0098 0.2901 +vt 0.0098 0.2822 +vt 0.0369 0.2746 +vt 0.0450 0.2748 +vt 0.0299 0.2750 +vt 0.0245 0.2756 +vt 0.0098 0.2756 +vt 0.0371 0.2684 +vt 0.0450 0.2682 +vt 0.0305 0.2696 +vt 0.0258 0.2709 +vt 0.0098 0.2709 +vt 0.2099 0.7823 +vt 0.2180 0.7820 +vt 0.2177 0.7901 +vt 0.2099 0.7748 +vt 0.2179 0.7746 +vt 0.2099 0.7682 +vt 0.2178 0.7685 +vt 0.2099 0.7549 +vt 0.2178 0.7549 +vt 0.2254 0.7820 +vt 0.2252 0.7901 +vt 0.2250 0.7750 +vt 0.2244 0.7696 +vt 0.2244 0.7549 +vt 0.2316 0.7822 +vt 0.2318 0.7901 +vt 0.2304 0.7756 +vt 0.2291 0.7709 +vt 0.2291 0.7549 +vt 0.5549 0.9628 +vt 0.5468 0.9631 +vt 0.5470 0.9549 +vt 0.5549 0.9702 +vt 0.5468 0.9705 +vt 0.5549 0.9769 +vt 0.5469 0.9766 +vt 0.5549 0.9902 +vt 0.5469 0.9902 +vt 0.5393 0.9631 +vt 0.5396 0.9549 +vt 0.5398 0.9701 +vt 0.5403 0.9755 +vt 0.5403 0.9902 +vt 0.5332 0.9629 +vt 0.5329 0.9549 +vt 0.5343 0.9695 +vt 0.5356 0.9742 +vt 0.5356 0.9902 +vt 0.0258 0.2549 +vt 0.2099 0.9902 +vt 0.2883 0.4902 +vt 0.4648 0.9902 +vt 0.2883 0.2451 +vt 0.3235 0.2901 +vt 0.8333 0.7901 +vt 0.0098 0.2099 +vt 0.0450 0.2549 +vt 0.0450 0.7549 +vt 0.0450 0.0098 +vt 0.0098 0.4550 +vt 0.3235 0.0450 +vt 0.7745 0.5685 +vt 0.7829 0.5637 +vt 0.7829 0.5540 +vt 0.7745 0.5491 +vt 0.7661 0.5540 +vt 0.7661 0.5637 +vt 0.7745 0.5685 +vt 0.7829 0.5637 +vt 0.7829 0.5540 +vt 0.7745 0.5491 +vt 0.7661 0.5540 +vt 0.7661 0.5637 +vt 0.7745 0.5685 +vt 0.7829 0.5637 +vt 0.7829 0.5540 +vt 0.7745 0.5491 +vt 0.7661 0.5540 +vt 0.7661 0.5637 +vt 0.7745 0.5685 +vt 0.7829 0.5637 +vt 0.7829 0.5540 +vt 0.7745 0.5491 +vt 0.7661 0.5540 +vt 0.7661 0.5637 +vt 0.7745 0.5685 +vt 0.7829 0.5637 +vt 0.7829 0.5540 +vt 0.7745 0.5491 +vt 0.7661 0.5540 +vt 0.7661 0.5637 +vt 0.7745 0.5685 +vt 0.7829 0.5637 +vt 0.7829 0.5540 +vt 0.7745 0.5491 +vt 0.7661 0.5540 +vt 0.7661 0.5637 +vt 0.7745 0.5685 +vt 0.7829 0.5637 +vt 0.7829 0.5540 +vt 0.7745 0.5491 +vt 0.7661 0.5540 +vt 0.7661 0.5637 +vt 0.7745 0.5685 +vt 0.7829 0.5637 +vt 0.7829 0.5540 +vt 0.7745 0.5491 +vt 0.7661 0.5540 +vt 0.7661 0.5637 +vt 0.7745 0.5685 +vt 0.7829 0.5637 +vt 0.7829 0.5540 +vt 0.7745 0.5491 +vt 0.7661 0.5540 +vt 0.7661 0.5637 +vt 0.7745 0.5685 +vt 0.7829 0.5637 +vt 0.7829 0.5540 +vt 0.7745 0.5491 +vt 0.7661 0.5540 +vt 0.7661 0.5637 +vt 0.7745 0.5685 +vt 0.7829 0.5637 +vt 0.7829 0.5540 +vt 0.7745 0.5491 +vt 0.7661 0.5540 +vt 0.7661 0.5637 +vt 0.7745 0.5685 +vt 0.7829 0.5637 +vt 0.7829 0.5540 +vt 0.7745 0.5491 +vt 0.7661 0.5540 +vt 0.7661 0.5637 +vt 0.7745 0.5685 +vt 0.7829 0.5637 +vt 0.7829 0.5540 +vt 0.7745 0.5491 +vt 0.7661 0.5540 +vt 0.7661 0.5637 +vt 0.7745 0.5685 +vt 0.7829 0.5637 +vt 0.7829 0.5540 +vt 0.7745 0.5491 +vt 0.7661 0.5540 +vt 0.7661 0.5637 +vt 0.7745 0.5685 +vt 0.7829 0.5637 +vt 0.7829 0.5540 +vt 0.7745 0.5491 +vt 0.7661 0.5540 +vt 0.7661 0.5637 +vt 0.7745 0.5685 +vt 0.7829 0.5637 +vt 0.7829 0.5540 +vt 0.7745 0.5491 +vt 0.7661 0.5540 +vt 0.7661 0.5637 +vt 0.6198 0.6996 +vt 0.6334 0.7133 +vt 0.6494 0.7240 +vt 0.6672 0.7313 +vt 0.6861 0.7351 +vt 0.7054 0.7351 +vt 0.7243 0.7313 +vt 0.7421 0.7240 +vt 0.7581 0.7133 +vt 0.7717 0.6996 +vt 0.7824 0.6836 +vt 0.7898 0.6658 +vt 0.7935 0.6469 +vt 0.7935 0.6277 +vt 0.7898 0.6088 +vt 0.7824 0.5910 +vt 0.7717 0.5750 +vt 0.7581 0.5614 +vt 0.7421 0.5507 +vt 0.7243 0.5433 +vt 0.7054 0.5396 +vt 0.6861 0.5396 +vt 0.6672 0.5433 +vt 0.6494 0.5507 +vt 0.6334 0.5614 +vt 0.6198 0.5750 +vt 0.6091 0.5910 +vt 0.6017 0.6088 +vt 0.5980 0.6277 +vt 0.5980 0.6469 +vt 0.6017 0.6658 +vt 0.6091 0.6836 +vt 0.4897 0.5433 +vt 0.5074 0.5507 +vt 0.5235 0.5614 +vt 0.5371 0.5750 +vt 0.5478 0.5910 +vt 0.5551 0.6088 +vt 0.5589 0.6277 +vt 0.5589 0.6469 +vt 0.5551 0.6658 +vt 0.5478 0.6836 +vt 0.5371 0.6996 +vt 0.5235 0.7133 +vt 0.5074 0.7240 +vt 0.4897 0.7313 +vt 0.4708 0.7351 +vt 0.4515 0.7351 +vt 0.4326 0.7313 +vt 0.4148 0.7240 +vt 0.3988 0.7133 +vt 0.3852 0.6996 +vt 0.3745 0.6836 +vt 0.3671 0.6658 +vt 0.3634 0.6469 +vt 0.3634 0.6277 +vt 0.3671 0.6088 +vt 0.3745 0.5910 +vt 0.3852 0.5750 +vt 0.3988 0.5614 +vt 0.4148 0.5507 +vt 0.4326 0.5433 +vt 0.4515 0.5396 +vt 0.4708 0.5396 +vt 0.7054 0.5396 +vt 0.7243 0.5433 +vt 0.7421 0.5507 +vt 0.7581 0.5614 +vt 0.7717 0.5750 +vt 0.7824 0.5910 +vt 0.7898 0.6088 +vt 0.7935 0.6277 +vt 0.7935 0.6469 +vt 0.7898 0.6658 +vt 0.7824 0.6836 +vt 0.7717 0.6996 +vt 0.7581 0.7133 +vt 0.7421 0.7240 +vt 0.7243 0.7313 +vt 0.7054 0.7351 +vt 0.6861 0.7351 +vt 0.6672 0.7313 +vt 0.6494 0.7240 +vt 0.6334 0.7133 +vt 0.6198 0.6996 +vt 0.6091 0.6836 +vt 0.6017 0.6658 +vt 0.5980 0.6469 +vt 0.5980 0.6277 +vt 0.6017 0.6088 +vt 0.6091 0.5910 +vt 0.6198 0.5750 +vt 0.6334 0.5614 +vt 0.6494 0.5507 +vt 0.6672 0.5433 +vt 0.6861 0.5396 +vt 0.4148 0.5507 +vt 0.3988 0.5614 +vt 0.3852 0.5750 +vt 0.3745 0.5910 +vt 0.3671 0.6088 +vt 0.3634 0.6277 +vt 0.3634 0.6469 +vt 0.3671 0.6658 +vt 0.3745 0.6836 +vt 0.3852 0.6996 +vt 0.3988 0.7133 +vt 0.4148 0.7240 +vt 0.4326 0.7313 +vt 0.4515 0.7351 +vt 0.4708 0.7351 +vt 0.4897 0.7313 +vt 0.5074 0.7240 +vt 0.5235 0.7133 +vt 0.5371 0.6996 +vt 0.5478 0.6836 +vt 0.5551 0.6658 +vt 0.5589 0.6469 +vt 0.5589 0.6277 +vt 0.5551 0.6088 +vt 0.5478 0.5910 +vt 0.5371 0.5750 +vt 0.5235 0.5614 +vt 0.5074 0.5507 +vt 0.4897 0.5433 +vt 0.4708 0.5396 +vt 0.4515 0.5396 +vt 0.4326 0.5433 +vt 0.7745 0.5685 +vt 0.7829 0.5637 +vt 0.7829 0.5540 +vt 0.7745 0.5491 +vt 0.7661 0.5540 +vt 0.7661 0.5637 +vt 0.7745 0.5685 +vt 0.7829 0.5637 +vt 0.7829 0.5540 +vt 0.7745 0.5491 +vt 0.7661 0.5540 +vt 0.7661 0.5637 +vt 0.7745 0.5685 +vt 0.7829 0.5637 +vt 0.7829 0.5540 +vt 0.7745 0.5491 +vt 0.7661 0.5540 +vt 0.7661 0.5637 +vt 0.7745 0.5685 +vt 0.7829 0.5637 +vt 0.7829 0.5540 +vt 0.7745 0.5491 +vt 0.7661 0.5540 +vt 0.7661 0.5637 +vt 0.7745 0.5685 +vt 0.7829 0.5637 +vt 0.7829 0.5540 +vt 0.7745 0.5491 +vt 0.7661 0.5540 +vt 0.7661 0.5637 +vt 0.7745 0.5685 +vt 0.7829 0.5637 +vt 0.7829 0.5540 +vt 0.7745 0.5491 +vt 0.7661 0.5540 +vt 0.7661 0.5637 +vt 0.7745 0.5685 +vt 0.7829 0.5637 +vt 0.7829 0.5540 +vt 0.7745 0.5491 +vt 0.7661 0.5540 +vt 0.7661 0.5637 +vt 0.7745 0.5685 +vt 0.7829 0.5637 +vt 0.7829 0.5540 +vt 0.7745 0.5491 +vt 0.7661 0.5540 +vt 0.7661 0.5637 +vt 0.7745 0.5685 +vt 0.7829 0.5637 +vt 0.7829 0.5540 +vt 0.7745 0.5491 +vt 0.7661 0.5540 +vt 0.7661 0.5637 +vt 0.7745 0.5685 +vt 0.7829 0.5637 +vt 0.7829 0.5540 +vt 0.7745 0.5491 +vt 0.7661 0.5540 +vt 0.7661 0.5637 +vt 0.7745 0.5685 +vt 0.7829 0.5637 +vt 0.7829 0.5540 +vt 0.7745 0.5491 +vt 0.7661 0.5540 +vt 0.7661 0.5637 +vt 0.7745 0.5685 +vt 0.7829 0.5637 +vt 0.7829 0.5540 +vt 0.7745 0.5491 +vt 0.7661 0.5540 +vt 0.7661 0.5637 +vt 0.7745 0.5685 +vt 0.7829 0.5637 +vt 0.7829 0.5540 +vt 0.7745 0.5491 +vt 0.7661 0.5540 +vt 0.7661 0.5637 +vt 0.7745 0.5685 +vt 0.7829 0.5637 +vt 0.7829 0.5540 +vt 0.7745 0.5491 +vt 0.7661 0.5540 +vt 0.7661 0.5637 +vt 0.7745 0.5685 +vt 0.7829 0.5637 +vt 0.7829 0.5540 +vt 0.7745 0.5491 +vt 0.7661 0.5540 +vt 0.7661 0.5637 +vt 0.7745 0.5685 +vt 0.7829 0.5637 +vt 0.7829 0.5540 +vt 0.7745 0.5491 +vt 0.7661 0.5540 +vt 0.7661 0.5637 +vt 0.9359 0.8967 +vt 0.9307 0.9009 +vt 0.9304 0.9009 +vt 0.9354 0.8967 +vt 0.9359 0.8484 +vt 0.9401 0.8536 +vt 0.9396 0.8536 +vt 0.9354 0.8484 +vt 0.9401 0.8915 +vt 0.9396 0.8915 +vt 0.9307 0.8442 +vt 0.9304 0.8442 +vt 0.9433 0.8856 +vt 0.9427 0.8856 +vt 0.9248 0.8410 +vt 0.9246 0.8410 +vt 0.9452 0.8792 +vt 0.9446 0.8792 +vt 0.9184 0.8391 +vt 0.9183 0.8391 +vt 0.9459 0.8725 +vt 0.9452 0.8725 +vt 0.9184 0.9060 +vt 0.9118 0.9067 +vt 0.9183 0.9060 +vt 0.9118 0.8384 +vt 0.9452 0.8659 +vt 0.9446 0.8659 +vt 0.9248 0.9041 +vt 0.9246 0.9041 +vt 0.9433 0.8595 +vt 0.9427 0.8595 +vt 0.9427 0.8659 +vt 0.9409 0.8595 +vt 0.9238 0.9041 +vt 0.9293 0.9009 +vt 0.9380 0.8536 +vt 0.9341 0.8967 +vt 0.9341 0.8484 +vt 0.9380 0.8915 +vt 0.9293 0.8442 +vt 0.9409 0.8856 +vt 0.9238 0.8410 +vt 0.9427 0.8792 +vt 0.9179 0.8391 +vt 0.9433 0.8725 +vt 0.9179 0.9060 +vt 0.9275 0.8442 +vt 0.9226 0.8410 +vt 0.9380 0.8856 +vt 0.9396 0.8792 +vt 0.9173 0.8391 +vt 0.9401 0.8725 +vt 0.9173 0.9060 +vt 0.9396 0.8659 +vt 0.9226 0.9041 +vt 0.9380 0.8595 +vt 0.9275 0.9009 +vt 0.9354 0.8536 +vt 0.9318 0.8967 +vt 0.9318 0.8484 +vt 0.9354 0.8915 +vt 0.9341 0.8595 +vt 0.9318 0.8536 +vt 0.9252 0.9009 +vt 0.9288 0.8967 +vt 0.9288 0.8484 +vt 0.9318 0.8915 +vt 0.9252 0.8442 +vt 0.9341 0.8856 +vt 0.9210 0.8410 +vt 0.9354 0.8792 +vt 0.9165 0.8391 +vt 0.9359 0.8725 +vt 0.9165 0.9060 +vt 0.9354 0.8659 +vt 0.9210 0.9041 +vt 0.9190 0.8410 +vt 0.9155 0.8391 +vt 0.9304 0.8792 +vt 0.9307 0.8725 +vt 0.9155 0.9060 +vt 0.9304 0.8659 +vt 0.9190 0.9041 +vt 0.9293 0.8595 +vt 0.9223 0.9009 +vt 0.9275 0.8536 +vt 0.9252 0.8967 +vt 0.9252 0.8484 +vt 0.9275 0.8915 +vt 0.9223 0.8442 +vt 0.9293 0.8856 +vt 0.9190 0.9009 +vt 0.9210 0.8967 +vt 0.9226 0.8536 +vt 0.9210 0.8484 +vt 0.9226 0.8915 +vt 0.9190 0.8442 +vt 0.9238 0.8856 +vt 0.9168 0.8410 +vt 0.9246 0.8792 +vt 0.9143 0.8391 +vt 0.9248 0.8725 +vt 0.9143 0.9060 +vt 0.9246 0.8659 +vt 0.9168 0.9041 +vt 0.9238 0.8595 +vt 0.9183 0.8792 +vt 0.9184 0.8725 +vt 0.9131 0.9060 +vt 0.9131 0.8391 +vt 0.9183 0.8659 +vt 0.9143 0.9041 +vt 0.9179 0.8595 +vt 0.9155 0.9009 +vt 0.9173 0.8536 +vt 0.9165 0.8967 +vt 0.9165 0.8484 +vt 0.9173 0.8915 +vt 0.9155 0.8442 +vt 0.9179 0.8856 +vt 0.9143 0.8410 +vt 0.9118 0.8536 +vt 0.9118 0.8484 +vt 0.9118 0.8967 +vt 0.9118 0.8915 +vt 0.9118 0.8442 +vt 0.9118 0.8856 +vt 0.9118 0.8410 +vt 0.9118 0.8792 +vt 0.9118 0.8391 +vt 0.9118 0.8725 +vt 0.9118 0.9060 +vt 0.9118 0.8659 +vt 0.9118 0.9041 +vt 0.9118 0.8595 +vt 0.9118 0.9009 +vt 0.9105 0.9060 +vt 0.9105 0.8391 +vt 0.9051 0.8725 +vt 0.9052 0.8659 +vt 0.9092 0.9041 +vt 0.9056 0.8595 +vt 0.9081 0.9009 +vt 0.9062 0.8536 +vt 0.9071 0.8967 +vt 0.9071 0.8484 +vt 0.9062 0.8915 +vt 0.9081 0.8442 +vt 0.9056 0.8856 +vt 0.9092 0.8410 +vt 0.9052 0.8792 +vt 0.9025 0.8967 +vt 0.9009 0.8915 +vt 0.9025 0.8484 +vt 0.9045 0.8442 +vt 0.8997 0.8856 +vt 0.9068 0.8410 +vt 0.8990 0.8792 +vt 0.9092 0.8391 +vt 0.8987 0.8725 +vt 0.9092 0.9060 +vt 0.8990 0.8659 +vt 0.9068 0.9041 +vt 0.8997 0.8595 +vt 0.9045 0.9009 +vt 0.9009 0.8536 +vt 0.8928 0.8725 +vt 0.8932 0.8659 +vt 0.9081 0.9060 +vt 0.9045 0.9041 +vt 0.8942 0.8595 +vt 0.9012 0.9009 +vt 0.8960 0.8536 +vt 0.8984 0.8967 +vt 0.8984 0.8484 +vt 0.8960 0.8915 +vt 0.9012 0.8442 +vt 0.8942 0.8856 +vt 0.9045 0.8410 +vt 0.8932 0.8792 +vt 0.9081 0.8391 +vt 0.8947 0.8484 +vt 0.8984 0.8442 +vt 0.8917 0.8915 +vt 0.8895 0.8856 +vt 0.9025 0.8410 +vt 0.8881 0.8792 +vt 0.9071 0.8391 +vt 0.8876 0.8725 +vt 0.9071 0.9060 +vt 0.8881 0.8659 +vt 0.9025 0.9041 +vt 0.8895 0.8595 +vt 0.8984 0.9009 +vt 0.8917 0.8536 +vt 0.8947 0.8967 +vt 0.8839 0.8659 +vt 0.8856 0.8595 +vt 0.9009 0.9041 +vt 0.8960 0.9009 +vt 0.8882 0.8536 +vt 0.8917 0.8967 +vt 0.8917 0.8484 +vt 0.8882 0.8915 +vt 0.8960 0.8442 +vt 0.8856 0.8856 +vt 0.9009 0.8410 +vt 0.8839 0.8792 +vt 0.9062 0.8391 +vt 0.8834 0.8725 +vt 0.9062 0.9060 +vt 0.8942 0.8442 +vt 0.8997 0.8410 +vt 0.8826 0.8856 +vt 0.8808 0.8792 +vt 0.9056 0.8391 +vt 0.8802 0.8725 +vt 0.9056 0.9060 +vt 0.8808 0.8659 +vt 0.8997 0.9041 +vt 0.8826 0.8595 +vt 0.8942 0.9009 +vt 0.8856 0.8536 +vt 0.8895 0.8967 +vt 0.8895 0.8484 +vt 0.8856 0.8915 +vt 0.8990 0.9041 +vt 0.8932 0.9009 +vt 0.8808 0.8595 +vt 0.8839 0.8536 +vt 0.8881 0.8967 +vt 0.8881 0.8484 +vt 0.8839 0.8915 +vt 0.8932 0.8442 +vt 0.8808 0.8856 +vt 0.8990 0.8410 +vt 0.8789 0.8792 +vt 0.9052 0.8391 +vt 0.8783 0.8725 +vt 0.9052 0.9060 +vt 0.8789 0.8659 +vt 0.8802 0.8856 +vt 0.8783 0.8792 +vt 0.8987 0.8410 +vt 0.9051 0.8391 +vt 0.8776 0.8725 +vt 0.9051 0.9060 +vt 0.8783 0.8659 +vt 0.8987 0.9041 +vt 0.8802 0.8595 +vt 0.8928 0.9009 +vt 0.8834 0.8536 +vt 0.8876 0.8967 +vt 0.8876 0.8484 +vt 0.8834 0.8915 +vt 0.8928 0.8442 +vt 0.8802 0.8725 +vt 0.8808 0.8792 +vt 0.8789 0.8792 +vt 0.8783 0.8725 +vt 0.8932 0.9009 +vt 0.8990 0.9041 +vt 0.8987 0.9041 +vt 0.8928 0.9009 +vt 0.8826 0.8856 +vt 0.8808 0.8856 +vt 0.9052 0.9060 +vt 0.9051 0.9060 +vt 0.8856 0.8915 +vt 0.8839 0.8915 +vt 0.9118 0.8384 +vt 0.9052 0.8391 +vt 0.9051 0.8391 +vt 0.8895 0.8967 +vt 0.8881 0.8967 +vt 0.8783 0.8792 +vt 0.8776 0.8725 +vt 0.8942 0.9009 +vt 0.8802 0.8856 +vt 0.8932 0.8442 +vt 0.8881 0.8484 +vt 0.8876 0.8484 +vt 0.8928 0.8442 +vt 0.8856 0.8536 +vt 0.8826 0.8595 +vt 0.8808 0.8595 +vt 0.8839 0.8536 +vt 0.8997 0.9041 +vt 0.9056 0.9060 +vt 0.8834 0.8915 +vt 0.9056 0.8391 +vt 0.8876 0.8967 +vt 0.8895 0.8484 +vt 0.8990 0.8410 +vt 0.8987 0.8410 +vt 0.8808 0.8659 +vt 0.8789 0.8659 +vt 0.8834 0.8536 +vt 0.9118 0.9067 +vt 0.8802 0.8595 +vt 0.8997 0.8410 +vt 0.8783 0.8659 +vt 0.8942 0.8442 +vt 0.8917 0.8484 +vt 0.8882 0.8536 +vt 0.9062 0.9060 +vt 0.8917 0.8967 +vt 0.8960 0.9009 +vt 0.8834 0.8725 +vt 0.8839 0.8792 +vt 0.8856 0.8595 +vt 0.9062 0.8391 +vt 0.9009 0.8410 +vt 0.9009 0.9041 +vt 0.8856 0.8856 +vt 0.8839 0.8659 +vt 0.8882 0.8915 +vt 0.8960 0.8442 +vt 0.9025 0.8410 +vt 0.8984 0.8442 +vt 0.8881 0.8659 +vt 0.8876 0.8725 +vt 0.8895 0.8595 +vt 0.8895 0.8856 +vt 0.8917 0.8915 +vt 0.9025 0.9041 +vt 0.9071 0.9060 +vt 0.8947 0.8484 +vt 0.9071 0.8391 +vt 0.8947 0.8967 +vt 0.8917 0.8536 +vt 0.8881 0.8792 +vt 0.8984 0.9009 +vt 0.9081 0.8391 +vt 0.9045 0.8410 +vt 0.9012 0.9009 +vt 0.9045 0.9041 +vt 0.8932 0.8792 +vt 0.8942 0.8856 +vt 0.8942 0.8595 +vt 0.8932 0.8659 +vt 0.9012 0.8442 +vt 0.9081 0.9060 +vt 0.8960 0.8915 +vt 0.8928 0.8725 +vt 0.8984 0.8484 +vt 0.8960 0.8536 +vt 0.8984 0.8967 +vt 0.8990 0.8659 +vt 0.8987 0.8725 +vt 0.9009 0.8915 +vt 0.9025 0.8967 +vt 0.9092 0.8391 +vt 0.9025 0.8484 +vt 0.9009 0.8536 +vt 0.8990 0.8792 +vt 0.9045 0.9009 +vt 0.9068 0.8410 +vt 0.8997 0.8595 +vt 0.8997 0.8856 +vt 0.9068 0.9041 +vt 0.9045 0.8442 +vt 0.9092 0.9060 +vt 0.9092 0.8410 +vt 0.9081 0.8442 +vt 0.9092 0.9041 +vt 0.9105 0.9060 +vt 0.9056 0.8856 +vt 0.9062 0.8915 +vt 0.9052 0.8659 +vt 0.9051 0.8725 +vt 0.9071 0.8484 +vt 0.9105 0.8391 +vt 0.9071 0.8967 +vt 0.9081 0.9009 +vt 0.9062 0.8536 +vt 0.9052 0.8792 +vt 0.9056 0.8595 +vt 0.9118 0.8725 +vt 0.9118 0.8792 +vt 0.9118 0.8536 +vt 0.9118 0.8595 +vt 0.9118 0.8856 +vt 0.9118 0.9009 +vt 0.9118 0.9041 +vt 0.9118 0.8410 +vt 0.9118 0.8442 +vt 0.9118 0.8659 +vt 0.9118 0.8915 +vt 0.9118 0.9060 +vt 0.9118 0.8484 +vt 0.9118 0.8967 +vt 0.9118 0.8391 +vt 0.9183 0.8659 +vt 0.9184 0.8725 +vt 0.9155 0.8442 +vt 0.9165 0.8484 +vt 0.9131 0.8391 +vt 0.9173 0.8915 +vt 0.9165 0.8967 +vt 0.9131 0.9060 +vt 0.9173 0.8536 +vt 0.9179 0.8595 +vt 0.9183 0.8792 +vt 0.9155 0.9009 +vt 0.9143 0.8410 +vt 0.9143 0.9041 +vt 0.9179 0.8856 +vt 0.9190 0.9009 +vt 0.9168 0.9041 +vt 0.9168 0.8410 +vt 0.9190 0.8442 +vt 0.9238 0.8595 +vt 0.9246 0.8659 +vt 0.9238 0.8856 +vt 0.9226 0.8915 +vt 0.9143 0.9060 +vt 0.9210 0.8484 +vt 0.9248 0.8725 +vt 0.9210 0.8967 +vt 0.9143 0.8391 +vt 0.9226 0.8536 +vt 0.9246 0.8792 +vt 0.9275 0.8915 +vt 0.9252 0.8967 +vt 0.9155 0.9060 +vt 0.9252 0.8484 +vt 0.9275 0.8536 +vt 0.9307 0.8725 +vt 0.9304 0.8792 +vt 0.9223 0.9009 +vt 0.9190 0.9041 +vt 0.9155 0.8391 +vt 0.9190 0.8410 +vt 0.9293 0.8595 +vt 0.9293 0.8856 +vt 0.9304 0.8659 +vt 0.9223 0.8442 +vt 0.9341 0.8856 +vt 0.9318 0.8915 +vt 0.9210 0.9041 +vt 0.9165 0.9060 +vt 0.9252 0.8442 +vt 0.9288 0.8484 +vt 0.9354 0.8659 +vt 0.9359 0.8725 +vt 0.9288 0.8967 +vt 0.9165 0.8391 +vt 0.9318 0.8536 +vt 0.9252 0.9009 +vt 0.9354 0.8792 +vt 0.9341 0.8595 +vt 0.9210 0.8410 +vt 0.9401 0.8725 +vt 0.9396 0.8792 +vt 0.9318 0.8967 +vt 0.9275 0.9009 +vt 0.9173 0.8391 +vt 0.9226 0.8410 +vt 0.9380 0.8595 +vt 0.9396 0.8659 +vt 0.9354 0.8536 +vt 0.9380 0.8856 +vt 0.9226 0.9041 +vt 0.9275 0.8442 +vt 0.9173 0.9060 +vt 0.9354 0.8915 +vt 0.9318 0.8484 +vt 0.9179 0.8391 +vt 0.9341 0.8484 +vt 0.9380 0.8536 +vt 0.9179 0.9060 +vt 0.9341 0.8967 +vt 0.9293 0.9009 +vt 0.9433 0.8725 +vt 0.9427 0.8792 +vt 0.9409 0.8595 +vt 0.9238 0.8410 +vt 0.9238 0.9041 +vt 0.9409 0.8856 +vt 0.9427 0.8659 +vt 0.9293 0.8442 +vt 0.9380 0.8915 +vt 0.9304 0.9009 +vt 0.9246 0.9041 +vt 0.9246 0.8410 +vt 0.9304 0.8442 +vt 0.9446 0.8659 +vt 0.9452 0.8725 +vt 0.9427 0.8595 +vt 0.9427 0.8856 +vt 0.9396 0.8915 +vt 0.9183 0.9060 +vt 0.9354 0.8484 +vt 0.9183 0.8391 +vt 0.9354 0.8967 +vt 0.9396 0.8536 +vt 0.9446 0.8792 +vt 0.9433 0.8856 +vt 0.9401 0.8915 +vt 0.9452 0.8659 +vt 0.9459 0.8725 +vt 0.9307 0.8442 +vt 0.9359 0.8484 +vt 0.9184 0.8391 +vt 0.9359 0.8967 +vt 0.9184 0.9060 +vt 0.9401 0.8536 +vt 0.9452 0.8792 +vt 0.9307 0.9009 +vt 0.9248 0.9041 +vt 0.9248 0.8410 +vt 0.9433 0.8595 +vt 0.6373 0.4902 +vt 0.6373 0.4706 +vt 0.6569 0.4706 +vt 0.6569 0.4902 +vt 0.6176 0.4902 +vt 0.6176 0.4706 +vt 0.5980 0.4902 +vt 0.5980 0.4706 +vt 0.5784 0.4902 +vt 0.5784 0.4706 +vt 0.5588 0.4902 +vt 0.5588 0.4706 +vt 0.5392 0.4902 +vt 0.5392 0.4706 +vt 0.5196 0.4902 +vt 0.5196 0.4706 +vt 0.5000 0.4902 +vt 0.5000 0.4706 +vt 0.4804 0.4902 +vt 0.4804 0.4706 +vt 0.4608 0.4902 +vt 0.4608 0.4706 +vt 0.4412 0.4902 +vt 0.4412 0.4706 +vt 0.4216 0.4902 +vt 0.4216 0.4706 +vt 0.4020 0.4902 +vt 0.4020 0.4706 +vt 0.3824 0.4902 +vt 0.3824 0.4706 +vt 0.3627 0.4902 +vt 0.3627 0.4706 +vt 0.3431 0.4902 +vt 0.3431 0.4706 +vt 0.9510 0.4902 +vt 0.9510 0.4706 +vt 0.9706 0.4706 +vt 0.9706 0.4902 +vt 0.9314 0.4902 +vt 0.9314 0.4706 +vt 0.9118 0.4902 +vt 0.9118 0.4706 +vt 0.8922 0.4902 +vt 0.8922 0.4706 +vt 0.8529 0.4902 +vt 0.8529 0.4706 +vt 0.8725 0.4706 +vt 0.8725 0.4902 +vt 0.8333 0.4902 +vt 0.8333 0.4706 +vt 0.8137 0.4902 +vt 0.8137 0.4706 +vt 0.7941 0.4902 +vt 0.7941 0.4706 +vt 0.7745 0.4902 +vt 0.7745 0.4706 +vt 0.7353 0.4902 +vt 0.7353 0.4706 +vt 0.7549 0.4706 +vt 0.7549 0.4902 +vt 0.7157 0.4902 +vt 0.7157 0.4706 +vt 0.6961 0.4902 +vt 0.6961 0.4706 +vt 0.7404 0.4399 +vt 0.7404 0.4309 +vt 0.7598 0.4309 +vt 0.7598 0.4398 +vt 0.7791 0.4399 +vt 0.7791 0.4309 +vt 0.7985 0.4399 +vt 0.7985 0.4309 +vt 0.8178 0.4398 +vt 0.8178 0.4309 +vt 0.8371 0.4399 +vt 0.8372 0.4309 +vt 0.8565 0.4399 +vt 0.8565 0.4309 +vt 0.8759 0.4309 +vt 0.8758 0.4399 +vt 0.8952 0.4400 +vt 0.8953 0.4310 +vt 0.9146 0.4400 +vt 0.9147 0.4310 +vt 0.9340 0.4401 +vt 0.9341 0.4311 +vt 0.9535 0.4311 +vt 0.9534 0.4401 +vt 0.9730 0.4311 +vt 0.9729 0.4402 +vt 0.9923 0.4402 +vt 0.9924 0.4311 +vt 1.0118 0.4311 +vt 1.0117 0.4402 +vt 1.0312 0.4311 +vt 1.0312 0.4402 +vt 1.0508 0.4402 +vt 1.0506 0.4311 +vt 1.0699 0.4310 +vt 1.0705 0.4400 +vt 1.0904 0.4397 +vt 1.0890 0.4307 +vt 0.4678 0.4397 +vt 0.4692 0.4307 +vt 0.4883 0.4309 +vt 0.4877 0.4400 +vt 0.5075 0.4402 +vt 0.5077 0.4310 +vt 0.5273 0.4311 +vt 0.5272 0.4402 +vt 0.5467 0.4310 +vt 0.5468 0.4401 +vt 0.5661 0.4310 +vt 0.5661 0.4400 +vt 0.5854 0.4310 +vt 0.5855 0.4400 +vt 0.6048 0.4310 +vt 0.6049 0.4399 +vt 0.6241 0.4309 +vt 0.6242 0.4399 +vt 0.6629 0.4399 +vt 0.6435 0.4399 +vt 0.6435 0.4309 +vt 0.6628 0.4309 +vt 0.7016 0.4399 +vt 0.6823 0.4399 +vt 0.6822 0.4309 +vt 0.7016 0.4309 +vt 0.7210 0.4399 +vt 0.7210 0.4309 +vt 0.9355 0.2444 +vt 0.9160 0.2460 +vt 0.9163 0.1405 +vt 0.9355 0.1405 +vt 0.9550 0.2444 +vt 0.9548 0.1405 +vt 0.9745 0.2459 +vt 0.9741 0.1405 +vt 0.8965 0.2491 +vt 0.8970 0.1405 +vt 0.9940 0.2490 +vt 0.9934 0.1405 +vt 0.8770 0.2536 +vt 0.8778 0.1405 +vt 1.0135 0.2535 +vt 1.0126 0.1406 +vt 0.8673 0.2564 +vt 0.8576 0.2536 +vt 0.8585 0.1404 +vt 0.9355 0.1316 +vt 0.9163 0.1316 +vt 0.9548 0.1315 +vt 0.9741 0.1315 +vt 1.0330 0.2535 +vt 1.0233 0.2564 +vt 1.0319 0.1406 +vt 0.8381 0.2491 +vt 0.8392 0.1404 +vt 0.8971 0.1316 +vt 0.9935 0.1316 +vt 1.0525 0.2490 +vt 1.0511 0.1407 +vt 0.8187 0.2459 +vt 0.8199 0.1403 +vt 0.8779 0.1315 +vt 1.0128 0.1316 +vt 1.0720 0.2458 +vt 1.0701 0.1409 +vt 0.7992 0.2443 +vt 0.8006 0.1403 +vt 0.8586 0.1315 +vt 0.7745 0.4902 +vt 0.7745 0.4706 +vt 0.7941 0.4706 +vt 0.7941 0.4902 +vt 0.8333 0.4902 +vt 0.8333 0.4706 +vt 0.8529 0.4706 +vt 0.8529 0.4902 +vt 1.0322 0.1316 +vt 0.7549 0.4902 +vt 0.7549 0.4706 +vt 0.8393 0.1314 +vt 0.8725 0.4706 +vt 0.8725 0.4902 +vt 1.0516 0.1317 +vt 0.7353 0.4902 +vt 0.7353 0.4706 +vt 0.4864 0.2438 +vt 0.4669 0.2437 +vt 0.4698 0.1394 +vt 0.4894 0.1392 +vt 0.7797 0.2443 +vt 0.7602 0.2459 +vt 0.7620 0.1402 +vt 0.7813 0.1402 +vt 0.8200 0.1314 +vt 0.7157 0.4902 +vt 0.7157 0.4706 +vt 1.0710 0.1319 +vt 0.6765 0.4902 +vt 0.6765 0.4706 +vt 0.6961 0.4706 +vt 0.6961 0.4902 +vt 0.8007 0.1313 +vt 0.8922 0.4706 +vt 0.8922 0.4902 +vt 1.0904 0.1324 +vt 1.0888 0.1411 +vt 0.6569 0.4902 +vt 0.6569 0.4706 +vt 0.5256 0.2486 +vt 0.5060 0.2454 +vt 0.5090 0.1392 +vt 0.5287 0.1392 +vt 0.7407 0.2489 +vt 0.7211 0.2534 +vt 0.7233 0.1400 +vt 0.7426 0.1401 +vt 0.7814 0.1312 +vt 0.9118 0.4706 +vt 0.9118 0.4902 +vt 0.4889 0.1300 +vt 0.4687 0.1303 +vt 0.6765 0.4706 +vt 0.6765 0.4902 +vt 0.6373 0.4902 +vt 0.6373 0.4706 +vt 0.5451 0.2532 +vt 0.5482 0.1392 +vt 0.7113 0.2563 +vt 0.7016 0.2534 +vt 0.7039 0.1400 +vt 0.7621 0.1312 +vt 0.9314 0.4706 +vt 0.9314 0.4902 +vt 0.5090 0.1300 +vt 0.6176 0.4902 +vt 0.6176 0.4706 +vt 0.7428 0.1311 +vt 0.9510 0.4706 +vt 0.9510 0.4902 +vt 0.5288 0.1300 +vt 0.5980 0.4902 +vt 0.5980 0.4706 +vt 0.7234 0.1310 +vt 0.3431 0.4902 +vt 0.3431 0.4706 +vt 0.3627 0.4706 +vt 0.3627 0.4902 +vt 0.5484 0.1302 +vt 0.9706 0.4706 +vt 0.9706 0.4902 +vt 0.6040 0.2456 +vt 0.5844 0.2487 +vt 0.5872 0.1394 +vt 0.6068 0.1395 +vt 0.6627 0.2457 +vt 0.6432 0.2441 +vt 0.6457 0.1397 +vt 0.6651 0.1398 +vt 0.7041 0.1309 +vt 0.3824 0.4706 +vt 0.3824 0.4902 +vt 0.8137 0.4706 +vt 0.8137 0.4902 +vt 0.5679 0.1302 +vt 0.5677 0.1393 +vt 0.5784 0.4902 +vt 0.5784 0.4706 +vt 0.6236 0.2441 +vt 0.6263 0.1396 +vt 0.6847 0.1309 +vt 0.6845 0.1399 +vt 0.4020 0.4706 +vt 0.4020 0.4902 +vt 0.5874 0.1303 +vt 0.5588 0.4902 +vt 0.5588 0.4706 +vt 0.6653 0.1308 +vt 0.4216 0.4706 +vt 0.4216 0.4902 +vt 0.6070 0.1304 +vt 0.5392 0.4902 +vt 0.5392 0.4706 +vt 0.6459 0.1306 +vt 0.4412 0.4706 +vt 0.4412 0.4902 +vt 0.6265 0.1305 +vt 0.5196 0.4902 +vt 0.5196 0.4706 +vt 0.5000 0.4902 +vt 0.5000 0.4706 +vt 0.4608 0.4706 +vt 0.4608 0.4902 +vt 0.4804 0.4902 +vt 0.4804 0.4706 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.9159 0.2976 +vt 0.9158 0.3253 +vt 0.8963 0.3222 +vt 0.8964 0.3051 +vt 0.9745 0.2977 +vt 0.9743 0.3254 +vt 0.9548 0.3269 +vt 0.9550 0.2897 +vt 0.9940 0.3052 +vt 0.9939 0.3223 +vt 0.8768 0.3176 +vt 0.8769 0.3119 +vt 0.8671 0.3147 +vt 0.6330 0.2854 +vt 0.6428 0.2854 +vt 0.6428 0.2895 +vt 0.6330 0.2895 +vt 1.0233 0.3149 +vt 1.0135 0.3178 +vt 1.0135 0.3120 +vt 0.9354 0.2897 +vt 0.9353 0.3269 +vt 0.9452 0.2897 +vt 0.9452 0.2856 +vt 0.9355 0.2856 +vt 0.9355 0.2816 +vt 0.9452 0.2816 +vt 0.7892 0.2855 +vt 0.7794 0.2855 +vt 0.7795 0.2815 +vt 0.7892 0.2815 +vt 0.4762 0.2853 +vt 0.4762 0.2894 +vt 0.4664 0.2894 +vt 0.4664 0.2853 +vt 0.9159 0.2856 +vt 0.8964 0.2856 +vt 0.8769 0.2856 +vt 1.0331 0.2856 +vt 1.0331 0.3120 +vt 1.0135 0.2856 +vt 0.8379 0.2856 +vt 0.8380 0.2660 +vt 0.8575 0.2593 +vt 0.8574 0.2856 +vt 0.8185 0.2856 +vt 0.8185 0.2735 +vt 0.7989 0.2855 +vt 0.7990 0.2815 +vt 1.0135 0.2593 +vt 0.9940 0.2661 +vt 0.9745 0.2736 +vt 0.9550 0.2816 +vt 0.9160 0.2736 +vt 0.8965 0.2661 +vt 0.8770 0.2593 +vt 0.7600 0.2735 +vt 0.7405 0.2660 +vt 0.7211 0.2592 +vt 0.8573 0.3176 +vt 0.8573 0.3119 +vt 0.8379 0.3051 +vt 0.8378 0.3221 +vt 0.8183 0.3252 +vt 0.8184 0.2976 +vt 0.7989 0.2896 +vt 0.7988 0.3268 +vt 0.7794 0.2896 +vt 0.7892 0.2896 +vt 0.7793 0.3268 +vt 0.7599 0.2975 +vt 0.7598 0.3252 +vt 0.7403 0.3221 +vt 0.7404 0.3050 +vt 0.7208 0.3118 +vt 0.7208 0.3175 +vt 0.7111 0.3147 +vt 0.7405 0.2855 +vt 0.7209 0.2855 +vt 0.7600 0.2855 +vt 0.6819 0.2855 +vt 0.6820 0.2659 +vt 0.7015 0.2592 +vt 0.7014 0.2855 +vt 0.6624 0.2854 +vt 0.6818 0.3050 +vt 0.6623 0.2975 +vt 0.6037 0.2854 +vt 0.6038 0.2733 +vt 0.6233 0.2813 +vt 0.6233 0.2854 +vt 0.5842 0.2854 +vt 0.5842 0.2658 +vt 0.5646 0.2854 +vt 0.5646 0.2590 +vt 0.7013 0.3118 +vt 0.5450 0.2854 +vt 0.5449 0.3118 +vt 0.5253 0.3050 +vt 0.5254 0.2854 +vt 0.5057 0.2975 +vt 0.5057 0.2853 +vt 0.4860 0.2853 +vt 0.4861 0.2812 +vt 0.5057 0.2732 +vt 0.5547 0.3147 +vt 0.5645 0.3118 +vt 0.5645 0.3176 +vt 0.5841 0.3050 +vt 0.5841 0.3221 +vt 0.6037 0.2975 +vt 0.6037 0.3252 +vt 0.6232 0.2895 +vt 0.6232 0.3268 +vt 0.6428 0.3267 +vt 0.6623 0.3252 +vt 0.6818 0.3220 +vt 0.7013 0.3175 +vt 0.6821 0.2489 +vt 0.6624 0.2734 +vt 0.6428 0.2814 +vt 0.6330 0.2814 +vt 0.5647 0.2532 +vt 0.5549 0.2561 +vt 0.9940 0.2856 +vt 0.9745 0.2856 +vt 0.9550 0.2856 +vt 1.0331 0.2593 +vt 1.0527 0.2660 +vt 1.0723 0.2735 +vt 1.0919 0.2815 +vt 1.0915 0.2441 +vt 0.4762 0.2812 +vt 0.4664 0.2812 +vt 0.5254 0.2657 +vt 0.5450 0.2589 +vt 1.0527 0.2856 +vt 1.0527 0.3053 +vt 1.0723 0.2856 +vt 1.0723 0.2977 +vt 1.0920 0.2856 +vt 1.0331 0.3178 +vt 1.0526 0.3224 +vt 1.0721 0.3255 +vt 1.0917 0.3272 +vt 1.0920 0.2897 +vt 0.4862 0.3269 +vt 0.4666 0.3269 +vt 0.4860 0.2894 +vt 0.5058 0.3253 +vt 0.5254 0.3221 +vt 0.5449 0.3176 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vn 0.0000 -1.0000 0.0000 +vn -1.0000 0.0000 0.0000 +vn 0.0000 1.0000 0.0000 +vn 0.0000 0.0000 1.0000 +vn 0.0000 0.0000 -1.0000 +vn 0.1170 -0.1170 -0.9862 +vn 0.3366 -0.1159 -0.9345 +vn 0.5344 -0.1109 -0.8379 +vn 0.7029 -0.1083 -0.7030 +vn 0.1176 -0.3360 -0.9345 +vn 0.3346 -0.3336 -0.8813 +vn 0.5195 -0.3218 -0.7916 +vn 0.6706 -0.3155 -0.6714 +vn 0.1119 -0.5343 -0.8378 +vn 0.3225 -0.5199 -0.7911 +vn 0.4911 -0.4911 -0.7194 +vn 0.6227 -0.4735 -0.6229 +vn 0.9862 -0.1170 -0.1170 +vn 0.9345 -0.3366 -0.1159 +vn 0.8379 -0.5344 -0.1109 +vn 0.7030 -0.7029 -0.1083 +vn 0.9345 -0.1176 -0.3360 +vn 0.8813 -0.3346 -0.3336 +vn 0.7916 -0.5195 -0.3218 +vn 0.6714 -0.6706 -0.3155 +vn 0.8378 -0.1119 -0.5343 +vn 0.7911 -0.3225 -0.5199 +vn 0.7194 -0.4911 -0.4911 +vn 0.6229 -0.6227 -0.4735 +vn 0.1170 -0.9862 -0.1170 +vn 0.1159 -0.9345 -0.3366 +vn 0.1109 -0.8379 -0.5344 +vn 0.1083 -0.7030 -0.7029 +vn 0.3360 -0.9345 -0.1176 +vn 0.3336 -0.8813 -0.3346 +vn 0.3218 -0.7916 -0.5195 +vn 0.3155 -0.6714 -0.6706 +vn 0.5343 -0.8378 -0.1119 +vn 0.5199 -0.7911 -0.3224 +vn 0.4911 -0.7194 -0.4911 +vn 0.4735 -0.6229 -0.6227 +vn 0.5774 -0.5773 -0.5774 +vn 0.1170 -0.1170 0.9862 +vn 0.1159 -0.3366 0.9345 +vn 0.1109 -0.5344 0.8379 +vn 0.1083 -0.7029 0.7030 +vn 0.3360 -0.1176 0.9345 +vn 0.3336 -0.3346 0.8813 +vn 0.3218 -0.5195 0.7916 +vn 0.3155 -0.6706 0.6714 +vn 0.5343 -0.1119 0.8378 +vn 0.5199 -0.3224 0.7911 +vn 0.4911 -0.4911 0.7194 +vn 0.4735 -0.6227 0.6229 +vn 0.1170 -0.9862 0.1170 +vn 0.3366 -0.9345 0.1159 +vn 0.5344 -0.8379 0.1109 +vn 0.7029 -0.7030 0.1083 +vn 0.1176 -0.9345 0.3360 +vn 0.3346 -0.8813 0.3336 +vn 0.5195 -0.7916 0.3218 +vn 0.6706 -0.6714 0.3155 +vn 0.1119 -0.8378 0.5343 +vn 0.3225 -0.7911 0.5199 +vn 0.4911 -0.7194 0.4911 +vn 0.6227 -0.6229 0.4735 +vn 0.9862 -0.1170 0.1170 +vn 0.9345 -0.1159 0.3366 +vn 0.8379 -0.1109 0.5344 +vn 0.7030 -0.1083 0.7028 +vn 0.9345 -0.3360 0.1176 +vn 0.8813 -0.3336 0.3346 +vn 0.7916 -0.3218 0.5195 +vn 0.6714 -0.3155 0.6706 +vn 0.8378 -0.5343 0.1119 +vn 0.7911 -0.5199 0.3224 +vn 0.7194 -0.4911 0.4911 +vn 0.6229 -0.4735 0.6227 +vn 0.5774 -0.5773 0.5773 +vn -0.9862 -0.1170 0.1170 +vn -0.9345 -0.3366 0.1159 +vn -0.8379 -0.5344 0.1109 +vn -0.7030 -0.7029 0.1083 +vn -0.9345 -0.1176 0.3360 +vn -0.8813 -0.3346 0.3336 +vn -0.7916 -0.5195 0.3218 +vn -0.6714 -0.6706 0.3155 +vn -0.8378 -0.1119 0.5343 +vn -0.7911 -0.3225 0.5199 +vn -0.7194 -0.4911 0.4911 +vn -0.6229 -0.6227 0.4735 +vn -0.1170 -0.9862 0.1170 +vn -0.1159 -0.9345 0.3366 +vn -0.1109 -0.8379 0.5344 +vn -0.1083 -0.7030 0.7029 +vn -0.3360 -0.9345 0.1176 +vn -0.3336 -0.8813 0.3346 +vn -0.3218 -0.7916 0.5195 +vn -0.3155 -0.6714 0.6706 +vn -0.5343 -0.8378 0.1119 +vn -0.5199 -0.7911 0.3224 +vn -0.4911 -0.7194 0.4911 +vn -0.4735 -0.6229 0.6227 +vn -0.1170 -0.1170 0.9862 +vn -0.3366 -0.1159 0.9345 +vn -0.5344 -0.1109 0.8379 +vn -0.7029 -0.1083 0.7030 +vn -0.1176 -0.3360 0.9345 +vn -0.3346 -0.3336 0.8813 +vn -0.5195 -0.3218 0.7916 +vn -0.6706 -0.3155 0.6714 +vn -0.1119 -0.5343 0.8378 +vn -0.3225 -0.5199 0.7911 +vn -0.4911 -0.4911 0.7194 +vn -0.6227 -0.4735 0.6229 +vn -0.5773 -0.5774 0.5774 +vn -0.1170 -0.1170 -0.9862 +vn -0.1159 -0.3366 -0.9345 +vn -0.1109 -0.5344 -0.8379 +vn -0.1083 -0.7029 -0.7030 +vn -0.3360 -0.1176 -0.9345 +vn -0.3336 -0.3346 -0.8813 +vn -0.3218 -0.5195 -0.7916 +vn -0.3155 -0.6706 -0.6714 +vn -0.5343 -0.1119 -0.8378 +vn -0.5199 -0.3225 -0.7911 +vn -0.4911 -0.4911 -0.7194 +vn -0.4735 -0.6227 -0.6229 +vn -0.1170 -0.9862 -0.1170 +vn -0.3366 -0.9345 -0.1159 +vn -0.5344 -0.8379 -0.1109 +vn -0.7029 -0.7030 -0.1083 +vn -0.1176 -0.9345 -0.3360 +vn -0.3346 -0.8813 -0.3336 +vn -0.5195 -0.7916 -0.3218 +vn -0.6706 -0.6714 -0.3155 +vn -0.1119 -0.8378 -0.5343 +vn -0.3225 -0.7911 -0.5199 +vn -0.4911 -0.7194 -0.4911 +vn -0.6227 -0.6229 -0.4735 +vn -0.9862 -0.1170 -0.1170 +vn -0.9345 -0.1159 -0.3366 +vn -0.8379 -0.1109 -0.5344 +vn -0.7030 -0.1083 -0.7029 +vn -0.9345 -0.3360 -0.1176 +vn -0.8813 -0.3336 -0.3346 +vn -0.7916 -0.3218 -0.5195 +vn -0.6714 -0.3155 -0.6706 +vn -0.8378 -0.5343 -0.1119 +vn -0.7911 -0.5199 -0.3224 +vn -0.7194 -0.4911 -0.4911 +vn -0.6229 -0.4735 -0.6227 +vn -0.5774 -0.5773 -0.5773 +vn 0.1170 0.1170 -0.9862 +vn 0.1159 0.3366 -0.9345 +vn 0.1109 0.5344 -0.8379 +vn 0.1083 0.7029 -0.7030 +vn 0.3360 0.1176 -0.9345 +vn 0.3336 0.3346 -0.8813 +vn 0.3218 0.5195 -0.7916 +vn 0.3155 0.6706 -0.6714 +vn 0.5343 0.1119 -0.8378 +vn 0.5199 0.3224 -0.7911 +vn 0.4911 0.4911 -0.7194 +vn 0.4735 0.6227 -0.6229 +vn 0.1170 0.9862 -0.1170 +vn 0.3366 0.9345 -0.1159 +vn 0.5344 0.8379 -0.1109 +vn 0.7028 0.7030 -0.1083 +vn 0.1176 0.9345 -0.3360 +vn 0.3346 0.8813 -0.3336 +vn 0.5195 0.7916 -0.3218 +vn 0.6706 0.6714 -0.3155 +vn 0.1119 0.8378 -0.5343 +vn 0.3225 0.7911 -0.5199 +vn 0.4911 0.7194 -0.4911 +vn 0.6227 0.6229 -0.4735 +vn 0.9862 0.1170 -0.1170 +vn 0.9345 0.1159 -0.3366 +vn 0.8379 0.1109 -0.5344 +vn 0.7030 0.1083 -0.7029 +vn 0.9345 0.3360 -0.1176 +vn 0.8813 0.3336 -0.3346 +vn 0.7916 0.3218 -0.5195 +vn 0.6714 0.3155 -0.6706 +vn 0.8378 0.5343 -0.1119 +vn 0.7911 0.5199 -0.3224 +vn 0.7194 0.4911 -0.4911 +vn 0.6229 0.4735 -0.6227 +vn 0.5773 0.5773 -0.5774 +vn 0.1170 0.9862 0.1170 +vn 0.1159 0.9345 0.3366 +vn 0.1109 0.8379 0.5344 +vn 0.1083 0.7030 0.7029 +vn 0.3360 0.9345 0.1176 +vn 0.3336 0.8813 0.3346 +vn 0.3218 0.7916 0.5195 +vn 0.3155 0.6714 0.6706 +vn 0.5343 0.8378 0.1119 +vn 0.5199 0.7911 0.3224 +vn 0.4911 0.7194 0.4911 +vn 0.4735 0.6229 0.6227 +vn 0.1170 0.1170 0.9862 +vn 0.3366 0.1159 0.9345 +vn 0.5344 0.1109 0.8379 +vn 0.7029 0.1083 0.7030 +vn 0.1176 0.3360 0.9345 +vn 0.3346 0.3336 0.8813 +vn 0.5195 0.3218 0.7916 +vn 0.6706 0.3155 0.6714 +vn 0.1119 0.5343 0.8378 +vn 0.3225 0.5199 0.7911 +vn 0.4911 0.4911 0.7194 +vn 0.6227 0.4735 0.6229 +vn 0.9862 0.1170 0.1170 +vn 0.9345 0.3366 0.1159 +vn 0.8379 0.5344 0.1109 +vn 0.7030 0.7029 0.1083 +vn 0.9345 0.1176 0.3360 +vn 0.8813 0.3346 0.3336 +vn 0.7916 0.5195 0.3218 +vn 0.6714 0.6706 0.3155 +vn 0.8378 0.1119 0.5343 +vn 0.7911 0.3225 0.5199 +vn 0.7194 0.4911 0.4911 +vn 0.6229 0.6227 0.4735 +vn 0.5774 0.5773 0.5774 +vn -0.1170 0.9862 0.1170 +vn -0.3366 0.9345 0.1159 +vn -0.5344 0.8379 0.1109 +vn -0.7028 0.7030 0.1083 +vn -0.1176 0.9345 0.3360 +vn -0.3346 0.8813 0.3336 +vn -0.5195 0.7916 0.3218 +vn -0.6706 0.6714 0.3155 +vn -0.1119 0.8378 0.5343 +vn -0.3225 0.7911 0.5199 +vn -0.4911 0.7194 0.4911 +vn -0.6227 0.6229 0.4735 +vn -0.9862 0.1170 0.1170 +vn -0.9345 0.1159 0.3366 +vn -0.8379 0.1109 0.5344 +vn -0.7030 0.1083 0.7029 +vn -0.9345 0.3360 0.1176 +vn -0.8813 0.3336 0.3346 +vn -0.7916 0.3218 0.5195 +vn -0.6714 0.3155 0.6706 +vn -0.8378 0.5343 0.1119 +vn -0.7911 0.5199 0.3224 +vn -0.7194 0.4911 0.4911 +vn -0.6229 0.4735 0.6227 +vn -0.1170 0.1170 0.9862 +vn -0.1159 0.3366 0.9345 +vn -0.1109 0.5344 0.8379 +vn -0.1083 0.7029 0.7030 +vn -0.3360 0.1176 0.9345 +vn -0.3336 0.3346 0.8813 +vn -0.3218 0.5195 0.7916 +vn -0.3155 0.6706 0.6714 +vn -0.5343 0.1119 0.8378 +vn -0.5199 0.3225 0.7911 +vn -0.4911 0.4911 0.7194 +vn -0.4735 0.6227 0.6229 +vn -0.5773 0.5774 0.5774 +vn -0.1170 0.9862 -0.1170 +vn -0.1159 0.9345 -0.3366 +vn -0.1109 0.8379 -0.5344 +vn -0.1083 0.7030 -0.7029 +vn -0.3360 0.9345 -0.1176 +vn -0.3336 0.8813 -0.3346 +vn -0.3218 0.7916 -0.5195 +vn -0.3155 0.6714 -0.6706 +vn -0.5343 0.8378 -0.1119 +vn -0.5199 0.7911 -0.3224 +vn -0.4911 0.7194 -0.4911 +vn -0.4735 0.6229 -0.6227 +vn -0.1170 0.1170 -0.9862 +vn -0.3366 0.1159 -0.9345 +vn -0.5344 0.1109 -0.8379 +vn -0.7029 0.1083 -0.7030 +vn -0.1176 0.3360 -0.9345 +vn -0.3346 0.3336 -0.8813 +vn -0.5195 0.3218 -0.7916 +vn -0.6706 0.3155 -0.6714 +vn -0.1119 0.5343 -0.8378 +vn -0.3224 0.5199 -0.7911 +vn -0.4911 0.4911 -0.7194 +vn -0.6227 0.4735 -0.6229 +vn -0.9862 0.1170 -0.1170 +vn -0.9345 0.3366 -0.1159 +vn -0.8379 0.5344 -0.1109 +vn -0.7030 0.7029 -0.1083 +vn -0.9345 0.1176 -0.3360 +vn -0.8813 0.3346 -0.3336 +vn -0.7916 0.5195 -0.3218 +vn -0.6714 0.6706 -0.3155 +vn -0.8378 0.1119 -0.5343 +vn -0.7911 0.3225 -0.5199 +vn -0.7194 0.4911 -0.4911 +vn -0.6229 0.6227 -0.4735 +vn -0.5774 0.5773 -0.5774 +vn 0.1119 0.0000 -0.9937 +vn 0.3302 0.0000 -0.9439 +vn 0.5320 0.0000 -0.8468 +vn 0.7071 0.0000 -0.7071 +vn 0.8468 0.0000 -0.5320 +vn 0.9439 0.0000 -0.3302 +vn 0.9937 0.0000 -0.1119 +vn 0.1119 0.9937 -0.0000 +vn 0.3302 0.9439 -0.0000 +vn 0.5320 0.8468 -0.0000 +vn 0.7071 0.7071 -0.0000 +vn 0.8468 0.5320 -0.0000 +vn 0.9439 0.3302 -0.0000 +vn 0.9937 0.1119 -0.0000 +vn 0.1119 0.0000 0.9937 +vn 0.3302 -0.0000 0.9439 +vn 0.5320 0.0000 0.8468 +vn 0.7071 0.0000 0.7071 +vn 0.8468 -0.0000 0.5320 +vn 0.9439 0.0000 0.3302 +vn 0.9937 0.0000 0.1119 +vn 0.1119 -0.9937 -0.0000 +vn 0.3302 -0.9439 -0.0000 +vn 0.5320 -0.8468 -0.0000 +vn 0.7071 -0.7071 -0.0000 +vn 0.8468 -0.5320 -0.0000 +vn 0.9439 -0.3302 -0.0000 +vn 0.9937 -0.1119 0.0000 +vn 0.0000 0.9937 0.1119 +vn 0.0000 0.9439 0.3302 +vn 0.0000 0.8468 0.5320 +vn 0.0000 0.7071 0.7071 +vn 0.0000 0.5320 0.8468 +vn 0.0000 0.3302 0.9439 +vn 0.0000 0.1119 0.9937 +vn -0.9937 0.0000 0.1119 +vn -0.9439 -0.0000 0.3302 +vn -0.8468 -0.0000 0.5320 +vn -0.7071 0.0000 0.7071 +vn -0.5320 0.0000 0.8468 +vn -0.3302 0.0000 0.9439 +vn -0.1119 0.0000 0.9937 +vn 0.0000 -0.9937 0.1119 +vn 0.0000 -0.9439 0.3302 +vn 0.0000 -0.8468 0.5320 +vn 0.0000 -0.7071 0.7071 +vn 0.0000 -0.5320 0.8468 +vn 0.0000 -0.3302 0.9439 +vn 0.0000 -0.1119 0.9937 +vn -0.1119 0.9937 0.0000 +vn -0.3302 0.9439 0.0000 +vn -0.5320 0.8468 0.0000 +vn -0.7071 0.7071 0.0000 +vn -0.8468 0.5320 0.0000 +vn -0.9439 0.3302 0.0000 +vn -0.9937 0.1119 0.0000 +vn -0.1119 0.0000 -0.9937 +vn -0.3302 -0.0000 -0.9439 +vn -0.5320 -0.0000 -0.8468 +vn -0.7071 0.0000 -0.7071 +vn -0.8468 -0.0000 -0.5320 +vn -0.9439 -0.0000 -0.3302 +vn -0.9937 0.0000 -0.1119 +vn -0.1119 -0.9937 0.0000 +vn -0.3302 -0.9439 0.0000 +vn -0.5320 -0.8468 0.0000 +vn -0.7071 -0.7071 0.0000 +vn -0.8468 -0.5320 0.0000 +vn -0.9439 -0.3302 0.0000 +vn -0.9937 -0.1119 0.0000 +vn 0.0000 0.9937 -0.1119 +vn 0.0000 0.9439 -0.3302 +vn 0.0000 0.8468 -0.5320 +vn 0.0000 0.7071 -0.7071 +vn 0.0000 0.5320 -0.8468 +vn -0.0000 0.3302 -0.9439 +vn 0.0000 0.1119 -0.9937 +vn -0.0000 -0.9937 -0.1119 +vn -0.0000 -0.9439 -0.3302 +vn -0.0000 -0.8468 -0.5320 +vn -0.0000 -0.7071 -0.7071 +vn -0.0000 -0.5320 -0.8468 +vn -0.0000 -0.3302 -0.9439 +vn -0.0000 -0.1119 -0.9937 +vn 1.0000 0.0000 0.0000 +vn -0.2178 0.6811 0.6990 +vn -0.1744 0.8102 0.5596 +vn -0.3247 0.7862 0.5257 +vn -0.3923 0.6518 0.6489 +vn -0.2178 -0.6811 0.6990 +vn -0.2524 -0.5294 0.8099 +vn -0.4424 -0.5007 0.7440 +vn -0.3923 -0.6518 0.6489 +vn -0.2524 0.5294 0.8099 +vn -0.4424 0.5007 0.7440 +vn -0.1744 -0.8102 0.5596 +vn -0.3247 -0.7862 0.5257 +vn -0.2774 0.3615 0.8901 +vn -0.4766 0.3388 0.8112 +vn -0.1232 -0.9102 0.3955 +vn -0.2386 -0.8957 0.3753 +vn -0.2924 0.1832 0.9385 +vn -0.4966 0.1708 0.8510 +vn -0.0662 -0.9749 0.2126 +vn -0.1346 -0.9701 0.2018 +vn -0.2975 0.0000 0.9547 +vn -0.5031 0.0000 0.8642 +vn -0.0662 0.9749 0.2126 +vn -0.2521 0.9677 0.0000 +vn -0.1346 0.9701 0.2018 +vn -0.2521 -0.9677 0.0000 +vn -0.2924 -0.1832 0.9385 +vn -0.4966 -0.1708 0.8510 +vn -0.1232 0.9102 0.3955 +vn -0.2386 0.8957 0.3753 +vn -0.2774 -0.3615 0.8901 +vn -0.4766 -0.3388 0.8112 +vn -0.7737 -0.1331 0.6193 +vn -0.7527 -0.2689 0.6008 +vn -0.4275 0.8438 0.3244 +vn -0.5608 0.7042 0.4353 +vn -0.7144 -0.4097 0.5672 +vn -0.6531 0.5559 0.5141 +vn -0.6531 -0.5559 0.5141 +vn -0.7144 0.4097 0.5672 +vn -0.5608 -0.7042 0.4353 +vn -0.7527 0.2689 0.6008 +vn -0.4275 -0.8438 0.3244 +vn -0.7737 0.1331 0.6193 +vn -0.2461 -0.9527 0.1784 +vn -0.7804 0.0000 0.6252 +vn -0.2461 0.9527 0.1784 +vn -0.7085 -0.6180 0.3405 +vn -0.5630 -0.7825 0.2659 +vn -0.8781 0.2134 0.4283 +vn -0.8937 0.1043 0.4363 +vn -0.3343 -0.9302 0.1512 +vn -0.8986 0.0000 0.4388 +vn -0.3343 0.9302 0.1512 +vn -0.8937 -0.1043 0.4363 +vn -0.5630 0.7825 0.2659 +vn -0.8781 -0.2134 0.4283 +vn -0.7085 0.6180 0.3405 +vn -0.8480 -0.3323 0.4128 +vn -0.7961 0.4661 0.3858 +vn -0.7961 -0.4661 0.3858 +vn -0.8480 0.3323 0.4128 +vn -0.9364 -0.1772 0.3028 +vn -0.9137 -0.2793 0.2952 +vn -0.7969 0.5473 0.2557 +vn -0.8724 0.3997 0.2814 +vn -0.8724 -0.3997 0.2814 +vn -0.9137 0.2793 0.2952 +vn -0.7969 -0.5473 0.2557 +vn -0.9364 0.1772 0.3028 +vn -0.6560 -0.7255 0.2076 +vn -0.9479 0.0861 0.3066 +vn -0.4021 -0.9074 0.1221 +vn -0.9514 0.0000 0.3078 +vn -0.4021 0.9074 0.1221 +vn -0.9479 -0.0861 0.3066 +vn -0.6561 0.7255 0.2076 +vn -0.7177 -0.6795 0.1522 +vn -0.4519 -0.8873 0.0919 +vn -0.9749 0.0748 0.2097 +vn -0.9776 0.0000 0.2103 +vn -0.4519 0.8873 0.0919 +vn -0.9749 -0.0748 0.2097 +vn -0.7177 0.6795 0.1522 +vn -0.9659 -0.1545 0.2078 +vn -0.8492 0.4956 0.1820 +vn -0.9478 -0.2451 0.2039 +vn -0.9140 0.3548 0.1965 +vn -0.9140 -0.3548 0.1965 +vn -0.9478 0.2451 0.2039 +vn -0.8492 -0.4956 0.1820 +vn -0.9659 0.1545 0.2078 +vn -0.8795 0.4612 0.1169 +vn -0.9370 0.3262 0.1248 +vn -0.9661 -0.2240 0.1286 +vn -0.9370 -0.3262 0.1248 +vn -0.9661 0.2240 0.1286 +vn -0.8795 -0.4612 0.1169 +vn -0.9814 0.1408 0.1306 +vn -0.7565 -0.6463 0.0998 +vn -0.9890 0.0681 0.1316 +vn -0.4858 -0.8719 0.0613 +vn -0.9912 0.0000 0.1318 +vn -0.4858 0.8719 0.0613 +vn -0.9890 -0.0681 0.1316 +vn -0.7565 0.6463 0.0998 +vn -0.9814 -0.1408 0.1306 +vn -0.9959 0.0644 0.0635 +vn -0.9980 0.0000 0.0637 +vn -0.5054 0.8623 0.0306 +vn -0.5054 -0.8623 0.0306 +vn -0.9959 -0.0644 0.0635 +vn -0.7779 0.6264 0.0494 +vn -0.9890 -0.1333 0.0631 +vn -0.8954 0.4415 0.0572 +vn -0.9752 -0.2125 0.0623 +vn -0.9486 0.3105 0.0606 +vn -0.9486 -0.3105 0.0606 +vn -0.9752 0.2125 0.0623 +vn -0.8954 -0.4415 0.0572 +vn -0.9890 0.1333 0.0631 +vn -0.7779 -0.6264 0.0494 +vn -0.9779 -0.2088 0.0000 +vn -0.9522 -0.3054 0.0000 +vn -0.9522 0.3054 0.0000 +vn -0.9779 0.2088 0.0000 +vn -0.9004 -0.4351 0.0000 +vn -0.9914 0.1310 0.0000 +vn -0.7848 -0.6197 0.0000 +vn -0.9980 0.0633 0.0000 +vn -0.5119 -0.8591 0.0000 +vn -0.5119 0.8591 0.0000 +vn -0.9980 -0.0633 0.0000 +vn -0.7848 0.6197 0.0000 +vn -0.9914 -0.1310 0.0000 +vn -0.9004 0.4351 0.0000 +vn -0.5054 0.8623 -0.0306 +vn -0.5054 -0.8623 -0.0306 +vn -0.9980 0.0000 -0.0637 +vn -0.9959 -0.0644 -0.0635 +vn -0.7779 0.6264 -0.0494 +vn -0.9890 -0.1333 -0.0631 +vn -0.8954 0.4415 -0.0572 +vn -0.9752 -0.2125 -0.0623 +vn -0.9486 0.3105 -0.0606 +vn -0.9486 -0.3105 -0.0606 +vn -0.9752 0.2125 -0.0623 +vn -0.8954 -0.4415 -0.0572 +vn -0.9890 0.1333 -0.0631 +vn -0.7779 -0.6264 -0.0494 +vn -0.9959 0.0644 -0.0635 +vn -0.9370 0.3262 -0.1248 +vn -0.9661 0.2240 -0.1286 +vn -0.9370 -0.3262 -0.1248 +vn -0.8795 -0.4612 -0.1169 +vn -0.9814 0.1408 -0.1306 +vn -0.7565 -0.6463 -0.0998 +vn -0.9890 0.0681 -0.1316 +vn -0.4858 -0.8719 -0.0613 +vn -0.9912 0.0000 -0.1318 +vn -0.4858 0.8719 -0.0613 +vn -0.9890 -0.0681 -0.1316 +vn -0.7565 0.6463 -0.0998 +vn -0.9814 -0.1408 -0.1306 +vn -0.8795 0.4612 -0.1169 +vn -0.9661 -0.2240 -0.1286 +vn -0.9776 0.0000 -0.2103 +vn -0.9749 -0.0748 -0.2097 +vn -0.4519 0.8873 -0.0919 +vn -0.7177 0.6795 -0.1522 +vn -0.9659 -0.1545 -0.2078 +vn -0.8492 0.4956 -0.1820 +vn -0.9478 -0.2451 -0.2039 +vn -0.9140 0.3548 -0.1965 +vn -0.9140 -0.3548 -0.1965 +vn -0.9478 0.2451 -0.2039 +vn -0.8492 -0.4956 -0.1820 +vn -0.9659 0.1545 -0.2078 +vn -0.7177 -0.6795 -0.1522 +vn -0.9749 0.0748 -0.2097 +vn -0.4519 -0.8873 -0.0919 +vn -0.8724 -0.3997 -0.2813 +vn -0.7969 -0.5473 -0.2557 +vn -0.9137 0.2793 -0.2952 +vn -0.9364 0.1772 -0.3028 +vn -0.6560 -0.7255 -0.2076 +vn -0.9479 0.0861 -0.3066 +vn -0.4021 -0.9074 -0.1221 +vn -0.9514 0.0000 -0.3078 +vn -0.4021 0.9074 -0.1221 +vn -0.9479 -0.0861 -0.3066 +vn -0.6560 0.7255 -0.2076 +vn -0.9364 -0.1772 -0.3028 +vn -0.7969 0.5473 -0.2557 +vn -0.9137 -0.2793 -0.2952 +vn -0.8724 0.3997 -0.2814 +vn -0.8937 -0.1043 -0.4363 +vn -0.8781 -0.2134 -0.4283 +vn -0.5630 0.7825 -0.2659 +vn -0.7085 0.6180 -0.3405 +vn -0.8480 -0.3323 -0.4128 +vn -0.7961 0.4661 -0.3858 +vn -0.7961 -0.4661 -0.3858 +vn -0.8480 0.3323 -0.4128 +vn -0.7085 -0.6180 -0.3405 +vn -0.8781 0.2134 -0.4283 +vn -0.5630 -0.7825 -0.2659 +vn -0.8937 0.1043 -0.4363 +vn -0.3343 -0.9302 -0.1512 +vn -0.8986 0.0000 -0.4388 +vn -0.3343 0.9302 -0.1512 +vn -0.5608 -0.7042 -0.4353 +vn -0.4275 -0.8438 -0.3244 +vn -0.7527 0.2689 -0.6009 +vn -0.7737 0.1331 -0.6193 +vn -0.2461 -0.9527 -0.1784 +vn -0.7804 0.0000 -0.6252 +vn -0.2461 0.9527 -0.1784 +vn -0.7737 -0.1331 -0.6193 +vn -0.4275 0.8438 -0.3244 +vn -0.7527 -0.2689 -0.6009 +vn -0.5608 0.7042 -0.4353 +vn -0.7144 -0.4097 -0.5672 +vn -0.6531 0.5559 -0.5141 +vn -0.6531 -0.5559 -0.5141 +vn -0.7144 0.4097 -0.5672 +vn -0.2386 0.8957 -0.3753 +vn -0.3247 0.7862 -0.5257 +vn -0.4766 -0.3388 -0.8112 +vn -0.4424 -0.5007 -0.7440 +vn -0.3923 0.6518 -0.6489 +vn -0.3923 -0.6518 -0.6489 +vn -0.4424 0.5007 -0.7440 +vn -0.3247 -0.7862 -0.5257 +vn -0.4766 0.3388 -0.8112 +vn -0.2386 -0.8957 -0.3753 +vn -0.4966 0.1708 -0.8510 +vn -0.1346 -0.9701 -0.2018 +vn -0.5031 0.0000 -0.8642 +vn -0.1346 0.9701 -0.2018 +vn -0.4966 -0.1708 -0.8510 +vn -0.2774 0.3615 -0.8901 +vn -0.2924 0.1832 -0.9385 +vn -0.1232 -0.9102 -0.3955 +vn -0.0662 -0.9749 -0.2126 +vn -0.2975 0.0000 -0.9547 +vn -0.0662 0.9749 -0.2126 +vn -0.2924 -0.1832 -0.9385 +vn -0.1232 0.9102 -0.3955 +vn -0.2774 -0.3615 -0.8901 +vn -0.1744 0.8102 -0.5596 +vn -0.2524 -0.5294 -0.8099 +vn -0.2178 0.6811 -0.6990 +vn -0.2178 -0.6811 -0.6990 +vn -0.2524 0.5294 -0.8099 +vn -0.1744 -0.8102 -0.5596 +vn 0.7804 0.0000 -0.6252 +vn 0.7737 -0.1331 -0.6193 +vn 0.4966 -0.1708 -0.8510 +vn 0.5031 0.0000 -0.8642 +vn 0.3247 -0.7862 -0.5257 +vn 0.2386 -0.8957 -0.3753 +vn 0.1232 -0.9102 -0.3955 +vn 0.1744 -0.8102 -0.5596 +vn 0.7527 -0.2689 -0.6008 +vn 0.4766 -0.3388 -0.8112 +vn 0.1346 -0.9701 -0.2018 +vn 0.0662 -0.9749 -0.2126 +vn 0.7144 -0.4097 -0.5672 +vn 0.4424 -0.5007 -0.7440 +vn 0.2521 0.9677 0.0000 +vn 0.1346 0.9701 -0.2018 +vn 0.0662 0.9749 -0.2126 +vn 0.6531 -0.5559 -0.5141 +vn 0.3923 -0.6518 -0.6489 +vn 0.2924 -0.1832 -0.9385 +vn 0.2975 0.0000 -0.9547 +vn 0.5608 -0.7042 -0.4353 +vn 0.2774 -0.3615 -0.8901 +vn 0.3247 0.7862 -0.5257 +vn 0.3923 0.6518 -0.6489 +vn 0.2178 0.6811 -0.6990 +vn 0.1744 0.8102 -0.5596 +vn 0.7144 0.4097 -0.5672 +vn 0.7527 0.2689 -0.6008 +vn 0.4766 0.3388 -0.8112 +vn 0.4424 0.5007 -0.7440 +vn 0.4275 -0.8438 -0.3244 +vn 0.2461 -0.9527 -0.1784 +vn 0.2524 -0.5294 -0.8099 +vn 0.2461 0.9527 -0.1784 +vn 0.2178 -0.6811 -0.6990 +vn 0.6531 0.5559 -0.5141 +vn 0.2386 0.8957 -0.3753 +vn 0.1232 0.9102 -0.3955 +vn 0.7737 0.1331 -0.6193 +vn 0.4966 0.1708 -0.8510 +vn 0.2524 0.5294 -0.8099 +vn 0.2521 -0.9677 0.0000 +vn 0.2774 0.3615 -0.8901 +vn 0.4275 0.8438 -0.3244 +vn 0.2924 0.1832 -0.9385 +vn 0.5608 0.7042 -0.4353 +vn 0.7961 0.4661 -0.3858 +vn 0.8480 0.3323 -0.4128 +vn 0.3343 -0.9302 -0.1512 +vn 0.7961 -0.4661 -0.3858 +vn 0.7085 -0.6180 -0.3405 +vn 0.8986 0.0000 -0.4388 +vn 0.8937 -0.1043 -0.4363 +vn 0.8781 0.2134 -0.4283 +vn 0.3343 0.9302 -0.1512 +vn 0.5630 0.7825 -0.2659 +vn 0.5630 -0.7825 -0.2659 +vn 0.8781 -0.2134 -0.4283 +vn 0.8937 0.1043 -0.4363 +vn 0.8480 -0.3323 -0.4128 +vn 0.7085 0.6180 -0.3405 +vn 0.6560 0.7256 -0.2077 +vn 0.7969 0.5473 -0.2557 +vn 0.9479 0.0861 -0.3066 +vn 0.9514 0.0000 -0.3078 +vn 0.9364 0.1772 -0.3028 +vn 0.9364 -0.1772 -0.3028 +vn 0.9137 -0.2793 -0.2952 +vn 0.6560 -0.7255 -0.2076 +vn 0.4021 -0.9074 -0.1221 +vn 0.8724 0.3997 -0.2813 +vn 0.4021 0.9074 -0.1221 +vn 0.8724 -0.3997 -0.2813 +vn 0.9137 0.2793 -0.2952 +vn 0.9479 -0.0861 -0.3066 +vn 0.7969 -0.5473 -0.2557 +vn 0.4519 0.8873 -0.0919 +vn 0.7177 0.6795 -0.1522 +vn 0.8492 -0.4956 -0.1820 +vn 0.7177 -0.6795 -0.1522 +vn 0.9749 -0.0748 -0.2097 +vn 0.9659 -0.1545 -0.2078 +vn 0.9659 0.1545 -0.2078 +vn 0.9749 0.0748 -0.2097 +vn 0.8492 0.4956 -0.1820 +vn 0.4519 -0.8873 -0.0919 +vn 0.9478 -0.2451 -0.2039 +vn 0.9776 0.0000 -0.2103 +vn 0.9140 0.3548 -0.1965 +vn 0.9478 0.2451 -0.2039 +vn 0.9140 -0.3548 -0.1965 +vn 0.9890 0.0681 -0.1316 +vn 0.9912 0.0000 -0.1318 +vn 0.9661 -0.2240 -0.1286 +vn 0.9370 -0.3262 -0.1248 +vn 0.4858 0.8719 -0.0613 +vn 0.9370 0.3262 -0.1248 +vn 0.9661 0.2240 -0.1286 +vn 0.9890 -0.0681 -0.1316 +vn 0.8795 -0.4612 -0.1170 +vn 0.7565 0.6463 -0.0998 +vn 0.9814 0.1408 -0.1306 +vn 0.9814 -0.1408 -0.1306 +vn 0.7565 -0.6463 -0.0998 +vn 0.8795 0.4612 -0.1169 +vn 0.4858 -0.8719 -0.0613 +vn 0.7779 0.6264 -0.0494 +vn 0.8954 0.4415 -0.0572 +vn 0.7779 -0.6264 -0.0494 +vn 0.5054 -0.8623 -0.0306 +vn 0.9890 -0.1333 -0.0631 +vn 0.9752 -0.2125 -0.0623 +vn 0.9959 0.0644 -0.0635 +vn 0.9980 0.0000 -0.0637 +vn 0.9486 0.3105 -0.0606 +vn 0.5054 0.8623 -0.0306 +vn 0.9486 -0.3105 -0.0606 +vn 0.8954 -0.4415 -0.0572 +vn 0.9752 0.2125 -0.0623 +vn 0.9959 -0.0644 -0.0635 +vn 0.9890 0.1333 -0.0631 +vn 0.9980 -0.0633 0.0000 +vn 0.9779 0.2088 0.0000 +vn 0.9914 0.1310 0.0000 +vn 0.9914 -0.1310 0.0000 +vn 0.9004 -0.4351 0.0000 +vn 0.7848 -0.6197 0.0000 +vn 0.7848 0.6197 0.0000 +vn 0.9004 0.4351 0.0000 +vn 0.9980 0.0633 0.0000 +vn 0.9779 -0.2088 0.0000 +vn 0.5119 -0.8591 0.0000 +vn 0.9522 0.3054 0.0000 +vn 0.9522 -0.3054 0.0000 +vn 0.5119 0.8591 0.0000 +vn 0.9959 0.0644 0.0635 +vn 0.9980 0.0000 0.0637 +vn 0.8954 0.4415 0.0572 +vn 0.9486 0.3105 0.0606 +vn 0.5054 0.8623 0.0306 +vn 0.9752 -0.2125 0.0623 +vn 0.9486 -0.3105 0.0606 +vn 0.5054 -0.8623 0.0306 +vn 0.9752 0.2125 0.0623 +vn 0.9890 0.1333 0.0631 +vn 0.9959 -0.0644 0.0635 +vn 0.8954 -0.4415 0.0572 +vn 0.7779 0.6264 0.0494 +vn 0.7779 -0.6264 0.0494 +vn 0.9890 -0.1333 0.0631 +vn 0.8795 -0.4612 0.1170 +vn 0.7565 -0.6463 0.0998 +vn 0.7565 0.6463 0.0998 +vn 0.8795 0.4612 0.1169 +vn 0.9814 0.1408 0.1306 +vn 0.9890 0.0681 0.1316 +vn 0.9814 -0.1408 0.1306 +vn 0.9661 -0.2240 0.1286 +vn 0.4858 -0.8719 0.0613 +vn 0.9370 0.3262 0.1248 +vn 0.9912 0.0000 0.1318 +vn 0.9370 -0.3262 0.1248 +vn 0.4858 0.8719 0.0613 +vn 0.9661 0.2240 0.1286 +vn 0.9890 -0.0681 0.1316 +vn 0.9478 -0.2451 0.2039 +vn 0.9140 -0.3548 0.1965 +vn 0.4519 -0.8873 0.0919 +vn 0.9140 0.3548 0.1965 +vn 0.9478 0.2451 0.2039 +vn 0.9776 0.0000 0.2103 +vn 0.9749 -0.0748 0.2097 +vn 0.8492 -0.4956 0.1820 +vn 0.7177 -0.6795 0.1522 +vn 0.4519 0.8873 0.0919 +vn 0.7177 0.6795 0.1522 +vn 0.9659 0.1545 0.2078 +vn 0.9659 -0.1545 0.2078 +vn 0.9749 0.0748 0.2097 +vn 0.8492 0.4956 0.1820 +vn 0.9364 -0.1772 0.3028 +vn 0.9137 -0.2793 0.2952 +vn 0.6560 -0.7255 0.2076 +vn 0.4021 -0.9074 0.1221 +vn 0.7969 0.5473 0.2557 +vn 0.8724 0.3997 0.2813 +vn 0.9479 0.0861 0.3066 +vn 0.9514 0.0000 0.3078 +vn 0.8724 -0.3997 0.2813 +vn 0.4021 0.9074 0.1221 +vn 0.9137 0.2793 0.2952 +vn 0.7969 -0.5473 0.2557 +vn 0.9479 -0.0861 0.3066 +vn 0.9364 0.1772 0.3028 +vn 0.6561 0.7255 0.2076 +vn 0.8986 0.0000 0.4388 +vn 0.8937 -0.1043 0.4363 +vn 0.7961 -0.4661 0.3858 +vn 0.7085 -0.6180 0.3405 +vn 0.3343 0.9302 0.1512 +vn 0.5630 0.7825 0.2659 +vn 0.8781 0.2134 0.4283 +vn 0.8937 0.1043 0.4363 +vn 0.8480 0.3323 0.4128 +vn 0.8781 -0.2134 0.4283 +vn 0.5630 -0.7825 0.2659 +vn 0.7085 0.6180 0.3405 +vn 0.3343 -0.9302 0.1512 +vn 0.8480 -0.3323 0.4128 +vn 0.7961 0.4661 0.3858 +vn 0.2461 0.9527 0.1784 +vn 0.6531 0.5559 0.5141 +vn 0.7144 0.4097 0.5672 +vn 0.2461 -0.9527 0.1784 +vn 0.6531 -0.5559 0.5141 +vn 0.5608 -0.7042 0.4353 +vn 0.7804 0.0000 0.6252 +vn 0.7737 -0.1331 0.6193 +vn 0.7527 0.2689 0.6008 +vn 0.4275 0.8438 0.3244 +vn 0.4275 -0.8438 0.3244 +vn 0.7527 -0.2689 0.6009 +vn 0.7737 0.1331 0.6193 +vn 0.5608 0.7042 0.4353 +vn 0.7144 -0.4097 0.5672 +vn 0.3247 -0.7862 0.5257 +vn 0.2386 -0.8957 0.3753 +vn 0.2386 0.8957 0.3753 +vn 0.3247 0.7862 0.5257 +vn 0.4966 0.1708 0.8510 +vn 0.5031 0.0000 0.8642 +vn 0.4766 0.3388 0.8112 +vn 0.4766 -0.3388 0.8112 +vn 0.4424 -0.5007 0.7440 +vn 0.1346 -0.9701 0.2018 +vn 0.3923 0.6518 0.6489 +vn 0.1346 0.9701 0.2018 +vn 0.3923 -0.6518 0.6489 +vn 0.4424 0.5007 0.7440 +vn 0.4966 -0.1708 0.8510 +vn 0.2774 -0.3615 0.8901 +vn 0.2524 -0.5294 0.8099 +vn 0.2924 0.1832 0.9385 +vn 0.2975 0.0000 0.9547 +vn 0.1744 0.8102 0.5596 +vn 0.2178 0.6811 0.6990 +vn 0.0662 0.9749 0.2126 +vn 0.2178 -0.6811 0.6990 +vn 0.0662 -0.9749 0.2126 +vn 0.2524 0.5294 0.8099 +vn 0.2924 -0.1832 0.9385 +vn 0.1743 -0.8102 0.5596 +vn 0.1232 -0.9102 0.3955 +vn 0.1232 0.9102 0.3955 +vn 0.2774 0.3615 0.8901 +vn 0.6965 0.2113 0.6857 +vn 0.6965 0.2113 -0.6857 +vn 0.6419 0.3431 -0.6857 +vn 0.6419 0.3431 0.6857 +vn 0.7244 0.0713 0.6857 +vn 0.7244 0.0713 -0.6857 +vn 0.7244 -0.0713 0.6857 +vn 0.7244 -0.0713 -0.6857 +vn 0.6965 -0.2113 0.6857 +vn 0.6965 -0.2113 -0.6857 +vn 0.6419 -0.3431 0.6857 +vn 0.6419 -0.3431 -0.6857 +vn 0.5626 -0.4617 0.6857 +vn 0.5626 -0.4617 -0.6857 +vn 0.4617 -0.5626 0.6857 +vn 0.4617 -0.5626 -0.6857 +vn 0.3431 -0.6419 0.6857 +vn 0.3431 -0.6419 -0.6857 +vn 0.2113 -0.6965 0.6857 +vn 0.2113 -0.6965 -0.6857 +vn 0.0713 -0.7244 0.6857 +vn 0.0713 -0.7244 -0.6857 +vn -0.0713 -0.7244 0.6857 +vn -0.0713 -0.7244 -0.6857 +vn -0.2113 -0.6965 0.6857 +vn -0.2113 -0.6965 -0.6857 +vn -0.3431 -0.6419 0.6857 +vn -0.3431 -0.6419 -0.6857 +vn -0.4617 -0.5626 0.6857 +vn -0.4617 -0.5626 -0.6857 +vn -0.5626 -0.4617 0.6857 +vn -0.5626 -0.4617 -0.6857 +vn -0.6419 -0.3431 0.6857 +vn -0.6419 -0.3431 -0.6857 +vn -0.6965 -0.2113 0.6857 +vn -0.6965 -0.2113 -0.6857 +vn -0.7244 -0.0713 0.6857 +vn -0.7244 -0.0713 -0.6857 +vn -0.7244 0.0713 0.6857 +vn -0.7244 0.0713 -0.6857 +vn -0.6965 0.2113 0.6857 +vn -0.6965 0.2113 -0.6857 +vn -0.5626 0.4617 0.6857 +vn -0.5626 0.4617 -0.6857 +vn -0.6419 0.3431 -0.6857 +vn -0.6419 0.3431 0.6857 +vn -0.4617 0.5626 0.6857 +vn -0.4617 0.5626 -0.6857 +vn -0.3431 0.6419 0.6857 +vn -0.3431 0.6419 -0.6857 +vn -0.2113 0.6965 0.6857 +vn -0.2113 0.6965 -0.6857 +vn -0.0713 0.7244 0.6857 +vn -0.0713 0.7244 -0.6857 +vn 0.2113 0.6965 0.6857 +vn 0.2113 0.6965 -0.6857 +vn 0.0713 0.7244 -0.6857 +vn 0.0713 0.7244 0.6857 +vn 0.3431 0.6419 0.6857 +vn 0.3431 0.6419 -0.6857 +vn 0.4617 0.5626 0.6857 +vn 0.4617 0.5626 -0.6857 +vn -0.4604 0.8614 0.2147 +vn -0.4686 0.8767 0.1087 +vn -0.2886 0.9513 0.1087 +vn -0.2835 0.9346 0.2147 +vn -0.0957 0.9720 0.2147 +vn -0.0974 0.9893 0.1087 +vn 0.0957 0.9720 0.2147 +vn 0.0974 0.9893 0.1087 +vn 0.2835 0.9346 0.2147 +vn 0.2886 0.9513 0.1087 +vn 0.4604 0.8614 0.2147 +vn 0.4686 0.8767 0.1087 +vn 0.6196 0.7550 0.2147 +vn 0.6306 0.7684 0.1087 +vn 0.7684 0.6306 0.1087 +vn 0.7550 0.6196 0.2147 +vn 0.8614 0.4604 0.2147 +vn 0.8767 0.4686 0.1087 +vn 0.9346 0.2835 0.2147 +vn 0.9513 0.2886 0.1087 +vn 0.9720 0.0957 0.2147 +vn 0.9893 0.0974 0.1087 +vn 0.9893 -0.0974 0.1087 +vn 0.9720 -0.0957 0.2147 +vn 0.9513 -0.2886 0.1087 +vn 0.9346 -0.2835 0.2147 +vn 0.8614 -0.4604 0.2147 +vn 0.8767 -0.4686 0.1087 +vn 0.7684 -0.6306 0.1087 +vn 0.7550 -0.6196 0.2147 +vn 0.6306 -0.7684 0.1087 +vn 0.6196 -0.7550 0.2147 +vn 0.4604 -0.8614 0.2147 +vn 0.4686 -0.8767 0.1087 +vn 0.2886 -0.9513 0.1087 +vn 0.2835 -0.9346 0.2147 +vn 0.0957 -0.9720 0.2147 +vn 0.0974 -0.9893 0.1087 +vn -0.0974 -0.9893 0.1087 +vn -0.0957 -0.9720 0.2147 +vn -0.2835 -0.9346 0.2147 +vn -0.2886 -0.9513 0.1087 +vn -0.4686 -0.8767 0.1087 +vn -0.4604 -0.8614 0.2147 +vn -0.6306 -0.7684 0.1087 +vn -0.6196 -0.7550 0.2147 +vn -0.7684 -0.6306 0.1087 +vn -0.7550 -0.6196 0.2147 +vn -0.8767 -0.4686 0.1087 +vn -0.8614 -0.4604 0.2147 +vn -0.9513 -0.2886 0.1087 +vn -0.9346 -0.2835 0.2147 +vn -0.9893 -0.0974 0.1087 +vn -0.9720 -0.0957 0.2147 +vn -0.9346 0.2835 0.2147 +vn -0.9720 0.0957 0.2147 +vn -0.9893 0.0974 0.1087 +vn -0.9513 0.2886 0.1087 +vn -0.7550 0.6196 0.2147 +vn -0.8614 0.4604 0.2147 +vn -0.8767 0.4686 0.1087 +vn -0.7684 0.6306 0.1087 +vn -0.6196 0.7550 0.2147 +vn -0.6306 0.7684 0.1087 +vn 0.9952 0.0980 0.0000 +vn 0.9569 0.2903 0.0000 +vn 0.9513 0.2886 -0.1087 +vn 0.9893 0.0974 -0.1087 +vn 0.9952 -0.0980 0.0000 +vn 0.9893 -0.0974 -0.1087 +vn 0.9569 -0.2903 0.0000 +vn 0.9513 -0.2886 -0.1087 +vn 0.8819 0.4714 0.0000 +vn 0.8767 0.4686 -0.1087 +vn 0.8819 -0.4714 0.0000 +vn 0.8767 -0.4686 -0.1087 +vn 0.7730 0.6344 0.0000 +vn 0.7684 0.6306 -0.1087 +vn 0.7730 -0.6344 0.0000 +vn 0.7684 -0.6306 -0.1087 +vn 0.6344 0.7730 0.0000 +vn 0.6306 0.7684 -0.1087 +vn 0.9720 0.0957 -0.2147 +vn 0.9346 0.2835 -0.2147 +vn 0.9720 -0.0957 -0.2147 +vn 0.9346 -0.2835 -0.2147 +vn 0.6344 -0.7730 0.0000 +vn 0.6306 -0.7684 -0.1087 +vn 0.4714 0.8819 0.0000 +vn 0.4686 0.8767 -0.1087 +vn 0.8614 0.4604 -0.2147 +vn 0.8614 -0.4604 -0.2147 +vn 0.4714 -0.8819 0.0000 +vn 0.4686 -0.8767 -0.1087 +vn 0.2903 0.9569 0.0000 +vn 0.2886 0.9513 -0.1087 +vn 0.7550 0.6196 -0.2147 +vn 0.7550 -0.6196 -0.2147 +vn 0.2903 -0.9569 0.0000 +vn 0.2886 -0.9513 -0.1087 +vn 0.0980 0.9952 0.0000 +vn 0.0974 0.9893 -0.1087 +vn 0.6196 0.7550 -0.2147 +vn 0.6196 -0.7550 -0.2147 +vn 0.4604 0.8614 -0.2147 +vn 0.4604 -0.8614 -0.2147 +vn -0.0980 -0.9952 0.0000 +vn 0.0980 -0.9952 0.0000 +vn 0.0974 -0.9893 -0.1087 +vn -0.0974 -0.9893 -0.1087 +vn -0.0980 0.9952 0.0000 +vn -0.2903 0.9569 0.0000 +vn -0.2886 0.9513 -0.1087 +vn -0.0974 0.9893 -0.1087 +vn 0.2835 0.9346 -0.2147 +vn 0.2835 -0.9346 -0.2147 +vn 0.0957 0.9720 -0.2147 +vn 0.0957 -0.9720 -0.2147 +vn -0.4714 -0.8819 0.0000 +vn -0.2903 -0.9569 0.0000 +vn -0.2886 -0.9513 -0.1087 +vn -0.4686 -0.8767 -0.1087 +vn -0.4714 0.8819 0.0000 +vn -0.6344 0.7730 0.0000 +vn -0.6306 0.7684 -0.1087 +vn -0.4686 0.8767 -0.1087 +vn -0.0957 0.9720 -0.2147 +vn -0.0957 -0.9720 -0.2147 +vn 0.5626 0.4617 -0.6857 +vn 0.5626 0.4617 0.6857 +vn -0.6344 -0.7730 0.0000 +vn -0.6306 -0.7684 -0.1087 +vn -0.7730 0.6344 0.0000 +vn -0.7684 0.6306 -0.1087 +vn -0.2835 0.9346 -0.2147 +vn -0.2835 -0.9346 -0.2147 +vn -0.4604 0.8614 -0.2147 +vn -0.4604 -0.8614 -0.2147 +vn -0.6196 0.7550 -0.2147 +vn -0.6196 -0.7550 -0.2147 +vn -0.9569 -0.2903 0.0000 +vn -0.8819 -0.4714 0.0000 +vn -0.8767 -0.4686 -0.1087 +vn -0.9513 -0.2886 -0.1087 +vn -0.9569 0.2903 0.0000 +vn -0.9952 0.0980 0.0000 +vn -0.9893 0.0974 -0.1087 +vn -0.9513 0.2886 -0.1087 +vn -0.7550 0.6196 -0.2147 +vn -0.7550 -0.6196 -0.2147 +vn -0.7684 -0.6306 -0.1087 +vn -0.9952 -0.0980 0.0000 +vn -0.9893 -0.0974 -0.1087 +vn -0.8614 0.4604 -0.2147 +vn -0.8767 0.4686 -0.1087 +vn -0.8614 -0.4604 -0.2147 +vn -0.9346 0.2835 -0.2147 +vn -0.9346 -0.2835 -0.2147 +vn -0.9720 0.0957 -0.2147 +vn -0.9720 -0.0957 -0.2147 +vn -0.7321 -0.3032 -0.6100 +vn -0.9239 -0.3827 0.0000 +vn -0.7933 0.6088 0.0000 +vn -0.6287 0.4824 -0.6100 +vn -0.1034 -0.7856 -0.6100 +vn -0.1305 -0.9914 0.0000 +vn 0.1305 0.9914 0.0000 +vn 0.1034 0.7856 -0.6100 +vn 0.9239 0.3827 0.0000 +vn 0.7321 0.3032 -0.6100 +vn 0.7933 -0.6088 0.0000 +vn 0.6287 -0.4824 -0.6100 +vn 0.7321 0.3032 0.6100 +vn 0.1034 0.7856 0.6100 +vn 0.6287 -0.4824 0.6100 +vn -0.6287 0.4824 0.6100 +vn -0.7321 -0.3032 0.6100 +vn -0.1034 -0.7856 0.6100 +vn -0.3032 -0.7321 -0.6100 +vn -0.3827 -0.9239 0.0000 +vn -0.9914 -0.1305 0.0000 +vn -0.7856 -0.1034 -0.6100 +vn 0.4824 -0.6287 -0.6100 +vn 0.6088 -0.7933 0.0000 +vn -0.6088 0.7933 0.0000 +vn -0.4824 0.6287 -0.6100 +vn 0.3827 0.9239 0.0000 +vn 0.3032 0.7321 -0.6100 +vn 0.9914 0.1305 0.0000 +vn 0.7856 0.1034 -0.6100 +vn 0.3032 0.7321 0.6100 +vn -0.4824 0.6287 0.6100 +vn 0.7856 0.1034 0.6100 +vn -0.7856 -0.1034 0.6100 +vn -0.3032 -0.7321 0.6100 +vn 0.4824 -0.6287 0.6100 +vn 0.3032 -0.7321 -0.6100 +vn 0.3827 -0.9239 0.0000 +vn -0.6088 -0.7933 0.0000 +vn -0.4824 -0.6287 -0.6100 +vn 0.7856 -0.1034 -0.6100 +vn 0.9914 -0.1305 0.0000 +vn -0.9914 0.1305 0.0000 +vn -0.7856 0.1034 -0.6100 +vn -0.3827 0.9239 0.0000 +vn -0.3032 0.7321 -0.6100 +vn 0.6088 0.7933 0.0000 +vn 0.4824 0.6287 -0.6100 +vn -0.3032 0.7321 0.6100 +vn -0.7856 0.1034 0.6100 +vn 0.4824 0.6287 0.6100 +vn -0.4824 -0.6287 0.6100 +vn 0.3032 -0.7321 0.6100 +vn 0.7856 -0.1034 0.6100 +vn 0.7321 -0.3032 -0.6100 +vn 0.9239 -0.3827 0.0000 +vn 0.1305 -0.9914 0.0000 +vn 0.1034 -0.7856 -0.6100 +vn 0.6287 0.4824 -0.6100 +vn 0.7933 0.6088 0.0000 +vn -0.7933 -0.6088 0.0000 +vn -0.6287 -0.4824 -0.6100 +vn -0.9239 0.3827 0.0000 +vn -0.7321 0.3032 -0.6100 +vn -0.1305 0.9914 0.0000 +vn -0.1034 0.7856 -0.6100 +vn -0.7321 0.3032 0.6100 +vn -0.6287 -0.4824 0.6100 +vn -0.1034 0.7856 0.6100 +vn 0.1034 -0.7856 0.6100 +vn 0.7321 -0.3032 0.6100 +vn 0.6287 0.4824 0.6100 +vn -0.8819 0.4714 0.0000 +vn -0.7730 -0.6344 0.0000 +vn -0.5603 -0.5603 -0.6100 +vn -0.9659 0.2588 0.0000 +vn -0.7654 0.2051 -0.6100 +vn 0.2051 -0.7654 -0.6100 +vn 0.2588 -0.9659 0.0000 +vn -0.2588 0.9659 0.0000 +vn -0.2051 0.7654 -0.6100 +vn 0.5603 0.5603 -0.6100 +vn 0.9659 -0.2588 0.0000 +vn 0.7654 -0.2051 -0.6100 +vn 0.5603 0.5603 0.6100 +vn -0.2051 0.7654 0.6100 +vn 0.7654 -0.2051 0.6100 +vn -0.7654 0.2051 0.6100 +vn -0.5603 -0.5603 0.6100 +vn 0.2051 -0.7654 0.6100 +vn 0.0000 -0.7924 -0.6100 +vn -0.8660 -0.5000 0.0000 +vn -0.6862 -0.3962 -0.6100 +vn 0.6862 -0.3962 -0.6100 +vn 0.8660 -0.5000 0.0000 +vn -0.8660 0.5000 0.0000 +vn -0.6862 0.3962 -0.6100 +vn 0.0000 0.7924 -0.6100 +vn 0.8660 0.5000 0.0000 +vn 0.6862 0.3962 -0.6100 +vn 0.0000 0.7924 0.6100 +vn -0.6862 0.3962 0.6100 +vn 0.6862 0.3962 0.6100 +vn -0.6862 -0.3962 0.6100 +vn 0.0000 -0.7924 0.6100 +vn 0.6862 -0.3962 0.6100 +vn 0.5603 -0.5603 -0.6100 +vn -0.2588 -0.9659 0.0000 +vn -0.2051 -0.7654 -0.6100 +vn 0.7654 0.2051 -0.6100 +vn 0.9659 0.2588 0.0000 +vn -0.9659 -0.2588 0.0000 +vn -0.7654 -0.2051 -0.6100 +vn -0.5603 0.5603 -0.6100 +vn 0.2588 0.9659 0.0000 +vn 0.2051 0.7654 -0.6100 +vn -0.5603 0.5603 0.6100 +vn -0.7654 -0.2051 0.6100 +vn 0.2051 0.7654 0.6100 +vn -0.2051 -0.7654 0.6100 +vn 0.5603 -0.5603 0.6100 +vn 0.7654 0.2051 0.6100 +vn 0.7924 0.0000 -0.6100 +vn 0.5000 -0.8660 0.0000 +vn 0.3962 -0.6862 -0.6100 +vn 0.3962 0.6862 -0.6100 +vn 0.5000 0.8660 0.0000 +vn -0.5000 -0.8660 0.0000 +vn -0.3962 -0.6862 -0.6100 +vn -0.7924 0.0000 -0.6100 +vn -0.5000 0.8660 0.0000 +vn -0.3962 0.6862 -0.6100 +vn -0.7924 0.0000 0.6100 +vn -0.3962 -0.6862 0.6100 +vn -0.3962 0.6862 0.6100 +vn 0.3962 -0.6862 0.6100 +vn 0.7924 0.0000 0.6100 +vn 0.3962 0.6862 0.6100 +g Cube.001_Cube.001_None +s off +f 517/1/1 564/2/1 612/3/1 660/4/1 +f 804/5/2 853/6/2 661/7/2 611/8/2 +f 851/9/3 803/10/3 755/11/3 708/12/3 +f 756/13/4 805/14/4 613/15/4 563/16/4 +f 852/17/5 707/18/5 515/19/5 659/20/5 +f 515/19/6 518/21/6 522/22/6 521/23/6 +f 518/21/7 519/24/7 523/25/7 522/22/7 +f 519/24/8 520/26/8 524/27/8 523/25/8 +f 520/26/9 544/28/9 545/29/9 524/27/9 +f 521/23/10 522/22/10 526/30/10 525/31/10 +f 522/22/11 523/25/11 527/32/11 526/30/11 +f 523/25/12 524/27/12 528/33/12 527/32/12 +f 524/27/13 545/29/13 546/34/13 528/33/13 +f 525/31/14 526/30/14 530/35/14 529/36/14 +f 526/30/15 527/32/15 531/37/15 530/35/15 +f 527/32/16 528/33/16 532/38/16 531/37/16 +f 528/33/17 546/34/17 547/39/17 532/38/17 +f 516/40/18 533/41/18 537/42/18 536/43/18 +f 533/41/19 534/44/19 538/45/19 537/42/19 +f 534/44/20 535/46/20 539/47/20 538/45/20 +f 535/46/21 559/48/21 560/49/21 539/47/21 +f 536/43/22 537/42/22 541/50/22 540/51/22 +f 537/42/23 538/45/23 542/52/23 541/50/23 +f 538/45/24 539/47/24 543/53/24 542/52/24 +f 539/47/25 560/49/25 561/54/25 543/53/25 +f 540/51/26 541/50/26 545/55/26 544/56/26 +f 541/50/27 542/52/27 546/57/27 545/55/27 +f 542/52/28 543/53/28 547/58/28 546/57/28 +f 543/53/29 561/54/29 562/59/29 547/58/29 +f 517/1/30 548/60/30 552/61/30 551/62/30 +f 548/60/31 549/63/31 553/64/31 552/61/31 +f 549/63/32 550/65/32 554/66/32 553/64/32 +f 550/65/33 529/67/33 530/68/33 554/66/33 +f 551/62/34 552/61/34 556/69/34 555/70/34 +f 552/61/35 553/64/35 557/71/35 556/69/35 +f 553/64/36 554/66/36 558/72/36 557/71/36 +f 554/66/37 530/68/37 531/73/37 558/72/37 +f 555/70/38 556/69/38 560/74/38 559/75/38 +f 556/69/39 557/71/39 561/76/39 560/74/39 +f 557/71/40 558/72/40 562/77/40 561/76/40 +f 558/72/41 531/73/41 532/78/41 562/77/41 +f 532/38/42 547/39/42 562/79/42 +f 563/16/43 566/80/43 570/81/43 569/82/43 +f 566/80/44 567/83/44 571/84/44 570/81/44 +f 567/83/45 568/85/45 572/86/45 571/84/45 +f 568/85/46 592/87/46 593/88/46 572/86/46 +f 569/82/47 570/81/47 574/89/47 573/90/47 +f 570/81/48 571/84/48 575/91/48 574/89/48 +f 571/84/49 572/86/49 576/92/49 575/91/49 +f 572/86/50 593/88/50 594/93/50 576/92/50 +f 573/90/51 574/89/51 578/94/51 577/95/51 +f 574/89/52 575/91/52 579/96/52 578/94/52 +f 575/91/53 576/92/53 580/97/53 579/96/53 +f 576/92/54 594/93/54 595/98/54 580/97/54 +f 564/2/55 581/99/55 585/100/55 584/101/55 +f 581/99/56 582/102/56 586/103/56 585/100/56 +f 582/102/57 583/104/57 587/105/57 586/103/57 +f 583/104/58 607/106/58 608/107/58 587/105/58 +f 584/101/59 585/100/59 589/108/59 588/109/59 +f 585/100/60 586/103/60 590/110/60 589/108/60 +f 586/103/61 587/105/61 591/111/61 590/110/61 +f 587/105/62 608/107/62 609/112/62 591/111/62 +f 588/109/63 589/108/63 593/113/63 592/114/63 +f 589/108/64 590/110/64 594/115/64 593/113/64 +f 590/110/65 591/111/65 595/116/65 594/115/65 +f 591/111/66 609/112/66 610/117/66 595/116/66 +f 565/118/67 596/119/67 600/120/67 599/121/67 +f 596/119/68 597/122/68 601/123/68 600/120/68 +f 597/122/69 598/124/69 602/125/69 601/123/69 +f 598/124/70 577/126/70 578/127/70 602/125/70 +f 599/121/71 600/120/71 604/128/71 603/129/71 +f 600/120/72 601/123/72 605/130/72 604/128/72 +f 601/123/73 602/125/73 606/131/73 605/130/73 +f 602/125/74 578/127/74 579/132/74 606/131/74 +f 603/129/75 604/128/75 608/133/75 607/134/75 +f 604/128/76 605/130/76 609/135/76 608/133/76 +f 605/130/77 606/131/77 610/136/77 609/135/77 +f 606/131/78 579/132/78 580/137/78 610/136/78 +f 580/97/79 595/98/79 610/138/79 +f 611/8/80 614/139/80 618/140/80 617/141/80 +f 614/139/81 615/142/81 619/143/81 618/140/81 +f 615/142/82 616/144/82 620/145/82 619/143/82 +f 616/144/83 640/146/83 641/147/83 620/145/83 +f 617/141/84 618/140/84 622/148/84 621/149/84 +f 618/140/85 619/143/85 623/150/85 622/148/85 +f 619/143/86 620/145/86 624/151/86 623/150/86 +f 620/145/87 641/147/87 642/152/87 624/151/87 +f 621/149/88 622/148/88 626/153/88 625/154/88 +f 622/148/89 623/150/89 627/155/89 626/153/89 +f 623/150/90 624/151/90 628/156/90 627/155/90 +f 624/151/91 642/152/91 643/157/91 628/156/91 +f 612/3/92 629/158/92 633/159/92 632/160/92 +f 629/158/93 630/161/93 634/162/93 633/159/93 +f 630/161/94 631/163/94 635/164/94 634/162/94 +f 631/163/95 655/165/95 656/166/95 635/164/95 +f 632/160/96 633/159/96 637/167/96 636/168/96 +f 633/159/97 634/162/97 638/169/97 637/167/97 +f 634/162/98 635/164/98 639/170/98 638/169/98 +f 635/164/99 656/166/99 657/171/99 639/170/99 +f 636/168/100 637/167/100 641/172/100 640/173/100 +f 637/167/101 638/169/101 642/174/101 641/172/101 +f 638/169/102 639/170/102 643/175/102 642/174/102 +f 639/170/103 657/171/103 658/176/103 643/175/103 +f 613/15/104 644/177/104 648/178/104 647/179/104 +f 644/177/105 645/180/105 649/181/105 648/178/105 +f 645/180/106 646/182/106 650/183/106 649/181/106 +f 646/182/107 625/184/107 626/185/107 650/183/107 +f 647/179/108 648/178/108 652/186/108 651/187/108 +f 648/178/109 649/181/109 653/188/109 652/186/109 +f 649/181/110 650/183/110 654/189/110 653/188/110 +f 650/183/111 626/185/111 627/190/111 654/189/111 +f 651/187/112 652/186/112 656/191/112 655/192/112 +f 652/186/113 653/188/113 657/193/113 656/191/113 +f 653/188/114 654/189/114 658/194/114 657/193/114 +f 654/189/115 627/190/115 628/195/115 658/194/115 +f 628/156/116 643/157/116 658/196/116 +f 659/20/117 662/197/117 666/198/117 665/199/117 +f 662/197/118 663/200/118 667/201/118 666/198/118 +f 663/200/119 664/202/119 668/203/119 667/201/119 +f 664/202/120 688/204/120 689/205/120 668/203/120 +f 665/199/121 666/198/121 670/206/121 669/207/121 +f 666/198/122 667/201/122 671/208/122 670/206/122 +f 667/201/123 668/203/123 672/209/123 671/208/123 +f 668/203/124 689/205/124 690/210/124 672/209/124 +f 669/207/125 670/206/125 674/211/125 673/212/125 +f 670/206/126 671/208/126 675/213/126 674/211/126 +f 671/208/127 672/209/127 676/214/127 675/213/127 +f 672/209/128 690/210/128 691/215/128 676/214/128 +f 660/4/129 677/216/129 681/217/129 680/218/129 +f 677/216/130 678/219/130 682/220/130 681/217/130 +f 678/219/131 679/221/131 683/222/131 682/220/131 +f 679/221/132 703/223/132 704/224/132 683/222/132 +f 680/218/133 681/217/133 685/225/133 684/226/133 +f 681/217/134 682/220/134 686/227/134 685/225/134 +f 682/220/135 683/222/135 687/228/135 686/227/135 +f 683/222/136 704/224/136 705/229/136 687/228/136 +f 684/226/137 685/225/137 689/230/137 688/231/137 +f 685/225/138 686/227/138 690/232/138 689/230/138 +f 686/227/139 687/228/139 691/233/139 690/232/139 +f 687/228/140 705/229/140 706/234/140 691/233/140 +f 661/7/141 692/235/141 696/236/141 695/237/141 +f 692/235/142 693/238/142 697/239/142 696/236/142 +f 693/238/143 694/240/143 698/241/143 697/239/143 +f 694/240/144 673/242/144 674/243/144 698/241/144 +f 695/237/145 696/236/145 700/244/145 699/245/145 +f 696/236/146 697/239/146 701/246/146 700/244/146 +f 697/239/147 698/241/147 702/247/147 701/246/147 +f 698/241/148 674/243/148 675/248/148 702/247/148 +f 699/245/149 700/244/149 704/249/149 703/250/149 +f 700/244/150 701/246/150 705/251/150 704/249/150 +f 701/246/151 702/247/151 706/252/151 705/251/151 +f 702/247/152 675/248/152 676/253/152 706/252/152 +f 676/214/153 691/215/153 706/254/153 +f 707/18/154 710/255/154 714/256/154 713/257/154 +f 710/255/155 711/258/155 715/259/155 714/256/155 +f 711/258/156 712/260/156 716/261/156 715/259/156 +f 712/260/157 736/262/157 737/263/157 716/261/157 +f 713/257/158 714/256/158 718/264/158 717/265/158 +f 714/256/159 715/259/159 719/266/159 718/264/159 +f 715/259/160 716/261/160 720/267/160 719/266/160 +f 716/261/161 737/263/161 738/268/161 720/267/161 +f 717/265/162 718/264/162 722/269/162 721/270/162 +f 718/264/163 719/266/163 723/271/163 722/269/163 +f 719/266/164 720/267/164 724/272/164 723/271/164 +f 720/267/165 738/268/165 739/273/165 724/272/165 +f 708/12/166 725/274/166 729/275/166 728/276/166 +f 725/274/167 726/277/167 730/278/167 729/275/167 +f 726/277/168 727/279/168 731/280/168 730/278/168 +f 727/279/169 751/281/169 752/282/169 731/280/169 +f 728/276/170 729/275/170 733/283/170 732/284/170 +f 729/275/171 730/278/171 734/285/171 733/283/171 +f 730/278/172 731/280/172 735/286/172 734/285/172 +f 731/280/173 752/282/173 753/287/173 735/286/173 +f 732/284/174 733/283/174 737/288/174 736/289/174 +f 733/283/175 734/285/175 738/290/175 737/288/175 +f 734/285/176 735/286/176 739/291/176 738/290/176 +f 735/286/177 753/287/177 754/292/177 739/291/177 +f 709/293/178 740/294/178 744/295/178 743/296/178 +f 740/294/179 741/297/179 745/298/179 744/295/179 +f 741/297/180 742/299/180 746/300/180 745/298/180 +f 742/299/181 721/301/181 722/302/181 746/300/181 +f 743/296/182 744/295/182 748/303/182 747/304/182 +f 744/295/183 745/298/183 749/305/183 748/303/183 +f 745/298/184 746/300/184 750/306/184 749/305/184 +f 746/300/185 722/302/185 723/307/185 750/306/185 +f 747/304/186 748/303/186 752/308/186 751/309/186 +f 748/303/187 749/305/187 753/310/187 752/308/187 +f 749/305/188 750/306/188 754/311/188 753/310/188 +f 750/306/189 723/307/189 724/312/189 754/311/189 +f 724/272/190 739/273/190 754/313/190 +f 755/11/191 758/314/191 762/315/191 761/316/191 +f 758/314/192 759/317/192 763/318/192 762/315/192 +f 759/317/193 760/319/193 764/320/193 763/318/193 +f 760/319/194 784/321/194 785/322/194 764/320/194 +f 761/316/195 762/315/195 766/323/195 765/324/195 +f 762/315/196 763/318/196 767/325/196 766/323/196 +f 763/318/197 764/320/197 768/326/197 767/325/197 +f 764/320/198 785/322/198 786/327/198 768/326/198 +f 765/324/199 766/323/199 770/328/199 769/329/199 +f 766/323/200 767/325/200 771/330/200 770/328/200 +f 767/325/201 768/326/201 772/331/201 771/330/201 +f 768/326/202 786/327/202 787/332/202 772/331/202 +f 756/13/203 773/333/203 777/334/203 776/335/203 +f 773/333/204 774/336/204 778/337/204 777/334/204 +f 774/336/205 775/338/205 779/339/205 778/337/205 +f 775/338/206 799/340/206 800/341/206 779/339/206 +f 776/335/207 777/334/207 781/342/207 780/343/207 +f 777/334/208 778/337/208 782/344/208 781/342/208 +f 778/337/209 779/339/209 783/345/209 782/344/209 +f 779/339/210 800/341/210 801/346/210 783/345/210 +f 780/343/211 781/342/211 785/347/211 784/348/211 +f 781/342/212 782/344/212 786/349/212 785/347/212 +f 782/344/213 783/345/213 787/350/213 786/349/213 +f 783/345/214 801/346/214 802/351/214 787/350/214 +f 757/352/215 788/353/215 792/354/215 791/355/215 +f 788/353/216 789/356/216 793/357/216 792/354/216 +f 789/356/217 790/358/217 794/359/217 793/357/217 +f 790/358/218 769/360/218 770/361/218 794/359/218 +f 791/355/219 792/354/219 796/362/219 795/363/219 +f 792/354/220 793/357/220 797/364/220 796/362/220 +f 793/357/221 794/359/221 798/365/221 797/364/221 +f 794/359/222 770/361/222 771/366/222 798/365/222 +f 795/363/223 796/362/223 800/367/223 799/368/223 +f 796/362/224 797/364/224 801/369/224 800/367/224 +f 797/364/225 798/365/225 802/370/225 801/369/225 +f 798/365/226 771/366/226 772/371/226 802/370/226 +f 772/331/227 787/332/227 802/372/227 +f 803/10/228 806/373/228 810/374/228 809/375/228 +f 806/373/229 807/376/229 811/377/229 810/374/229 +f 807/376/230 808/378/230 812/379/230 811/377/230 +f 808/378/231 832/380/231 833/381/231 812/379/231 +f 809/375/232 810/374/232 814/382/232 813/383/232 +f 810/374/233 811/377/233 815/384/233 814/382/233 +f 811/377/234 812/379/234 816/385/234 815/384/234 +f 812/379/235 833/381/235 834/386/235 816/385/235 +f 813/383/236 814/382/236 818/387/236 817/388/236 +f 814/382/237 815/384/237 819/389/237 818/387/237 +f 815/384/238 816/385/238 820/390/238 819/389/238 +f 816/385/239 834/386/239 835/391/239 820/390/239 +f 804/5/240 821/392/240 825/393/240 824/394/240 +f 821/392/241 822/395/241 826/396/241 825/393/241 +f 822/395/242 823/397/242 827/398/242 826/396/242 +f 823/397/243 847/399/243 848/400/243 827/398/243 +f 824/394/244 825/393/244 829/401/244 828/402/244 +f 825/393/245 826/396/245 830/403/245 829/401/245 +f 826/396/246 827/398/246 831/404/246 830/403/246 +f 827/398/247 848/400/247 849/405/247 831/404/247 +f 828/402/248 829/401/248 833/406/248 832/407/248 +f 829/401/249 830/403/249 834/408/249 833/406/249 +f 830/403/250 831/404/250 835/409/250 834/408/250 +f 831/404/251 849/405/251 850/410/251 835/409/251 +f 805/14/252 836/411/252 840/412/252 839/413/252 +f 836/411/253 837/414/253 841/415/253 840/412/253 +f 837/414/254 838/416/254 842/417/254 841/415/254 +f 838/416/255 817/418/255 818/419/255 842/417/255 +f 839/413/256 840/412/256 844/420/256 843/421/256 +f 840/412/257 841/415/257 845/422/257 844/420/257 +f 841/415/258 842/417/258 846/423/258 845/422/258 +f 842/417/259 818/419/259 819/424/259 846/423/259 +f 843/421/260 844/420/260 848/425/260 847/426/260 +f 844/420/261 845/422/261 849/427/261 848/425/261 +f 845/422/262 846/423/262 850/428/262 849/427/262 +f 846/423/263 819/424/263 820/429/263 850/428/263 +f 820/390/264 835/391/264 850/430/264 +f 851/9/265 854/431/265 858/432/265 857/433/265 +f 854/431/266 855/434/266 859/435/266 858/432/266 +f 855/434/267 856/436/267 860/437/267 859/435/267 +f 856/436/268 880/438/268 881/439/268 860/437/268 +f 857/433/269 858/432/269 862/440/269 861/441/269 +f 858/432/270 859/435/270 863/442/270 862/440/270 +f 859/435/271 860/437/271 864/443/271 863/442/271 +f 860/437/272 881/439/272 882/444/272 864/443/272 +f 861/441/273 862/440/273 866/445/273 865/446/273 +f 862/440/274 863/442/274 867/447/274 866/445/274 +f 863/442/275 864/443/275 868/448/275 867/447/275 +f 864/443/276 882/444/276 883/449/276 868/448/276 +f 852/17/277 869/450/277 873/451/277 872/452/277 +f 869/450/278 870/453/278 874/454/278 873/451/278 +f 870/453/279 871/455/279 875/456/279 874/454/279 +f 871/455/280 895/457/280 896/458/280 875/456/280 +f 872/452/281 873/451/281 877/459/281 876/460/281 +f 873/451/282 874/454/282 878/461/282 877/459/282 +f 874/454/283 875/456/283 879/462/283 878/461/283 +f 875/456/284 896/458/284 897/463/284 879/462/284 +f 876/460/285 877/459/285 881/464/285 880/465/285 +f 877/459/286 878/461/286 882/466/286 881/464/286 +f 878/461/287 879/462/287 883/467/287 882/466/287 +f 879/462/288 897/463/288 898/468/288 883/467/288 +f 853/6/289 884/469/289 888/470/289 887/471/289 +f 884/469/290 885/472/290 889/473/290 888/470/290 +f 885/472/291 886/474/291 890/475/291 889/473/291 +f 886/474/292 865/476/292 866/477/292 890/475/292 +f 887/471/293 888/470/293 892/478/293 891/479/293 +f 888/470/294 889/473/294 893/480/294 892/478/294 +f 889/473/295 890/475/295 894/481/295 893/480/295 +f 890/475/296 866/477/296 867/482/296 894/481/296 +f 891/479/297 892/478/297 896/483/297 895/484/297 +f 892/478/298 893/480/298 897/485/298 896/483/298 +f 893/480/299 894/481/299 898/486/299 897/485/299 +f 894/481/300 867/482/300 868/487/300 898/486/300 +f 868/448/301 883/449/301 898/488/301 +f 515/19/302 707/18/302 713/257/302 518/21/302 +f 518/21/303 713/257/303 717/265/303 519/24/303 +f 519/24/304 717/265/304 721/270/304 520/26/304 +f 520/26/305 721/270/305 742/489/305 544/28/305 +f 544/56/306 742/299/306 741/297/306 540/51/306 +f 540/51/307 741/297/307 740/294/307 536/43/307 +f 536/43/308 740/294/308 709/293/308 516/40/308 +f 708/12/309 755/11/309 761/316/309 725/274/309 +f 725/274/310 761/316/310 765/324/310 726/277/310 +f 726/277/311 765/324/311 769/329/311 727/279/311 +f 727/279/312 769/329/312 790/490/312 751/281/312 +f 751/309/313 790/358/313 789/356/313 747/304/313 +f 747/304/314 789/356/314 788/353/314 743/296/314 +f 743/296/315 788/353/315 757/352/315 709/293/315 +f 756/13/316 563/16/316 569/82/316 773/333/316 +f 773/333/317 569/82/317 573/90/317 774/336/317 +f 774/336/318 573/90/318 577/95/318 775/338/318 +f 775/338/319 577/95/319 598/491/319 799/340/319 +f 799/368/320 598/124/320 597/122/320 795/363/320 +f 795/363/321 597/122/321 596/119/321 791/355/321 +f 791/355/322 596/119/322 565/118/322 757/352/322 +f 564/2/323 517/1/323 551/62/323 581/99/323 +f 581/99/324 551/62/324 555/70/324 582/102/324 +f 582/102/325 555/70/325 559/75/325 583/104/325 +f 583/104/326 559/75/326 535/492/326 607/106/326 +f 607/134/327 535/46/327 534/44/327 603/129/327 +f 603/129/328 534/44/328 533/41/328 599/121/328 +f 599/121/329 533/41/329 516/40/329 565/118/329 +f 755/11/330 803/10/330 809/375/330 758/314/330 +f 758/314/331 809/375/331 813/383/331 759/317/331 +f 759/317/332 813/383/332 817/388/332 760/319/332 +f 760/319/333 817/388/333 838/493/333 784/321/333 +f 784/348/334 838/416/334 837/414/334 780/343/334 +f 780/343/335 837/414/335 836/411/335 776/335/335 +f 776/335/336 836/411/336 805/14/336 756/13/336 +f 804/5/337 611/8/337 617/141/337 821/392/337 +f 821/392/338 617/141/338 621/149/338 822/395/338 +f 822/395/339 621/149/339 625/154/339 823/397/339 +f 823/397/340 625/154/340 646/494/340 847/399/340 +f 847/426/341 646/182/341 645/180/341 843/421/341 +f 843/421/342 645/180/342 644/177/342 839/413/342 +f 839/413/343 644/177/343 613/15/343 805/14/343 +f 612/3/344 564/2/344 584/101/344 629/158/344 +f 629/158/345 584/101/345 588/109/345 630/161/345 +f 630/161/346 588/109/346 592/114/346 631/163/346 +f 631/163/347 592/114/347 568/495/347 655/165/347 +f 655/192/348 568/85/348 567/83/348 651/187/348 +f 651/187/349 567/83/349 566/80/349 647/179/349 +f 647/179/350 566/80/350 563/16/350 613/15/350 +f 803/10/351 851/9/351 857/433/351 806/373/351 +f 806/373/352 857/433/352 861/441/352 807/376/352 +f 807/376/353 861/441/353 865/446/353 808/378/353 +f 808/378/354 865/446/354 886/496/354 832/380/354 +f 832/407/355 886/474/355 885/472/355 828/402/355 +f 828/402/356 885/472/356 884/469/356 824/394/356 +f 824/394/357 884/469/357 853/6/357 804/5/357 +f 852/17/358 659/20/358 665/199/358 869/450/358 +f 869/450/359 665/199/359 669/207/359 870/453/359 +f 870/453/360 669/207/360 673/212/360 871/455/360 +f 871/455/361 673/212/361 694/497/361 895/457/361 +f 895/484/362 694/240/362 693/238/362 891/479/362 +f 891/479/363 693/238/363 692/235/363 887/471/363 +f 887/471/364 692/235/364 661/7/364 853/6/364 +f 660/4/365 612/3/365 632/160/365 677/216/365 +f 677/216/366 632/160/366 636/168/366 678/219/366 +f 678/219/367 636/168/367 640/173/367 679/221/367 +f 679/221/368 640/173/368 616/498/368 703/223/368 +f 703/250/369 616/144/369 615/142/369 699/245/369 +f 699/245/370 615/142/370 614/139/370 695/237/370 +f 695/237/371 614/139/371 611/8/371 661/7/371 +f 851/9/372 708/12/372 728/276/372 854/431/372 +f 854/431/373 728/276/373 732/284/373 855/434/373 +f 855/434/374 732/284/374 736/289/374 856/436/374 +f 856/436/375 736/289/375 712/499/375 880/438/375 +f 880/465/376 712/260/376 711/258/376 876/460/376 +f 876/460/377 711/258/377 710/255/377 872/452/377 +f 872/452/378 710/255/378 707/18/378 852/17/378 +f 517/1/379 660/4/379 680/218/379 548/60/379 +f 548/60/380 680/218/380 684/226/380 549/63/380 +f 549/63/381 684/226/381 688/231/381 550/65/381 +f 550/65/382 688/231/382 664/500/382 529/67/382 +f 529/36/383 664/202/383 663/200/383 525/31/383 +f 525/31/384 663/200/384 662/197/384 521/23/384 +f 521/23/385 662/197/385 659/20/385 515/19/385 +f 709/293/386 757/352/386 565/118/386 516/40/386 +f 1027/501/5 1030/502/5 1031/503/5 1032/504/5 1033/505/5 1034/506/5 +f 1039/507/4 1042/508/4 1043/509/4 1044/510/4 1045/511/4 1046/512/4 +f 1051/513/5 1054/514/5 1055/515/5 1056/516/5 1057/517/5 1058/518/5 +f 1063/519/4 1066/520/4 1067/521/4 1068/522/4 1069/523/4 1070/524/4 +f 1075/525/5 1078/526/5 1079/527/5 1080/528/5 1081/529/5 1082/530/5 +f 1087/531/4 1090/532/4 1091/533/4 1092/534/4 1093/535/4 1094/536/4 +f 1099/537/5 1102/538/5 1103/539/5 1104/540/5 1105/541/5 1106/542/5 +f 1111/543/4 1114/544/4 1115/545/4 1116/546/4 1117/547/4 1118/548/4 +f 1123/549/5 1126/550/5 1127/551/5 1128/552/5 1129/553/5 1130/554/5 +f 1135/555/4 1138/556/4 1139/557/4 1140/558/4 1141/559/4 1142/560/4 +f 1147/561/5 1150/562/5 1151/563/5 1152/564/5 1153/565/5 1154/566/5 +f 1159/567/4 1162/568/4 1163/569/4 1164/570/4 1165/571/4 1166/572/4 +f 1171/573/5 1174/574/5 1175/575/5 1176/576/5 1177/577/5 1178/578/5 +f 1183/579/4 1186/580/4 1187/581/4 1188/582/4 1189/583/4 1190/584/4 +f 1195/585/5 1198/586/5 1199/587/5 1200/588/5 1201/589/5 1202/590/5 +f 1207/591/4 1210/592/4 1211/593/4 1212/594/4 1213/595/4 1214/596/4 +f 1387/597/4 1388/598/4 1418/599/4 1417/600/4 1415/601/4 1416/602/4 1414/603/4 1413/604/4 1412/605/4 1411/606/4 1409/607/4 1410/608/4 1408/609/4 1407/610/4 1406/611/4 1405/612/4 1404/613/4 1403/614/4 1402/615/4 1401/616/4 1400/617/4 1399/618/4 1398/619/4 1397/620/4 1396/621/4 1395/622/4 1394/623/4 1393/624/4 1392/625/4 1391/626/4 1390/627/4 1389/628/4 +f 1366/629/5 1383/630/5 1367/631/5 1368/632/5 1369/633/5 1370/634/5 1371/635/5 1384/636/5 1372/637/5 1373/638/5 1374/639/5 1385/640/5 1375/641/5 1386/642/5 1376/643/5 1377/644/5 1378/645/5 1379/646/5 1380/647/5 1355/648/5 1356/649/5 1357/650/5 1358/651/5 1359/652/5 1360/653/5 1361/654/5 1362/655/5 1363/656/5 1381/657/5 1364/658/5 1382/659/5 1365/660/5 +f 1423/661/5 1433/662/5 1438/663/5 1442/664/5 1446/665/5 1451/666/5 1450/667/5 1455/668/5 1459/669/5 1463/670/5 1467/671/5 1472/672/5 1481/673/5 1482/674/5 1480/675/5 1474/676/5 1469/677/5 1465/678/5 1461/679/5 1457/680/5 1453/681/5 1448/682/5 1444/683/5 1440/684/5 1435/685/5 1431/686/5 1424/687/5 1425/688/5 1422/689/5 1419/690/5 1420/691/5 1421/692/5 +f 1427/693/4 1426/694/4 1432/695/4 1437/696/4 1436/697/4 1441/698/4 1445/699/4 1449/700/4 1454/701/4 1458/702/4 1462/703/4 1466/704/4 1470/705/4 1475/706/4 1471/707/4 1477/708/4 1476/709/4 1478/710/4 1479/711/4 1473/712/4 1468/713/4 1464/714/4 1460/715/4 1456/716/4 1452/717/4 1447/718/4 1443/719/4 1439/720/4 1434/721/4 1430/722/4 1429/723/4 1428/724/4 +f 1483/725/5 1486/726/5 1487/727/5 1488/728/5 1489/729/5 1490/730/5 +f 1495/731/4 1498/732/4 1499/733/4 1500/734/4 1501/735/4 1502/736/4 +f 1507/737/5 1510/738/5 1511/739/5 1512/740/5 1513/741/5 1514/742/5 +f 1519/743/4 1522/744/4 1523/745/4 1524/746/4 1525/747/4 1526/748/4 +f 1531/749/5 1534/750/5 1535/751/5 1536/752/5 1537/753/5 1538/754/5 +f 1543/755/4 1546/756/4 1547/757/4 1548/758/4 1549/759/4 1550/760/4 +f 1555/761/5 1558/762/5 1559/763/5 1560/764/5 1561/765/5 1562/766/5 +f 1567/767/4 1570/768/4 1571/769/4 1572/770/4 1573/771/4 1574/772/4 +f 1579/773/5 1582/774/5 1583/775/5 1584/776/5 1585/777/5 1586/778/5 +f 1591/779/4 1594/780/4 1595/781/4 1596/782/4 1597/783/4 1598/784/4 +f 1603/785/5 1606/786/5 1607/787/5 1608/788/5 1609/789/5 1610/790/5 +f 1615/791/4 1618/792/4 1619/793/4 1620/794/4 1621/795/4 1622/796/4 +f 1627/797/5 1630/798/5 1631/799/5 1632/800/5 1633/801/5 1634/802/5 +f 1639/803/4 1642/804/4 1643/805/4 1644/806/4 1645/807/4 1646/808/4 +f 1651/809/5 1654/810/5 1655/811/5 1656/812/5 1657/813/5 1658/814/5 +f 1663/815/4 1666/816/4 1667/817/4 1668/818/4 1669/819/4 1670/820/4 +s 1 +f 471/821/387 470/822/388 4/823/389 5/824/390 +f 479/825/391 478/826/392 12/827/393 13/828/394 +f 472/829/395 471/821/387 5/824/390 6/830/396 +f 480/831/397 479/825/391 13/828/394 14/832/398 +f 473/833/399 472/829/395 6/830/396 7/834/400 +f 481/835/401 480/831/397 14/832/398 15/836/402 +f 474/837/403 473/833/399 7/834/400 8/838/404 +f 482/839/405 481/835/401 15/836/402 16/840/406 +f 475/841/407 474/837/403 8/838/404 9/842/408 +f 468/843/409 257/844/410 2/845/411 +f 1/846/412 482/839/405 16/840/406 +f 476/847/413 475/841/407 9/842/408 10/848/414 +f 469/849/415 468/843/409 2/845/411 3/850/416 +f 477/851/417 476/847/413 10/848/414 11/852/418 +f 470/822/388 469/849/415 3/850/416 4/823/389 +f 478/826/392 477/851/417 11/852/418 12/827/393 +f 11/852/418 10/848/414 25/853/419 26/854/420 +f 4/823/389 3/850/416 18/855/421 19/856/422 +f 12/827/393 11/852/418 26/854/420 27/857/423 +f 5/824/390 4/823/389 19/856/422 20/858/424 +f 13/828/394 12/827/393 27/857/423 28/859/425 +f 6/830/396 5/824/390 20/858/424 21/860/426 +f 14/832/398 13/828/394 28/859/425 29/861/427 +f 7/834/400 6/830/396 21/860/426 22/862/428 +f 15/836/402 14/832/398 29/861/427 30/863/429 +f 8/838/404 7/834/400 22/862/428 23/864/430 +f 16/840/406 15/836/402 30/863/429 31/865/431 +f 9/842/408 8/838/404 23/864/430 24/866/432 +f 2/845/411 257/844/410 17/867/433 +f 1/846/412 16/840/406 31/865/431 +f 10/848/414 9/842/408 24/866/432 25/853/419 +f 3/850/416 2/845/411 17/867/433 18/855/421 +f 30/863/429 29/861/427 44/868/434 45/869/435 +f 23/864/430 22/862/428 37/870/436 38/871/437 +f 31/865/431 30/863/429 45/869/435 46/872/438 +f 24/866/432 23/864/430 38/871/437 39/873/439 +f 17/867/433 257/844/410 32/874/440 +f 1/846/412 31/865/431 46/872/438 +f 25/853/419 24/866/432 39/873/439 40/875/441 +f 18/855/421 17/867/433 32/874/440 33/876/442 +f 26/854/420 25/853/419 40/875/441 41/877/443 +f 19/856/422 18/855/421 33/876/442 34/878/444 +f 27/857/423 26/854/420 41/877/443 42/879/445 +f 20/858/424 19/856/422 34/878/444 35/880/446 +f 28/859/425 27/857/423 42/879/445 43/881/447 +f 21/860/426 20/858/424 35/880/446 36/882/448 +f 29/861/427 28/859/425 43/881/447 44/868/434 +f 22/862/428 21/860/426 36/882/448 37/870/436 +f 42/879/445 41/877/443 56/883/449 57/884/450 +f 35/880/446 34/878/444 49/885/451 50/886/452 +f 43/881/447 42/879/445 57/884/450 58/887/453 +f 36/882/448 35/880/446 50/886/452 51/888/454 +f 44/868/434 43/881/447 58/887/453 59/889/455 +f 37/870/436 36/882/448 51/888/454 52/890/456 +f 45/869/435 44/868/434 59/889/455 60/891/457 +f 38/871/437 37/870/436 52/890/456 53/892/458 +f 46/872/438 45/869/435 60/891/457 61/893/459 +f 39/873/439 38/871/437 53/892/458 54/894/460 +f 32/874/440 257/844/410 47/895/461 +f 1/846/412 46/872/438 61/893/459 +f 40/875/441 39/873/439 54/894/460 55/896/462 +f 33/876/442 32/874/440 47/895/461 48/897/463 +f 41/877/443 40/875/441 55/896/462 56/883/449 +f 34/878/444 33/876/442 48/897/463 49/885/451 +f 61/893/459 60/891/457 75/898/464 76/899/465 +f 54/894/460 53/892/458 68/900/466 69/901/467 +f 47/895/461 257/844/410 62/902/468 +f 1/846/412 61/893/459 76/899/465 +f 55/896/462 54/894/460 69/901/467 70/903/469 +f 48/897/463 47/895/461 62/902/468 63/904/470 +f 56/883/449 55/896/462 70/903/469 71/905/471 +f 49/885/451 48/897/463 63/904/470 64/906/472 +f 57/884/450 56/883/449 71/905/471 72/907/473 +f 50/886/452 49/885/451 64/906/472 65/908/474 +f 58/887/453 57/884/450 72/907/473 73/909/475 +f 51/888/454 50/886/452 65/908/474 66/910/476 +f 59/889/455 58/887/453 73/909/475 74/911/477 +f 52/890/456 51/888/454 66/910/476 67/912/478 +f 60/891/457 59/889/455 74/911/477 75/898/464 +f 53/892/458 52/890/456 67/912/478 68/900/466 +f 65/908/474 64/906/472 79/913/479 80/914/480 +f 73/909/475 72/907/473 87/915/481 88/916/482 +f 66/910/476 65/908/474 80/914/480 81/917/483 +f 74/911/477 73/909/475 88/916/482 89/918/484 +f 67/912/478 66/910/476 81/917/483 82/919/485 +f 75/898/464 74/911/477 89/918/484 90/920/486 +f 68/900/466 67/912/478 82/919/485 83/921/487 +f 76/899/465 75/898/464 90/920/486 91/922/488 +f 69/901/467 68/900/466 83/921/487 84/923/489 +f 62/902/468 257/844/410 77/924/490 +f 1/846/412 76/899/465 91/922/488 +f 70/903/469 69/901/467 84/923/489 85/925/491 +f 63/904/470 62/902/468 77/924/490 78/926/492 +f 71/905/471 70/903/469 85/925/491 86/927/493 +f 64/906/472 63/904/470 78/926/492 79/913/479 +f 72/907/473 71/905/471 86/927/493 87/915/481 +f 84/923/489 83/921/487 98/928/494 99/929/495 +f 77/924/490 257/844/410 92/930/496 +f 1/846/412 91/922/488 106/931/497 +f 85/925/491 84/923/489 99/929/495 100/932/498 +f 78/926/492 77/924/490 92/930/496 93/933/499 +f 86/927/493 85/925/491 100/932/498 101/934/500 +f 79/913/479 78/926/492 93/933/499 94/935/501 +f 87/915/481 86/927/493 101/934/500 102/936/502 +f 80/914/480 79/913/479 94/935/501 95/937/503 +f 88/916/482 87/915/481 102/936/502 103/938/504 +f 81/917/483 80/914/480 95/937/503 96/939/505 +f 89/918/484 88/916/482 103/938/504 104/940/506 +f 82/919/485 81/917/483 96/939/505 97/941/507 +f 90/920/486 89/918/484 104/940/506 105/942/508 +f 83/921/487 82/919/485 97/941/507 98/928/494 +f 91/922/488 90/920/486 105/942/508 106/931/497 +f 103/938/504 102/936/502 117/943/509 118/944/510 +f 96/939/505 95/937/503 110/945/511 111/946/512 +f 104/940/506 103/938/504 118/944/510 119/947/513 +f 97/941/507 96/939/505 111/946/512 112/948/514 +f 105/942/508 104/940/506 119/947/513 120/949/515 +f 98/928/494 97/941/507 112/948/514 113/950/516 +f 106/931/497 105/942/508 120/949/515 121/951/517 +f 99/929/495 98/928/494 113/950/516 114/952/2 +f 92/930/496 257/844/410 107/953/518 +f 1/846/412 106/931/497 121/951/517 +f 100/932/498 99/929/495 114/952/2 115/954/519 +f 93/933/499 92/930/496 107/953/518 108/955/520 +f 101/934/500 100/932/498 115/954/519 116/956/521 +f 94/935/501 93/933/499 108/955/520 109/957/522 +f 102/936/502 101/934/500 116/956/521 117/943/509 +f 95/937/503 94/935/501 109/957/522 110/945/511 +f 107/953/518 257/844/410 122/958/523 +f 1/846/412 121/951/517 136/959/524 +f 115/954/519 114/952/2 129/960/525 130/961/526 +f 108/955/520 107/953/518 122/958/523 123/962/527 +f 116/956/521 115/954/519 130/961/526 131/963/528 +f 109/957/522 108/955/520 123/962/527 124/964/529 +f 117/943/509 116/956/521 131/963/528 132/965/530 +f 110/945/511 109/957/522 124/964/529 125/966/531 +f 118/944/510 117/943/509 132/965/530 133/967/532 +f 111/946/512 110/945/511 125/966/531 126/968/533 +f 119/947/513 118/944/510 133/967/532 134/969/534 +f 112/948/514 111/946/512 126/968/533 127/970/535 +f 120/949/515 119/947/513 134/969/534 135/971/536 +f 113/950/516 112/948/514 127/970/535 128/972/537 +f 121/951/517 120/949/515 135/971/536 136/959/524 +f 114/952/2 113/950/516 128/972/537 129/960/525 +f 126/968/533 125/966/531 140/973/538 141/974/539 +f 134/969/534 133/967/532 148/975/540 149/976/541 +f 127/970/535 126/968/533 141/974/539 142/977/542 +f 135/971/536 134/969/534 149/976/541 150/978/543 +f 128/972/537 127/970/535 142/977/542 143/979/544 +f 136/959/524 135/971/536 150/978/543 151/980/545 +f 129/960/525 128/972/537 143/979/544 144/981/546 +f 122/958/523 257/844/410 137/982/547 +f 1/846/412 136/959/524 151/980/545 +f 130/961/526 129/960/525 144/981/546 145/983/548 +f 123/962/527 122/958/523 137/982/547 138/984/549 +f 131/963/528 130/961/526 145/983/548 146/985/550 +f 124/964/529 123/962/527 138/984/549 139/986/551 +f 132/965/530 131/963/528 146/985/550 147/987/552 +f 125/966/531 124/964/529 139/986/551 140/973/538 +f 133/967/532 132/965/530 147/987/552 148/975/540 +f 145/983/548 144/981/546 159/988/553 160/989/554 +f 138/984/549 137/982/547 152/990/555 153/991/556 +f 146/985/550 145/983/548 160/989/554 161/992/557 +f 139/986/551 138/984/549 153/991/556 154/993/558 +f 147/987/552 146/985/550 161/992/557 162/994/559 +f 140/973/538 139/986/551 154/993/558 155/995/560 +f 148/975/540 147/987/552 162/994/559 163/996/561 +f 141/974/539 140/973/538 155/995/560 156/997/562 +f 149/976/541 148/975/540 163/996/561 164/998/563 +f 142/977/542 141/974/539 156/997/562 157/999/564 +f 150/978/543 149/976/541 164/998/563 165/1000/565 +f 143/979/544 142/977/542 157/999/564 158/1001/566 +f 151/980/545 150/978/543 165/1000/565 166/1002/567 +f 144/981/546 143/979/544 158/1001/566 159/988/553 +f 137/982/547 257/844/410 152/990/555 +f 1/846/412 151/980/545 166/1002/567 +f 164/998/563 163/996/561 178/1003/568 179/1004/569 +f 157/999/564 156/997/562 171/1005/570 172/1006/571 +f 165/1000/565 164/998/563 179/1004/569 180/1007/572 +f 158/1001/566 157/999/564 172/1006/571 173/1008/573 +f 166/1002/567 165/1000/565 180/1007/572 181/1009/574 +f 159/988/553 158/1001/566 173/1008/573 174/1010/575 +f 152/990/555 257/844/410 167/1011/576 +f 1/846/412 166/1002/567 181/1009/574 +f 160/989/554 159/988/553 174/1010/575 175/1012/577 +f 153/991/556 152/990/555 167/1011/576 168/1013/578 +f 161/992/557 160/989/554 175/1012/577 176/1014/579 +f 154/993/558 153/991/556 168/1013/578 169/1015/580 +f 162/994/559 161/992/557 176/1014/579 177/1016/581 +f 155/995/560 154/993/558 169/1015/580 170/1017/582 +f 163/996/561 162/994/559 177/1016/581 178/1003/568 +f 156/997/562 155/995/560 170/1017/582 171/1005/570 +f 176/1014/579 175/1012/577 190/1018/583 191/1019/584 +f 169/1015/580 168/1013/578 183/1020/585 184/1021/586 +f 177/1016/581 176/1014/579 191/1019/584 192/1022/587 +f 170/1017/582 169/1015/580 184/1021/586 185/1023/588 +f 178/1003/568 177/1016/581 192/1022/587 193/1024/589 +f 171/1005/570 170/1017/582 185/1023/588 186/1025/590 +f 179/1004/569 178/1003/568 193/1024/589 194/1026/591 +f 172/1006/571 171/1005/570 186/1025/590 187/1027/592 +f 180/1007/572 179/1004/569 194/1026/591 195/1028/593 +f 173/1008/573 172/1006/571 187/1027/592 188/1029/594 +f 181/1009/574 180/1007/572 195/1028/593 196/1030/595 +f 174/1010/575 173/1008/573 188/1029/594 189/1031/596 +f 167/1011/576 257/844/410 182/1032/597 +f 1/846/412 181/1009/574 196/1030/595 +f 175/1012/577 174/1010/575 189/1031/596 190/1018/583 +f 168/1013/578 167/1011/576 182/1032/597 183/1020/585 +f 195/1028/593 194/1026/591 209/1033/598 210/1034/599 +f 188/1029/594 187/1027/592 202/1035/600 203/1036/601 +f 196/1030/595 195/1028/593 210/1034/599 211/1037/602 +f 189/1031/596 188/1029/594 203/1036/601 204/1038/603 +f 182/1032/597 257/844/410 197/1039/604 +f 1/846/412 196/1030/595 211/1037/602 +f 190/1018/583 189/1031/596 204/1038/603 205/1040/605 +f 183/1020/585 182/1032/597 197/1039/604 198/1041/606 +f 191/1019/584 190/1018/583 205/1040/605 206/1042/607 +f 184/1021/586 183/1020/585 198/1041/606 199/1043/608 +f 192/1022/587 191/1019/584 206/1042/607 207/1044/609 +f 185/1023/588 184/1021/586 199/1043/608 200/1045/610 +f 193/1024/589 192/1022/587 207/1044/609 208/1046/611 +f 186/1025/590 185/1023/588 200/1045/610 201/1047/612 +f 194/1026/591 193/1024/589 208/1046/611 209/1033/598 +f 187/1027/592 186/1025/590 201/1047/612 202/1035/600 +f 199/1043/608 198/1041/606 213/1048/613 214/1049/614 +f 207/1044/609 206/1042/607 221/1050/615 222/1051/616 +f 200/1045/610 199/1043/608 214/1049/614 215/1052/617 +f 208/1046/611 207/1044/609 222/1051/616 223/1053/618 +f 201/1047/612 200/1045/610 215/1052/617 216/1054/619 +f 209/1033/598 208/1046/611 223/1053/618 224/1055/620 +f 202/1035/600 201/1047/612 216/1054/619 217/1056/621 +f 210/1034/599 209/1033/598 224/1055/620 225/1057/622 +f 203/1036/601 202/1035/600 217/1056/621 218/1058/623 +f 211/1037/602 210/1034/599 225/1057/622 226/1059/624 +f 204/1038/603 203/1036/601 218/1058/623 219/1060/625 +f 197/1039/604 257/844/410 212/1061/626 +f 1/846/412 211/1037/602 226/1059/624 +f 205/1040/605 204/1038/603 219/1060/625 220/1062/627 +f 198/1041/606 197/1039/604 212/1061/626 213/1048/613 +f 206/1042/607 205/1040/605 220/1062/627 221/1050/615 +f 218/1058/623 217/1056/621 232/1063/628 233/1064/629 +f 226/1059/624 225/1057/622 240/1065/630 241/1066/631 +f 219/1060/625 218/1058/623 233/1064/629 234/1067/632 +f 212/1061/626 257/844/410 227/1068/633 +f 1/846/412 226/1059/624 241/1066/631 +f 220/1062/627 219/1060/625 234/1067/632 235/1069/634 +f 213/1048/613 212/1061/626 227/1068/633 228/1070/635 +f 221/1050/615 220/1062/627 235/1069/634 236/1071/636 +f 214/1049/614 213/1048/613 228/1070/635 229/1072/637 +f 222/1051/616 221/1050/615 236/1071/636 237/1073/638 +f 215/1052/617 214/1049/614 229/1072/637 230/1074/639 +f 223/1053/618 222/1051/616 237/1073/638 238/1075/640 +f 216/1054/619 215/1052/617 230/1074/639 231/1076/641 +f 224/1055/620 223/1053/618 238/1075/640 239/1077/642 +f 217/1056/621 216/1054/619 231/1076/641 232/1063/628 +f 225/1057/622 224/1055/620 239/1077/642 240/1065/630 +f 264/1078/643 265/1079/644 249/1080/645 248/1081/646 +f 253/1082/647 254/1083/648 485/1084/649 486/1085/650 +f 265/1079/644 266/1086/651 250/1087/652 249/1080/645 +f 254/1083/648 255/1088/653 484/1089/654 485/1084/649 +f 266/1086/651 267/1090/655 251/1091/656 250/1087/652 +f 467/1092/657 483/1093/658 498/1094/659 +f 267/1090/655 268/1095/660 252/1096/661 251/1091/656 +f 248/1081/646 249/1080/645 490/1097/662 491/1098/663 +f 268/1095/660 269/1099/664 253/1082/647 252/1096/661 +f 249/1080/645 250/1087/652 489/1100/665 490/1097/662 +f 243/1101/666 244/1102/667 495/1103/668 496/1104/669 +f 261/1105/670 262/1106/671 246/1107/672 245/1108/673 +f 270/1109/674 271/1110/675 255/1088/653 254/1083/648 +f 250/1087/652 251/1091/656 488/1111/676 489/1100/665 +f 467/1092/657 256/1112/677 483/1093/658 +f 252/1096/661 253/1082/647 486/1085/650 487/1113/678 +f 260/1114/679 261/1105/670 245/1108/673 244/1102/667 +f 483/1093/658 242/1115/680 497/1116/681 498/1094/659 +f 251/1091/656 252/1096/661 487/1113/678 488/1111/676 +f 269/1099/664 270/1109/674 254/1083/648 253/1082/647 +f 262/1106/671 263/1117/682 247/1118/683 246/1107/672 +f 242/1115/680 243/1101/666 496/1104/669 497/1116/681 +f 263/1117/682 264/1078/643 248/1081/646 247/1118/683 +f 244/1102/667 245/1108/673 494/1119/684 495/1103/668 +f 271/1110/675 499/1120/685 255/1088/653 +f 245/1108/673 246/1107/672 493/1121/686 494/1119/684 +f 256/1112/677 258/1122/687 242/1115/680 483/1093/658 +f 246/1107/672 247/1118/683 492/1123/688 493/1121/686 +f 258/1122/687 259/1124/689 243/1101/666 242/1115/680 +f 247/1118/683 248/1081/646 491/1098/663 492/1123/688 +f 259/1124/689 260/1114/679 244/1102/667 243/1101/666 +f 255/1088/653 499/1120/685 484/1089/654 +f 275/1125/690 276/1126/691 261/1105/670 260/1114/679 +f 286/1127/692 499/1120/685 271/1110/675 +f 283/1128/693 284/1129/694 269/1099/664 268/1095/660 +f 279/1130/695 280/1131/696 265/1079/644 264/1078/643 +f 276/1126/691 277/1132/697 262/1106/671 261/1105/670 +f 272/1133/698 273/1134/699 258/1122/687 256/1112/677 +f 284/1129/694 285/1135/700 270/1109/674 269/1099/664 +f 280/1131/696 281/1136/701 266/1086/651 265/1079/644 +f 277/1132/697 278/1137/702 263/1117/682 262/1106/671 +f 281/1136/701 282/1138/703 267/1090/655 266/1086/651 +f 273/1134/699 274/1139/704 259/1124/689 258/1122/687 +f 285/1135/700 286/1127/692 271/1110/675 270/1109/674 +f 274/1139/704 275/1125/690 260/1114/679 259/1124/689 +f 278/1137/702 279/1130/695 264/1078/643 263/1117/682 +f 282/1138/703 283/1128/693 268/1095/660 267/1090/655 +f 467/1092/657 272/1133/698 256/1112/677 +f 288/1140/705 289/1141/706 274/1139/704 273/1134/699 +f 293/1142/707 294/1143/708 279/1130/695 278/1137/702 +f 292/1144/709 293/1142/707 278/1137/702 277/1132/697 +f 296/1145/710 297/1146/711 282/1138/703 281/1136/701 +f 300/1147/712 301/1148/713 286/1127/692 285/1135/700 +f 289/1141/706 290/1149/714 275/1125/690 274/1139/704 +f 467/1092/657 287/1150/715 272/1133/698 +f 297/1146/711 298/1151/716 283/1128/693 282/1138/703 +f 301/1148/713 499/1120/685 286/1127/692 +f 290/1149/714 291/1152/717 276/1126/691 275/1125/690 +f 294/1143/708 295/1153/718 280/1131/696 279/1130/695 +f 298/1151/716 299/1154/719 284/1129/694 283/1128/693 +f 287/1150/715 288/1140/705 273/1134/699 272/1133/698 +f 291/1152/717 292/1144/709 277/1132/697 276/1126/691 +f 295/1153/718 296/1145/710 281/1136/701 280/1131/696 +f 299/1154/719 300/1147/712 285/1135/700 284/1129/694 +f 302/1155/720 303/1156/721 288/1140/705 287/1150/715 +f 314/1157/722 315/1158/723 300/1147/712 299/1154/719 +f 310/1159/724 311/1160/725 296/1145/710 295/1153/718 +f 307/1161/726 308/1162/727 293/1142/707 292/1144/709 +f 303/1156/721 304/1163/728 289/1141/706 288/1140/705 +f 315/1158/723 316/1164/729 301/1148/713 300/1147/712 +f 311/1160/725 312/1165/730 297/1146/711 296/1145/710 +f 308/1162/727 309/1166/731 294/1143/708 293/1142/707 +f 305/1167/732 306/1168/733 291/1152/717 290/1149/714 +f 304/1163/728 305/1167/732 290/1149/714 289/1141/706 +f 467/1092/657 302/1155/720 287/1150/715 +f 312/1165/730 313/1169/734 298/1151/716 297/1146/711 +f 316/1164/729 499/1120/685 301/1148/713 +f 313/1169/734 314/1157/722 299/1154/719 298/1151/716 +f 309/1166/731 310/1159/724 295/1153/718 294/1143/708 +f 306/1168/733 307/1161/726 292/1144/709 291/1152/717 +f 323/1170/735 324/1171/736 309/1166/731 308/1162/727 +f 327/1172/737 328/1173/738 313/1169/734 312/1165/730 +f 467/1092/657 317/1174/739 302/1155/720 +f 320/1175/740 321/1176/741 306/1168/733 305/1167/732 +f 324/1171/736 325/1177/742 310/1159/724 309/1166/731 +f 328/1173/738 329/1178/743 314/1157/722 313/1169/734 +f 317/1174/739 318/1179/744 303/1156/721 302/1155/720 +f 321/1176/741 322/1180/745 307/1161/726 306/1168/733 +f 325/1177/742 326/1181/746 311/1160/725 310/1159/724 +f 329/1178/743 330/1182/747 315/1158/723 314/1157/722 +f 318/1179/744 319/1183/748 304/1163/728 303/1156/721 +f 322/1180/745 323/1170/735 308/1162/727 307/1161/726 +f 326/1181/746 327/1172/737 312/1165/730 311/1160/725 +f 330/1182/747 331/1184/749 316/1164/729 315/1158/723 +f 319/1183/748 320/1175/740 305/1167/732 304/1163/728 +f 331/1184/749 499/1120/685 316/1164/729 +f 333/1185/750 334/1186/751 319/1183/748 318/1179/744 +f 345/1187/752 346/1188/753 331/1184/749 330/1182/747 +f 341/1189/754 342/1190/755 327/1172/737 326/1181/746 +f 338/1191/756 339/1192/757 324/1171/736 323/1170/735 +f 334/1186/751 335/1193/758 320/1175/740 319/1183/748 +f 467/1092/657 332/1194/759 317/1174/739 +f 343/1195/760 344/1196/761 329/1178/743 328/1173/738 +f 342/1190/755 343/1195/760 328/1173/738 327/1172/737 +f 346/1188/753 499/1120/685 331/1184/749 +f 335/1193/758 336/1197/762 321/1176/741 320/1175/740 +f 339/1192/757 340/1198/763 325/1177/742 324/1171/736 +f 336/1197/762 337/1199/764 322/1180/745 321/1176/741 +f 332/1194/759 333/1185/750 318/1179/744 317/1174/739 +f 344/1196/761 345/1187/752 330/1182/747 329/1178/743 +f 340/1198/763 341/1189/754 326/1181/746 325/1177/742 +f 337/1199/764 338/1191/756 323/1170/735 322/1180/745 +f 354/1200/386 355/1201/765 340/1198/763 339/1192/757 +f 351/1202/766 352/1203/767 337/1199/764 336/1197/762 +f 355/1201/765 356/1204/768 341/1189/754 340/1198/763 +f 359/1205/769 360/1206/770 345/1187/752 344/1196/761 +f 348/1207/771 349/1208/772 334/1186/751 333/1185/750 +f 352/1203/767 353/1209/773 338/1191/756 337/1199/764 +f 356/1204/768 357/1210/774 342/1190/755 341/1189/754 +f 360/1206/770 361/1211/775 346/1188/753 345/1187/752 +f 349/1208/772 350/1212/776 335/1193/758 334/1186/751 +f 353/1209/773 354/1200/386 339/1192/757 338/1191/756 +f 357/1210/774 358/1213/777 343/1195/760 342/1190/755 +f 467/1092/657 347/1214/778 332/1194/759 +f 350/1212/776 351/1202/766 336/1197/762 335/1193/758 +f 347/1214/778 348/1207/771 333/1185/750 332/1194/759 +f 361/1211/775 499/1120/685 346/1188/753 +f 358/1213/777 359/1205/769 344/1196/761 343/1195/760 +f 368/1215/779 369/1216/780 354/1200/386 353/1209/773 +f 364/1217/781 365/1218/782 350/1212/776 349/1208/772 +f 467/1092/657 362/1219/783 347/1214/778 +f 372/1220/784 373/1221/785 358/1213/777 357/1210/774 +f 376/1222/786 499/1120/685 361/1211/775 +f 366/1223/787 367/1224/788 352/1203/767 351/1202/766 +f 365/1218/782 366/1223/787 351/1202/766 350/1212/776 +f 369/1216/780 370/1225/789 355/1201/765 354/1200/386 +f 373/1221/785 374/1226/790 359/1205/769 358/1213/777 +f 362/1219/783 363/1227/791 348/1207/771 347/1214/778 +f 374/1226/790 375/1228/792 360/1206/770 359/1205/769 +f 370/1225/789 371/1229/793 356/1204/768 355/1201/765 +f 367/1224/788 368/1215/779 353/1209/773 352/1203/767 +f 363/1227/791 364/1217/781 349/1208/772 348/1207/771 +f 375/1228/792 376/1222/786 361/1211/775 360/1206/770 +f 371/1229/793 372/1220/784 357/1210/774 356/1204/768 +f 389/1230/794 390/1231/795 375/1228/792 374/1226/790 +f 378/1232/796 379/1233/797 364/1217/781 363/1227/791 +f 382/1234/798 383/1235/799 368/1215/779 367/1224/788 +f 386/1236/800 387/1237/801 372/1220/784 371/1229/793 +f 390/1231/795 391/1238/802 376/1222/786 375/1228/792 +f 379/1233/797 380/1239/803 365/1218/782 364/1217/781 +f 383/1235/799 384/1240/804 369/1216/780 368/1215/779 +f 387/1237/801 388/1241/805 373/1221/785 372/1220/784 +f 467/1092/657 377/1242/806 362/1219/783 +f 380/1239/803 381/1243/807 366/1223/787 365/1218/782 +f 391/1238/802 499/1120/685 376/1222/786 +f 388/1241/805 389/1230/794 374/1226/790 373/1221/785 +f 385/1244/808 386/1236/800 371/1229/793 370/1225/789 +f 384/1240/804 385/1244/808 370/1225/789 369/1216/780 +f 381/1243/807 382/1234/798 367/1224/788 366/1223/787 +f 377/1242/806 378/1232/796 363/1227/791 362/1219/783 +f 402/1245/809 403/1246/810 388/1241/805 387/1237/801 +f 406/1247/811 499/1120/685 391/1238/802 +f 395/1248/812 396/1249/813 381/1243/807 380/1239/803 +f 399/1250/814 400/1251/815 385/1244/808 384/1240/804 +f 404/1252/816 405/1253/817 390/1231/795 389/1230/794 +f 403/1246/810 404/1252/816 389/1230/794 388/1241/805 +f 392/1254/818 393/1255/819 378/1232/796 377/1242/806 +f 396/1249/813 397/1256/820 382/1234/798 381/1243/807 +f 400/1251/815 401/1257/821 386/1236/800 385/1244/808 +f 397/1256/820 398/1258/822 383/1235/799 382/1234/798 +f 393/1255/819 394/1259/823 379/1233/797 378/1232/796 +f 405/1253/817 406/1247/811 391/1238/802 390/1231/795 +f 401/1257/821 402/1245/809 387/1237/801 386/1236/800 +f 398/1258/822 399/1250/814 384/1240/804 383/1235/799 +f 394/1259/823 395/1248/812 380/1239/803 379/1233/797 +f 467/1092/657 392/1254/818 377/1242/806 +f 416/1260/824 417/1261/825 402/1245/809 401/1257/821 +f 420/1262/826 421/1263/827 406/1247/811 405/1253/817 +f 409/1264/828 410/1265/829 395/1248/812 394/1259/823 +f 413/1266/830 414/1267/831 399/1250/814 398/1258/822 +f 417/1261/825 418/1268/832 403/1246/810 402/1245/809 +f 467/1092/657 407/1269/833 392/1254/818 +f 410/1265/829 411/1270/834 396/1249/813 395/1248/812 +f 421/1263/827 499/1120/685 406/1247/811 +f 418/1268/832 419/1271/835 404/1252/816 403/1246/810 +f 414/1267/831 415/1272/836 400/1251/815 399/1250/814 +f 411/1270/834 412/1273/837 397/1256/820 396/1249/813 +f 408/1274/838 409/1264/828 394/1259/823 393/1255/819 +f 407/1269/833 408/1274/838 393/1255/819 392/1254/818 +f 419/1271/835 420/1262/826 405/1253/817 404/1252/816 +f 415/1272/836 416/1260/824 401/1257/821 400/1251/815 +f 412/1273/837 413/1266/830 398/1258/822 397/1256/820 +f 429/1275/839 430/1276/840 415/1272/836 414/1267/831 +f 433/1277/841 434/1278/842 419/1271/835 418/1268/832 +f 422/1279/843 423/1280/844 408/1274/838 407/1269/833 +f 427/1281/845 428/1282/846 413/1266/830 412/1273/837 +f 426/1283/847 427/1281/845 412/1273/837 411/1270/834 +f 430/1276/840 431/1284/848 416/1260/824 415/1272/836 +f 434/1278/842 435/1285/849 420/1262/826 419/1271/835 +f 423/1280/844 424/1286/850 409/1264/828 408/1274/838 +f 435/1285/849 436/1287/851 421/1263/827 420/1262/826 +f 431/1284/848 432/1288/852 417/1261/825 416/1260/824 +f 428/1282/846 429/1275/839 414/1267/831 413/1266/830 +f 424/1286/850 425/1289/853 410/1265/829 409/1264/828 +f 467/1092/657 422/1279/843 407/1269/833 +f 432/1288/852 433/1277/841 418/1268/832 417/1261/825 +f 436/1287/851 499/1120/685 421/1263/827 +f 425/1289/853 426/1283/847 411/1270/834 410/1265/829 +f 467/1092/657 437/1290/854 422/1279/843 +f 440/1291/855 441/1292/856 426/1283/847 425/1289/853 +f 451/1293/857 499/1120/685 436/1287/851 +f 448/1294/858 449/1295/859 434/1278/842 433/1277/841 +f 444/1296/860 445/1297/861 430/1276/840 429/1275/839 +f 441/1292/856 442/1298/862 427/1281/845 426/1283/847 +f 437/1290/854 438/1299/863 423/1280/844 422/1279/843 +f 449/1295/859 450/1300/864 435/1285/849 434/1278/842 +f 445/1297/861 446/1301/865 431/1284/848 430/1276/840 +f 442/1298/862 443/1302/866 428/1282/846 427/1281/845 +f 439/1303/867 440/1291/855 425/1289/853 424/1286/850 +f 438/1299/863 439/1303/867 424/1286/850 423/1280/844 +f 450/1300/864 451/1293/857 436/1287/851 435/1285/849 +f 446/1301/865 447/1304/868 432/1288/852 431/1284/848 +f 443/1302/866 444/1296/860 429/1275/839 428/1282/846 +f 447/1304/868 448/1294/858 433/1277/841 432/1288/852 +f 464/1305/869 465/1306/870 450/1300/864 449/1295/859 +f 453/1307/871 454/1308/872 439/1303/867 438/1299/863 +f 458/1309/873 459/1310/874 444/1296/860 443/1302/866 +f 457/1311/875 458/1309/873 443/1302/866 442/1298/862 +f 461/1312/876 462/1313/877 447/1304/868 446/1301/865 +f 465/1306/870 466/1314/878 451/1293/857 450/1300/864 +f 454/1308/872 455/1315/879 440/1291/855 439/1303/867 +f 467/1092/657 452/1316/880 437/1290/854 +f 462/1313/877 463/1317/881 448/1294/858 447/1304/868 +f 466/1314/878 499/1120/685 451/1293/857 +f 455/1315/879 456/1318/882 441/1292/856 440/1291/855 +f 459/1310/874 460/1319/883 445/1297/861 444/1296/860 +f 463/1317/881 464/1305/869 449/1295/859 448/1294/858 +f 452/1316/880 453/1307/871 438/1299/863 437/1290/854 +f 456/1318/882 457/1311/875 442/1298/862 441/1292/856 +f 460/1319/883 461/1312/876 446/1301/865 445/1297/861 +f 505/1320/884 504/1321/885 462/1313/877 461/1312/876 +f 508/1322/886 507/1323/887 459/1310/874 458/1309/873 +f 512/1324/888 511/1325/889 455/1315/879 454/1308/872 +f 467/1092/657 514/1326/890 452/1316/880 +f 504/1321/885 503/1327/891 463/1317/881 462/1313/877 +f 500/1328/892 499/1120/685 466/1314/878 +f 511/1325/889 510/1329/893 456/1318/882 455/1315/879 +f 507/1323/887 506/1330/894 460/1319/883 459/1310/874 +f 502/1331/895 501/1332/896 465/1306/870 464/1305/869 +f 503/1327/891 502/1331/895 464/1305/869 463/1317/881 +f 514/1326/890 513/1333/897 453/1307/871 452/1316/880 +f 510/1329/893 509/1334/898 457/1311/875 456/1318/882 +f 506/1330/894 505/1320/884 461/1312/876 460/1319/883 +f 509/1334/898 508/1322/886 458/1309/873 457/1311/875 +f 513/1333/897 512/1324/888 454/1308/872 453/1307/871 +f 501/1332/896 500/1328/892 466/1314/878 465/1306/870 +f 1390/1335/899 1357/1336/900 1356/1337/901 1389/1338/902 +f 1391/1339/903 1358/1340/904 1357/1336/900 1390/1335/899 +f 1392/1341/905 1359/1342/906 1358/1340/904 1391/1339/903 +f 1393/1343/907 1360/1344/908 1359/1342/906 1392/1341/905 +f 1394/1345/909 1361/1346/910 1360/1344/908 1393/1343/907 +f 1395/1347/911 1362/1348/912 1361/1346/910 1394/1345/909 +f 1396/1349/913 1363/1350/914 1362/1348/912 1395/1347/911 +f 1397/1351/915 1381/1352/916 1363/1350/914 1396/1349/913 +f 1398/1353/917 1364/1354/918 1381/1352/916 1397/1351/915 +f 1399/1355/919 1382/1356/920 1364/1354/918 1398/1353/917 +f 1400/1357/921 1365/1358/922 1382/1356/920 1399/1355/919 +f 1401/1359/923 1366/1360/924 1365/1358/922 1400/1357/921 +f 1402/1361/925 1383/1362/926 1366/1360/924 1401/1359/923 +f 1403/1363/927 1367/1364/928 1383/1362/926 1402/1361/925 +f 1404/1365/929 1368/1366/930 1367/1364/928 1403/1363/927 +f 1405/1367/931 1369/1368/932 1368/1366/930 1404/1365/929 +f 1406/1369/933 1370/1370/934 1369/1371/932 1405/1372/931 +f 1407/1373/935 1371/1374/936 1370/1370/934 1406/1369/933 +f 1408/1375/937 1384/1376/938 1371/1374/936 1407/1373/935 +f 1410/1377/939 1372/1378/940 1384/1376/938 1408/1375/937 +f 1411/1379/941 1374/1380/942 1373/1381/943 1409/1382/944 +f 1409/1382/944 1373/1381/943 1372/1378/940 1410/1377/939 +f 1412/1383/945 1385/1384/946 1374/1380/942 1411/1379/941 +f 1413/1385/947 1375/1386/948 1385/1384/946 1412/1383/945 +f 1414/1387/949 1386/1388/950 1375/1386/948 1413/1385/947 +f 1416/1389/951 1376/1390/952 1386/1388/950 1414/1387/949 +f 1417/1391/953 1378/1392/954 1377/1393/955 1415/1394/956 +f 1415/1394/956 1377/1393/955 1376/1390/952 1416/1389/951 +f 1418/1395/957 1379/1396/958 1378/1392/954 1417/1391/953 +f 1388/1397/959 1380/1398/960 1379/1396/958 1418/1395/957 +f 928/1399/961 931/1400/962 932/1401/963 899/1402/964 +f 900/1403/965 899/1402/964 932/1401/963 933/1404/966 +f 901/1405/967 900/1403/965 933/1404/966 934/1406/968 +f 902/1407/969 901/1405/967 934/1406/968 935/1408/970 +f 903/1409/971 902/1407/969 935/1408/970 936/1410/972 +f 904/1411/973 903/1409/971 936/1410/972 937/1412/974 +f 904/1411/973 937/1412/974 938/1413/975 905/1414/976 +f 906/1415/977 905/1414/976 938/1413/975 939/1416/978 +f 907/1417/979 906/1415/977 939/1416/978 940/1418/980 +f 908/1419/981 907/1417/979 940/1418/980 941/1420/982 +f 908/1419/981 941/1420/982 942/1421/983 909/1422/984 +f 909/1422/984 942/1421/983 943/1423/985 929/1424/986 +f 910/1425/987 944/1426/988 945/1427/989 911/1428/990 +f 929/1424/986 943/1423/985 944/1426/988 910/1425/987 +f 911/1428/990 945/1427/989 946/1429/991 912/1430/992 +f 913/1431/993 912/1430/992 946/1429/991 947/1432/994 +f 913/1431/993 947/1432/994 948/1433/995 914/1434/996 +f 915/1435/997 914/1434/996 948/1433/995 949/1436/998 +f 915/1437/997 949/1438/998 950/1439/999 916/1440/1000 +f 917/1441/1001 916/1440/1000 950/1439/999 951/1442/1002 +f 917/1441/1001 951/1442/1002 952/1443/1003 918/1444/1004 +f 918/1444/1004 952/1443/1003 953/1445/1005 920/1446/1006 +f 920/1446/1006 953/1445/1005 954/1447/1007 919/1448/1008 +f 919/1448/1008 954/1447/1007 955/1449/1009 921/1450/1010 +f 921/1450/1010 955/1449/1009 956/1451/1011 922/1452/1012 +f 922/1452/1012 956/1451/1011 957/1453/1013 930/1454/1014 +f 925/1455/1015 923/1456/1016 958/1457/1017 959/1458/1018 +f 923/1456/1016 930/1454/1014 957/1453/1013 958/1457/1017 +f 926/1459/1019 924/1460/1020 960/1461/1021 961/1462/1022 +f 925/1455/1015 959/1458/1018 960/1461/1021 924/1460/1020 +f 927/1463/1023 926/1459/1019 961/1462/1022 962/1464/1024 +f 927/1463/1023 962/1464/1024 931/1400/962 928/1399/961 +f 1304/1465/1025 1303/1466/1026 963/1467/1027 964/1468/1028 +f 1343/1469/1029 1304/1465/1025 964/1468/1028 965/1470/1030 +f 1305/1471/1031 1343/1469/1029 965/1470/1030 966/1472/1032 +f 963/1467/1027 1303/1466/1026 1302/1473/1033 967/1474/1034 +f 1345/1475/1035 1305/1471/1031 966/1472/1032 971/1476/1036 +f 967/1474/1034 1302/1473/1033 1341/1477/1037 973/1478/1038 +f 1306/1479/1039 1345/1475/1035 971/1476/1036 975/1480/1040 +f 973/1478/1038 1341/1477/1037 1254/1481/312 1242/1482/1041 977/1483/1042 +f 968/1484/1043 964/1468/1028 963/1467/1027 969/1485/1044 +f 970/1486/1045 965/1470/1030 964/1468/1028 968/1484/1043 +f 972/1487/1046 966/1472/1032 965/1470/1030 970/1486/1045 +f 1263/1488/1047 1354/1489/326 1306/1479/1039 975/1480/1040 979/1490/1048 +f 977/1483/1042 1242/1482/1041 1243/1491/1049 981/1492/1050 +f 969/1485/1044 963/1467/1027 967/1474/1034 974/1493/1051 +f 976/1494/1052 971/1476/1036 966/1472/1032 972/1487/1046 +f 1264/1495/1053 1263/1488/1047 979/1490/1048 983/1496/1054 +f 981/1492/1050 1243/1491/1049 1244/1497/1055 985/1498/1056 +f 978/1499/1057 974/1493/1051 967/1474/1034 973/1478/1038 +f 980/1500/1058 975/1480/1040 971/1476/1036 976/1494/1052 +f 1265/1501/1059 1264/1495/1053 983/1496/1054 987/1502/1060 +f 985/1498/1056 1244/1497/1055 1275/1503/1061 989/1504/1062 +f 982/1505/1063 978/1499/1057 973/1478/1038 977/1483/1042 +f 1422/1506/914 1426/1507/913 1427/1508/915 1419/1509/916 +f 1421/1510/920 1429/1511/919 1430/1512/921 1423/1513/922 +f 984/1514/1064 979/1490/1048 975/1480/1040 980/1500/1058 +f 1425/1515/912 1432/1516/911 1426/1507/913 1422/1506/914 +f 986/1517/1065 982/1505/1063 977/1483/1042 981/1492/1050 +f 1423/1513/922 1430/1512/921 1434/1518/923 1433/1519/924 +f 988/1520/1066 983/1496/1054 979/1490/1048 984/1514/1064 +f 1424/1521/910 1437/1522/909 1432/1516/911 1425/1515/912 +f 1266/1523/1067 1245/1524/1068 991/1525/1069 995/1526/1070 +f 1277/1527/1071 1246/1528/1072 997/1529/1073 993/1530/1074 +f 990/1531/1075 986/1517/1065 981/1492/1050 985/1498/1056 +f 1431/1532/908 1436/1533/907 1437/1522/909 1424/1521/910 +f 992/1534/1076 987/1502/1060 983/1496/1054 988/1520/1066 +f 1440/1535/904 1445/1536/903 1441/1537/905 1435/1538/906 +f 994/1539/1077 990/1531/1075 985/1498/1056 989/1504/1062 +f 1433/1519/924 1434/1518/923 1439/1540/925 1438/1541/926 +f 996/1542/1078 991/1543/1069 987/1502/1060 992/1534/1076 +f 1444/1544/900 1449/1545/899 1445/1536/903 1440/1535/904 +f 1247/1546/1079 1267/1547/1080 999/1548/1081 1003/1549/1082 +f 1280/1550/1083 1248/1551/1084 1005/1552/1085 1001/1553/1086 +f 998/1554/1087 994/1539/1077 989/1504/1062 993/1530/1074 +f 1438/1541/926 1439/1540/925 1443/1555/927 1442/1556/928 +f 1000/1557/1088 995/1526/1070 991/1525/1069 996/1558/1078 +f 1389/1338/902 1356/1337/901 1355/1559/1089 1387/1560/1090 +f 1448/1561/901 1454/1562/902 1449/1545/899 1444/1544/900 +f 1249/1563/1091 1247/1546/1079 1003/1549/1082 1007/1564/1092 +f 1005/1552/1085 1248/1551/1084 1353/1565/354 1314/1566/1093 1009/1567/1094 +f 1002/1568/1095 998/1554/1087 993/1530/1074 997/1529/1073 +f 1442/1556/928 1443/1555/927 1447/1569/929 1446/1570/930 +f 1004/1571/1096 999/1548/1081 995/1526/1070 1000/1557/1088 +f 1453/1572/1089 1458/1573/1090 1454/1562/902 1448/1561/901 +f 1006/1574/1097 1002/1568/1095 997/1529/1073 1001/1553/1086 +f 1446/1570/930 1447/1569/929 1452/1575/931 1451/1576/932 +f 1008/1577/1098 1003/1549/1082 999/1548/1081 1004/1571/1096 +f 1457/1578/960 1462/1579/959 1458/1573/1090 1453/1572/1089 +f 1010/1580/1099 1006/1574/1097 1001/1553/1086 1005/1552/1085 +f 1450/1581/934 1456/1582/933 1460/1583/935 1455/1584/936 +f 1008/1577/1098 1012/1585/1100 1007/1564/1092 1003/1549/1082 +f 1451/1576/932 1452/1575/931 1456/1586/933 1450/1587/934 +f 1323/1588/1101 1344/1589/1102 1015/1590/1103 1019/1591/1104 +f 1318/1592/1105 1320/1593/1106 1021/1594/1107 1017/1595/1108 +f 1014/1596/1109 1010/1580/1099 1005/1552/1085 1009/1567/1094 +f 1455/1584/936 1460/1583/935 1464/1597/937 1459/1598/938 +f 1419/1509/916 1427/1508/915 1428/1599/917 1420/1600/918 +f 1016/1601/1110 1011/1602/1111 1007/1564/1092 1012/1585/1100 +f 1461/1603/958 1466/1604/957 1462/1579/959 1457/1578/960 +f 1342/1605/1112 1323/1588/1101 1019/1591/1104 1023/1606/1113 +f 1021/1594/1107 1320/1593/1106 1342/1605/1112 1023/1606/1113 +f 1018/1607/1114 1014/1596/1109 1009/1567/1094 1013/1608/1115 +f 1459/1598/938 1464/1597/937 1468/1609/939 1463/1610/940 +f 1016/1601/1110 1020/1611/1116 1015/1590/1103 1011/1602/1111 +f 1465/1612/954 1470/1613/953 1466/1604/957 1461/1603/958 +f 1022/1614/1117 1018/1607/1114 1013/1608/1115 1017/1595/1108 +f 1463/1610/940 1468/1609/939 1473/1615/944 1467/1616/943 +f 1020/1611/1116 1024/1617/1118 1019/1591/1104 1015/1590/1103 +f 1469/1618/955 1475/1619/956 1470/1613/953 1465/1612/954 +f 1435/1538/906 1441/1537/905 1436/1533/907 1431/1532/908 +f 1025/1620/1119 1022/1614/1117 1017/1595/1108 1021/1594/1107 +f 1467/1616/943 1473/1615/944 1479/1621/941 1472/1622/942 +f 1024/1617/1118 1026/1623/1120 1023/1606/1113 1019/1591/1104 +f 1474/1624/952 1471/1625/951 1475/1619/956 1469/1618/955 +f 1026/1623/1120 1025/1620/1119 1021/1594/1107 1023/1606/1113 +f 1420/1600/918 1428/1599/917 1429/1511/919 1421/1510/920 +f 1480/1626/950 1477/1627/949 1471/1625/951 1474/1624/952 +f 1472/1622/942 1479/1621/941 1478/1628/945 1481/1629/946 +f 1482/1630/948 1476/1631/947 1477/1627/949 1480/1626/950 +f 1481/1629/946 1478/1628/945 1476/1631/947 1482/1630/948 +f 1027/1632/1121 1028/1633/1122 1029/1634/1123 1030/1635/1124 +f 1034/1636/1125 1035/1637/1126 1028/1633/1122 1027/1632/1121 +f 1030/1635/1124 1029/1634/1123 1036/1638/1127 1031/1639/1128 +f 1031/1639/1128 1036/1638/1127 1037/1640/1129 1032/1641/1130 +f 1032/1642/1130 1037/1643/1129 1038/1644/1131 1033/1645/1132 +f 1033/1645/1132 1038/1644/1131 1035/1637/1126 1034/1636/1125 +f 1039/1646/1133 1040/1647/1129 1041/1648/1127 1042/1649/1134 +f 1046/1650/1135 1047/1651/1131 1040/1647/1129 1039/1646/1133 +f 1042/1649/1134 1041/1648/1127 1048/1652/1123 1043/1653/1136 +f 1043/1653/1136 1048/1652/1123 1049/1654/1122 1044/1655/1137 +f 1044/1656/1137 1049/1657/1122 1050/1658/1126 1045/1659/1138 +f 1045/1659/1138 1050/1658/1126 1047/1651/1131 1046/1650/1135 +f 1051/1660/1139 1052/1661/1140 1053/1662/1141 1054/1663/1142 +f 1058/1664/1143 1059/1665/1144 1052/1661/1140 1051/1660/1139 +f 1054/1663/1142 1053/1662/1141 1060/1666/1145 1055/1667/1146 +f 1055/1667/1146 1060/1666/1145 1061/1668/1147 1056/1669/1148 +f 1056/1670/1148 1061/1671/1147 1062/1672/1149 1057/1673/1150 +f 1057/1673/1150 1062/1672/1149 1059/1665/1144 1058/1664/1143 +f 1063/1674/1151 1064/1675/1147 1065/1676/1145 1066/1677/1152 +f 1070/1678/1153 1071/1679/1149 1064/1675/1147 1063/1674/1151 +f 1066/1677/1152 1065/1676/1145 1072/1680/1141 1067/1681/1154 +f 1067/1681/1154 1072/1680/1141 1073/1682/1140 1068/1683/1155 +f 1068/1684/1155 1073/1685/1140 1074/1686/1144 1069/1687/1156 +f 1069/1687/1156 1074/1686/1144 1071/1679/1149 1070/1678/1153 +f 1075/1688/1157 1076/1689/1158 1077/1690/1159 1078/1691/1160 +f 1082/1692/1161 1083/1693/1162 1076/1689/1158 1075/1688/1157 +f 1078/1691/1160 1077/1690/1159 1084/1694/1163 1079/1695/1164 +f 1079/1695/1164 1084/1694/1163 1085/1696/1165 1080/1697/1166 +f 1080/1698/1166 1085/1699/1165 1086/1700/1167 1081/1701/1168 +f 1081/1701/1168 1086/1700/1167 1083/1693/1162 1082/1692/1161 +f 1087/1702/1169 1088/1703/1165 1089/1704/1163 1090/1705/1170 +f 1094/1706/1171 1095/1707/1167 1088/1703/1165 1087/1702/1169 +f 1090/1705/1170 1089/1704/1163 1096/1708/1159 1091/1709/1172 +f 1091/1709/1172 1096/1708/1159 1097/1710/1158 1092/1711/1173 +f 1092/1712/1173 1097/1713/1158 1098/1714/1162 1093/1715/1174 +f 1093/1715/1174 1098/1714/1162 1095/1707/1167 1094/1706/1171 +f 1099/1716/1175 1100/1717/1176 1101/1718/1177 1102/1719/1178 +f 1106/1720/1179 1107/1721/1180 1100/1717/1176 1099/1716/1175 +f 1102/1719/1178 1101/1718/1177 1108/1722/1181 1103/1723/1182 +f 1103/1723/1182 1108/1722/1181 1109/1724/1183 1104/1725/1184 +f 1104/1726/1184 1109/1727/1183 1110/1728/1185 1105/1729/1186 +f 1105/1729/1186 1110/1728/1185 1107/1721/1180 1106/1720/1179 +f 1111/1730/1187 1112/1731/1183 1113/1732/1181 1114/1733/1188 +f 1118/1734/1189 1119/1735/1185 1112/1731/1183 1111/1730/1187 +f 1114/1733/1188 1113/1732/1181 1120/1736/1177 1115/1737/1190 +f 1115/1737/1190 1120/1736/1177 1121/1738/1176 1116/1739/1191 +f 1116/1740/1191 1121/1741/1176 1122/1742/1180 1117/1743/1192 +f 1117/1743/1192 1122/1742/1180 1119/1735/1185 1118/1734/1189 +f 1123/1744/1130 1124/1745/1129 1125/1746/1131 1126/1747/1132 +f 1130/1748/1128 1131/1749/1127 1124/1745/1129 1123/1744/1130 +f 1126/1747/1132 1125/1746/1131 1132/1750/1126 1127/1751/1125 +f 1127/1751/1125 1132/1750/1126 1133/1752/1122 1128/1753/1121 +f 1128/1754/1121 1133/1755/1122 1134/1756/1123 1129/1757/1124 +f 1129/1757/1124 1134/1756/1123 1131/1749/1127 1130/1748/1128 +f 1135/1758/1137 1136/1759/1122 1137/1760/1126 1138/1761/1138 +f 1142/1762/1136 1143/1763/1123 1136/1759/1122 1135/1758/1137 +f 1138/1761/1138 1137/1760/1126 1144/1764/1131 1139/1765/1135 +f 1139/1765/1135 1144/1764/1131 1145/1766/1129 1140/1767/1133 +f 1140/1768/1133 1145/1769/1129 1146/1770/1127 1141/1771/1134 +f 1141/1771/1134 1146/1770/1127 1143/1763/1123 1142/1762/1136 +f 1147/1772/1148 1148/1773/1147 1149/1774/1149 1150/1775/1150 +f 1154/1776/1146 1155/1777/1145 1148/1773/1147 1147/1772/1148 +f 1150/1775/1150 1149/1774/1149 1156/1778/1144 1151/1779/1143 +f 1151/1779/1143 1156/1778/1144 1157/1780/1140 1152/1781/1139 +f 1152/1782/1139 1157/1783/1140 1158/1784/1141 1153/1785/1142 +f 1153/1785/1142 1158/1784/1141 1155/1777/1145 1154/1776/1146 +f 1159/1786/1155 1160/1787/1140 1161/1788/1144 1162/1789/1156 +f 1166/1790/1154 1167/1791/1141 1160/1787/1140 1159/1786/1155 +f 1162/1789/1156 1161/1788/1144 1168/1792/1149 1163/1793/1153 +f 1163/1793/1153 1168/1792/1149 1169/1794/1147 1164/1795/1151 +f 1164/1796/1151 1169/1797/1147 1170/1798/1145 1165/1799/1152 +f 1165/1799/1152 1170/1798/1145 1167/1791/1141 1166/1790/1154 +f 1171/1800/1166 1172/1801/1165 1173/1802/1167 1174/1803/1168 +f 1178/1804/1164 1179/1805/1163 1172/1801/1165 1171/1800/1166 +f 1174/1803/1168 1173/1802/1167 1180/1806/1162 1175/1807/1161 +f 1175/1807/1161 1180/1806/1162 1181/1808/1158 1176/1809/1157 +f 1176/1810/1157 1181/1811/1158 1182/1812/1159 1177/1813/1160 +f 1177/1813/1160 1182/1812/1159 1179/1805/1163 1178/1804/1164 +f 1183/1814/1173 1184/1815/1158 1185/1816/1162 1186/1817/1174 +f 1190/1818/1172 1191/1819/1159 1184/1815/1158 1183/1814/1173 +f 1186/1817/1174 1185/1816/1162 1192/1820/1167 1187/1821/1171 +f 1187/1821/1171 1192/1820/1167 1193/1822/1165 1188/1823/1169 +f 1188/1824/1169 1193/1825/1165 1194/1826/1163 1189/1827/1170 +f 1189/1827/1170 1194/1826/1163 1191/1819/1159 1190/1818/1172 +f 1195/1828/1184 1196/1829/1183 1197/1830/1185 1198/1831/1186 +f 1202/1832/1182 1203/1833/1181 1196/1829/1183 1195/1828/1184 +f 1198/1831/1186 1197/1830/1185 1204/1834/1180 1199/1835/1179 +f 1199/1835/1179 1204/1834/1180 1205/1836/1176 1200/1837/1175 +f 1200/1838/1175 1205/1839/1176 1206/1840/1177 1201/1841/1178 +f 1201/1841/1178 1206/1840/1177 1203/1833/1181 1202/1832/1182 +f 1207/1842/1191 1208/1843/1176 1209/1844/1180 1210/1845/1192 +f 1214/1846/1190 1215/1847/1177 1208/1843/1176 1207/1842/1191 +f 1210/1845/1192 1209/1844/1180 1216/1848/1185 1211/1849/1189 +f 1211/1849/1189 1216/1848/1185 1217/1850/1183 1212/1851/1187 +f 1212/1852/1187 1217/1853/1183 1218/1854/1181 1213/1855/1188 +f 1213/1855/1188 1218/1854/1181 1215/1847/1177 1214/1846/1190 +f 1222/1856/1026 1291/1857/1026 1292/1858/1033 1221/1859/1033 +f 1227/1860/1031 1333/1861/1031 1289/1862/1029 1226/1863/1029 +f 1228/1864/1035 1334/1865/1035 1333/1861/1031 1227/1860/1031 +f 1221/1859/1033 1292/1858/1033 1293/1866/1037 1220/1867/1037 +f 1255/1868/312 1220/1867/1037 1293/1866/1037 +f 1715/1869/2 1692/1870/1106 1287/1871/1106 1714/1872/2 +f 1258/1873/326 1335/1874/1039 1229/1875/1039 +f 1223/1876/1025 1290/1877/1025 1291/1857/1026 1222/1856/1026 +f 1226/1863/1029 1289/1862/1029 1290/1877/1025 1223/1876/1025 1710/1878/386 +f 1712/1879/386 1675/1880/1025 1224/1881/1025 1711/1882/386 +f 1709/1883/3 1693/1884/1071 1300/1885/1071 1707/1886/3 +f 1718/1887/1 1717/1888/1 1339/1889/1068 1694/1890/1068 +f 1229/1875/1039 1335/1874/1039 1334/1865/1035 1228/1864/1035 +f 1691/1891/1026 1675/1880/1025 1223/1876/1025 1222/1856/1026 +f 1690/1892/1033 1691/1891/1026 1222/1856/1026 1221/1859/1033 +f 1689/1893/1037 1690/1892/1033 1221/1859/1033 1220/1867/1037 +f 1704/1894/1047 1336/1895/1047 1258/1873/326 1229/1875/1039 1701/1896/1039 +f 1687/1897/1049 1340/1898/1049 1301/1899/1041 1688/1900/1041 +f 1685/1901/1055 1330/1902/1055 1340/1898/1049 1687/1897/1049 +f 1685/1901/1055 1696/1903/1061 1331/1904/1061 1330/1902/1055 +f 1306/1479/1039 1354/1489/326 1262/1905/1039 +f 1345/1475/1035 1306/1479/1039 1262/1905/1039 1261/1906/1035 +f 1305/1471/1031 1345/1475/1035 1261/1906/1035 1260/1907/1031 +f 1343/1469/1029 1305/1471/1031 1260/1907/1031 1259/1908/1029 +f 1304/1465/1025 1343/1469/1029 1259/1908/1029 1711/1882/386 1224/1881/1025 +f 1225/1909/1026 1303/1466/1026 1304/1465/1025 1224/1881/1025 +f 1240/1910/1033 1302/1473/1033 1303/1466/1026 1225/1909/1026 +f 1241/1911/1037 1341/1477/1037 1302/1473/1033 1240/1910/1033 +f 1254/1481/312 1341/1477/1037 1241/1911/1037 +f 1301/1899/1041 1242/1482/1041 1254/1481/312 +f 1243/1491/1049 1242/1482/1041 1301/1899/1041 1340/1898/1049 +f 1244/1497/1055 1243/1491/1049 1340/1898/1049 1330/1902/1055 +f 1331/1904/1061 1275/1503/1061 1244/1497/1055 1330/1902/1055 +f 1277/1527/1071 1275/1503/1061 1331/1904/1061 1707/1886/3 1300/1885/1071 +f 1246/1528/1072 1277/1527/1071 1300/1885/1071 1299/1912/1072 +f 1280/1550/1083 1246/1528/1072 1299/1912/1072 1310/1913/1083 +f 1248/1551/1084 1280/1550/1083 1310/1913/1083 1312/1914/1084 +f 1248/1551/1084 1312/1914/1084 1353/1565/354 +f 1255/1868/312 1219/1915/1041 1294/1916/1041 +f 1332/1917/1049 1294/1916/1041 1219/1915/1041 1272/1918/1049 +f 1272/1918/1049 1273/1919/1055 1295/1920/1055 1332/1917/1049 +f 1296/1921/1061 1295/1920/1055 1273/1919/1055 1274/1922/1061 +f 1297/1923/1071 1708/1924/3 1296/1921/1061 1274/1922/1061 1276/1925/1071 +f 1298/1926/1072 1297/1923/1071 1276/1925/1071 1278/1927/1072 +f 1279/1928/1083 1309/1929/1083 1298/1926/1072 1278/1927/1072 +f 1311/1930/1084 1309/1929/1083 1279/1928/1083 1281/1931/1084 +f 1281/1931/1084 1256/1932/354 1311/1930/1084 +f 1688/1900/1041 1301/1899/1041 1254/1481/312 1241/1911/1037 1689/1893/1037 +f 1683/1933/1083 1684/1934/1084 1312/1914/1084 1310/1913/1083 +f 1682/1935/1072 1298/1926/1072 1309/1929/1083 1683/1933/1083 +f 1682/1935/1072 1693/1884/1071 1297/1923/1071 1298/1926/1072 +f 1680/1936/1193 1251/1937/1193 1283/1938/1093 1681/1939/1093 +f 1679/1940/1105 1680/1936/1193 1284/1941/1193 1285/1942/1105 +f 1679/1940/1105 1285/1942/1105 1287/1871/1106 1692/1870/1106 +f 1678/1943/1101 1252/1944/1101 1269/1945/1112 1686/1946/1112 +f 1677/1947/1102 1268/1948/1102 1252/1944/1101 1678/1943/1101 +f 1676/1949/1194 1250/1950/1194 1268/1948/1102 1677/1947/1102 +f 1681/1939/1093 1684/1934/1084 1311/1930/1084 1256/1932/354 1282/1951/1093 +f 1698/1952/1091 1326/1953/1091 1327/1954/1079 1699/1955/1079 +f 1699/1955/1079 1327/1954/1079 1328/1956/1080 1700/1957/1080 +f 1695/1958/1067 1351/1959/1067 1350/1960/1080 1700/1957/1080 +f 1257/1961/368 1238/1962/1194 1325/1963/1194 +f 1325/1963/1194 1238/1962/1194 1271/1964/1102 1324/1965/1102 +f 1324/1965/1102 1271/1964/1102 1239/1966/1101 1322/1967/1101 +f 1322/1967/1101 1239/1966/1101 1270/1968/1112 1321/1969/1112 +f 1319/1970/1106 1321/1969/1112 1270/1968/1112 1714/1872/2 1287/1871/1106 +f 1285/1942/1105 1317/1971/1105 1319/1970/1106 1287/1871/1106 +f 1315/1972/1193 1317/1971/1105 1285/1942/1105 1284/1941/1193 +f 1282/1951/1093 1313/1973/1093 1315/1972/1193 1284/1941/1193 +f 1282/1951/1093 1256/1932/354 1313/1973/1093 +f 1283/1938/1093 1314/1566/1093 1353/1565/354 +f 1314/1566/1093 1283/1938/1093 1251/1937/1193 1316/1974/1193 +f 1316/1974/1193 1251/1937/1193 1286/1975/1105 1318/1592/1105 +f 1288/1976/1106 1320/1593/1106 1318/1592/1105 1286/1975/1105 +f 1269/1945/1112 1342/1605/1112 1320/1593/1106 1288/1976/1106 1713/1977/2 +f 1323/1588/1101 1342/1605/1112 1269/1945/1112 1252/1944/1101 +f 1344/1589/1102 1323/1588/1101 1252/1944/1101 1268/1948/1102 +f 1344/1589/1102 1268/1948/1102 1250/1950/1194 1346/1978/1194 +f 1253/1979/368 1346/1978/1194 1250/1950/1194 +f 1702/1980/1035 1261/1906/1035 1262/1905/1039 1701/1896/1039 +f 1703/1981/1031 1260/1907/1031 1261/1906/1035 1702/1980/1035 +f 1697/1982/1029 1259/1908/1029 1260/1907/1031 1703/1981/1031 +f 1263/1488/1047 1307/1983/1047 1354/1489/326 +f 1263/1488/1047 1264/1495/1053 1349/1984/1053 1307/1983/1047 +f 1264/1495/1053 1265/1501/1059 1308/1985/1059 1349/1984/1053 +f 1352/1986/1068 1308/1985/1059 1265/1501/1059 1245/1987/1068 +f 1351/1959/1067 1716/1988/1 1352/1989/1068 1245/1524/1068 1266/1523/1067 +f 1351/1959/1067 1266/1523/1067 1267/1547/1080 1350/1960/1080 +f 1348/1990/1079 1350/1960/1080 1267/1547/1080 1247/1546/1079 +f 1247/1546/1079 1249/1563/1091 1347/1991/1091 1348/1990/1079 +f 1253/1979/368 1347/1991/1091 1249/1563/1091 +f 1705/1992/1053 1337/1993/1053 1336/1895/1047 1704/1894/1047 +f 1706/1994/1059 1338/1995/1059 1337/1993/1053 1705/1992/1053 +f 1694/1996/1068 1706/1994/1059 1308/1985/1059 1352/1986/1068 +f 1230/1997/1047 1258/1873/326 1336/1895/1047 +f 1231/1998/1053 1230/1997/1047 1336/1895/1047 1337/1993/1053 +f 1232/1999/1059 1231/1998/1053 1337/1993/1053 1338/1995/1059 +f 1233/2000/1068 1232/1999/1059 1338/1995/1059 1339/2001/1068 +f 1234/2002/1067 1233/2003/1068 1339/1889/1068 1717/1888/1 1329/2004/1067 +f 1234/2002/1067 1329/2004/1067 1328/1956/1080 1235/2005/1080 +f 1236/2006/1079 1235/2005/1080 1328/1956/1080 1327/1954/1079 +f 1237/2007/1091 1236/2006/1079 1327/1954/1079 1326/1953/1091 +f 1237/2007/1091 1326/1953/1091 1257/1961/368 +f 1676/1949/1194 1698/1952/1091 1347/1991/1091 1253/1979/368 1250/1950/1194 +f 1387/1560/1090 1355/1559/1089 1380/1398/960 1388/1397/959 +f 1279/1928/1083 1278/1927/1072 932/1401/963 931/1400/962 +f 1278/1927/1072 1276/1925/1071 933/1404/966 932/1401/963 +f 1276/1925/1071 1274/1922/1061 934/1406/968 933/1404/966 +f 1274/1922/1061 1273/1919/1055 935/1408/970 934/1406/968 +f 1273/1919/1055 1272/1918/1049 936/1410/972 935/1408/970 +f 1272/1918/1049 1219/1915/1041 937/1412/974 936/1410/972 +f 1219/1915/1041 1255/1868/312 1293/1866/1037 938/1413/975 937/1412/974 +f 1293/1866/1037 1292/1858/1033 939/1416/978 938/1413/975 +f 1292/1858/1033 1291/1857/1026 940/1418/980 939/1416/978 +f 1291/1857/1026 1290/1877/1025 941/1420/982 940/1418/980 +f 1290/1877/1025 1289/1862/1029 942/1421/983 941/1420/982 +f 1289/1862/1029 1333/1861/1031 943/1423/985 942/1421/983 +f 1334/1865/1035 1335/1874/1039 945/1427/989 944/1426/988 +f 1333/1861/1031 1334/1865/1035 944/1426/988 943/1423/985 +f 1335/1874/1039 1258/1873/326 1230/1997/1047 946/1429/991 945/1427/989 +f 1230/1997/1047 1231/1998/1053 947/1432/994 946/1429/991 +f 1231/1998/1053 1232/1999/1059 948/1433/995 947/1432/994 +f 1232/1999/1059 1233/2000/1068 949/1436/998 948/1433/995 +f 1233/2003/1068 1234/2002/1067 950/1439/999 949/1438/998 +f 1234/2002/1067 1235/2005/1080 951/1442/1002 950/1439/999 +f 1235/2005/1080 1236/2006/1079 952/1443/1003 951/1442/1002 +f 1236/2006/1079 1237/2007/1091 953/1445/1005 952/1443/1003 +f 1237/2007/1091 1257/1961/368 1325/1963/1194 954/1447/1007 953/1445/1005 +f 1325/1963/1194 1324/1965/1102 955/1449/1009 954/1447/1007 +f 1324/1965/1102 1322/1967/1101 956/1451/1011 955/1449/1009 +f 1322/1967/1101 1321/1969/1112 957/1453/1013 956/1451/1011 +f 1319/1970/1106 1317/1971/1105 959/1458/1018 958/1457/1017 +f 1321/1969/1112 1319/1970/1106 958/1457/1017 957/1453/1013 +f 1315/1972/1193 1313/1973/1093 961/1462/1022 960/1461/1021 +f 1317/1971/1105 1315/1972/1193 960/1461/1021 959/1458/1018 +f 1313/1973/1093 1256/1932/354 1281/1931/1084 962/1464/1024 961/1462/1022 +f 962/1464/1024 1281/1931/1084 1279/1928/1083 931/1400/962 +f 1245/1987/1068 1265/1501/1059 987/1502/1060 991/1543/1069 +f 1275/1503/1061 1277/1527/1071 993/1530/1074 989/1504/1062 +f 1267/1547/1080 1266/1523/1067 995/1526/1070 999/1548/1081 +f 1246/1528/1072 1280/1550/1083 1001/1553/1086 997/1529/1073 +f 1346/1978/1194 1253/1979/368 1249/1563/1091 1007/1564/1092 1011/1602/1111 +f 1314/1566/1093 1316/1974/1193 1013/1608/1115 1009/1567/1094 +f 1344/1589/1102 1346/1978/1194 1011/1602/1111 1015/1590/1103 +f 1316/1974/1193 1318/1592/1105 1017/1595/1108 1013/1608/1115 +f 1483/2008/1195 1484/2009/368 1485/2010/1196 1486/2011/1197 +f 1490/2012/1198 1491/2013/1199 1484/2009/368 1483/2008/1195 +f 1486/2011/1197 1485/2010/1196 1492/2014/1200 1487/2015/1201 +f 1487/2015/1201 1492/2014/1200 1493/2016/312 1488/2017/1202 +f 1488/2018/1202 1493/2019/312 1494/2020/1203 1489/2021/1204 +f 1489/2021/1204 1494/2020/1203 1491/2013/1199 1490/2012/1198 +f 1495/2022/1205 1496/2023/312 1497/2024/1200 1498/2025/1206 +f 1502/2026/1207 1503/2027/1203 1496/2023/312 1495/2022/1205 +f 1498/2025/1206 1497/2024/1200 1504/2028/1196 1499/2029/1208 +f 1499/2029/1208 1504/2028/1196 1505/2030/368 1500/2031/1209 +f 1500/2032/1209 1505/2033/368 1506/2034/1199 1501/2035/1210 +f 1501/2035/1210 1506/2034/1199 1503/2027/1203 1502/2026/1207 +f 1507/2036/1211 1508/2037/1 1509/2038/1212 1510/2039/1213 +f 1514/2040/1214 1515/2041/1215 1508/2037/1 1507/2036/1211 +f 1510/2039/1213 1509/2038/1212 1516/2042/1216 1511/2043/1217 +f 1511/2043/1217 1516/2042/1216 1517/2044/3 1512/2045/1218 +f 1512/2046/1218 1517/2047/3 1518/2048/1219 1513/2049/1220 +f 1513/2049/1220 1518/2048/1219 1515/2041/1215 1514/2040/1214 +f 1519/2050/1221 1520/2051/3 1521/2052/1216 1522/2053/1222 +f 1526/2054/1223 1527/2055/1219 1520/2051/3 1519/2050/1221 +f 1522/2053/1222 1521/2052/1216 1528/2056/1212 1523/2057/1224 +f 1523/2057/1224 1528/2056/1212 1529/2058/1 1524/2059/1225 +f 1524/2060/1225 1529/2061/1 1530/2062/1215 1525/2063/1226 +f 1525/2063/1226 1530/2062/1215 1527/2055/1219 1526/2054/1223 +f 1531/2064/1227 1532/2065/326 1533/2066/1228 1534/2067/1229 +f 1538/2068/1230 1539/2069/1231 1532/2065/326 1531/2064/1227 +f 1534/2067/1229 1533/2066/1228 1540/2070/1232 1535/2071/1233 +f 1535/2071/1233 1540/2070/1232 1541/2072/354 1536/2073/1234 +f 1536/2074/1234 1541/2075/354 1542/2076/1235 1537/2077/1236 +f 1537/2077/1236 1542/2076/1235 1539/2069/1231 1538/2068/1230 +f 1543/2078/1237 1544/2079/354 1545/2080/1232 1546/2081/1238 +f 1550/2082/1239 1551/2083/1235 1544/2079/354 1543/2078/1237 +f 1546/2081/1238 1545/2080/1232 1552/2084/1228 1547/2085/1240 +f 1547/2085/1240 1552/2084/1228 1553/2086/326 1548/2087/1241 +f 1548/2088/1241 1553/2089/326 1554/2090/1231 1549/2091/1242 +f 1549/2091/1242 1554/2090/1231 1551/2083/1235 1550/2082/1239 +f 1555/2092/1243 1556/2093/386 1557/2094/1244 1558/2095/1245 +f 1562/2096/1246 1563/2097/1247 1556/2093/386 1555/2092/1243 +f 1558/2095/1245 1557/2094/1244 1564/2098/1248 1559/2099/1249 +f 1559/2099/1249 1564/2098/1248 1565/2100/2 1560/2101/1250 +f 1560/2102/1250 1565/2103/2 1566/2104/1251 1561/2105/1252 +f 1561/2105/1252 1566/2104/1251 1563/2097/1247 1562/2096/1246 +f 1567/2106/1253 1568/2107/2 1569/2108/1248 1570/2109/1254 +f 1574/2110/1255 1575/2111/1251 1568/2107/2 1567/2106/1253 +f 1570/2109/1254 1569/2108/1248 1576/2112/1244 1571/2113/1256 +f 1571/2113/1256 1576/2112/1244 1577/2114/386 1572/2115/1257 +f 1572/2116/1257 1577/2117/386 1578/2118/1247 1573/2119/1258 +f 1573/2119/1258 1578/2118/1247 1575/2111/1251 1574/2110/1255 +f 1579/2120/1202 1580/2121/312 1581/2122/1203 1582/2123/1204 +f 1586/2124/1201 1587/2125/1200 1580/2121/312 1579/2120/1202 +f 1582/2123/1204 1581/2122/1203 1588/2126/1199 1583/2127/1198 +f 1583/2127/1198 1588/2126/1199 1589/2128/368 1584/2129/1195 +f 1584/2130/1195 1589/2131/368 1590/2132/1196 1585/2133/1197 +f 1585/2133/1197 1590/2132/1196 1587/2125/1200 1586/2124/1201 +f 1591/2134/1209 1592/2135/368 1593/2136/1199 1594/2137/1210 +f 1598/2138/1208 1599/2139/1196 1592/2135/368 1591/2134/1209 +f 1594/2137/1210 1593/2136/1199 1600/2140/1203 1595/2141/1207 +f 1595/2141/1207 1600/2140/1203 1601/2142/312 1596/2143/1205 +f 1596/2144/1205 1601/2145/312 1602/2146/1200 1597/2147/1206 +f 1597/2147/1206 1602/2146/1200 1599/2139/1196 1598/2138/1208 +f 1603/2148/1218 1604/2149/3 1605/2150/1219 1606/2151/1220 +f 1610/2152/1217 1611/2153/1216 1604/2149/3 1603/2148/1218 +f 1606/2151/1220 1605/2150/1219 1612/2154/1215 1607/2155/1214 +f 1607/2155/1214 1612/2154/1215 1613/2156/1 1608/2157/1211 +f 1608/2158/1211 1613/2159/1 1614/2160/1212 1609/2161/1213 +f 1609/2161/1213 1614/2160/1212 1611/2153/1216 1610/2152/1217 +f 1615/2162/1225 1616/2163/1 1617/2164/1215 1618/2165/1226 +f 1622/2166/1224 1623/2167/1212 1616/2163/1 1615/2162/1225 +f 1618/2165/1226 1617/2164/1215 1624/2168/1219 1619/2169/1223 +f 1619/2169/1223 1624/2168/1219 1625/2170/3 1620/2171/1221 +f 1620/2172/1221 1625/2173/3 1626/2174/1216 1621/2175/1222 +f 1621/2175/1222 1626/2174/1216 1623/2167/1212 1622/2166/1224 +f 1627/2176/1234 1628/2177/354 1629/2178/1235 1630/2179/1236 +f 1634/2180/1233 1635/2181/1232 1628/2177/354 1627/2176/1234 +f 1630/2179/1236 1629/2178/1235 1636/2182/1231 1631/2183/1230 +f 1631/2183/1230 1636/2182/1231 1637/2184/326 1632/2185/1227 +f 1632/2186/1227 1637/2187/326 1638/2188/1228 1633/2189/1229 +f 1633/2189/1229 1638/2188/1228 1635/2181/1232 1634/2180/1233 +f 1639/2190/1241 1640/2191/326 1641/2192/1231 1642/2193/1242 +f 1646/2194/1240 1647/2195/1228 1640/2191/326 1639/2190/1241 +f 1642/2193/1242 1641/2192/1231 1648/2196/1235 1643/2197/1239 +f 1643/2197/1239 1648/2196/1235 1649/2198/354 1644/2199/1237 +f 1644/2200/1237 1649/2201/354 1650/2202/1232 1645/2203/1238 +f 1645/2203/1238 1650/2202/1232 1647/2195/1228 1646/2194/1240 +f 1651/2204/1250 1652/2205/2 1653/2206/1251 1654/2207/1252 +f 1658/2208/1249 1659/2209/1248 1652/2205/2 1651/2204/1250 +f 1654/2207/1252 1653/2206/1251 1660/2210/1247 1655/2211/1246 +f 1655/2211/1246 1660/2210/1247 1661/2212/386 1656/2213/1243 +f 1656/2214/1243 1661/2215/386 1662/2216/1244 1657/2217/1245 +f 1657/2217/1245 1662/2216/1244 1659/2209/1248 1658/2208/1249 +f 1663/2218/1257 1664/2219/386 1665/2220/1247 1666/2221/1258 +f 1670/2222/1256 1671/2223/1244 1664/2219/386 1663/2218/1257 +f 1666/2221/1258 1665/2220/1247 1672/2224/1251 1667/2225/1255 +f 1667/2225/1255 1672/2224/1251 1673/2226/2 1668/2227/1253 +f 1668/2228/1253 1673/2229/2 1674/2230/1248 1669/2231/1254 +f 1669/2231/1254 1674/2230/1248 1671/2223/1244 1670/2222/1256 +f 1257/1961/368 1326/1953/1091 1698/1952/1091 1676/1949/1194 1238/1962/1194 +f 1339/2001/1068 1338/1995/1059 1706/1994/1059 1694/1996/1068 +f 1308/1985/1059 1706/1994/1059 1705/1992/1053 1349/1984/1053 +f 1349/1984/1053 1705/1992/1053 1704/1894/1047 1307/1983/1047 +f 1226/1863/1029 1697/1982/1029 1703/1981/1031 1227/1860/1031 +f 1227/1860/1031 1703/1981/1031 1702/1980/1035 1228/1864/1035 +f 1228/1864/1035 1702/1980/1035 1701/1896/1039 1229/1875/1039 +f 1329/2004/1067 1695/1958/1067 1700/1957/1080 1328/1956/1080 +f 1348/1990/1079 1699/1955/1079 1700/1957/1080 1350/1960/1080 +f 1347/1991/1091 1698/1952/1091 1699/1955/1079 1348/1990/1079 +f 1283/1938/1093 1353/1565/354 1312/1914/1084 1684/1934/1084 1681/1939/1093 +f 1238/1962/1194 1676/1949/1194 1677/1947/1102 1271/1964/1102 +f 1271/1964/1102 1677/1947/1102 1678/1943/1101 1239/1966/1101 +f 1239/1966/1101 1678/1943/1101 1686/1946/1112 1270/1968/1112 +f 1286/1975/1105 1679/1940/1105 1692/1870/1106 1288/1976/1106 +f 1286/1975/1105 1251/1937/1193 1680/1936/1193 1679/1940/1105 +f 1284/1941/1193 1680/1936/1193 1681/1939/1093 1282/1951/1093 +f 1299/1912/1072 1300/1885/1071 1693/1884/1071 1682/1935/1072 +f 1299/1912/1072 1682/1935/1072 1683/1933/1083 1310/1913/1083 +f 1309/1929/1083 1311/1930/1084 1684/1934/1084 1683/1933/1083 +f 1294/1916/1041 1688/1900/1041 1689/1893/1037 1220/1867/1037 1255/1868/312 +f 1295/1920/1055 1296/1921/1061 1696/1903/1061 1685/1901/1055 +f 1295/1920/1055 1685/1901/1055 1687/1897/1049 1332/1917/1049 +f 1332/1917/1049 1687/1897/1049 1688/1900/1041 1294/1916/1041 +f 1307/1983/1047 1704/1894/1047 1701/1896/1039 1262/1905/1039 1354/1489/326 +f 1241/1911/1037 1240/1910/1033 1690/1892/1033 1689/1893/1037 +f 1240/1910/1033 1225/1909/1026 1691/1891/1026 1690/1892/1033 +f 1225/1909/1026 1224/1881/1025 1675/1880/1025 1691/1891/1026 +f 1716/1988/1 1718/1887/1 1694/1890/1068 1352/1989/1068 +f 1708/1924/3 1297/1923/1071 1693/1884/1071 1709/1883/3 +f 1710/1878/386 1223/1876/1025 1675/1880/1025 1712/1879/386 +f 1713/1977/2 1288/1976/1106 1692/1870/1106 1715/1869/2 +f 1296/1921/1061 1708/1924/3 1709/1883/3 1696/1903/1061 +f 1696/1903/1061 1709/1883/3 1707/1886/3 1331/1904/1061 +f 1226/1863/1029 1710/1878/386 1712/1879/386 1697/1982/1029 +f 1697/1982/1029 1712/1879/386 1711/1882/386 1259/1908/1029 +f 1269/1945/1112 1713/1977/2 1715/1869/2 1686/1946/1112 +f 1686/1946/1112 1715/1869/2 1714/1872/2 1270/1968/1112 +f 1351/1959/1067 1695/1958/1067 1718/1887/1 1716/1988/1 +f 1695/1958/1067 1329/2004/1067 1717/1888/1 1718/1887/1 diff --git a/mods/pipeworks/models/pipeworks_flow_sensor_lowpoly.obj b/mods/pipeworks/models/pipeworks_flow_sensor_lowpoly.obj new file mode 100644 index 00000000..b0c0702a --- /dev/null +++ b/mods/pipeworks/models/pipeworks_flow_sensor_lowpoly.obj @@ -0,0 +1,220 @@ +# Blender v2.78 (sub 0) OBJ File: 'pipe-flow-sensor-lowpoly.blend' +# www.blender.org +o Cube.001_Cube.001_None +v -0.187500 0.187500 0.250000 +v -0.187500 0.187500 -0.250000 +v -0.187500 -0.187500 -0.250000 +v -0.187500 -0.187500 0.250000 +v 0.187500 0.187500 -0.250000 +v 0.187500 -0.187500 -0.250000 +v 0.187500 0.187500 0.250000 +v 0.187500 -0.187500 0.250000 +v -0.156250 -0.064721 0.500000 +v -0.156250 -0.064721 0.468750 +v -0.064721 -0.156250 0.500000 +v -0.064721 -0.156250 0.468750 +v 0.064721 -0.156250 0.500000 +v 0.064721 -0.156250 0.468750 +v 0.156250 -0.064721 0.500000 +v 0.156250 -0.064721 0.468750 +v 0.156250 0.064721 0.500000 +v 0.156250 0.064721 0.468750 +v 0.064721 0.156250 0.500000 +v 0.064721 0.156250 0.468750 +v -0.064721 0.156250 0.500000 +v -0.064721 0.156250 0.468750 +v -0.156250 0.064721 0.500000 +v -0.156250 0.064721 0.468750 +v -0.125000 -0.051777 0.468750 +v -0.125000 -0.051777 -0.468750 +v -0.051777 -0.125000 0.468750 +v -0.051777 -0.125000 -0.468750 +v 0.051777 -0.125000 0.468750 +v 0.051777 -0.125000 -0.468750 +v 0.125000 -0.051777 0.468750 +v 0.125000 -0.051777 -0.468750 +v 0.125000 0.051777 0.468750 +v 0.125000 0.051777 -0.468750 +v 0.051777 0.125000 0.468750 +v 0.051777 0.125000 -0.468750 +v -0.051777 0.125000 0.468750 +v -0.051777 0.125000 -0.468750 +v -0.125000 0.051777 0.468750 +v -0.125000 0.051777 -0.468750 +v -0.156250 -0.064721 -0.468750 +v -0.156250 -0.064721 -0.500000 +v -0.064721 -0.156250 -0.468750 +v -0.064721 -0.156250 -0.500000 +v 0.064721 -0.156250 -0.468750 +v 0.064721 -0.156250 -0.500000 +v 0.156250 -0.064721 -0.468750 +v 0.156250 -0.064721 -0.500000 +v 0.156250 0.064721 -0.468750 +v 0.156250 0.064721 -0.500000 +v 0.064721 0.156250 -0.468750 +v 0.064721 0.156250 -0.500000 +v -0.064721 0.156250 -0.468750 +v -0.064721 0.156250 -0.500000 +v -0.156250 0.064721 -0.468750 +v -0.156250 0.064721 -0.500000 +vt 0.0098 0.5000 +vt 0.3235 0.5000 +vt 0.3235 0.7353 +vt 0.0098 0.7353 +vt 0.2647 0.9902 +vt 0.2647 0.7549 +vt 0.5000 0.7549 +vt 0.5000 0.9902 +vt 0.0098 0.5000 +vt 0.3235 0.5000 +vt 0.3235 0.7353 +vt 0.0098 0.7353 +vt 0.2451 0.7549 +vt 0.2451 0.9902 +vt 0.0098 0.9902 +vt 0.0098 0.7549 +vt 0.3235 0.2451 +vt 0.0098 0.2451 +vt 0.0098 0.0098 +vt 0.3235 0.0098 +vt 0.0098 0.2549 +vt 0.3235 0.2549 +vt 0.3235 0.4902 +vt 0.0098 0.4902 +vt 0.7941 0.6765 +vt 0.7353 0.7353 +vt 0.6569 0.7353 +vt 0.5980 0.6765 +vt 0.5980 0.5980 +vt 0.6569 0.5392 +vt 0.7353 0.5392 +vt 0.7941 0.5980 +vt 0.5000 0.7353 +vt 0.5588 0.6765 +vt 0.5588 0.5980 +vt 0.5000 0.5392 +vt 0.4216 0.5392 +vt 0.3627 0.5980 +vt 0.3627 0.6765 +vt 0.4216 0.7353 +vt 0.5588 0.6765 +vt 0.5000 0.7353 +vt 0.4216 0.7353 +vt 0.3627 0.6765 +vt 0.3627 0.5980 +vt 0.4216 0.5392 +vt 0.5000 0.5392 +vt 0.5588 0.5980 +vt 0.7353 0.7353 +vt 0.7941 0.6765 +vt 0.7941 0.5980 +vt 0.7353 0.5392 +vt 0.6569 0.5392 +vt 0.5980 0.5980 +vt 0.5980 0.6765 +vt 0.6569 0.7353 +vt 0.8529 0.4902 +vt 0.8529 0.4706 +vt 0.8922 0.4706 +vt 0.8922 0.4902 +vt 0.9314 0.4706 +vt 0.9314 0.4902 +vt 0.9706 0.4706 +vt 0.9706 0.4902 +vt 0.6569 0.4902 +vt 0.6569 0.4706 +vt 0.6961 0.4706 +vt 0.6961 0.4902 +vt 0.7353 0.4706 +vt 0.7353 0.4902 +vt 0.7745 0.4706 +vt 0.7745 0.4902 +vt 0.8137 0.4706 +vt 0.8137 0.4902 +vt 0.5784 0.4902 +vt 0.5784 0.4706 +vt 0.6176 0.4706 +vt 0.6176 0.4902 +vt 0.5392 0.4902 +vt 0.5392 0.4706 +vt 0.6569 0.4706 +vt 0.6569 0.4902 +vt 0.3431 0.4902 +vt 0.3431 0.4706 +vt 0.3824 0.4706 +vt 0.3824 0.4902 +vt 0.4216 0.4706 +vt 0.4216 0.4902 +vt 0.4608 0.4706 +vt 0.4608 0.4902 +vt 0.5000 0.4706 +vt 0.5000 0.4902 +vt 0.3431 0.2843 +vt 0.3431 0.2451 +vt 0.9706 0.2451 +vt 0.9706 0.2843 +vt 0.3431 0.3627 +vt 0.3431 0.3235 +vt 0.9706 0.3235 +vt 0.9706 0.3627 +vt 0.3431 0.4020 +vt 0.9706 0.4020 +vt 0.9706 0.4412 +vt 0.3431 0.4412 +vt 0.9706 0.1667 +vt 0.9706 0.2059 +vt 0.3431 0.2059 +vt 0.3431 0.1667 +vt 0.9706 0.1275 +vt 0.3431 0.1275 +vn -1.0000 0.0000 0.0000 +vn 0.0000 -0.0000 -1.0000 +vn 1.0000 0.0000 0.0000 +vn 0.0000 0.0000 1.0000 +vn 0.0000 -1.0000 0.0000 +vn 0.0000 1.0000 -0.0000 +vn -0.9239 -0.3827 -0.0000 +vn -0.3827 -0.9239 -0.0000 +vn 0.3827 -0.9239 0.0000 +vn 0.9239 -0.3827 0.0000 +vn 0.9239 0.3827 0.0000 +vn 0.3827 0.9239 0.0000 +vn -0.3827 0.9239 -0.0000 +vn -0.9239 0.3827 -0.0000 +g Cube.001_Cube.001_None_Cube.001_Cube.001_None_None +s off +f 1/1/1 2/2/1 3/3/1 4/4/1 +f 2/5/2 5/6/2 6/7/2 3/8/2 +f 5/9/3 7/10/3 8/11/3 6/12/3 +f 7/13/4 1/14/4 4/15/4 8/16/4 +f 4/17/5 3/18/5 6/19/5 8/20/5 +f 7/21/6 5/22/6 2/23/6 1/24/6 +f 12/25/2 10/26/2 24/27/2 22/28/2 20/29/2 18/30/2 16/31/2 14/32/2 +f 9/33/4 11/34/4 13/35/4 15/36/4 17/37/4 19/38/4 21/39/4 23/40/4 +f 44/41/2 42/42/2 56/43/2 54/44/2 52/45/2 50/46/2 48/47/2 46/48/2 +f 41/49/4 43/50/4 45/51/4 47/52/4 49/53/4 51/54/4 53/55/4 55/56/4 +s 1 +f 9/57/7 10/58/7 12/59/8 11/60/8 +f 11/60/8 12/59/8 14/61/9 13/62/9 +f 13/62/9 14/61/9 16/63/10 15/64/10 +f 15/65/10 16/66/10 18/67/11 17/68/11 +f 17/68/11 18/67/11 20/69/12 19/70/12 +f 19/70/12 20/69/12 22/71/13 21/72/13 +f 21/72/13 22/71/13 24/73/14 23/74/14 +f 23/74/14 24/73/14 10/58/7 9/57/7 +f 43/75/8 44/76/8 46/77/9 45/78/9 +f 41/79/7 42/80/7 44/76/8 43/75/8 +f 45/78/9 46/77/9 48/81/10 47/82/10 +f 47/83/10 48/84/10 50/85/11 49/86/11 +f 49/86/11 50/85/11 52/87/12 51/88/12 +f 51/88/12 52/87/12 54/89/13 53/90/13 +f 53/90/13 54/89/13 56/91/14 55/92/14 +f 55/92/14 56/91/14 42/80/7 41/79/7 +f 38/93/13 40/94/14 39/95/14 37/96/13 +f 34/97/11 36/98/12 35/99/12 33/100/11 +f 32/101/10 31/102/10 29/103/9 30/104/9 +f 38/93/13 37/96/13 35/99/12 36/98/12 +f 27/105/8 25/106/7 26/107/7 28/108/8 +f 29/109/9 27/105/8 28/108/8 30/110/9 +f 32/101/10 34/97/11 33/100/11 31/102/10 +f 25/106/7 39/95/14 40/94/14 26/107/7 diff --git a/mods/pipeworks/models/pipeworks_fountainhead.obj b/mods/pipeworks/models/pipeworks_fountainhead.obj new file mode 100644 index 00000000..08975638 --- /dev/null +++ b/mods/pipeworks/models/pipeworks_fountainhead.obj @@ -0,0 +1,1956 @@ +# Blender v2.78 (sub 0) OBJ File: 'pipe-master-highpoly.blend' +# www.blender.org +o Pipe_Cylinder.002 +v -0.126770 -0.468750 0.038456 +v -0.131837 -0.468750 0.012985 +v -0.131837 -0.468750 -0.012984 +v -0.126770 -0.468750 -0.038455 +v -0.116832 -0.468750 -0.062448 +v -0.102404 -0.468750 -0.084041 +v -0.084041 -0.468750 -0.102404 +v -0.062448 -0.468750 -0.116832 +v -0.038455 -0.468750 -0.126770 +v -0.012985 -0.468750 -0.131836 +v 0.012985 -0.468750 -0.131836 +v 0.062448 -0.468750 -0.116832 +v 0.084041 -0.468750 -0.102404 +v 0.102404 -0.468750 -0.084041 +v 0.116832 -0.468750 -0.062448 +v 0.126770 -0.468750 -0.038455 +v 0.131836 -0.468750 -0.012985 +v 0.131836 -0.468750 0.012985 +v 0.126770 -0.468750 0.038455 +v 0.116832 -0.468750 0.062448 +v 0.084041 -0.468750 0.102404 +v 0.102404 -0.468750 0.084041 +v 0.062448 -0.468750 0.116832 +v 0.038455 -0.468750 0.126770 +v -0.012985 -0.468750 0.131837 +v -0.062448 -0.468750 0.116832 +v -0.038455 -0.468750 0.126770 +v -0.084041 -0.468750 0.102404 +v -0.102404 -0.468750 0.084041 +v -0.116832 -0.468750 0.062448 +v 0.038455 -0.468750 -0.126770 +v 0.012985 -0.468750 0.131837 +v -0.110774 -0.437501 0.059210 +v -0.120197 -0.437501 0.036462 +v -0.125001 -0.437501 0.012312 +v -0.125001 -0.437501 -0.012311 +v -0.120197 -0.437501 -0.036461 +v -0.110774 -0.437501 -0.059210 +v -0.097094 -0.437501 -0.079683 +v -0.079683 -0.437501 -0.097094 +v -0.059210 -0.437501 -0.110774 +v -0.036461 -0.437501 -0.120197 +v -0.012312 -0.437501 -0.125000 +v 0.012311 -0.437501 -0.125000 +v 0.036461 -0.437501 -0.120197 +v 0.059210 -0.437501 -0.110774 +v 0.079683 -0.437501 -0.097094 +v 0.097094 -0.437501 -0.079683 +v 0.110774 -0.437501 -0.059210 +v 0.120197 -0.437501 -0.036461 +v 0.125000 -0.437501 -0.012311 +v 0.125000 -0.437501 0.012312 +v 0.120197 -0.437501 0.036461 +v 0.110774 -0.437501 0.059210 +v 0.097094 -0.437501 0.079683 +v 0.079683 -0.437501 0.097094 +v 0.059210 -0.437501 0.110774 +v 0.036461 -0.437501 0.120197 +v 0.012311 -0.437501 0.125001 +v -0.012311 -0.437501 0.125001 +v -0.036461 -0.437501 0.120197 +v -0.059210 -0.437501 0.110774 +v -0.079683 -0.437501 0.097094 +v -0.097094 -0.437501 0.079683 +v -0.136982 -0.460914 0.046976 +v -0.136982 -0.468751 0.046976 +v -0.142474 -0.468751 0.054133 +v -0.142474 -0.460914 0.054133 +v -0.139022 -0.460914 0.062467 +v -0.130078 -0.460914 0.063644 +v -0.124587 -0.460914 0.056488 +v -0.128039 -0.460914 0.048154 +v -0.128039 -0.468751 0.048154 +v -0.139022 -0.468751 0.062467 +v -0.130078 -0.468751 0.063644 +v -0.124587 -0.468751 0.056488 +v -0.063644 -0.460914 0.130078 +v -0.063644 -0.468751 0.130078 +v -0.062467 -0.468751 0.139022 +v -0.062467 -0.460914 0.139022 +v -0.054133 -0.460914 0.142474 +v -0.046976 -0.460914 0.136982 +v -0.048153 -0.460914 0.128039 +v -0.056487 -0.460914 0.124587 +v -0.056487 -0.468751 0.124587 +v -0.054133 -0.468751 0.142474 +v -0.046976 -0.468751 0.136982 +v -0.048153 -0.468751 0.128039 +v 0.046976 -0.460914 0.136982 +v 0.046976 -0.468751 0.136982 +v 0.054133 -0.468751 0.142474 +v 0.054133 -0.460914 0.142474 +v 0.062467 -0.460914 0.139022 +v 0.063644 -0.460914 0.130078 +v 0.056487 -0.460914 0.124587 +v 0.048153 -0.460914 0.128039 +v 0.048153 -0.468751 0.128039 +v 0.062467 -0.468751 0.139022 +v 0.063644 -0.468751 0.130078 +v 0.056487 -0.468751 0.124587 +v 0.130078 -0.460914 0.063644 +v 0.130078 -0.468751 0.063644 +v 0.139022 -0.468751 0.062467 +v 0.139022 -0.460914 0.062467 +v 0.142474 -0.460914 0.054133 +v 0.136982 -0.460914 0.046976 +v 0.128039 -0.460914 0.048153 +v 0.124587 -0.460914 0.056488 +v 0.124587 -0.468751 0.056488 +v 0.142474 -0.468751 0.054133 +v 0.136982 -0.468751 0.046976 +v 0.128039 -0.468751 0.048153 +v 0.136982 -0.460914 -0.046976 +v 0.136982 -0.468751 -0.046976 +v 0.142474 -0.468751 -0.054133 +v 0.142474 -0.460914 -0.054133 +v 0.139022 -0.460914 -0.062467 +v 0.130078 -0.460914 -0.063644 +v 0.124587 -0.460914 -0.056487 +v 0.128039 -0.460914 -0.048153 +v 0.128039 -0.468751 -0.048153 +v 0.139022 -0.468751 -0.062467 +v 0.130078 -0.468751 -0.063644 +v 0.124587 -0.468751 -0.056487 +v 0.063644 -0.460914 -0.130078 +v 0.063644 -0.468751 -0.130078 +v 0.062467 -0.468751 -0.139022 +v 0.062467 -0.460914 -0.139022 +v 0.054132 -0.460914 -0.142474 +v 0.046976 -0.460914 -0.136982 +v 0.048153 -0.460914 -0.128039 +v 0.056487 -0.460914 -0.124587 +v 0.056487 -0.468751 -0.124587 +v 0.054132 -0.468751 -0.142474 +v 0.046976 -0.468751 -0.136982 +v 0.048153 -0.468751 -0.128039 +v -0.046976 -0.460914 -0.136982 +v -0.046976 -0.468751 -0.136982 +v -0.054133 -0.468751 -0.142474 +v -0.054133 -0.460914 -0.142474 +v -0.062467 -0.460914 -0.139022 +v -0.063644 -0.460914 -0.130078 +v -0.056488 -0.460914 -0.124587 +v -0.048153 -0.460914 -0.128039 +v -0.048153 -0.468751 -0.128039 +v -0.062467 -0.468751 -0.139022 +v -0.063644 -0.468751 -0.130078 +v -0.056488 -0.468751 -0.124587 +v -0.130078 -0.460914 -0.063644 +v -0.130078 -0.468751 -0.063644 +v -0.139022 -0.468751 -0.062467 +v -0.139022 -0.460914 -0.062467 +v -0.142474 -0.460914 -0.054132 +v -0.136982 -0.460914 -0.046976 +v -0.128039 -0.460914 -0.048153 +v -0.124587 -0.460914 -0.056487 +v -0.124587 -0.468751 -0.056487 +v -0.142474 -0.468751 -0.054132 +v -0.136982 -0.468751 -0.046976 +v -0.128039 -0.468751 -0.048153 +v -0.099603 -0.500000 -0.121367 +v -0.074012 -0.500000 -0.138466 +v -0.045577 -0.500000 -0.150245 +v -0.015390 -0.500000 -0.156249 +v 0.015389 -0.500000 -0.156249 +v 0.045576 -0.500000 -0.150245 +v 0.074012 -0.500000 -0.138467 +v 0.099603 -0.500000 -0.121367 +v 0.121367 -0.500000 -0.099603 +v 0.150245 -0.500000 -0.045576 +v 0.156249 -0.500000 0.015389 +v 0.150245 -0.500000 0.045576 +v 0.121367 -0.500000 0.099603 +v 0.099603 -0.500000 0.121367 +v 0.074012 -0.500000 0.138467 +v 0.045576 -0.500000 0.150245 +v 0.015389 -0.500000 0.156250 +v -0.045576 -0.500000 0.150245 +v -0.074012 -0.500000 0.138467 +v -0.099603 -0.500000 0.121367 +v -0.138467 -0.500000 0.074012 +v -0.156250 -0.500000 0.015389 +v -0.156250 -0.500000 -0.015389 +v -0.150245 -0.500000 -0.045576 +v -0.138467 -0.500000 -0.074012 +v -0.121367 -0.500000 -0.099603 +v 0.138466 -0.500000 -0.074012 +v 0.156249 -0.500000 -0.015389 +v 0.138467 -0.500000 0.074012 +v -0.015389 -0.500000 0.156250 +v -0.121367 -0.500000 0.099603 +v -0.150245 -0.500000 0.045576 +v -0.099604 -0.468750 -0.121367 +v -0.121367 -0.468750 -0.099603 +v -0.074012 -0.468750 -0.138466 +v -0.045577 -0.468750 -0.150245 +v -0.015390 -0.468750 -0.156250 +v 0.015389 -0.468750 -0.156250 +v 0.045576 -0.468750 -0.150245 +v 0.074012 -0.468750 -0.138467 +v 0.099603 -0.468750 -0.121367 +v 0.121367 -0.468750 -0.099603 +v 0.138466 -0.468750 -0.074012 +v 0.150245 -0.468750 -0.045576 +v 0.156249 -0.468750 -0.015389 +v 0.156249 -0.468750 0.015389 +v 0.150245 -0.468750 0.045576 +v 0.138467 -0.468750 0.074012 +v 0.121367 -0.468750 0.099603 +v 0.099603 -0.468750 0.121367 +v 0.074012 -0.468750 0.138467 +v 0.045576 -0.468750 0.150245 +v 0.015389 -0.468750 0.156250 +v -0.015389 -0.468750 0.156250 +v -0.074012 -0.468750 0.138467 +v -0.045576 -0.468750 0.150245 +v -0.099603 -0.468750 0.121367 +v -0.121367 -0.468750 0.099603 +v -0.138467 -0.468750 0.074012 +v -0.150245 -0.468750 0.045576 +v -0.156250 -0.468750 -0.015389 +v -0.156250 -0.468750 0.015389 +v -0.150245 -0.468750 -0.045576 +v -0.138467 -0.468750 -0.074012 +v 0.145633 0.500000 -0.119518 +v 0.166152 0.500000 -0.088810 +v 0.180285 0.500000 -0.054689 +v 0.187490 0.500000 -0.018466 +v 0.187490 0.500000 0.018466 +v 0.119518 0.500000 -0.145633 +v 0.180285 0.500000 0.054689 +v 0.054689 0.500000 -0.180285 +v 0.088810 0.500000 -0.166152 +v 0.166152 0.500000 0.088810 +v 0.018466 0.500000 -0.187490 +v 0.145633 0.500000 0.119518 +v -0.018466 0.500000 -0.187490 +v 0.119518 0.500000 0.145633 +v -0.054689 0.500000 -0.180285 +v 0.088810 0.500000 0.166151 +v -0.088809 0.500000 -0.166152 +v 0.054689 0.500000 0.180285 +v -0.119518 0.500000 -0.145633 +v 0.018466 0.500000 0.187490 +v -0.145633 0.500000 -0.119518 +v -0.018466 0.500000 0.187490 +v -0.166151 0.500000 -0.088810 +v -0.054689 0.500000 0.180285 +v -0.180285 0.500000 -0.054689 +v -0.187490 0.500000 0.018466 +v -0.088810 0.500000 0.166151 +v -0.187490 0.500000 -0.018466 +v -0.166151 0.500000 0.088810 +v -0.180285 0.500000 0.054689 +v -0.145633 0.500000 0.119518 +v -0.119518 0.500000 0.145633 +v -0.108578 -0.460914 0.095821 +v -0.108578 -0.468751 0.095821 +v -0.110913 -0.468751 0.104534 +v -0.110913 -0.460914 0.104534 +v -0.104534 -0.460914 0.110913 +v -0.095821 -0.460914 0.108578 +v -0.093486 -0.460914 0.099865 +v -0.099865 -0.460914 0.093486 +v -0.099865 -0.468751 0.093486 +v -0.104534 -0.468751 0.110913 +v -0.095821 -0.468751 0.108578 +v -0.093486 -0.468751 0.099865 +v -0.009021 -0.460914 0.144532 +v -0.009021 -0.468751 0.144532 +v -0.004510 -0.468751 0.152344 +v -0.004510 -0.460914 0.152344 +v 0.004510 -0.460914 0.152344 +v 0.009021 -0.460914 0.144532 +v 0.004510 -0.460914 0.136720 +v -0.004510 -0.460914 0.136720 +v -0.004510 -0.468751 0.136720 +v 0.004510 -0.468751 0.152344 +v 0.009021 -0.468751 0.144532 +v 0.004510 -0.468751 0.136720 +v 0.095821 -0.460914 0.108578 +v 0.095821 -0.468751 0.108578 +v 0.104534 -0.468751 0.110913 +v 0.104534 -0.460914 0.110913 +v 0.110913 -0.460914 0.104534 +v 0.108578 -0.460914 0.095821 +v 0.099865 -0.460914 0.093486 +v 0.093486 -0.460914 0.099865 +v 0.093486 -0.468751 0.099865 +v 0.110913 -0.468751 0.104534 +v 0.108578 -0.468751 0.095821 +v 0.099865 -0.468751 0.093486 +v 0.144532 -0.460914 0.009021 +v 0.144532 -0.468751 0.009021 +v 0.152344 -0.468751 0.004510 +v 0.152344 -0.460914 0.004510 +v 0.152344 -0.460914 -0.004510 +v 0.144532 -0.460914 -0.009021 +v 0.136720 -0.460914 -0.004510 +v 0.136720 -0.460914 0.004510 +v 0.136720 -0.468751 0.004510 +v 0.152344 -0.468751 -0.004510 +v 0.144532 -0.468751 -0.009021 +v 0.136720 -0.468751 -0.004510 +v 0.108578 -0.460914 -0.095821 +v 0.108578 -0.468751 -0.095821 +v 0.110913 -0.468751 -0.104534 +v 0.110913 -0.460914 -0.104534 +v 0.104534 -0.460914 -0.110913 +v 0.095821 -0.460914 -0.108578 +v 0.093486 -0.460914 -0.099865 +v 0.099865 -0.460914 -0.093486 +v 0.099865 -0.468751 -0.093486 +v 0.104534 -0.468751 -0.110913 +v 0.095821 -0.468751 -0.108578 +v 0.093486 -0.468751 -0.099865 +v 0.009021 -0.460914 -0.144532 +v 0.009021 -0.468751 -0.144532 +v 0.004510 -0.468751 -0.152344 +v 0.004510 -0.460914 -0.152344 +v -0.004510 -0.460914 -0.152344 +v -0.009021 -0.460914 -0.144532 +v -0.004510 -0.460914 -0.136720 +v 0.004510 -0.460914 -0.136720 +v 0.004510 -0.468751 -0.136720 +v -0.004510 -0.468751 -0.152344 +v -0.009021 -0.468751 -0.144532 +v -0.004510 -0.468751 -0.136720 +v -0.095821 -0.460914 -0.108578 +v -0.095821 -0.468751 -0.108578 +v -0.104534 -0.468751 -0.110913 +v -0.104534 -0.460914 -0.110913 +v -0.110913 -0.460914 -0.104534 +v -0.108578 -0.460914 -0.095821 +v -0.099865 -0.460914 -0.093486 +v -0.093486 -0.460914 -0.099865 +v -0.093486 -0.468751 -0.099865 +v -0.110913 -0.468751 -0.104534 +v -0.108578 -0.468751 -0.095821 +v -0.099865 -0.468751 -0.093486 +v -0.144532 -0.460914 -0.009021 +v -0.144532 -0.468751 -0.009021 +v -0.152344 -0.468751 -0.004510 +v -0.152344 -0.460914 -0.004510 +v -0.152344 -0.460914 0.004511 +v -0.144532 -0.460914 0.009021 +v -0.136720 -0.460914 0.004510 +v -0.136720 -0.460914 -0.004510 +v -0.136720 -0.468751 -0.004510 +v -0.152344 -0.468751 0.004511 +v -0.144532 -0.468751 0.009021 +v -0.136720 -0.468751 0.004510 +v -0.009233 0.312501 0.093750 +v 0.083081 0.312501 0.044407 +v -0.093750 0.312501 0.009234 +v -0.083081 0.312501 -0.044407 +v 0.027346 0.312501 0.090148 +v 0.009234 0.312501 -0.093750 +v -0.027346 0.312501 -0.090148 +v -0.072821 0.312501 0.059762 +v 0.093750 0.312501 0.009234 +v 0.083081 0.312501 -0.044407 +v 0.009234 0.312501 0.093750 +v 0.059762 0.312501 -0.072821 +v 0.072821 0.312501 -0.059762 +v 0.072821 0.312501 0.059762 +v -0.090148 0.312501 0.027346 +v -0.090148 0.312501 -0.027346 +v -0.059762 0.312501 0.072821 +v 0.044407 0.312501 -0.083081 +v 0.090148 0.312501 -0.027346 +v -0.044407 0.312501 0.083081 +v 0.090148 0.312501 0.027346 +v -0.093750 0.312501 -0.009234 +v -0.009234 0.312501 -0.093750 +v 0.027346 0.312501 -0.090148 +v 0.059762 0.312501 0.072821 +v -0.059762 0.312501 -0.072821 +v -0.027346 0.312501 0.090148 +v -0.083080 0.312501 0.044408 +v 0.093750 0.312501 -0.009234 +v -0.072821 0.312501 -0.059762 +v 0.044407 0.312501 0.083080 +v -0.044407 0.312501 -0.083081 +v 0.138467 0.342519 -0.074012 +v 0.083898 0.312500 -0.044844 +v 0.150245 0.342519 -0.045576 +v 0.091035 0.312499 -0.027615 +v 0.156250 0.342519 -0.015389 +v 0.094673 0.312500 -0.009325 +v 0.121367 0.342519 -0.099603 +v 0.073537 0.312500 -0.060351 +v 0.094673 0.312499 0.009324 +v 0.156250 0.342519 0.015389 +v 0.074012 0.342519 -0.138467 +v 0.044844 0.312500 -0.083898 +v 0.099603 0.342519 -0.121367 +v 0.060350 0.312500 -0.073537 +v 0.027615 0.312500 -0.091035 +v 0.045576 0.342519 -0.150245 +v 0.150245 0.342519 0.045576 +v 0.091035 0.312500 0.027615 +v 0.015389 0.342519 -0.156250 +v 0.009325 0.312500 -0.094673 +v 0.138467 0.342519 0.074012 +v 0.083898 0.312499 0.044844 +v -0.009324 0.312500 -0.094673 +v -0.015389 0.342519 -0.156250 +v 0.121367 0.342519 0.099603 +v 0.073537 0.312500 0.060350 +v -0.045576 0.342519 -0.150245 +v -0.027615 0.312500 -0.091035 +v 0.099603 0.342519 0.121367 +v 0.060350 0.312500 0.073537 +v -0.044844 0.312500 -0.083898 +v -0.074012 0.342519 -0.138467 +v 0.045576 0.342519 0.150245 +v 0.027615 0.312500 0.091035 +v 0.074012 0.342519 0.138467 +v 0.044844 0.312500 0.083898 +v -0.060350 0.312500 -0.073537 +v -0.099603 0.342519 -0.121367 +v 0.009325 0.312500 0.094673 +v 0.015389 0.342519 0.156250 +v -0.073537 0.312499 -0.060351 +v -0.121367 0.342519 -0.099604 +v -0.015389 0.342519 0.156250 +v -0.009324 0.312500 0.094673 +v -0.138466 0.342519 -0.074012 +v -0.083898 0.312500 -0.044845 +v -0.045576 0.342519 0.150245 +v -0.027615 0.312500 0.091035 +v -0.150245 0.342519 -0.045577 +v -0.091035 0.312499 -0.027615 +v -0.074012 0.342519 0.138467 +v -0.044844 0.312500 0.083898 +v -0.156249 0.342519 -0.015389 +v -0.094673 0.312500 -0.009325 +v -0.099603 0.342519 0.121367 +v -0.060350 0.312500 0.073537 +v -0.156249 0.342519 0.015389 +v -0.094673 0.312500 0.009324 +v -0.150245 0.342519 0.045576 +v -0.091035 0.312499 0.027615 +v -0.121367 0.342519 0.099603 +v -0.073537 0.312500 0.060350 +v -0.083898 0.312500 0.044844 +v -0.138467 0.342519 0.074012 +v -0.059762 -0.250000 -0.072821 +v -0.044408 -0.250000 -0.083080 +v -0.027346 -0.250000 -0.090148 +v 0.072821 -0.250000 -0.059762 +v 0.090148 -0.250000 -0.027346 +v 0.059762 -0.250000 0.072821 +v 0.044407 -0.250000 0.083081 +v 0.027346 -0.250000 0.090148 +v 0.009234 -0.250000 0.093750 +v -0.059762 -0.250000 0.072821 +v -0.009234 -0.250000 -0.093750 +v 0.083081 -0.250000 -0.044407 +v 0.093750 -0.250000 -0.009234 +v 0.093750 -0.250000 0.009234 +v 0.090148 -0.250000 0.027346 +v 0.083081 -0.250000 0.044407 +v 0.072821 -0.250000 0.059762 +v -0.009233 -0.250000 0.093750 +v -0.093750 -0.250000 0.009234 +v -0.083081 -0.250000 -0.044407 +v 0.009234 -0.250000 -0.093750 +v -0.072821 -0.250000 0.059763 +v 0.059762 -0.250000 -0.072821 +v -0.090148 -0.250000 0.027346 +v -0.090148 -0.250000 -0.027346 +v 0.044407 -0.250000 -0.083080 +v -0.044407 -0.250000 0.083081 +v -0.093750 -0.250000 -0.009233 +v 0.027346 -0.250000 -0.090148 +v -0.027346 -0.250000 0.090148 +v -0.083080 -0.250000 0.044408 +v -0.072821 -0.250000 -0.059762 +vt 0.5060 0.7367 +vt 0.5273 0.7409 +vt 0.5475 0.7492 +vt 0.5656 0.7613 +vt 0.5810 0.7767 +vt 0.5931 0.7948 +vt 0.6014 0.8150 +vt 0.6056 0.8363 +vt 0.6056 0.8581 +vt 0.6014 0.8795 +vt 0.5931 0.8996 +vt 0.5810 0.9177 +vt 0.5656 0.9331 +vt 0.5475 0.9452 +vt 0.5273 0.9535 +vt 0.5060 0.9578 +vt 0.4842 0.9578 +vt 0.4628 0.9535 +vt 0.4427 0.9452 +vt 0.4246 0.9331 +vt 0.4092 0.9177 +vt 0.3971 0.8996 +vt 0.3888 0.8795 +vt 0.3845 0.8581 +vt 0.3845 0.8363 +vt 0.3888 0.8150 +vt 0.3971 0.7948 +vt 0.4092 0.7767 +vt 0.4246 0.7613 +vt 0.4427 0.7492 +vt 0.4628 0.7409 +vt 0.4842 0.7367 +vt 0.6110 0.7500 +vt 0.6229 0.7431 +vt 0.6229 0.7293 +vt 0.6110 0.7225 +vt 0.5991 0.7293 +vt 0.5991 0.7431 +vt 0.6110 0.7500 +vt 0.6229 0.7431 +vt 0.6229 0.7293 +vt 0.6110 0.7225 +vt 0.5991 0.7293 +vt 0.5991 0.7431 +vt 0.6110 0.7500 +vt 0.6229 0.7431 +vt 0.6229 0.7293 +vt 0.6110 0.7225 +vt 0.5991 0.7293 +vt 0.5991 0.7431 +vt 0.6110 0.7500 +vt 0.6229 0.7431 +vt 0.6229 0.7293 +vt 0.6110 0.7225 +vt 0.5991 0.7293 +vt 0.5991 0.7431 +vt 0.6110 0.7500 +vt 0.6229 0.7431 +vt 0.6229 0.7293 +vt 0.6110 0.7225 +vt 0.5991 0.7293 +vt 0.5991 0.7431 +vt 0.6110 0.7500 +vt 0.6229 0.7431 +vt 0.6229 0.7293 +vt 0.6110 0.7225 +vt 0.5991 0.7293 +vt 0.5991 0.7431 +vt 0.6110 0.7500 +vt 0.6229 0.7431 +vt 0.6229 0.7293 +vt 0.6110 0.7225 +vt 0.5991 0.7293 +vt 0.5991 0.7431 +vt 0.6110 0.7500 +vt 0.6229 0.7431 +vt 0.6229 0.7293 +vt 0.6110 0.7225 +vt 0.5991 0.7293 +vt 0.5991 0.7431 +vt 0.3888 0.9345 +vt 0.4078 0.9535 +vt 0.4302 0.9685 +vt 0.4552 0.9788 +vt 0.4816 0.9841 +vt 0.5086 0.9841 +vt 0.5350 0.9788 +vt 0.5599 0.9685 +vt 0.5823 0.9535 +vt 0.6014 0.9345 +vt 0.6164 0.9121 +vt 0.6267 0.8871 +vt 0.6319 0.8607 +vt 0.6319 0.8337 +vt 0.6267 0.8073 +vt 0.6164 0.7824 +vt 0.6014 0.7600 +vt 0.5823 0.7409 +vt 0.5599 0.7259 +vt 0.5350 0.7156 +vt 0.5086 0.7104 +vt 0.4816 0.7104 +vt 0.4552 0.7156 +vt 0.4302 0.7259 +vt 0.4078 0.7409 +vt 0.3888 0.7600 +vt 0.3738 0.7824 +vt 0.3635 0.8073 +vt 0.3582 0.8337 +vt 0.3582 0.8607 +vt 0.3635 0.8871 +vt 0.3738 0.9121 +vt 0.2066 0.7156 +vt 0.2315 0.7259 +vt 0.2539 0.7409 +vt 0.2730 0.7600 +vt 0.2879 0.7824 +vt 0.2982 0.8073 +vt 0.3035 0.8337 +vt 0.3035 0.8607 +vt 0.2982 0.8871 +vt 0.2879 0.9121 +vt 0.2730 0.9345 +vt 0.2539 0.9535 +vt 0.2315 0.9685 +vt 0.2066 0.9788 +vt 0.1801 0.9841 +vt 0.1532 0.9841 +vt 0.1267 0.9788 +vt 0.1018 0.9685 +vt 0.0794 0.9535 +vt 0.0603 0.9345 +vt 0.0454 0.9121 +vt 0.0350 0.8871 +vt 0.0298 0.8607 +vt 0.0298 0.8337 +vt 0.0350 0.8073 +vt 0.0454 0.7824 +vt 0.0603 0.7600 +vt 0.0794 0.7409 +vt 0.1018 0.7259 +vt 0.1267 0.7156 +vt 0.1532 0.7104 +vt 0.1801 0.7104 +vt 0.7644 0.7111 +vt 0.7405 0.7270 +vt 0.7202 0.7473 +vt 0.7043 0.7712 +vt 0.6933 0.7977 +vt 0.6877 0.8259 +vt 0.6877 0.8546 +vt 0.6933 0.8828 +vt 0.7043 0.9093 +vt 0.7202 0.9332 +vt 0.7405 0.9535 +vt 0.7644 0.9694 +vt 0.7909 0.9804 +vt 0.8191 0.9860 +vt 0.8478 0.9860 +vt 0.8760 0.9804 +vt 0.9025 0.9694 +vt 0.9264 0.9535 +vt 0.9467 0.9332 +vt 0.9626 0.9093 +vt 0.9736 0.8828 +vt 0.9792 0.8546 +vt 0.9792 0.8259 +vt 0.9736 0.7977 +vt 0.9626 0.7712 +vt 0.9467 0.7473 +vt 0.9264 0.7270 +vt 0.9025 0.7111 +vt 0.8760 0.7001 +vt 0.8478 0.6945 +vt 0.8191 0.6945 +vt 0.7909 0.7001 +vt 0.6110 0.7500 +vt 0.6229 0.7431 +vt 0.6229 0.7293 +vt 0.6110 0.7225 +vt 0.5991 0.7293 +vt 0.5991 0.7431 +vt 0.6110 0.7500 +vt 0.6229 0.7431 +vt 0.6229 0.7293 +vt 0.6110 0.7225 +vt 0.5991 0.7293 +vt 0.5991 0.7431 +vt 0.6110 0.7500 +vt 0.6229 0.7431 +vt 0.6229 0.7293 +vt 0.6110 0.7225 +vt 0.5991 0.7293 +vt 0.5991 0.7431 +vt 0.6110 0.7500 +vt 0.6229 0.7431 +vt 0.6229 0.7293 +vt 0.6110 0.7225 +vt 0.5991 0.7293 +vt 0.5991 0.7431 +vt 0.6110 0.7500 +vt 0.6229 0.7431 +vt 0.6229 0.7293 +vt 0.6110 0.7225 +vt 0.5991 0.7293 +vt 0.5991 0.7431 +vt 0.6110 0.7500 +vt 0.6229 0.7431 +vt 0.6229 0.7293 +vt 0.6110 0.7225 +vt 0.5991 0.7293 +vt 0.5991 0.7431 +vt 0.6110 0.7500 +vt 0.6229 0.7431 +vt 0.6229 0.7293 +vt 0.6110 0.7225 +vt 0.5991 0.7293 +vt 0.5991 0.7431 +vt 0.6110 0.7500 +vt 0.6229 0.7431 +vt 0.6229 0.7293 +vt 0.6110 0.7225 +vt 0.5991 0.7293 +vt 0.5991 0.7431 +vt 0.4317 0.5243 +vt 0.4317 0.5035 +vt 0.4593 0.5035 +vt 0.4593 0.5243 +vt 0.4040 0.5243 +vt 0.4040 0.5035 +vt 0.3763 0.5243 +vt 0.3763 0.5035 +vt 0.3487 0.5243 +vt 0.3487 0.5035 +vt 0.3210 0.5243 +vt 0.3210 0.5035 +vt 0.2933 0.5243 +vt 0.2933 0.5035 +vt 0.2656 0.5243 +vt 0.2656 0.5035 +vt 0.2380 0.5243 +vt 0.2380 0.5035 +vt 0.2103 0.5243 +vt 0.2103 0.5035 +vt 0.1826 0.5243 +vt 0.1826 0.5035 +vt 0.1550 0.5243 +vt 0.1550 0.5035 +vt 0.1273 0.5243 +vt 0.1273 0.5035 +vt 0.0996 0.5243 +vt 0.0996 0.5035 +vt 0.0720 0.5243 +vt 0.0720 0.5035 +vt 0.0443 0.5243 +vt 0.0443 0.5035 +vt 0.0166 0.5243 +vt 0.0166 0.5035 +vt 0.8744 0.5243 +vt 0.8744 0.5035 +vt 0.9021 0.5035 +vt 0.9021 0.5243 +vt 0.8467 0.5243 +vt 0.8467 0.5035 +vt 0.8191 0.5243 +vt 0.8191 0.5035 +vt 0.7914 0.5243 +vt 0.7914 0.5035 +vt 0.7360 0.5243 +vt 0.7360 0.5035 +vt 0.7637 0.5035 +vt 0.7637 0.5243 +vt 0.7084 0.5243 +vt 0.7084 0.5035 +vt 0.6807 0.5243 +vt 0.6807 0.5035 +vt 0.6530 0.5243 +vt 0.6530 0.5035 +vt 0.6254 0.5243 +vt 0.6254 0.5035 +vt 0.5700 0.5243 +vt 0.5700 0.5035 +vt 0.5977 0.5035 +vt 0.5977 0.5243 +vt 0.5424 0.5243 +vt 0.5424 0.5035 +vt 0.5147 0.5243 +vt 0.5147 0.5035 +vt 0.4033 0.4515 +vt 0.4033 0.4389 +vt 0.4309 0.4389 +vt 0.4309 0.4514 +vt 0.4585 0.4515 +vt 0.4585 0.4389 +vt 0.4861 0.4515 +vt 0.4861 0.4389 +vt 0.5137 0.4514 +vt 0.5137 0.4389 +vt 0.5412 0.4515 +vt 0.5413 0.4389 +vt 0.5689 0.4516 +vt 0.5689 0.4389 +vt 0.5965 0.4390 +vt 0.5964 0.4515 +vt 0.6240 0.4516 +vt 0.6241 0.4390 +vt 0.6516 0.4517 +vt 0.6518 0.4391 +vt 0.6793 0.4519 +vt 0.6795 0.4392 +vt 0.7072 0.4392 +vt 0.7071 0.4519 +vt 0.7349 0.4393 +vt 0.7348 0.4519 +vt 0.7625 0.4519 +vt 0.7626 0.4393 +vt 0.7903 0.4393 +vt 0.7902 0.4519 +vt 0.8179 0.4393 +vt 0.8180 0.4519 +vt 0.8459 0.4519 +vt 0.8456 0.4392 +vt 0.8732 0.4391 +vt 0.8741 0.4517 +vt 0.9024 0.4513 +vt 0.9004 0.4387 +vt 0.0145 0.4512 +vt 0.0165 0.4387 +vt 0.0437 0.4390 +vt 0.0429 0.4517 +vt 0.0711 0.4519 +vt 0.0715 0.4391 +vt 0.0993 0.4392 +vt 0.0993 0.4519 +vt 0.1271 0.4391 +vt 0.1271 0.4518 +vt 0.1547 0.4391 +vt 0.1548 0.4517 +vt 0.1823 0.4391 +vt 0.1824 0.4517 +vt 0.2099 0.4390 +vt 0.2100 0.4516 +vt 0.2375 0.4390 +vt 0.2375 0.4515 +vt 0.2927 0.4516 +vt 0.2651 0.4516 +vt 0.2650 0.4390 +vt 0.2927 0.4390 +vt 0.3480 0.4515 +vt 0.3204 0.4515 +vt 0.3203 0.4389 +vt 0.3479 0.4389 +vt 0.3756 0.4516 +vt 0.3756 0.4389 +vt 0.5977 0.6311 +vt 0.5977 0.5265 +vt 0.6254 0.5265 +vt 0.6254 0.6311 +vt 0.7360 0.6311 +vt 0.7360 0.5265 +vt 0.7637 0.5265 +vt 0.7637 0.6311 +vt 0.5424 0.6311 +vt 0.5424 0.5265 +vt 0.5700 0.5265 +vt 0.5700 0.6311 +vt 0.5147 0.6311 +vt 0.5147 0.5265 +vt 0.7914 0.6311 +vt 0.7914 0.5265 +vt 0.8191 0.5265 +vt 0.8191 0.6311 +vt 0.4870 0.6311 +vt 0.4870 0.5265 +vt 0.8467 0.5265 +vt 0.8467 0.6311 +vt 0.4593 0.6311 +vt 0.4593 0.5265 +vt 0.4870 0.5035 +vt 0.4870 0.5243 +vt 0.8744 0.5265 +vt 0.8744 0.6311 +vt 0.4317 0.6311 +vt 0.4317 0.5265 +vt 0.9021 0.5265 +vt 0.9021 0.6311 +vt 0.4040 0.6311 +vt 0.4040 0.5265 +vt 0.0443 0.6311 +vt 0.0443 0.5265 +vt 0.0720 0.5265 +vt 0.0720 0.6311 +vt 0.3763 0.6311 +vt 0.3763 0.5265 +vt 0.0166 0.6311 +vt 0.0166 0.5265 +vt 0.3487 0.6311 +vt 0.3487 0.5265 +vt 0.6807 0.6311 +vt 0.6807 0.5265 +vt 0.7084 0.5265 +vt 0.7084 0.6311 +vt 0.0996 0.5265 +vt 0.0996 0.6311 +vt 0.4868 0.3517 +vt 0.4887 0.0902 +vt 0.5163 0.0903 +vt 0.5144 0.3517 +vt 0.3210 0.6311 +vt 0.3210 0.5265 +vt 0.1273 0.5265 +vt 0.1273 0.6311 +vt 0.2933 0.6311 +vt 0.2933 0.5265 +vt 0.1550 0.5265 +vt 0.1550 0.6311 +vt 0.2656 0.6311 +vt 0.2656 0.5265 +vt 0.1826 0.5265 +vt 0.1826 0.6311 +vt 0.2103 0.6311 +vt 0.2103 0.5265 +vt 0.2380 0.5265 +vt 0.2380 0.6311 +vt 0.6110 0.7086 +vt 0.6110 0.6947 +vt 0.6249 0.6947 +vt 0.6249 0.7086 +vt 0.5972 0.7086 +vt 0.5972 0.6947 +vt 0.6388 0.6947 +vt 0.6388 0.7086 +vt 0.6526 0.6947 +vt 0.6526 0.7086 +vt 0.5694 0.7086 +vt 0.5694 0.6947 +vt 0.5833 0.6947 +vt 0.5833 0.7086 +vt 0.6110 0.7086 +vt 0.6110 0.6947 +vt 0.6249 0.6947 +vt 0.6249 0.7086 +vt 0.5972 0.7086 +vt 0.5972 0.6947 +vt 0.6388 0.6947 +vt 0.6388 0.7086 +vt 0.6526 0.6947 +vt 0.6526 0.7086 +vt 0.5694 0.7086 +vt 0.5694 0.6947 +vt 0.5833 0.6947 +vt 0.5833 0.7086 +vt 0.6110 0.7086 +vt 0.6110 0.6947 +vt 0.6249 0.6947 +vt 0.6249 0.7086 +vt 0.5972 0.7086 +vt 0.5972 0.6947 +vt 0.6388 0.6947 +vt 0.6388 0.7086 +vt 0.6526 0.6947 +vt 0.6526 0.7086 +vt 0.5694 0.7086 +vt 0.5694 0.6947 +vt 0.5833 0.6947 +vt 0.5833 0.7086 +vt 0.6110 0.7086 +vt 0.6110 0.6947 +vt 0.6249 0.6947 +vt 0.6249 0.7086 +vt 0.5972 0.7086 +vt 0.5972 0.6947 +vt 0.6388 0.6947 +vt 0.6388 0.7086 +vt 0.6526 0.6947 +vt 0.6526 0.7086 +vt 0.5694 0.7086 +vt 0.5694 0.6947 +vt 0.5833 0.6947 +vt 0.5833 0.7086 +vt 0.6110 0.7086 +vt 0.6110 0.6947 +vt 0.6249 0.6947 +vt 0.6249 0.7086 +vt 0.5972 0.7086 +vt 0.5972 0.6947 +vt 0.6388 0.6947 +vt 0.6388 0.7086 +vt 0.6526 0.6947 +vt 0.6526 0.7086 +vt 0.5694 0.7086 +vt 0.5694 0.6947 +vt 0.5833 0.6947 +vt 0.5833 0.7086 +vt 0.6110 0.7086 +vt 0.6110 0.6947 +vt 0.6249 0.6947 +vt 0.6249 0.7086 +vt 0.5972 0.7086 +vt 0.5972 0.6947 +vt 0.6388 0.6947 +vt 0.6388 0.7086 +vt 0.6526 0.6947 +vt 0.6526 0.7086 +vt 0.5694 0.7086 +vt 0.5694 0.6947 +vt 0.5833 0.6947 +vt 0.5833 0.7086 +vt 0.6110 0.7086 +vt 0.6110 0.6947 +vt 0.6249 0.6947 +vt 0.6249 0.7086 +vt 0.5972 0.7086 +vt 0.5972 0.6947 +vt 0.6388 0.6947 +vt 0.6388 0.7086 +vt 0.6526 0.6947 +vt 0.6526 0.7086 +vt 0.5694 0.7086 +vt 0.5694 0.6947 +vt 0.5833 0.6947 +vt 0.5833 0.7086 +vt 0.6110 0.7086 +vt 0.6110 0.6947 +vt 0.6249 0.6947 +vt 0.6249 0.7086 +vt 0.5972 0.7086 +vt 0.5972 0.6947 +vt 0.6388 0.6947 +vt 0.6388 0.7086 +vt 0.6526 0.6947 +vt 0.6526 0.7086 +vt 0.5694 0.7086 +vt 0.5694 0.6947 +vt 0.5833 0.6947 +vt 0.5833 0.7086 +vt 0.2934 0.3516 +vt 0.2955 0.0896 +vt 0.3231 0.0897 +vt 0.3210 0.3516 +vt 0.0731 0.0889 +vt 0.1011 0.0889 +vt 0.0998 0.3516 +vt 0.0719 0.3516 +vt 0.3763 0.3517 +vt 0.3784 0.0899 +vt 0.4060 0.0900 +vt 0.4039 0.3517 +vt 0.3508 0.0898 +vt 0.3486 0.3516 +vt 0.5438 0.0904 +vt 0.5419 0.3518 +vt 0.2657 0.3516 +vt 0.2678 0.0895 +vt 0.5695 0.3518 +vt 0.5713 0.0904 +vt 0.5988 0.0905 +vt 0.5971 0.3519 +vt 0.4316 0.3517 +vt 0.4336 0.0901 +vt 0.4612 0.0901 +vt 0.4592 0.3517 +vt 0.1289 0.0890 +vt 0.1567 0.0891 +vt 0.1552 0.3516 +vt 0.1276 0.3516 +vt 0.6530 0.6311 +vt 0.6530 0.5265 +vt 0.8188 0.0907 +vt 0.8463 0.0908 +vt 0.8458 0.3521 +vt 0.8182 0.3521 +vt 0.6537 0.0905 +vt 0.6812 0.0905 +vt 0.6799 0.3520 +vt 0.6523 0.3520 +vt 0.7353 0.3521 +vt 0.7363 0.0906 +vt 0.7638 0.0906 +vt 0.7629 0.3521 +vt 0.7913 0.0906 +vt 0.7905 0.3521 +vt 0.7076 0.3521 +vt 0.7088 0.0905 +vt 0.0451 0.0889 +vt 0.0441 0.3515 +vt 0.6110 0.7086 +vt 0.6110 0.6947 +vt 0.6249 0.6947 +vt 0.6249 0.7086 +vt 0.5972 0.7086 +vt 0.5972 0.6947 +vt 0.6388 0.6947 +vt 0.6388 0.7086 +vt 0.6526 0.6947 +vt 0.6526 0.7086 +vt 0.5694 0.7086 +vt 0.5694 0.6947 +vt 0.5833 0.6947 +vt 0.5833 0.7086 +vt 0.6110 0.7086 +vt 0.6110 0.6947 +vt 0.6249 0.6947 +vt 0.6249 0.7086 +vt 0.5972 0.7086 +vt 0.5972 0.6947 +vt 0.6388 0.6947 +vt 0.6388 0.7086 +vt 0.6526 0.6947 +vt 0.6526 0.7086 +vt 0.5694 0.7086 +vt 0.5694 0.6947 +vt 0.5833 0.6947 +vt 0.5833 0.7086 +vt 0.6110 0.7086 +vt 0.6110 0.6947 +vt 0.6249 0.6947 +vt 0.6249 0.7086 +vt 0.5972 0.7086 +vt 0.5972 0.6947 +vt 0.6388 0.6947 +vt 0.6388 0.7086 +vt 0.6526 0.6947 +vt 0.6526 0.7086 +vt 0.5694 0.7086 +vt 0.5694 0.6947 +vt 0.5833 0.6947 +vt 0.5833 0.7086 +vt 0.6110 0.7086 +vt 0.6110 0.6947 +vt 0.6249 0.6947 +vt 0.6249 0.7086 +vt 0.5972 0.7086 +vt 0.5972 0.6947 +vt 0.6388 0.6947 +vt 0.6388 0.7086 +vt 0.6526 0.6947 +vt 0.6526 0.7086 +vt 0.5694 0.7086 +vt 0.5694 0.6947 +vt 0.5833 0.6947 +vt 0.5833 0.7086 +vt 0.6110 0.7086 +vt 0.6110 0.6947 +vt 0.6249 0.6947 +vt 0.6249 0.7086 +vt 0.5972 0.7086 +vt 0.5972 0.6947 +vt 0.6388 0.6947 +vt 0.6388 0.7086 +vt 0.6526 0.6947 +vt 0.6526 0.7086 +vt 0.5694 0.7086 +vt 0.5694 0.6947 +vt 0.5833 0.6947 +vt 0.5833 0.7086 +vt 0.6110 0.7086 +vt 0.6110 0.6947 +vt 0.6249 0.6947 +vt 0.6249 0.7086 +vt 0.5972 0.7086 +vt 0.5972 0.6947 +vt 0.6388 0.6947 +vt 0.6388 0.7086 +vt 0.6526 0.6947 +vt 0.6526 0.7086 +vt 0.5694 0.7086 +vt 0.5694 0.6947 +vt 0.5833 0.6947 +vt 0.5833 0.7086 +vt 0.6110 0.7086 +vt 0.6110 0.6947 +vt 0.6249 0.6947 +vt 0.6249 0.7086 +vt 0.5972 0.7086 +vt 0.5972 0.6947 +vt 0.6388 0.6947 +vt 0.6388 0.7086 +vt 0.6526 0.6947 +vt 0.6526 0.7086 +vt 0.5694 0.7086 +vt 0.5694 0.6947 +vt 0.5833 0.6947 +vt 0.5833 0.7086 +vt 0.6110 0.7086 +vt 0.6110 0.6947 +vt 0.6249 0.6947 +vt 0.6249 0.7086 +vt 0.5972 0.7086 +vt 0.5972 0.6947 +vt 0.6388 0.6947 +vt 0.6388 0.7086 +vt 0.6526 0.6947 +vt 0.6526 0.7086 +vt 0.5694 0.7086 +vt 0.5694 0.6947 +vt 0.5833 0.6947 +vt 0.5833 0.7086 +vt 0.8732 0.3520 +vt 0.9003 0.3518 +vt 0.2381 0.3516 +vt 0.1828 0.3516 +vt 0.6247 0.3519 +vt 0.2105 0.3516 +vt 0.7611 0.6510 +vt 0.7387 0.6510 +vt 0.5674 0.6510 +vt 0.5450 0.6510 +vt 0.5950 0.6510 +vt 0.5727 0.6510 +vt 0.5120 0.6510 +vt 0.4897 0.6510 +vt 0.4567 0.6510 +vt 0.4343 0.6510 +vt 0.4844 0.6510 +vt 0.4620 0.6510 +vt 0.5397 0.6510 +vt 0.5173 0.6510 +vt 0.6227 0.6510 +vt 0.6004 0.6510 +vt 0.6504 0.6510 +vt 0.6280 0.6510 +vt 0.6780 0.6510 +vt 0.6557 0.6510 +vt 0.7057 0.6510 +vt 0.6834 0.6510 +vt 0.7334 0.6510 +vt 0.7110 0.6510 +vt 0.7887 0.6510 +vt 0.7664 0.6510 +vt 0.8164 0.6510 +vt 0.7940 0.6510 +vt 0.8441 0.6510 +vt 0.8217 0.6510 +vt 0.8717 0.6510 +vt 0.8494 0.6510 +vt 0.4290 0.6510 +vt 0.4067 0.6510 +vt 0.4013 0.6510 +vt 0.3790 0.6510 +vt 0.0693 0.6510 +vt 0.0469 0.6510 +vt 0.8994 0.6510 +vt 0.8771 0.6510 +vt 0.0416 0.6510 +vt 0.0193 0.6510 +vt 0.0970 0.6510 +vt 0.0746 0.6510 +vt 0.1246 0.6510 +vt 0.1023 0.6510 +vt 0.1523 0.6510 +vt 0.1300 0.6510 +vt 0.1800 0.6510 +vt 0.1576 0.6510 +vt 0.2353 0.6510 +vt 0.2130 0.6510 +vt 0.2630 0.6510 +vt 0.2406 0.6510 +vt 0.2907 0.6510 +vt 0.2683 0.6510 +vt 0.3183 0.6510 +vt 0.2960 0.6510 +vt 0.3460 0.6510 +vt 0.3236 0.6510 +vt 0.3737 0.6510 +vt 0.3513 0.6510 +vt 0.2076 0.6510 +vt 0.1853 0.6510 +vt 0.9001 0.0912 +vt 0.8734 0.0909 +vt 0.0167 0.3513 +vt 0.2401 0.0894 +vt 0.1845 0.0892 +vt 0.6263 0.0905 +vt 0.2123 0.0893 +vt 0.0173 0.0891 +vn 0.0000 -1.0000 0.0000 +vn -0.0000 1.0000 0.0000 +vn -0.2113 0.6857 -0.6965 +vn -0.2113 -0.6857 -0.6965 +vn -0.3431 -0.6857 -0.6419 +vn -0.3431 0.6857 -0.6419 +vn -0.0713 0.6857 -0.7244 +vn -0.0713 -0.6857 -0.7244 +vn 0.0713 0.6857 -0.7244 +vn 0.0713 -0.6857 -0.7244 +vn 0.2113 0.6857 -0.6965 +vn 0.2113 -0.6857 -0.6965 +vn 0.3431 0.6857 -0.6419 +vn 0.3431 -0.6857 -0.6419 +vn 0.4617 0.6857 -0.5626 +vn 0.4617 -0.6857 -0.5626 +vn 0.5626 0.6857 -0.4617 +vn 0.5626 -0.6857 -0.4617 +vn 0.6419 0.6857 -0.3431 +vn 0.6419 -0.6857 -0.3431 +vn 0.6965 0.6857 -0.2113 +vn 0.6965 -0.6857 -0.2113 +vn 0.7244 0.6857 -0.0713 +vn 0.7244 -0.6857 -0.0713 +vn 0.7244 0.6857 0.0713 +vn 0.7244 -0.6857 0.0713 +vn 0.6965 0.6857 0.2113 +vn 0.6965 -0.6857 0.2113 +vn 0.6419 0.6857 0.3431 +vn 0.6419 -0.6857 0.3431 +vn 0.5626 0.6857 0.4617 +vn 0.5626 -0.6857 0.4617 +vn 0.4617 0.6857 0.5626 +vn 0.4617 -0.6857 0.5626 +vn 0.3431 0.6857 0.6419 +vn 0.3431 -0.6857 0.6419 +vn 0.2113 0.6857 0.6965 +vn 0.2113 -0.6857 0.6965 +vn 0.0713 0.6857 0.7244 +vn 0.0713 -0.6857 0.7244 +vn -0.0713 0.6857 0.7244 +vn -0.0713 -0.6857 0.7244 +vn -0.2113 0.6857 0.6965 +vn -0.2113 -0.6857 0.6965 +vn -0.4617 0.6857 0.5626 +vn -0.4617 -0.6857 0.5626 +vn -0.3431 -0.6857 0.6419 +vn -0.3431 0.6857 0.6419 +vn -0.5626 0.6857 0.4617 +vn -0.5626 -0.6857 0.4617 +vn -0.6419 0.6857 0.3431 +vn -0.6419 -0.6857 0.3431 +vn -0.6965 0.6857 0.2113 +vn -0.6965 -0.6857 0.2113 +vn -0.7244 0.6857 0.0713 +vn -0.7244 -0.6857 0.0713 +vn -0.6965 0.6857 -0.2113 +vn -0.6965 -0.6857 -0.2113 +vn -0.7244 -0.6857 -0.0713 +vn -0.7244 0.6857 -0.0713 +vn -0.6419 0.6857 -0.3431 +vn -0.6419 -0.6857 -0.3431 +vn -0.5626 0.6857 -0.4617 +vn -0.5626 -0.6857 -0.4617 +vn -0.8614 0.2147 0.4604 +vn -0.8658 0.1903 0.4628 +vn -0.9395 0.1903 0.2850 +vn -0.9346 0.2147 0.2835 +vn -0.9720 0.2147 0.0957 +vn -0.9770 0.1903 0.0962 +vn -0.9720 0.2147 -0.0957 +vn -0.9770 0.1903 -0.0962 +vn -0.9346 0.2147 -0.2835 +vn -0.9395 0.1903 -0.2850 +vn -0.8614 0.2147 -0.4604 +vn -0.8658 0.1903 -0.4628 +vn -0.7550 0.2147 -0.6196 +vn -0.7589 0.1903 -0.6228 +vn -0.6228 0.1903 -0.7589 +vn -0.6196 0.2147 -0.7550 +vn -0.4604 0.2147 -0.8614 +vn -0.4628 0.1903 -0.8658 +vn -0.2835 0.2147 -0.9346 +vn -0.2850 0.1903 -0.9395 +vn -0.0957 0.2147 -0.9720 +vn -0.0962 0.1903 -0.9770 +vn 0.0962 0.1903 -0.9770 +vn 0.0957 0.2147 -0.9720 +vn 0.2850 0.1903 -0.9395 +vn 0.2835 0.2147 -0.9346 +vn 0.4604 0.2147 -0.8614 +vn 0.4628 0.1903 -0.8658 +vn 0.6228 0.1903 -0.7589 +vn 0.6196 0.2147 -0.7550 +vn 0.7589 0.1903 -0.6228 +vn 0.7550 0.2147 -0.6196 +vn 0.8614 0.2147 -0.4604 +vn 0.8658 0.1903 -0.4628 +vn 0.9395 0.1903 -0.2850 +vn 0.9346 0.2147 -0.2835 +vn 0.9720 0.2147 -0.0957 +vn 0.9770 0.1903 -0.0962 +vn 0.9770 0.1903 0.0962 +vn 0.9720 0.2147 0.0957 +vn 0.9346 0.2147 0.2835 +vn 0.9395 0.1903 0.2850 +vn 0.8658 0.1903 0.4628 +vn 0.8614 0.2147 0.4604 +vn 0.7589 0.1903 0.6228 +vn 0.7550 0.2147 0.6196 +vn 0.6228 0.1903 0.7589 +vn 0.6196 0.2147 0.7550 +vn 0.4628 0.1903 0.8658 +vn 0.4604 0.2147 0.8614 +vn 0.2850 0.1903 0.9395 +vn 0.2835 0.2147 0.9346 +vn 0.0962 0.1903 0.9770 +vn 0.0957 0.2147 0.9720 +vn -0.2835 0.2147 0.9346 +vn -0.0957 0.2147 0.9720 +vn -0.0962 0.1903 0.9770 +vn -0.2850 0.1903 0.9395 +vn -0.6196 0.2147 0.7550 +vn -0.4604 0.2147 0.8614 +vn -0.4628 0.1903 0.8658 +vn -0.6228 0.1903 0.7589 +vn -0.7550 0.2147 0.6196 +vn -0.7589 0.1903 0.6228 +vn 0.5083 -0.5983 -0.6193 +vn 0.5019 0.6115 -0.6116 +vn 0.6116 0.6115 -0.5019 +vn 0.6193 -0.5983 -0.5083 +vn 0.7974 -0.5983 0.0785 +vn 0.7874 0.6115 0.0775 +vn 0.7571 0.6115 0.2297 +vn 0.7667 -0.5983 0.2326 +vn 0.2326 -0.5983 -0.7667 +vn 0.2297 0.6115 -0.7571 +vn 0.3730 0.6115 -0.6978 +vn 0.3777 -0.5983 -0.7066 +vn 0.0785 -0.5983 -0.7974 +vn 0.0775 0.6115 -0.7874 +vn 0.7066 -0.5983 0.3777 +vn 0.6978 0.6115 0.3730 +vn 0.6116 0.6115 0.5019 +vn 0.6193 -0.5983 0.5083 +vn -0.0785 -0.5983 -0.7974 +vn -0.0775 0.6115 -0.7874 +vn 0.5019 0.6115 0.6116 +vn 0.5083 -0.5983 0.6193 +vn -0.2326 -0.5983 -0.7667 +vn -0.2297 0.6115 -0.7571 +vn -0.4617 -0.6857 -0.5626 +vn -0.4617 0.6857 -0.5626 +vn 0.3730 0.6115 0.6978 +vn 0.3777 -0.5983 0.7066 +vn -0.3777 -0.5983 -0.7066 +vn -0.3730 0.6115 -0.6978 +vn 0.2297 0.6115 0.7571 +vn 0.2326 -0.5983 0.7667 +vn -0.5083 -0.5983 -0.6193 +vn -0.5019 0.6115 -0.6116 +vn 0.0785 -0.5983 0.7974 +vn 0.0775 0.6115 0.7874 +vn -0.0775 0.6115 0.7874 +vn -0.0785 -0.5983 0.7974 +vn -0.6193 -0.5983 -0.5083 +vn -0.6116 0.6115 -0.5019 +vn -0.7066 -0.5983 -0.3777 +vn -0.6978 0.6115 -0.3730 +vn 0.7667 -0.5983 -0.2326 +vn 0.7571 0.6115 -0.2297 +vn 0.7874 0.6115 -0.0775 +vn 0.7974 -0.5983 -0.0785 +vn -0.2297 0.6115 0.7571 +vn -0.2326 -0.5983 0.7667 +vn -0.9917 0.0833 -0.0977 +vn -0.9952 0.0000 -0.0980 +vn -0.9569 0.0000 -0.2903 +vn -0.9536 0.0833 -0.2893 +vn -0.7667 -0.5983 -0.2326 +vn -0.7571 0.6115 -0.2297 +vn -0.3730 0.6115 0.6978 +vn -0.3777 -0.5983 0.7066 +vn -0.7974 -0.5983 -0.0785 +vn -0.7874 0.6115 -0.0775 +vn -0.5019 0.6115 0.6116 +vn -0.5083 -0.5983 0.6193 +vn -0.7974 -0.5983 0.0785 +vn -0.7874 0.6115 0.0775 +vn -0.6116 0.6115 0.5019 +vn -0.6193 -0.5983 0.5083 +vn -0.7066 -0.5983 0.3777 +vn -0.6978 0.6115 0.3730 +vn -0.7571 0.6115 0.2297 +vn -0.7667 -0.5983 0.2326 +vn -0.3032 0.6100 -0.7321 +vn -0.3827 0.0000 -0.9239 +vn -0.9914 0.0000 -0.1305 +vn -0.7856 0.6100 -0.1034 +vn 0.4824 0.6100 -0.6287 +vn 0.6088 0.0000 -0.7933 +vn -0.6088 0.0000 0.7933 +vn -0.4824 0.6100 0.6287 +vn 0.3827 0.0000 0.9239 +vn 0.3032 0.6100 0.7321 +vn 0.9914 0.0000 0.1305 +vn 0.7856 0.6100 0.1034 +vn -0.7321 0.6100 -0.3032 +vn -0.9239 0.0000 -0.3827 +vn -0.7933 0.0000 0.6088 +vn -0.6287 0.6100 0.4824 +vn -0.1034 0.6100 -0.7856 +vn -0.1305 0.0000 -0.9914 +vn 0.1305 0.0000 0.9914 +vn 0.1034 0.6100 0.7856 +vn 0.9239 0.0000 0.3827 +vn 0.7321 0.6100 0.3032 +vn 0.7933 0.0000 -0.6088 +vn 0.6287 0.6100 -0.4824 +vn -0.7321 0.6100 0.3032 +vn -0.9239 0.0000 0.3827 +vn -0.1305 0.0000 0.9914 +vn -0.1034 0.6100 0.7856 +vn -0.6287 0.6100 -0.4824 +vn -0.7933 0.0000 -0.6088 +vn 0.7933 0.0000 0.6088 +vn 0.6287 0.6100 0.4824 +vn 0.9239 0.0000 -0.3827 +vn 0.7321 0.6100 -0.3032 +vn 0.1305 0.0000 -0.9914 +vn 0.1034 0.6100 -0.7856 +vn -0.3032 0.6100 0.7321 +vn -0.3827 0.0000 0.9239 +vn 0.6088 0.0000 0.7933 +vn 0.4824 0.6100 0.6287 +vn -0.7856 0.6100 0.1034 +vn -0.9914 0.0000 0.1305 +vn 0.9914 0.0000 -0.1305 +vn 0.7856 0.6100 -0.1034 +vn 0.3827 0.0000 -0.9239 +vn 0.3032 0.6100 -0.7321 +vn -0.6088 0.0000 -0.7933 +vn -0.4824 0.6100 -0.6287 +vn -0.2893 0.0833 0.9536 +vn -0.2903 0.0000 0.9569 +vn -0.4714 0.0000 0.8819 +vn -0.4697 0.0833 0.8788 +vn 0.9569 0.0000 0.2903 +vn 0.8819 0.0000 0.4714 +vn 0.8788 0.0833 0.4697 +vn 0.9536 0.0833 0.2893 +vn -0.7703 0.0833 0.6322 +vn -0.7730 0.0000 0.6344 +vn -0.8819 0.0000 0.4714 +vn -0.8788 0.0833 0.4697 +vn -0.6344 0.0000 0.7730 +vn -0.6322 0.0833 0.7703 +vn -0.8819 0.0000 -0.4714 +vn -0.8788 0.0833 -0.4697 +vn -0.0977 0.0833 0.9917 +vn -0.0980 0.0000 0.9952 +vn -0.7703 0.0833 -0.6322 +vn -0.7730 0.0000 -0.6344 +vn -0.6344 0.0000 -0.7730 +vn -0.6322 0.0833 -0.7703 +vn -0.9536 0.0833 0.2893 +vn -0.9569 0.0000 0.2903 +vn -0.9952 0.0000 0.0980 +vn -0.9917 0.0833 0.0977 +vn 0.7730 0.0000 0.6344 +vn 0.6344 0.0000 0.7730 +vn 0.6322 0.0833 0.7703 +vn 0.7703 0.0833 0.6322 +vn 0.7066 -0.5983 -0.3777 +vn 0.6978 0.6115 -0.3730 +vn 0.7730 0.0000 -0.6344 +vn 0.8819 0.0000 -0.4714 +vn 0.8788 0.0833 -0.4697 +vn 0.7703 0.0833 -0.6322 +vn -0.2903 0.0000 -0.9569 +vn -0.0980 0.0000 -0.9952 +vn -0.0977 0.0833 -0.9917 +vn -0.2893 0.0833 -0.9536 +vn 0.2893 0.0833 -0.9536 +vn 0.2903 0.0000 -0.9569 +vn 0.4714 0.0000 -0.8819 +vn 0.4697 0.0833 -0.8788 +vn 0.6344 0.0000 -0.7730 +vn 0.6322 0.0833 -0.7703 +vn 0.0977 0.0833 -0.9917 +vn 0.0980 0.0000 -0.9952 +vn 0.9952 0.0000 0.0980 +vn 0.9917 0.0833 0.0977 +vn -0.5603 0.6100 -0.5603 +vn -0.7071 0.0000 -0.7071 +vn -0.9659 0.0000 0.2588 +vn -0.7654 0.6100 0.2051 +vn 0.2051 0.6100 -0.7654 +vn 0.2588 0.0000 -0.9659 +vn -0.2588 0.0000 0.9659 +vn -0.2051 0.6100 0.7654 +vn 0.7071 0.0000 0.7071 +vn 0.5603 0.6100 0.5603 +vn 0.9659 0.0000 -0.2588 +vn 0.7654 0.6100 -0.2051 +vn -0.7924 0.6100 0.0000 +vn -1.0000 0.0000 0.0000 +vn -0.5000 0.0000 0.8660 +vn -0.3962 0.6100 0.6862 +vn -0.3962 0.6100 -0.6862 +vn -0.5000 0.0000 -0.8660 +vn 0.5000 0.0000 0.8660 +vn 0.3962 0.6100 0.6862 +vn 1.0000 0.0000 0.0000 +vn 0.7924 0.6100 0.0000 +vn 0.5000 0.0000 -0.8660 +vn 0.3962 0.6100 -0.6862 +vn -0.5603 0.6100 0.5603 +vn -0.7071 0.0000 0.7071 +vn 0.2588 0.0000 0.9659 +vn 0.2051 0.6100 0.7654 +vn -0.7654 0.6100 -0.2051 +vn -0.9659 0.0000 -0.2588 +vn 0.9659 0.0000 0.2588 +vn 0.7654 0.6100 0.2051 +vn 0.7071 0.0000 -0.7071 +vn 0.5603 0.6100 -0.5603 +vn -0.2588 0.0000 -0.9659 +vn -0.2051 0.6100 -0.7654 +vn 0.0000 0.6100 0.7924 +vn 0.0000 0.0000 1.0000 +vn 0.8660 0.0000 0.5000 +vn 0.6862 0.6100 0.3962 +vn -0.6862 0.6100 0.3962 +vn -0.8660 0.0000 0.5000 +vn 0.8660 0.0000 -0.5000 +vn 0.6862 0.6100 -0.3962 +vn 0.0000 0.0000 -1.0000 +vn 0.0000 0.6100 -0.7924 +vn -0.8660 0.0000 -0.5000 +vn -0.6862 0.6100 -0.3962 +vn 0.9536 0.0833 -0.2893 +vn 0.9917 0.0833 -0.0977 +vn 0.0977 0.0833 0.9917 +vn 0.4697 0.0833 0.8788 +vn -0.4697 0.0833 -0.8788 +vn 0.2893 0.0833 0.9536 +vn 0.2269 -0.9715 0.0688 +vn 0.2360 -0.9715 0.0232 +vn 0.1118 -0.9715 -0.2091 +vn 0.0688 -0.9715 -0.2269 +vn 0.1504 -0.9715 -0.1833 +vn 0.0232 -0.9715 -0.2360 +vn -0.0232 -0.9715 -0.2360 +vn -0.0688 -0.9715 -0.2269 +vn -0.1118 -0.9715 -0.2091 +vn 0.1833 -0.9715 -0.1504 +vn 0.2091 -0.9715 -0.1118 +vn 0.2269 -0.9715 -0.0688 +vn 0.2360 -0.9715 -0.0232 +vn 0.2091 -0.9715 0.1118 +vn 0.1833 -0.9715 0.1504 +vn 0.1504 -0.9715 0.1833 +vn 0.1118 -0.9715 0.2091 +vn -0.1504 -0.9715 -0.1833 +vn -0.1833 -0.9715 -0.1504 +vn -0.0232 -0.9715 0.2360 +vn 0.0232 -0.9715 0.2360 +vn 0.0688 -0.9715 0.2269 +vn -0.0688 -0.9715 0.2269 +vn -0.1118 -0.9715 0.2091 +vn -0.1504 -0.9715 0.1833 +vn -0.1833 -0.9715 0.1504 +vn -0.2269 -0.9715 0.0688 +vn -0.2091 -0.9715 0.1118 +vn -0.2360 -0.9715 0.0232 +vn -0.2360 -0.9715 -0.0232 +vn -0.2269 -0.9715 -0.0688 +vn -0.2091 -0.9715 -0.1118 +vn 0.9952 0.0000 -0.0980 +vn 0.9569 0.0000 -0.2903 +vn 0.0980 0.0000 0.9952 +vn 0.4714 0.0000 0.8819 +vn -0.4714 0.0000 -0.8819 +vn 0.2903 0.0000 0.9569 +g Pipe_Cylinder.002_None +s off +f 393/1/1 402/2/1 406/3/1 410/4/1 414/5/1 420/6/1 418/7/1 423/8/1 428/9/1 432/10/1 436/11/1 440/12/1 446/13/1 447/14/1 444/15/1 442/16/1 438/17/1 434/18/1 430/19/1 425/20/1 421/21/1 415/22/1 412/23/1 407/24/1 404/25/1 399/26/1 396/27/1 398/28/1 392/29/1 386/30/1 388/31/1 390/32/1 +f 65/33/2 68/34/2 69/35/2 70/36/2 71/37/2 72/38/2 +f 77/39/2 80/40/2 81/41/2 82/42/2 83/43/2 84/44/2 +f 89/45/2 92/46/2 93/47/2 94/48/2 95/49/2 96/50/2 +f 101/51/2 104/52/2 105/53/2 106/54/2 107/55/2 108/56/2 +f 113/57/2 116/58/2 117/59/2 118/60/2 119/61/2 120/62/2 +f 125/63/2 128/64/2 129/65/2 130/66/2 131/67/2 132/68/2 +f 137/69/2 140/70/2 141/71/2 142/72/2 143/73/2 144/74/2 +f 149/75/2 152/76/2 153/77/2 154/78/2 155/79/2 156/80/2 +f 193/81/2 194/82/2 224/83/2 223/84/2 221/85/2 222/86/2 220/87/2 219/88/2 218/89/2 217/90/2 215/91/2 216/92/2 214/93/2 213/94/2 212/95/2 211/96/2 210/97/2 209/98/2 208/99/2 207/100/2 206/101/2 205/102/2 204/103/2 203/104/2 202/105/2 201/106/2 200/107/2 199/108/2 198/109/2 197/110/2 196/111/2 195/112/2 +f 172/113/1 189/114/1 173/115/1 174/116/1 175/117/1 176/118/1 177/119/1 190/120/1 178/121/1 179/122/1 180/123/1 191/124/1 181/125/1 192/126/1 182/127/1 183/128/1 184/129/1 185/130/1 186/131/1 161/132/1 162/133/1 163/134/1 164/135/1 165/136/1 166/137/1 167/138/1 168/139/1 169/140/1 187/141/1 170/142/1 188/143/1 171/144/1 +f 226/145/2 225/146/2 230/147/2 233/148/2 232/149/2 235/150/2 237/151/2 239/152/2 241/153/2 243/154/2 245/155/2 247/156/2 249/157/2 252/158/2 250/159/2 254/160/2 253/161/2 255/162/2 256/163/2 251/164/2 248/165/2 246/166/2 244/167/2 242/168/2 240/169/2 238/170/2 236/171/2 234/172/2 231/173/2 229/174/2 228/175/2 227/176/2 +f 257/177/2 260/178/2 261/179/2 262/180/2 263/181/2 264/182/2 +f 269/183/2 272/184/2 273/185/2 274/186/2 275/187/2 276/188/2 +f 281/189/2 284/190/2 285/191/2 286/192/2 287/193/2 288/194/2 +f 293/195/2 296/196/2 297/197/2 298/198/2 299/199/2 300/200/2 +f 305/201/2 308/202/2 309/203/2 310/204/2 311/205/2 312/206/2 +f 317/207/2 320/208/2 321/209/2 322/210/2 323/211/2 324/212/2 +f 329/213/2 332/214/2 333/215/2 334/216/2 335/217/2 336/218/2 +f 341/219/2 344/220/2 345/221/2 346/222/2 347/223/2 348/224/2 +s 1 +f 196/225/3 163/226/4 162/227/5 195/228/6 +f 197/229/7 164/230/8 163/226/4 196/225/3 +f 198/231/9 165/232/10 164/230/8 197/229/7 +f 199/233/11 166/234/12 165/232/10 198/231/9 +f 200/235/13 167/236/14 166/234/12 199/233/11 +f 201/237/15 168/238/16 167/236/14 200/235/13 +f 202/239/17 169/240/18 168/238/16 201/237/15 +f 203/241/19 187/242/20 169/240/18 202/239/17 +f 204/243/21 170/244/22 187/242/20 203/241/19 +f 205/245/23 188/246/24 170/244/22 204/243/21 +f 206/247/25 171/248/26 188/246/24 205/245/23 +f 207/249/27 172/250/28 171/248/26 206/247/25 +f 208/251/29 189/252/30 172/250/28 207/249/27 +f 209/253/31 173/254/32 189/252/30 208/251/29 +f 210/255/33 174/256/34 173/254/32 209/253/31 +f 211/257/35 175/258/36 174/256/34 210/255/33 +f 212/259/37 176/260/38 175/261/36 211/262/35 +f 213/263/39 177/264/40 176/260/38 212/259/37 +f 214/265/41 190/266/42 177/264/40 213/263/39 +f 216/267/43 178/268/44 190/266/42 214/265/41 +f 217/269/45 180/270/46 179/271/47 215/272/48 +f 215/272/48 179/271/47 178/268/44 216/267/43 +f 218/273/49 191/274/50 180/270/46 217/269/45 +f 219/275/51 181/276/52 191/274/50 218/273/49 +f 220/277/53 192/278/54 181/276/52 219/275/51 +f 222/279/55 182/280/56 192/278/54 220/277/53 +f 223/281/57 184/282/58 183/283/59 221/284/60 +f 221/284/60 183/283/59 182/280/56 222/279/55 +f 224/285/61 185/286/62 184/282/58 223/281/57 +f 194/287/63 186/288/64 185/286/62 224/285/61 +f 30/289/65 33/290/66 34/291/67 1/292/68 +f 2/293/69 1/292/68 34/291/67 35/294/70 +f 3/295/71 2/293/69 35/294/70 36/296/72 +f 4/297/73 3/295/71 36/296/72 37/298/74 +f 5/299/75 4/297/73 37/298/74 38/300/76 +f 6/301/77 5/299/75 38/300/76 39/302/78 +f 6/301/77 39/302/78 40/303/79 7/304/80 +f 8/305/81 7/304/80 40/303/79 41/306/82 +f 9/307/83 8/305/81 41/306/82 42/308/84 +f 10/309/85 9/307/83 42/308/84 43/310/86 +f 10/309/85 43/310/86 44/311/87 11/312/88 +f 11/312/88 44/311/87 45/313/89 31/314/90 +f 12/315/91 46/316/92 47/317/93 13/318/94 +f 31/314/90 45/313/89 46/316/92 12/315/91 +f 13/318/94 47/317/93 48/319/95 14/320/96 +f 15/321/97 14/320/96 48/319/95 49/322/98 +f 15/321/97 49/322/98 50/323/99 16/324/100 +f 17/325/101 16/324/100 50/323/99 51/326/102 +f 17/327/101 51/328/102 52/329/103 18/330/104 +f 19/331/105 18/330/104 52/329/103 53/332/106 +f 19/331/105 53/332/106 54/333/107 20/334/108 +f 20/334/108 54/333/107 55/335/109 22/336/110 +f 22/336/110 55/335/109 56/337/111 21/338/112 +f 21/338/112 56/337/111 57/339/113 23/340/114 +f 23/340/114 57/339/113 58/341/115 24/342/116 +f 24/342/116 58/341/115 59/343/117 32/344/118 +f 27/345/119 25/346/120 60/347/121 61/348/122 +f 25/346/120 32/344/118 59/343/117 60/347/121 +f 28/349/123 26/350/124 62/351/125 63/352/126 +f 27/345/119 61/348/122 62/351/125 26/350/124 +f 29/353/127 28/349/123 63/352/126 64/354/128 +f 29/353/127 64/354/128 33/290/66 30/289/65 +f 397/355/129 230/356/130 225/357/131 391/358/132 +f 394/359/133 229/360/134 231/361/135 401/362/136 +f 400/363/137 232/364/138 233/365/139 395/366/140 +f 403/367/141 235/368/142 232/364/138 400/363/137 +f 395/366/140 233/365/139 230/356/130 397/355/129 +f 405/369/143 234/370/144 236/371/145 409/372/146 +f 408/373/147 237/374/148 235/368/142 403/367/141 +f 409/372/146 236/371/145 238/375/149 413/376/150 +f 411/377/151 239/378/152 237/374/148 408/373/147 +f 195/228/6 162/227/5 161/379/153 193/380/154 +f 413/376/150 238/375/149 240/381/155 419/382/156 +f 416/383/157 241/384/158 239/378/152 411/377/151 +f 419/382/156 240/381/155 242/385/159 417/386/160 +f 422/387/161 243/388/162 241/384/158 416/383/157 +f 424/389/163 244/390/164 246/391/165 427/392/166 +f 426/393/167 245/394/168 243/388/162 422/387/161 +f 417/395/160 242/396/159 244/390/164 424/389/163 +f 429/397/169 247/398/170 245/394/168 426/393/167 +f 387/399/171 227/400/172 228/401/173 389/402/174 +f 427/392/166 246/391/165 248/403/175 431/404/176 +f 476/405/177 374/406/178 368/407/179 473/408/180 +f 433/409/181 249/410/182 247/398/170 429/397/169 +f 431/404/176 248/403/175 251/411/183 435/412/184 +f 437/413/185 252/414/186 249/410/182 433/409/181 +f 435/412/184 251/411/183 256/415/187 439/416/188 +f 401/362/136 231/361/135 234/370/144 405/369/143 +f 441/417/189 250/418/190 252/414/186 437/413/185 +f 439/416/188 256/415/187 255/419/191 445/420/192 +f 389/402/174 228/401/173 229/360/134 394/359/133 +f 448/421/193 253/422/194 254/423/195 443/424/196 +f 443/424/196 254/423/195 250/418/190 441/417/189 +f 445/420/192 255/419/191 253/422/194 448/421/193 +f 65/425/197 66/426/198 67/427/199 68/428/200 +f 72/429/201 73/430/202 66/426/198 65/425/197 +f 68/428/200 67/427/199 74/431/203 69/432/204 +f 69/432/204 74/431/203 75/433/205 70/434/206 +f 70/435/206 75/436/205 76/437/207 71/438/208 +f 71/438/208 76/437/207 73/430/202 72/429/201 +f 77/439/209 78/440/210 79/441/211 80/442/212 +f 84/443/213 85/444/214 78/440/210 77/439/209 +f 80/442/212 79/441/211 86/445/215 81/446/216 +f 81/446/216 86/445/215 87/447/217 82/448/218 +f 82/449/218 87/450/217 88/451/219 83/452/220 +f 83/452/220 88/451/219 85/444/214 84/443/213 +f 89/453/221 90/454/222 91/455/223 92/456/224 +f 96/457/225 97/458/226 90/454/222 89/453/221 +f 92/456/224 91/455/223 98/459/227 93/460/228 +f 93/460/228 98/459/227 99/461/229 94/462/230 +f 94/463/230 99/464/229 100/465/231 95/466/232 +f 95/466/232 100/465/231 97/458/226 96/457/225 +f 101/467/233 102/468/234 103/469/235 104/470/236 +f 108/471/237 109/472/238 102/468/234 101/467/233 +f 104/470/236 103/469/235 110/473/239 105/474/240 +f 105/474/240 110/473/239 111/475/241 106/476/242 +f 106/477/242 111/478/241 112/479/243 107/480/244 +f 107/480/244 112/479/243 109/472/238 108/471/237 +f 113/481/206 114/482/205 115/483/207 116/484/208 +f 120/485/204 121/486/203 114/482/205 113/481/206 +f 116/484/208 115/483/207 122/487/202 117/488/201 +f 117/488/201 122/487/202 123/489/198 118/490/197 +f 118/491/197 123/492/198 124/493/199 119/494/200 +f 119/494/200 124/493/199 121/486/203 120/485/204 +f 125/495/218 126/496/217 127/497/219 128/498/220 +f 132/499/216 133/500/215 126/496/217 125/495/218 +f 128/498/220 127/497/219 134/501/214 129/502/213 +f 129/502/213 134/501/214 135/503/210 130/504/209 +f 130/505/209 135/506/210 136/507/211 131/508/212 +f 131/508/212 136/507/211 133/500/215 132/499/216 +f 137/509/230 138/510/229 139/511/231 140/512/232 +f 144/513/228 145/514/227 138/510/229 137/509/230 +f 140/512/232 139/511/231 146/515/226 141/516/225 +f 141/516/225 146/515/226 147/517/222 142/518/221 +f 142/519/221 147/520/222 148/521/223 143/522/224 +f 143/522/224 148/521/223 145/514/227 144/513/228 +f 149/523/242 150/524/241 151/525/243 152/526/244 +f 156/527/240 157/528/239 150/524/241 149/523/242 +f 152/526/244 151/525/243 158/529/238 153/530/237 +f 153/530/237 158/529/238 159/531/234 154/532/233 +f 154/533/233 159/534/234 160/535/235 155/536/236 +f 155/536/236 160/535/235 157/528/239 156/527/240 +f 478/537/245 379/538/246 372/539/247 475/540/248 +f 373/541/249 354/542/250 464/543/251 463/544/252 +f 470/545/253 360/546/254 380/547/255 479/548/256 +f 475/540/248 372/539/247 369/549/257 458/550/258 +f 473/408/180 368/407/179 356/551/259 468/552/260 +f 466/553/261 353/554/262 379/538/246 478/537/245 +f 369/549/257 360/546/254 470/545/253 458/550/258 +f 480/555/263 382/556/264 378/557/265 449/558/266 +f 472/559/267 367/560/268 355/561/269 467/562/270 +f 366/563/271 377/564/272 454/565/273 465/566/274 +f 354/542/250 366/563/271 465/566/274 464/543/251 +f 385/567/275 226/568/276 227/400/172 387/399/171 +f 193/380/154 161/379/153 186/288/64 194/287/63 +f 365/569/277 362/570/278 460/571/279 452/572/280 +f 467/562/270 355/561/269 374/406/178 476/405/177 +f 359/573/281 375/574/282 459/575/283 451/576/284 +f 477/577/285 376/578/286 370/579/287 474/580/288 +f 474/580/288 370/579/287 364/581/289 471/582/290 +f 469/583/291 358/584/292 376/578/286 477/577/285 +f 361/585/293 373/541/249 463/544/252 462/586/294 +f 257/587/295 258/588/296 259/589/297 260/590/298 +f 264/591/299 265/592/300 258/588/296 257/587/295 +f 260/590/298 259/589/297 266/593/301 261/594/302 +f 261/594/302 266/593/301 267/595/303 262/596/304 +f 262/597/304 267/598/303 268/599/305 263/600/306 +f 263/600/306 268/599/305 265/592/300 264/591/299 +f 269/601/307 270/602/308 271/603/309 272/604/310 +f 276/605/311 277/606/312 270/602/308 269/601/307 +f 272/604/310 271/603/309 278/607/313 273/608/314 +f 273/608/314 278/607/313 279/609/315 274/610/316 +f 274/611/316 279/612/315 280/613/317 275/614/318 +f 275/614/318 280/613/317 277/606/312 276/605/311 +f 281/615/319 282/616/320 283/617/321 284/618/322 +f 288/619/323 289/620/324 282/616/320 281/615/319 +f 284/618/322 283/617/321 290/621/325 285/622/326 +f 285/622/326 290/621/325 291/623/327 286/624/328 +f 286/625/328 291/626/327 292/627/329 287/628/330 +f 287/628/330 292/627/329 289/620/324 288/619/323 +f 293/629/331 294/630/332 295/631/333 296/632/334 +f 300/633/335 301/634/336 294/630/332 293/629/331 +f 296/632/334 295/631/333 302/635/337 297/636/338 +f 297/636/338 302/635/337 303/637/339 298/638/340 +f 298/639/340 303/640/339 304/641/341 299/642/342 +f 299/642/342 304/641/341 301/634/336 300/633/335 +f 305/643/304 306/644/303 307/645/305 308/646/306 +f 312/647/302 313/648/301 306/644/303 305/643/304 +f 308/646/306 307/645/305 314/649/300 309/650/299 +f 309/650/299 314/649/300 315/651/296 310/652/295 +f 310/653/295 315/654/296 316/655/297 311/656/298 +f 311/656/298 316/655/297 313/648/301 312/647/302 +f 317/657/316 318/658/315 319/659/317 320/660/318 +f 324/661/314 325/662/313 318/658/315 317/657/316 +f 320/660/318 319/659/317 326/663/312 321/664/311 +f 321/664/311 326/663/312 327/665/308 322/666/307 +f 322/667/307 327/668/308 328/669/309 323/670/310 +f 323/670/310 328/669/309 325/662/313 324/661/314 +f 329/671/328 330/672/327 331/673/329 332/674/330 +f 336/675/326 337/676/325 330/672/327 329/671/328 +f 332/674/330 331/673/329 338/677/324 333/678/323 +f 333/678/323 338/677/324 339/679/320 334/680/319 +f 334/681/319 339/682/320 340/683/321 335/684/322 +f 335/684/322 340/683/321 337/676/325 336/675/326 +f 341/685/340 342/686/339 343/687/341 344/688/342 +f 348/689/338 349/690/337 342/686/339 341/685/340 +f 344/688/342 343/687/341 350/691/336 345/692/335 +f 345/692/335 350/691/336 351/693/332 346/694/331 +f 346/695/331 351/696/332 352/697/333 347/698/334 +f 347/698/334 352/697/333 349/690/337 348/689/338 +f 479/548/256 380/547/255 367/560/268 472/559/267 +f 468/552/260 356/551/259 382/556/264 480/555/263 +f 453/699/343 461/700/344 51/326/102 50/323/99 +f 457/701/345 466/553/261 60/347/121 59/343/117 +f 460/571/279 453/699/343 50/323/99 49/322/98 +f 454/565/273 455/702/346 57/339/113 56/337/111 +f 450/703/347 451/576/284 42/308/84 41/306/82 +f 456/704/348 457/701/345 59/343/117 58/341/115 +f 459/575/283 469/583/291 44/311/87 43/310/86 +f 455/702/346 456/704/348 58/341/115 57/339/113 +f 471/582/290 452/572/280 48/319/95 47/317/93 +f 449/558/266 450/703/347 41/306/82 40/303/79 +f 394/359/133 401/362/136 402/705/349 393/706/350 +f 400/363/137 395/366/140 396/707/351 399/708/352 +f 395/366/140 397/355/129 398/709/353 396/710/351 +f 408/373/147 403/367/141 404/711/354 407/712/355 +f 416/383/157 411/377/151 412/713/356 415/714/357 +f 411/377/151 408/373/147 407/715/355 412/716/356 +f 403/367/141 400/363/137 399/717/352 404/718/354 +f 397/355/129 391/358/132 392/719/358 398/720/353 +f 391/358/132 385/567/275 386/721/359 392/722/358 +f 385/567/275 387/399/171 388/723/360 386/724/359 +f 387/399/171 389/402/174 390/725/361 388/726/360 +f 389/402/174 394/359/133 393/727/350 390/728/361 +f 401/362/136 405/369/143 406/729/362 402/730/349 +f 405/369/143 409/372/146 410/731/363 406/732/362 +f 409/372/146 413/376/150 414/733/364 410/734/363 +f 413/376/150 419/382/156 420/735/365 414/736/364 +f 422/387/161 416/383/157 415/737/357 421/738/366 +f 426/393/167 422/387/161 421/739/366 425/740/367 +f 424/389/163 427/392/166 428/741/368 423/742/369 +f 419/382/156 417/386/160 418/743/370 420/744/365 +f 417/395/160 424/389/163 423/745/369 418/746/370 +f 427/392/166 431/404/176 432/747/371 428/748/368 +f 431/404/176 435/412/184 436/749/372 432/750/371 +f 435/412/184 439/416/188 440/751/373 436/752/372 +f 439/416/188 445/420/192 446/753/374 440/754/373 +f 448/421/193 443/424/196 444/755/375 447/756/376 +f 443/424/196 441/417/189 442/757/377 444/758/375 +f 441/417/189 437/413/185 438/759/378 442/760/377 +f 437/413/185 433/409/181 434/761/379 438/762/378 +f 433/409/181 429/397/169 430/763/380 434/764/379 +f 429/397/169 426/393/167 425/765/367 430/766/380 +f 445/420/192 448/421/193 447/767/376 446/768/374 +f 391/358/132 225/357/131 226/568/276 385/567/275 +f 381/769/381 461/700/344 453/699/343 371/770/382 +f 36/296/72 476/405/177 473/408/180 37/298/74 +f 61/348/122 478/537/245 475/540/248 62/351/125 +f 54/333/107 53/332/106 463/544/252 464/543/251 +f 64/354/128 470/545/253 479/548/256 33/290/66 +f 62/351/125 475/540/248 458/550/258 63/352/126 +f 38/300/76 37/298/74 473/408/180 468/552/260 +f 61/348/122 60/347/121 466/553/261 478/537/245 +f 64/354/128 63/352/126 458/550/258 470/545/253 +f 39/302/78 480/555/263 449/558/266 40/303/79 +f 35/294/70 34/291/67 472/559/267 467/562/270 +f 55/335/109 465/566/274 454/565/273 56/337/111 +f 55/335/109 54/333/107 464/543/251 465/566/274 +f 49/322/98 48/319/95 452/572/280 460/571/279 +f 36/296/72 35/294/70 467/562/270 476/405/177 +f 43/310/86 42/308/84 451/576/284 459/575/283 +f 45/313/89 477/577/285 474/580/288 46/316/92 +f 46/316/92 474/580/288 471/582/290 47/317/93 +f 44/311/87 469/583/291 477/577/285 45/313/89 +f 52/329/103 462/586/294 463/544/252 53/332/106 +f 34/291/67 33/290/66 479/548/256 472/559/267 +f 38/300/76 468/552/260 480/555/263 39/302/78 +f 51/328/102 461/771/344 462/586/294 52/329/103 +f 466/553/261 457/701/345 363/772/383 353/554/262 +f 371/770/382 453/699/343 460/571/279 362/570/278 +f 383/773/384 455/702/346 454/565/273 377/564/272 +f 359/573/281 451/576/284 450/703/347 384/774/385 +f 363/772/383 457/701/345 456/704/348 357/775/386 +f 469/583/291 459/575/283 375/574/282 358/584/292 +f 357/775/386 456/704/348 455/702/346 383/773/384 +f 365/569/277 452/572/280 471/582/290 364/581/289 +f 384/774/385 450/703/347 449/558/266 378/557/265 +f 381/776/381 361/585/293 462/586/294 461/771/344 diff --git a/mods/pipeworks/models/pipeworks_fountainhead_lowpoly.obj b/mods/pipeworks/models/pipeworks_fountainhead_lowpoly.obj new file mode 100644 index 00000000..3ed1c777 --- /dev/null +++ b/mods/pipeworks/models/pipeworks_fountainhead_lowpoly.obj @@ -0,0 +1,194 @@ +# Blender v2.78 (sub 0) OBJ File: 'pipe-fountainhead-lowpoly.blend' +# www.blender.org +o Cylinder.000 +v -0.064721 -0.500000 0.156250 +v -0.064721 -0.468750 0.156250 +v -0.156250 -0.500000 0.064721 +v -0.156250 -0.468750 0.064721 +v -0.156250 -0.500000 -0.064721 +v -0.156250 -0.468750 -0.064721 +v -0.064721 -0.500000 -0.156250 +v -0.064721 -0.468750 -0.156250 +v 0.064721 -0.500000 -0.156250 +v 0.064721 -0.468750 -0.156250 +v 0.156250 -0.500000 -0.064721 +v 0.156250 -0.468750 -0.064721 +v 0.156250 -0.500000 0.064721 +v 0.156250 -0.468750 0.064721 +v 0.064721 -0.500000 0.156250 +v 0.064721 -0.468750 0.156250 +v -0.051777 -0.468750 0.125000 +v -0.051777 0.312500 0.125000 +v -0.125000 -0.468750 0.051777 +v -0.125000 0.312500 0.051777 +v -0.125000 -0.468750 -0.051777 +v -0.125000 0.312500 -0.051777 +v -0.051777 -0.468750 -0.125000 +v -0.051777 0.312500 -0.125000 +v 0.051777 -0.468750 -0.125000 +v 0.051777 0.312500 -0.125000 +v 0.125000 -0.468750 -0.051777 +v 0.125000 0.312500 -0.051777 +v 0.125000 -0.468750 0.051777 +v 0.125000 0.312500 0.051777 +v 0.051777 -0.468750 0.125000 +v 0.051777 0.312500 0.125000 +v -0.064721 0.312500 0.156250 +v -0.064721 0.500000 0.156250 +v -0.156250 0.312500 0.064721 +v -0.156250 0.500000 0.064721 +v -0.156250 0.312500 -0.064721 +v -0.156250 0.500000 -0.064721 +v -0.064721 0.312500 -0.156250 +v -0.064721 0.500000 -0.156250 +v 0.064721 0.312500 -0.156250 +v 0.064721 0.500000 -0.156250 +v 0.156250 0.312500 -0.064721 +v 0.156250 0.500000 -0.064721 +v 0.156250 0.312500 0.064721 +v 0.156250 0.500000 0.064721 +v 0.064721 0.312500 0.156250 +v 0.064721 0.500000 0.156250 +vt 0.6389 0.9028 +vt 0.5556 0.9861 +vt 0.4444 0.9861 +vt 0.3611 0.9028 +vt 0.3611 0.7917 +vt 0.4444 0.7083 +vt 0.5556 0.7083 +vt 0.6389 0.7917 +vt 0.2222 0.9861 +vt 0.3056 0.9028 +vt 0.3056 0.7917 +vt 0.2222 0.7083 +vt 0.1111 0.7083 +vt 0.0278 0.7917 +vt 0.0278 0.9028 +vt 0.1111 0.9861 +vt 0.9722 0.8958 +vt 0.8889 0.9792 +vt 0.7778 0.9792 +vt 0.6944 0.8958 +vt 0.6944 0.7847 +vt 0.7778 0.7014 +vt 0.8889 0.7014 +vt 0.9722 0.7847 +vt 0.5556 0.9861 +vt 0.6389 0.9028 +vt 0.6389 0.7917 +vt 0.5556 0.7083 +vt 0.4444 0.7083 +vt 0.3611 0.7917 +vt 0.3611 0.9028 +vt 0.4444 0.9861 +vt 0.5694 0.6389 +vt 0.5694 0.6111 +vt 0.6806 0.6111 +vt 0.6806 0.6389 +vt 0.7917 0.6111 +vt 0.7917 0.6389 +vt 0.9028 0.6111 +vt 0.9028 0.6389 +vt 0.0139 0.6389 +vt 0.0139 0.6111 +vt 0.1250 0.6111 +vt 0.1250 0.6389 +vt 0.2361 0.6111 +vt 0.2361 0.6389 +vt 0.3472 0.6111 +vt 0.3472 0.6389 +vt 0.4583 0.6111 +vt 0.4583 0.6389 +vt 0.6806 0.5972 +vt 0.6806 0.5139 +vt 0.7917 0.5139 +vt 0.7917 0.5972 +vt 0.5694 0.5972 +vt 0.5694 0.5139 +vt 0.9028 0.5139 +vt 0.9028 0.5972 +vt 0.0139 0.5972 +vt 0.0139 0.5139 +vt 0.1250 0.5139 +vt 0.1250 0.5972 +vt 0.2361 0.5139 +vt 0.2361 0.5972 +vt 0.3472 0.5139 +vt 0.3472 0.5972 +vt 0.4583 0.5139 +vt 0.4583 0.5972 +vt 0.0139 0.2361 +vt 0.0139 0.1806 +vt 0.9028 0.1806 +vt 0.9028 0.2361 +vt 0.0139 0.3472 +vt 0.0139 0.2917 +vt 0.9028 0.2917 +vt 0.9028 0.3472 +vt 0.0139 0.4028 +vt 0.9028 0.4028 +vt 0.9028 0.4583 +vt 0.0139 0.4583 +vt 0.9028 0.0694 +vt 0.9028 0.1250 +vt 0.0139 0.1250 +vt 0.0139 0.0694 +vt 0.9028 0.0139 +vt 0.0139 0.0139 +vn -0.0000 1.0000 0.0000 +vn 0.0000 -1.0000 0.0000 +vn -0.2971 -0.6302 0.7173 +vn -0.2971 0.6302 0.7173 +vn -0.7173 0.6302 0.2971 +vn -0.7173 -0.6302 0.2971 +vn -0.7173 0.6302 -0.2971 +vn -0.7173 -0.6302 -0.2971 +vn -0.2971 0.6302 -0.7173 +vn -0.2971 -0.6302 -0.7173 +vn 0.2971 0.6302 -0.7173 +vn 0.2971 -0.6302 -0.7173 +vn 0.7173 0.6302 -0.2971 +vn 0.7173 -0.6302 -0.2971 +vn 0.7173 0.6302 0.2971 +vn 0.7173 -0.6302 0.2971 +vn 0.2971 0.6302 0.7173 +vn 0.2971 -0.6302 0.7173 +vn 0.9239 0.0000 0.3827 +vn 0.3827 0.0000 0.9239 +vn 0.3827 0.0000 -0.9239 +vn 0.9239 0.0000 -0.3827 +vn -0.3827 0.0000 -0.9239 +vn -0.9239 0.0000 -0.3827 +vn -0.9239 0.0000 0.3827 +vn -0.3827 0.0000 0.9239 +g Cylinder.000_Cylinder.000_None +s off +f 4/1/1 2/2/1 16/3/1 14/4/1 12/5/1 10/6/1 8/7/1 6/8/1 +f 1/9/2 3/10/2 5/11/2 7/12/2 9/13/2 11/14/2 13/15/2 15/16/2 +f 36/17/1 34/18/1 48/19/1 46/20/1 44/21/1 42/22/1 40/23/1 38/24/1 +f 33/25/2 35/26/2 37/27/2 39/28/2 41/29/2 43/30/2 45/31/2 47/32/2 +s 1 +f 1/33/3 2/34/4 4/35/5 3/36/6 +f 3/36/6 4/35/5 6/37/7 5/38/8 +f 5/38/8 6/37/7 8/39/9 7/40/10 +f 7/41/10 8/42/9 10/43/11 9/44/12 +f 9/44/12 10/43/11 12/45/13 11/46/14 +f 11/46/14 12/45/13 14/47/15 13/48/16 +f 13/48/16 14/47/15 16/49/17 15/50/18 +f 15/50/18 16/49/17 2/34/4 1/33/3 +f 35/51/6 36/52/5 38/53/7 37/54/8 +f 33/55/3 34/56/4 36/52/5 35/51/6 +f 37/54/8 38/53/7 40/57/9 39/58/10 +f 39/59/10 40/60/9 42/61/11 41/62/12 +f 41/62/12 42/61/11 44/63/13 43/64/14 +f 43/64/14 44/63/13 46/65/15 45/66/16 +f 45/66/16 46/65/15 48/67/17 47/68/18 +f 47/68/18 48/67/17 34/56/4 33/55/3 +f 30/69/19 32/70/20 31/71/20 29/72/19 +f 26/73/21 28/74/22 27/75/22 25/76/21 +f 24/77/23 23/78/23 21/79/24 22/80/24 +f 30/69/19 29/72/19 27/75/22 28/74/22 +f 19/81/25 17/82/26 18/83/26 20/84/25 +f 21/85/24 19/81/25 20/84/25 22/86/24 +f 24/77/23 26/73/21 25/76/21 23/78/23 +f 17/82/26 31/71/20 32/70/20 18/83/26 diff --git a/mods/pipeworks/models/pipeworks_pipe_10.obj b/mods/pipeworks/models/pipeworks_pipe_10.obj new file mode 100644 index 00000000..ae862a2f --- /dev/null +++ b/mods/pipeworks/models/pipeworks_pipe_10.obj @@ -0,0 +1,7718 @@ +# Blender v2.78 (sub 0) OBJ File: 'pipe-master-highpoly.blend' +# www.blender.org +o Pipe_Cylinder.002 +v -0.468750 0.126770 0.038455 +v -0.468750 0.131837 0.012985 +v -0.468750 0.131837 -0.012984 +v -0.468750 0.126770 -0.038455 +v -0.468750 0.116832 -0.062448 +v -0.468750 0.102404 -0.084041 +v -0.468750 0.084041 -0.102404 +v -0.468750 0.062448 -0.116832 +v -0.468750 0.038455 -0.126770 +v -0.468750 0.012985 -0.131836 +v -0.468750 -0.012985 -0.131836 +v -0.468750 -0.062448 -0.116832 +v -0.468750 -0.084041 -0.102404 +v -0.468750 -0.102404 -0.084041 +v -0.468750 -0.116832 -0.062448 +v -0.468750 -0.126770 -0.038455 +v -0.468750 -0.131836 -0.012985 +v -0.468750 -0.131836 0.012985 +v -0.468750 -0.126770 0.038455 +v -0.468750 -0.116832 0.062448 +v -0.468750 -0.084041 0.102404 +v -0.468750 -0.102404 0.084041 +v -0.468750 -0.062448 0.116832 +v -0.468750 -0.038455 0.126770 +v -0.468750 0.012985 0.131837 +v -0.468750 0.062448 0.116832 +v -0.468750 0.038455 0.126770 +v -0.468750 0.084041 0.102404 +v -0.468750 0.102404 0.084041 +v -0.468750 0.116832 0.062448 +v -0.468750 -0.038455 -0.126770 +v -0.468750 -0.012985 0.131836 +v -0.437501 0.110774 0.059210 +v -0.437501 0.120197 0.036461 +v -0.437501 0.125000 0.012312 +v -0.437501 0.125001 -0.012311 +v -0.437501 0.120197 -0.036461 +v -0.437501 0.110774 -0.059210 +v -0.437501 0.097094 -0.079683 +v -0.437501 0.079683 -0.097094 +v -0.437501 0.059210 -0.110774 +v -0.437501 0.036461 -0.120197 +v -0.437501 0.012312 -0.125000 +v -0.437501 -0.012311 -0.125000 +v -0.437501 -0.036461 -0.120197 +v -0.437501 -0.059210 -0.110774 +v -0.437501 -0.079683 -0.097094 +v -0.437501 -0.097094 -0.079683 +v -0.437501 -0.110774 -0.059210 +v -0.437501 -0.120197 -0.036461 +v -0.437501 -0.125000 -0.012311 +v -0.437501 -0.125000 0.012311 +v -0.437501 -0.120197 0.036461 +v -0.437501 -0.110774 0.059210 +v -0.437501 -0.097094 0.079683 +v -0.437501 -0.079683 0.097094 +v -0.437501 -0.059210 0.110774 +v -0.437501 -0.036461 0.120197 +v -0.437501 -0.012311 0.125001 +v -0.437501 0.012311 0.125001 +v -0.437501 0.036461 0.120197 +v -0.437501 0.059210 0.110774 +v -0.437501 0.079683 0.097094 +v -0.437501 0.097094 0.079683 +v 0.437501 0.036461 -0.120197 +v 0.437501 0.012312 -0.125001 +v 0.437501 -0.012311 -0.125000 +v 0.437501 -0.036461 -0.120197 +v 0.437501 0.059210 -0.110774 +v 0.468750 0.012985 -0.131836 +v 0.468750 0.038455 -0.126770 +v 0.468750 -0.012985 -0.131836 +v 0.437501 -0.059210 -0.110774 +v 0.468750 -0.038455 -0.126770 +v 0.437501 0.079683 -0.097094 +v 0.468750 0.062448 -0.116832 +v 0.437501 -0.079683 -0.097094 +v 0.468750 -0.062448 -0.116832 +v 0.437501 0.097094 -0.079683 +v 0.468750 0.084041 -0.102404 +v 0.437501 -0.097094 -0.079683 +v 0.468750 -0.084041 -0.102404 +v 0.437501 0.110774 -0.059210 +v 0.468750 0.102404 -0.084041 +v 0.437501 -0.110774 -0.059210 +v 0.468750 -0.102404 -0.084041 +v 0.437501 0.120197 -0.036461 +v 0.468750 0.116832 -0.062448 +v 0.437501 -0.120197 -0.036461 +v 0.468750 -0.116832 -0.062448 +v 0.437501 0.125000 -0.012311 +v 0.468750 0.126770 -0.038455 +v 0.437501 -0.125001 -0.012311 +v 0.468750 -0.126770 -0.038455 +v 0.437501 0.125000 0.012312 +v 0.468750 0.131836 -0.012985 +v 0.437501 -0.125001 0.012311 +v 0.468750 -0.131837 -0.012985 +v 0.437501 0.120197 0.036461 +v 0.468750 0.131836 0.012985 +v 0.437501 -0.120197 0.036461 +v 0.468750 -0.131837 0.012985 +v 0.437501 0.110774 0.059210 +v 0.468750 0.126770 0.038455 +v 0.437501 -0.110774 0.059210 +v 0.468750 -0.126770 0.038455 +v 0.437501 0.097094 0.079683 +v 0.468750 0.116832 0.062448 +v 0.437501 -0.097094 0.079683 +v 0.468750 -0.116832 0.062448 +v 0.437501 0.079683 0.097094 +v 0.468750 0.102404 0.084041 +v 0.437501 -0.079683 0.097094 +v 0.468750 -0.102404 0.084041 +v 0.437501 0.059210 0.110774 +v 0.468750 0.084041 0.102404 +v 0.437501 -0.059210 0.110774 +v 0.468750 -0.084041 0.102404 +v 0.437501 0.036461 0.120197 +v 0.468750 0.062448 0.116832 +v 0.437501 -0.036461 0.120197 +v 0.468750 -0.062448 0.116832 +v 0.437501 0.012311 0.125000 +v 0.468750 0.038455 0.126770 +v 0.437501 -0.012311 0.125000 +v 0.468750 -0.038455 0.126770 +v 0.468750 0.012985 0.131837 +v 0.468750 -0.012985 0.131836 +v 0.460912 0.130078 0.063644 +v 0.468749 0.130078 0.063644 +v 0.468749 0.139022 0.062467 +v 0.460912 0.139022 0.062467 +v 0.460912 0.142474 0.054132 +v 0.460912 0.136982 0.046976 +v 0.460912 0.128039 0.048153 +v 0.460912 0.124587 0.056487 +v 0.468749 0.124587 0.056487 +v 0.468749 0.142474 0.054132 +v 0.468749 0.136982 0.046976 +v 0.468749 0.128039 0.048153 +v -0.460914 0.136982 0.046976 +v -0.468751 0.136982 0.046976 +v -0.468751 0.142474 0.054133 +v -0.460914 0.142474 0.054133 +v -0.460914 0.139022 0.062467 +v -0.460914 0.130078 0.063644 +v -0.460914 0.124587 0.056488 +v -0.460914 0.128039 0.048153 +v -0.468751 0.128039 0.048153 +v -0.468751 0.139022 0.062467 +v -0.468751 0.130078 0.063644 +v -0.468751 0.124587 0.056488 +v 0.460912 0.046976 0.136982 +v 0.468749 0.046976 0.136982 +v 0.468749 0.054133 0.142474 +v 0.460912 0.054133 0.142474 +v 0.460912 0.062467 0.139022 +v 0.460912 0.063644 0.130078 +v 0.460912 0.056488 0.124587 +v 0.460912 0.048154 0.128039 +v 0.468749 0.048154 0.128039 +v 0.468749 0.062467 0.139022 +v 0.468749 0.063644 0.130078 +v 0.468749 0.056488 0.124587 +v -0.460914 0.063644 0.130078 +v -0.468751 0.063644 0.130078 +v -0.468751 0.062467 0.139022 +v -0.460914 0.062467 0.139022 +v -0.460914 0.054133 0.142474 +v -0.460914 0.046976 0.136982 +v -0.460914 0.048153 0.128039 +v -0.460914 0.056487 0.124587 +v -0.468751 0.056487 0.124587 +v -0.468751 0.054133 0.142474 +v -0.468751 0.046976 0.136982 +v -0.468751 0.048153 0.128039 +v 0.460912 -0.063644 0.130078 +v 0.468749 -0.063644 0.130078 +v 0.468749 -0.062467 0.139022 +v 0.460912 -0.062467 0.139022 +v 0.460912 -0.054132 0.142474 +v 0.460912 -0.046976 0.136982 +v 0.460912 -0.048153 0.128039 +v 0.460912 -0.056487 0.124587 +v 0.468749 -0.056487 0.124587 +v 0.468749 -0.054132 0.142474 +v 0.468749 -0.046976 0.136982 +v 0.468749 -0.048153 0.128039 +v -0.460914 -0.046976 0.136982 +v -0.468751 -0.046976 0.136982 +v -0.468751 -0.054133 0.142474 +v -0.460914 -0.054133 0.142474 +v -0.460914 -0.062467 0.139022 +v -0.460914 -0.063644 0.130078 +v -0.460914 -0.056488 0.124587 +v -0.460914 -0.048153 0.128039 +v -0.468751 -0.048153 0.128039 +v -0.468751 -0.062467 0.139022 +v -0.468751 -0.063644 0.130078 +v -0.468751 -0.056488 0.124587 +v 0.460912 -0.136982 0.046976 +v 0.468749 -0.136982 0.046976 +v 0.468749 -0.142474 0.054133 +v 0.460912 -0.142474 0.054133 +v 0.460912 -0.139022 0.062467 +v 0.460912 -0.130078 0.063644 +v 0.460912 -0.124587 0.056488 +v 0.460912 -0.128039 0.048153 +v 0.468749 -0.128039 0.048153 +v 0.468749 -0.139022 0.062467 +v 0.468749 -0.130078 0.063644 +v 0.468749 -0.124587 0.056488 +v -0.460914 -0.130078 0.063644 +v -0.468751 -0.130078 0.063644 +v -0.468751 -0.139022 0.062467 +v -0.460914 -0.139022 0.062467 +v -0.460914 -0.142474 0.054133 +v -0.460914 -0.136982 0.046976 +v -0.460914 -0.128039 0.048153 +v -0.460914 -0.124587 0.056487 +v -0.468751 -0.124587 0.056487 +v -0.468751 -0.142474 0.054133 +v -0.468751 -0.136982 0.046976 +v -0.468751 -0.128039 0.048153 +v 0.460912 -0.130078 -0.063644 +v 0.468749 -0.130078 -0.063644 +v 0.468749 -0.139022 -0.062467 +v 0.460912 -0.139022 -0.062467 +v 0.460912 -0.142474 -0.054132 +v 0.460912 -0.136982 -0.046976 +v 0.460912 -0.128039 -0.048153 +v 0.460912 -0.124587 -0.056487 +v 0.468749 -0.124587 -0.056487 +v 0.468749 -0.142474 -0.054132 +v 0.468749 -0.136982 -0.046976 +v 0.468749 -0.128039 -0.048153 +v -0.460914 -0.136982 -0.046976 +v -0.468751 -0.136982 -0.046976 +v -0.468751 -0.142474 -0.054133 +v -0.460914 -0.142474 -0.054133 +v -0.460914 -0.139022 -0.062467 +v -0.460914 -0.130078 -0.063644 +v -0.460914 -0.124587 -0.056487 +v -0.460914 -0.128039 -0.048153 +v -0.468751 -0.128039 -0.048153 +v -0.468751 -0.139022 -0.062467 +v -0.468751 -0.130078 -0.063644 +v -0.468751 -0.124587 -0.056487 +v 0.460912 -0.046976 -0.136982 +v 0.468749 -0.046976 -0.136982 +v 0.468749 -0.054133 -0.142474 +v 0.460912 -0.054133 -0.142474 +v 0.460912 -0.062467 -0.139022 +v 0.460912 -0.063644 -0.130078 +v 0.460912 -0.056488 -0.124587 +v 0.460912 -0.048153 -0.128039 +v 0.468749 -0.048153 -0.128039 +v 0.468749 -0.062467 -0.139022 +v 0.468749 -0.063644 -0.130078 +v 0.468749 -0.056488 -0.124587 +v -0.460914 -0.063644 -0.130078 +v -0.468751 -0.063644 -0.130078 +v -0.468751 -0.062467 -0.139022 +v -0.460914 -0.062467 -0.139022 +v -0.460914 -0.054132 -0.142474 +v -0.460914 -0.046976 -0.136982 +v -0.460914 -0.048153 -0.128039 +v -0.460914 -0.056487 -0.124587 +v -0.468751 -0.056487 -0.124587 +v -0.468751 -0.054132 -0.142474 +v -0.468751 -0.046976 -0.136982 +v -0.468751 -0.048153 -0.128039 +v 0.460912 0.063644 -0.130078 +v 0.468749 0.063644 -0.130078 +v 0.468749 0.062467 -0.139022 +v 0.460912 0.062467 -0.139022 +v 0.460912 0.054132 -0.142474 +v 0.460912 0.046976 -0.136982 +v 0.460912 0.048153 -0.128039 +v 0.460912 0.056487 -0.124587 +v 0.468749 0.056487 -0.124587 +v 0.468749 0.054132 -0.142474 +v 0.468749 0.046976 -0.136982 +v 0.468749 0.048153 -0.128039 +v -0.460914 0.046976 -0.136982 +v -0.468751 0.046976 -0.136982 +v -0.468751 0.054133 -0.142474 +v -0.460914 0.054133 -0.142474 +v -0.460914 0.062467 -0.139022 +v -0.460914 0.063644 -0.130078 +v -0.460914 0.056487 -0.124587 +v -0.460914 0.048153 -0.128039 +v -0.468751 0.048153 -0.128039 +v -0.468751 0.062467 -0.139022 +v -0.468751 0.063644 -0.130078 +v -0.468751 0.056487 -0.124587 +v 0.460912 0.136982 -0.046976 +v 0.468749 0.136982 -0.046976 +v 0.468749 0.142474 -0.054133 +v 0.460912 0.142474 -0.054133 +v 0.460912 0.139022 -0.062467 +v 0.460912 0.130078 -0.063644 +v 0.460912 0.124587 -0.056488 +v 0.460912 0.128039 -0.048153 +v 0.468749 0.128039 -0.048153 +v 0.468749 0.139022 -0.062467 +v 0.468749 0.130078 -0.063644 +v 0.468749 0.124587 -0.056488 +v -0.460914 0.130078 -0.063644 +v -0.468751 0.130078 -0.063644 +v -0.468751 0.139022 -0.062467 +v -0.460914 0.139022 -0.062467 +v -0.460914 0.142474 -0.054133 +v -0.460914 0.136982 -0.046976 +v -0.460914 0.128039 -0.048153 +v -0.460914 0.124587 -0.056487 +v -0.468751 0.124587 -0.056487 +v -0.468751 0.142474 -0.054133 +v -0.468751 0.136982 -0.046976 +v -0.468751 0.128039 -0.048153 +v -0.097094 -0.097094 -0.079683 +v -0.120197 -0.120197 -0.036461 +v 0.110774 0.110774 -0.059210 +v 0.120197 0.120197 -0.036461 +v 0.125000 -0.125001 -0.012311 +v 0.110774 -0.110774 0.059210 +v 0.097094 -0.097094 0.079683 +v -0.088389 -0.088389 -0.088389 +v 0.110774 -0.110774 -0.059210 +v 0.125001 0.125001 -0.012311 +v -0.120197 0.120197 0.036461 +v 0.110774 0.110774 0.059210 +v -0.125001 0.012311 -0.125000 +v -0.120197 0.036461 -0.120197 +v -0.097094 0.079683 0.097094 +v -0.110774 0.059210 0.110774 +v 0.110774 0.059210 0.110774 +v -0.120197 0.036461 0.120197 +v 0.120197 0.036461 0.120197 +v -0.125000 0.012311 0.125000 +v 0.125001 0.012311 0.125000 +v -0.125000 -0.012311 0.125000 +v -0.120197 -0.036461 0.120197 +v 0.120197 -0.036461 0.120197 +v -0.110774 -0.059210 -0.110774 +v 0.125000 -0.012311 0.125000 +v 0.125000 -0.012311 -0.125000 +v 0.110774 -0.059210 0.110774 +v 0.097094 -0.079683 0.097094 +v -0.500000 0.099603 -0.121367 +v -0.500000 0.074012 -0.138467 +v -0.500000 0.045577 -0.150245 +v -0.500000 0.015390 -0.156250 +v -0.500000 -0.015389 -0.156250 +v -0.500000 -0.045576 -0.150245 +v -0.500000 -0.074012 -0.138467 +v -0.500000 -0.099603 -0.121367 +v -0.500000 -0.121367 -0.099603 +v -0.500000 -0.150245 -0.045576 +v -0.500000 -0.156250 0.015389 +v -0.500000 -0.150245 0.045576 +v -0.500000 -0.121367 0.099603 +v -0.500000 -0.099603 0.121367 +v -0.500000 -0.074012 0.138467 +v -0.500000 -0.045576 0.150245 +v -0.500000 -0.015389 0.156250 +v -0.500000 0.045576 0.150245 +v -0.500000 0.074012 0.138467 +v -0.500000 0.099603 0.121367 +v -0.500000 0.138467 0.074012 +v -0.500000 0.156250 0.015389 +v -0.500000 0.156250 -0.015389 +v -0.500000 0.150245 -0.045576 +v -0.500000 0.138467 -0.074012 +v -0.500000 0.121367 -0.099603 +v -0.500000 -0.138466 -0.074012 +v -0.500000 -0.156250 -0.015389 +v -0.500000 -0.138467 0.074012 +v -0.500000 0.015389 0.156250 +v -0.500000 0.121367 0.099603 +v -0.500000 0.150245 0.045576 +v -0.468750 0.099603 -0.121367 +v -0.468750 0.121367 -0.099603 +v -0.468750 0.074012 -0.138467 +v -0.468750 0.045577 -0.150245 +v -0.468750 0.015390 -0.156250 +v -0.468750 -0.015389 -0.156250 +v -0.468750 -0.045576 -0.150245 +v -0.468750 -0.074012 -0.138467 +v -0.468750 -0.099603 -0.121367 +v -0.468750 -0.121367 -0.099603 +v -0.468750 -0.138466 -0.074012 +v -0.468750 -0.150245 -0.045576 +v -0.468750 -0.156250 -0.015389 +v -0.468750 -0.156250 0.015389 +v -0.468750 -0.150245 0.045576 +v -0.468750 -0.138467 0.074012 +v -0.468750 -0.121367 0.099603 +v -0.468750 -0.099603 0.121367 +v -0.468750 -0.074012 0.138467 +v -0.468750 -0.045576 0.150245 +v -0.468750 -0.015389 0.156250 +v -0.468750 0.015389 0.156250 +v -0.468750 0.074012 0.138467 +v -0.468750 0.045576 0.150245 +v -0.468750 0.099603 0.121367 +v -0.468750 0.121367 0.099603 +v -0.468750 0.138467 0.074012 +v -0.468750 0.150245 0.045576 +v -0.468750 0.156250 -0.015389 +v -0.468750 0.156250 0.015389 +v -0.468750 0.150245 -0.045576 +v -0.468750 0.138467 -0.074012 +v 0.468750 -0.138466 -0.074012 +v 0.468750 -0.150245 -0.045576 +v 0.468750 -0.156250 -0.015389 +v 0.468750 -0.121367 -0.099603 +v 0.468750 -0.156250 0.015389 +v 0.468750 -0.074012 -0.138467 +v 0.468750 -0.099603 -0.121367 +v 0.500000 -0.121367 -0.099603 +v 0.500000 -0.138467 -0.074012 +v 0.500000 -0.150245 -0.045576 +v 0.500000 -0.156250 -0.015389 +v 0.500000 -0.156250 0.015389 +v 0.468750 -0.045576 -0.150245 +v 0.500000 -0.099603 -0.121367 +v 0.468750 -0.150245 0.045576 +v 0.500000 -0.150245 0.045576 +v 0.468750 -0.015389 -0.156250 +v 0.500000 -0.045576 -0.150245 +v 0.500000 -0.074012 -0.138467 +v 0.468750 -0.138467 0.074012 +v 0.500000 -0.138467 0.074012 +v 0.468750 0.015389 -0.156250 +v 0.500000 -0.015389 -0.156250 +v 0.468750 -0.121367 0.099603 +v 0.500000 -0.121367 0.099603 +v 0.468750 0.045576 -0.150245 +v 0.500000 0.015389 -0.156250 +v 0.468750 -0.099603 0.121367 +v 0.500000 -0.099603 0.121367 +v 0.468750 0.074012 -0.138467 +v 0.500000 0.045576 -0.150245 +v 0.468750 -0.045576 0.150245 +v 0.468750 -0.074012 0.138467 +v 0.500000 -0.074012 0.138467 +v 0.468750 0.099603 -0.121367 +v 0.500000 0.074012 -0.138467 +v 0.468750 -0.015389 0.156250 +v 0.500000 -0.045576 0.150245 +v 0.468750 0.121367 -0.099603 +v 0.500000 0.099603 -0.121367 +v 0.468750 0.015389 0.156250 +v 0.500000 -0.015389 0.156250 +v 0.468750 0.138466 -0.074012 +v 0.500000 0.121367 -0.099603 +v 0.468750 0.045576 0.150245 +v 0.500000 0.015389 0.156250 +v 0.468750 0.150245 -0.045577 +v 0.500000 0.138466 -0.074012 +v 0.468750 0.074012 0.138467 +v 0.500000 0.045576 0.150245 +v 0.468750 0.156249 -0.015389 +v 0.500000 0.150245 -0.045577 +v 0.500000 0.156250 0.015389 +v 0.468750 0.099603 0.121367 +v 0.500000 0.074012 0.138467 +v 0.468750 0.156250 0.015389 +v 0.500000 0.156250 -0.015389 +v 0.500000 0.138467 0.074012 +v 0.500000 0.150245 0.045576 +v 0.500000 0.121367 0.099603 +v 0.500000 0.099603 0.121367 +v 0.468750 0.150245 0.045576 +v 0.468750 0.121367 0.099603 +v 0.468750 0.138467 0.074012 +v 0.460912 0.095821 0.108578 +v 0.468749 0.095821 0.108578 +v 0.468749 0.104534 0.110913 +v 0.460912 0.104534 0.110913 +v 0.460912 0.110913 0.104534 +v 0.460912 0.108578 0.095821 +v 0.460912 0.099865 0.093486 +v 0.460912 0.093486 0.099865 +v 0.468749 0.093486 0.099865 +v 0.468749 0.110913 0.104534 +v 0.468749 0.108578 0.095821 +v 0.468749 0.099865 0.093486 +v -0.460914 0.108578 0.095821 +v -0.468751 0.108578 0.095821 +v -0.468751 0.110913 0.104534 +v -0.460914 0.110913 0.104534 +v -0.460914 0.104534 0.110913 +v -0.460914 0.095821 0.108578 +v -0.460914 0.093486 0.099865 +v -0.460914 0.099865 0.093486 +v -0.468751 0.099865 0.093486 +v -0.468751 0.104534 0.110913 +v -0.468751 0.095821 0.108578 +v -0.468751 0.093486 0.099865 +v 0.460912 -0.009021 0.144532 +v 0.468749 -0.009021 0.144532 +v 0.468749 -0.004510 0.152344 +v 0.460912 -0.004510 0.152344 +v 0.460912 0.004510 0.152344 +v 0.460912 0.009021 0.144532 +v 0.460912 0.004510 0.136720 +v 0.460912 -0.004510 0.136720 +v 0.468749 -0.004510 0.136720 +v 0.468749 0.004510 0.152344 +v 0.468749 0.009021 0.144532 +v 0.468749 0.004510 0.136720 +v -0.460914 0.009021 0.144532 +v -0.468751 0.009021 0.144532 +v -0.468751 0.004510 0.152344 +v -0.460914 0.004510 0.152344 +v -0.460914 -0.004510 0.152344 +v -0.460914 -0.009021 0.144532 +v -0.460914 -0.004510 0.136720 +v -0.460914 0.004510 0.136720 +v -0.468751 0.004510 0.136720 +v -0.468751 -0.004510 0.152344 +v -0.468751 -0.009021 0.144532 +v -0.468751 -0.004510 0.136720 +v 0.460912 -0.108578 0.095821 +v 0.468749 -0.108578 0.095821 +v 0.468749 -0.110913 0.104534 +v 0.460912 -0.110913 0.104534 +v 0.460912 -0.104534 0.110913 +v 0.460912 -0.095821 0.108578 +v 0.460912 -0.093486 0.099865 +v 0.460912 -0.099865 0.093486 +v 0.468749 -0.099865 0.093486 +v 0.468749 -0.104534 0.110913 +v 0.468749 -0.095821 0.108578 +v 0.468749 -0.093486 0.099865 +v -0.460914 -0.095821 0.108578 +v -0.468751 -0.095821 0.108578 +v -0.468751 -0.104534 0.110913 +v -0.460914 -0.104534 0.110913 +v -0.460914 -0.110913 0.104534 +v -0.460914 -0.108578 0.095821 +v -0.460914 -0.099865 0.093486 +v -0.460914 -0.093486 0.099865 +v -0.468751 -0.093486 0.099865 +v -0.468751 -0.110913 0.104534 +v -0.468751 -0.108578 0.095821 +v -0.468751 -0.099865 0.093486 +v 0.460912 -0.144532 -0.009021 +v 0.468749 -0.144532 -0.009021 +v 0.468749 -0.152344 -0.004510 +v 0.460912 -0.152344 -0.004510 +v 0.460912 -0.152344 0.004511 +v 0.460912 -0.144532 0.009021 +v 0.460912 -0.136720 0.004510 +v 0.460912 -0.136720 -0.004510 +v 0.468749 -0.136720 -0.004510 +v 0.468749 -0.152344 0.004511 +v 0.468749 -0.144532 0.009021 +v 0.468749 -0.136720 0.004510 +v -0.460914 -0.144532 0.009021 +v -0.468751 -0.144532 0.009021 +v -0.468751 -0.152344 0.004510 +v -0.460914 -0.152344 0.004510 +v -0.460914 -0.152344 -0.004510 +v -0.460914 -0.144532 -0.009021 +v -0.460914 -0.136720 -0.004510 +v -0.460914 -0.136720 0.004510 +v -0.468751 -0.136720 0.004510 +v -0.468751 -0.152344 -0.004510 +v -0.468751 -0.144532 -0.009021 +v -0.468751 -0.136720 -0.004510 +v 0.460912 -0.095821 -0.108578 +v 0.468749 -0.095821 -0.108578 +v 0.468749 -0.104534 -0.110913 +v 0.460912 -0.104534 -0.110913 +v 0.460912 -0.110913 -0.104534 +v 0.460912 -0.108578 -0.095821 +v 0.460912 -0.099865 -0.093486 +v 0.460912 -0.093486 -0.099865 +v 0.468749 -0.093486 -0.099865 +v 0.468749 -0.110913 -0.104534 +v 0.468749 -0.108578 -0.095821 +v 0.468749 -0.099865 -0.093486 +v -0.460914 -0.108578 -0.095821 +v -0.468751 -0.108578 -0.095821 +v -0.468751 -0.110913 -0.104534 +v -0.460914 -0.110913 -0.104534 +v -0.460914 -0.104534 -0.110913 +v -0.460914 -0.095821 -0.108578 +v -0.460914 -0.093486 -0.099865 +v -0.460914 -0.099865 -0.093486 +v -0.468751 -0.099865 -0.093486 +v -0.468751 -0.104534 -0.110913 +v -0.468751 -0.095821 -0.108578 +v -0.468751 -0.093486 -0.099865 +v 0.460912 0.009021 -0.144532 +v 0.468749 0.009021 -0.144532 +v 0.468749 0.004510 -0.152344 +v 0.460912 0.004510 -0.152344 +v 0.460912 -0.004510 -0.152344 +v 0.460912 -0.009021 -0.144532 +v 0.460912 -0.004510 -0.136720 +v 0.460912 0.004510 -0.136720 +v 0.468749 0.004510 -0.136720 +v 0.468749 -0.004510 -0.152344 +v 0.468749 -0.009021 -0.144532 +v 0.468749 -0.004510 -0.136720 +v -0.460914 -0.009021 -0.144532 +v -0.468751 -0.009021 -0.144532 +v -0.468751 -0.004510 -0.152344 +v -0.460914 -0.004510 -0.152344 +v -0.460914 0.004510 -0.152344 +v -0.460914 0.009021 -0.144532 +v -0.460914 0.004510 -0.136720 +v -0.460914 -0.004510 -0.136720 +v -0.468751 -0.004510 -0.136720 +v -0.468751 0.004510 -0.152344 +v -0.468751 0.009021 -0.144532 +v -0.468751 0.004510 -0.136720 +v 0.460912 0.108578 -0.095821 +v 0.468749 0.108578 -0.095821 +v 0.468749 0.110913 -0.104534 +v 0.460912 0.110913 -0.104534 +v 0.460912 0.104534 -0.110913 +v 0.460912 0.095821 -0.108578 +v 0.460912 0.093486 -0.099865 +v 0.460912 0.099865 -0.093486 +v 0.468749 0.099865 -0.093486 +v 0.468749 0.104534 -0.110913 +v 0.468749 0.095821 -0.108578 +v 0.468749 0.093486 -0.099865 +v -0.460914 0.095821 -0.108578 +v -0.468751 0.095821 -0.108578 +v -0.468751 0.104534 -0.110913 +v -0.460914 0.104534 -0.110913 +v -0.460914 0.110913 -0.104534 +v -0.460914 0.108578 -0.095821 +v -0.460914 0.099865 -0.093486 +v -0.460914 0.093486 -0.099865 +v -0.468751 0.093486 -0.099865 +v -0.468751 0.110913 -0.104534 +v -0.468751 0.108578 -0.095821 +v -0.468751 0.099865 -0.093486 +v 0.460912 0.144532 0.009021 +v 0.468749 0.144532 0.009021 +v 0.468749 0.152344 0.004510 +v 0.460912 0.152344 0.004510 +v 0.460912 0.152344 -0.004510 +v 0.460912 0.144532 -0.009021 +v 0.460912 0.136720 -0.004510 +v 0.460912 0.136720 0.004510 +v 0.468749 0.136720 0.004510 +v 0.468749 0.152344 -0.004510 +v 0.468749 0.144532 -0.009021 +v 0.468749 0.136720 -0.004510 +v -0.460914 0.144532 -0.009021 +v -0.468751 0.144532 -0.009021 +v -0.468751 0.152344 -0.004510 +v -0.460914 0.152344 -0.004510 +v -0.460914 0.152344 0.004510 +v -0.460914 0.144532 0.009021 +v -0.460914 0.136720 0.004510 +v -0.460914 0.136720 -0.004510 +v -0.468751 0.136720 -0.004510 +v -0.468751 0.152344 0.004510 +v -0.468751 0.144532 0.009021 +v -0.468751 0.136720 0.004510 +v 0.126770 0.468750 0.038455 +v 0.131837 0.468750 0.012985 +v 0.131837 0.468750 -0.012984 +v 0.126770 0.468750 -0.038455 +v 0.116832 0.468750 -0.062448 +v 0.102404 0.468750 -0.084041 +v 0.084041 0.468750 -0.102404 +v 0.062448 0.468750 -0.116832 +v 0.038455 0.468750 -0.126770 +v 0.012985 0.468750 -0.131837 +v -0.012985 0.468750 -0.131837 +v -0.062448 0.468750 -0.116832 +v -0.084041 0.468750 -0.102404 +v -0.102404 0.468750 -0.084041 +v -0.116832 0.468750 -0.062448 +v -0.126770 0.468750 -0.038455 +v -0.131837 0.468750 -0.012985 +v -0.131837 0.468750 0.012985 +v -0.126770 0.468750 0.038455 +v -0.116832 0.468750 0.062448 +v -0.084041 0.468750 0.102404 +v -0.102404 0.468750 0.084041 +v -0.062448 0.468750 0.116832 +v -0.038455 0.468750 0.126770 +v 0.012985 0.468750 0.131836 +v 0.062448 0.468750 0.116832 +v 0.038455 0.468750 0.126770 +v 0.084041 0.468750 0.102404 +v 0.102404 0.468750 0.084041 +v 0.116832 0.468750 0.062448 +v -0.038455 0.468750 -0.126770 +v -0.012985 0.468750 0.131836 +v 0.110774 0.437501 0.059210 +v 0.120197 0.437501 0.036461 +v 0.125000 0.437501 0.012312 +v 0.125000 0.437501 -0.012311 +v 0.120197 0.437501 -0.036461 +v 0.110774 0.437501 -0.059210 +v 0.097094 0.437501 -0.079683 +v 0.079683 0.437501 -0.097094 +v 0.059210 0.437501 -0.110774 +v 0.036461 0.437501 -0.120197 +v 0.012311 0.437501 -0.125001 +v -0.012311 0.437501 -0.125001 +v -0.036461 0.437501 -0.120197 +v -0.059210 0.437501 -0.110774 +v -0.079683 0.437501 -0.097094 +v -0.097094 0.437501 -0.079683 +v -0.110774 0.437501 -0.059210 +v -0.120197 0.437501 -0.036461 +v -0.125000 0.437501 -0.012312 +v -0.125001 0.437501 0.012311 +v -0.120197 0.437501 0.036461 +v -0.110774 0.437501 0.059210 +v -0.097094 0.437501 0.079683 +v -0.079683 0.437501 0.097094 +v -0.059210 0.437501 0.110774 +v -0.036461 0.437501 0.120197 +v -0.012312 0.437501 0.125000 +v 0.012311 0.437501 0.125000 +v 0.036461 0.437501 0.120197 +v 0.059210 0.437501 0.110774 +v 0.079683 0.437501 0.097094 +v 0.097094 0.437501 0.079683 +v 0.036461 -0.437501 -0.120197 +v 0.012312 -0.437501 -0.125000 +v -0.012311 -0.437501 -0.125000 +v -0.036461 -0.437501 -0.120197 +v 0.059210 -0.437501 -0.110774 +v 0.012985 -0.468750 -0.131836 +v 0.038455 -0.468750 -0.126770 +v -0.012985 -0.468750 -0.131836 +v -0.059210 -0.437501 -0.110774 +v -0.038455 -0.468750 -0.126770 +v 0.079683 -0.437501 -0.097094 +v 0.062448 -0.468750 -0.116832 +v -0.079683 -0.437501 -0.097094 +v -0.062448 -0.468750 -0.116832 +v 0.097094 -0.437501 -0.079683 +v 0.084041 -0.468750 -0.102404 +v -0.097094 -0.437501 -0.079683 +v -0.084041 -0.468750 -0.102404 +v 0.110774 -0.437501 -0.059210 +v 0.102404 -0.468750 -0.084041 +v -0.110774 -0.437501 -0.059210 +v -0.102404 -0.468750 -0.084041 +v 0.120197 -0.437501 -0.036461 +v 0.116832 -0.468750 -0.062448 +v -0.120197 -0.437501 -0.036461 +v -0.116832 -0.468750 -0.062448 +v 0.125001 -0.437501 -0.012311 +v 0.126770 -0.468750 -0.038455 +v -0.125000 -0.437501 -0.012311 +v -0.126770 -0.468750 -0.038455 +v 0.125000 -0.437501 0.012312 +v 0.131837 -0.468750 -0.012985 +v -0.125000 -0.437501 0.012312 +v -0.131836 -0.468750 -0.012985 +v 0.120197 -0.437501 0.036461 +v 0.131836 -0.468750 0.012985 +v -0.120197 -0.437501 0.036461 +v -0.131836 -0.468750 0.012985 +v 0.110774 -0.437501 0.059210 +v 0.126770 -0.468750 0.038455 +v -0.110774 -0.437501 0.059210 +v -0.126770 -0.468750 0.038455 +v 0.097094 -0.437501 0.079683 +v 0.116832 -0.468750 0.062448 +v -0.097094 -0.437501 0.079683 +v -0.116832 -0.468750 0.062448 +v 0.079683 -0.437501 0.097094 +v 0.102404 -0.468750 0.084041 +v -0.079683 -0.437501 0.097094 +v -0.102404 -0.468750 0.084041 +v 0.059210 -0.437501 0.110774 +v 0.084041 -0.468750 0.102404 +v -0.059210 -0.437501 0.110774 +v -0.084041 -0.468750 0.102404 +v 0.036461 -0.437501 0.120197 +v 0.062448 -0.468750 0.116832 +v -0.036461 -0.437501 0.120197 +v -0.062448 -0.468750 0.116832 +v 0.012311 -0.437501 0.125001 +v 0.038455 -0.468750 0.126770 +v -0.012311 -0.437501 0.125001 +v -0.038455 -0.468750 0.126770 +v 0.012985 -0.468750 0.131837 +v -0.012985 -0.468750 0.131837 +v 0.130078 -0.460912 0.063644 +v 0.130078 -0.468749 0.063644 +v 0.139022 -0.468749 0.062467 +v 0.139022 -0.460912 0.062467 +v 0.142474 -0.460912 0.054133 +v 0.136982 -0.460912 0.046976 +v 0.128039 -0.460912 0.048153 +v 0.124587 -0.460912 0.056487 +v 0.124587 -0.468749 0.056487 +v 0.142474 -0.468749 0.054133 +v 0.136982 -0.468749 0.046976 +v 0.128039 -0.468749 0.048153 +v 0.136982 0.460914 0.046976 +v 0.136982 0.468751 0.046976 +v 0.142474 0.468751 0.054133 +v 0.142474 0.460914 0.054133 +v 0.139022 0.460914 0.062467 +v 0.130078 0.460914 0.063644 +v 0.124587 0.460914 0.056487 +v 0.128039 0.460914 0.048153 +v 0.128039 0.468751 0.048153 +v 0.139022 0.468751 0.062467 +v 0.130078 0.468751 0.063644 +v 0.124587 0.468751 0.056487 +v 0.046976 -0.460912 0.136982 +v 0.046976 -0.468749 0.136982 +v 0.054133 -0.468749 0.142474 +v 0.054133 -0.460912 0.142474 +v 0.062467 -0.460912 0.139022 +v 0.063644 -0.460912 0.130078 +v 0.056488 -0.460912 0.124587 +v 0.048154 -0.460912 0.128039 +v 0.048154 -0.468749 0.128039 +v 0.062467 -0.468749 0.139022 +v 0.063644 -0.468749 0.130078 +v 0.056488 -0.468749 0.124587 +v 0.063644 0.460914 0.130078 +v 0.063644 0.468751 0.130078 +v 0.062467 0.468751 0.139022 +v 0.062467 0.460914 0.139022 +v 0.054132 0.460914 0.142474 +v 0.046976 0.460914 0.136982 +v 0.048153 0.460914 0.128039 +v 0.056487 0.460914 0.124587 +v 0.056487 0.468751 0.124587 +v 0.054132 0.468751 0.142474 +v 0.046976 0.468751 0.136982 +v 0.048153 0.468751 0.128039 +v -0.063644 -0.460912 0.130078 +v -0.063644 -0.468749 0.130078 +v -0.062467 -0.468749 0.139022 +v -0.062467 -0.460912 0.139022 +v -0.054132 -0.460912 0.142474 +v -0.046976 -0.460912 0.136982 +v -0.048153 -0.460912 0.128039 +v -0.056487 -0.460912 0.124587 +v -0.056487 -0.468749 0.124587 +v -0.054132 -0.468749 0.142474 +v -0.046976 -0.468749 0.136982 +v -0.048153 -0.468749 0.128039 +v -0.046976 0.460914 0.136982 +v -0.046976 0.468751 0.136982 +v -0.054133 0.468751 0.142474 +v -0.054133 0.460914 0.142474 +v -0.062467 0.460914 0.139022 +v -0.063644 0.460914 0.130078 +v -0.056488 0.460914 0.124587 +v -0.048153 0.460914 0.128039 +v -0.048153 0.468751 0.128039 +v -0.062467 0.468751 0.139022 +v -0.063644 0.468751 0.130078 +v -0.056488 0.468751 0.124587 +v -0.136982 -0.460912 0.046976 +v -0.136982 -0.468749 0.046976 +v -0.142474 -0.468749 0.054133 +v -0.142474 -0.460912 0.054133 +v -0.139022 -0.460912 0.062467 +v -0.130078 -0.460912 0.063644 +v -0.124587 -0.460912 0.056488 +v -0.128039 -0.460912 0.048154 +v -0.128039 -0.468749 0.048154 +v -0.139022 -0.468749 0.062467 +v -0.130078 -0.468749 0.063644 +v -0.124587 -0.468749 0.056488 +v -0.130078 0.460914 0.063644 +v -0.130078 0.468751 0.063644 +v -0.139022 0.468751 0.062467 +v -0.139022 0.460914 0.062467 +v -0.142474 0.460914 0.054132 +v -0.136982 0.460914 0.046976 +v -0.128039 0.460914 0.048153 +v -0.124587 0.460914 0.056487 +v -0.124587 0.468751 0.056487 +v -0.142474 0.468751 0.054132 +v -0.136982 0.468751 0.046976 +v -0.128039 0.468751 0.048153 +v -0.130078 -0.460912 -0.063644 +v -0.130078 -0.468749 -0.063644 +v -0.139022 -0.468749 -0.062466 +v -0.139022 -0.460912 -0.062467 +v -0.142474 -0.460912 -0.054132 +v -0.136982 -0.460912 -0.046976 +v -0.128039 -0.460912 -0.048153 +v -0.124587 -0.460912 -0.056487 +v -0.124587 -0.468749 -0.056487 +v -0.142474 -0.468749 -0.054132 +v -0.136982 -0.468749 -0.046976 +v -0.128039 -0.468749 -0.048153 +v -0.136982 0.460914 -0.046976 +v -0.136982 0.468751 -0.046976 +v -0.142474 0.468751 -0.054133 +v -0.142474 0.460914 -0.054133 +v -0.139022 0.460914 -0.062467 +v -0.130078 0.460914 -0.063644 +v -0.124587 0.460914 -0.056488 +v -0.128039 0.460914 -0.048153 +v -0.128039 0.468751 -0.048153 +v -0.139022 0.468751 -0.062467 +v -0.130078 0.468751 -0.063644 +v -0.124587 0.468751 -0.056488 +v -0.046976 -0.460912 -0.136982 +v -0.046976 -0.468749 -0.136982 +v -0.054133 -0.468749 -0.142474 +v -0.054133 -0.460912 -0.142474 +v -0.062467 -0.460912 -0.139022 +v -0.063644 -0.460912 -0.130078 +v -0.056488 -0.460912 -0.124587 +v -0.048153 -0.460912 -0.128039 +v -0.048153 -0.468749 -0.128039 +v -0.062467 -0.468749 -0.139022 +v -0.063644 -0.468749 -0.130078 +v -0.056488 -0.468749 -0.124587 +v -0.063644 0.460914 -0.130078 +v -0.063644 0.468751 -0.130078 +v -0.062467 0.468751 -0.139022 +v -0.062467 0.460914 -0.139022 +v -0.054133 0.460914 -0.142474 +v -0.046976 0.460914 -0.136982 +v -0.048153 0.460914 -0.128039 +v -0.056487 0.460914 -0.124587 +v -0.056487 0.468751 -0.124587 +v -0.054133 0.468751 -0.142474 +v -0.046976 0.468751 -0.136982 +v -0.048153 0.468751 -0.128039 +v 0.063644 -0.460912 -0.130078 +v 0.063644 -0.468749 -0.130078 +v 0.062467 -0.468749 -0.139022 +v 0.062467 -0.460912 -0.139022 +v 0.054132 -0.460912 -0.142474 +v 0.046976 -0.460912 -0.136982 +v 0.048153 -0.460912 -0.128039 +v 0.056487 -0.460912 -0.124587 +v 0.056487 -0.468749 -0.124587 +v 0.054132 -0.468749 -0.142474 +v 0.046976 -0.468749 -0.136982 +v 0.048153 -0.468749 -0.128039 +v 0.046976 0.460914 -0.136982 +v 0.046976 0.468751 -0.136982 +v 0.054133 0.468751 -0.142474 +v 0.054133 0.460914 -0.142474 +v 0.062467 0.460914 -0.139022 +v 0.063644 0.460914 -0.130078 +v 0.056487 0.460914 -0.124587 +v 0.048153 0.460914 -0.128039 +v 0.048153 0.468751 -0.128039 +v 0.062467 0.468751 -0.139022 +v 0.063644 0.468751 -0.130078 +v 0.056487 0.468751 -0.124587 +v 0.136982 -0.460912 -0.046976 +v 0.136982 -0.468749 -0.046976 +v 0.142474 -0.468749 -0.054133 +v 0.142474 -0.460912 -0.054133 +v 0.139022 -0.460912 -0.062467 +v 0.130078 -0.460912 -0.063644 +v 0.124587 -0.460912 -0.056488 +v 0.128039 -0.460912 -0.048153 +v 0.128039 -0.468749 -0.048153 +v 0.139022 -0.468749 -0.062467 +v 0.130078 -0.468749 -0.063644 +v 0.124587 -0.468749 -0.056487 +v 0.130078 0.460914 -0.063644 +v 0.130078 0.468751 -0.063644 +v 0.139022 0.468751 -0.062467 +v 0.139022 0.460914 -0.062467 +v 0.142474 0.460914 -0.054133 +v 0.136982 0.460914 -0.046976 +v 0.128039 0.460914 -0.048153 +v 0.124587 0.460914 -0.056487 +v 0.124587 0.468751 -0.056487 +v 0.142474 0.468751 -0.054133 +v 0.136982 0.468751 -0.046976 +v 0.128039 0.468751 -0.048153 +v 0.097094 0.097094 -0.079683 +v -0.097094 0.097094 -0.079683 +v -0.110774 0.110774 -0.059210 +v -0.120197 0.120197 -0.036461 +v -0.125000 0.125000 -0.012311 +v -0.125001 0.125000 0.012311 +v -0.110774 0.110774 0.059210 +v -0.097094 0.097094 0.079683 +v 0.097094 -0.097094 -0.079683 +v 0.120197 -0.120197 -0.036461 +v -0.125001 -0.125001 -0.012311 +v 0.120197 -0.120197 0.036461 +v -0.110774 -0.110774 0.059210 +v -0.097094 -0.097094 0.079683 +v -0.088389 -0.088389 0.088389 +v 0.088389 -0.088389 -0.088389 +v -0.088389 0.088389 0.088389 +v -0.110774 -0.110774 -0.059210 +v -0.125000 -0.125000 0.012311 +v -0.120197 -0.120197 0.036461 +v 0.125000 0.125000 0.012311 +v 0.125001 -0.125000 0.012311 +v 0.120197 0.120197 0.036461 +v 0.097094 0.097094 0.079683 +v 0.036461 -0.120197 -0.120197 +v -0.036461 -0.120197 -0.120197 +v -0.079683 -0.097094 -0.097094 +v 0.079683 -0.097094 0.097094 +v 0.059210 0.110774 0.110774 +v 0.059210 -0.110774 0.110774 +v 0.036461 0.120197 0.120197 +v 0.036461 -0.120197 0.120197 +v 0.012311 0.125000 0.125000 +v 0.012311 -0.125000 0.125000 +v -0.012311 0.125000 0.125000 +v -0.036461 0.120197 0.120197 +v -0.036461 -0.120197 0.120197 +v -0.079683 0.097094 0.097094 +v -0.012311 -0.125000 0.125000 +v -0.012311 -0.125000 -0.125000 +v -0.059210 -0.110774 -0.110774 +v 0.088389 -0.088389 0.088389 +v 0.099603 0.500000 -0.121367 +v 0.074012 0.500000 -0.138467 +v 0.045577 0.500000 -0.150245 +v 0.015390 0.500000 -0.156250 +v -0.015389 0.500000 -0.156250 +v -0.045576 0.500000 -0.150245 +v -0.074012 0.500000 -0.138467 +v -0.099603 0.500000 -0.121367 +v -0.121367 0.500000 -0.099603 +v -0.150245 0.500000 -0.045576 +v -0.156250 0.500000 0.015389 +v -0.150245 0.500000 0.045576 +v -0.121367 0.500000 0.099603 +v -0.099603 0.500000 0.121367 +v -0.074012 0.500000 0.138467 +v -0.045576 0.500000 0.150245 +v -0.015389 0.500000 0.156250 +v 0.045576 0.500000 0.150245 +v 0.074012 0.500000 0.138467 +v 0.099603 0.500000 0.121367 +v 0.138467 0.500000 0.074012 +v 0.156250 0.500000 0.015389 +v 0.156250 0.500000 -0.015389 +v 0.150245 0.500000 -0.045576 +v 0.138467 0.500000 -0.074012 +v 0.121367 0.500000 -0.099603 +v -0.138466 0.500000 -0.074012 +v -0.156250 0.500000 -0.015389 +v -0.138467 0.500000 0.074012 +v 0.015389 0.500000 0.156250 +v 0.121367 0.500000 0.099603 +v 0.150245 0.500000 0.045576 +v 0.099603 0.468750 -0.121367 +v 0.121367 0.468750 -0.099603 +v 0.074012 0.468750 -0.138467 +v 0.045577 0.468750 -0.150245 +v 0.015390 0.468750 -0.156250 +v -0.015389 0.468750 -0.156250 +v -0.045576 0.468750 -0.150245 +v -0.074012 0.468750 -0.138467 +v -0.099603 0.468750 -0.121367 +v -0.121367 0.468750 -0.099603 +v -0.138466 0.468750 -0.074012 +v -0.150245 0.468750 -0.045576 +v -0.156250 0.468750 -0.015389 +v -0.156250 0.468750 0.015389 +v -0.150245 0.468750 0.045576 +v -0.138467 0.468750 0.074012 +v -0.121367 0.468750 0.099603 +v -0.099603 0.468750 0.121367 +v -0.074012 0.468750 0.138467 +v -0.045576 0.468750 0.150245 +v -0.015389 0.468750 0.156250 +v 0.015389 0.468750 0.156250 +v 0.074012 0.468750 0.138467 +v 0.045576 0.468750 0.150245 +v 0.099603 0.468750 0.121367 +v 0.121367 0.468750 0.099603 +v 0.138467 0.468750 0.074012 +v 0.150245 0.468750 0.045576 +v 0.156250 0.468750 -0.015389 +v 0.156250 0.468750 0.015389 +v 0.150245 0.468750 -0.045576 +v 0.138467 0.468750 -0.074012 +v -0.138466 -0.468750 -0.074012 +v -0.150245 -0.468750 -0.045576 +v -0.156249 -0.468750 -0.015389 +v -0.121367 -0.468750 -0.099603 +v -0.156249 -0.468750 0.015389 +v -0.074012 -0.468750 -0.138467 +v -0.099603 -0.468750 -0.121367 +v -0.121367 -0.500000 -0.099603 +v -0.138467 -0.500000 -0.074012 +v -0.150245 -0.500000 -0.045576 +v -0.156249 -0.500000 -0.015389 +v -0.156250 -0.500000 0.015389 +v -0.045576 -0.468750 -0.150245 +v -0.099603 -0.500000 -0.121367 +v -0.150245 -0.468750 0.045576 +v -0.150245 -0.500000 0.045576 +v -0.015389 -0.468750 -0.156250 +v -0.045576 -0.500000 -0.150245 +v -0.074012 -0.500000 -0.138467 +v -0.138467 -0.468750 0.074012 +v -0.138467 -0.500000 0.074012 +v 0.015389 -0.468750 -0.156250 +v -0.015389 -0.500000 -0.156250 +v -0.121367 -0.468750 0.099603 +v -0.121367 -0.500000 0.099603 +v 0.045576 -0.468750 -0.150245 +v 0.015389 -0.500000 -0.156250 +v -0.099603 -0.468750 0.121367 +v -0.099603 -0.500000 0.121367 +v 0.074012 -0.468750 -0.138467 +v 0.045576 -0.500000 -0.150245 +v -0.045576 -0.468750 0.150245 +v -0.074012 -0.468750 0.138467 +v -0.074012 -0.500000 0.138467 +v 0.099603 -0.468750 -0.121367 +v 0.074012 -0.500000 -0.138467 +v -0.015389 -0.468750 0.156250 +v -0.045576 -0.500000 0.150245 +v 0.121367 -0.468750 -0.099603 +v 0.099603 -0.500000 -0.121367 +v 0.015389 -0.468750 0.156250 +v -0.015389 -0.500000 0.156250 +v 0.138466 -0.468750 -0.074012 +v 0.121367 -0.500000 -0.099603 +v 0.045576 -0.468750 0.150245 +v 0.015389 -0.500000 0.156250 +v 0.150245 -0.468750 -0.045576 +v 0.138466 -0.500000 -0.074012 +v 0.074012 -0.468750 0.138467 +v 0.045576 -0.500000 0.150245 +v 0.156250 -0.468750 -0.015389 +v 0.150245 -0.500000 -0.045576 +v 0.156250 -0.500000 0.015389 +v 0.099603 -0.468750 0.121367 +v 0.074012 -0.500000 0.138467 +v 0.156250 -0.468750 0.015389 +v 0.156250 -0.500000 -0.015389 +v 0.138467 -0.500000 0.074012 +v 0.150245 -0.500000 0.045576 +v 0.121367 -0.500000 0.099603 +v 0.099603 -0.500000 0.121367 +v 0.150245 -0.468750 0.045576 +v 0.121367 -0.468750 0.099603 +v 0.138467 -0.468750 0.074012 +v 0.095821 -0.460912 0.108578 +v 0.095821 -0.468749 0.108578 +v 0.104534 -0.468749 0.110913 +v 0.104534 -0.460912 0.110913 +v 0.110913 -0.460912 0.104534 +v 0.108578 -0.460912 0.095821 +v 0.099865 -0.460912 0.093486 +v 0.093486 -0.460912 0.099865 +v 0.093486 -0.468749 0.099865 +v 0.110913 -0.468749 0.104534 +v 0.108578 -0.468749 0.095821 +v 0.099865 -0.468749 0.093486 +v 0.108578 0.460914 0.095821 +v 0.108578 0.468751 0.095821 +v 0.110913 0.468751 0.104534 +v 0.110913 0.460914 0.104534 +v 0.104534 0.460914 0.110913 +v 0.095821 0.460914 0.108578 +v 0.093486 0.460914 0.099865 +v 0.099865 0.460914 0.093486 +v 0.099865 0.468751 0.093486 +v 0.104534 0.468751 0.110913 +v 0.095821 0.468751 0.108578 +v 0.093486 0.468751 0.099865 +v -0.009021 -0.460912 0.144532 +v -0.009021 -0.468749 0.144532 +v -0.004510 -0.468749 0.152344 +v -0.004510 -0.460912 0.152344 +v 0.004511 -0.460912 0.152344 +v 0.009021 -0.460912 0.144532 +v 0.004510 -0.460912 0.136720 +v -0.004510 -0.460912 0.136720 +v -0.004510 -0.468749 0.136720 +v 0.004511 -0.468749 0.152344 +v 0.009021 -0.468749 0.144532 +v 0.004510 -0.468749 0.136720 +v 0.009021 0.460914 0.144532 +v 0.009021 0.468751 0.144532 +v 0.004510 0.468751 0.152344 +v 0.004510 0.460914 0.152344 +v -0.004510 0.460914 0.152344 +v -0.009021 0.460914 0.144532 +v -0.004510 0.460914 0.136720 +v 0.004510 0.460914 0.136720 +v 0.004510 0.468751 0.136720 +v -0.004510 0.468751 0.152344 +v -0.009021 0.468751 0.144532 +v -0.004510 0.468751 0.136720 +v -0.108578 -0.460912 0.095821 +v -0.108578 -0.468749 0.095821 +v -0.110913 -0.468749 0.104535 +v -0.110913 -0.460912 0.104534 +v -0.104534 -0.460912 0.110913 +v -0.095821 -0.460912 0.108578 +v -0.093486 -0.460912 0.099865 +v -0.099865 -0.460912 0.093486 +v -0.099865 -0.468749 0.093486 +v -0.104534 -0.468749 0.110913 +v -0.095821 -0.468749 0.108578 +v -0.093486 -0.468749 0.099865 +v -0.095821 0.460914 0.108578 +v -0.095821 0.468751 0.108578 +v -0.104534 0.468751 0.110913 +v -0.104534 0.460914 0.110913 +v -0.110913 0.460914 0.104534 +v -0.108578 0.460914 0.095821 +v -0.099865 0.460914 0.093486 +v -0.093486 0.460914 0.099865 +v -0.093486 0.468751 0.099865 +v -0.110913 0.468751 0.104534 +v -0.108578 0.468751 0.095821 +v -0.099865 0.468751 0.093486 +v -0.144532 -0.460912 -0.009021 +v -0.144532 -0.468749 -0.009021 +v -0.152344 -0.468749 -0.004510 +v -0.152344 -0.460912 -0.004510 +v -0.152344 -0.460912 0.004511 +v -0.144532 -0.460912 0.009021 +v -0.136720 -0.460912 0.004511 +v -0.136720 -0.460912 -0.004510 +v -0.136720 -0.468749 -0.004510 +v -0.152344 -0.468749 0.004511 +v -0.144532 -0.468749 0.009021 +v -0.136720 -0.468749 0.004511 +v -0.144532 0.460914 0.009021 +v -0.144532 0.468751 0.009021 +v -0.152344 0.468751 0.004510 +v -0.152344 0.460914 0.004510 +v -0.152344 0.460914 -0.004511 +v -0.144532 0.460914 -0.009021 +v -0.136720 0.460914 -0.004510 +v -0.136720 0.460914 0.004510 +v -0.136720 0.468751 0.004510 +v -0.152344 0.468751 -0.004511 +v -0.144532 0.468751 -0.009021 +v -0.136720 0.468751 -0.004510 +v -0.095821 -0.460912 -0.108578 +v -0.095821 -0.468749 -0.108578 +v -0.104534 -0.468749 -0.110913 +v -0.104534 -0.460912 -0.110913 +v -0.110913 -0.460912 -0.104534 +v -0.108578 -0.460912 -0.095821 +v -0.099865 -0.460912 -0.093486 +v -0.093486 -0.460912 -0.099865 +v -0.093486 -0.468749 -0.099865 +v -0.110913 -0.468749 -0.104534 +v -0.108578 -0.468749 -0.095821 +v -0.099865 -0.468749 -0.093486 +v -0.108578 0.460914 -0.095821 +v -0.108578 0.468751 -0.095821 +v -0.110913 0.468751 -0.104534 +v -0.110913 0.460914 -0.104534 +v -0.104534 0.460914 -0.110913 +v -0.095821 0.460914 -0.108578 +v -0.093486 0.460914 -0.099865 +v -0.099865 0.460914 -0.093486 +v -0.099865 0.468751 -0.093486 +v -0.104534 0.468751 -0.110913 +v -0.095821 0.468751 -0.108578 +v -0.093486 0.468751 -0.099865 +v 0.009021 -0.460912 -0.144532 +v 0.009021 -0.468749 -0.144532 +v 0.004510 -0.468749 -0.152344 +v 0.004510 -0.460912 -0.152344 +v -0.004510 -0.460912 -0.152344 +v -0.009021 -0.460912 -0.144532 +v -0.004510 -0.460912 -0.136720 +v 0.004510 -0.460912 -0.136720 +v 0.004510 -0.468749 -0.136720 +v -0.004510 -0.468749 -0.152344 +v -0.009021 -0.468749 -0.144532 +v -0.004510 -0.468749 -0.136720 +v -0.009021 0.460914 -0.144532 +v -0.009021 0.468751 -0.144532 +v -0.004510 0.468751 -0.152344 +v -0.004510 0.460914 -0.152344 +v 0.004510 0.460914 -0.152344 +v 0.009021 0.460914 -0.144532 +v 0.004510 0.460914 -0.136720 +v -0.004510 0.460914 -0.136720 +v -0.004510 0.468751 -0.136720 +v 0.004510 0.468751 -0.152344 +v 0.009021 0.468751 -0.144532 +v 0.004510 0.468751 -0.136720 +v 0.108578 -0.460912 -0.095821 +v 0.108578 -0.468749 -0.095821 +v 0.110913 -0.468749 -0.104534 +v 0.110913 -0.460912 -0.104534 +v 0.104534 -0.460912 -0.110913 +v 0.095821 -0.460912 -0.108578 +v 0.093486 -0.460912 -0.099865 +v 0.099865 -0.460912 -0.093486 +v 0.099865 -0.468749 -0.093486 +v 0.104534 -0.468749 -0.110913 +v 0.095821 -0.468749 -0.108578 +v 0.093486 -0.468749 -0.099865 +v 0.095821 0.460914 -0.108578 +v 0.095821 0.468751 -0.108578 +v 0.104534 0.468751 -0.110913 +v 0.104534 0.460914 -0.110913 +v 0.110913 0.460914 -0.104534 +v 0.108578 0.460914 -0.095821 +v 0.099865 0.460914 -0.093486 +v 0.093486 0.460914 -0.099865 +v 0.093486 0.468751 -0.099865 +v 0.110913 0.468751 -0.104534 +v 0.108578 0.468751 -0.095821 +v 0.099865 0.468751 -0.093486 +v 0.144532 -0.460912 0.009021 +v 0.144532 -0.468749 0.009021 +v 0.152344 -0.468749 0.004510 +v 0.152344 -0.460912 0.004510 +v 0.152344 -0.460912 -0.004510 +v 0.144532 -0.460912 -0.009021 +v 0.136720 -0.460912 -0.004510 +v 0.136720 -0.460912 0.004510 +v 0.136720 -0.468749 0.004510 +v 0.152344 -0.468749 -0.004510 +v 0.144532 -0.468749 -0.009021 +v 0.136720 -0.468749 -0.004510 +v 0.144532 0.460914 -0.009021 +v 0.144532 0.468751 -0.009021 +v 0.152344 0.468751 -0.004510 +v 0.152344 0.460914 -0.004510 +v 0.152344 0.460914 0.004510 +v 0.144532 0.460914 0.009021 +v 0.136720 0.460914 0.004510 +v 0.136720 0.460914 -0.004510 +v 0.136720 0.468751 -0.004510 +v 0.152344 0.468751 0.004510 +v 0.144532 0.468751 0.009021 +v 0.136720 0.468751 0.004510 +v 0.126770 -0.038455 0.468750 +v 0.131837 -0.012985 0.468750 +v 0.131837 0.012984 0.468750 +v 0.126770 0.038455 0.468750 +v 0.116832 0.062448 0.468750 +v 0.102404 0.084041 0.468750 +v 0.084041 0.102404 0.468750 +v 0.062448 0.116832 0.468750 +v 0.038455 0.126770 0.468750 +v 0.012985 0.131837 0.468750 +v -0.012985 0.131837 0.468750 +v -0.062448 0.116832 0.468750 +v -0.084041 0.102404 0.468750 +v -0.102404 0.084041 0.468750 +v -0.116832 0.062448 0.468750 +v -0.126770 0.038455 0.468750 +v -0.131837 0.012985 0.468750 +v -0.131837 -0.012985 0.468750 +v -0.126770 -0.038455 0.468750 +v -0.116832 -0.062448 0.468750 +v -0.084041 -0.102404 0.468750 +v -0.102404 -0.084041 0.468750 +v -0.062448 -0.116832 0.468750 +v -0.038455 -0.126770 0.468750 +v 0.012985 -0.131836 0.468750 +v 0.062448 -0.116832 0.468750 +v 0.038455 -0.126770 0.468750 +v 0.084041 -0.102404 0.468750 +v 0.102404 -0.084041 0.468750 +v 0.116832 -0.062448 0.468750 +v -0.038455 0.126770 0.468750 +v -0.012985 -0.131836 0.468750 +v 0.110774 -0.059210 0.437501 +v 0.120197 -0.036461 0.437501 +v 0.125000 -0.012312 0.437501 +v 0.125000 0.012311 0.437501 +v 0.120197 0.036461 0.437501 +v 0.110774 0.059210 0.437501 +v 0.097094 0.079683 0.437501 +v 0.079683 0.097094 0.437501 +v 0.059210 0.110774 0.437501 +v 0.036461 0.120197 0.437501 +v 0.012311 0.125001 0.437501 +v -0.012311 0.125001 0.437501 +v -0.036461 0.120197 0.437501 +v -0.059210 0.110774 0.437501 +v -0.079683 0.097094 0.437501 +v -0.097094 0.079683 0.437501 +v -0.110774 0.059210 0.437501 +v -0.120197 0.036461 0.437501 +v -0.125000 0.012312 0.437501 +v -0.125001 -0.012311 0.437501 +v -0.120197 -0.036461 0.437501 +v -0.110774 -0.059210 0.437501 +v -0.097094 -0.079683 0.437501 +v -0.079683 -0.097094 0.437501 +v -0.059210 -0.110774 0.437501 +v -0.036461 -0.120197 0.437501 +v -0.012312 -0.125000 0.437501 +v 0.012311 -0.125000 0.437501 +v 0.036461 -0.120197 0.437501 +v 0.059210 -0.110774 0.437501 +v 0.079683 -0.097094 0.437501 +v 0.097094 -0.079683 0.437501 +v 0.036461 0.120197 -0.437501 +v 0.012312 0.125000 -0.437501 +v -0.012311 0.125000 -0.437501 +v -0.036461 0.120197 -0.437501 +v 0.059210 0.110774 -0.437501 +v 0.012985 0.131836 -0.468750 +v 0.038455 0.126770 -0.468750 +v -0.012985 0.131836 -0.468750 +v -0.059210 0.110774 -0.437501 +v -0.038455 0.126770 -0.468750 +v 0.079683 0.097094 -0.437501 +v 0.062448 0.116832 -0.468750 +v -0.079683 0.097094 -0.437501 +v -0.062448 0.116832 -0.468750 +v 0.097094 0.079683 -0.437501 +v 0.084041 0.102404 -0.468750 +v -0.097094 0.079683 -0.437501 +v -0.084041 0.102404 -0.468750 +v 0.110774 0.059210 -0.437501 +v 0.102404 0.084041 -0.468750 +v -0.110774 0.059210 -0.437501 +v -0.102404 0.084041 -0.468750 +v 0.120197 0.036461 -0.437501 +v 0.116832 0.062448 -0.468750 +v -0.120197 0.036461 -0.437501 +v -0.116832 0.062448 -0.468750 +v 0.125001 0.012311 -0.437501 +v 0.126770 0.038455 -0.468750 +v -0.125000 0.012311 -0.437501 +v -0.126770 0.038455 -0.468750 +v 0.125000 -0.012312 -0.437501 +v 0.131837 0.012985 -0.468750 +v -0.125000 -0.012312 -0.437501 +v -0.131836 0.012985 -0.468750 +v 0.120197 -0.036462 -0.437501 +v 0.131836 -0.012985 -0.468750 +v -0.120197 -0.036461 -0.437501 +v -0.131836 -0.012985 -0.468750 +v 0.110774 -0.059210 -0.437501 +v 0.126770 -0.038456 -0.468750 +v -0.110774 -0.059210 -0.437501 +v -0.126770 -0.038455 -0.468750 +v 0.097094 -0.079683 -0.437501 +v 0.116832 -0.062448 -0.468750 +v -0.097094 -0.079683 -0.437501 +v -0.116832 -0.062448 -0.468750 +v 0.079683 -0.097094 -0.437501 +v 0.102404 -0.084041 -0.468750 +v -0.079683 -0.097094 -0.437501 +v -0.102404 -0.084041 -0.468750 +v 0.059210 -0.110774 -0.437501 +v 0.084041 -0.102404 -0.468750 +v -0.059210 -0.110774 -0.437501 +v -0.084041 -0.102404 -0.468750 +v 0.036461 -0.120197 -0.437501 +v 0.062448 -0.116832 -0.468750 +v -0.036461 -0.120197 -0.437501 +v -0.062448 -0.116832 -0.468750 +v 0.012311 -0.125001 -0.437501 +v 0.038455 -0.126770 -0.468750 +v -0.012311 -0.125001 -0.437501 +v -0.038455 -0.126770 -0.468750 +v 0.012985 -0.131837 -0.468750 +v -0.012985 -0.131837 -0.468750 +v 0.130078 -0.063644 -0.460912 +v 0.130078 -0.063644 -0.468749 +v 0.139022 -0.062467 -0.468749 +v 0.139022 -0.062467 -0.460912 +v 0.142474 -0.054133 -0.460912 +v 0.136982 -0.046976 -0.460912 +v 0.128039 -0.048153 -0.460912 +v 0.124587 -0.056488 -0.460912 +v 0.124587 -0.056487 -0.468749 +v 0.142474 -0.054133 -0.468749 +v 0.136982 -0.046976 -0.468749 +v 0.128039 -0.048153 -0.468749 +v 0.136982 -0.046976 0.460914 +v 0.136982 -0.046976 0.468751 +v 0.142474 -0.054133 0.468751 +v 0.142474 -0.054133 0.460914 +v 0.139022 -0.062467 0.460914 +v 0.130078 -0.063644 0.460914 +v 0.124587 -0.056487 0.460914 +v 0.128039 -0.048153 0.460914 +v 0.128039 -0.048153 0.468751 +v 0.139022 -0.062467 0.468751 +v 0.130078 -0.063644 0.468751 +v 0.124587 -0.056487 0.468751 +v 0.046976 -0.136982 -0.460912 +v 0.046976 -0.136982 -0.468749 +v 0.054133 -0.142474 -0.468749 +v 0.054133 -0.142474 -0.460912 +v 0.062467 -0.139022 -0.460912 +v 0.063644 -0.130078 -0.460912 +v 0.056488 -0.124587 -0.460912 +v 0.048154 -0.128039 -0.460912 +v 0.048154 -0.128039 -0.468749 +v 0.062467 -0.139022 -0.468749 +v 0.063644 -0.130078 -0.468749 +v 0.056488 -0.124587 -0.468749 +v 0.063644 -0.130078 0.460914 +v 0.063644 -0.130078 0.468751 +v 0.062467 -0.139022 0.468751 +v 0.062467 -0.139022 0.460914 +v 0.054132 -0.142474 0.460914 +v 0.046976 -0.136982 0.460914 +v 0.048153 -0.128039 0.460914 +v 0.056487 -0.124587 0.460914 +v 0.056487 -0.124587 0.468751 +v 0.054132 -0.142474 0.468751 +v 0.046976 -0.136982 0.468751 +v 0.048153 -0.128039 0.468751 +v -0.063644 -0.130078 -0.460912 +v -0.063644 -0.130078 -0.468749 +v -0.062467 -0.139022 -0.468749 +v -0.062467 -0.139022 -0.460912 +v -0.054132 -0.142474 -0.460912 +v -0.046976 -0.136982 -0.460912 +v -0.048153 -0.128039 -0.460912 +v -0.056487 -0.124587 -0.460912 +v -0.056487 -0.124587 -0.468749 +v -0.054132 -0.142474 -0.468749 +v -0.046976 -0.136982 -0.468749 +v -0.048153 -0.128039 -0.468749 +v -0.046976 -0.136982 0.460914 +v -0.046976 -0.136982 0.468751 +v -0.054133 -0.142474 0.468751 +v -0.054133 -0.142474 0.460914 +v -0.062467 -0.139022 0.460914 +v -0.063644 -0.130078 0.460914 +v -0.056488 -0.124587 0.460914 +v -0.048153 -0.128039 0.460914 +v -0.048153 -0.128039 0.468751 +v -0.062467 -0.139022 0.468751 +v -0.063644 -0.130078 0.468751 +v -0.056488 -0.124587 0.468751 +v -0.136982 -0.046976 -0.460912 +v -0.136982 -0.046976 -0.468749 +v -0.142474 -0.054133 -0.468749 +v -0.142474 -0.054133 -0.460912 +v -0.139022 -0.062467 -0.460912 +v -0.130078 -0.063644 -0.460912 +v -0.124587 -0.056488 -0.460912 +v -0.128039 -0.048154 -0.460912 +v -0.128039 -0.048154 -0.468749 +v -0.139022 -0.062467 -0.468749 +v -0.130078 -0.063644 -0.468749 +v -0.124587 -0.056488 -0.468749 +v -0.130078 -0.063644 0.460914 +v -0.130078 -0.063644 0.468751 +v -0.139022 -0.062467 0.468751 +v -0.139022 -0.062467 0.460914 +v -0.142474 -0.054132 0.460914 +v -0.136982 -0.046976 0.460914 +v -0.128039 -0.048153 0.460914 +v -0.124587 -0.056487 0.460914 +v -0.124587 -0.056487 0.468751 +v -0.142474 -0.054132 0.468751 +v -0.136982 -0.046976 0.468751 +v -0.128039 -0.048153 0.468751 +v -0.130078 0.063644 -0.460912 +v -0.130078 0.063644 -0.468749 +v -0.139022 0.062466 -0.468749 +v -0.139022 0.062466 -0.460912 +v -0.142474 0.054132 -0.460912 +v -0.136982 0.046976 -0.460912 +v -0.128039 0.048153 -0.460912 +v -0.124587 0.056487 -0.460912 +v -0.124587 0.056487 -0.468749 +v -0.142474 0.054132 -0.468749 +v -0.136982 0.046976 -0.468749 +v -0.128039 0.048153 -0.468749 +v -0.136982 0.046976 0.460914 +v -0.136982 0.046976 0.468751 +v -0.142474 0.054133 0.468751 +v -0.142474 0.054133 0.460914 +v -0.139022 0.062467 0.460914 +v -0.130078 0.063644 0.460914 +v -0.124587 0.056488 0.460914 +v -0.128039 0.048154 0.460914 +v -0.128039 0.048154 0.468751 +v -0.139022 0.062467 0.468751 +v -0.130078 0.063644 0.468751 +v -0.124587 0.056488 0.468751 +v -0.046976 0.136982 -0.460912 +v -0.046976 0.136982 -0.468749 +v -0.054133 0.142474 -0.468749 +v -0.054133 0.142474 -0.460912 +v -0.062467 0.139022 -0.460912 +v -0.063644 0.130078 -0.460912 +v -0.056488 0.124586 -0.460912 +v -0.048153 0.128039 -0.460912 +v -0.048153 0.128039 -0.468749 +v -0.062467 0.139021 -0.468749 +v -0.063644 0.130078 -0.468749 +v -0.056488 0.124586 -0.468749 +v -0.063644 0.130078 0.460914 +v -0.063644 0.130078 0.468751 +v -0.062467 0.139022 0.468751 +v -0.062467 0.139022 0.460914 +v -0.054133 0.142474 0.460914 +v -0.046976 0.136982 0.460914 +v -0.048153 0.128039 0.460914 +v -0.056487 0.124587 0.460914 +v -0.056487 0.124587 0.468751 +v -0.054133 0.142474 0.468751 +v -0.046976 0.136982 0.468751 +v -0.048153 0.128039 0.468751 +v 0.063644 0.130078 -0.460912 +v 0.063644 0.130078 -0.468749 +v 0.062467 0.139022 -0.468749 +v 0.062467 0.139022 -0.460912 +v 0.054132 0.142474 -0.460912 +v 0.046976 0.136982 -0.460912 +v 0.048153 0.128039 -0.460912 +v 0.056487 0.124587 -0.460912 +v 0.056487 0.124587 -0.468749 +v 0.054132 0.142474 -0.468749 +v 0.046976 0.136982 -0.468749 +v 0.048153 0.128039 -0.468749 +v 0.046976 0.136982 0.460914 +v 0.046976 0.136982 0.468751 +v 0.054133 0.142474 0.468751 +v 0.054133 0.142474 0.460914 +v 0.062467 0.139022 0.460914 +v 0.063644 0.130078 0.460914 +v 0.056487 0.124587 0.460914 +v 0.048153 0.128039 0.460914 +v 0.048153 0.128039 0.468751 +v 0.062467 0.139022 0.468751 +v 0.063644 0.130078 0.468751 +v 0.056487 0.124587 0.468751 +v 0.136982 0.046976 -0.460912 +v 0.136982 0.046976 -0.468749 +v 0.142474 0.054133 -0.468749 +v 0.142474 0.054133 -0.460912 +v 0.139022 0.062467 -0.460912 +v 0.130078 0.063644 -0.460912 +v 0.124587 0.056488 -0.460912 +v 0.128039 0.048153 -0.460912 +v 0.128039 0.048153 -0.468749 +v 0.139022 0.062467 -0.468749 +v 0.130078 0.063644 -0.468749 +v 0.124587 0.056487 -0.468749 +v 0.130078 0.063644 0.460914 +v 0.130078 0.063644 0.468751 +v 0.139022 0.062467 0.468751 +v 0.139022 0.062467 0.460914 +v 0.142474 0.054133 0.460914 +v 0.136982 0.046976 0.460914 +v 0.128039 0.048153 0.460914 +v 0.124587 0.056488 0.460914 +v 0.124587 0.056488 0.468751 +v 0.142474 0.054133 0.468751 +v 0.136982 0.046976 0.468751 +v 0.128039 0.048153 0.468751 +v 0.097094 0.079683 0.097094 +v -0.110774 -0.059210 0.110774 +v -0.097094 -0.079683 0.097094 +v 0.097094 0.079683 -0.097094 +v 0.110774 0.059210 -0.110774 +v 0.120197 0.036461 -0.120197 +v 0.120197 -0.036461 -0.120197 +v 0.097094 -0.079683 -0.097094 +v -0.097094 -0.079683 -0.097094 +v 0.088389 0.088389 -0.088389 +v 0.088389 0.088389 0.088389 +v -0.097094 0.079683 -0.097094 +v -0.110774 0.059210 -0.110774 +v -0.125000 -0.012311 -0.125000 +v -0.120197 -0.036461 -0.120197 +v 0.125001 0.012311 -0.125001 +v 0.110774 -0.059210 -0.110774 +v 0.079683 0.097094 0.097094 +v 0.059210 0.110774 -0.110774 +v 0.036461 0.120197 -0.120197 +v 0.012311 0.125000 -0.125000 +v -0.036461 0.120197 -0.120197 +v -0.079683 0.097094 -0.097094 +v 0.079683 -0.097094 -0.097094 +v 0.059210 -0.110774 -0.110774 +v 0.012311 -0.125000 -0.125000 +v -0.059210 -0.110774 0.110774 +v -0.079683 -0.097094 0.097094 +v -0.059210 0.110774 0.110774 +v 0.079683 0.097094 -0.097094 +v -0.012311 0.125000 -0.125001 +v -0.059210 0.110774 -0.110774 +v -0.088389 0.088389 -0.088389 +v 0.099603 0.121367 0.500000 +v 0.074012 0.138467 0.500000 +v 0.045577 0.150245 0.500000 +v 0.015390 0.156250 0.500000 +v -0.015389 0.156250 0.500000 +v -0.045576 0.150245 0.500000 +v -0.074012 0.138467 0.500000 +v -0.099603 0.121367 0.500000 +v -0.121367 0.099603 0.500000 +v -0.150245 0.045577 0.500000 +v -0.156250 -0.015389 0.500000 +v -0.150245 -0.045576 0.500000 +v -0.121367 -0.099603 0.500000 +v -0.099603 -0.121367 0.500000 +v -0.074012 -0.138467 0.500000 +v -0.045576 -0.150245 0.500000 +v -0.015389 -0.156250 0.500000 +v 0.045576 -0.150245 0.500000 +v 0.074012 -0.138467 0.500000 +v 0.099603 -0.121367 0.500000 +v 0.138467 -0.074012 0.500000 +v 0.156250 -0.015389 0.500000 +v 0.156250 0.015389 0.500000 +v 0.150245 0.045576 0.500000 +v 0.138467 0.074012 0.500000 +v 0.121367 0.099603 0.500000 +v -0.138466 0.074012 0.500000 +v -0.156250 0.015389 0.500000 +v -0.138467 -0.074012 0.500000 +v 0.015389 -0.156250 0.500000 +v 0.121367 -0.099603 0.500000 +v 0.150245 -0.045576 0.500000 +v 0.099603 0.121367 0.468750 +v 0.121367 0.099603 0.468750 +v 0.074012 0.138467 0.468750 +v 0.045577 0.150245 0.468750 +v 0.015390 0.156250 0.468750 +v -0.015389 0.156250 0.468750 +v -0.045576 0.150245 0.468750 +v -0.074012 0.138467 0.468750 +v -0.099603 0.121367 0.468750 +v -0.121367 0.099603 0.468750 +v -0.138466 0.074012 0.468750 +v -0.150245 0.045576 0.468750 +v -0.156250 0.015389 0.468750 +v -0.156250 -0.015389 0.468750 +v -0.150245 -0.045576 0.468750 +v -0.138467 -0.074012 0.468750 +v -0.121367 -0.099603 0.468750 +v -0.099603 -0.121367 0.468750 +v -0.074012 -0.138467 0.468750 +v -0.045576 -0.150245 0.468750 +v -0.015389 -0.156250 0.468750 +v 0.015389 -0.156250 0.468750 +v 0.074012 -0.138467 0.468750 +v 0.045576 -0.150245 0.468750 +v 0.099603 -0.121367 0.468750 +v 0.121367 -0.099603 0.468750 +v 0.138467 -0.074012 0.468750 +v 0.150245 -0.045576 0.468750 +v 0.156250 0.015389 0.468750 +v 0.156250 -0.015389 0.468750 +v 0.150245 0.045576 0.468750 +v 0.138467 0.074012 0.468750 +v -0.138466 0.074012 -0.468750 +v -0.150245 0.045576 -0.468750 +v -0.156249 0.015389 -0.468750 +v -0.121367 0.099603 -0.468750 +v -0.156249 -0.015389 -0.468750 +v -0.074012 0.138467 -0.468750 +v -0.099603 0.121367 -0.468750 +v -0.121367 0.099603 -0.500000 +v -0.138467 0.074012 -0.500000 +v -0.150245 0.045576 -0.500000 +v -0.156249 0.015389 -0.500000 +v -0.156250 -0.015389 -0.500000 +v -0.045576 0.150245 -0.468750 +v -0.099603 0.121367 -0.500000 +v -0.150245 -0.045576 -0.468750 +v -0.150245 -0.045576 -0.500000 +v -0.015389 0.156250 -0.468750 +v -0.045576 0.150245 -0.500000 +v -0.074012 0.138467 -0.500000 +v -0.138467 -0.074012 -0.468750 +v -0.138467 -0.074012 -0.500000 +v 0.015389 0.156250 -0.468750 +v -0.015389 0.156249 -0.500000 +v -0.121367 -0.099603 -0.468750 +v -0.121367 -0.099603 -0.500000 +v 0.045576 0.150245 -0.468750 +v 0.015389 0.156249 -0.500000 +v -0.099603 -0.121367 -0.468750 +v -0.099603 -0.121367 -0.500000 +v 0.074012 0.138467 -0.468750 +v 0.045576 0.150245 -0.500000 +v -0.045576 -0.150245 -0.468750 +v -0.074012 -0.138467 -0.468750 +v -0.074012 -0.138467 -0.500000 +v 0.099603 0.121367 -0.468750 +v 0.074012 0.138467 -0.500000 +v -0.015389 -0.156250 -0.468750 +v -0.045576 -0.150245 -0.500000 +v 0.121367 0.099603 -0.468750 +v 0.099603 0.121367 -0.500000 +v 0.015389 -0.156250 -0.468750 +v -0.015389 -0.156250 -0.500000 +v 0.138466 0.074012 -0.468750 +v 0.121367 0.099603 -0.500000 +v 0.045576 -0.150245 -0.468750 +v 0.015389 -0.156250 -0.500000 +v 0.150245 0.045576 -0.468750 +v 0.138466 0.074012 -0.500000 +v 0.074012 -0.138467 -0.468750 +v 0.045576 -0.150245 -0.500000 +v 0.156250 0.015389 -0.468750 +v 0.150245 0.045576 -0.500000 +v 0.156250 -0.015389 -0.500000 +v 0.099603 -0.121367 -0.468750 +v 0.074012 -0.138467 -0.500000 +v 0.156250 -0.015389 -0.468750 +v 0.156250 0.015389 -0.500000 +v 0.138467 -0.074012 -0.500000 +v 0.150245 -0.045576 -0.500000 +v 0.121367 -0.099603 -0.500000 +v 0.099603 -0.121367 -0.500000 +v 0.150245 -0.045576 -0.468750 +v 0.121367 -0.099603 -0.468750 +v 0.138467 -0.074012 -0.468750 +v 0.095821 -0.108578 -0.460912 +v 0.095821 -0.108578 -0.468749 +v 0.104534 -0.110913 -0.468749 +v 0.104534 -0.110913 -0.460912 +v 0.110913 -0.104534 -0.460912 +v 0.108578 -0.095821 -0.460912 +v 0.099865 -0.093486 -0.460912 +v 0.093486 -0.099865 -0.460912 +v 0.093486 -0.099865 -0.468749 +v 0.110913 -0.104534 -0.468749 +v 0.108578 -0.095821 -0.468749 +v 0.099865 -0.093486 -0.468749 +v 0.108578 -0.095821 0.460914 +v 0.108578 -0.095821 0.468751 +v 0.110913 -0.104534 0.468751 +v 0.110913 -0.104534 0.460914 +v 0.104534 -0.110913 0.460914 +v 0.095821 -0.108578 0.460914 +v 0.093486 -0.099865 0.460914 +v 0.099865 -0.093486 0.460914 +v 0.099865 -0.093486 0.468751 +v 0.104534 -0.110913 0.468751 +v 0.095821 -0.108578 0.468751 +v 0.093486 -0.099865 0.468751 +v -0.009021 -0.144532 -0.460912 +v -0.009021 -0.144532 -0.468749 +v -0.004510 -0.152344 -0.468749 +v -0.004510 -0.152344 -0.460912 +v 0.004511 -0.152344 -0.460912 +v 0.009021 -0.144532 -0.460912 +v 0.004510 -0.136720 -0.460912 +v -0.004510 -0.136720 -0.460912 +v -0.004510 -0.136720 -0.468749 +v 0.004511 -0.152344 -0.468749 +v 0.009021 -0.144532 -0.468749 +v 0.004510 -0.136720 -0.468749 +v 0.009021 -0.144532 0.460914 +v 0.009021 -0.144532 0.468751 +v 0.004510 -0.152344 0.468751 +v 0.004510 -0.152344 0.460914 +v -0.004510 -0.152344 0.460914 +v -0.009021 -0.144532 0.460914 +v -0.004510 -0.136720 0.460914 +v 0.004510 -0.136720 0.460914 +v 0.004510 -0.136720 0.468751 +v -0.004510 -0.152344 0.468751 +v -0.009021 -0.144532 0.468751 +v -0.004510 -0.136720 0.468751 +v -0.108578 -0.095821 -0.460912 +v -0.108578 -0.095821 -0.468749 +v -0.110913 -0.104535 -0.468749 +v -0.110913 -0.104535 -0.460912 +v -0.104534 -0.110913 -0.460912 +v -0.095821 -0.108578 -0.460912 +v -0.093486 -0.099865 -0.460912 +v -0.099865 -0.093486 -0.460912 +v -0.099865 -0.093486 -0.468749 +v -0.104534 -0.110913 -0.468749 +v -0.095821 -0.108578 -0.468749 +v -0.093486 -0.099865 -0.468749 +v -0.095821 -0.108578 0.460914 +v -0.095821 -0.108578 0.468751 +v -0.104534 -0.110913 0.468751 +v -0.104534 -0.110913 0.460914 +v -0.110913 -0.104534 0.460914 +v -0.108578 -0.095821 0.460914 +v -0.099865 -0.093486 0.460914 +v -0.093486 -0.099865 0.460914 +v -0.093486 -0.099865 0.468751 +v -0.110913 -0.104534 0.468751 +v -0.108578 -0.095821 0.468751 +v -0.099865 -0.093486 0.468751 +v -0.144532 0.009021 -0.460912 +v -0.144532 0.009021 -0.468749 +v -0.152344 0.004510 -0.468749 +v -0.152344 0.004510 -0.460912 +v -0.152344 -0.004511 -0.460912 +v -0.144532 -0.009021 -0.460912 +v -0.136720 -0.004511 -0.460912 +v -0.136720 0.004510 -0.460912 +v -0.136720 0.004510 -0.468749 +v -0.152344 -0.004511 -0.468749 +v -0.144532 -0.009021 -0.468749 +v -0.136720 -0.004511 -0.468749 +v -0.144532 -0.009021 0.460914 +v -0.144532 -0.009021 0.468751 +v -0.152344 -0.004510 0.468751 +v -0.152344 -0.004510 0.460914 +v -0.152344 0.004511 0.460914 +v -0.144532 0.009021 0.460914 +v -0.136720 0.004510 0.460914 +v -0.136720 -0.004510 0.460914 +v -0.136720 -0.004510 0.468751 +v -0.152344 0.004511 0.468751 +v -0.144532 0.009021 0.468751 +v -0.136720 0.004510 0.468751 +v -0.095821 0.108578 -0.460912 +v -0.095821 0.108578 -0.468749 +v -0.104534 0.110913 -0.468749 +v -0.104534 0.110913 -0.460912 +v -0.110913 0.104534 -0.460912 +v -0.108578 0.095821 -0.460912 +v -0.099865 0.093486 -0.460912 +v -0.093486 0.099865 -0.460912 +v -0.093486 0.099865 -0.468749 +v -0.110913 0.104534 -0.468749 +v -0.108578 0.095821 -0.468749 +v -0.099865 0.093486 -0.468749 +v -0.108578 0.095821 0.460914 +v -0.108578 0.095821 0.468751 +v -0.110913 0.104534 0.468751 +v -0.110913 0.104534 0.460914 +v -0.104534 0.110913 0.460914 +v -0.095821 0.108578 0.460914 +v -0.093486 0.099865 0.460914 +v -0.099865 0.093486 0.460914 +v -0.099865 0.093486 0.468751 +v -0.104534 0.110913 0.468751 +v -0.095821 0.108578 0.468751 +v -0.093486 0.099865 0.468751 +v 0.009021 0.144532 -0.460912 +v 0.009021 0.144532 -0.468749 +v 0.004510 0.152344 -0.468749 +v 0.004510 0.152344 -0.460912 +v -0.004510 0.152344 -0.460912 +v -0.009021 0.144532 -0.460912 +v -0.004510 0.136720 -0.460912 +v 0.004510 0.136720 -0.460912 +v 0.004510 0.136720 -0.468749 +v -0.004510 0.152344 -0.468749 +v -0.009021 0.144532 -0.468749 +v -0.004510 0.136720 -0.468749 +v -0.009021 0.144532 0.460914 +v -0.009021 0.144532 0.468751 +v -0.004510 0.152344 0.468751 +v -0.004510 0.152344 0.460914 +v 0.004510 0.152344 0.460914 +v 0.009021 0.144532 0.460914 +v 0.004510 0.136720 0.460914 +v -0.004510 0.136720 0.460914 +v -0.004510 0.136720 0.468751 +v 0.004510 0.152344 0.468751 +v 0.009021 0.144532 0.468751 +v 0.004510 0.136720 0.468751 +v 0.108578 0.095821 -0.460912 +v 0.108578 0.095821 -0.468749 +v 0.110913 0.104534 -0.468749 +v 0.110913 0.104534 -0.460912 +v 0.104534 0.110913 -0.460912 +v 0.095821 0.108578 -0.460912 +v 0.093486 0.099865 -0.460912 +v 0.099865 0.093486 -0.460912 +v 0.099865 0.093486 -0.468749 +v 0.104534 0.110913 -0.468749 +v 0.095821 0.108578 -0.468749 +v 0.093486 0.099865 -0.468749 +v 0.095821 0.108578 0.460914 +v 0.095821 0.108578 0.468751 +v 0.104534 0.110913 0.468751 +v 0.104534 0.110913 0.460914 +v 0.110913 0.104534 0.460914 +v 0.108578 0.095821 0.460914 +v 0.099865 0.093486 0.460914 +v 0.093486 0.099865 0.460914 +v 0.093486 0.099865 0.468751 +v 0.110913 0.104534 0.468751 +v 0.108578 0.095821 0.468751 +v 0.099865 0.093486 0.468751 +v 0.144532 -0.009021 -0.460912 +v 0.144532 -0.009021 -0.468749 +v 0.152344 -0.004510 -0.468749 +v 0.152344 -0.004510 -0.460912 +v 0.152344 0.004510 -0.460912 +v 0.144532 0.009021 -0.460912 +v 0.136720 0.004510 -0.460912 +v 0.136720 -0.004510 -0.460912 +v 0.136720 -0.004510 -0.468749 +v 0.152344 0.004510 -0.468749 +v 0.144532 0.009021 -0.468749 +v 0.136720 0.004510 -0.468749 +v 0.144532 0.009021 0.460914 +v 0.144532 0.009021 0.468751 +v 0.152344 0.004510 0.468751 +v 0.152344 0.004510 0.460914 +v 0.152344 -0.004510 0.460914 +v 0.144532 -0.009021 0.460914 +v 0.136720 -0.004510 0.460914 +v 0.136720 0.004510 0.460914 +v 0.136720 0.004510 0.468751 +v 0.152344 -0.004510 0.468751 +v 0.144532 -0.009021 0.468751 +v 0.136720 -0.004510 0.468751 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.4412 0.9276 +vt 0.4630 0.9493 +vt 0.4886 0.9664 +vt 0.5170 0.9782 +vt 0.5472 0.9842 +vt 0.5780 0.9842 +vt 0.6082 0.9782 +vt 0.6366 0.9664 +vt 0.6622 0.9493 +vt 0.6840 0.9276 +vt 0.7011 0.9020 +vt 0.7129 0.8735 +vt 0.7189 0.8434 +vt 0.7189 0.8126 +vt 0.7129 0.7824 +vt 0.7011 0.7539 +vt 0.6840 0.7283 +vt 0.6622 0.7066 +vt 0.6366 0.6895 +vt 0.6082 0.6777 +vt 0.5780 0.6717 +vt 0.5472 0.6717 +vt 0.5170 0.6777 +vt 0.4886 0.6895 +vt 0.4630 0.7066 +vt 0.4412 0.7283 +vt 0.4241 0.7539 +vt 0.4124 0.7824 +vt 0.4063 0.8126 +vt 0.4063 0.8434 +vt 0.4124 0.8735 +vt 0.4241 0.9020 +vt 0.2332 0.6777 +vt 0.2616 0.6895 +vt 0.2872 0.7066 +vt 0.3090 0.7283 +vt 0.3261 0.7539 +vt 0.3379 0.7824 +vt 0.3439 0.8126 +vt 0.3439 0.8434 +vt 0.3379 0.8735 +vt 0.3261 0.9020 +vt 0.3090 0.9276 +vt 0.2872 0.9493 +vt 0.2616 0.9664 +vt 0.2332 0.9782 +vt 0.2030 0.9842 +vt 0.1722 0.9842 +vt 0.1420 0.9782 +vt 0.1136 0.9664 +vt 0.0880 0.9493 +vt 0.0662 0.9276 +vt 0.0491 0.9020 +vt 0.0374 0.8735 +vt 0.0313 0.8434 +vt 0.0313 0.8126 +vt 0.0374 0.7824 +vt 0.0491 0.7539 +vt 0.0662 0.7283 +vt 0.0880 0.7066 +vt 0.1136 0.6895 +vt 0.1420 0.6777 +vt 0.1722 0.6717 +vt 0.2030 0.6717 +vt 0.5780 0.6717 +vt 0.6082 0.6777 +vt 0.6366 0.6895 +vt 0.6622 0.7066 +vt 0.6840 0.7283 +vt 0.7011 0.7539 +vt 0.7129 0.7824 +vt 0.7189 0.8126 +vt 0.7189 0.8434 +vt 0.7129 0.8735 +vt 0.7011 0.9020 +vt 0.6840 0.9276 +vt 0.6622 0.9493 +vt 0.6366 0.9664 +vt 0.6082 0.9782 +vt 0.5780 0.9842 +vt 0.5472 0.9842 +vt 0.5170 0.9782 +vt 0.4886 0.9664 +vt 0.4630 0.9493 +vt 0.4412 0.9276 +vt 0.4241 0.9020 +vt 0.4124 0.8735 +vt 0.4063 0.8434 +vt 0.4063 0.8126 +vt 0.4124 0.7824 +vt 0.4241 0.7539 +vt 0.4412 0.7283 +vt 0.4630 0.7066 +vt 0.4886 0.6895 +vt 0.5170 0.6777 +vt 0.5472 0.6717 +vt 0.1136 0.6895 +vt 0.0880 0.7066 +vt 0.0662 0.7283 +vt 0.0491 0.7539 +vt 0.0374 0.7824 +vt 0.0313 0.8126 +vt 0.0313 0.8434 +vt 0.0374 0.8735 +vt 0.0491 0.9020 +vt 0.0662 0.9276 +vt 0.0880 0.9493 +vt 0.1136 0.9664 +vt 0.1420 0.9782 +vt 0.1722 0.9842 +vt 0.2030 0.9842 +vt 0.2332 0.9782 +vt 0.2616 0.9664 +vt 0.2872 0.9493 +vt 0.3090 0.9276 +vt 0.3261 0.9020 +vt 0.3379 0.8735 +vt 0.3439 0.8434 +vt 0.3439 0.8126 +vt 0.3379 0.7824 +vt 0.3261 0.7539 +vt 0.3090 0.7283 +vt 0.2872 0.7066 +vt 0.2616 0.6895 +vt 0.2332 0.6777 +vt 0.2030 0.6717 +vt 0.1722 0.6717 +vt 0.1420 0.6777 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.4412 0.9276 +vt 0.4630 0.9493 +vt 0.4886 0.9664 +vt 0.5170 0.9782 +vt 0.5472 0.9842 +vt 0.5780 0.9842 +vt 0.6082 0.9782 +vt 0.6366 0.9664 +vt 0.6622 0.9493 +vt 0.6840 0.9276 +vt 0.7011 0.9020 +vt 0.7129 0.8735 +vt 0.7189 0.8434 +vt 0.7189 0.8126 +vt 0.7129 0.7824 +vt 0.7011 0.7539 +vt 0.6840 0.7283 +vt 0.6622 0.7066 +vt 0.6366 0.6895 +vt 0.6082 0.6777 +vt 0.5780 0.6717 +vt 0.5472 0.6717 +vt 0.5170 0.6777 +vt 0.4886 0.6895 +vt 0.4630 0.7066 +vt 0.4412 0.7283 +vt 0.4241 0.7539 +vt 0.4124 0.7824 +vt 0.4063 0.8126 +vt 0.4063 0.8434 +vt 0.4124 0.8735 +vt 0.4241 0.9020 +vt 0.2332 0.6777 +vt 0.2616 0.6895 +vt 0.2872 0.7066 +vt 0.3090 0.7283 +vt 0.3261 0.7539 +vt 0.3379 0.7824 +vt 0.3439 0.8126 +vt 0.3439 0.8434 +vt 0.3379 0.8735 +vt 0.3261 0.9020 +vt 0.3090 0.9276 +vt 0.2872 0.9493 +vt 0.2616 0.9664 +vt 0.2332 0.9782 +vt 0.2030 0.9842 +vt 0.1722 0.9842 +vt 0.1420 0.9782 +vt 0.1136 0.9664 +vt 0.0880 0.9493 +vt 0.0662 0.9276 +vt 0.0491 0.9020 +vt 0.0374 0.8735 +vt 0.0313 0.8434 +vt 0.0313 0.8126 +vt 0.0374 0.7824 +vt 0.0491 0.7539 +vt 0.0662 0.7283 +vt 0.0880 0.7066 +vt 0.1136 0.6895 +vt 0.1420 0.6777 +vt 0.1722 0.6717 +vt 0.2030 0.6717 +vt 0.5780 0.6717 +vt 0.6082 0.6777 +vt 0.6366 0.6895 +vt 0.6622 0.7066 +vt 0.6840 0.7283 +vt 0.7011 0.7539 +vt 0.7129 0.7824 +vt 0.7189 0.8126 +vt 0.7189 0.8434 +vt 0.7129 0.8735 +vt 0.7011 0.9020 +vt 0.6840 0.9276 +vt 0.6622 0.9493 +vt 0.6366 0.9664 +vt 0.6082 0.9782 +vt 0.5780 0.9842 +vt 0.5472 0.9842 +vt 0.5170 0.9782 +vt 0.4886 0.9664 +vt 0.4630 0.9493 +vt 0.4412 0.9276 +vt 0.4241 0.9020 +vt 0.4124 0.8735 +vt 0.4063 0.8434 +vt 0.4063 0.8126 +vt 0.4124 0.7824 +vt 0.4241 0.7539 +vt 0.4412 0.7283 +vt 0.4630 0.7066 +vt 0.4886 0.6895 +vt 0.5170 0.6777 +vt 0.5472 0.6717 +vt 0.1136 0.6895 +vt 0.0880 0.7066 +vt 0.0662 0.7283 +vt 0.0491 0.7539 +vt 0.0374 0.7824 +vt 0.0313 0.8126 +vt 0.0313 0.8434 +vt 0.0374 0.8735 +vt 0.0491 0.9020 +vt 0.0662 0.9276 +vt 0.0880 0.9493 +vt 0.1136 0.9664 +vt 0.1420 0.9782 +vt 0.1722 0.9842 +vt 0.2030 0.9842 +vt 0.2332 0.9782 +vt 0.2616 0.9664 +vt 0.2872 0.9493 +vt 0.3090 0.9276 +vt 0.3261 0.9020 +vt 0.3379 0.8735 +vt 0.3439 0.8434 +vt 0.3439 0.8126 +vt 0.3379 0.7824 +vt 0.3261 0.7539 +vt 0.3090 0.7283 +vt 0.2872 0.7066 +vt 0.2616 0.6895 +vt 0.2332 0.6777 +vt 0.2030 0.6717 +vt 0.1722 0.6717 +vt 0.1420 0.6777 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.4412 0.9276 +vt 0.4630 0.9493 +vt 0.4886 0.9664 +vt 0.5170 0.9782 +vt 0.5472 0.9842 +vt 0.5780 0.9842 +vt 0.6082 0.9782 +vt 0.6366 0.9664 +vt 0.6622 0.9493 +vt 0.6840 0.9276 +vt 0.7011 0.9020 +vt 0.7129 0.8735 +vt 0.7189 0.8434 +vt 0.7189 0.8126 +vt 0.7129 0.7824 +vt 0.7011 0.7539 +vt 0.6840 0.7283 +vt 0.6622 0.7066 +vt 0.6366 0.6895 +vt 0.6082 0.6777 +vt 0.5780 0.6717 +vt 0.5472 0.6717 +vt 0.5170 0.6777 +vt 0.4886 0.6895 +vt 0.4630 0.7066 +vt 0.4412 0.7283 +vt 0.4241 0.7539 +vt 0.4124 0.7824 +vt 0.4063 0.8126 +vt 0.4063 0.8434 +vt 0.4124 0.8735 +vt 0.4241 0.9020 +vt 0.2332 0.6777 +vt 0.2616 0.6895 +vt 0.2872 0.7066 +vt 0.3090 0.7283 +vt 0.3261 0.7539 +vt 0.3379 0.7824 +vt 0.3439 0.8126 +vt 0.3439 0.8434 +vt 0.3379 0.8735 +vt 0.3261 0.9020 +vt 0.3090 0.9276 +vt 0.2872 0.9493 +vt 0.2616 0.9664 +vt 0.2332 0.9782 +vt 0.2030 0.9842 +vt 0.1722 0.9842 +vt 0.1420 0.9782 +vt 0.1136 0.9664 +vt 0.0880 0.9493 +vt 0.0662 0.9276 +vt 0.0491 0.9020 +vt 0.0374 0.8735 +vt 0.0313 0.8434 +vt 0.0313 0.8126 +vt 0.0374 0.7824 +vt 0.0491 0.7539 +vt 0.0662 0.7283 +vt 0.0880 0.7066 +vt 0.1136 0.6895 +vt 0.1420 0.6777 +vt 0.1722 0.6717 +vt 0.2030 0.6717 +vt 0.5780 0.6717 +vt 0.6082 0.6777 +vt 0.6366 0.6895 +vt 0.6622 0.7066 +vt 0.6840 0.7283 +vt 0.7011 0.7539 +vt 0.7129 0.7824 +vt 0.7189 0.8126 +vt 0.7189 0.8434 +vt 0.7129 0.8735 +vt 0.7011 0.9020 +vt 0.6840 0.9276 +vt 0.6622 0.9493 +vt 0.6366 0.9664 +vt 0.6082 0.9782 +vt 0.5780 0.9842 +vt 0.5472 0.9842 +vt 0.5170 0.9782 +vt 0.4886 0.9664 +vt 0.4630 0.9493 +vt 0.4412 0.9276 +vt 0.4241 0.9020 +vt 0.4124 0.8735 +vt 0.4063 0.8434 +vt 0.4063 0.8126 +vt 0.4124 0.7824 +vt 0.4241 0.7539 +vt 0.4412 0.7283 +vt 0.4630 0.7066 +vt 0.4886 0.6895 +vt 0.5170 0.6777 +vt 0.5472 0.6717 +vt 0.1136 0.6895 +vt 0.0880 0.7066 +vt 0.0662 0.7283 +vt 0.0491 0.7539 +vt 0.0374 0.7824 +vt 0.0313 0.8126 +vt 0.0313 0.8434 +vt 0.0374 0.8735 +vt 0.0491 0.9020 +vt 0.0662 0.9276 +vt 0.0880 0.9493 +vt 0.1136 0.9664 +vt 0.1420 0.9782 +vt 0.1722 0.9842 +vt 0.2030 0.9842 +vt 0.2332 0.9782 +vt 0.2616 0.9664 +vt 0.2872 0.9493 +vt 0.3090 0.9276 +vt 0.3261 0.9020 +vt 0.3379 0.8735 +vt 0.3439 0.8434 +vt 0.3439 0.8126 +vt 0.3379 0.7824 +vt 0.3261 0.7539 +vt 0.3090 0.7283 +vt 0.2872 0.7066 +vt 0.2616 0.6895 +vt 0.2332 0.6777 +vt 0.2030 0.6717 +vt 0.1722 0.6717 +vt 0.1420 0.6777 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.4688 0.5898 +vt 0.4688 0.5664 +vt 0.5000 0.5664 +vt 0.5000 0.5898 +vt 0.4375 0.5898 +vt 0.4375 0.5664 +vt 0.4062 0.5898 +vt 0.4062 0.5664 +vt 0.3750 0.5898 +vt 0.3750 0.5664 +vt 0.3438 0.5898 +vt 0.3438 0.5664 +vt 0.3125 0.5898 +vt 0.3125 0.5664 +vt 0.2812 0.5898 +vt 0.2812 0.5664 +vt 0.2500 0.5898 +vt 0.2500 0.5664 +vt 0.2188 0.5898 +vt 0.2188 0.5664 +vt 0.1875 0.5898 +vt 0.1875 0.5664 +vt 0.1562 0.5898 +vt 0.1562 0.5664 +vt 0.1250 0.5898 +vt 0.1250 0.5664 +vt 0.0938 0.5898 +vt 0.0938 0.5664 +vt 0.0625 0.5898 +vt 0.0625 0.5664 +vt 0.0937 0.5664 +vt 0.0312 0.5898 +vt 0.0312 0.5664 +vt 0.0000 0.5898 +vt 0.0000 0.5664 +vt 0.9688 0.5898 +vt 0.9688 0.5664 +vt 1.0000 0.5664 +vt 1.0000 0.5898 +vt 0.9375 0.5898 +vt 0.9375 0.5664 +vt 0.9062 0.5898 +vt 0.9062 0.5664 +vt 0.8750 0.5898 +vt 0.8750 0.5664 +vt 0.8125 0.5898 +vt 0.8125 0.5664 +vt 0.8438 0.5664 +vt 0.8438 0.5898 +vt 0.7812 0.5898 +vt 0.7812 0.5664 +vt 0.7500 0.5898 +vt 0.7500 0.5664 +vt 0.7188 0.5898 +vt 0.7188 0.5664 +vt 0.6875 0.5898 +vt 0.6875 0.5664 +vt 0.6250 0.5898 +vt 0.6250 0.5664 +vt 0.6562 0.5664 +vt 0.6562 0.5898 +vt 0.5938 0.5898 +vt 0.5938 0.5664 +vt 0.5625 0.5898 +vt 0.5625 0.5664 +vt 0.6340 0.5124 +vt 0.6340 0.4980 +vt 0.6649 0.4980 +vt 0.6649 0.5123 +vt 0.6959 0.5124 +vt 0.6959 0.4980 +vt 0.7268 0.5123 +vt 0.7268 0.4980 +vt 0.7577 0.5123 +vt 0.7578 0.4980 +vt 0.7886 0.5124 +vt 0.7887 0.4980 +vt 0.8196 0.5125 +vt 0.8196 0.4980 +vt 0.8506 0.4981 +vt 0.8505 0.5124 +vt 0.8814 0.5125 +vt 0.8815 0.4981 +vt 0.9123 0.5126 +vt 0.9125 0.4982 +vt 0.9434 0.5128 +vt 0.9436 0.4983 +vt 0.9747 0.4983 +vt 0.9745 0.5128 +vt 1.0057 0.4984 +vt 1.0055 0.5128 +vt 1.0366 0.5128 +vt 1.0367 0.4984 +vt 1.0677 0.4984 +vt 1.0677 0.5129 +vt 1.0988 0.4984 +vt 1.0988 0.5128 +vt 1.1301 0.5129 +vt 1.1297 0.4983 +vt 1.1607 0.4982 +vt 1.1617 0.5126 +vt 1.1934 0.5121 +vt 1.1912 0.4978 +vt 0.1983 0.5120 +vt 0.2004 0.4977 +vt 0.2310 0.4981 +vt 0.2300 0.5126 +vt 0.2617 0.5129 +vt 0.2621 0.4982 +vt 0.2933 0.4983 +vt 0.2932 0.5129 +vt 0.3244 0.4982 +vt 0.3245 0.5127 +vt 0.3553 0.4982 +vt 0.3554 0.5126 +vt 0.3863 0.4982 +vt 0.3864 0.5126 +vt 0.4172 0.4981 +vt 0.4173 0.5125 +vt 0.4481 0.4981 +vt 0.4482 0.5124 +vt 0.5101 0.5125 +vt 0.4791 0.5124 +vt 0.4790 0.4981 +vt 0.5100 0.4980 +vt 0.5720 0.5124 +vt 0.5410 0.5124 +vt 0.5410 0.4980 +vt 0.5719 0.4980 +vt 0.6030 0.5125 +vt 0.6030 0.4980 +vt 0.9458 0.1999 +vt 0.9147 0.2024 +vt 0.9151 0.0339 +vt 0.9458 0.0339 +vt 0.9770 0.1999 +vt 0.9767 0.0339 +vt 1.0081 0.2024 +vt 1.0075 0.0339 +vt 0.8835 0.2074 +vt 0.8843 0.0339 +vt 1.0393 0.2073 +vt 1.0383 0.0339 +vt 0.8524 0.2146 +vt 0.8536 0.0338 +vt 1.0705 0.2145 +vt 1.0691 0.0339 +vt 0.8368 0.2192 +vt 0.8212 0.2146 +vt 0.8228 0.0338 +vt 0.9459 0.0196 +vt 0.9151 0.0196 +vt 0.9767 0.0195 +vt 1.0076 0.0195 +vt 1.1017 0.2145 +vt 1.0862 0.2191 +vt 1.0999 0.0340 +vt 0.7902 0.2074 +vt 0.7920 0.0337 +vt 0.8844 0.0196 +vt 1.0385 0.0195 +vt 1.1328 0.2072 +vt 1.1306 0.0342 +vt 0.7591 0.2024 +vt 0.7611 0.0336 +vt 0.8537 0.0195 +vt 1.0694 0.0196 +vt 1.1640 0.2021 +vt 1.1610 0.0344 +vt 0.7280 0.1998 +vt 0.7302 0.0335 +vt 0.8229 0.0194 +vt 0.6875 0.5898 +vt 0.6875 0.5664 +vt 0.7188 0.5664 +vt 0.7188 0.5898 +vt 0.7812 0.5898 +vt 0.7812 0.5664 +vt 0.8125 0.5664 +vt 0.8125 0.5898 +vt 1.1004 0.0197 +vt 0.6562 0.5898 +vt 0.6562 0.5664 +vt 0.7921 0.0194 +vt 0.8438 0.5664 +vt 0.8438 0.5898 +vt 1.1314 0.0198 +vt 0.6250 0.5898 +vt 0.6250 0.5664 +vt 0.2280 0.1990 +vt 0.1969 0.1988 +vt 0.2015 0.0321 +vt 0.2327 0.0318 +vt 0.6968 0.1998 +vt 0.6656 0.2023 +vt 0.6685 0.0333 +vt 0.6994 0.0334 +vt 0.7613 0.0193 +vt 0.5938 0.5898 +vt 0.5938 0.5664 +vt 1.1624 0.0202 +vt 0.5312 0.5898 +vt 0.5312 0.5664 +vt 0.5625 0.5664 +vt 0.5625 0.5898 +vt 0.7304 0.0192 +vt 0.8750 0.5664 +vt 0.8750 0.5898 +vt 1.1934 0.0209 +vt 1.1908 0.0349 +vt 0.5000 0.5898 +vt 0.5000 0.5664 +vt 0.2906 0.2066 +vt 0.2593 0.2016 +vt 0.2642 0.0317 +vt 0.2956 0.0317 +vt 0.6344 0.2072 +vt 0.6031 0.2144 +vt 0.6066 0.0331 +vt 0.6375 0.0332 +vt 0.6995 0.0191 +vt 0.9062 0.5664 +vt 0.9062 0.5898 +vt 0.2320 0.0171 +vt 0.1997 0.0175 +vt 0.5312 0.5664 +vt 0.5312 0.5898 +vt 0.4688 0.5898 +vt 0.4688 0.5664 +vt 0.3218 0.2139 +vt 0.3268 0.0318 +vt 0.5875 0.2190 +vt 0.5719 0.2143 +vt 0.5757 0.0330 +vt 0.6686 0.0189 +vt 0.9375 0.5664 +vt 0.9375 0.5898 +vt 0.2641 0.0170 +vt 0.4375 0.5898 +vt 0.4375 0.5664 +vt 0.6377 0.0188 +vt 0.9688 0.5664 +vt 0.9688 0.5898 +vt 0.2958 0.0171 +vt 0.4062 0.5898 +vt 0.4062 0.5664 +vt 0.6068 0.0187 +vt 0.0000 0.5898 +vt 0.0000 0.5664 +vt 0.0312 0.5664 +vt 0.0312 0.5898 +vt 0.3271 0.0173 +vt 1.0000 0.5664 +vt 1.0000 0.5898 +vt 0.4160 0.2019 +vt 0.3846 0.2068 +vt 0.3892 0.0320 +vt 0.4204 0.0322 +vt 0.5097 0.2021 +vt 0.4786 0.1994 +vt 0.4827 0.0325 +vt 0.5137 0.0327 +vt 0.5759 0.0186 +vt 0.0625 0.5664 +vt 0.0625 0.5898 +vt 0.7500 0.5664 +vt 0.7500 0.5898 +vt 0.3583 0.0174 +vt 0.3580 0.0320 +vt 0.3750 0.5898 +vt 0.3750 0.5664 +vt 0.4473 0.1994 +vt 0.4516 0.0324 +vt 0.5450 0.0184 +vt 0.5447 0.0328 +vt 0.0937 0.5664 +vt 0.0938 0.5898 +vt 0.3895 0.0175 +vt 0.3438 0.5898 +vt 0.3438 0.5664 +vt 0.5140 0.0183 +vt 0.0938 0.5664 +vt 0.1250 0.5664 +vt 0.1250 0.5898 +vt 0.4208 0.0177 +vt 0.3125 0.5898 +vt 0.3125 0.5664 +vt 0.4830 0.0181 +vt 0.1562 0.5664 +vt 0.1562 0.5898 +vt 0.4519 0.0179 +vt 0.2812 0.5898 +vt 0.2812 0.5664 +vt 0.2500 0.5898 +vt 0.2500 0.5664 +vt 0.1875 0.5664 +vt 0.1875 0.5898 +vt 0.2188 0.5898 +vt 0.2188 0.5664 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6339 0.3241 +vt 0.6650 0.3290 +vt 0.6962 0.3316 +vt 0.7273 0.3316 +vt 0.7585 0.3291 +vt 0.7897 0.3241 +vt 0.8209 0.3169 +vt 0.8365 0.3124 +vt 0.8521 0.3170 +vt 0.8832 0.3242 +vt 0.9143 0.3292 +vt 0.9455 0.3318 +vt 0.9767 0.3318 +vt 1.0079 0.3293 +vt 1.0391 0.3244 +vt 1.0705 0.3172 +vt 1.0862 0.3126 +vt 1.1018 0.3172 +vt 1.1329 0.3245 +vt 1.1642 0.3296 +vt 1.1955 0.3322 +vt 0.1964 0.3319 +vt 0.2277 0.3318 +vt 0.2591 0.3292 +vt 0.2903 0.3241 +vt 0.3215 0.3169 +vt 0.3372 0.3122 +vt 0.3528 0.3168 +vt 0.3842 0.3241 +vt 0.4155 0.3290 +vt 0.4467 0.3316 +vt 0.4779 0.3315 +vt 0.5091 0.3290 +vt 0.5403 0.3240 +vt 0.5715 0.3168 +vt 0.5871 0.3122 +vt 0.6027 0.3168 +vt 1.1952 0.1995 +vt 0.3531 0.2140 +vt 0.3374 0.2186 +vt 0.5409 0.2071 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.4688 0.5898 +vt 0.4688 0.5664 +vt 0.5000 0.5664 +vt 0.5000 0.5898 +vt 0.4375 0.5898 +vt 0.4375 0.5664 +vt 0.4062 0.5898 +vt 0.4062 0.5664 +vt 0.3750 0.5898 +vt 0.3750 0.5664 +vt 0.3438 0.5898 +vt 0.3438 0.5664 +vt 0.3125 0.5898 +vt 0.3125 0.5664 +vt 0.2812 0.5898 +vt 0.2812 0.5664 +vt 0.2500 0.5898 +vt 0.2500 0.5664 +vt 0.2188 0.5898 +vt 0.2188 0.5664 +vt 0.1875 0.5898 +vt 0.1875 0.5664 +vt 0.1562 0.5898 +vt 0.1562 0.5664 +vt 0.1250 0.5898 +vt 0.1250 0.5664 +vt 0.0938 0.5898 +vt 0.0938 0.5664 +vt 0.0625 0.5898 +vt 0.0625 0.5664 +vt 0.0937 0.5664 +vt 0.0312 0.5898 +vt 0.0312 0.5664 +vt 0.0000 0.5898 +vt 0.0000 0.5664 +vt 0.9688 0.5898 +vt 0.9688 0.5664 +vt 1.0000 0.5664 +vt 1.0000 0.5898 +vt 0.9375 0.5898 +vt 0.9375 0.5664 +vt 0.9062 0.5898 +vt 0.9062 0.5664 +vt 0.8750 0.5898 +vt 0.8750 0.5664 +vt 0.8125 0.5898 +vt 0.8125 0.5664 +vt 0.8438 0.5664 +vt 0.8438 0.5898 +vt 0.7812 0.5898 +vt 0.7812 0.5664 +vt 0.7500 0.5898 +vt 0.7500 0.5664 +vt 0.7188 0.5898 +vt 0.7188 0.5664 +vt 0.6875 0.5898 +vt 0.6875 0.5664 +vt 0.6250 0.5898 +vt 0.6250 0.5664 +vt 0.6562 0.5664 +vt 0.6562 0.5898 +vt 0.5938 0.5898 +vt 0.5938 0.5664 +vt 0.5625 0.5898 +vt 0.5625 0.5664 +vt 0.6340 0.5124 +vt 0.6340 0.4980 +vt 0.6649 0.4980 +vt 0.6649 0.5123 +vt 0.6959 0.5124 +vt 0.6959 0.4980 +vt 0.7268 0.5123 +vt 0.7268 0.4980 +vt 0.7577 0.5123 +vt 0.7578 0.4980 +vt 0.7886 0.5124 +vt 0.7887 0.4980 +vt 0.8196 0.5125 +vt 0.8196 0.4980 +vt 0.8506 0.4981 +vt 0.8505 0.5124 +vt 0.8814 0.5125 +vt 0.8815 0.4981 +vt 0.9123 0.5126 +vt 0.9125 0.4982 +vt 0.9434 0.5128 +vt 0.9436 0.4983 +vt 0.9747 0.4983 +vt 0.9745 0.5128 +vt 1.0057 0.4984 +vt 1.0055 0.5128 +vt 1.0366 0.5128 +vt 1.0367 0.4984 +vt 1.0677 0.4984 +vt 1.0677 0.5129 +vt 1.0988 0.4984 +vt 1.0988 0.5128 +vt 1.1301 0.5129 +vt 1.1297 0.4983 +vt 1.1607 0.4982 +vt 1.1617 0.5126 +vt 1.1934 0.5121 +vt 1.1912 0.4978 +vt 0.1983 0.5120 +vt 0.2004 0.4977 +vt 0.2310 0.4981 +vt 0.2300 0.5126 +vt 0.2617 0.5129 +vt 0.2621 0.4982 +vt 0.2933 0.4983 +vt 0.2932 0.5129 +vt 0.3244 0.4982 +vt 0.3245 0.5127 +vt 0.3553 0.4982 +vt 0.3554 0.5126 +vt 0.3863 0.4982 +vt 0.3864 0.5126 +vt 0.4172 0.4981 +vt 0.4173 0.5125 +vt 0.4481 0.4981 +vt 0.4482 0.5124 +vt 0.5101 0.5125 +vt 0.4791 0.5124 +vt 0.4790 0.4981 +vt 0.5100 0.4980 +vt 0.5720 0.5124 +vt 0.5410 0.5124 +vt 0.5410 0.4980 +vt 0.5719 0.4980 +vt 0.6030 0.5125 +vt 0.6030 0.4980 +vt 0.9458 0.1999 +vt 0.9147 0.2024 +vt 0.9151 0.0339 +vt 0.9458 0.0339 +vt 0.9770 0.1999 +vt 0.9767 0.0339 +vt 1.0081 0.2024 +vt 1.0075 0.0339 +vt 0.8835 0.2074 +vt 0.8843 0.0339 +vt 1.0393 0.2073 +vt 1.0383 0.0339 +vt 0.8524 0.2146 +vt 0.8536 0.0338 +vt 1.0705 0.2145 +vt 1.0691 0.0339 +vt 0.8368 0.2192 +vt 0.8212 0.2146 +vt 0.8228 0.0338 +vt 0.9459 0.0196 +vt 0.9151 0.0196 +vt 0.9767 0.0195 +vt 1.0076 0.0195 +vt 1.1017 0.2145 +vt 1.0862 0.2191 +vt 1.0999 0.0340 +vt 0.7902 0.2074 +vt 0.7920 0.0337 +vt 0.8844 0.0196 +vt 1.0385 0.0195 +vt 1.1328 0.2072 +vt 1.1306 0.0342 +vt 0.7591 0.2024 +vt 0.7611 0.0336 +vt 0.8537 0.0195 +vt 1.0694 0.0196 +vt 1.1640 0.2021 +vt 1.1610 0.0344 +vt 0.7280 0.1998 +vt 0.7302 0.0335 +vt 0.8229 0.0194 +vt 0.6875 0.5898 +vt 0.6875 0.5664 +vt 0.7188 0.5664 +vt 0.7188 0.5898 +vt 0.7812 0.5898 +vt 0.7812 0.5664 +vt 0.8125 0.5664 +vt 0.8125 0.5898 +vt 1.1004 0.0197 +vt 0.6562 0.5898 +vt 0.6562 0.5664 +vt 0.7921 0.0194 +vt 0.8438 0.5664 +vt 0.8438 0.5898 +vt 1.1314 0.0198 +vt 0.6250 0.5898 +vt 0.6250 0.5664 +vt 0.2280 0.1990 +vt 0.1969 0.1988 +vt 0.2015 0.0321 +vt 0.2327 0.0318 +vt 0.6968 0.1998 +vt 0.6656 0.2023 +vt 0.6685 0.0333 +vt 0.6994 0.0334 +vt 0.7613 0.0193 +vt 0.5938 0.5898 +vt 0.5938 0.5664 +vt 1.1624 0.0202 +vt 0.5312 0.5898 +vt 0.5312 0.5664 +vt 0.5625 0.5664 +vt 0.5625 0.5898 +vt 0.7304 0.0192 +vt 0.8750 0.5664 +vt 0.8750 0.5898 +vt 1.1934 0.0209 +vt 1.1908 0.0349 +vt 0.5000 0.5898 +vt 0.5000 0.5664 +vt 0.2906 0.2066 +vt 0.2593 0.2016 +vt 0.2642 0.0317 +vt 0.2956 0.0317 +vt 0.6344 0.2072 +vt 0.6031 0.2144 +vt 0.6066 0.0331 +vt 0.6375 0.0332 +vt 0.6995 0.0191 +vt 0.9062 0.5664 +vt 0.9062 0.5898 +vt 0.2320 0.0171 +vt 0.1997 0.0175 +vt 0.5312 0.5664 +vt 0.5312 0.5898 +vt 0.4688 0.5898 +vt 0.4688 0.5664 +vt 0.3218 0.2139 +vt 0.3268 0.0318 +vt 0.5875 0.2190 +vt 0.5719 0.2143 +vt 0.5757 0.0330 +vt 0.6686 0.0189 +vt 0.9375 0.5664 +vt 0.9375 0.5898 +vt 0.2641 0.0170 +vt 0.4375 0.5898 +vt 0.4375 0.5664 +vt 0.6377 0.0188 +vt 0.9688 0.5664 +vt 0.9688 0.5898 +vt 0.2958 0.0171 +vt 0.4062 0.5898 +vt 0.4062 0.5664 +vt 0.6068 0.0187 +vt 0.0000 0.5898 +vt 0.0000 0.5664 +vt 0.0312 0.5664 +vt 0.0312 0.5898 +vt 0.3271 0.0173 +vt 1.0000 0.5664 +vt 1.0000 0.5898 +vt 0.4160 0.2019 +vt 0.3846 0.2068 +vt 0.3892 0.0320 +vt 0.4204 0.0322 +vt 0.5097 0.2021 +vt 0.4786 0.1994 +vt 0.4827 0.0325 +vt 0.5137 0.0327 +vt 0.5759 0.0186 +vt 0.0625 0.5664 +vt 0.0625 0.5898 +vt 0.7500 0.5664 +vt 0.7500 0.5898 +vt 0.3583 0.0174 +vt 0.3580 0.0320 +vt 0.3750 0.5898 +vt 0.3750 0.5664 +vt 0.4473 0.1994 +vt 0.4516 0.0324 +vt 0.5450 0.0184 +vt 0.5447 0.0328 +vt 0.0937 0.5664 +vt 0.0938 0.5898 +vt 0.3895 0.0175 +vt 0.3438 0.5898 +vt 0.3438 0.5664 +vt 0.5140 0.0183 +vt 0.0938 0.5664 +vt 0.1250 0.5664 +vt 0.1250 0.5898 +vt 0.4208 0.0177 +vt 0.3125 0.5898 +vt 0.3125 0.5664 +vt 0.4830 0.0181 +vt 0.1562 0.5664 +vt 0.1562 0.5898 +vt 0.4519 0.0179 +vt 0.2812 0.5898 +vt 0.2812 0.5664 +vt 0.2500 0.5898 +vt 0.2500 0.5664 +vt 0.1875 0.5664 +vt 0.1875 0.5898 +vt 0.2188 0.5898 +vt 0.2188 0.5664 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6339 0.3241 +vt 0.6650 0.3290 +vt 0.6962 0.3316 +vt 0.7273 0.3316 +vt 0.7585 0.3291 +vt 0.7897 0.3241 +vt 0.8209 0.3169 +vt 0.8365 0.3124 +vt 0.8521 0.3170 +vt 0.8832 0.3242 +vt 0.9143 0.3292 +vt 0.9455 0.3318 +vt 0.9767 0.3318 +vt 1.0079 0.3293 +vt 1.0391 0.3244 +vt 1.0705 0.3172 +vt 1.0862 0.3126 +vt 1.1018 0.3172 +vt 1.1329 0.3245 +vt 1.1642 0.3296 +vt 1.1955 0.3322 +vt 0.1964 0.3319 +vt 0.2277 0.3318 +vt 0.2591 0.3292 +vt 0.2903 0.3241 +vt 0.3215 0.3169 +vt 0.3372 0.3122 +vt 0.3528 0.3168 +vt 0.3842 0.3241 +vt 0.4155 0.3290 +vt 0.4467 0.3316 +vt 0.4779 0.3315 +vt 0.5091 0.3290 +vt 0.5403 0.3240 +vt 0.5715 0.3168 +vt 0.5871 0.3122 +vt 0.6027 0.3168 +vt 1.1952 0.1995 +vt 0.3531 0.2140 +vt 0.3374 0.2186 +vt 0.5409 0.2071 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.4688 0.5898 +vt 0.4688 0.5664 +vt 0.5000 0.5664 +vt 0.5000 0.5898 +vt 0.4375 0.5898 +vt 0.4375 0.5664 +vt 0.4062 0.5898 +vt 0.4062 0.5664 +vt 0.3750 0.5898 +vt 0.3750 0.5664 +vt 0.3438 0.5898 +vt 0.3438 0.5664 +vt 0.3125 0.5898 +vt 0.3125 0.5664 +vt 0.2812 0.5898 +vt 0.2812 0.5664 +vt 0.2500 0.5898 +vt 0.2500 0.5664 +vt 0.2188 0.5898 +vt 0.2188 0.5664 +vt 0.1875 0.5898 +vt 0.1875 0.5664 +vt 0.1562 0.5898 +vt 0.1562 0.5664 +vt 0.1250 0.5898 +vt 0.1250 0.5664 +vt 0.0938 0.5898 +vt 0.0938 0.5664 +vt 0.0625 0.5898 +vt 0.0625 0.5664 +vt 0.0937 0.5664 +vt 0.0312 0.5898 +vt 0.0312 0.5664 +vt 0.0000 0.5898 +vt 0.0000 0.5664 +vt 0.9688 0.5898 +vt 0.9688 0.5664 +vt 1.0000 0.5664 +vt 1.0000 0.5898 +vt 0.9375 0.5898 +vt 0.9375 0.5664 +vt 0.9062 0.5898 +vt 0.9062 0.5664 +vt 0.8750 0.5898 +vt 0.8750 0.5664 +vt 0.8125 0.5898 +vt 0.8125 0.5664 +vt 0.8438 0.5664 +vt 0.8438 0.5898 +vt 0.7812 0.5898 +vt 0.7812 0.5664 +vt 0.7500 0.5898 +vt 0.7500 0.5664 +vt 0.7188 0.5898 +vt 0.7188 0.5664 +vt 0.6875 0.5898 +vt 0.6875 0.5664 +vt 0.6250 0.5898 +vt 0.6250 0.5664 +vt 0.6562 0.5664 +vt 0.6562 0.5898 +vt 0.5938 0.5898 +vt 0.5938 0.5664 +vt 0.5625 0.5898 +vt 0.5625 0.5664 +vt 0.6340 0.5124 +vt 0.6340 0.4980 +vt 0.6649 0.4980 +vt 0.6649 0.5123 +vt 0.6959 0.5124 +vt 0.6959 0.4980 +vt 0.7268 0.5123 +vt 0.7268 0.4980 +vt 0.7577 0.5123 +vt 0.7578 0.4980 +vt 0.7886 0.5124 +vt 0.7887 0.4980 +vt 0.8196 0.5125 +vt 0.8196 0.4980 +vt 0.8506 0.4981 +vt 0.8505 0.5124 +vt 0.8814 0.5125 +vt 0.8815 0.4981 +vt 0.9123 0.5126 +vt 0.9125 0.4982 +vt 0.9434 0.5128 +vt 0.9436 0.4983 +vt 0.9747 0.4983 +vt 0.9745 0.5128 +vt 1.0057 0.4984 +vt 1.0055 0.5128 +vt 1.0366 0.5128 +vt 1.0367 0.4984 +vt 1.0677 0.4984 +vt 1.0677 0.5129 +vt 1.0988 0.4984 +vt 1.0988 0.5128 +vt 1.1301 0.5129 +vt 1.1297 0.4983 +vt 1.1607 0.4982 +vt 1.1617 0.5126 +vt 1.1934 0.5121 +vt 1.1912 0.4978 +vt 0.1983 0.5120 +vt 0.2004 0.4977 +vt 0.2310 0.4981 +vt 0.2300 0.5126 +vt 0.2617 0.5129 +vt 0.2621 0.4982 +vt 0.2933 0.4983 +vt 0.2932 0.5129 +vt 0.3244 0.4982 +vt 0.3245 0.5127 +vt 0.3553 0.4982 +vt 0.3554 0.5126 +vt 0.3863 0.4982 +vt 0.3864 0.5126 +vt 0.4172 0.4981 +vt 0.4173 0.5125 +vt 0.4481 0.4981 +vt 0.4482 0.5124 +vt 0.5101 0.5125 +vt 0.4791 0.5124 +vt 0.4790 0.4981 +vt 0.5100 0.4980 +vt 0.5720 0.5124 +vt 0.5410 0.5124 +vt 0.5410 0.4980 +vt 0.5719 0.4980 +vt 0.6030 0.5125 +vt 0.6030 0.4980 +vt 0.9458 0.1999 +vt 0.9147 0.2024 +vt 0.9151 0.0339 +vt 0.9458 0.0339 +vt 0.9770 0.1999 +vt 0.9767 0.0339 +vt 1.0081 0.2024 +vt 1.0075 0.0339 +vt 0.8835 0.2074 +vt 0.8843 0.0339 +vt 1.0393 0.2073 +vt 1.0383 0.0339 +vt 0.8524 0.2146 +vt 0.8536 0.0338 +vt 1.0705 0.2145 +vt 1.0691 0.0339 +vt 0.8212 0.2146 +vt 0.8228 0.0338 +vt 0.9459 0.0196 +vt 0.9151 0.0196 +vt 0.9767 0.0195 +vt 1.0076 0.0195 +vt 1.1017 0.2145 +vt 1.0862 0.2191 +vt 1.0999 0.0340 +vt 0.7902 0.2074 +vt 0.7920 0.0337 +vt 0.8844 0.0196 +vt 1.0385 0.0195 +vt 1.1328 0.2072 +vt 1.1306 0.0342 +vt 0.7591 0.2024 +vt 0.7611 0.0336 +vt 0.8537 0.0195 +vt 1.0694 0.0196 +vt 1.1640 0.2021 +vt 1.1610 0.0344 +vt 0.7280 0.1998 +vt 0.7302 0.0335 +vt 0.8229 0.0194 +vt 0.6875 0.5898 +vt 0.6875 0.5664 +vt 0.7188 0.5664 +vt 0.7188 0.5898 +vt 0.7812 0.5898 +vt 0.7812 0.5664 +vt 0.8125 0.5664 +vt 0.8125 0.5898 +vt 1.1004 0.0197 +vt 0.6562 0.5898 +vt 0.6562 0.5664 +vt 0.7921 0.0194 +vt 0.8438 0.5664 +vt 0.8438 0.5898 +vt 1.1314 0.0198 +vt 0.6250 0.5898 +vt 0.6250 0.5664 +vt 0.2280 0.1990 +vt 0.1969 0.1988 +vt 0.2015 0.0321 +vt 0.2327 0.0318 +vt 0.6968 0.1998 +vt 0.6656 0.2023 +vt 0.6685 0.0333 +vt 0.6994 0.0334 +vt 0.7613 0.0193 +vt 0.5938 0.5898 +vt 0.5938 0.5664 +vt 1.1624 0.0202 +vt 0.5312 0.5898 +vt 0.5312 0.5664 +vt 0.5625 0.5664 +vt 0.5625 0.5898 +vt 0.7304 0.0192 +vt 0.8750 0.5664 +vt 0.8750 0.5898 +vt 1.1934 0.0209 +vt 1.1908 0.0349 +vt 0.5000 0.5898 +vt 0.5000 0.5664 +vt 0.2906 0.2066 +vt 0.2593 0.2016 +vt 0.2642 0.0317 +vt 0.2956 0.0317 +vt 0.6344 0.2072 +vt 0.6031 0.2144 +vt 0.6066 0.0331 +vt 0.6375 0.0332 +vt 0.6995 0.0191 +vt 0.9062 0.5664 +vt 0.9062 0.5898 +vt 0.2320 0.0171 +vt 0.1997 0.0175 +vt 0.5312 0.5664 +vt 0.5312 0.5898 +vt 0.4688 0.5898 +vt 0.4688 0.5664 +vt 0.3218 0.2139 +vt 0.3268 0.0318 +vt 0.5875 0.2190 +vt 0.5719 0.2143 +vt 0.5757 0.0330 +vt 0.6686 0.0189 +vt 0.9375 0.5664 +vt 0.9375 0.5898 +vt 0.2641 0.0170 +vt 0.4375 0.5898 +vt 0.4375 0.5664 +vt 0.6377 0.0188 +vt 0.9688 0.5664 +vt 0.9688 0.5898 +vt 0.2958 0.0171 +vt 0.4062 0.5898 +vt 0.4062 0.5664 +vt 0.6068 0.0187 +vt 0.0000 0.5898 +vt 0.0000 0.5664 +vt 0.0312 0.5664 +vt 0.0312 0.5898 +vt 0.3271 0.0173 +vt 1.0000 0.5664 +vt 1.0000 0.5898 +vt 0.4160 0.2019 +vt 0.3846 0.2068 +vt 0.3892 0.0320 +vt 0.4204 0.0322 +vt 0.5097 0.2021 +vt 0.4786 0.1994 +vt 0.4827 0.0325 +vt 0.5137 0.0327 +vt 0.5759 0.0186 +vt 0.0625 0.5664 +vt 0.0625 0.5898 +vt 0.7500 0.5664 +vt 0.7500 0.5898 +vt 0.3583 0.0174 +vt 0.3580 0.0320 +vt 0.3750 0.5898 +vt 0.3750 0.5664 +vt 0.4473 0.1994 +vt 0.4516 0.0324 +vt 0.5450 0.0184 +vt 0.5447 0.0328 +vt 0.0937 0.5664 +vt 0.0938 0.5898 +vt 0.3895 0.0175 +vt 0.3438 0.5898 +vt 0.3438 0.5664 +vt 0.5140 0.0183 +vt 0.0938 0.5664 +vt 0.1250 0.5664 +vt 0.1250 0.5898 +vt 0.4208 0.0177 +vt 0.3125 0.5898 +vt 0.3125 0.5664 +vt 0.4830 0.0181 +vt 0.1562 0.5664 +vt 0.1562 0.5898 +vt 0.4519 0.0179 +vt 0.2812 0.5898 +vt 0.2812 0.5664 +vt 0.2500 0.5898 +vt 0.2500 0.5664 +vt 0.1875 0.5664 +vt 0.1875 0.5898 +vt 0.2188 0.5898 +vt 0.2188 0.5664 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6339 0.3241 +vt 0.6650 0.3290 +vt 0.6962 0.3316 +vt 0.7273 0.3316 +vt 0.7585 0.3291 +vt 0.7897 0.3241 +vt 0.8209 0.3169 +vt 0.8365 0.3124 +vt 0.8521 0.3170 +vt 0.8832 0.3242 +vt 0.9143 0.3292 +vt 0.9455 0.3318 +vt 0.9767 0.3318 +vt 1.0079 0.3293 +vt 1.0391 0.3244 +vt 1.0705 0.3172 +vt 1.0862 0.3126 +vt 1.1018 0.3172 +vt 1.1329 0.3245 +vt 1.1642 0.3296 +vt 1.1955 0.3322 +vt 0.1964 0.3319 +vt 0.2277 0.3318 +vt 0.2591 0.3292 +vt 0.2903 0.3241 +vt 0.3215 0.3169 +vt 0.3528 0.3168 +vt 0.3842 0.3241 +vt 0.4155 0.3290 +vt 0.4467 0.3316 +vt 0.4779 0.3315 +vt 0.5091 0.3290 +vt 0.5403 0.3240 +vt 0.5715 0.3168 +vt 0.5871 0.3122 +vt 0.6027 0.3168 +vt 1.1952 0.1995 +vt 0.3531 0.2140 +vt 0.3374 0.2186 +vt 0.5409 0.2071 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vn -1.0000 -0.0000 0.0000 +vn 1.0000 -0.0000 0.0000 +vn 0.0000 1.0000 0.0000 +vn 0.0000 -1.0000 -0.0000 +vn 0.0000 0.0000 1.0000 +vn 0.0000 0.0000 -1.0000 +vn 0.6857 0.2113 -0.6965 +vn -0.6857 0.2113 -0.6965 +vn -0.6857 0.3431 -0.6419 +vn 0.6857 0.3431 -0.6419 +vn 0.6857 0.0713 -0.7244 +vn -0.6857 0.0713 -0.7244 +vn 0.6857 -0.0713 -0.7244 +vn -0.6857 -0.0713 -0.7244 +vn 0.6857 -0.2113 -0.6965 +vn -0.6857 -0.2113 -0.6965 +vn 0.6857 -0.3431 -0.6419 +vn -0.6857 -0.3431 -0.6419 +vn 0.6857 -0.4617 -0.5626 +vn -0.6857 -0.4617 -0.5626 +vn 0.6857 -0.5626 -0.4617 +vn -0.6857 -0.5626 -0.4617 +vn 0.6857 -0.6419 -0.3431 +vn -0.6857 -0.6419 -0.3431 +vn 0.6857 -0.6965 -0.2113 +vn -0.6857 -0.6965 -0.2113 +vn 0.6857 -0.7244 -0.0713 +vn -0.6857 -0.7244 -0.0713 +vn 0.6857 -0.7244 0.0713 +vn -0.6857 -0.7244 0.0713 +vn 0.6857 -0.6965 0.2113 +vn -0.6857 -0.6965 0.2113 +vn 0.6857 -0.6419 0.3431 +vn -0.6857 -0.6419 0.3431 +vn 0.6857 -0.5626 0.4617 +vn -0.6857 -0.5626 0.4617 +vn 0.6857 -0.4617 0.5626 +vn -0.6857 -0.4617 0.5626 +vn 0.6857 -0.3431 0.6419 +vn -0.6857 -0.3431 0.6419 +vn 0.6857 -0.2113 0.6965 +vn -0.6857 -0.2113 0.6965 +vn 0.6857 -0.0713 0.7244 +vn -0.6857 -0.0713 0.7244 +vn 0.6857 0.0713 0.7244 +vn -0.6857 0.0713 0.7244 +vn 0.6857 0.2113 0.6965 +vn -0.6857 0.2113 0.6965 +vn 0.6857 0.4617 0.5626 +vn -0.6857 0.4617 0.5626 +vn -0.6857 0.3431 0.6419 +vn 0.6857 0.3431 0.6419 +vn 0.6857 0.5626 0.4617 +vn -0.6857 0.5626 0.4617 +vn 0.6857 0.6419 0.3431 +vn -0.6857 0.6419 0.3431 +vn 0.6857 0.6965 0.2113 +vn -0.6857 0.6965 0.2113 +vn 0.6857 0.7244 0.0713 +vn -0.6857 0.7244 0.0713 +vn 0.6857 0.6965 -0.2113 +vn -0.6857 0.6965 -0.2113 +vn -0.6857 0.7244 -0.0713 +vn 0.6857 0.7244 -0.0713 +vn 0.6857 0.6419 -0.3431 +vn -0.6857 0.6419 -0.3431 +vn 0.6857 0.5626 -0.4617 +vn -0.6857 0.5626 -0.4617 +vn 0.2147 0.8614 0.4604 +vn 0.1087 0.8767 0.4686 +vn 0.1087 0.9513 0.2886 +vn 0.2147 0.9346 0.2835 +vn 0.2147 0.9720 0.0957 +vn 0.1087 0.9893 0.0974 +vn 0.2147 0.9720 -0.0957 +vn 0.1087 0.9893 -0.0974 +vn 0.2147 0.9346 -0.2835 +vn 0.1087 0.9513 -0.2886 +vn 0.2147 0.8614 -0.4604 +vn 0.1087 0.8767 -0.4686 +vn 0.2147 0.7550 -0.6196 +vn 0.1087 0.7684 -0.6306 +vn 0.1087 0.6306 -0.7684 +vn 0.2147 0.6196 -0.7550 +vn 0.2147 0.4604 -0.8614 +vn 0.1087 0.4686 -0.8767 +vn 0.2147 0.2835 -0.9346 +vn 0.1087 0.2886 -0.9513 +vn 0.2147 0.0957 -0.9720 +vn 0.1087 0.0974 -0.9893 +vn 0.1087 -0.0974 -0.9893 +vn 0.2147 -0.0957 -0.9720 +vn 0.1087 -0.2886 -0.9513 +vn 0.2147 -0.2835 -0.9346 +vn 0.2147 -0.4604 -0.8614 +vn 0.1087 -0.4686 -0.8767 +vn 0.1087 -0.6306 -0.7684 +vn 0.2147 -0.6196 -0.7550 +vn 0.1087 -0.7684 -0.6306 +vn 0.2147 -0.7550 -0.6196 +vn 0.2147 -0.8614 -0.4604 +vn 0.1087 -0.8767 -0.4686 +vn 0.1087 -0.9513 -0.2886 +vn 0.2147 -0.9346 -0.2835 +vn 0.2147 -0.9720 -0.0957 +vn 0.1087 -0.9893 -0.0974 +vn 0.1087 -0.9893 0.0974 +vn 0.2147 -0.9720 0.0957 +vn 0.2147 -0.9346 0.2835 +vn 0.1087 -0.9513 0.2886 +vn 0.1087 -0.8767 0.4686 +vn 0.2147 -0.8614 0.4604 +vn 0.1087 -0.7684 0.6306 +vn 0.2147 -0.7550 0.6196 +vn 0.1087 -0.6306 0.7684 +vn 0.2147 -0.6196 0.7550 +vn 0.1087 -0.4686 0.8767 +vn 0.2147 -0.4604 0.8614 +vn 0.1087 -0.2886 0.9513 +vn 0.2147 -0.2835 0.9346 +vn 0.1087 -0.0974 0.9893 +vn 0.2147 -0.0957 0.9720 +vn 0.2147 0.2835 0.9346 +vn 0.2147 0.0957 0.9720 +vn 0.1087 0.0974 0.9893 +vn 0.1087 0.2886 0.9513 +vn 0.2147 0.6196 0.7550 +vn 0.2147 0.4604 0.8614 +vn 0.1087 0.4686 0.8767 +vn 0.1087 0.6306 0.7684 +vn 0.2147 0.7550 0.6196 +vn 0.1087 0.7684 0.6306 +vn 0.6995 0.1458 -0.6995 +vn 0.6437 0.4139 -0.6437 +vn -0.1087 0.2886 -0.9513 +vn -0.1087 0.0974 -0.9893 +vn 0.6995 -0.1458 -0.6995 +vn -0.1087 -0.0974 -0.9893 +vn 0.6437 -0.4139 -0.6437 +vn -0.1087 -0.2886 -0.9513 +vn 0.5510 0.6267 -0.5510 +vn -0.1087 0.4686 -0.8767 +vn 0.5510 -0.6267 -0.5510 +vn -0.1087 -0.4686 -0.8767 +vn 0.4431 0.7793 -0.4431 +vn -0.1087 0.6306 -0.7684 +vn 0.4431 -0.7793 -0.4431 +vn -0.1087 -0.6306 -0.7684 +vn 0.5773 0.5773 -0.5773 +vn 0.4431 0.4431 -0.7793 +vn -0.1087 0.7684 -0.6306 +vn -0.2147 0.0957 -0.9720 +vn -0.2147 0.2835 -0.9346 +vn -0.2147 -0.0957 -0.9720 +vn -0.2147 -0.2835 -0.9346 +vn 0.4431 -0.4431 -0.7793 +vn 0.5773 -0.5773 -0.5773 +vn -0.1087 -0.7684 -0.6306 +vn 0.5510 0.5510 -0.6267 +vn -0.1087 0.8767 -0.4686 +vn -0.2147 0.4604 -0.8614 +vn -0.2147 -0.4604 -0.8614 +vn 0.5510 -0.5510 -0.6267 +vn -0.1087 -0.8767 -0.4686 +vn 0.6437 0.6437 -0.4139 +vn -0.1087 0.9513 -0.2886 +vn -0.2147 0.6196 -0.7550 +vn -0.2147 -0.6196 -0.7550 +vn 0.6437 -0.6437 -0.4139 +vn -0.1087 -0.9513 -0.2886 +vn 0.6995 0.6995 -0.1458 +vn -0.1087 0.9893 -0.0974 +vn -0.2147 0.7550 -0.6196 +vn -0.2147 -0.7550 -0.6196 +vn -0.2147 0.8614 -0.4604 +vn -0.2147 -0.8614 -0.4604 +vn 0.6995 -0.6995 0.1458 +vn 0.6995 -0.6995 -0.1458 +vn -0.1087 -0.9893 -0.0974 +vn -0.1087 -0.9893 0.0974 +vn 0.6995 0.6995 0.1458 +vn 0.6437 0.6437 0.4139 +vn -0.1087 0.9513 0.2886 +vn -0.1087 0.9893 0.0974 +vn -0.2147 0.9346 -0.2835 +vn -0.2147 -0.9346 -0.2835 +vn -0.2147 0.9720 -0.0957 +vn -0.2147 -0.9720 -0.0957 +vn 0.5510 -0.5510 0.6267 +vn 0.6437 -0.6437 0.4139 +vn -0.1087 -0.9513 0.2886 +vn -0.1087 -0.8767 0.4686 +vn 0.5510 0.5510 0.6267 +vn 0.4431 0.4431 0.7793 +vn -0.1087 0.7684 0.6306 +vn -0.1087 0.8767 0.4686 +vn -0.2147 0.9720 0.0957 +vn -0.2147 -0.9720 0.0957 +vn -0.6857 0.4617 -0.5626 +vn 0.6857 0.4617 -0.5626 +vn 0.4431 -0.4431 0.7793 +vn -0.1087 -0.7684 0.6306 +vn 0.5773 0.5773 0.5773 +vn 0.4431 0.7793 0.4431 +vn -0.1087 0.6306 0.7684 +vn -0.2147 0.9346 0.2835 +vn -0.2147 -0.9346 0.2835 +vn -0.2147 0.8614 0.4604 +vn -0.2147 -0.8614 0.4604 +vn -0.2147 0.7550 0.6196 +vn -0.2147 -0.7550 0.6196 +vn 0.6437 -0.4139 0.6437 +vn 0.5510 -0.6267 0.5510 +vn -0.1087 -0.4686 0.8767 +vn -0.1087 -0.2886 0.9513 +vn 0.6437 0.4139 0.6437 +vn 0.6995 0.1458 0.6995 +vn -0.1087 0.0974 0.9893 +vn -0.1087 0.2886 0.9513 +vn -0.2147 0.6196 0.7550 +vn -0.2147 -0.6196 0.7550 +vn -0.1087 -0.6306 0.7684 +vn 0.6995 -0.1458 0.6995 +vn -0.1087 -0.0974 0.9893 +vn -0.2147 0.4604 0.8614 +vn -0.1087 0.4686 0.8767 +vn -0.2147 -0.4604 0.8614 +vn -0.2147 0.2835 0.9346 +vn -0.2147 -0.2835 0.9346 +vn -0.2147 0.0957 0.9720 +vn -0.2147 -0.0957 0.9720 +vn -0.6100 -0.3032 0.7321 +vn 0.0000 -0.3827 0.9239 +vn 0.0000 0.6088 0.7933 +vn -0.6100 0.4824 0.6287 +vn -0.6100 -0.7856 0.1034 +vn 0.0000 -0.9914 0.1305 +vn 0.0000 0.9914 -0.1305 +vn -0.6100 0.7856 -0.1034 +vn 0.0000 0.3827 -0.9239 +vn -0.6100 0.3032 -0.7321 +vn 0.0000 -0.6088 -0.7933 +vn -0.6100 -0.4824 -0.6287 +vn 0.6100 0.3032 -0.7321 +vn 0.6100 0.7856 -0.1034 +vn 0.6100 -0.4824 -0.6287 +vn 0.6100 0.4824 0.6287 +vn 0.6100 -0.3032 0.7321 +vn 0.6100 -0.7856 0.1034 +vn -0.6100 -0.7321 0.3032 +vn 0.0000 -0.9239 0.3827 +vn 0.0000 -0.1305 0.9914 +vn -0.6100 -0.1034 0.7856 +vn -0.6100 -0.6287 -0.4824 +vn 0.0000 -0.7933 -0.6088 +vn 0.0000 0.7933 0.6088 +vn -0.6100 0.6287 0.4824 +vn 0.0000 0.9239 -0.3827 +vn -0.6100 0.7321 -0.3032 +vn 0.0000 0.1305 -0.9914 +vn -0.6100 0.1034 -0.7856 +vn 0.6100 0.7321 -0.3032 +vn 0.6100 0.6287 0.4824 +vn 0.6100 0.1034 -0.7856 +vn 0.6100 -0.1034 0.7856 +vn 0.6100 -0.7321 0.3032 +vn 0.6100 -0.6287 -0.4824 +vn -0.6100 -0.7321 -0.3032 +vn 0.0000 -0.9239 -0.3827 +vn 0.0000 -0.7933 0.6088 +vn -0.6100 -0.6287 0.4824 +vn -0.6100 -0.1034 -0.7856 +vn 0.0000 -0.1305 -0.9914 +vn 0.0000 0.1305 0.9914 +vn -0.6100 0.1034 0.7856 +vn 0.0000 0.9239 0.3827 +vn -0.6100 0.7321 0.3032 +vn 0.0000 0.7933 -0.6088 +vn -0.6100 0.6287 -0.4824 +vn 0.6100 0.7321 0.3032 +vn 0.6100 0.1034 0.7856 +vn 0.6100 0.6287 -0.4824 +vn 0.6100 -0.6287 0.4824 +vn 0.6100 -0.7321 -0.3032 +vn 0.6100 -0.1034 -0.7856 +vn -0.6100 -0.3032 -0.7321 +vn 0.0000 -0.3827 -0.9239 +vn 0.0000 -0.9914 -0.1305 +vn -0.6100 -0.7856 -0.1034 +vn -0.6100 0.4824 -0.6287 +vn 0.0000 0.6088 -0.7933 +vn 0.0000 -0.6088 0.7933 +vn -0.6100 -0.4824 0.6287 +vn 0.0000 0.3827 0.9239 +vn -0.6100 0.3032 0.7321 +vn 0.0000 0.9914 0.1305 +vn -0.6100 0.7856 0.1034 +vn 0.6100 0.3032 0.7321 +vn 0.6100 -0.4824 0.6287 +vn 0.6100 0.7856 0.1034 +vn 0.6100 -0.7856 -0.1034 +vn 0.6100 -0.3032 -0.7321 +vn 0.6100 0.4824 -0.6287 +vn -0.5510 0.5510 0.6267 +vn -0.6437 0.6437 0.4139 +vn -0.6995 0.6995 0.1458 +vn -0.6995 0.6995 -0.1458 +vn -0.6437 0.6437 -0.4139 +vn -0.5510 0.5510 -0.6267 +vn -0.4431 0.4431 -0.7793 +vn -0.5773 0.5773 -0.5773 +vn -0.4431 0.7793 -0.4431 +vn -0.5510 0.6267 -0.5510 +vn -0.6437 0.4139 -0.6437 +vn -0.6995 0.1458 -0.6995 +vn -0.6995 -0.1458 -0.6995 +vn -0.6437 -0.4139 -0.6437 +vn -0.5510 -0.6267 -0.5510 +vn -0.4431 -0.7793 -0.4431 +vn -0.5773 -0.5773 -0.5773 +vn -0.4431 -0.4431 -0.7793 +vn -0.5510 -0.5510 -0.6267 +vn -0.6437 -0.6437 -0.4139 +vn -0.6995 -0.6995 -0.1458 +vn -0.6995 -0.6995 0.1458 +vn -0.6437 -0.6437 0.4139 +vn -0.5510 -0.5510 0.6267 +vn -0.4431 -0.4431 0.7793 +vn -0.5773 -0.5773 0.5773 +vn -0.4431 -0.7793 0.4431 +vn -0.5510 -0.6267 0.5510 +vn -0.6437 -0.4139 0.6437 +vn -0.6995 -0.1458 0.6995 +vn -0.6995 0.1458 0.6995 +vn -0.6437 0.4139 0.6437 +vn -0.5510 0.6267 0.5510 +vn -0.4431 0.7793 0.4431 +vn -0.5773 0.5773 0.5773 +vn -0.4431 0.4431 0.7793 +vn 0.4431 -0.7793 0.4431 +vn 0.5773 -0.5773 0.5773 +vn 0.5510 0.6267 0.5510 +vn -0.6100 -0.5603 0.5603 +vn 0.0000 -0.7071 0.7071 +vn 0.0000 0.2588 0.9659 +vn -0.6100 0.2051 0.7654 +vn -0.6100 -0.7654 -0.2051 +vn 0.0000 -0.9659 -0.2588 +vn 0.0000 0.9659 0.2588 +vn -0.6100 0.7654 0.2051 +vn 0.0000 0.7071 -0.7071 +vn -0.6100 0.5603 -0.5603 +vn 0.0000 -0.2588 -0.9659 +vn -0.6100 -0.2051 -0.7654 +vn 0.6100 0.5603 -0.5603 +vn 0.6100 0.7654 0.2051 +vn 0.6100 -0.2051 -0.7654 +vn 0.6100 0.2051 0.7654 +vn 0.6100 -0.5603 0.5603 +vn 0.6100 -0.7654 -0.2051 +vn -0.6100 -0.7924 0.0000 +vn 0.0000 -0.5000 0.8660 +vn -0.6100 -0.3962 0.6862 +vn -0.6100 -0.3962 -0.6862 +vn 0.0000 -0.5000 -0.8660 +vn 0.0000 0.5000 0.8660 +vn -0.6100 0.3962 0.6862 +vn -0.6100 0.7924 0.0000 +vn 0.0000 0.5000 -0.8660 +vn -0.6100 0.3962 -0.6862 +vn 0.6100 0.7924 0.0000 +vn 0.6100 0.3962 0.6862 +vn 0.6100 0.3962 -0.6862 +vn 0.6100 -0.3962 0.6862 +vn 0.6100 -0.7924 0.0000 +vn 0.6100 -0.3962 -0.6862 +vn -0.6100 -0.5603 -0.5603 +vn 0.0000 -0.7071 -0.7071 +vn 0.0000 -0.9659 0.2588 +vn -0.6100 -0.7654 0.2051 +vn -0.6100 0.2051 -0.7654 +vn 0.0000 0.2588 -0.9659 +vn 0.0000 -0.2588 0.9659 +vn -0.6100 -0.2051 0.7654 +vn 0.0000 0.7071 0.7071 +vn -0.6100 0.5603 0.5603 +vn 0.0000 0.9659 -0.2588 +vn -0.6100 0.7654 -0.2051 +vn 0.6100 0.5603 0.5603 +vn 0.6100 -0.2051 0.7654 +vn 0.6100 0.7654 -0.2051 +vn 0.6100 -0.7654 0.2051 +vn 0.6100 -0.5603 -0.5603 +vn 0.6100 0.2051 -0.7654 +vn -0.6100 0.0000 -0.7924 +vn 0.0000 -0.8660 -0.5000 +vn -0.6100 -0.6862 -0.3962 +vn -0.6100 0.6862 -0.3962 +vn 0.0000 0.8660 -0.5000 +vn 0.0000 -0.8660 0.5000 +vn -0.6100 -0.6862 0.3962 +vn -0.6100 0.0000 0.7924 +vn 0.0000 0.8660 0.5000 +vn -0.6100 0.6862 0.3962 +vn 0.6100 0.0000 0.7924 +vn 0.6100 -0.6862 0.3962 +vn 0.6100 0.6862 0.3962 +vn 0.6100 -0.6862 -0.3962 +vn 0.6100 0.0000 -0.7924 +vn 0.6100 0.6862 -0.3962 +vn 0.2113 -0.6857 -0.6965 +vn 0.2113 0.6857 -0.6965 +vn 0.3431 0.6857 -0.6419 +vn 0.3431 -0.6857 -0.6419 +vn 0.0713 -0.6857 -0.7244 +vn 0.0713 0.6857 -0.7244 +vn -0.0713 -0.6857 -0.7244 +vn -0.0713 0.6857 -0.7244 +vn -0.2113 -0.6857 -0.6965 +vn -0.2113 0.6857 -0.6965 +vn -0.3431 -0.6857 -0.6419 +vn -0.3431 0.6857 -0.6419 +vn -0.4617 -0.6857 -0.5626 +vn -0.4617 0.6857 -0.5626 +vn -0.5626 -0.6857 -0.4617 +vn -0.5626 0.6857 -0.4617 +vn -0.6419 -0.6857 -0.3431 +vn -0.6419 0.6857 -0.3431 +vn -0.6965 -0.6857 -0.2113 +vn -0.6965 0.6857 -0.2113 +vn -0.7244 -0.6857 -0.0713 +vn -0.7244 0.6857 -0.0713 +vn -0.7244 -0.6857 0.0713 +vn -0.7244 0.6857 0.0713 +vn -0.6965 -0.6857 0.2113 +vn -0.6965 0.6857 0.2113 +vn -0.6419 -0.6857 0.3431 +vn -0.6419 0.6857 0.3431 +vn -0.5626 -0.6857 0.4617 +vn -0.5626 0.6857 0.4617 +vn -0.4617 -0.6857 0.5626 +vn -0.4617 0.6857 0.5626 +vn -0.3431 -0.6857 0.6419 +vn -0.3431 0.6857 0.6419 +vn -0.2113 -0.6857 0.6965 +vn -0.2113 0.6857 0.6965 +vn -0.0713 -0.6857 0.7244 +vn -0.0713 0.6857 0.7244 +vn 0.0713 -0.6857 0.7244 +vn 0.0713 0.6857 0.7244 +vn 0.2113 -0.6857 0.6965 +vn 0.2113 0.6857 0.6965 +vn 0.4617 -0.6857 0.5626 +vn 0.4617 0.6857 0.5626 +vn 0.3431 0.6857 0.6419 +vn 0.3431 -0.6857 0.6419 +vn 0.5626 -0.6857 0.4617 +vn 0.5626 0.6857 0.4617 +vn 0.6419 -0.6857 0.3431 +vn 0.6419 0.6857 0.3431 +vn 0.6965 -0.6857 0.2113 +vn 0.6965 0.6857 0.2113 +vn 0.7244 -0.6857 0.0713 +vn 0.7244 0.6857 0.0713 +vn 0.6965 -0.6857 -0.2113 +vn 0.6965 0.6857 -0.2113 +vn 0.7244 0.6857 -0.0713 +vn 0.7244 -0.6857 -0.0713 +vn 0.6419 -0.6857 -0.3431 +vn 0.6419 0.6857 -0.3431 +vn 0.5626 -0.6857 -0.4617 +vn 0.5626 0.6857 -0.4617 +vn 0.8614 -0.2147 0.4604 +vn 0.8767 -0.1087 0.4686 +vn 0.9513 -0.1087 0.2886 +vn 0.9346 -0.2147 0.2835 +vn 0.9720 -0.2147 0.0957 +vn 0.9893 -0.1087 0.0974 +vn 0.9720 -0.2147 -0.0957 +vn 0.9893 -0.1087 -0.0974 +vn 0.9346 -0.2147 -0.2835 +vn 0.9513 -0.1087 -0.2886 +vn 0.8614 -0.2147 -0.4604 +vn 0.8767 -0.1087 -0.4686 +vn 0.7550 -0.2147 -0.6196 +vn 0.7684 -0.1087 -0.6306 +vn 0.6306 -0.1087 -0.7684 +vn 0.6196 -0.2147 -0.7550 +vn 0.4604 -0.2147 -0.8614 +vn 0.4686 -0.1087 -0.8767 +vn 0.2835 -0.2147 -0.9346 +vn 0.2886 -0.1087 -0.9513 +vn 0.0957 -0.2147 -0.9720 +vn 0.0974 -0.1087 -0.9893 +vn -0.0974 -0.1087 -0.9893 +vn -0.0957 -0.2147 -0.9720 +vn -0.2886 -0.1087 -0.9513 +vn -0.2835 -0.2147 -0.9346 +vn -0.4604 -0.2147 -0.8614 +vn -0.4686 -0.1087 -0.8767 +vn -0.6306 -0.1087 -0.7684 +vn -0.6196 -0.2147 -0.7550 +vn -0.7684 -0.1087 -0.6306 +vn -0.7550 -0.2147 -0.6196 +vn -0.8614 -0.2147 -0.4604 +vn -0.8767 -0.1087 -0.4686 +vn -0.9513 -0.1087 -0.2886 +vn -0.9346 -0.2147 -0.2835 +vn -0.9720 -0.2147 -0.0957 +vn -0.9893 -0.1087 -0.0974 +vn -0.9893 -0.1087 0.0974 +vn -0.9720 -0.2147 0.0957 +vn -0.9346 -0.2147 0.2835 +vn -0.9513 -0.1087 0.2886 +vn -0.8767 -0.1087 0.4686 +vn -0.8614 -0.2147 0.4604 +vn -0.7684 -0.1087 0.6306 +vn -0.7550 -0.2147 0.6196 +vn -0.6306 -0.1087 0.7684 +vn -0.6196 -0.2147 0.7550 +vn -0.4686 -0.1087 0.8767 +vn -0.4604 -0.2147 0.8614 +vn -0.2886 -0.1087 0.9513 +vn -0.2835 -0.2147 0.9346 +vn -0.0974 -0.1087 0.9893 +vn -0.0957 -0.2147 0.9720 +vn 0.2835 -0.2147 0.9346 +vn 0.0957 -0.2147 0.9720 +vn 0.0974 -0.1087 0.9893 +vn 0.2886 -0.1087 0.9513 +vn 0.6196 -0.2147 0.7550 +vn 0.4604 -0.2147 0.8614 +vn 0.4686 -0.1087 0.8767 +vn 0.6306 -0.1087 0.7684 +vn 0.7550 -0.2147 0.6196 +vn 0.7684 -0.1087 0.6306 +vn 0.1458 -0.6995 -0.6995 +vn 0.4139 -0.6437 -0.6437 +vn 0.2886 0.1087 -0.9513 +vn 0.0974 0.1087 -0.9893 +vn -0.1458 -0.6995 -0.6995 +vn -0.0974 0.1087 -0.9893 +vn -0.4139 -0.6437 -0.6437 +vn -0.2886 0.1087 -0.9513 +vn 0.6267 -0.5510 -0.5510 +vn 0.4686 0.1087 -0.8767 +vn -0.6267 -0.5510 -0.5510 +vn -0.4686 0.1087 -0.8767 +vn 0.7793 -0.4431 -0.4431 +vn 0.6306 0.1087 -0.7684 +vn -0.7793 -0.4431 -0.4431 +vn -0.6306 0.1087 -0.7684 +vn 0.7684 0.1087 -0.6306 +vn 0.0957 0.2147 -0.9720 +vn 0.2835 0.2147 -0.9346 +vn -0.0957 0.2147 -0.9720 +vn -0.2835 0.2147 -0.9346 +vn -0.7684 0.1087 -0.6306 +vn 0.8767 0.1087 -0.4686 +vn 0.4604 0.2147 -0.8614 +vn -0.4604 0.2147 -0.8614 +vn -0.8767 0.1087 -0.4686 +vn 0.9513 0.1087 -0.2886 +vn 0.6196 0.2147 -0.7550 +vn -0.6196 0.2147 -0.7550 +vn -0.9513 0.1087 -0.2886 +vn 0.9893 0.1087 -0.0974 +vn 0.7550 0.2147 -0.6196 +vn -0.7550 0.2147 -0.6196 +vn 0.8614 0.2147 -0.4604 +vn -0.8614 0.2147 -0.4604 +vn -0.9893 0.1087 -0.0974 +vn -0.9893 0.1087 0.0974 +vn 0.9513 0.1087 0.2886 +vn 0.9893 0.1087 0.0974 +vn 0.9346 0.2147 -0.2835 +vn -0.9346 0.2147 -0.2835 +vn 0.9720 0.2147 -0.0957 +vn -0.9720 0.2147 -0.0957 +vn -0.9513 0.1087 0.2886 +vn -0.8767 0.1087 0.4686 +vn 0.7684 0.1087 0.6306 +vn 0.8767 0.1087 0.4686 +vn 0.9720 0.2147 0.0957 +vn -0.9720 0.2147 0.0957 +vn 0.4617 0.6857 -0.5626 +vn 0.4617 -0.6857 -0.5626 +vn -0.7684 0.1087 0.6306 +vn 0.7793 -0.4431 0.4431 +vn 0.6306 0.1087 0.7684 +vn 0.9346 0.2147 0.2835 +vn -0.9346 0.2147 0.2835 +vn 0.8614 0.2147 0.4604 +vn -0.8614 0.2147 0.4604 +vn 0.7550 0.2147 0.6196 +vn -0.7550 0.2147 0.6196 +vn -0.4139 -0.6437 0.6437 +vn -0.6267 -0.5510 0.5510 +vn -0.4686 0.1087 0.8767 +vn -0.2886 0.1087 0.9513 +vn 0.4139 -0.6437 0.6437 +vn 0.1458 -0.6995 0.6995 +vn 0.0974 0.1087 0.9893 +vn 0.2886 0.1087 0.9513 +vn 0.6196 0.2147 0.7550 +vn -0.6196 0.2147 0.7550 +vn -0.6306 0.1087 0.7684 +vn -0.1458 -0.6995 0.6995 +vn -0.0974 0.1087 0.9893 +vn 0.4604 0.2147 0.8614 +vn 0.4686 0.1087 0.8767 +vn -0.4604 0.2147 0.8614 +vn 0.2835 0.2147 0.9346 +vn -0.2835 0.2147 0.9346 +vn 0.0957 0.2147 0.9720 +vn -0.0957 0.2147 0.9720 +vn -0.3032 0.6100 0.7321 +vn -0.3827 0.0000 0.9239 +vn 0.6088 0.0000 0.7933 +vn 0.4824 0.6100 0.6287 +vn -0.7856 0.6100 0.1034 +vn -0.9914 0.0000 0.1305 +vn 0.9914 0.0000 -0.1305 +vn 0.7856 0.6100 -0.1034 +vn 0.3827 0.0000 -0.9239 +vn 0.3032 0.6100 -0.7321 +vn -0.6088 0.0000 -0.7933 +vn -0.4824 0.6100 -0.6287 +vn 0.3032 -0.6100 -0.7321 +vn 0.7856 -0.6100 -0.1034 +vn -0.4824 -0.6100 -0.6287 +vn 0.4824 -0.6100 0.6287 +vn -0.3032 -0.6100 0.7321 +vn -0.7856 -0.6100 0.1034 +vn -0.7321 0.6100 0.3032 +vn -0.9239 0.0000 0.3827 +vn -0.1305 0.0000 0.9914 +vn -0.1034 0.6100 0.7856 +vn -0.6287 0.6100 -0.4824 +vn -0.7933 0.0000 -0.6088 +vn 0.7933 0.0000 0.6088 +vn 0.6287 0.6100 0.4824 +vn 0.9239 0.0000 -0.3827 +vn 0.7321 0.6100 -0.3032 +vn 0.1305 0.0000 -0.9914 +vn 0.1034 0.6100 -0.7856 +vn 0.7321 -0.6100 -0.3032 +vn 0.6287 -0.6100 0.4824 +vn 0.1034 -0.6100 -0.7856 +vn -0.1034 -0.6100 0.7856 +vn -0.7321 -0.6100 0.3032 +vn -0.6287 -0.6100 -0.4824 +vn -0.7321 0.6100 -0.3032 +vn -0.9239 0.0000 -0.3827 +vn -0.7933 0.0000 0.6088 +vn -0.6287 0.6100 0.4824 +vn -0.1034 0.6100 -0.7856 +vn -0.1305 0.0000 -0.9914 +vn 0.1305 0.0000 0.9914 +vn 0.1034 0.6100 0.7856 +vn 0.9239 0.0000 0.3827 +vn 0.7321 0.6100 0.3032 +vn 0.7933 0.0000 -0.6088 +vn 0.6287 0.6100 -0.4824 +vn 0.7321 -0.6100 0.3032 +vn 0.1034 -0.6100 0.7856 +vn 0.6287 -0.6100 -0.4824 +vn -0.6287 -0.6100 0.4824 +vn -0.7321 -0.6100 -0.3032 +vn -0.1034 -0.6100 -0.7856 +vn -0.3032 0.6100 -0.7321 +vn -0.3827 0.0000 -0.9239 +vn -0.9914 0.0000 -0.1305 +vn -0.7856 0.6100 -0.1034 +vn 0.4824 0.6100 -0.6287 +vn 0.6088 0.0000 -0.7933 +vn -0.6088 0.0000 0.7933 +vn -0.4824 0.6100 0.6287 +vn 0.3827 0.0000 0.9239 +vn 0.3032 0.6100 0.7321 +vn 0.9914 0.0000 0.1305 +vn 0.7856 0.6100 0.1034 +vn 0.3032 -0.6100 0.7321 +vn -0.4824 -0.6100 0.6287 +vn 0.7856 -0.6100 0.1034 +vn -0.7856 -0.6100 -0.1034 +vn -0.3032 -0.6100 -0.7321 +vn 0.4824 -0.6100 -0.6287 +vn 0.7793 0.4431 -0.4431 +vn 0.6267 0.5510 -0.5510 +vn 0.4139 0.6437 -0.6437 +vn 0.1458 0.6995 -0.6995 +vn -0.1458 0.6995 -0.6995 +vn -0.4139 0.6437 -0.6437 +vn -0.6267 0.5510 -0.5510 +vn -0.7793 0.4431 -0.4431 +vn -0.7793 0.4431 0.4431 +vn -0.6267 0.5510 0.5510 +vn -0.4139 0.6437 0.6437 +vn -0.1458 0.6995 0.6995 +vn 0.1458 0.6995 0.6995 +vn 0.4139 0.6437 0.6437 +vn 0.6267 0.5510 0.5510 +vn 0.7793 0.4431 0.4431 +vn -0.7793 -0.4431 0.4431 +vn 0.6267 -0.5510 0.5510 +vn -0.5603 0.6100 0.5603 +vn -0.7071 0.0000 0.7071 +vn 0.2588 0.0000 0.9659 +vn 0.2051 0.6100 0.7654 +vn -0.7654 0.6100 -0.2051 +vn -0.9659 0.0000 -0.2588 +vn 0.9659 0.0000 0.2588 +vn 0.7654 0.6100 0.2051 +vn 0.7071 0.0000 -0.7071 +vn 0.5603 0.6100 -0.5603 +vn -0.2588 0.0000 -0.9659 +vn -0.2051 0.6100 -0.7654 +vn 0.5603 -0.6100 -0.5603 +vn 0.7654 -0.6100 0.2051 +vn -0.2051 -0.6100 -0.7654 +vn 0.2051 -0.6100 0.7654 +vn -0.5603 -0.6100 0.5603 +vn -0.7654 -0.6100 -0.2051 +vn -0.7924 0.6100 0.0000 +vn -0.5000 0.0000 0.8660 +vn -0.3962 0.6100 0.6862 +vn -0.3962 0.6100 -0.6862 +vn -0.5000 0.0000 -0.8660 +vn 0.5000 0.0000 0.8660 +vn 0.3962 0.6100 0.6862 +vn 0.7924 0.6100 0.0000 +vn 0.5000 0.0000 -0.8660 +vn 0.3962 0.6100 -0.6862 +vn 0.7924 -0.6100 0.0000 +vn 0.3962 -0.6100 0.6862 +vn 0.3962 -0.6100 -0.6862 +vn -0.3962 -0.6100 0.6862 +vn -0.7924 -0.6100 0.0000 +vn -0.3962 -0.6100 -0.6862 +vn -0.5603 0.6100 -0.5603 +vn -0.7071 0.0000 -0.7071 +vn -0.9659 0.0000 0.2588 +vn -0.7654 0.6100 0.2051 +vn 0.2051 0.6100 -0.7654 +vn 0.2588 0.0000 -0.9659 +vn -0.2588 0.0000 0.9659 +vn -0.2051 0.6100 0.7654 +vn 0.7071 0.0000 0.7071 +vn 0.5603 0.6100 0.5603 +vn 0.9659 0.0000 -0.2588 +vn 0.7654 0.6100 -0.2051 +vn 0.5603 -0.6100 0.5603 +vn -0.2051 -0.6100 0.7654 +vn 0.7654 -0.6100 -0.2051 +vn -0.7654 -0.6100 0.2051 +vn -0.5603 -0.6100 -0.5603 +vn 0.2051 -0.6100 -0.7654 +vn 0.0000 0.6100 -0.7924 +vn -0.8660 0.0000 -0.5000 +vn -0.6862 0.6100 -0.3962 +vn 0.6862 0.6100 -0.3962 +vn 0.8660 0.0000 -0.5000 +vn -0.8660 0.0000 0.5000 +vn -0.6862 0.6100 0.3962 +vn 0.0000 0.6100 0.7924 +vn 0.8660 0.0000 0.5000 +vn 0.6862 0.6100 0.3962 +vn 0.0000 -0.6100 0.7924 +vn -0.6862 -0.6100 0.3962 +vn 0.6862 -0.6100 0.3962 +vn -0.6862 -0.6100 -0.3962 +vn 0.0000 -0.6100 -0.7924 +vn 0.6862 -0.6100 -0.3962 +vn 0.2113 0.6965 -0.6857 +vn 0.2113 0.6965 0.6857 +vn 0.3431 0.6419 0.6857 +vn 0.3431 0.6419 -0.6857 +vn 0.0713 0.7244 -0.6857 +vn 0.0713 0.7244 0.6857 +vn -0.0713 0.7244 -0.6857 +vn -0.0713 0.7244 0.6857 +vn -0.2113 0.6965 -0.6857 +vn -0.2113 0.6965 0.6857 +vn -0.3431 0.6419 -0.6857 +vn -0.3431 0.6419 0.6857 +vn -0.4617 0.5626 -0.6857 +vn -0.4617 0.5626 0.6857 +vn -0.5626 0.4617 -0.6857 +vn -0.5626 0.4617 0.6857 +vn -0.6419 0.3431 -0.6857 +vn -0.6419 0.3431 0.6857 +vn -0.6965 0.2113 -0.6857 +vn -0.6965 0.2113 0.6857 +vn -0.7244 0.0713 -0.6857 +vn -0.7244 0.0713 0.6857 +vn -0.7244 -0.0713 -0.6857 +vn -0.7244 -0.0713 0.6857 +vn -0.6965 -0.2113 -0.6857 +vn -0.6965 -0.2113 0.6857 +vn -0.6419 -0.3431 -0.6857 +vn -0.6419 -0.3431 0.6857 +vn -0.5626 -0.4617 -0.6857 +vn -0.5626 -0.4617 0.6857 +vn -0.4617 -0.5626 -0.6857 +vn -0.4617 -0.5626 0.6857 +vn -0.3431 -0.6419 -0.6857 +vn -0.3431 -0.6419 0.6857 +vn -0.2113 -0.6965 -0.6857 +vn -0.2113 -0.6965 0.6857 +vn -0.0713 -0.7244 -0.6857 +vn -0.0713 -0.7244 0.6857 +vn 0.0713 -0.7244 -0.6857 +vn 0.0713 -0.7244 0.6857 +vn 0.2113 -0.6965 -0.6857 +vn 0.2113 -0.6965 0.6857 +vn 0.4617 -0.5626 -0.6857 +vn 0.4617 -0.5626 0.6857 +vn 0.3431 -0.6419 0.6857 +vn 0.3431 -0.6419 -0.6857 +vn 0.5626 -0.4617 -0.6857 +vn 0.5626 -0.4617 0.6857 +vn 0.6419 -0.3431 -0.6857 +vn 0.6419 -0.3431 0.6857 +vn 0.6965 -0.2113 -0.6857 +vn 0.6965 -0.2113 0.6857 +vn 0.7244 -0.0713 -0.6857 +vn 0.7244 -0.0713 0.6857 +vn 0.6965 0.2113 -0.6857 +vn 0.6965 0.2113 0.6857 +vn 0.7244 0.0713 0.6857 +vn 0.7244 0.0713 -0.6857 +vn 0.6419 0.3431 -0.6857 +vn 0.6419 0.3431 0.6857 +vn 0.5626 0.4617 -0.6857 +vn 0.5626 0.4617 0.6857 +vn 0.8614 -0.4604 -0.2147 +vn 0.8767 -0.4686 -0.1087 +vn 0.9513 -0.2886 -0.1087 +vn 0.9346 -0.2835 -0.2147 +vn 0.9720 -0.0957 -0.2147 +vn 0.9893 -0.0974 -0.1087 +vn 0.9720 0.0957 -0.2147 +vn 0.9893 0.0974 -0.1087 +vn 0.9346 0.2835 -0.2147 +vn 0.9513 0.2886 -0.1087 +vn 0.8614 0.4604 -0.2147 +vn 0.8767 0.4686 -0.1087 +vn 0.7550 0.6196 -0.2147 +vn 0.7684 0.6306 -0.1087 +vn 0.6306 0.7684 -0.1087 +vn 0.6196 0.7550 -0.2147 +vn 0.4604 0.8614 -0.2147 +vn 0.4686 0.8767 -0.1087 +vn 0.2835 0.9346 -0.2147 +vn 0.2886 0.9513 -0.1087 +vn 0.0957 0.9720 -0.2147 +vn 0.0974 0.9893 -0.1087 +vn -0.0974 0.9893 -0.1087 +vn -0.0957 0.9720 -0.2147 +vn -0.2886 0.9513 -0.1087 +vn -0.2835 0.9346 -0.2147 +vn -0.4604 0.8614 -0.2147 +vn -0.4686 0.8767 -0.1087 +vn -0.6306 0.7684 -0.1087 +vn -0.6196 0.7550 -0.2147 +vn -0.7684 0.6306 -0.1087 +vn -0.7550 0.6196 -0.2147 +vn -0.8614 0.4604 -0.2147 +vn -0.8767 0.4686 -0.1087 +vn -0.9513 0.2886 -0.1087 +vn -0.9346 0.2835 -0.2147 +vn -0.9720 0.0957 -0.2147 +vn -0.9893 0.0974 -0.1087 +vn -0.9893 -0.0974 -0.1087 +vn -0.9720 -0.0957 -0.2147 +vn -0.9346 -0.2835 -0.2147 +vn -0.9513 -0.2886 -0.1087 +vn -0.8767 -0.4686 -0.1087 +vn -0.8614 -0.4604 -0.2147 +vn -0.7684 -0.6306 -0.1087 +vn -0.7550 -0.6196 -0.2147 +vn -0.6306 -0.7684 -0.1087 +vn -0.6196 -0.7550 -0.2147 +vn -0.4686 -0.8767 -0.1087 +vn -0.4604 -0.8614 -0.2147 +vn -0.2886 -0.9513 -0.1087 +vn -0.2835 -0.9346 -0.2147 +vn -0.0974 -0.9893 -0.1087 +vn -0.0957 -0.9720 -0.2147 +vn 0.2835 -0.9346 -0.2147 +vn 0.0957 -0.9720 -0.2147 +vn 0.0974 -0.9893 -0.1087 +vn 0.2886 -0.9513 -0.1087 +vn 0.6196 -0.7550 -0.2147 +vn 0.4604 -0.8614 -0.2147 +vn 0.4686 -0.8767 -0.1087 +vn 0.6306 -0.7684 -0.1087 +vn 0.7550 -0.6196 -0.2147 +vn 0.7684 -0.6306 -0.1087 +vn 0.2886 0.9513 0.1087 +vn 0.0974 0.9893 0.1087 +vn -0.0974 0.9893 0.1087 +vn -0.2886 0.9513 0.1087 +vn 0.4686 0.8767 0.1087 +vn -0.4686 0.8767 0.1087 +vn 0.6306 0.7684 0.1087 +vn -0.6306 0.7684 0.1087 +vn 0.7684 0.6306 0.1087 +vn 0.0957 0.9720 0.2147 +vn 0.2835 0.9346 0.2147 +vn -0.0957 0.9720 0.2147 +vn -0.2835 0.9346 0.2147 +vn -0.7684 0.6306 0.1087 +vn 0.8767 0.4686 0.1087 +vn 0.4604 0.8614 0.2147 +vn -0.4604 0.8614 0.2147 +vn -0.8767 0.4686 0.1087 +vn 0.9513 0.2886 0.1087 +vn 0.6196 0.7550 0.2147 +vn -0.6196 0.7550 0.2147 +vn -0.9513 0.2886 0.1087 +vn 0.9893 0.0974 0.1087 +vn 0.7550 0.6196 0.2147 +vn -0.7550 0.6196 0.2147 +vn 0.8614 0.4604 0.2147 +vn -0.8614 0.4604 0.2147 +vn -0.9893 0.0974 0.1087 +vn -0.9893 -0.0974 0.1087 +vn 0.9513 -0.2886 0.1087 +vn 0.9893 -0.0974 0.1087 +vn 0.9346 0.2835 0.2147 +vn -0.9346 0.2835 0.2147 +vn 0.9720 0.0957 0.2147 +vn -0.9720 0.0957 0.2147 +vn -0.9513 -0.2886 0.1087 +vn -0.8767 -0.4686 0.1087 +vn 0.7684 -0.6306 0.1087 +vn 0.8767 -0.4686 0.1087 +vn 0.9720 -0.0957 0.2147 +vn -0.9720 -0.0957 0.2147 +vn 0.4617 0.5626 0.6857 +vn 0.4617 0.5626 -0.6857 +vn -0.7684 -0.6306 0.1087 +vn 0.6306 -0.7684 0.1087 +vn 0.9346 -0.2835 0.2147 +vn -0.9346 -0.2835 0.2147 +vn 0.8614 -0.4604 0.2147 +vn -0.8614 -0.4604 0.2147 +vn 0.7550 -0.6196 0.2147 +vn -0.7550 -0.6196 0.2147 +vn -0.4686 -0.8767 0.1087 +vn -0.2886 -0.9513 0.1087 +vn 0.0974 -0.9893 0.1087 +vn 0.2886 -0.9513 0.1087 +vn 0.6196 -0.7550 0.2147 +vn -0.6196 -0.7550 0.2147 +vn -0.6306 -0.7684 0.1087 +vn -0.0974 -0.9893 0.1087 +vn 0.4604 -0.8614 0.2147 +vn 0.4686 -0.8767 0.1087 +vn -0.4604 -0.8614 0.2147 +vn 0.2835 -0.9346 0.2147 +vn -0.2835 -0.9346 0.2147 +vn 0.0957 -0.9720 0.2147 +vn -0.0957 -0.9720 0.2147 +vn -0.3032 -0.7321 0.6100 +vn -0.3827 -0.9239 0.0000 +vn 0.6088 -0.7933 0.0000 +vn 0.4824 -0.6287 0.6100 +vn -0.7856 -0.1034 0.6100 +vn -0.9914 -0.1305 0.0000 +vn 0.9914 0.1305 0.0000 +vn 0.7856 0.1034 0.6100 +vn 0.3827 0.9239 0.0000 +vn 0.3032 0.7321 0.6100 +vn -0.6088 0.7933 0.0000 +vn -0.4824 0.6287 0.6100 +vn 0.3032 0.7321 -0.6100 +vn 0.7856 0.1034 -0.6100 +vn -0.4824 0.6287 -0.6100 +vn 0.4824 -0.6287 -0.6100 +vn -0.3032 -0.7321 -0.6100 +vn -0.7856 -0.1034 -0.6100 +vn -0.7321 -0.3032 0.6100 +vn -0.9239 -0.3827 0.0000 +vn -0.1305 -0.9914 0.0000 +vn -0.1034 -0.7856 0.6100 +vn -0.6287 0.4824 0.6100 +vn -0.7933 0.6088 0.0000 +vn 0.7933 -0.6088 0.0000 +vn 0.6287 -0.4824 0.6100 +vn 0.9239 0.3827 0.0000 +vn 0.7321 0.3032 0.6100 +vn 0.1305 0.9914 0.0000 +vn 0.1034 0.7856 0.6100 +vn 0.7321 0.3032 -0.6100 +vn 0.6287 -0.4824 -0.6100 +vn 0.1034 0.7856 -0.6100 +vn -0.1034 -0.7856 -0.6100 +vn -0.7321 -0.3032 -0.6100 +vn -0.6287 0.4824 -0.6100 +vn -0.7321 0.3032 0.6100 +vn -0.9239 0.3827 0.0000 +vn -0.7933 -0.6088 0.0000 +vn -0.6287 -0.4824 0.6100 +vn -0.1034 0.7856 0.6100 +vn -0.1305 0.9914 0.0000 +vn 0.1305 -0.9914 0.0000 +vn 0.1034 -0.7856 0.6100 +vn 0.9239 -0.3827 0.0000 +vn 0.7321 -0.3032 0.6100 +vn 0.7933 0.6088 0.0000 +vn 0.6287 0.4824 0.6100 +vn 0.7321 -0.3032 -0.6100 +vn 0.1034 -0.7856 -0.6100 +vn 0.6287 0.4824 -0.6100 +vn -0.6287 -0.4824 -0.6100 +vn -0.7321 0.3032 -0.6100 +vn -0.1034 0.7856 -0.6100 +vn -0.3032 0.7321 0.6100 +vn -0.3827 0.9239 0.0000 +vn -0.9914 0.1305 0.0000 +vn -0.7856 0.1034 0.6100 +vn 0.4824 0.6287 0.6100 +vn 0.6088 0.7933 0.0000 +vn -0.6088 -0.7933 0.0000 +vn -0.4824 -0.6287 0.6100 +vn 0.3827 -0.9239 0.0000 +vn 0.3032 -0.7321 0.6100 +vn 0.9914 -0.1305 0.0000 +vn 0.7856 -0.1034 0.6100 +vn 0.3032 -0.7321 -0.6100 +vn -0.4824 -0.6287 -0.6100 +vn 0.7856 -0.1034 -0.6100 +vn -0.7856 0.1034 -0.6100 +vn -0.3032 0.7321 -0.6100 +vn 0.4824 0.6287 -0.6100 +vn -0.5603 -0.5603 0.6100 +vn -0.7071 -0.7071 0.0000 +vn 0.2588 -0.9659 0.0000 +vn 0.2051 -0.7654 0.6100 +vn -0.7654 0.2051 0.6100 +vn -0.9659 0.2588 0.0000 +vn 0.9659 -0.2588 0.0000 +vn 0.7654 -0.2051 0.6100 +vn 0.7071 0.7071 0.0000 +vn 0.5603 0.5603 0.6100 +vn -0.2588 0.9659 0.0000 +vn -0.2051 0.7654 0.6100 +vn 0.5603 0.5603 -0.6100 +vn 0.7654 -0.2051 -0.6100 +vn -0.2051 0.7654 -0.6100 +vn 0.2051 -0.7654 -0.6100 +vn -0.5603 -0.5603 -0.6100 +vn -0.7654 0.2051 -0.6100 +vn -0.7924 0.0000 0.6100 +vn -0.5000 -0.8660 0.0000 +vn -0.3962 -0.6862 0.6100 +vn -0.3962 0.6862 0.6100 +vn -0.5000 0.8660 0.0000 +vn 0.5000 -0.8660 0.0000 +vn 0.3962 -0.6862 0.6100 +vn 0.7924 0.0000 0.6100 +vn 0.5000 0.8660 0.0000 +vn 0.3962 0.6862 0.6100 +vn 0.7924 0.0000 -0.6100 +vn 0.3962 -0.6862 -0.6100 +vn 0.3962 0.6862 -0.6100 +vn -0.3962 -0.6862 -0.6100 +vn -0.7924 0.0000 -0.6100 +vn -0.3962 0.6862 -0.6100 +vn -0.5603 0.5603 0.6100 +vn -0.7071 0.7071 0.0000 +vn -0.9659 -0.2588 0.0000 +vn -0.7654 -0.2051 0.6100 +vn 0.2051 0.7654 0.6100 +vn 0.2588 0.9659 0.0000 +vn -0.2588 -0.9659 0.0000 +vn -0.2051 -0.7654 0.6100 +vn 0.7071 -0.7071 0.0000 +vn 0.5603 -0.5603 0.6100 +vn 0.9659 0.2588 0.0000 +vn 0.7654 0.2051 0.6100 +vn 0.5603 -0.5603 -0.6100 +vn -0.2051 -0.7654 -0.6100 +vn 0.7654 0.2051 -0.6100 +vn -0.7654 -0.2051 -0.6100 +vn -0.5603 0.5603 -0.6100 +vn 0.2051 0.7654 -0.6100 +vn 0.0000 0.7924 0.6100 +vn -0.8660 0.5000 0.0000 +vn -0.6862 0.3962 0.6100 +vn 0.6862 0.3962 0.6100 +vn 0.8660 0.5000 0.0000 +vn -0.8660 -0.5000 0.0000 +vn -0.6862 -0.3962 0.6100 +vn 0.0000 -0.7924 0.6100 +vn 0.8660 -0.5000 0.0000 +vn 0.6862 -0.3962 0.6100 +vn 0.0000 -0.7924 -0.6100 +vn -0.6862 -0.3962 -0.6100 +vn 0.6862 -0.3962 -0.6100 +vn -0.6862 0.3962 -0.6100 +vn 0.0000 0.7924 -0.6100 +vn 0.6862 0.3962 -0.6100 +g Pipe_Cylinder.002_None +s off +f 129/1/1 132/2/1 133/3/1 134/4/1 135/5/1 136/6/1 +f 141/7/2 144/8/2 145/9/2 146/10/2 147/11/2 148/12/2 +f 153/13/1 156/14/1 157/15/1 158/16/1 159/17/1 160/18/1 +f 165/19/2 168/20/2 169/21/2 170/22/2 171/23/2 172/24/2 +f 177/25/1 180/26/1 181/27/1 182/28/1 183/29/1 184/30/1 +f 189/31/2 192/32/2 193/33/2 194/34/2 195/35/2 196/36/2 +f 201/37/1 204/38/1 205/39/1 206/40/1 207/41/1 208/42/1 +f 213/43/2 216/44/2 217/45/2 218/46/2 219/47/2 220/48/2 +f 225/49/1 228/50/1 229/51/1 230/52/1 231/53/1 232/54/1 +f 237/55/2 240/56/2 241/57/2 242/58/2 243/59/2 244/60/2 +f 249/61/1 252/62/1 253/63/1 254/64/1 255/65/1 256/66/1 +f 261/67/2 264/68/2 265/69/2 266/70/2 267/71/2 268/72/2 +f 273/73/1 276/74/1 277/75/1 278/76/1 279/77/1 280/78/1 +f 285/79/2 288/80/2 289/81/2 290/82/2 291/83/2 292/84/2 +f 297/85/1 300/86/1 301/87/1 302/88/1 303/89/1 304/90/1 +f 309/91/2 312/92/2 313/93/2 314/94/2 315/95/2 316/96/2 +f 382/97/2 383/98/2 413/99/2 412/100/2 410/101/2 411/102/2 409/103/2 408/104/2 407/105/2 406/106/2 404/107/2 405/108/2 403/109/2 402/110/2 401/111/2 400/112/2 399/113/2 398/114/2 397/115/2 396/116/2 395/117/2 394/118/2 393/119/2 392/120/2 391/121/2 390/122/2 389/123/2 388/124/2 387/125/2 386/126/2 385/127/2 384/128/2 +f 361/129/1 378/130/1 362/131/1 363/132/1 364/133/1 365/134/1 366/135/1 379/136/1 367/137/1 368/138/1 369/139/1 380/140/1 370/141/1 381/142/1 371/143/1 372/144/1 373/145/1 374/146/1 375/147/1 350/148/1 351/149/1 352/150/1 353/151/1 354/152/1 355/153/1 356/154/1 357/155/1 358/156/1 376/157/1 359/158/1 377/159/1 360/160/1 +f 418/161/1 428/162/1 433/163/1 437/164/1 441/165/1 446/166/1 445/167/1 450/168/1 454/169/1 458/170/1 462/171/1 467/172/1 476/173/1 477/174/1 475/175/1 469/176/1 464/177/1 460/178/1 456/179/1 452/180/1 448/181/1 443/182/1 439/183/1 435/184/1 430/185/1 426/186/1 419/187/1 420/188/1 417/189/1 414/190/1 415/191/1 416/192/1 +f 422/193/2 421/194/2 427/195/2 432/196/2 431/197/2 436/198/2 440/199/2 444/200/2 449/201/2 453/202/2 457/203/2 461/204/2 465/205/2 470/206/2 466/207/2 472/208/2 471/209/2 473/210/2 474/211/2 468/212/2 463/213/2 459/214/2 455/215/2 451/216/2 447/217/2 442/218/2 438/219/2 434/220/2 429/221/2 425/222/2 424/223/2 423/224/2 +f 478/225/1 481/226/1 482/227/1 483/228/1 484/229/1 485/230/1 +f 490/231/2 493/232/2 494/233/2 495/234/2 496/235/2 497/236/2 +f 502/237/1 505/238/1 506/239/1 507/240/1 508/241/1 509/242/1 +f 514/243/2 517/244/2 518/245/2 519/246/2 520/247/2 521/248/2 +f 526/249/1 529/250/1 530/251/1 531/252/1 532/253/1 533/254/1 +f 538/255/2 541/256/2 542/257/2 543/258/2 544/259/2 545/260/2 +f 550/261/1 553/262/1 554/263/1 555/264/1 556/265/1 557/266/1 +f 562/267/2 565/268/2 566/269/2 567/270/2 568/271/2 569/272/2 +f 574/273/1 577/274/1 578/275/1 579/276/1 580/277/1 581/278/1 +f 586/279/2 589/280/2 590/281/2 591/282/2 592/283/2 593/284/2 +f 598/285/1 601/286/1 602/287/1 603/288/1 604/289/1 605/290/1 +f 610/291/2 613/292/2 614/293/2 615/294/2 616/295/2 617/296/2 +f 622/297/1 625/298/1 626/299/1 627/300/1 628/301/1 629/302/1 +f 634/303/2 637/304/2 638/305/2 639/306/2 640/307/2 641/308/2 +f 646/309/1 649/310/1 650/311/1 651/312/1 652/313/1 653/314/1 +f 658/315/2 661/316/2 662/317/2 663/318/2 664/319/2 665/320/2 +f 798/321/3 801/322/3 802/323/3 803/324/3 804/325/3 805/326/3 +f 810/327/4 813/328/4 814/329/4 815/330/4 816/331/4 817/332/4 +f 822/333/3 825/334/3 826/335/3 827/336/3 828/337/3 829/338/3 +f 834/339/4 837/340/4 838/341/4 839/342/4 840/343/4 841/344/4 +f 846/345/3 849/346/3 850/347/3 851/348/3 852/349/3 853/350/3 +f 858/351/4 861/352/4 862/353/4 863/354/4 864/355/4 865/356/4 +f 870/357/3 873/358/3 874/359/3 875/360/3 876/361/3 877/362/3 +f 882/363/4 885/364/4 886/365/4 887/366/4 888/367/4 889/368/4 +f 894/369/3 897/370/3 898/371/3 899/372/3 900/373/3 901/374/3 +f 906/375/4 909/376/4 910/377/4 911/378/4 912/379/4 913/380/4 +f 918/381/3 921/382/3 922/383/3 923/384/3 924/385/3 925/386/3 +f 930/387/4 933/388/4 934/389/4 935/390/4 936/391/4 937/392/4 +f 942/393/3 945/394/3 946/395/3 947/396/3 948/397/3 949/398/3 +f 954/399/4 957/400/4 958/401/4 959/402/4 960/403/4 961/404/4 +f 966/405/3 969/406/3 970/407/3 971/408/3 972/409/3 973/410/3 +f 978/411/4 981/412/4 982/413/4 983/414/4 984/415/4 985/416/4 +f 1064/417/4 1065/418/4 1095/419/4 1094/420/4 1092/421/4 1093/422/4 1091/423/4 1090/424/4 1089/425/4 1088/426/4 1086/427/4 1087/428/4 1085/429/4 1084/430/4 1083/431/4 1082/432/4 1081/433/4 1080/434/4 1079/435/4 1078/436/4 1077/437/4 1076/438/4 1075/439/4 1074/440/4 1073/441/4 1072/442/4 1071/443/4 1070/444/4 1069/445/4 1068/446/4 1067/447/4 1066/448/4 +f 1043/449/3 1060/450/3 1044/451/3 1045/452/3 1046/453/3 1047/454/3 1048/455/3 1061/456/3 1049/457/3 1050/458/3 1051/459/3 1062/460/3 1052/461/3 1063/462/3 1053/463/3 1054/464/3 1055/465/3 1056/466/3 1057/467/3 1032/468/3 1033/469/3 1034/470/3 1035/471/3 1036/472/3 1037/473/3 1038/474/3 1039/475/3 1040/476/3 1058/477/3 1041/478/3 1059/479/3 1042/480/3 +f 1100/481/3 1110/482/3 1115/483/3 1119/484/3 1123/485/3 1128/486/3 1127/487/3 1132/488/3 1136/489/3 1140/490/3 1144/491/3 1149/492/3 1158/493/3 1159/494/3 1157/495/3 1151/496/3 1146/497/3 1142/498/3 1138/499/3 1134/500/3 1130/501/3 1125/502/3 1121/503/3 1117/504/3 1112/505/3 1108/506/3 1101/507/3 1102/508/3 1099/509/3 1096/510/3 1097/511/3 1098/512/3 +f 1104/513/4 1103/514/4 1109/515/4 1114/516/4 1113/517/4 1118/518/4 1122/519/4 1126/520/4 1131/521/4 1135/522/4 1139/523/4 1143/524/4 1147/525/4 1152/526/4 1148/527/4 1154/528/4 1153/529/4 1155/530/4 1156/531/4 1150/532/4 1145/533/4 1141/534/4 1137/535/4 1133/536/4 1129/537/4 1124/538/4 1120/539/4 1116/540/4 1111/541/4 1107/542/4 1106/543/4 1105/544/4 +f 1160/545/3 1163/546/3 1164/547/3 1165/548/3 1166/549/3 1167/550/3 +f 1172/551/4 1175/552/4 1176/553/4 1177/554/4 1178/555/4 1179/556/4 +f 1184/557/3 1187/558/3 1188/559/3 1189/560/3 1190/561/3 1191/562/3 +f 1196/563/4 1199/564/4 1200/565/4 1201/566/4 1202/567/4 1203/568/4 +f 1208/569/3 1211/570/3 1212/571/3 1213/572/3 1214/573/3 1215/574/3 +f 1220/575/4 1223/576/4 1224/577/4 1225/578/4 1226/579/4 1227/580/4 +f 1232/581/3 1235/582/3 1236/583/3 1237/584/3 1238/585/3 1239/586/3 +f 1244/587/4 1247/588/4 1248/589/4 1249/590/4 1250/591/4 1251/592/4 +f 1256/593/3 1259/594/3 1260/595/3 1261/596/3 1262/597/3 1263/598/3 +f 1268/599/4 1271/600/4 1272/601/4 1273/602/4 1274/603/4 1275/604/4 +f 1280/605/3 1283/606/3 1284/607/3 1285/608/3 1286/609/3 1287/610/3 +f 1292/611/4 1295/612/4 1296/613/4 1297/614/4 1298/615/4 1299/616/4 +f 1304/617/3 1307/618/3 1308/619/3 1309/620/3 1310/621/3 1311/622/3 +f 1316/623/4 1319/624/4 1320/625/4 1321/626/4 1322/627/4 1323/628/4 +f 1328/629/3 1331/630/3 1332/631/3 1333/632/3 1334/633/3 1335/634/3 +f 1340/635/4 1343/636/4 1344/637/4 1345/638/4 1346/639/4 1347/640/4 +f 1480/641/5 1483/642/5 1484/643/5 1485/644/5 1486/645/5 1487/646/5 +f 1492/647/6 1495/648/6 1496/649/6 1497/650/6 1498/651/6 1499/652/6 +f 1504/653/5 1507/654/5 1508/655/5 1509/656/5 1510/657/5 1511/658/5 +f 1516/659/6 1519/660/6 1520/661/6 1521/662/6 1522/663/6 1523/664/6 +f 1528/665/5 1531/666/5 1532/667/5 1533/668/5 1534/669/5 1535/670/5 +f 1540/671/6 1543/672/6 1544/673/6 1545/674/6 1546/675/6 1547/676/6 +f 1552/677/5 1555/678/5 1556/679/5 1557/680/5 1558/681/5 1559/682/5 +f 1564/683/6 1567/684/6 1568/685/6 1569/686/6 1570/687/6 1571/688/6 +f 1576/689/5 1579/690/5 1580/691/5 1581/692/5 1582/693/5 1583/694/5 +f 1588/695/6 1591/696/6 1592/697/6 1593/698/6 1594/699/6 1595/700/6 +f 1600/701/5 1603/702/5 1604/703/5 1605/704/5 1606/705/5 1607/706/5 +f 1612/707/6 1615/708/6 1616/709/6 1617/710/6 1618/711/6 1619/712/6 +f 1624/713/5 1627/714/5 1628/715/5 1629/716/5 1630/717/5 1631/718/5 +f 1636/719/6 1639/720/6 1640/721/6 1641/722/6 1642/723/6 1643/724/6 +f 1648/725/5 1651/726/5 1652/727/5 1653/728/5 1654/729/5 1655/730/5 +f 1660/731/6 1663/732/6 1664/733/6 1665/734/6 1666/735/6 1667/736/6 +f 1737/737/6 1738/738/6 1768/739/6 1767/740/6 1765/741/6 1766/742/6 1764/743/6 1763/744/6 1762/745/6 1761/746/6 1759/747/6 1760/748/6 1758/749/6 1757/750/6 1756/751/6 1755/752/6 1754/753/6 1753/754/6 1752/755/6 1751/756/6 1750/757/6 1749/758/6 1748/759/6 1747/760/6 1746/761/6 1745/762/6 1744/763/6 1743/764/6 1742/765/6 1741/766/6 1740/767/6 1739/768/6 +f 1716/769/5 1733/770/5 1717/771/5 1718/772/5 1719/773/5 1720/774/5 1721/775/5 1734/776/5 1722/777/5 1723/778/5 1724/779/5 1735/780/5 1725/781/5 1736/782/5 1726/783/5 1727/784/5 1728/785/5 1729/786/5 1730/787/5 1705/788/5 1706/789/5 1707/790/5 1708/791/5 1709/792/5 1710/793/5 1711/794/5 1712/795/5 1713/796/5 1731/797/5 1714/798/5 1732/799/5 1715/800/5 +f 1773/801/5 1783/802/5 1788/803/5 1792/804/5 1796/805/5 1801/806/5 1800/807/5 1805/808/5 1809/809/5 1813/810/5 1817/811/5 1822/812/5 1831/813/5 1832/814/5 1830/815/5 1824/816/5 1819/817/5 1815/818/5 1811/819/5 1807/820/5 1803/821/5 1798/822/5 1794/823/5 1790/824/5 1785/825/5 1781/826/5 1774/827/5 1775/828/5 1772/829/5 1769/830/5 1770/831/5 1771/832/5 +f 1777/833/6 1776/834/6 1782/835/6 1787/836/6 1786/837/6 1791/838/6 1795/839/6 1799/840/6 1804/841/6 1808/842/6 1812/843/6 1816/844/6 1820/845/6 1825/846/6 1821/847/6 1827/848/6 1826/849/6 1828/850/6 1829/851/6 1823/852/6 1818/853/6 1814/854/6 1810/855/6 1806/856/6 1802/857/6 1797/858/6 1793/859/6 1789/860/6 1784/861/6 1780/862/6 1779/863/6 1778/864/6 +f 1833/865/5 1836/866/5 1837/867/5 1838/868/5 1839/869/5 1840/870/5 +f 1845/871/6 1848/872/6 1849/873/6 1850/874/6 1851/875/6 1852/876/6 +f 1857/877/5 1860/878/5 1861/879/5 1862/880/5 1863/881/5 1864/882/5 +f 1869/883/6 1872/884/6 1873/885/6 1874/886/6 1875/887/6 1876/888/6 +f 1881/889/5 1884/890/5 1885/891/5 1886/892/5 1887/893/5 1888/894/5 +f 1893/895/6 1896/896/6 1897/897/6 1898/898/6 1899/899/6 1900/900/6 +f 1905/901/5 1908/902/5 1909/903/5 1910/904/5 1911/905/5 1912/906/5 +f 1917/907/6 1920/908/6 1921/909/6 1922/910/6 1923/911/6 1924/912/6 +f 1929/913/5 1932/914/5 1933/915/5 1934/916/5 1935/917/5 1936/918/5 +f 1941/919/6 1944/920/6 1945/921/6 1946/922/6 1947/923/6 1948/924/6 +f 1953/925/5 1956/926/5 1957/927/5 1958/928/5 1959/929/5 1960/930/5 +f 1965/931/6 1968/932/6 1969/933/6 1970/934/6 1971/935/6 1972/936/6 +f 1977/937/5 1980/938/5 1981/939/5 1982/940/5 1983/941/5 1984/942/5 +f 1989/943/6 1992/944/6 1993/945/6 1994/946/6 1995/947/6 1996/948/6 +f 2001/949/5 2004/950/5 2005/951/5 2006/952/5 2007/953/5 2008/954/5 +f 2013/955/6 2016/956/6 2017/957/6 2018/958/6 2019/959/6 2020/960/6 +s 1 +f 385/961/7 352/962/8 351/963/9 384/964/10 +f 386/965/11 353/966/12 352/962/8 385/961/7 +f 387/967/13 354/968/14 353/966/12 386/965/11 +f 388/969/15 355/970/16 354/968/14 387/967/13 +f 389/971/17 356/972/18 355/970/16 388/969/15 +f 390/973/19 357/974/20 356/972/18 389/971/17 +f 391/975/21 358/976/22 357/974/20 390/973/19 +f 392/977/23 376/978/24 358/976/22 391/975/21 +f 393/979/25 359/980/26 376/978/24 392/977/23 +f 394/981/27 377/982/28 359/980/26 393/979/25 +f 395/983/29 360/984/30 377/982/28 394/981/27 +f 396/985/31 361/986/32 360/984/30 395/983/29 +f 397/987/33 378/988/34 361/986/32 396/985/31 +f 398/989/35 362/990/36 378/991/34 397/987/33 +f 399/992/37 363/993/38 362/990/36 398/989/35 +f 400/994/39 364/995/40 363/993/38 399/992/37 +f 401/996/41 365/997/42 364/998/40 400/999/39 +f 402/1000/43 366/1001/44 365/997/42 401/996/41 +f 403/1002/45 379/1003/46 366/1001/44 402/1000/43 +f 405/1004/47 367/1005/48 379/1003/46 403/1002/45 +f 406/1006/49 369/1007/50 368/1008/51 404/1009/52 +f 404/1009/52 368/1008/51 367/1005/48 405/1004/47 +f 407/1010/53 380/1011/54 369/1007/50 406/1006/49 +f 408/1012/55 370/1013/56 380/1011/54 407/1010/53 +f 409/1014/57 381/1015/58 370/1013/56 408/1012/55 +f 411/1016/59 371/1017/60 381/1015/58 409/1014/57 +f 412/1018/61 373/1019/62 372/1020/63 410/1021/64 +f 410/1021/64 372/1020/63 371/1017/60 411/1016/59 +f 413/1022/65 374/1023/66 373/1019/62 412/1018/61 +f 383/1024/67 375/1025/68 374/1023/66 413/1022/65 +f 30/1026/69 33/1027/70 34/1028/71 1/1029/72 +f 2/1030/73 1/1029/72 34/1028/71 35/1031/74 +f 3/1032/75 2/1030/73 35/1031/74 36/1033/76 +f 4/1034/77 3/1032/75 36/1033/76 37/1035/78 +f 5/1036/79 4/1034/77 37/1035/78 38/1037/80 +f 6/1038/81 5/1036/79 38/1037/80 39/1039/82 +f 6/1038/81 39/1039/82 40/1040/83 7/1041/84 +f 8/1042/85 7/1041/84 40/1040/83 41/1043/86 +f 9/1044/87 8/1042/85 41/1043/86 42/1045/88 +f 10/1046/89 9/1044/87 42/1045/88 43/1047/90 +f 10/1046/89 43/1047/90 44/1048/91 11/1049/92 +f 11/1049/92 44/1048/91 45/1050/93 31/1051/94 +f 12/1052/95 46/1053/96 47/1054/97 13/1055/98 +f 31/1051/94 45/1050/93 46/1053/96 12/1052/95 +f 13/1055/98 47/1054/97 48/1056/99 14/1057/100 +f 15/1058/101 14/1057/100 48/1056/99 49/1059/102 +f 15/1058/101 49/1059/102 50/1060/103 16/1061/104 +f 17/1062/105 16/1061/104 50/1060/103 51/1063/106 +f 17/1064/105 51/1065/106 52/1066/107 18/1067/108 +f 19/1068/109 18/1067/108 52/1066/107 53/1069/110 +f 19/1068/109 53/1069/110 54/1070/111 20/1071/112 +f 20/1071/112 54/1070/111 55/1072/113 22/1073/114 +f 22/1073/114 55/1072/113 56/1074/115 21/1075/116 +f 21/1075/116 56/1074/115 57/1076/117 23/1077/118 +f 23/1077/118 57/1076/117 58/1078/119 24/1079/120 +f 24/1079/120 58/1078/119 59/1080/121 32/1081/122 +f 27/1082/123 25/1083/124 60/1084/125 61/1085/126 +f 25/1083/124 32/1081/122 59/1080/121 60/1084/125 +f 28/1086/127 26/1087/128 62/1088/129 63/1089/130 +f 27/1082/123 61/1085/126 62/1088/129 26/1087/128 +f 29/1090/131 28/1086/127 63/1089/130 64/1091/132 +f 29/1090/131 64/1091/132 33/1027/70 30/1026/69 +f 1687/1092/133 1677/1093/134 65/1094/135 66/1095/136 +f 347/1096/137 1687/1092/133 66/1095/136 67/1097/138 +f 1678/1098/139 347/1096/137 67/1097/138 68/1099/140 +f 65/1094/135 1677/1093/134 1676/1100/141 69/1101/142 +f 1688/1102/143 1678/1098/139 68/1099/140 73/1103/144 +f 69/1101/142 1676/1100/141 1675/1104/145 75/1105/146 +f 1679/1106/147 1688/1102/143 73/1103/144 77/1107/148 +f 75/1105/146 1675/1104/145 1681/1108/149 990/1109/150 79/1110/151 +f 70/1111/152 66/1095/136 65/1094/135 71/1112/153 +f 72/1113/154 67/1097/138 66/1095/136 70/1111/152 +f 74/1114/155 68/1099/140 67/1097/138 72/1113/154 +f 998/1115/156 1005/1116/157 1679/1106/147 77/1107/148 81/1117/158 +f 79/1110/151 990/1109/150 323/1118/159 83/1119/160 +f 71/1112/153 65/1094/135 69/1101/142 76/1120/161 +f 78/1121/162 73/1103/144 68/1099/140 74/1114/155 +f 329/1122/163 998/1115/156 81/1117/158 85/1123/164 +f 83/1119/160 323/1118/159 324/1124/165 87/1125/166 +f 80/1126/167 76/1120/161 69/1101/142 75/1105/146 +f 82/1127/168 77/1107/148 73/1103/144 78/1121/162 +f 999/1128/169 329/1122/163 85/1123/164 89/1129/170 +f 87/1125/166 324/1124/165 330/1130/171 91/1131/172 +f 84/1132/173 80/1126/167 75/1105/146 79/1110/151 +f 417/1133/22 421/1134/21 422/1135/23 414/1136/24 +f 416/1137/28 424/1138/27 425/1139/29 418/1140/30 +f 86/1141/174 81/1117/158 77/1107/148 82/1127/168 +f 420/1142/20 427/1143/19 421/1134/21 417/1133/22 +f 88/1144/175 84/1132/173 79/1110/151 83/1119/160 +f 418/1140/30 425/1139/29 429/1145/31 428/1146/32 +f 90/1147/176 85/1123/164 81/1117/158 86/1141/174 +f 419/1148/18 432/1149/17 427/1143/19 420/1142/20 +f 1011/1150/177 325/1151/178 93/1152/179 97/1153/180 +f 1010/1154/181 1012/1155/182 99/1156/183 95/1157/184 +f 92/1158/185 88/1144/175 83/1119/160 87/1125/166 +f 426/1159/16 431/1160/15 432/1149/17 419/1148/18 +f 94/1161/186 89/1129/170 85/1123/164 90/1147/176 +f 435/1162/12 440/1163/11 436/1164/13 430/1165/14 +f 96/1166/187 92/1158/185 87/1125/166 91/1131/172 +f 428/1146/32 429/1145/31 434/1167/33 433/1168/34 +f 98/1169/188 93/1170/179 89/1129/170 94/1161/186 +f 439/1171/8 444/1172/7 440/1163/11 435/1162/12 +f 326/1173/189 1001/1174/190 101/1175/191 105/1176/192 +f 332/1177/193 1013/1178/194 107/1179/195 103/1180/196 +f 100/1181/197 96/1166/187 91/1131/172 95/1157/184 +f 433/1168/34 434/1167/33 438/1182/35 437/1183/36 +f 102/1184/198 97/1153/180 93/1152/179 98/1185/188 +f 384/964/10 351/963/9 350/1186/199 382/1187/200 +f 443/1188/9 449/1189/10 444/1172/7 439/1171/8 +f 327/1190/201 326/1173/189 105/1176/192 109/1191/202 +f 107/1179/195 1013/1178/194 1682/1192/203 1672/1193/204 111/1194/205 +f 104/1195/206 100/1181/197 95/1157/184 99/1156/183 +f 437/1183/36 438/1182/35 442/1196/37 441/1197/38 +f 106/1198/207 101/1175/191 97/1153/180 102/1184/198 +f 448/1199/199 453/1200/200 449/1189/10 443/1188/9 +f 108/1201/208 104/1195/206 99/1156/183 103/1180/196 +f 441/1197/38 442/1196/37 447/1202/39 446/1203/40 +f 110/1204/209 105/1176/192 101/1175/191 106/1198/207 +f 452/1205/68 457/1206/67 453/1200/200 448/1199/199 +f 112/1207/210 108/1201/208 103/1180/196 107/1179/195 +f 445/1208/42 451/1209/41 455/1210/43 450/1211/44 +f 110/1204/209 114/1212/211 109/1191/202 105/1176/192 +f 446/1203/40 447/1202/39 451/1213/41 445/1214/42 +f 344/1215/212 348/1216/213 117/1217/214 121/1218/215 +f 339/1219/216 341/1220/217 123/1221/218 119/1222/219 +f 116/1223/220 112/1207/210 107/1179/195 111/1194/205 +f 450/1211/44 455/1210/43 459/1224/45 454/1225/46 +f 414/1136/24 422/1135/23 423/1226/25 415/1227/26 +f 118/1228/221 113/1229/222 109/1191/202 114/1212/211 +f 456/1230/66 461/1231/65 457/1206/67 452/1205/68 +f 346/1232/223 344/1215/212 121/1218/215 125/1233/224 +f 123/1221/218 341/1220/217 346/1232/223 125/1233/224 +f 120/1234/225 116/1223/220 111/1194/205 115/1235/226 +f 454/1225/46 459/1224/45 463/1236/47 458/1237/48 +f 118/1228/221 122/1238/227 117/1217/214 113/1229/222 +f 460/1239/62 465/1240/61 461/1231/65 456/1230/66 +f 124/1241/228 120/1234/225 115/1235/226 119/1222/219 +f 458/1237/48 463/1242/47 468/1243/52 462/1244/51 +f 122/1238/227 126/1245/229 121/1218/215 117/1217/214 +f 464/1246/63 470/1247/64 465/1240/61 460/1239/62 +f 430/1165/14 436/1164/13 431/1160/15 426/1159/16 +f 127/1248/230 124/1241/228 119/1222/219 123/1221/218 +f 462/1244/51 468/1243/52 474/1249/49 467/1250/50 +f 126/1245/229 128/1251/231 125/1233/224 121/1218/215 +f 469/1252/60 466/1253/59 470/1247/64 464/1246/63 +f 128/1251/231 127/1248/230 123/1221/218 125/1233/224 +f 415/1227/26 423/1226/25 424/1138/27 416/1137/28 +f 475/1254/58 472/1255/57 466/1253/59 469/1252/60 +f 467/1250/50 474/1249/49 473/1256/53 476/1257/54 +f 477/1258/56 471/1259/55 472/1255/57 475/1254/58 +f 476/1257/54 473/1256/53 471/1259/55 477/1258/56 +f 129/1260/232 130/1261/233 131/1262/234 132/1263/235 +f 136/1264/236 137/1265/237 130/1261/233 129/1260/232 +f 132/1263/235 131/1262/234 138/1266/238 133/1267/239 +f 133/1267/239 138/1266/238 139/1268/240 134/1269/241 +f 134/1270/241 139/1271/240 140/1272/242 135/1273/243 +f 135/1273/243 140/1272/242 137/1265/237 136/1264/236 +f 141/1274/244 142/1275/240 143/1276/238 144/1277/245 +f 148/1278/246 149/1279/242 142/1275/240 141/1274/244 +f 144/1277/245 143/1276/238 150/1280/234 145/1281/247 +f 145/1281/247 150/1280/234 151/1282/233 146/1283/248 +f 146/1284/248 151/1285/233 152/1286/237 147/1287/249 +f 147/1287/249 152/1286/237 149/1279/242 148/1278/246 +f 153/1288/250 154/1289/251 155/1290/252 156/1291/253 +f 160/1292/254 161/1293/255 154/1289/251 153/1288/250 +f 156/1291/253 155/1290/252 162/1294/256 157/1295/257 +f 157/1295/257 162/1294/256 163/1296/258 158/1297/259 +f 158/1298/259 163/1299/258 164/1300/260 159/1301/261 +f 159/1301/261 164/1300/260 161/1293/255 160/1292/254 +f 165/1302/262 166/1303/258 167/1304/256 168/1305/263 +f 172/1306/264 173/1307/260 166/1303/258 165/1302/262 +f 168/1305/263 167/1304/256 174/1308/252 169/1309/265 +f 169/1309/265 174/1308/252 175/1310/251 170/1311/266 +f 170/1312/266 175/1313/251 176/1314/255 171/1315/267 +f 171/1315/267 176/1314/255 173/1307/260 172/1306/264 +f 177/1316/268 178/1317/269 179/1318/270 180/1319/271 +f 184/1320/272 185/1321/273 178/1317/269 177/1316/268 +f 180/1319/271 179/1318/270 186/1322/274 181/1323/275 +f 181/1323/275 186/1322/274 187/1324/276 182/1325/277 +f 182/1326/277 187/1327/276 188/1328/278 183/1329/279 +f 183/1329/279 188/1328/278 185/1321/273 184/1320/272 +f 189/1330/280 190/1331/276 191/1332/274 192/1333/281 +f 196/1334/282 197/1335/278 190/1331/276 189/1330/280 +f 192/1333/281 191/1332/274 198/1336/270 193/1337/283 +f 193/1337/283 198/1336/270 199/1338/269 194/1339/284 +f 194/1340/284 199/1341/269 200/1342/273 195/1343/285 +f 195/1343/285 200/1342/273 197/1335/278 196/1334/282 +f 201/1344/286 202/1345/287 203/1346/288 204/1347/289 +f 208/1348/290 209/1349/291 202/1345/287 201/1344/286 +f 204/1347/289 203/1346/288 210/1350/292 205/1351/293 +f 205/1351/293 210/1350/292 211/1352/294 206/1353/295 +f 206/1354/295 211/1355/294 212/1356/296 207/1357/297 +f 207/1357/297 212/1356/296 209/1349/291 208/1348/290 +f 213/1358/298 214/1359/294 215/1360/292 216/1361/299 +f 220/1362/300 221/1363/296 214/1359/294 213/1358/298 +f 216/1361/299 215/1360/292 222/1364/288 217/1365/301 +f 217/1365/301 222/1364/288 223/1366/287 218/1367/302 +f 218/1368/302 223/1369/287 224/1370/291 219/1371/303 +f 219/1371/303 224/1370/291 221/1363/296 220/1362/300 +f 225/1372/241 226/1373/240 227/1374/242 228/1375/243 +f 232/1376/239 233/1377/238 226/1373/240 225/1372/241 +f 228/1375/243 227/1374/242 234/1378/237 229/1379/236 +f 229/1379/236 234/1378/237 235/1380/233 230/1381/232 +f 230/1382/232 235/1383/233 236/1384/234 231/1385/235 +f 231/1385/235 236/1384/234 233/1377/238 232/1376/239 +f 237/1386/248 238/1387/233 239/1388/237 240/1389/249 +f 244/1390/247 245/1391/234 238/1387/233 237/1386/248 +f 240/1389/249 239/1388/237 246/1392/242 241/1393/246 +f 241/1393/246 246/1392/242 247/1394/240 242/1395/244 +f 242/1396/244 247/1397/240 248/1398/238 243/1399/245 +f 243/1399/245 248/1398/238 245/1391/234 244/1390/247 +f 249/1400/259 250/1401/258 251/1402/260 252/1403/261 +f 256/1404/257 257/1405/256 250/1401/258 249/1400/259 +f 252/1403/261 251/1402/260 258/1406/255 253/1407/254 +f 253/1407/254 258/1406/255 259/1408/251 254/1409/250 +f 254/1410/250 259/1411/251 260/1412/252 255/1413/253 +f 255/1413/253 260/1412/252 257/1405/256 256/1404/257 +f 261/1414/266 262/1415/251 263/1416/255 264/1417/267 +f 268/1418/265 269/1419/252 262/1415/251 261/1414/266 +f 264/1417/267 263/1416/255 270/1420/260 265/1421/264 +f 265/1421/264 270/1420/260 271/1422/258 266/1423/262 +f 266/1424/262 271/1425/258 272/1426/256 267/1427/263 +f 267/1427/263 272/1426/256 269/1419/252 268/1418/265 +f 273/1428/277 274/1429/276 275/1430/278 276/1431/279 +f 280/1432/275 281/1433/274 274/1429/276 273/1428/277 +f 276/1431/279 275/1430/278 282/1434/273 277/1435/272 +f 277/1435/272 282/1434/273 283/1436/269 278/1437/268 +f 278/1438/268 283/1439/269 284/1440/270 279/1441/271 +f 279/1441/271 284/1440/270 281/1433/274 280/1432/275 +f 285/1442/284 286/1443/269 287/1444/273 288/1445/285 +f 292/1446/283 293/1447/270 286/1443/269 285/1442/284 +f 288/1445/285 287/1444/273 294/1448/278 289/1449/282 +f 289/1449/282 294/1448/278 295/1450/276 290/1451/280 +f 290/1452/280 295/1453/276 296/1454/274 291/1455/281 +f 291/1455/281 296/1454/274 293/1447/270 292/1446/283 +f 297/1456/295 298/1457/294 299/1458/296 300/1459/297 +f 304/1460/293 305/1461/292 298/1457/294 297/1456/295 +f 300/1459/297 299/1458/296 306/1462/291 301/1463/290 +f 301/1463/290 306/1462/291 307/1464/287 302/1465/286 +f 302/1466/286 307/1467/287 308/1468/288 303/1469/289 +f 303/1469/289 308/1468/288 305/1461/292 304/1460/293 +f 309/1470/302 310/1471/287 311/1472/291 312/1473/303 +f 316/1474/301 317/1475/288 310/1471/287 309/1470/302 +f 312/1473/303 311/1472/291 318/1476/296 313/1477/300 +f 313/1477/300 318/1476/296 319/1478/294 314/1479/298 +f 314/1480/298 319/1481/294 320/1482/292 315/1483/299 +f 315/1483/299 320/1482/292 317/1475/288 316/1474/301 +f 382/1187/200 350/1186/199 375/1025/68 383/1024/67 +f 996/1484/304 331/1485/305 34/1028/71 33/1027/70 +f 331/1485/305 995/1486/306 35/1031/74 34/1028/71 +f 995/1486/306 994/1487/307 36/1033/76 35/1031/74 +f 994/1487/307 993/1488/308 37/1035/78 36/1033/76 +f 993/1488/308 992/1489/309 38/1037/80 37/1035/78 +f 992/1489/309 991/1490/310 39/1039/82 38/1037/80 +f 991/1490/310 1704/1491/311 1683/1492/312 40/1040/83 39/1039/82 +f 1683/1492/312 1684/1493/313 41/1043/86 40/1040/83 +f 1684/1493/313 334/1494/314 42/1045/88 41/1043/86 +f 334/1494/314 333/1495/315 43/1047/90 42/1045/88 +f 333/1495/315 1685/1496/316 44/1048/91 43/1047/90 +f 1685/1496/316 1686/1497/317 45/1050/93 44/1048/91 +f 345/1498/318 1680/1499/319 47/1054/97 46/1053/96 +f 1686/1497/317 345/1498/318 46/1053/96 45/1050/93 +f 1680/1499/319 328/1500/320 321/1501/321 48/1056/99 47/1054/97 +f 321/1501/321 1007/1502/322 49/1059/102 48/1056/99 +f 1007/1502/322 322/1503/323 50/1060/103 49/1059/102 +f 322/1503/323 1000/1504/324 51/1063/106 50/1060/103 +f 1000/1505/324 1008/1506/325 52/1066/107 51/1065/106 +f 1008/1506/325 1009/1507/326 53/1069/110 52/1066/107 +f 1009/1507/326 1002/1508/327 54/1070/111 53/1069/110 +f 1002/1508/327 1003/1509/328 55/1072/113 54/1070/111 +f 1003/1509/328 1004/1510/329 1674/1511/330 56/1074/115 55/1072/113 +f 1674/1511/330 1673/1512/331 57/1076/117 56/1074/115 +f 1673/1512/331 343/1513/332 58/1078/119 57/1076/117 +f 343/1513/332 342/1514/333 59/1080/121 58/1078/119 +f 340/1515/334 338/1516/335 61/1085/126 60/1084/125 +f 342/1514/333 340/1515/334 60/1084/125 59/1080/121 +f 336/1517/336 335/1518/337 63/1089/130 62/1088/129 +f 338/1516/335 336/1517/336 62/1088/129 61/1085/126 +f 335/1518/337 1006/1519/338 997/1520/339 64/1091/132 63/1089/130 +f 64/1091/132 997/1520/339 996/1484/304 33/1027/70 +f 325/1521/178 999/1128/169 89/1129/170 93/1170/179 +f 330/1130/171 1010/1154/181 95/1157/184 91/1131/172 +f 1001/1174/190 1011/1150/177 97/1153/180 101/1175/191 +f 1012/1155/182 332/1177/193 103/1180/196 99/1156/183 +f 349/1522/340 1031/1523/341 327/1190/201 109/1191/202 113/1229/222 +f 1672/1193/204 337/1524/342 115/1235/226 111/1194/205 +f 348/1216/213 349/1522/340 113/1229/222 117/1217/214 +f 337/1524/342 339/1219/216 119/1222/219 115/1235/226 +f 478/1525/343 479/1526/344 480/1527/345 481/1528/346 +f 485/1529/347 486/1530/348 479/1526/344 478/1525/343 +f 481/1528/346 480/1527/345 487/1531/349 482/1532/350 +f 482/1532/350 487/1531/349 488/1533/351 483/1534/352 +f 483/1535/352 488/1536/351 489/1537/353 484/1538/354 +f 484/1538/354 489/1537/353 486/1530/348 485/1529/347 +f 490/1539/355 491/1540/351 492/1541/349 493/1542/356 +f 497/1543/357 498/1544/353 491/1540/351 490/1539/355 +f 493/1542/356 492/1541/349 499/1545/345 494/1546/358 +f 494/1546/358 499/1545/345 500/1547/344 495/1548/359 +f 495/1549/359 500/1550/344 501/1551/348 496/1552/360 +f 496/1552/360 501/1551/348 498/1544/353 497/1543/357 +f 502/1553/361 503/1554/4 504/1555/362 505/1556/363 +f 509/1557/364 510/1558/365 503/1554/4 502/1553/361 +f 505/1556/363 504/1555/362 511/1559/366 506/1560/367 +f 506/1560/367 511/1559/366 512/1561/3 507/1562/368 +f 507/1563/368 512/1564/3 513/1565/369 508/1566/370 +f 508/1566/370 513/1565/369 510/1558/365 509/1557/364 +f 514/1567/371 515/1568/3 516/1569/366 517/1570/372 +f 521/1571/373 522/1572/369 515/1568/3 514/1567/371 +f 517/1570/372 516/1569/366 523/1573/362 518/1574/374 +f 518/1574/374 523/1573/362 524/1575/4 519/1576/375 +f 519/1577/375 524/1578/4 525/1579/365 520/1580/376 +f 520/1580/376 525/1579/365 522/1572/369 521/1571/373 +f 526/1581/377 527/1582/378 528/1583/379 529/1584/380 +f 533/1585/381 534/1586/382 527/1582/378 526/1581/377 +f 529/1584/380 528/1583/379 535/1587/383 530/1588/384 +f 530/1588/384 535/1587/383 536/1589/385 531/1590/386 +f 531/1591/386 536/1592/385 537/1593/387 532/1594/388 +f 532/1594/388 537/1593/387 534/1586/382 533/1585/381 +f 538/1595/389 539/1596/385 540/1597/383 541/1598/390 +f 545/1599/391 546/1600/387 539/1596/385 538/1595/389 +f 541/1598/390 540/1597/383 547/1601/379 542/1602/392 +f 542/1602/392 547/1601/379 548/1603/378 543/1604/393 +f 543/1605/393 548/1606/378 549/1607/382 544/1608/394 +f 544/1608/394 549/1607/382 546/1600/387 545/1599/391 +f 550/1609/395 551/1610/6 552/1611/396 553/1612/397 +f 557/1613/398 558/1614/399 551/1610/6 550/1609/395 +f 553/1612/397 552/1611/396 559/1615/400 554/1616/401 +f 554/1616/401 559/1615/400 560/1617/5 555/1618/402 +f 555/1619/402 560/1620/5 561/1621/403 556/1622/404 +f 556/1622/404 561/1621/403 558/1614/399 557/1613/398 +f 562/1623/405 563/1624/5 564/1625/400 565/1626/406 +f 569/1627/407 570/1628/403 563/1624/5 562/1623/405 +f 565/1626/406 564/1625/400 571/1629/396 566/1630/408 +f 566/1630/408 571/1629/396 572/1631/6 567/1632/409 +f 567/1633/409 572/1634/6 573/1635/399 568/1636/410 +f 568/1636/410 573/1635/399 570/1628/403 569/1627/407 +f 574/1637/352 575/1638/351 576/1639/353 577/1640/354 +f 581/1641/350 582/1642/349 575/1638/351 574/1637/352 +f 577/1640/354 576/1639/353 583/1643/348 578/1644/347 +f 578/1644/347 583/1643/348 584/1645/344 579/1646/343 +f 579/1647/343 584/1648/344 585/1649/345 580/1650/346 +f 580/1650/346 585/1649/345 582/1642/349 581/1641/350 +f 586/1651/359 587/1652/344 588/1653/348 589/1654/360 +f 593/1655/358 594/1656/345 587/1652/344 586/1651/359 +f 589/1654/360 588/1653/348 595/1657/353 590/1658/357 +f 590/1658/357 595/1657/353 596/1659/351 591/1660/355 +f 591/1661/355 596/1662/351 597/1663/349 592/1664/356 +f 592/1664/356 597/1663/349 594/1656/345 593/1655/358 +f 598/1665/368 599/1666/3 600/1667/369 601/1668/370 +f 605/1669/367 606/1670/366 599/1666/3 598/1665/368 +f 601/1668/370 600/1667/369 607/1671/365 602/1672/364 +f 602/1672/364 607/1671/365 608/1673/4 603/1674/361 +f 603/1675/361 608/1676/4 609/1677/362 604/1678/363 +f 604/1678/363 609/1677/362 606/1670/366 605/1669/367 +f 610/1679/375 611/1680/4 612/1681/365 613/1682/376 +f 617/1683/374 618/1684/362 611/1680/4 610/1679/375 +f 613/1682/376 612/1681/365 619/1685/369 614/1686/373 +f 614/1686/373 619/1685/369 620/1687/3 615/1688/371 +f 615/1689/371 620/1690/3 621/1691/366 616/1692/372 +f 616/1692/372 621/1691/366 618/1684/362 617/1683/374 +f 622/1693/386 623/1694/385 624/1695/387 625/1696/388 +f 629/1697/384 630/1698/383 623/1694/385 622/1693/386 +f 625/1696/388 624/1695/387 631/1699/382 626/1700/381 +f 626/1700/381 631/1699/382 632/1701/378 627/1702/377 +f 627/1703/377 632/1704/378 633/1705/379 628/1706/380 +f 628/1706/380 633/1705/379 630/1698/383 629/1697/384 +f 634/1707/393 635/1708/378 636/1709/382 637/1710/394 +f 641/1711/392 642/1712/379 635/1708/378 634/1707/393 +f 637/1710/394 636/1709/382 643/1713/387 638/1714/391 +f 638/1714/391 643/1713/387 644/1715/385 639/1716/389 +f 639/1717/389 644/1718/385 645/1719/383 640/1720/390 +f 640/1720/390 645/1719/383 642/1712/379 641/1711/392 +f 646/1721/402 647/1722/5 648/1723/403 649/1724/404 +f 653/1725/401 654/1726/400 647/1722/5 646/1721/402 +f 649/1724/404 648/1723/403 655/1727/399 650/1728/398 +f 650/1728/398 655/1727/399 656/1729/6 651/1730/395 +f 651/1731/395 656/1732/6 657/1733/396 652/1734/397 +f 652/1734/397 657/1733/396 654/1726/400 653/1725/401 +f 658/1735/409 659/1736/6 660/1737/399 661/1738/410 +f 665/1739/408 666/1740/396 659/1736/6 658/1735/409 +f 661/1738/410 660/1737/399 667/1741/403 662/1742/407 +f 662/1742/407 667/1741/403 668/1743/5 663/1744/405 +f 663/1745/405 668/1746/5 669/1747/400 664/1748/406 +f 664/1748/406 669/1747/400 666/1740/396 665/1739/408 +f 1067/1749/411 1034/1750/412 1033/1751/413 1066/1752/414 +f 1068/1753/415 1035/1754/416 1034/1750/412 1067/1749/411 +f 1069/1755/417 1036/1756/418 1035/1754/416 1068/1753/415 +f 1070/1757/419 1037/1758/420 1036/1756/418 1069/1755/417 +f 1071/1759/421 1038/1760/422 1037/1758/420 1070/1757/419 +f 1072/1761/423 1039/1762/424 1038/1760/422 1071/1759/421 +f 1073/1763/425 1040/1764/426 1039/1762/424 1072/1761/423 +f 1074/1765/427 1058/1766/428 1040/1764/426 1073/1763/425 +f 1075/1767/429 1041/1768/430 1058/1766/428 1074/1765/427 +f 1076/1769/431 1059/1770/432 1041/1768/430 1075/1767/429 +f 1077/1771/433 1042/1772/434 1059/1770/432 1076/1769/431 +f 1078/1773/435 1043/1774/436 1042/1772/434 1077/1771/433 +f 1079/1775/437 1060/1776/438 1043/1774/436 1078/1773/435 +f 1080/1777/439 1044/1778/440 1060/1779/438 1079/1775/437 +f 1081/1780/441 1045/1781/442 1044/1778/440 1080/1777/439 +f 1082/1782/443 1046/1783/444 1045/1781/442 1081/1780/441 +f 1083/1784/445 1047/1785/446 1046/1786/444 1082/1787/443 +f 1084/1788/447 1048/1789/448 1047/1785/446 1083/1784/445 +f 1085/1790/449 1061/1791/450 1048/1789/448 1084/1788/447 +f 1087/1792/451 1049/1793/452 1061/1791/450 1085/1790/449 +f 1088/1794/453 1051/1795/454 1050/1796/455 1086/1797/456 +f 1086/1797/456 1050/1796/455 1049/1793/452 1087/1792/451 +f 1089/1798/457 1062/1799/458 1051/1795/454 1088/1794/453 +f 1090/1800/459 1052/1801/460 1062/1799/458 1089/1798/457 +f 1091/1802/461 1063/1803/462 1052/1801/460 1090/1800/459 +f 1093/1804/463 1053/1805/464 1063/1803/462 1091/1802/461 +f 1094/1806/465 1055/1807/466 1054/1808/467 1092/1809/468 +f 1092/1809/468 1054/1808/467 1053/1805/464 1093/1804/463 +f 1095/1810/469 1056/1811/470 1055/1807/466 1094/1806/465 +f 1065/1812/471 1057/1813/472 1056/1811/470 1095/1810/469 +f 699/1814/473 702/1815/474 703/1816/475 670/1817/476 +f 671/1818/477 670/1817/476 703/1816/475 704/1819/478 +f 672/1820/479 671/1818/477 704/1819/478 705/1821/480 +f 673/1822/481 672/1820/479 705/1821/480 706/1823/482 +f 674/1824/483 673/1822/481 706/1823/482 707/1825/484 +f 675/1826/485 674/1824/483 707/1825/484 708/1827/486 +f 675/1826/485 708/1827/486 709/1828/487 676/1829/488 +f 677/1830/489 676/1829/488 709/1828/487 710/1831/490 +f 678/1832/491 677/1830/489 710/1831/490 711/1833/492 +f 679/1834/493 678/1832/491 711/1833/492 712/1835/494 +f 679/1834/493 712/1835/494 713/1836/495 680/1837/496 +f 680/1837/496 713/1836/495 714/1838/497 700/1839/498 +f 681/1840/499 715/1841/500 716/1842/501 682/1843/502 +f 700/1839/498 714/1838/497 715/1841/500 681/1840/499 +f 682/1843/502 716/1842/501 717/1844/503 683/1845/504 +f 684/1846/505 683/1845/504 717/1844/503 718/1847/506 +f 684/1846/505 718/1847/506 719/1848/507 685/1849/508 +f 686/1850/509 685/1849/508 719/1848/507 720/1851/510 +f 686/1852/509 720/1853/510 721/1854/511 687/1855/512 +f 688/1856/513 687/1855/512 721/1854/511 722/1857/514 +f 688/1856/513 722/1857/514 723/1858/515 689/1859/516 +f 689/1859/516 723/1858/515 724/1860/517 691/1861/518 +f 691/1861/518 724/1860/517 725/1862/519 690/1863/520 +f 690/1863/520 725/1862/519 726/1864/521 692/1865/522 +f 692/1865/522 726/1864/521 727/1866/523 693/1867/524 +f 693/1867/524 727/1866/523 728/1868/525 701/1869/526 +f 696/1870/527 694/1871/528 729/1872/529 730/1873/530 +f 694/1871/528 701/1869/526 728/1868/525 729/1872/529 +f 697/1874/531 695/1875/532 731/1876/533 732/1877/534 +f 696/1870/527 730/1873/530 731/1876/533 695/1875/532 +f 698/1878/535 697/1874/531 732/1877/534 733/1879/536 +f 698/1878/535 733/1879/536 702/1815/474 699/1814/473 +f 1697/1880/537 1014/1881/538 734/1882/539 735/1883/540 +f 1029/1884/541 1697/1880/537 735/1883/540 736/1885/542 +f 1015/1886/543 1029/1884/541 736/1885/542 737/1887/544 +f 734/1882/539 1014/1881/538 1696/1888/545 738/1889/546 +f 1030/1890/547 1015/1886/543 737/1887/544 742/1891/548 +f 738/1889/546 1696/1888/545 1695/1892/549 744/1893/550 +f 1016/1894/551 1030/1890/547 742/1891/548 746/1895/552 +f 744/1893/550 1695/1892/549 1005/1896/157 998/1897/156 748/1898/553 +f 739/1899/554 735/1883/540 734/1882/539 740/1900/555 +f 741/1901/556 736/1885/542 735/1883/540 739/1899/554 +f 743/1902/557 737/1887/544 736/1885/542 741/1901/556 +f 321/1903/321 328/1904/320 1016/1894/551 746/1895/552 750/1905/558 +f 748/1898/553 998/1897/156 329/1906/163 752/1907/559 +f 740/1900/555 734/1882/539 738/1889/546 745/1908/560 +f 747/1909/561 742/1891/548 737/1887/544 743/1902/557 +f 1007/1910/322 321/1903/321 750/1905/558 754/1911/562 +f 752/1907/559 329/1906/163 999/1912/169 756/1913/563 +f 749/1914/564 745/1908/560 738/1889/546 744/1893/550 +f 751/1915/565 746/1895/552 742/1891/548 747/1909/561 +f 322/1916/323 1007/1910/322 754/1911/562 758/1917/566 +f 756/1913/563 999/1912/169 325/1918/178 760/1919/567 +f 753/1920/568 749/1914/564 744/1893/550 748/1898/553 +f 1099/1921/426 1103/1922/425 1104/1923/427 1096/1924/428 +f 1098/1925/432 1106/1926/431 1107/1927/433 1100/1928/434 +f 755/1929/569 750/1905/558 746/1895/552 751/1915/565 +f 1102/1930/424 1109/1931/423 1103/1922/425 1099/1921/426 +f 757/1932/570 753/1920/568 748/1898/553 752/1907/559 +f 1100/1928/434 1107/1927/433 1111/1933/435 1110/1934/436 +f 759/1935/571 754/1911/562 750/1905/558 755/1929/569 +f 1101/1936/422 1114/1937/421 1109/1931/423 1102/1930/424 +f 1008/1938/325 1000/1939/324 762/1940/572 766/1941/573 +f 1011/1942/177 1001/1943/190 768/1944/574 764/1945/575 +f 761/1946/576 757/1932/570 752/1907/559 756/1913/563 +f 1108/1947/420 1113/1948/419 1114/1937/421 1101/1936/422 +f 763/1949/577 758/1917/566 754/1911/562 759/1935/571 +f 1117/1950/416 1122/1951/415 1118/1952/417 1112/1953/418 +f 765/1954/578 761/1946/576 756/1913/563 760/1919/567 +f 1110/1934/436 1111/1933/435 1116/1955/437 1115/1956/438 +f 767/1957/579 762/1958/572 758/1917/566 763/1949/577 +f 1121/1959/412 1126/1960/411 1122/1951/415 1117/1950/416 +f 1002/1961/327 1009/1962/326 770/1963/580 774/1964/581 +f 326/1965/189 327/1966/201 776/1967/582 772/1968/583 +f 769/1969/584 765/1954/578 760/1919/567 764/1945/575 +f 1115/1956/438 1116/1955/437 1120/1970/439 1119/1971/440 +f 771/1972/585 766/1941/573 762/1940/572 767/1973/579 +f 1066/1752/414 1033/1751/413 1032/1974/586 1064/1975/587 +f 1125/1976/413 1131/1977/414 1126/1960/411 1121/1959/412 +f 1003/1978/328 1002/1961/327 774/1964/581 778/1979/588 +f 776/1967/582 327/1966/201 1031/1980/341 1017/1981/589 780/1982/590 +f 773/1983/591 769/1969/584 764/1945/575 768/1944/574 +f 1119/1971/440 1120/1970/439 1124/1984/441 1123/1985/442 +f 775/1986/592 770/1963/580 766/1941/573 771/1972/585 +f 1130/1987/586 1135/1988/587 1131/1977/414 1125/1976/413 +f 777/1989/593 773/1983/591 768/1944/574 772/1968/583 +f 1123/1985/442 1124/1984/441 1129/1990/443 1128/1991/444 +f 779/1992/594 774/1964/581 770/1963/580 775/1986/592 +f 1134/1993/472 1139/1994/471 1135/1988/587 1130/1987/586 +f 781/1995/595 777/1989/593 772/1968/583 776/1967/582 +f 1127/1996/446 1133/1997/445 1137/1998/447 1132/1999/448 +f 779/1992/594 783/2000/596 778/1979/588 774/1964/581 +f 1128/1991/444 1129/1990/443 1133/2001/445 1127/2002/446 +f 1026/2003/597 1698/2004/598 786/2005/599 790/2006/600 +f 1021/2007/601 1023/2008/602 792/2009/603 788/2010/604 +f 785/2011/605 781/1995/595 776/1967/582 780/1982/590 +f 1132/1999/448 1137/1998/447 1141/2012/449 1136/2013/450 +f 1096/1924/428 1104/1923/427 1105/2014/429 1097/2015/430 +f 787/2016/606 782/2017/607 778/1979/588 783/2000/596 +f 1138/2018/470 1143/2019/469 1139/1994/471 1134/1993/472 +f 1028/2020/608 1026/2003/597 790/2006/600 794/2021/609 +f 792/2009/603 1023/2008/602 1028/2020/608 794/2021/609 +f 789/2022/610 785/2011/605 780/1982/590 784/2023/611 +f 1136/2013/450 1141/2012/449 1145/2024/451 1140/2025/452 +f 787/2016/606 791/2026/612 786/2005/599 782/2017/607 +f 1142/2027/466 1147/2028/465 1143/2019/469 1138/2018/470 +f 793/2029/613 789/2022/610 784/2023/611 788/2010/604 +f 1140/2025/452 1145/2030/451 1150/2031/456 1144/2032/455 +f 791/2026/612 795/2033/614 790/2006/600 786/2005/599 +f 1146/2034/467 1152/2035/468 1147/2028/465 1142/2027/466 +f 1112/1953/418 1118/1952/417 1113/1948/419 1108/1947/420 +f 796/2036/615 793/2029/613 788/2010/604 792/2009/603 +f 1144/2032/455 1150/2031/456 1156/2037/453 1149/2038/454 +f 795/2033/614 797/2039/616 794/2021/609 790/2006/600 +f 1151/2040/464 1148/2041/463 1152/2035/468 1146/2034/467 +f 797/2039/616 796/2036/615 792/2009/603 794/2021/609 +f 1097/2015/430 1105/2014/429 1106/1926/431 1098/1925/432 +f 1157/2042/462 1154/2043/461 1148/2041/463 1151/2040/464 +f 1149/2038/454 1156/2037/453 1155/2044/457 1158/2045/458 +f 1159/2046/460 1153/2047/459 1154/2043/461 1157/2042/462 +f 1158/2045/458 1155/2044/457 1153/2047/459 1159/2046/460 +f 798/2048/617 799/2049/618 800/2050/619 801/2051/620 +f 805/2052/621 806/2053/622 799/2049/618 798/2048/617 +f 801/2051/620 800/2050/619 807/2054/623 802/2055/624 +f 802/2055/624 807/2054/623 808/2056/625 803/2057/626 +f 803/2058/626 808/2059/625 809/2060/627 804/2061/628 +f 804/2061/628 809/2060/627 806/2053/622 805/2052/621 +f 810/2062/629 811/2063/625 812/2064/623 813/2065/630 +f 817/2066/631 818/2067/627 811/2063/625 810/2062/629 +f 813/2065/630 812/2064/623 819/2068/619 814/2069/632 +f 814/2069/632 819/2068/619 820/2070/618 815/2071/633 +f 815/2072/633 820/2073/618 821/2074/622 816/2075/634 +f 816/2075/634 821/2074/622 818/2067/627 817/2066/631 +f 822/2076/635 823/2077/636 824/2078/637 825/2079/638 +f 829/2080/639 830/2081/640 823/2077/636 822/2076/635 +f 825/2079/638 824/2078/637 831/2082/641 826/2083/642 +f 826/2083/642 831/2082/641 832/2084/643 827/2085/644 +f 827/2086/644 832/2087/643 833/2088/645 828/2089/646 +f 828/2089/646 833/2088/645 830/2081/640 829/2080/639 +f 834/2090/647 835/2091/643 836/2092/641 837/2093/648 +f 841/2094/649 842/2095/645 835/2091/643 834/2090/647 +f 837/2093/648 836/2092/641 843/2096/637 838/2097/650 +f 838/2097/650 843/2096/637 844/2098/636 839/2099/651 +f 839/2100/651 844/2101/636 845/2102/640 840/2103/652 +f 840/2103/652 845/2102/640 842/2095/645 841/2094/649 +f 846/2104/653 847/2105/654 848/2106/655 849/2107/656 +f 853/2108/657 854/2109/658 847/2105/654 846/2104/653 +f 849/2107/656 848/2106/655 855/2110/659 850/2111/660 +f 850/2111/660 855/2110/659 856/2112/661 851/2113/662 +f 851/2114/662 856/2115/661 857/2116/663 852/2117/664 +f 852/2117/664 857/2116/663 854/2109/658 853/2108/657 +f 858/2118/665 859/2119/661 860/2120/659 861/2121/666 +f 865/2122/667 866/2123/663 859/2119/661 858/2118/665 +f 861/2121/666 860/2120/659 867/2124/655 862/2125/668 +f 862/2125/668 867/2124/655 868/2126/654 863/2127/669 +f 863/2128/669 868/2129/654 869/2130/658 864/2131/670 +f 864/2131/670 869/2130/658 866/2123/663 865/2122/667 +f 870/2132/671 871/2133/672 872/2134/673 873/2135/674 +f 877/2136/675 878/2137/676 871/2133/672 870/2132/671 +f 873/2135/674 872/2134/673 879/2138/677 874/2139/678 +f 874/2139/678 879/2138/677 880/2140/679 875/2141/680 +f 875/2142/680 880/2143/679 881/2144/681 876/2145/682 +f 876/2145/682 881/2144/681 878/2137/676 877/2136/675 +f 882/2146/683 883/2147/679 884/2148/677 885/2149/684 +f 889/2150/685 890/2151/681 883/2147/679 882/2146/683 +f 885/2149/684 884/2148/677 891/2152/673 886/2153/686 +f 886/2153/686 891/2152/673 892/2154/672 887/2155/687 +f 887/2156/687 892/2157/672 893/2158/676 888/2159/688 +f 888/2159/688 893/2158/676 890/2151/681 889/2150/685 +f 894/2160/626 895/2161/625 896/2162/627 897/2163/628 +f 901/2164/624 902/2165/623 895/2161/625 894/2160/626 +f 897/2163/628 896/2162/627 903/2166/622 898/2167/621 +f 898/2167/621 903/2166/622 904/2168/618 899/2169/617 +f 899/2170/617 904/2171/618 905/2172/619 900/2173/620 +f 900/2173/620 905/2172/619 902/2165/623 901/2164/624 +f 906/2174/633 907/2175/618 908/2176/622 909/2177/634 +f 913/2178/632 914/2179/619 907/2175/618 906/2174/633 +f 909/2177/634 908/2176/622 915/2180/627 910/2181/631 +f 910/2181/631 915/2180/627 916/2182/625 911/2183/629 +f 911/2184/629 916/2185/625 917/2186/623 912/2187/630 +f 912/2187/630 917/2186/623 914/2179/619 913/2178/632 +f 918/2188/644 919/2189/643 920/2190/645 921/2191/646 +f 925/2192/642 926/2193/641 919/2189/643 918/2188/644 +f 921/2191/646 920/2190/645 927/2194/640 922/2195/639 +f 922/2195/639 927/2194/640 928/2196/636 923/2197/635 +f 923/2198/635 928/2199/636 929/2200/637 924/2201/638 +f 924/2201/638 929/2200/637 926/2193/641 925/2192/642 +f 930/2202/651 931/2203/636 932/2204/640 933/2205/652 +f 937/2206/650 938/2207/637 931/2203/636 930/2202/651 +f 933/2205/652 932/2204/640 939/2208/645 934/2209/649 +f 934/2209/649 939/2208/645 940/2210/643 935/2211/647 +f 935/2212/647 940/2213/643 941/2214/641 936/2215/648 +f 936/2215/648 941/2214/641 938/2207/637 937/2206/650 +f 942/2216/662 943/2217/661 944/2218/663 945/2219/664 +f 949/2220/660 950/2221/659 943/2217/661 942/2216/662 +f 945/2219/664 944/2218/663 951/2222/658 946/2223/657 +f 946/2223/657 951/2222/658 952/2224/654 947/2225/653 +f 947/2226/653 952/2227/654 953/2228/655 948/2229/656 +f 948/2229/656 953/2228/655 950/2221/659 949/2220/660 +f 954/2230/669 955/2231/654 956/2232/658 957/2233/670 +f 961/2234/668 962/2235/655 955/2231/654 954/2230/669 +f 957/2233/670 956/2232/658 963/2236/663 958/2237/667 +f 958/2237/667 963/2236/663 964/2238/661 959/2239/665 +f 959/2240/665 964/2241/661 965/2242/659 960/2243/666 +f 960/2243/666 965/2242/659 962/2235/655 961/2234/668 +f 966/2244/680 967/2245/679 968/2246/681 969/2247/682 +f 973/2248/678 974/2249/677 967/2245/679 966/2244/680 +f 969/2247/682 968/2246/681 975/2250/676 970/2251/675 +f 970/2251/675 975/2250/676 976/2252/672 971/2253/671 +f 971/2254/671 976/2255/672 977/2256/673 972/2257/674 +f 972/2257/674 977/2256/673 974/2249/677 973/2248/678 +f 978/2258/687 979/2259/672 980/2260/676 981/2261/688 +f 985/2262/686 986/2263/673 979/2259/672 978/2258/687 +f 981/2261/688 980/2260/676 987/2264/681 982/2265/685 +f 982/2265/685 987/2264/681 988/2266/679 983/2267/683 +f 983/2268/683 988/2269/679 989/2270/677 984/2271/684 +f 984/2271/684 989/2270/677 986/2263/673 985/2262/686 +f 1064/1975/587 1032/1974/586 1057/1813/472 1065/1812/471 +f 332/2272/193 1012/2273/182 703/1816/475 702/1815/474 +f 1012/2273/182 1010/2274/181 704/1819/478 703/1816/475 +f 1010/2274/181 330/2275/171 705/1821/480 704/1819/478 +f 330/2275/171 324/2276/165 706/1823/482 705/1821/480 +f 324/2276/165 323/2277/159 707/1825/484 706/1823/482 +f 323/2277/159 990/2278/150 708/1827/486 707/1825/484 +f 990/2278/150 1681/2279/149 1701/2280/689 709/1828/487 708/1827/486 +f 1701/2280/689 1690/2281/690 710/1831/490 709/1828/487 +f 1690/2281/690 1691/2282/691 711/1833/492 710/1831/490 +f 1691/2282/691 1692/2283/692 712/1835/494 711/1833/492 +f 1692/2283/692 1702/2284/693 713/1836/495 712/1835/494 +f 1702/2284/693 1693/2285/694 714/1838/497 713/1836/495 +f 1703/2286/695 1694/2287/696 716/1842/501 715/1841/500 +f 1693/2285/694 1703/2286/695 715/1841/500 714/1838/497 +f 1694/2287/696 1704/2288/311 991/2289/310 717/1844/503 716/1842/501 +f 991/2289/310 992/2290/309 718/1847/506 717/1844/503 +f 992/2290/309 993/2291/308 719/1848/507 718/1847/506 +f 993/2291/308 994/2292/307 720/1851/510 719/1848/507 +f 994/2293/307 995/2294/306 721/1854/511 720/1853/510 +f 995/2294/306 331/2295/305 722/1857/514 721/1854/511 +f 331/2295/305 996/2296/304 723/1858/515 722/1857/514 +f 996/2296/304 997/2297/339 724/1860/517 723/1858/515 +f 997/2297/339 1006/2298/338 1027/2299/697 725/1862/519 724/1860/517 +f 1027/2299/697 1700/2300/698 726/1864/521 725/1862/519 +f 1700/2300/698 1025/2301/699 727/1866/523 726/1864/521 +f 1025/2301/699 1024/2302/700 728/1868/525 727/1866/523 +f 1022/2303/701 1020/2304/702 730/1873/530 729/1872/529 +f 1024/2302/700 1022/2303/701 729/1872/529 728/1868/525 +f 1018/2305/703 1689/2306/704 732/1877/534 731/1876/533 +f 1020/2304/702 1018/2305/703 731/1876/533 730/1873/530 +f 1689/2306/704 1682/2307/203 1013/2308/194 733/1879/536 732/1877/534 +f 733/1879/536 1013/2308/194 332/2272/193 702/1815/474 +f 1000/2309/324 322/1916/323 758/1917/566 762/1958/572 +f 325/1918/178 1011/1942/177 764/1945/575 760/1919/567 +f 1009/1962/326 1008/1938/325 766/1941/573 770/1963/580 +f 1001/1943/190 326/1965/189 772/1968/583 768/1944/574 +f 1699/2310/705 1004/2311/329 1003/1978/328 778/1979/588 782/2017/607 +f 1017/1981/589 1019/2312/706 784/2023/611 780/1982/590 +f 1698/2004/598 1699/2310/705 782/2017/607 786/2005/599 +f 1019/2312/706 1021/2007/601 788/2010/604 784/2023/611 +f 1160/2313/707 1161/2314/708 1162/2315/709 1163/2316/710 +f 1167/2317/711 1168/2318/712 1161/2314/708 1160/2313/707 +f 1163/2316/710 1162/2315/709 1169/2319/713 1164/2320/714 +f 1164/2320/714 1169/2319/713 1170/2321/715 1165/2322/716 +f 1165/2323/716 1170/2324/715 1171/2325/717 1166/2326/718 +f 1166/2326/718 1171/2325/717 1168/2318/712 1167/2317/711 +f 1172/2327/719 1173/2328/715 1174/2329/713 1175/2330/720 +f 1179/2331/721 1180/2332/717 1173/2328/715 1172/2327/719 +f 1175/2330/720 1174/2329/713 1181/2333/709 1176/2334/722 +f 1176/2334/722 1181/2333/709 1182/2335/708 1177/2336/723 +f 1177/2337/723 1182/2338/708 1183/2339/712 1178/2340/724 +f 1178/2340/724 1183/2339/712 1180/2332/717 1179/2331/721 +f 1184/2341/725 1185/2342/1 1186/2343/726 1187/2344/727 +f 1191/2345/728 1192/2346/729 1185/2342/1 1184/2341/725 +f 1187/2344/727 1186/2343/726 1193/2347/730 1188/2348/731 +f 1188/2348/731 1193/2347/730 1194/2349/2 1189/2350/732 +f 1189/2351/732 1194/2352/2 1195/2353/733 1190/2354/734 +f 1190/2354/734 1195/2353/733 1192/2346/729 1191/2345/728 +f 1196/2355/735 1197/2356/2 1198/2357/730 1199/2358/736 +f 1203/2359/737 1204/2360/733 1197/2356/2 1196/2355/735 +f 1199/2358/736 1198/2357/730 1205/2361/726 1200/2362/738 +f 1200/2362/738 1205/2361/726 1206/2363/1 1201/2364/739 +f 1201/2365/739 1206/2366/1 1207/2367/729 1202/2368/740 +f 1202/2368/740 1207/2367/729 1204/2360/733 1203/2359/737 +f 1208/2369/741 1209/2370/742 1210/2371/743 1211/2372/744 +f 1215/2373/745 1216/2374/746 1209/2370/742 1208/2369/741 +f 1211/2372/744 1210/2371/743 1217/2375/747 1212/2376/748 +f 1212/2376/748 1217/2375/747 1218/2377/749 1213/2378/750 +f 1213/2379/750 1218/2380/749 1219/2381/751 1214/2382/752 +f 1214/2382/752 1219/2381/751 1216/2374/746 1215/2373/745 +f 1220/2383/753 1221/2384/749 1222/2385/747 1223/2386/754 +f 1227/2387/755 1228/2388/751 1221/2384/749 1220/2383/753 +f 1223/2386/754 1222/2385/747 1229/2389/743 1224/2390/756 +f 1224/2390/756 1229/2389/743 1230/2391/742 1225/2392/757 +f 1225/2393/757 1230/2394/742 1231/2395/746 1226/2396/758 +f 1226/2396/758 1231/2395/746 1228/2388/751 1227/2387/755 +f 1232/2397/759 1233/2398/6 1234/2399/760 1235/2400/761 +f 1239/2401/762 1240/2402/763 1233/2398/6 1232/2397/759 +f 1235/2400/761 1234/2399/760 1241/2403/764 1236/2404/765 +f 1236/2404/765 1241/2403/764 1242/2405/5 1237/2406/766 +f 1237/2407/766 1242/2408/5 1243/2409/767 1238/2410/768 +f 1238/2410/768 1243/2409/767 1240/2402/763 1239/2401/762 +f 1244/2411/769 1245/2412/5 1246/2413/764 1247/2414/770 +f 1251/2415/771 1252/2416/767 1245/2412/5 1244/2411/769 +f 1247/2414/770 1246/2413/764 1253/2417/760 1248/2418/772 +f 1248/2418/772 1253/2417/760 1254/2419/6 1249/2420/773 +f 1249/2421/773 1254/2422/6 1255/2423/763 1250/2424/774 +f 1250/2424/774 1255/2423/763 1252/2416/767 1251/2415/771 +f 1256/2425/716 1257/2426/715 1258/2427/717 1259/2428/718 +f 1263/2429/714 1264/2430/713 1257/2426/715 1256/2425/716 +f 1259/2428/718 1258/2427/717 1265/2431/712 1260/2432/711 +f 1260/2432/711 1265/2431/712 1266/2433/708 1261/2434/707 +f 1261/2435/707 1266/2436/708 1267/2437/709 1262/2438/710 +f 1262/2438/710 1267/2437/709 1264/2430/713 1263/2429/714 +f 1268/2439/723 1269/2440/708 1270/2441/712 1271/2442/724 +f 1275/2443/722 1276/2444/709 1269/2440/708 1268/2439/723 +f 1271/2442/724 1270/2441/712 1277/2445/717 1272/2446/721 +f 1272/2446/721 1277/2445/717 1278/2447/715 1273/2448/719 +f 1273/2449/719 1278/2450/715 1279/2451/713 1274/2452/720 +f 1274/2452/720 1279/2451/713 1276/2444/709 1275/2443/722 +f 1280/2453/732 1281/2454/2 1282/2455/733 1283/2456/734 +f 1287/2457/731 1288/2458/730 1281/2454/2 1280/2453/732 +f 1283/2456/734 1282/2455/733 1289/2459/729 1284/2460/728 +f 1284/2460/728 1289/2459/729 1290/2461/1 1285/2462/725 +f 1285/2463/725 1290/2464/1 1291/2465/726 1286/2466/727 +f 1286/2466/727 1291/2465/726 1288/2458/730 1287/2457/731 +f 1292/2467/739 1293/2468/1 1294/2469/729 1295/2470/740 +f 1299/2471/738 1300/2472/726 1293/2468/1 1292/2467/739 +f 1295/2470/740 1294/2469/729 1301/2473/733 1296/2474/737 +f 1296/2474/737 1301/2473/733 1302/2475/2 1297/2476/735 +f 1297/2477/735 1302/2478/2 1303/2479/730 1298/2480/736 +f 1298/2480/736 1303/2479/730 1300/2472/726 1299/2471/738 +f 1304/2481/750 1305/2482/749 1306/2483/751 1307/2484/752 +f 1311/2485/748 1312/2486/747 1305/2482/749 1304/2481/750 +f 1307/2484/752 1306/2483/751 1313/2487/746 1308/2488/745 +f 1308/2488/745 1313/2487/746 1314/2489/742 1309/2490/741 +f 1309/2491/741 1314/2492/742 1315/2493/743 1310/2494/744 +f 1310/2494/744 1315/2493/743 1312/2486/747 1311/2485/748 +f 1316/2495/757 1317/2496/742 1318/2497/746 1319/2498/758 +f 1323/2499/756 1324/2500/743 1317/2496/742 1316/2495/757 +f 1319/2498/758 1318/2497/746 1325/2501/751 1320/2502/755 +f 1320/2502/755 1325/2501/751 1326/2503/749 1321/2504/753 +f 1321/2505/753 1326/2506/749 1327/2507/747 1322/2508/754 +f 1322/2508/754 1327/2507/747 1324/2500/743 1323/2499/756 +f 1328/2509/766 1329/2510/5 1330/2511/767 1331/2512/768 +f 1335/2513/765 1336/2514/764 1329/2510/5 1328/2509/766 +f 1331/2512/768 1330/2511/767 1337/2515/763 1332/2516/762 +f 1332/2516/762 1337/2515/763 1338/2517/6 1333/2518/759 +f 1333/2519/759 1338/2520/6 1339/2521/760 1334/2522/761 +f 1334/2522/761 1339/2521/760 1336/2514/764 1335/2513/765 +f 1340/2523/773 1341/2524/6 1342/2525/763 1343/2526/774 +f 1347/2527/772 1348/2528/760 1341/2524/6 1340/2523/773 +f 1343/2526/774 1342/2525/763 1349/2529/767 1344/2530/771 +f 1344/2530/771 1349/2529/767 1350/2531/5 1345/2532/769 +f 1345/2533/769 1350/2534/5 1351/2535/764 1346/2536/770 +f 1346/2536/770 1351/2535/764 1348/2528/760 1347/2527/772 +f 1740/2537/775 1707/2538/776 1706/2539/777 1739/2540/778 +f 1741/2541/779 1708/2542/780 1707/2538/776 1740/2537/775 +f 1742/2543/781 1709/2544/782 1708/2542/780 1741/2541/779 +f 1743/2545/783 1710/2546/784 1709/2544/782 1742/2543/781 +f 1744/2547/785 1711/2548/786 1710/2546/784 1743/2545/783 +f 1745/2549/787 1712/2550/788 1711/2548/786 1744/2547/785 +f 1746/2551/789 1713/2552/790 1712/2550/788 1745/2549/787 +f 1747/2553/791 1731/2554/792 1713/2552/790 1746/2551/789 +f 1748/2555/793 1714/2556/794 1731/2554/792 1747/2553/791 +f 1749/2557/795 1732/2558/796 1714/2556/794 1748/2555/793 +f 1750/2559/797 1715/2560/798 1732/2558/796 1749/2557/795 +f 1751/2561/799 1716/2562/800 1715/2560/798 1750/2559/797 +f 1752/2563/801 1733/2564/802 1716/2562/800 1751/2561/799 +f 1753/2565/803 1717/2566/804 1733/2567/802 1752/2563/801 +f 1754/2568/805 1718/2569/806 1717/2566/804 1753/2565/803 +f 1755/2570/807 1719/2571/808 1718/2569/806 1754/2568/805 +f 1756/2572/809 1720/2573/810 1719/2574/808 1755/2575/807 +f 1757/2576/811 1721/2577/812 1720/2573/810 1756/2572/809 +f 1758/2578/813 1734/2579/814 1721/2577/812 1757/2576/811 +f 1760/2580/815 1722/2581/816 1734/2579/814 1758/2578/813 +f 1761/2582/817 1724/2583/818 1723/2584/819 1759/2585/820 +f 1759/2585/820 1723/2584/819 1722/2581/816 1760/2580/815 +f 1762/2586/821 1735/2587/822 1724/2583/818 1761/2582/817 +f 1763/2588/823 1725/2589/824 1735/2587/822 1762/2586/821 +f 1764/2590/825 1736/2591/826 1725/2589/824 1763/2588/823 +f 1766/2592/827 1726/2593/828 1736/2591/826 1764/2590/825 +f 1767/2594/829 1728/2595/830 1727/2596/831 1765/2597/832 +f 1765/2597/832 1727/2596/831 1726/2593/828 1766/2592/827 +f 1768/2598/833 1729/2599/834 1728/2595/830 1767/2594/829 +f 1738/2600/835 1730/2601/836 1729/2599/834 1768/2598/833 +f 1381/2602/837 1384/2603/838 1385/2604/839 1352/2605/840 +f 1353/2606/841 1352/2605/840 1385/2604/839 1386/2607/842 +f 1354/2608/843 1353/2606/841 1386/2607/842 1387/2609/844 +f 1355/2610/845 1354/2608/843 1387/2609/844 1388/2611/846 +f 1356/2612/847 1355/2610/845 1388/2611/846 1389/2613/848 +f 1357/2614/849 1356/2612/847 1389/2613/848 1390/2615/850 +f 1357/2614/849 1390/2615/850 1391/2616/851 1358/2617/852 +f 1359/2618/853 1358/2617/852 1391/2616/851 1392/2619/854 +f 1360/2620/855 1359/2618/853 1392/2619/854 1393/2621/856 +f 1361/2622/857 1360/2620/855 1393/2621/856 1394/2623/858 +f 1361/2622/857 1394/2623/858 1395/2624/859 1362/2625/860 +f 1362/2625/860 1395/2624/859 1396/2626/861 1382/2627/862 +f 1363/2628/863 1397/2629/864 1398/2630/865 1364/2631/866 +f 1382/2627/862 1396/2626/861 1397/2629/864 1363/2628/863 +f 1364/2631/866 1398/2630/865 1399/2632/867 1365/2633/868 +f 1366/2634/869 1365/2633/868 1399/2632/867 1400/2635/870 +f 1366/2634/869 1400/2635/870 1401/2636/871 1367/2637/872 +f 1368/2638/873 1367/2637/872 1401/2636/871 1402/2639/874 +f 1368/2640/873 1402/2641/874 1403/2642/875 1369/2643/876 +f 1370/2644/877 1369/2643/876 1403/2642/875 1404/2645/878 +f 1370/2644/877 1404/2645/878 1405/2646/879 1371/2647/880 +f 1371/2647/880 1405/2646/879 1406/2648/881 1373/2649/882 +f 1373/2649/882 1406/2648/881 1407/2650/883 1372/2651/884 +f 1372/2651/884 1407/2650/883 1408/2652/885 1374/2653/886 +f 1374/2653/886 1408/2652/885 1409/2654/887 1375/2655/888 +f 1375/2655/888 1409/2654/887 1410/2656/889 1383/2657/890 +f 1378/2658/891 1376/2659/892 1411/2660/893 1412/2661/894 +f 1376/2659/892 1383/2657/890 1410/2656/889 1411/2660/893 +f 1379/2662/895 1377/2663/896 1413/2664/897 1414/2665/898 +f 1378/2658/891 1412/2661/894 1413/2664/897 1377/2663/896 +f 1380/2666/899 1379/2662/895 1414/2665/898 1415/2667/900 +f 1380/2666/899 1415/2667/900 1384/2603/838 1381/2602/837 +f 1692/2668/692 1691/2669/691 1416/2670/901 1417/2671/902 +f 1702/2672/693 1692/2668/692 1417/2671/902 1418/2673/903 +f 1693/2674/694 1702/2672/693 1418/2673/903 1419/2675/904 +f 1416/2670/901 1691/2669/691 1690/2676/690 1420/2677/905 +f 1703/2678/695 1693/2674/694 1419/2675/904 1424/2679/906 +f 1420/2677/905 1690/2676/690 1701/2680/689 1426/2681/907 +f 1694/2682/696 1703/2678/695 1424/2679/906 1428/2683/908 +f 1426/2681/907 1701/2680/689 1681/1108/149 1675/2684/145 1430/2685/909 +f 1421/2686/910 1417/2671/902 1416/2670/901 1422/2687/911 +f 1423/2688/912 1418/2673/903 1417/2671/902 1421/2686/910 +f 1425/2689/913 1419/2675/904 1418/2673/903 1423/2688/912 +f 1683/2690/312 1704/2691/311 1694/2682/696 1428/2683/908 1432/2692/914 +f 1430/2685/909 1675/2684/145 1676/2693/141 1434/2694/915 +f 1422/2687/911 1416/2670/901 1420/2677/905 1427/2695/916 +f 1429/2696/917 1424/2679/906 1419/2675/904 1425/2689/913 +f 1684/2697/313 1683/2690/312 1432/2692/914 1436/2698/918 +f 1434/2694/915 1676/2693/141 1677/2699/134 1438/2700/919 +f 1431/2701/920 1427/2695/916 1420/2677/905 1426/2681/907 +f 1433/2702/921 1428/2683/908 1424/2679/906 1429/2696/917 +f 334/2703/314 1684/2697/313 1436/2698/918 1440/2704/922 +f 1438/2700/919 1677/2699/134 1687/2705/133 1442/2706/923 +f 1435/2707/924 1431/2701/920 1426/2681/907 1430/2685/909 +f 1772/2708/790 1776/2709/789 1777/2710/791 1769/2711/792 +f 1771/2712/796 1779/2713/795 1780/2714/797 1773/2715/798 +f 1437/2716/925 1432/2692/914 1428/2683/908 1433/2702/921 +f 1775/2717/788 1782/2718/787 1776/2709/789 1772/2708/790 +f 1439/2719/926 1435/2707/924 1430/2685/909 1434/2694/915 +f 1773/2715/798 1780/2714/797 1784/2720/799 1783/2721/800 +f 1441/2722/927 1436/2698/918 1432/2692/914 1437/2716/925 +f 1774/2723/786 1787/2724/785 1782/2718/787 1775/2717/788 +f 1685/2725/316 333/2726/315 1444/2727/928 1448/2728/929 +f 347/2729/137 1678/2730/139 1450/2731/930 1446/2732/931 +f 1443/2733/932 1439/2719/926 1434/2694/915 1438/2700/919 +f 1781/2734/784 1786/2735/783 1787/2724/785 1774/2723/786 +f 1445/2736/933 1440/2704/922 1436/2698/918 1441/2722/927 +f 1790/2737/780 1795/2738/779 1791/2739/781 1785/2740/782 +f 1447/2741/934 1443/2733/932 1438/2700/919 1442/2706/923 +f 1783/2721/800 1784/2720/799 1789/2742/801 1788/2743/802 +f 1449/2744/935 1444/2745/928 1440/2704/922 1445/2736/933 +f 1794/2746/776 1799/2747/775 1795/2738/779 1790/2737/780 +f 345/2748/318 1686/2749/317 1452/2750/936 1456/2751/937 +f 1688/2752/143 1679/2753/147 1458/2754/938 1454/2755/939 +f 1451/2756/940 1447/2741/934 1442/2706/923 1446/2732/931 +f 1788/2743/802 1789/2742/801 1793/2757/803 1792/2758/804 +f 1453/2759/941 1448/2728/929 1444/2727/928 1449/2760/935 +f 1739/2540/778 1706/2539/777 1705/2761/942 1737/2762/943 +f 1798/2763/777 1804/2764/778 1799/2747/775 1794/2746/776 +f 1680/2765/319 345/2748/318 1456/2751/937 1460/2766/944 +f 1458/2754/938 1679/2753/147 1005/2767/157 1695/2768/549 1462/2769/945 +f 1455/2770/946 1451/2756/940 1446/2732/931 1450/2731/930 +f 1792/2758/804 1793/2757/803 1797/2771/805 1796/2772/806 +f 1457/2773/947 1452/2750/936 1448/2728/929 1453/2759/941 +f 1803/2774/942 1808/2775/943 1804/2764/778 1798/2763/777 +f 1459/2776/948 1455/2770/946 1450/2731/930 1454/2755/939 +f 1796/2772/806 1797/2771/805 1802/2777/807 1801/2778/808 +f 1461/2779/949 1456/2751/937 1452/2750/936 1457/2773/947 +f 1807/2780/836 1812/2781/835 1808/2775/943 1803/2774/942 +f 1463/2782/950 1459/2776/948 1454/2755/939 1458/2754/938 +f 1800/2783/810 1806/2784/809 1810/2785/811 1805/2786/812 +f 1461/2779/949 1465/2787/951 1460/2766/944 1456/2751/937 +f 1801/2778/808 1802/2777/807 1806/2788/809 1800/2789/810 +f 1015/2790/543 1030/2791/547 1468/2792/952 1472/2793/953 +f 1014/2794/538 1697/2795/537 1474/2796/954 1470/2797/955 +f 1467/2798/956 1463/2782/950 1458/2754/938 1462/2769/945 +f 1805/2786/812 1810/2785/811 1814/2799/813 1809/2800/814 +f 1769/2711/792 1777/2710/791 1778/2801/793 1770/2802/794 +f 1469/2803/957 1464/2804/958 1460/2766/944 1465/2787/951 +f 1811/2805/834 1816/2806/833 1812/2781/835 1807/2780/836 +f 1029/2807/541 1015/2790/543 1472/2793/953 1476/2808/959 +f 1474/2796/954 1697/2795/537 1029/2807/541 1476/2808/959 +f 1471/2809/960 1467/2798/956 1462/2769/945 1466/2810/961 +f 1809/2800/814 1814/2799/813 1818/2811/815 1813/2812/816 +f 1469/2803/957 1473/2813/962 1468/2792/952 1464/2804/958 +f 1815/2814/830 1820/2815/829 1816/2806/833 1811/2805/834 +f 1475/2816/963 1471/2809/960 1466/2810/961 1470/2797/955 +f 1813/2812/816 1818/2817/815 1823/2818/820 1817/2819/819 +f 1473/2813/962 1477/2820/964 1472/2793/953 1468/2792/952 +f 1819/2821/831 1825/2822/832 1820/2815/829 1815/2814/830 +f 1785/2740/782 1791/2739/781 1786/2735/783 1781/2734/784 +f 1478/2823/965 1475/2816/963 1470/2797/955 1474/2796/954 +f 1817/2819/819 1823/2818/820 1829/2824/817 1822/2825/818 +f 1477/2820/964 1479/2826/966 1476/2808/959 1472/2793/953 +f 1824/2827/828 1821/2828/827 1825/2822/832 1819/2821/831 +f 1479/2826/966 1478/2823/965 1474/2796/954 1476/2808/959 +f 1770/2802/794 1778/2801/793 1779/2713/795 1771/2712/796 +f 1830/2829/826 1827/2830/825 1821/2828/827 1824/2827/828 +f 1822/2825/818 1829/2824/817 1828/2831/821 1831/2832/822 +f 1832/2833/824 1826/2834/823 1827/2830/825 1830/2829/826 +f 1831/2832/822 1828/2831/821 1826/2834/823 1832/2833/824 +f 1480/2835/967 1481/2836/968 1482/2837/969 1483/2838/970 +f 1487/2839/971 1488/2840/972 1481/2836/968 1480/2835/967 +f 1483/2838/970 1482/2837/969 1489/2841/973 1484/2842/974 +f 1484/2842/974 1489/2841/973 1490/2843/975 1485/2844/976 +f 1485/2845/976 1490/2846/975 1491/2847/977 1486/2848/978 +f 1486/2848/978 1491/2847/977 1488/2840/972 1487/2839/971 +f 1492/2849/979 1493/2850/975 1494/2851/973 1495/2852/980 +f 1499/2853/981 1500/2854/977 1493/2850/975 1492/2849/979 +f 1495/2852/980 1494/2851/973 1501/2855/969 1496/2856/982 +f 1496/2856/982 1501/2855/969 1502/2857/968 1497/2858/983 +f 1497/2859/983 1502/2860/968 1503/2861/972 1498/2862/984 +f 1498/2862/984 1503/2861/972 1500/2854/977 1499/2853/981 +f 1504/2863/985 1505/2864/986 1506/2865/987 1507/2866/988 +f 1511/2867/989 1512/2868/990 1505/2864/986 1504/2863/985 +f 1507/2866/988 1506/2865/987 1513/2869/991 1508/2870/992 +f 1508/2870/992 1513/2869/991 1514/2871/993 1509/2872/994 +f 1509/2873/994 1514/2874/993 1515/2875/995 1510/2876/996 +f 1510/2876/996 1515/2875/995 1512/2868/990 1511/2867/989 +f 1516/2877/997 1517/2878/993 1518/2879/991 1519/2880/998 +f 1523/2881/999 1524/2882/995 1517/2878/993 1516/2877/997 +f 1519/2880/998 1518/2879/991 1525/2883/987 1520/2884/1000 +f 1520/2884/1000 1525/2883/987 1526/2885/986 1521/2886/1001 +f 1521/2887/1001 1526/2888/986 1527/2889/990 1522/2890/1002 +f 1522/2890/1002 1527/2889/990 1524/2882/995 1523/2881/999 +f 1528/2891/1003 1529/2892/1004 1530/2893/1005 1531/2894/1006 +f 1535/2895/1007 1536/2896/1008 1529/2892/1004 1528/2891/1003 +f 1531/2894/1006 1530/2893/1005 1537/2897/1009 1532/2898/1010 +f 1532/2898/1010 1537/2897/1009 1538/2899/1011 1533/2900/1012 +f 1533/2901/1012 1538/2902/1011 1539/2903/1013 1534/2904/1014 +f 1534/2904/1014 1539/2903/1013 1536/2896/1008 1535/2895/1007 +f 1540/2905/1015 1541/2906/1011 1542/2907/1009 1543/2908/1016 +f 1547/2909/1017 1548/2910/1013 1541/2906/1011 1540/2905/1015 +f 1543/2908/1016 1542/2907/1009 1549/2911/1005 1544/2912/1018 +f 1544/2912/1018 1549/2911/1005 1550/2913/1004 1545/2914/1019 +f 1545/2915/1019 1550/2916/1004 1551/2917/1008 1546/2918/1020 +f 1546/2918/1020 1551/2917/1008 1548/2910/1013 1547/2909/1017 +f 1552/2919/1021 1553/2920/1022 1554/2921/1023 1555/2922/1024 +f 1559/2923/1025 1560/2924/1026 1553/2920/1022 1552/2919/1021 +f 1555/2922/1024 1554/2921/1023 1561/2925/1027 1556/2926/1028 +f 1556/2926/1028 1561/2925/1027 1562/2927/1029 1557/2928/1030 +f 1557/2929/1030 1562/2930/1029 1563/2931/1031 1558/2932/1032 +f 1558/2932/1032 1563/2931/1031 1560/2924/1026 1559/2923/1025 +f 1564/2933/1033 1565/2934/1029 1566/2935/1027 1567/2936/1034 +f 1571/2937/1035 1572/2938/1031 1565/2934/1029 1564/2933/1033 +f 1567/2936/1034 1566/2935/1027 1573/2939/1023 1568/2940/1036 +f 1568/2940/1036 1573/2939/1023 1574/2941/1022 1569/2942/1037 +f 1569/2943/1037 1574/2944/1022 1575/2945/1026 1570/2946/1038 +f 1570/2946/1038 1575/2945/1026 1572/2938/1031 1571/2937/1035 +f 1576/2947/976 1577/2948/975 1578/2949/977 1579/2950/978 +f 1583/2951/974 1584/2952/973 1577/2948/975 1576/2947/976 +f 1579/2950/978 1578/2949/977 1585/2953/972 1580/2954/971 +f 1580/2954/971 1585/2953/972 1586/2955/968 1581/2956/967 +f 1581/2957/967 1586/2958/968 1587/2959/969 1582/2960/970 +f 1582/2960/970 1587/2959/969 1584/2952/973 1583/2951/974 +f 1588/2961/983 1589/2962/968 1590/2963/972 1591/2964/984 +f 1595/2965/982 1596/2966/969 1589/2962/968 1588/2961/983 +f 1591/2964/984 1590/2963/972 1597/2967/977 1592/2968/981 +f 1592/2968/981 1597/2967/977 1598/2969/975 1593/2970/979 +f 1593/2971/979 1598/2972/975 1599/2973/973 1594/2974/980 +f 1594/2974/980 1599/2973/973 1596/2966/969 1595/2965/982 +f 1600/2975/994 1601/2976/993 1602/2977/995 1603/2978/996 +f 1607/2979/992 1608/2980/991 1601/2976/993 1600/2975/994 +f 1603/2978/996 1602/2977/995 1609/2981/990 1604/2982/989 +f 1604/2982/989 1609/2981/990 1610/2983/986 1605/2984/985 +f 1605/2985/985 1610/2986/986 1611/2987/987 1606/2988/988 +f 1606/2988/988 1611/2987/987 1608/2980/991 1607/2979/992 +f 1612/2989/1001 1613/2990/986 1614/2991/990 1615/2992/1002 +f 1619/2993/1000 1620/2994/987 1613/2990/986 1612/2989/1001 +f 1615/2992/1002 1614/2991/990 1621/2995/995 1616/2996/999 +f 1616/2996/999 1621/2995/995 1622/2997/993 1617/2998/997 +f 1617/2999/997 1622/3000/993 1623/3001/991 1618/3002/998 +f 1618/3002/998 1623/3001/991 1620/2994/987 1619/2993/1000 +f 1624/3003/1012 1625/3004/1011 1626/3005/1013 1627/3006/1014 +f 1631/3007/1010 1632/3008/1009 1625/3004/1011 1624/3003/1012 +f 1627/3006/1014 1626/3005/1013 1633/3009/1008 1628/3010/1007 +f 1628/3010/1007 1633/3009/1008 1634/3011/1004 1629/3012/1003 +f 1629/3013/1003 1634/3014/1004 1635/3015/1005 1630/3016/1006 +f 1630/3016/1006 1635/3015/1005 1632/3008/1009 1631/3007/1010 +f 1636/3017/1019 1637/3018/1004 1638/3019/1008 1639/3020/1020 +f 1643/3021/1018 1644/3022/1005 1637/3018/1004 1636/3017/1019 +f 1639/3020/1020 1638/3019/1008 1645/3023/1013 1640/3024/1017 +f 1640/3024/1017 1645/3023/1013 1646/3025/1011 1641/3026/1015 +f 1641/3027/1015 1646/3028/1011 1647/3029/1009 1642/3030/1016 +f 1642/3030/1016 1647/3029/1009 1644/3022/1005 1643/3021/1018 +f 1648/3031/1030 1649/3032/1029 1650/3033/1031 1651/3034/1032 +f 1655/3035/1028 1656/3036/1027 1649/3032/1029 1648/3031/1030 +f 1651/3034/1032 1650/3033/1031 1657/3037/1026 1652/3038/1025 +f 1652/3038/1025 1657/3037/1026 1658/3039/1022 1653/3040/1021 +f 1653/3041/1021 1658/3042/1022 1659/3043/1023 1654/3044/1024 +f 1654/3044/1024 1659/3043/1023 1656/3036/1027 1655/3035/1028 +f 1660/3045/1037 1661/3046/1022 1662/3047/1026 1663/3048/1038 +f 1667/3049/1036 1668/3050/1023 1661/3046/1022 1660/3045/1037 +f 1663/3048/1038 1662/3047/1026 1669/3051/1031 1664/3052/1035 +f 1664/3052/1035 1669/3051/1031 1670/3053/1029 1665/3054/1033 +f 1665/3055/1033 1670/3056/1029 1671/3057/1027 1666/3058/1034 +f 1666/3058/1034 1671/3057/1027 1668/3050/1023 1667/3049/1036 +f 1737/2762/943 1705/2761/942 1730/2601/836 1738/2600/835 +f 348/3059/213 344/3060/212 1385/2604/839 1384/2603/838 +f 344/3060/212 346/3061/223 1386/2607/842 1385/2604/839 +f 346/3061/223 341/3062/217 1387/2609/844 1386/2607/842 +f 341/3062/217 339/3063/216 1388/2611/846 1387/2609/844 +f 339/3063/216 337/3064/342 1389/2613/848 1388/2611/846 +f 337/3064/342 1672/3065/204 1390/2615/850 1389/2613/848 +f 1672/3065/204 1682/3066/203 1689/3067/704 1391/2616/851 1390/2615/850 +f 1689/3067/704 1018/3068/703 1392/2619/854 1391/2616/851 +f 1018/3068/703 1020/3069/702 1393/2621/856 1392/2619/854 +f 1020/3069/702 1022/3070/701 1394/2623/858 1393/2621/856 +f 1022/3070/701 1024/3071/700 1395/2624/859 1394/2623/858 +f 1024/3071/700 1025/3072/699 1396/2626/861 1395/2624/859 +f 1700/3073/698 1027/3074/697 1398/2630/865 1397/2629/864 +f 1025/3072/699 1700/3073/698 1397/2629/864 1396/2626/861 +f 1027/3074/697 1006/3075/338 335/3076/337 1399/2632/867 1398/2630/865 +f 335/3076/337 336/3077/336 1400/2635/870 1399/2632/867 +f 336/3077/336 338/3078/335 1401/2636/871 1400/2635/870 +f 338/3078/335 340/3079/334 1402/2639/874 1401/2636/871 +f 340/3080/334 342/3081/333 1403/2642/875 1402/2641/874 +f 342/3081/333 343/3082/332 1404/2645/878 1403/2642/875 +f 343/3082/332 1673/3083/331 1405/2646/879 1404/2645/878 +f 1673/3083/331 1674/3084/330 1406/2648/881 1405/2646/879 +f 1674/3084/330 1004/1510/329 1699/3085/705 1407/2650/883 1406/2648/881 +f 1699/3085/705 1698/3086/598 1408/2652/885 1407/2650/883 +f 1698/3086/598 1026/3087/597 1409/2654/887 1408/2652/885 +f 1026/3087/597 1028/3088/608 1410/2656/889 1409/2654/887 +f 1023/3089/602 1021/3090/601 1412/2661/894 1411/2660/893 +f 1028/3088/608 1023/3089/602 1411/2660/893 1410/2656/889 +f 1019/3091/706 1017/3092/589 1414/2665/898 1413/2664/897 +f 1021/3090/601 1019/3091/706 1413/2664/897 1412/2661/894 +f 1017/3092/589 1031/3093/341 349/3094/340 1415/2667/900 1414/2665/898 +f 1415/2667/900 349/3094/340 348/3059/213 1384/2603/838 +f 333/3095/315 334/2703/314 1440/2704/922 1444/2745/928 +f 1687/2705/133 347/2729/137 1446/2732/931 1442/2706/923 +f 1686/2749/317 1685/2725/316 1448/2728/929 1452/2750/936 +f 1678/2730/139 1688/2752/143 1454/2755/939 1450/2731/930 +f 1016/3096/551 328/3097/320 1680/2765/319 1460/2766/944 1464/2804/958 +f 1695/2768/549 1696/3098/545 1466/2810/961 1462/2769/945 +f 1030/2791/547 1016/3096/551 1464/2804/958 1468/2792/952 +f 1696/3098/545 1014/2794/538 1470/2797/955 1466/2810/961 +f 1833/3099/1039 1834/3100/1040 1835/3101/1041 1836/3102/1042 +f 1840/3103/1043 1841/3104/1044 1834/3100/1040 1833/3099/1039 +f 1836/3102/1042 1835/3101/1041 1842/3105/1045 1837/3106/1046 +f 1837/3106/1046 1842/3105/1045 1843/3107/1047 1838/3108/1048 +f 1838/3109/1048 1843/3110/1047 1844/3111/1049 1839/3112/1050 +f 1839/3112/1050 1844/3111/1049 1841/3104/1044 1840/3103/1043 +f 1845/3113/1051 1846/3114/1047 1847/3115/1045 1848/3116/1052 +f 1852/3117/1053 1853/3118/1049 1846/3114/1047 1845/3113/1051 +f 1848/3116/1052 1847/3115/1045 1854/3119/1041 1849/3120/1054 +f 1849/3120/1054 1854/3119/1041 1855/3121/1040 1850/3122/1055 +f 1850/3123/1055 1855/3124/1040 1856/3125/1044 1851/3126/1056 +f 1851/3126/1056 1856/3125/1044 1853/3118/1049 1852/3117/1053 +f 1857/3127/1057 1858/3128/1 1859/3129/1058 1860/3130/1059 +f 1864/3131/1060 1865/3132/1061 1858/3128/1 1857/3127/1057 +f 1860/3130/1059 1859/3129/1058 1866/3133/1062 1861/3134/1063 +f 1861/3134/1063 1866/3133/1062 1867/3135/2 1862/3136/1064 +f 1862/3137/1064 1867/3138/2 1868/3139/1065 1863/3140/1066 +f 1863/3140/1066 1868/3139/1065 1865/3132/1061 1864/3131/1060 +f 1869/3141/1067 1870/3142/2 1871/3143/1062 1872/3144/1068 +f 1876/3145/1069 1877/3146/1065 1870/3142/2 1869/3141/1067 +f 1872/3144/1068 1871/3143/1062 1878/3147/1058 1873/3148/1070 +f 1873/3148/1070 1878/3147/1058 1879/3149/1 1874/3150/1071 +f 1874/3151/1071 1879/3152/1 1880/3153/1061 1875/3154/1072 +f 1875/3154/1072 1880/3153/1061 1877/3146/1065 1876/3145/1069 +f 1881/3155/1073 1882/3156/1074 1883/3157/1075 1884/3158/1076 +f 1888/3159/1077 1889/3160/1078 1882/3156/1074 1881/3155/1073 +f 1884/3158/1076 1883/3157/1075 1890/3161/1079 1885/3162/1080 +f 1885/3162/1080 1890/3161/1079 1891/3163/1081 1886/3164/1082 +f 1886/3165/1082 1891/3166/1081 1892/3167/1083 1887/3168/1084 +f 1887/3168/1084 1892/3167/1083 1889/3160/1078 1888/3159/1077 +f 1893/3169/1085 1894/3170/1081 1895/3171/1079 1896/3172/1086 +f 1900/3173/1087 1901/3174/1083 1894/3170/1081 1893/3169/1085 +f 1896/3172/1086 1895/3171/1079 1902/3175/1075 1897/3176/1088 +f 1897/3176/1088 1902/3175/1075 1903/3177/1074 1898/3178/1089 +f 1898/3179/1089 1903/3180/1074 1904/3181/1078 1899/3182/1090 +f 1899/3182/1090 1904/3181/1078 1901/3174/1083 1900/3173/1087 +f 1905/3183/1091 1906/3184/3 1907/3185/1092 1908/3186/1093 +f 1912/3187/1094 1913/3188/1095 1906/3184/3 1905/3183/1091 +f 1908/3186/1093 1907/3185/1092 1914/3189/1096 1909/3190/1097 +f 1909/3190/1097 1914/3189/1096 1915/3191/4 1910/3192/1098 +f 1910/3193/1098 1915/3194/4 1916/3195/1099 1911/3196/1100 +f 1911/3196/1100 1916/3195/1099 1913/3188/1095 1912/3187/1094 +f 1917/3197/1101 1918/3198/4 1919/3199/1096 1920/3200/1102 +f 1924/3201/1103 1925/3202/1099 1918/3198/4 1917/3197/1101 +f 1920/3200/1102 1919/3199/1096 1926/3203/1092 1921/3204/1104 +f 1921/3204/1104 1926/3203/1092 1927/3205/3 1922/3206/1105 +f 1922/3207/1105 1927/3208/3 1928/3209/1095 1923/3210/1106 +f 1923/3210/1106 1928/3209/1095 1925/3202/1099 1924/3201/1103 +f 1929/3211/1048 1930/3212/1047 1931/3213/1049 1932/3214/1050 +f 1936/3215/1046 1937/3216/1045 1930/3212/1047 1929/3211/1048 +f 1932/3214/1050 1931/3213/1049 1938/3217/1044 1933/3218/1043 +f 1933/3218/1043 1938/3217/1044 1939/3219/1040 1934/3220/1039 +f 1934/3221/1039 1939/3222/1040 1940/3223/1041 1935/3224/1042 +f 1935/3224/1042 1940/3223/1041 1937/3216/1045 1936/3215/1046 +f 1941/3225/1055 1942/3226/1040 1943/3227/1044 1944/3228/1056 +f 1948/3229/1054 1949/3230/1041 1942/3226/1040 1941/3225/1055 +f 1944/3228/1056 1943/3227/1044 1950/3231/1049 1945/3232/1053 +f 1945/3232/1053 1950/3231/1049 1951/3233/1047 1946/3234/1051 +f 1946/3235/1051 1951/3236/1047 1952/3237/1045 1947/3238/1052 +f 1947/3238/1052 1952/3237/1045 1949/3230/1041 1948/3229/1054 +f 1953/3239/1064 1954/3240/2 1955/3241/1065 1956/3242/1066 +f 1960/3243/1063 1961/3244/1062 1954/3240/2 1953/3239/1064 +f 1956/3242/1066 1955/3241/1065 1962/3245/1061 1957/3246/1060 +f 1957/3246/1060 1962/3245/1061 1963/3247/1 1958/3248/1057 +f 1958/3249/1057 1963/3250/1 1964/3251/1058 1959/3252/1059 +f 1959/3252/1059 1964/3251/1058 1961/3244/1062 1960/3243/1063 +f 1965/3253/1071 1966/3254/1 1967/3255/1061 1968/3256/1072 +f 1972/3257/1070 1973/3258/1058 1966/3254/1 1965/3253/1071 +f 1968/3256/1072 1967/3255/1061 1974/3259/1065 1969/3260/1069 +f 1969/3260/1069 1974/3259/1065 1975/3261/2 1970/3262/1067 +f 1970/3263/1067 1975/3264/2 1976/3265/1062 1971/3266/1068 +f 1971/3266/1068 1976/3265/1062 1973/3258/1058 1972/3257/1070 +f 1977/3267/1082 1978/3268/1081 1979/3269/1083 1980/3270/1084 +f 1984/3271/1080 1985/3272/1079 1978/3268/1081 1977/3267/1082 +f 1980/3270/1084 1979/3269/1083 1986/3273/1078 1981/3274/1077 +f 1981/3274/1077 1986/3273/1078 1987/3275/1074 1982/3276/1073 +f 1982/3277/1073 1987/3278/1074 1988/3279/1075 1983/3280/1076 +f 1983/3280/1076 1988/3279/1075 1985/3272/1079 1984/3271/1080 +f 1989/3281/1089 1990/3282/1074 1991/3283/1078 1992/3284/1090 +f 1996/3285/1088 1997/3286/1075 1990/3282/1074 1989/3281/1089 +f 1992/3284/1090 1991/3283/1078 1998/3287/1083 1993/3288/1087 +f 1993/3288/1087 1998/3287/1083 1999/3289/1081 1994/3290/1085 +f 1994/3291/1085 1999/3292/1081 2000/3293/1079 1995/3294/1086 +f 1995/3294/1086 2000/3293/1079 1997/3286/1075 1996/3285/1088 +f 2001/3295/1098 2002/3296/4 2003/3297/1099 2004/3298/1100 +f 2008/3299/1097 2009/3300/1096 2002/3296/4 2001/3295/1098 +f 2004/3298/1100 2003/3297/1099 2010/3301/1095 2005/3302/1094 +f 2005/3302/1094 2010/3301/1095 2011/3303/3 2006/3304/1091 +f 2006/3305/1091 2011/3306/3 2012/3307/1092 2007/3308/1093 +f 2007/3308/1093 2012/3307/1092 2009/3300/1096 2008/3299/1097 +f 2013/3309/1105 2014/3310/3 2015/3311/1095 2016/3312/1106 +f 2020/3313/1104 2021/3314/1092 2014/3310/3 2013/3309/1105 +f 2016/3312/1106 2015/3311/1095 2022/3315/1099 2017/3316/1103 +f 2017/3316/1103 2022/3315/1099 2023/3317/4 2018/3318/1101 +f 2018/3319/1101 2023/3320/4 2024/3321/1096 2019/3322/1102 +f 2019/3322/1102 2024/3321/1096 2021/3314/1092 2020/3313/1104 diff --git a/mods/pipeworks/models/pipeworks_pipe_10_lowpoly.obj b/mods/pipeworks/models/pipeworks_pipe_10_lowpoly.obj new file mode 100644 index 00000000..3838b173 --- /dev/null +++ b/mods/pipeworks/models/pipeworks_pipe_10_lowpoly.obj @@ -0,0 +1,812 @@ +# Blender v2.78 (sub 0) OBJ File: 'pipe-master-lowpoly.blend' +# www.blender.org +o Cylinder.002_Cylinder.006_None.005 +v -0.468750 -0.156250 -0.064721 +v -0.468750 -0.064721 -0.156250 +v -0.468750 0.064721 -0.156250 +v -0.468750 0.156250 -0.064721 +v -0.468750 0.156250 0.064721 +v -0.468750 0.064721 0.156250 +v -0.468750 -0.064721 0.156250 +v -0.468750 -0.156250 0.064721 +v -0.500000 -0.064721 -0.156250 +v -0.500000 -0.156250 -0.064721 +v -0.500000 -0.156250 0.064721 +v -0.500000 -0.064721 0.156250 +v -0.500000 0.064721 0.156250 +v -0.500000 0.156250 0.064721 +v -0.500000 0.156250 -0.064721 +v -0.500000 0.064721 -0.156250 +v 0.500000 -0.156250 -0.064721 +v 0.500000 -0.064721 -0.156250 +v 0.500000 0.064721 -0.156250 +v 0.500000 0.156250 -0.064721 +v 0.500000 0.156250 0.064721 +v 0.500000 0.064721 0.156250 +v 0.500000 -0.064721 0.156250 +v 0.500000 -0.156250 0.064721 +v 0.468750 -0.064721 -0.156250 +v 0.468750 -0.156250 -0.064721 +v 0.468750 -0.156250 0.064721 +v 0.468750 -0.064721 0.156250 +v 0.468750 0.064721 0.156250 +v 0.468750 0.156250 0.064721 +v 0.468750 0.156250 -0.064721 +v 0.468750 0.064721 -0.156250 +v -0.156250 0.468750 -0.064721 +v -0.064721 0.468750 -0.156250 +v 0.064721 0.468750 -0.156250 +v 0.156250 0.468750 -0.064721 +v 0.156250 0.468750 0.064721 +v 0.064721 0.468750 0.156250 +v -0.064721 0.468750 0.156250 +v -0.156250 0.468750 0.064721 +v -0.064721 0.500000 -0.156250 +v -0.156250 0.500000 -0.064721 +v -0.156250 0.500000 0.064721 +v -0.064721 0.500000 0.156250 +v 0.064721 0.500000 0.156250 +v 0.156250 0.500000 0.064721 +v 0.156250 0.500000 -0.064721 +v 0.064721 0.500000 -0.156250 +v -0.156250 -0.500000 -0.064721 +v -0.064721 -0.500000 -0.156250 +v 0.064721 -0.500000 -0.156250 +v 0.156250 -0.500000 -0.064721 +v 0.156250 -0.500000 0.064721 +v 0.064721 -0.500000 0.156250 +v -0.064721 -0.500000 0.156250 +v -0.156250 -0.500000 0.064721 +v -0.064721 -0.468750 -0.156250 +v -0.156250 -0.468750 -0.064721 +v -0.156250 -0.468750 0.064721 +v -0.064721 -0.468750 0.156250 +v 0.064721 -0.468750 0.156250 +v 0.156250 -0.468750 0.064721 +v 0.156250 -0.468750 -0.064721 +v 0.064721 -0.468750 -0.156250 +v -0.156250 -0.064721 -0.468750 +v -0.064721 -0.156250 -0.468750 +v 0.064721 -0.156250 -0.468750 +v 0.156250 -0.064721 -0.468750 +v 0.156250 0.064721 -0.468750 +v 0.064721 0.156250 -0.468750 +v -0.064721 0.156250 -0.468750 +v -0.156250 0.064721 -0.468750 +v -0.064721 -0.156250 -0.500000 +v -0.156250 -0.064721 -0.500000 +v -0.156250 0.064721 -0.500000 +v -0.064721 0.156250 -0.500000 +v 0.064721 0.156250 -0.500000 +v 0.156250 0.064721 -0.500000 +v 0.156250 -0.064721 -0.500000 +v 0.064721 -0.156250 -0.500000 +v -0.156250 -0.064721 0.500000 +v -0.064721 -0.156250 0.500000 +v 0.064721 -0.156250 0.500000 +v 0.156250 -0.064721 0.500000 +v 0.156250 0.064721 0.500000 +v 0.064721 0.156250 0.500000 +v -0.064721 0.156250 0.500000 +v -0.156250 0.064721 0.500000 +v -0.064721 -0.156250 0.468750 +v -0.156250 -0.064721 0.468750 +v -0.156250 0.064721 0.468750 +v -0.064721 0.156250 0.468750 +v 0.064721 0.156250 0.468750 +v 0.156250 0.064721 0.468750 +v 0.156250 -0.064721 0.468750 +v 0.064721 -0.156250 0.468750 +v -0.468750 -0.051777 -0.125000 +v -0.468750 -0.125000 -0.051777 +v -0.468750 -0.125000 0.051777 +v -0.468750 -0.051777 0.125000 +v -0.468750 0.051777 0.125000 +v -0.468750 0.125000 0.051777 +v -0.468750 0.125000 -0.051777 +v -0.468750 0.051777 -0.125000 +v 0.468750 -0.125000 -0.051777 +v 0.468750 -0.051777 -0.125000 +v 0.468750 0.051777 -0.125000 +v 0.468750 0.125000 -0.051777 +v 0.468750 0.125000 0.051777 +v 0.468750 0.051777 0.125000 +v 0.468750 -0.051777 0.125000 +v 0.468750 -0.125000 0.051777 +v 0.125000 0.125000 -0.051777 +v 0.125000 0.125000 0.051777 +v 0.088388 0.088388 0.088388 +v 0.125000 0.051777 0.125000 +v 0.125000 -0.051777 0.125000 +v 0.088388 -0.088388 0.088388 +v 0.125000 -0.125000 0.051777 +v 0.125000 -0.125000 -0.051777 +v 0.088388 -0.088388 -0.088388 +v 0.125000 -0.051777 -0.125000 +v 0.125000 0.051777 -0.125000 +v 0.088388 0.088388 -0.088388 +v -0.125000 -0.125000 0.051777 +v -0.088388 -0.088388 0.088388 +v -0.125000 -0.051777 0.125000 +v -0.125000 0.051777 0.125000 +v -0.088388 0.088388 0.088389 +v -0.125000 0.125000 0.051777 +v -0.125000 0.125000 -0.051777 +v -0.088388 0.088388 -0.088388 +v -0.125000 0.051777 -0.125000 +v -0.125000 -0.051777 -0.125000 +v -0.088388 -0.088388 -0.088388 +v -0.125000 -0.125000 -0.051777 +v -0.051777 0.468750 -0.125000 +v -0.125000 0.468750 -0.051777 +v -0.125000 0.468750 0.051777 +v -0.051777 0.468750 0.125000 +v 0.051777 0.468750 0.125000 +v 0.125000 0.468750 0.051777 +v 0.125000 0.468750 -0.051777 +v 0.051777 0.468750 -0.125000 +v -0.125000 -0.468750 -0.051777 +v -0.051777 -0.468750 -0.125000 +v 0.051777 -0.468750 -0.125000 +v 0.125000 -0.468750 -0.051777 +v 0.125000 -0.468750 0.051777 +v 0.051777 -0.468750 0.125000 +v -0.051777 -0.468750 0.125000 +v -0.125000 -0.468750 0.051777 +v 0.051777 -0.125000 0.125000 +v -0.051777 -0.125000 0.125000 +v -0.051777 -0.125000 -0.125000 +v 0.051777 -0.125000 -0.125000 +v -0.051777 0.125000 0.125000 +v 0.051777 0.125000 0.125000 +v 0.051777 0.125000 -0.125000 +v -0.051777 0.125000 -0.125000 +v -0.051777 -0.125000 -0.468750 +v -0.125000 -0.051777 -0.468750 +v -0.125000 0.051777 -0.468750 +v -0.051777 0.125000 -0.468750 +v 0.051777 0.125000 -0.468750 +v 0.125000 0.051777 -0.468750 +v 0.125000 -0.051777 -0.468750 +v 0.051777 -0.125000 -0.468750 +v -0.125000 -0.051777 0.468750 +v -0.051777 -0.125000 0.468750 +v 0.051777 -0.125000 0.468750 +v 0.125000 -0.051777 0.468750 +v 0.125000 0.051777 0.468750 +v 0.051777 0.125000 0.468750 +v -0.051777 0.125000 0.468750 +v -0.125000 0.051777 0.468750 +vt 0.7188 0.8906 +vt 0.6250 0.9844 +vt 0.5000 0.9844 +vt 0.4062 0.8906 +vt 0.4062 0.7656 +vt 0.5000 0.6719 +vt 0.6250 0.6719 +vt 0.7188 0.7656 +vt 0.2500 0.9844 +vt 0.3438 0.8906 +vt 0.3438 0.7656 +vt 0.2500 0.6719 +vt 0.1250 0.6719 +vt 0.0312 0.7656 +vt 0.0312 0.8906 +vt 0.1250 0.9844 +vt 0.3438 0.8906 +vt 0.2500 0.9844 +vt 0.1250 0.9844 +vt 0.0312 0.8906 +vt 0.0312 0.7656 +vt 0.1250 0.6719 +vt 0.2500 0.6719 +vt 0.3438 0.7656 +vt 0.6250 0.9844 +vt 0.7188 0.8906 +vt 0.7188 0.7656 +vt 0.6250 0.6719 +vt 0.5000 0.6719 +vt 0.4062 0.7656 +vt 0.4062 0.8906 +vt 0.5000 0.9844 +vt 0.7188 0.8906 +vt 0.6250 0.9844 +vt 0.5000 0.9844 +vt 0.4062 0.8906 +vt 0.4062 0.7656 +vt 0.5000 0.6719 +vt 0.6250 0.6719 +vt 0.7188 0.7656 +vt 0.2500 0.9844 +vt 0.3438 0.8906 +vt 0.3438 0.7656 +vt 0.2500 0.6719 +vt 0.1250 0.6719 +vt 0.0312 0.7656 +vt 0.0312 0.8906 +vt 0.1250 0.9844 +vt 0.3438 0.8906 +vt 0.2500 0.9844 +vt 0.1250 0.9844 +vt 0.0312 0.8906 +vt 0.0312 0.7656 +vt 0.1250 0.6719 +vt 0.2500 0.6719 +vt 0.3438 0.7656 +vt 0.6250 0.9844 +vt 0.7188 0.8906 +vt 0.7188 0.7656 +vt 0.6250 0.6719 +vt 0.5000 0.6719 +vt 0.4062 0.7656 +vt 0.4062 0.8906 +vt 0.5000 0.9844 +vt 0.7188 0.8906 +vt 0.6250 0.9844 +vt 0.5000 0.9844 +vt 0.4062 0.8906 +vt 0.4062 0.7656 +vt 0.5000 0.6719 +vt 0.6250 0.6719 +vt 0.7188 0.7656 +vt 0.2500 0.9844 +vt 0.3438 0.8906 +vt 0.3438 0.7656 +vt 0.2500 0.6719 +vt 0.1250 0.6719 +vt 0.0312 0.7656 +vt 0.0312 0.8906 +vt 0.1250 0.9844 +vt 0.3438 0.8906 +vt 0.2500 0.9844 +vt 0.1250 0.9844 +vt 0.0312 0.8906 +vt 0.0312 0.7656 +vt 0.1250 0.6719 +vt 0.2500 0.6719 +vt 0.3438 0.7656 +vt 0.6250 0.9844 +vt 0.7188 0.8906 +vt 0.7188 0.7656 +vt 0.6250 0.6719 +vt 0.5000 0.6719 +vt 0.4062 0.7656 +vt 0.4062 0.8906 +vt 0.5000 0.9844 +vt 0.8125 0.5938 +vt 0.8125 0.5625 +vt 0.8750 0.5625 +vt 0.8750 0.5938 +vt 0.9375 0.5625 +vt 0.9375 0.5938 +vt 1.0000 0.5625 +vt 1.0000 0.5938 +vt 0.5000 0.5938 +vt 0.5000 0.5625 +vt 0.5625 0.5625 +vt 0.5625 0.5938 +vt 0.6250 0.5625 +vt 0.6250 0.5938 +vt 0.6875 0.5625 +vt 0.6875 0.5938 +vt 0.7500 0.5625 +vt 0.7500 0.5938 +vt 0.3750 0.5938 +vt 0.3750 0.5625 +vt 0.4375 0.5625 +vt 0.4375 0.5938 +vt 0.3125 0.5938 +vt 0.3125 0.5625 +vt 0.5000 0.5625 +vt 0.5000 0.5938 +vt 0.0000 0.5938 +vt 0.0000 0.5625 +vt 0.0625 0.5625 +vt 0.0625 0.5938 +vt 0.1250 0.5625 +vt 0.1250 0.5938 +vt 0.1875 0.5625 +vt 0.1875 0.5938 +vt 0.2500 0.5625 +vt 0.2500 0.5938 +vt 0.0000 1.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 1.0000 0.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 0.6250 0.5156 +vt 0.5000 0.5156 +vt 0.5000 0.3281 +vt 0.6250 0.3281 +vt 0.6875 0.3125 +vt 0.7500 0.3281 +vt 0.7500 0.5156 +vt 0.8750 0.5156 +vt 0.8750 0.3281 +vt 1.0000 0.5156 +vt 0.9375 0.3125 +vt 1.0000 0.3281 +vt 0.1250 0.5156 +vt -0.0000 0.5156 +vt -0.0000 0.3281 +vt 0.1250 0.3281 +vt 0.1875 0.3125 +vt 0.2500 0.3281 +vt 0.2500 0.5156 +vt 0.3750 0.3281 +vt 0.3750 0.5156 +vt 0.4375 0.3125 +vt 1.0000 0.0156 +vt 1.0000 0.2031 +vt 0.9375 0.2188 +vt 0.8750 0.2031 +vt 0.8750 0.0156 +vt 0.7500 0.2031 +vt 0.7500 0.0156 +vt 0.6250 0.0156 +vt 0.6875 0.2188 +vt 0.6250 0.2031 +vt 0.5000 0.2031 +vt 0.5000 0.0156 +vt 0.4375 0.2188 +vt 0.3750 0.2031 +vt 0.3750 0.0156 +vt 0.2500 0.0156 +vt 0.2500 0.2031 +vt 0.1250 0.0156 +vt 0.1875 0.2188 +vt 0.1250 0.2031 +vt -0.0000 0.2031 +vt -0.0000 0.0156 +vt 0.8125 0.5938 +vt 0.8125 0.5625 +vt 0.8750 0.5625 +vt 0.8750 0.5938 +vt 0.9375 0.5625 +vt 0.9375 0.5938 +vt 1.0000 0.5625 +vt 1.0000 0.5938 +vt 0.5000 0.5938 +vt 0.5000 0.5625 +vt 0.5625 0.5625 +vt 0.5625 0.5938 +vt 0.6250 0.5625 +vt 0.6250 0.5938 +vt 0.6875 0.5625 +vt 0.6875 0.5938 +vt 0.7500 0.5625 +vt 0.7500 0.5938 +vt 0.3750 0.5938 +vt 0.3750 0.5625 +vt 0.4375 0.5625 +vt 0.4375 0.5938 +vt 0.3125 0.5938 +vt 0.3125 0.5625 +vt 0.5000 0.5625 +vt 0.5000 0.5938 +vt 0.0000 0.5938 +vt 0.0000 0.5625 +vt 0.0625 0.5625 +vt 0.0625 0.5938 +vt 0.1250 0.5625 +vt 0.1250 0.5938 +vt 0.1875 0.5625 +vt 0.1875 0.5938 +vt 0.2500 0.5625 +vt 0.2500 0.5938 +vt 0.0000 1.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 1.0000 0.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 0.6250 0.5156 +vt 0.5000 0.5156 +vt 0.5000 0.3281 +vt 0.6250 0.3281 +vt 0.6875 0.3125 +vt 0.7500 0.3281 +vt 0.7500 0.5156 +vt 0.8750 0.5156 +vt 0.8750 0.3281 +vt 1.0000 0.5156 +vt 0.9375 0.3125 +vt 1.0000 0.3281 +vt 0.1250 0.5156 +vt -0.0000 0.5156 +vt -0.0000 0.3281 +vt 0.1250 0.3281 +vt 0.1875 0.3125 +vt 0.2500 0.3281 +vt 0.2500 0.5156 +vt 0.3750 0.3281 +vt 0.3750 0.5156 +vt 0.4375 0.3125 +vt 1.0000 0.0156 +vt 1.0000 0.2031 +vt 0.9375 0.2188 +vt 0.8750 0.2031 +vt 0.8750 0.0156 +vt 0.7500 0.2031 +vt 0.7500 0.0156 +vt 0.6250 0.0156 +vt 0.6875 0.2188 +vt 0.6250 0.2031 +vt 0.5000 0.2031 +vt 0.5000 0.0156 +vt 0.4375 0.2188 +vt 0.3750 0.2031 +vt 0.3750 0.0156 +vt 0.2500 0.0156 +vt 0.2500 0.2031 +vt 0.1250 0.0156 +vt 0.1875 0.2188 +vt 0.1250 0.2031 +vt -0.0000 0.2031 +vt -0.0000 0.0156 +vt 0.8125 0.5938 +vt 0.8125 0.5625 +vt 0.8750 0.5625 +vt 0.8750 0.5938 +vt 0.9375 0.5625 +vt 0.9375 0.5938 +vt 1.0000 0.5625 +vt 1.0000 0.5938 +vt 0.5000 0.5938 +vt 0.5000 0.5625 +vt 0.5625 0.5625 +vt 0.5625 0.5938 +vt 0.6250 0.5625 +vt 0.6250 0.5938 +vt 0.6875 0.5625 +vt 0.6875 0.5938 +vt 0.7500 0.5625 +vt 0.7500 0.5938 +vt 0.3750 0.5938 +vt 0.3750 0.5625 +vt 0.4375 0.5625 +vt 0.4375 0.5938 +vt 0.3125 0.5938 +vt 0.3125 0.5625 +vt 0.5000 0.5625 +vt 0.5000 0.5938 +vt 0.0000 0.5938 +vt 0.0000 0.5625 +vt 0.0625 0.5625 +vt 0.0625 0.5938 +vt 0.1250 0.5625 +vt 0.1250 0.5938 +vt 0.1875 0.5625 +vt 0.1875 0.5938 +vt 0.2500 0.5625 +vt 0.2500 0.5938 +vt 0.0000 1.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 1.0000 0.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 0.6250 0.5156 +vt 0.5000 0.5156 +vt 0.5000 0.3281 +vt 0.6250 0.3281 +vt 0.7500 0.3281 +vt 0.7500 0.5156 +vt 0.8750 0.5156 +vt 0.8750 0.3281 +vt 1.0000 0.5156 +vt 0.9375 0.3125 +vt 1.0000 0.3281 +vt 0.1250 0.5156 +vt -0.0000 0.5156 +vt -0.0000 0.3281 +vt 0.1250 0.3281 +vt 0.1875 0.3125 +vt 0.2500 0.3281 +vt 0.2500 0.5156 +vt 0.3750 0.3281 +vt 0.3750 0.5156 +vt 0.4375 0.3125 +vt 1.0000 0.0156 +vt 1.0000 0.2031 +vt 0.9375 0.2188 +vt 0.8750 0.2031 +vt 0.8750 0.0156 +vt 0.7500 0.2031 +vt 0.7500 0.0156 +vt 0.6250 0.0156 +vt 0.6875 0.2188 +vt 0.6250 0.2031 +vt 0.5000 0.2031 +vt 0.5000 0.0156 +vt 0.4375 0.2188 +vt 0.3750 0.2031 +vt 0.3750 0.0156 +vt 0.2500 0.0156 +vt 0.2500 0.2031 +vt 0.1250 0.0156 +vt 0.1250 0.2031 +vt -0.0000 0.2031 +vt -0.0000 0.0156 +vn 1.0000 0.0000 0.0000 +vn -1.0000 -0.0000 0.0000 +vn 0.0000 -1.0000 -0.0000 +vn 0.0000 1.0000 0.0000 +vn 0.0000 0.0000 1.0000 +vn -0.0000 0.0000 -1.0000 +vn -0.6302 -0.2971 -0.7173 +vn 0.6302 -0.2971 -0.7173 +vn 0.6302 -0.7173 -0.2971 +vn -0.6302 -0.7173 -0.2971 +vn 0.6302 -0.7173 0.2971 +vn -0.6302 -0.7173 0.2971 +vn 0.6302 -0.2971 0.7173 +vn -0.6302 -0.2971 0.7173 +vn 0.6302 0.2971 0.7173 +vn -0.6302 0.2971 0.7173 +vn 0.6302 0.7173 0.2971 +vn -0.6302 0.7173 0.2971 +vn 0.6302 0.7173 -0.2971 +vn -0.6302 0.7173 -0.2971 +vn 0.6302 0.2971 -0.7173 +vn -0.6302 0.2971 -0.7173 +vn -0.6303 -0.2971 -0.7173 +vn -0.6303 -0.7173 -0.2971 +vn -0.6303 -0.7173 0.2971 +vn -0.6303 -0.2971 0.7173 +vn -0.6303 0.2971 0.7173 +vn -0.6303 0.7173 0.2971 +vn -0.6303 0.7173 -0.2971 +vn -0.6303 0.2971 -0.7173 +vn 0.6303 -0.7173 -0.2971 +vn 0.6303 -0.2971 -0.7173 +vn 0.6303 0.2971 -0.7173 +vn 0.6303 0.7173 -0.2971 +vn 0.6303 0.7173 0.2971 +vn 0.6303 0.2971 0.7173 +vn 0.6303 -0.2971 0.7173 +vn 0.6303 -0.7173 0.2971 +vn 0.5789 0.5789 -0.5743 +vn 0.5789 0.5789 0.5743 +vn 0.5774 0.5774 0.5774 +vn 0.5789 0.5743 0.5789 +vn 0.5789 -0.5743 0.5789 +vn 0.5774 -0.5774 0.5774 +vn 0.5789 -0.5789 0.5743 +vn 0.5789 -0.5789 -0.5743 +vn 0.5774 -0.5774 -0.5774 +vn 0.5789 -0.5743 -0.5789 +vn 0.5789 0.5743 -0.5789 +vn 0.5774 0.5774 -0.5774 +vn -0.5789 -0.5789 0.5743 +vn -0.5774 -0.5774 0.5774 +vn -0.5789 -0.5743 0.5789 +vn -0.5789 0.5743 0.5789 +vn -0.5774 0.5774 0.5773 +vn -0.5789 0.5789 0.5743 +vn -0.5789 0.5789 -0.5743 +vn -0.5774 0.5774 -0.5774 +vn -0.5789 0.5743 -0.5789 +vn -0.5789 -0.5743 -0.5789 +vn -0.5774 -0.5774 -0.5774 +vn -0.5789 -0.5789 -0.5743 +vn -0.2971 0.6302 -0.7173 +vn -0.2971 -0.6302 -0.7173 +vn -0.7173 -0.6302 -0.2971 +vn -0.7173 0.6302 -0.2971 +vn -0.7173 -0.6302 0.2971 +vn -0.7173 0.6302 0.2971 +vn -0.2971 -0.6302 0.7173 +vn -0.2971 0.6302 0.7173 +vn 0.2971 -0.6302 0.7173 +vn 0.2971 0.6302 0.7173 +vn 0.7173 -0.6302 0.2971 +vn 0.7173 0.6302 0.2971 +vn 0.7173 -0.6302 -0.2971 +vn 0.7173 0.6302 -0.2971 +vn 0.2971 -0.6302 -0.7173 +vn 0.2971 0.6302 -0.7173 +vn -0.2971 0.6303 -0.7173 +vn -0.7173 0.6303 -0.2971 +vn -0.7173 0.6303 0.2971 +vn -0.2971 0.6303 0.7173 +vn 0.2971 0.6303 0.7173 +vn 0.7173 0.6303 0.2971 +vn 0.7173 0.6303 -0.2971 +vn 0.2971 0.6303 -0.7173 +vn -0.7173 -0.6303 -0.2971 +vn -0.2971 -0.6303 -0.7173 +vn 0.2971 -0.6303 -0.7173 +vn 0.7173 -0.6303 -0.2971 +vn 0.7173 -0.6303 0.2971 +vn 0.2971 -0.6303 0.7173 +vn -0.2971 -0.6303 0.7173 +vn -0.7173 -0.6303 0.2971 +vn 0.5743 -0.5789 0.5789 +vn -0.5743 -0.5789 0.5789 +vn -0.5743 -0.5789 -0.5789 +vn 0.5743 -0.5789 -0.5789 +vn -0.5743 0.5789 0.5789 +vn 0.5743 0.5789 0.5789 +vn 0.5743 0.5789 -0.5789 +vn -0.5743 0.5789 -0.5789 +vn -0.2971 -0.7173 -0.6302 +vn -0.2971 -0.7173 0.6302 +vn -0.7173 -0.2971 0.6302 +vn -0.7173 -0.2971 -0.6302 +vn -0.7173 0.2971 0.6302 +vn -0.7173 0.2971 -0.6302 +vn -0.2971 0.7173 0.6302 +vn -0.2971 0.7173 -0.6302 +vn 0.2971 0.7173 0.6302 +vn 0.2971 0.7173 -0.6302 +vn 0.7173 0.2971 0.6302 +vn 0.7173 0.2971 -0.6302 +vn 0.7173 -0.2971 0.6302 +vn 0.7173 -0.2971 -0.6302 +vn 0.2971 -0.7173 0.6302 +vn 0.2971 -0.7173 -0.6302 +vn -0.2971 -0.7173 -0.6303 +vn -0.7173 -0.2971 -0.6303 +vn -0.7173 0.2971 -0.6303 +vn -0.2971 0.7173 -0.6303 +vn 0.2971 0.7173 -0.6303 +vn 0.7173 0.2971 -0.6303 +vn 0.7173 -0.2971 -0.6303 +vn 0.2971 -0.7173 -0.6303 +vn -0.7173 -0.2971 0.6303 +vn -0.2971 -0.7173 0.6303 +vn 0.2971 -0.7173 0.6303 +vn 0.7173 -0.2971 0.6303 +vn 0.7173 0.2971 0.6303 +vn 0.2971 0.7173 0.6303 +vn -0.2971 0.7173 0.6303 +vn -0.7173 0.2971 0.6303 +g Cylinder.002_Cylinder.006_None.005_Cylinder.002_Cylinder.006_None.005_None +s off +f 1/1/1 2/2/1 3/3/1 4/4/1 5/5/1 6/6/1 7/7/1 8/8/1 +f 9/9/2 10/10/2 11/11/2 12/12/2 13/13/2 14/14/2 15/15/2 16/16/2 +f 17/17/1 18/18/1 19/19/1 20/20/1 21/21/1 22/22/1 23/23/1 24/24/1 +f 25/25/2 26/26/2 27/27/2 28/28/2 29/29/2 30/30/2 31/31/2 32/32/2 +f 33/33/3 34/34/3 35/35/3 36/36/3 37/37/3 38/38/3 39/39/3 40/40/3 +f 41/41/4 42/42/4 43/43/4 44/44/4 45/45/4 46/46/4 47/47/4 48/48/4 +f 49/49/3 50/50/3 51/51/3 52/52/3 53/53/3 54/54/3 55/55/3 56/56/3 +f 57/57/4 58/58/4 59/59/4 60/60/4 61/61/4 62/62/4 63/63/4 64/64/4 +f 65/65/5 66/66/5 67/67/5 68/68/5 69/69/5 70/70/5 71/71/5 72/72/5 +f 73/73/6 74/74/6 75/75/6 76/76/6 77/77/6 78/78/6 79/79/6 80/80/6 +f 81/81/5 82/82/5 83/83/5 84/84/5 85/85/5 86/86/5 87/87/5 88/88/5 +f 89/89/6 90/90/6 91/91/6 92/92/6 93/93/6 94/94/6 95/95/6 96/96/6 +s 1 +f 9/97/7 2/98/8 1/99/9 10/100/10 +f 10/100/10 1/99/9 8/101/11 11/102/12 +f 11/102/12 8/101/11 7/103/13 12/104/14 +f 12/105/14 7/106/13 6/107/15 13/108/16 +f 13/108/16 6/107/15 5/109/17 14/110/18 +f 14/110/18 5/109/17 4/111/19 15/112/20 +f 15/112/20 4/111/19 3/113/21 16/114/22 +f 16/114/22 3/113/21 2/98/8 9/97/7 +f 26/115/10 17/116/9 24/117/11 27/118/12 +f 25/119/7 18/120/8 17/116/9 26/115/10 +f 27/118/12 24/117/11 23/121/13 28/122/14 +f 28/123/14 23/124/13 22/125/15 29/126/16 +f 29/126/16 22/125/15 21/127/17 30/128/18 +f 30/128/18 21/127/17 20/129/19 31/130/20 +f 31/130/20 20/129/19 19/131/21 32/132/22 +f 32/132/22 19/131/21 18/120/8 25/119/7 +f 97/133/23 98/134/24 99/135/25 100/136/26 101/137/27 102/138/28 103/139/29 104/140/30 +f 105/141/31 106/142/32 107/143/33 108/144/34 109/145/35 110/146/36 111/147/37 112/148/38 +f 109/149/35 108/150/34 113/151/39 114/152/40 +f 109/149/35 114/152/40 115/153/41 116/154/42 110/155/36 +f 111/156/37 110/155/36 116/154/42 117/157/43 +f 112/158/38 111/156/37 117/157/43 118/159/44 119/160/45 +f 105/161/31 112/162/38 119/163/45 120/164/46 +f 105/161/31 120/164/46 121/165/47 122/166/48 106/167/32 +f 106/167/32 122/166/48 123/168/49 107/169/33 +f 107/169/33 123/168/49 124/170/50 113/151/39 108/150/34 +f 99/171/25 125/172/51 126/173/52 127/174/53 100/175/26 +f 100/175/26 127/174/53 128/176/54 101/177/27 +f 102/178/28 101/177/27 128/176/54 129/179/55 130/180/56 +f 102/178/28 130/180/56 131/181/57 103/182/29 +f 103/182/29 131/181/57 132/183/58 133/184/59 104/185/30 +f 97/186/23 104/185/30 133/184/59 134/187/60 +f 98/188/24 97/186/23 134/187/60 135/189/61 136/190/62 +f 98/188/24 136/190/62 125/191/51 99/192/25 +f 41/193/63 34/194/64 33/195/65 42/196/66 +f 42/196/66 33/195/65 40/197/67 43/198/68 +f 43/198/68 40/197/67 39/199/69 44/200/70 +f 44/201/70 39/202/69 38/203/71 45/204/72 +f 45/204/72 38/203/71 37/205/73 46/206/74 +f 46/206/74 37/205/73 36/207/75 47/208/76 +f 47/208/76 36/207/75 35/209/77 48/210/78 +f 48/210/78 35/209/77 34/194/64 41/193/63 +f 58/211/66 49/212/65 56/213/67 59/214/68 +f 57/215/63 50/216/64 49/212/65 58/211/66 +f 59/214/68 56/213/67 55/217/69 60/218/70 +f 60/219/70 55/220/69 54/221/71 61/222/72 +f 61/222/72 54/221/71 53/223/73 62/224/74 +f 62/224/74 53/223/73 52/225/75 63/226/76 +f 63/226/76 52/225/75 51/227/77 64/228/78 +f 64/228/78 51/227/77 50/216/64 57/215/63 +f 137/229/79 138/230/80 139/231/81 140/232/82 141/233/83 142/234/84 143/235/85 144/236/86 +f 145/237/87 146/238/88 147/239/89 148/240/90 149/241/91 150/242/92 151/243/93 152/244/94 +f 149/245/91 148/246/90 120/247/46 119/248/45 +f 149/245/91 119/248/45 118/249/44 153/250/95 150/251/92 +f 151/252/93 150/251/92 153/250/95 154/253/96 +f 152/254/94 151/252/93 154/253/96 126/255/52 125/256/51 +f 145/257/87 152/258/94 125/259/51 136/260/62 +f 145/257/87 136/260/62 135/261/61 155/262/97 146/263/88 +f 146/263/88 155/262/97 156/264/98 147/265/89 +f 147/265/89 156/264/98 121/266/47 120/247/46 148/246/90 +f 139/267/81 130/268/56 129/269/55 157/270/99 140/271/82 +f 140/271/82 157/270/99 158/272/100 141/273/83 +f 142/274/84 141/273/83 158/272/100 115/275/41 114/276/40 +f 142/274/84 114/276/40 113/277/39 143/278/85 +f 143/278/85 113/277/39 124/279/50 159/280/101 144/281/86 +f 137/282/79 144/281/86 159/280/101 160/283/102 +f 138/284/80 137/282/79 160/283/102 132/285/58 131/286/57 +f 138/284/80 131/286/57 130/287/56 139/288/81 +f 73/289/103 66/290/104 65/291/105 74/292/106 +f 74/292/106 65/291/105 72/293/107 75/294/108 +f 75/294/108 72/293/107 71/295/109 76/296/110 +f 76/297/110 71/298/109 70/299/111 77/300/112 +f 77/300/112 70/299/111 69/301/113 78/302/114 +f 78/302/114 69/301/113 68/303/115 79/304/116 +f 79/304/116 68/303/115 67/305/117 80/306/118 +f 80/306/118 67/305/117 66/290/104 73/289/103 +f 90/307/106 81/308/105 88/309/107 91/310/108 +f 89/311/103 82/312/104 81/308/105 90/307/106 +f 91/310/108 88/309/107 87/313/109 92/314/110 +f 92/315/110 87/316/109 86/317/111 93/318/112 +f 93/318/112 86/317/111 85/319/113 94/320/114 +f 94/320/114 85/319/113 84/321/115 95/322/116 +f 95/322/116 84/321/115 83/323/117 96/324/118 +f 96/324/118 83/323/117 82/312/104 89/311/103 +f 161/325/119 162/326/120 163/327/121 164/328/122 165/329/123 166/330/124 167/331/125 168/332/126 +f 169/333/127 170/334/128 171/335/129 172/336/130 173/337/131 174/338/132 175/339/133 176/340/134 +f 173/341/131 172/342/130 117/343/43 116/344/42 +f 173/341/131 116/344/42 115/153/41 158/345/100 174/346/132 +f 175/347/133 174/346/132 158/345/100 157/348/99 +f 176/349/134 175/347/133 157/348/99 129/350/55 128/351/54 +f 169/352/127 176/353/134 128/354/54 127/355/53 +f 169/352/127 127/355/53 126/356/52 154/357/96 170/358/128 +f 170/358/128 154/357/96 153/359/95 171/360/129 +f 171/360/129 153/359/95 118/361/44 117/343/43 172/342/130 +f 163/362/121 133/363/59 132/364/58 160/365/102 164/366/122 +f 164/366/122 160/365/102 159/367/101 165/368/123 +f 166/369/124 165/368/123 159/367/101 124/370/50 123/371/49 +f 166/369/124 123/371/49 122/372/48 167/373/125 +f 167/373/125 122/372/48 121/374/47 156/375/98 168/376/126 +f 161/377/119 168/376/126 156/375/98 155/378/97 +f 162/379/120 161/377/119 155/378/97 135/189/61 134/380/60 +f 162/379/120 134/380/60 133/381/59 163/382/121 diff --git a/mods/pipeworks/models/pipeworks_pipe_2.obj b/mods/pipeworks/models/pipeworks_pipe_2.obj new file mode 100644 index 00000000..f0edcfc5 --- /dev/null +++ b/mods/pipeworks/models/pipeworks_pipe_2.obj @@ -0,0 +1,1958 @@ +# Blender v2.78 (sub 0) OBJ File: 'pipe-spigot-pouring.blend' +# www.blender.org +o Pipe_Cylinder.002_None.002 +v 0.460914 0.136982 -0.046976 +v 0.460914 0.142474 -0.054133 +v 0.460914 0.139022 -0.062467 +v 0.460914 0.130078 -0.063644 +v 0.460914 0.124587 -0.056488 +v 0.460914 0.128039 -0.048153 +v 0.460914 0.063644 -0.130078 +v 0.460914 0.062467 -0.139022 +v 0.460914 0.054133 -0.142474 +v 0.460914 0.046976 -0.136982 +v 0.460914 0.048153 -0.128039 +v 0.460914 0.056487 -0.124587 +v 0.460914 -0.046976 -0.136982 +v 0.460914 -0.054133 -0.142474 +v 0.460914 -0.062467 -0.139022 +v 0.460914 -0.063644 -0.130078 +v 0.460914 -0.056488 -0.124587 +v 0.460914 -0.048153 -0.128039 +v 0.460914 -0.130078 -0.063644 +v 0.460914 -0.139022 -0.062467 +v 0.460914 -0.142474 -0.054133 +v 0.460914 -0.136982 -0.046976 +v 0.460914 -0.128039 -0.048153 +v 0.460914 -0.124587 -0.056487 +v 0.460914 -0.136982 0.046976 +v 0.460914 -0.142474 0.054133 +v 0.460914 -0.139022 0.062467 +v 0.460914 -0.130078 0.063644 +v 0.460914 -0.124587 0.056487 +v 0.460914 -0.128039 0.048153 +v 0.460914 -0.063644 0.130078 +v 0.460914 -0.062467 0.139022 +v 0.460914 -0.054132 0.142474 +v 0.460914 -0.046976 0.136982 +v 0.460914 -0.048153 0.128039 +v 0.460914 -0.056487 0.124587 +v 0.460914 0.046976 0.136982 +v 0.460914 0.054133 0.142474 +v 0.460914 0.062467 0.139022 +v 0.460914 0.063644 0.130078 +v 0.460914 0.056487 0.124587 +v 0.460914 0.048153 0.128039 +v 0.460914 0.130078 0.063644 +v 0.460914 0.139022 0.062467 +v 0.460914 0.142474 0.054133 +v 0.460914 0.136982 0.046976 +v 0.460914 0.128039 0.048153 +v 0.460914 0.124587 0.056487 +v 0.468750 0.099603 0.121367 +v 0.468750 0.121367 0.099603 +v 0.468750 0.138467 0.074012 +v 0.468750 0.150245 0.045576 +v 0.468750 0.156250 0.015389 +v 0.468750 0.156250 -0.015389 +v 0.468750 0.150245 -0.045576 +v 0.468750 0.138467 -0.074012 +v 0.468750 0.121367 -0.099603 +v 0.468750 0.099603 -0.121367 +v 0.468750 0.074012 -0.138467 +v 0.468750 0.045576 -0.150245 +v 0.468750 0.015389 -0.156250 +v 0.468750 -0.015389 -0.156250 +v 0.468750 -0.045576 -0.150245 +v 0.468750 -0.074012 -0.138467 +v 0.468750 -0.099603 -0.121367 +v 0.468750 -0.121367 -0.099603 +v 0.468750 -0.138467 -0.074012 +v 0.468750 -0.150245 -0.045576 +v 0.468750 -0.156250 -0.015389 +v 0.468750 -0.156250 0.015389 +v 0.468750 -0.150245 0.045576 +v 0.468750 -0.138466 0.074012 +v 0.468750 -0.121367 0.099603 +v 0.468750 -0.099603 0.121367 +v 0.468750 -0.074012 0.138467 +v 0.468750 -0.045576 0.150245 +v 0.468750 -0.015389 0.156250 +v 0.468750 0.015390 0.156250 +v 0.468750 0.045577 0.150245 +v 0.468750 0.074012 0.138467 +v 0.500000 -0.150245 -0.045576 +v 0.500000 -0.138467 -0.074012 +v 0.500000 -0.121367 -0.099603 +v 0.500000 -0.099603 -0.121367 +v 0.500000 -0.074012 -0.138467 +v 0.500000 -0.045576 -0.150245 +v 0.500000 -0.015389 -0.156250 +v 0.500000 0.015389 -0.156250 +v 0.500000 0.045576 -0.150245 +v 0.500000 0.074012 -0.138467 +v 0.500000 0.099603 -0.121367 +v 0.500000 0.121367 -0.099603 +v 0.500000 0.138467 -0.074012 +v 0.500000 0.150245 -0.045576 +v 0.500000 0.156250 -0.015389 +v 0.500000 0.156250 0.015389 +v 0.500000 0.150245 0.045576 +v 0.500000 0.138467 0.074012 +v 0.500000 0.121367 0.099603 +v 0.500000 0.099603 0.121367 +v 0.500000 0.074012 0.138467 +v 0.500000 0.045577 0.150245 +v 0.500000 0.015390 0.156250 +v 0.500000 -0.015389 0.156250 +v 0.500000 -0.045576 0.150245 +v 0.500000 -0.074012 0.138467 +v 0.500000 -0.099603 0.121367 +v 0.500000 -0.121367 0.099603 +v 0.500000 -0.138466 0.074012 +v 0.500000 -0.150245 0.045576 +v 0.500000 -0.156250 0.015389 +v 0.500000 -0.156250 -0.015389 +v 0.460914 0.108578 -0.095821 +v 0.460914 0.110913 -0.104534 +v 0.460914 0.104534 -0.110913 +v 0.460914 0.095821 -0.108578 +v 0.460914 0.093486 -0.099865 +v 0.460914 0.099865 -0.093486 +v 0.460914 0.009021 -0.144532 +v 0.460914 0.004510 -0.152344 +v 0.460914 -0.004510 -0.152344 +v 0.460914 -0.009021 -0.144532 +v 0.460914 -0.004510 -0.136720 +v 0.460914 0.004510 -0.136720 +v 0.460914 -0.095821 -0.108578 +v 0.460914 -0.104534 -0.110913 +v 0.460914 -0.110913 -0.104534 +v 0.460914 -0.108578 -0.095821 +v 0.460914 -0.099865 -0.093486 +v 0.460914 -0.093486 -0.099865 +v 0.460914 -0.144532 -0.009021 +v 0.460914 -0.152344 -0.004510 +v 0.460914 -0.152344 0.004510 +v 0.460914 -0.144532 0.009021 +v 0.460914 -0.136720 0.004510 +v 0.460914 -0.136720 -0.004510 +v 0.460914 -0.108578 0.095821 +v 0.460914 -0.110913 0.104534 +v 0.460914 -0.104534 0.110913 +v 0.460914 -0.095821 0.108578 +v 0.460914 -0.093486 0.099865 +v 0.460914 -0.099865 0.093486 +v 0.460914 -0.009021 0.144532 +v 0.460914 -0.004510 0.152344 +v 0.460914 0.004510 0.152344 +v 0.460914 0.009021 0.144532 +v 0.460914 0.004510 0.136720 +v 0.460914 -0.004510 0.136720 +v 0.460914 0.095821 0.108578 +v 0.460914 0.104534 0.110913 +v 0.460914 0.110913 0.104534 +v 0.460914 0.108578 0.095821 +v 0.460914 0.099865 0.093486 +v 0.460914 0.093486 0.099865 +v 0.460914 0.144532 0.009021 +v 0.460914 0.152344 0.004510 +v 0.460914 0.152344 -0.004510 +v 0.460914 0.144532 -0.009021 +v 0.460914 0.136720 -0.004510 +v 0.460914 0.136720 0.004510 +v 0.468750 0.116832 -0.062448 +v 0.437501 0.110774 -0.059210 +v 0.437501 0.120197 -0.036461 +v 0.468750 0.126770 -0.038455 +v 0.468750 0.131837 -0.012985 +v 0.437501 0.125000 -0.012312 +v 0.468750 0.131837 0.012984 +v 0.437501 0.125001 0.012311 +v 0.468750 0.126770 0.038455 +v 0.437501 0.120197 0.036461 +v 0.468750 0.116832 0.062448 +v 0.437501 0.110774 0.059210 +v 0.468750 0.102404 0.084041 +v 0.437501 0.097094 0.079683 +v 0.437501 0.079683 0.097094 +v 0.468750 0.084041 0.102404 +v 0.468750 0.062448 0.116832 +v 0.437501 0.059210 0.110774 +v 0.468750 0.038455 0.126770 +v 0.437501 0.036461 0.120197 +v 0.468750 0.012985 0.131836 +v 0.437501 0.012312 0.125000 +v 0.437501 -0.012311 0.125000 +v 0.468750 -0.012985 0.131836 +v 0.437501 -0.036461 0.120197 +v 0.468750 -0.038455 0.126770 +v 0.468750 -0.062448 0.116832 +v 0.437501 -0.059210 0.110774 +v 0.437501 -0.079683 0.097094 +v 0.468750 -0.084041 0.102404 +v 0.437501 -0.097094 0.079683 +v 0.468750 -0.102404 0.084041 +v 0.468750 -0.116832 0.062448 +v 0.437501 -0.110774 0.059210 +v 0.437501 -0.120197 0.036461 +v 0.468750 -0.126770 0.038455 +v 0.468750 -0.131836 0.012985 +v 0.437501 -0.125000 0.012311 +v 0.437501 -0.125000 -0.012311 +v 0.468750 -0.131836 -0.012985 +v 0.468750 -0.126770 -0.038455 +v 0.437501 -0.120197 -0.036461 +v 0.437501 -0.110774 -0.059210 +v 0.468750 -0.116832 -0.062448 +v 0.437501 -0.097094 -0.079683 +v 0.468750 -0.102404 -0.084041 +v 0.437501 -0.079683 -0.097094 +v 0.468750 -0.084041 -0.102404 +v 0.437501 -0.059210 -0.110774 +v 0.468750 -0.062448 -0.116832 +v 0.437501 -0.036461 -0.120197 +v 0.468750 -0.038455 -0.126770 +v 0.437501 -0.012311 -0.125001 +v 0.468750 -0.012985 -0.131836 +v 0.468750 0.038455 -0.126770 +v 0.468750 0.012985 -0.131837 +v 0.437501 0.012311 -0.125001 +v 0.437501 0.036461 -0.120197 +v 0.468750 0.084041 -0.102404 +v 0.468750 0.062448 -0.116832 +v 0.437501 0.059210 -0.110774 +v 0.437501 0.079683 -0.097094 +v 0.468750 0.102404 -0.084041 +v 0.437501 0.097094 -0.079683 +v 0.468751 0.136982 -0.046976 +v 0.468751 0.142474 -0.054133 +v 0.468751 0.128039 -0.048153 +v 0.468751 0.139022 -0.062467 +v 0.468751 0.130078 -0.063644 +v 0.468751 0.124587 -0.056488 +v 0.468751 0.063644 -0.130078 +v 0.468751 0.062467 -0.139022 +v 0.468751 0.056487 -0.124587 +v 0.468751 0.054133 -0.142474 +v 0.468751 0.046976 -0.136982 +v 0.468751 0.048153 -0.128039 +v 0.468751 -0.046976 -0.136982 +v 0.468751 -0.054133 -0.142474 +v 0.468751 -0.048153 -0.128039 +v 0.468751 -0.062467 -0.139022 +v 0.468751 -0.063644 -0.130078 +v 0.468751 -0.056488 -0.124587 +v 0.468751 -0.130078 -0.063644 +v 0.468751 -0.139022 -0.062467 +v 0.468751 -0.124587 -0.056487 +v 0.468751 -0.142474 -0.054133 +v 0.468751 -0.136982 -0.046976 +v 0.468751 -0.128039 -0.048153 +v 0.468751 -0.136982 0.046976 +v 0.468751 -0.142474 0.054133 +v 0.468751 -0.128039 0.048153 +v 0.468751 -0.139022 0.062467 +v 0.468751 -0.130078 0.063644 +v 0.468751 -0.124587 0.056487 +v 0.468751 -0.063644 0.130078 +v 0.468751 -0.062467 0.139022 +v 0.468751 -0.056487 0.124587 +v 0.468751 -0.054132 0.142474 +v 0.468751 -0.046976 0.136982 +v 0.468751 -0.048153 0.128039 +v 0.468751 0.046976 0.136982 +v 0.468751 0.054133 0.142474 +v 0.468751 0.048153 0.128039 +v 0.468751 0.062467 0.139022 +v 0.468751 0.063644 0.130078 +v 0.468751 0.056487 0.124587 +v 0.468751 0.130078 0.063644 +v 0.468751 0.139022 0.062467 +v 0.468751 0.124587 0.056487 +v 0.468751 0.142474 0.054133 +v 0.468751 0.136982 0.046976 +v 0.468751 0.128039 0.048153 +v -0.008234 -0.089785 0.073685 +v -0.008234 -0.073685 0.089785 +v -0.027344 -0.059762 0.072821 +v -0.027344 -0.072821 0.059762 +v -0.008234 0.089785 -0.073685 +v -0.008234 0.073685 -0.089785 +v -0.027344 0.059762 -0.072821 +v -0.027344 0.072821 -0.059762 +v -0.008233 0.115591 0.011385 +v -0.008234 0.115591 -0.011385 +v -0.027344 0.093750 -0.009234 +v -0.027344 0.093750 0.009234 +v -0.008234 0.054753 0.102435 +v -0.008234 0.073685 0.089785 +v -0.027344 0.059762 0.072821 +v -0.027344 0.044408 0.083080 +v -0.008234 -0.115591 0.011385 +v -0.008234 -0.111149 0.033716 +v -0.027344 -0.090148 0.027346 +v -0.027344 -0.093750 0.009234 +v -0.008234 0.011385 -0.115591 +v -0.008234 -0.011385 -0.115591 +v -0.027344 -0.009233 -0.093750 +v -0.027344 0.009234 -0.093750 +v -0.008234 0.054753 -0.102435 +v -0.008234 0.033717 -0.111148 +v -0.027344 0.027346 -0.090148 +v -0.027344 0.044407 -0.083080 +v -0.008234 -0.073685 -0.089785 +v -0.008234 -0.089785 -0.073685 +v -0.027344 -0.072821 -0.059762 +v -0.027344 -0.059762 -0.072821 +v -0.008233 0.111148 0.033717 +v -0.027344 0.090148 0.027346 +v -0.008234 -0.102435 -0.054753 +v -0.027344 -0.083081 -0.044407 +v -0.008234 -0.111149 -0.033716 +v -0.008234 -0.115591 -0.011385 +v -0.027344 -0.093750 -0.009234 +v -0.027344 -0.090148 -0.027346 +v -0.008234 0.102435 -0.054753 +v -0.027344 0.083080 -0.044407 +v -0.008234 -0.102435 0.054753 +v -0.027344 -0.083080 0.044407 +v -0.008234 -0.054752 -0.102435 +v -0.027344 -0.044407 -0.083081 +v -0.008234 0.033717 0.111148 +v -0.027344 0.027346 0.090148 +v -0.008234 0.011385 0.115591 +v -0.027344 0.009234 0.093750 +v -0.008234 -0.011385 0.115591 +v -0.027344 -0.009234 0.093750 +v -0.008234 -0.033716 0.111148 +v -0.027344 -0.027346 0.090148 +v -0.008234 -0.054753 0.102435 +v -0.027344 -0.044407 0.083081 +v 0.012504 0.120197 -0.036461 +v 0.012504 0.125000 -0.012311 +v -0.008234 0.111149 -0.033716 +v -0.027344 0.090148 -0.027346 +v 0.468751 0.108578 -0.095821 +v 0.468751 0.110913 -0.104534 +v 0.468751 0.099865 -0.093486 +v 0.468751 0.104534 -0.110913 +v 0.468751 0.095821 -0.108578 +v 0.468751 0.093486 -0.099865 +v 0.468751 0.009021 -0.144532 +v 0.468751 0.004510 -0.152344 +v 0.468751 0.004510 -0.136720 +v 0.468751 -0.004510 -0.152344 +v 0.468751 -0.009021 -0.144532 +v 0.468751 -0.004510 -0.136720 +v 0.468751 -0.095821 -0.108578 +v 0.468751 -0.104534 -0.110913 +v 0.468751 -0.093486 -0.099865 +v 0.468751 -0.110913 -0.104534 +v 0.468751 -0.108578 -0.095821 +v 0.468751 -0.099865 -0.093486 +v 0.468751 -0.144532 -0.009021 +v 0.468751 -0.152344 -0.004510 +v 0.468751 -0.136720 -0.004510 +v 0.468751 -0.152344 0.004510 +v 0.468751 -0.144532 0.009021 +v 0.468751 -0.136720 0.004510 +v 0.468751 -0.108578 0.095821 +v 0.468751 -0.110913 0.104534 +v 0.468751 -0.099865 0.093486 +v 0.468751 -0.104534 0.110913 +v 0.468751 -0.095821 0.108578 +v 0.468751 -0.093486 0.099865 +v 0.468751 -0.009021 0.144532 +v 0.468751 -0.004510 0.152344 +v 0.468751 -0.004510 0.136720 +v 0.468751 0.004510 0.152344 +v 0.468751 0.009021 0.144532 +v 0.468751 0.004510 0.136720 +v 0.468751 0.095821 0.108578 +v 0.468751 0.104534 0.110913 +v 0.468751 0.093486 0.099865 +v 0.468751 0.110913 0.104534 +v 0.468751 0.108578 0.095821 +v 0.468751 0.099865 0.093486 +v -0.039062 -0.048547 -0.039842 +v -0.039063 -0.039842 -0.048547 +v 0.468751 0.144532 0.009021 +v 0.468751 0.152344 0.004510 +v 0.468751 0.136720 0.004510 +v 0.468751 0.152344 -0.004510 +v 0.468751 0.144532 -0.009021 +v 0.468751 0.136720 -0.004510 +v -0.008234 -0.033716 -0.111149 +v -0.027344 -0.027346 -0.090148 +v -0.008234 0.089785 0.073685 +v -0.027344 0.072821 0.059762 +v -0.008234 0.102435 0.054753 +v -0.027344 0.083080 0.044407 +v -0.046875 -0.027694 -0.014802 +v -0.046875 -0.030049 -0.009115 +v -0.046875 -0.031250 -0.003078 +v -0.046875 -0.031250 0.003078 +v -0.046875 -0.030049 0.009115 +v -0.046875 -0.027693 0.014802 +v -0.046875 -0.024274 0.019921 +v -0.046875 -0.019921 0.024274 +v -0.046875 -0.014802 0.027694 +v -0.046875 -0.009115 0.030049 +v -0.046875 -0.003078 0.031250 +v -0.046875 0.003078 0.031250 +v -0.046875 0.009115 0.030049 +v -0.046875 0.014803 0.027693 +v -0.046875 0.019921 0.024274 +v -0.046875 0.024274 0.019921 +v -0.046875 0.027693 0.014802 +v -0.046875 0.030049 0.009115 +v -0.046875 0.031250 0.003078 +v -0.046875 0.031250 -0.003078 +v -0.046875 0.030049 -0.009115 +v -0.046875 0.027693 -0.014802 +v -0.046875 0.024274 -0.019921 +v -0.046875 0.019921 -0.024274 +v -0.046875 0.014802 -0.027693 +v -0.046875 0.009115 -0.030049 +v -0.046875 0.003078 -0.031250 +v -0.046875 -0.003078 -0.031250 +v -0.046875 -0.009115 -0.030049 +v -0.046875 -0.014802 -0.027694 +v -0.046875 -0.019921 -0.024274 +v -0.046875 -0.024274 -0.019921 +v -0.039063 -0.029605 -0.055387 +v -0.039063 -0.018231 -0.060098 +v -0.039063 -0.006156 -0.062500 +v -0.039063 0.006156 -0.062500 +v -0.039063 0.018231 -0.060098 +v -0.039062 0.029605 -0.055387 +v -0.039062 0.039842 -0.048547 +v -0.039062 0.048547 -0.039842 +v -0.039062 0.055387 -0.029605 +v -0.039062 0.060098 -0.018231 +v -0.039062 0.062500 -0.006156 +v -0.039062 0.062500 0.006156 +v -0.039062 0.060098 0.018231 +v -0.039062 0.055387 0.029605 +v -0.039062 0.048547 0.039842 +v -0.039062 0.039842 0.048547 +v -0.039062 0.029605 0.055387 +v -0.039062 0.018231 0.060098 +v -0.039062 0.006156 0.062500 +v -0.039063 -0.006156 0.062500 +v -0.039063 -0.018231 0.060098 +v -0.039063 -0.029605 0.055387 +v -0.039062 -0.039842 0.048547 +v -0.039063 -0.048547 0.039842 +v -0.039063 -0.055387 0.029605 +v -0.039062 -0.060098 0.018231 +v -0.039063 -0.062500 0.006156 +v -0.039062 -0.062500 -0.006156 +v -0.039062 -0.060098 -0.018231 +v -0.039062 -0.055387 -0.029605 +v 0.012504 -0.110774 -0.059210 +v 0.012504 -0.120197 -0.036461 +v 0.012503 -0.059210 0.110774 +v 0.012504 -0.079683 0.097094 +v 0.012503 -0.012312 0.125000 +v 0.012503 -0.036461 0.120197 +v 0.012504 -0.125000 -0.012312 +v 0.012503 -0.125000 0.012312 +v 0.012504 -0.120197 0.036461 +v 0.012504 -0.110774 0.059210 +v 0.012503 -0.097094 0.079683 +v 0.012504 -0.097094 -0.079683 +v 0.012503 -0.079683 -0.097094 +v 0.012504 0.012312 0.125000 +v 0.012504 0.125000 0.012312 +v 0.012504 0.059210 0.110774 +v 0.012504 0.036461 0.120197 +v 0.012504 0.079683 0.097094 +v 0.012504 0.097094 0.079683 +v 0.012503 -0.012311 -0.125000 +v 0.012503 0.012311 -0.125000 +v 0.012504 0.110774 0.059210 +v 0.012504 0.120197 0.036461 +v 0.012504 0.097094 -0.079683 +v 0.012504 0.110774 -0.059210 +v 0.012504 0.079683 -0.097094 +v 0.012504 0.059210 -0.110774 +v 0.012504 0.036461 -0.120197 +v 0.012503 -0.036461 -0.120197 +v 0.012503 -0.059210 -0.110774 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.4412 0.9276 +vt 0.4630 0.9493 +vt 0.4886 0.9664 +vt 0.5170 0.9782 +vt 0.5472 0.9842 +vt 0.5780 0.9842 +vt 0.6082 0.9782 +vt 0.6366 0.9664 +vt 0.6622 0.9493 +vt 0.6840 0.9276 +vt 0.7011 0.9020 +vt 0.7129 0.8735 +vt 0.7189 0.8434 +vt 0.7189 0.8126 +vt 0.7129 0.7824 +vt 0.7011 0.7539 +vt 0.6840 0.7283 +vt 0.6622 0.7066 +vt 0.6366 0.6895 +vt 0.6082 0.6777 +vt 0.5780 0.6717 +vt 0.5472 0.6717 +vt 0.5170 0.6777 +vt 0.4886 0.6895 +vt 0.4630 0.7066 +vt 0.4412 0.7283 +vt 0.4241 0.7539 +vt 0.4124 0.7824 +vt 0.4063 0.8126 +vt 0.4063 0.8434 +vt 0.4124 0.8735 +vt 0.4241 0.9020 +vt 0.2332 0.6777 +vt 0.2616 0.6895 +vt 0.2872 0.7066 +vt 0.3090 0.7283 +vt 0.3261 0.7539 +vt 0.3379 0.7824 +vt 0.3439 0.8126 +vt 0.3439 0.8434 +vt 0.3379 0.8735 +vt 0.3261 0.9020 +vt 0.3090 0.9276 +vt 0.2872 0.9493 +vt 0.2616 0.9664 +vt 0.2332 0.9782 +vt 0.2030 0.9842 +vt 0.1722 0.9842 +vt 0.1420 0.9782 +vt 0.1136 0.9664 +vt 0.0880 0.9493 +vt 0.0662 0.9276 +vt 0.0491 0.9020 +vt 0.0374 0.8735 +vt 0.0313 0.8434 +vt 0.0313 0.8126 +vt 0.0374 0.7824 +vt 0.0491 0.7539 +vt 0.0662 0.7283 +vt 0.0880 0.7066 +vt 0.1136 0.6895 +vt 0.1420 0.6777 +vt 0.1722 0.6717 +vt 0.2030 0.6717 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.4688 0.5898 +vt 0.4688 0.5664 +vt 0.5000 0.5664 +vt 0.5000 0.5898 +vt 0.4375 0.5898 +vt 0.4375 0.5664 +vt 0.4062 0.5898 +vt 0.4062 0.5664 +vt 0.3750 0.5898 +vt 0.3750 0.5664 +vt 0.3438 0.5898 +vt 0.3438 0.5664 +vt 0.3125 0.5898 +vt 0.3125 0.5664 +vt 0.2812 0.5898 +vt 0.2812 0.5664 +vt 0.2500 0.5898 +vt 0.2500 0.5664 +vt 0.2188 0.5898 +vt 0.2188 0.5664 +vt 0.1875 0.5898 +vt 0.1875 0.5664 +vt 0.1562 0.5898 +vt 0.1562 0.5664 +vt 0.1250 0.5898 +vt 0.1250 0.5664 +vt 0.0938 0.5898 +vt 0.0938 0.5664 +vt 0.0625 0.5898 +vt 0.0625 0.5664 +vt 0.0937 0.5664 +vt 0.0312 0.5898 +vt 0.0312 0.5664 +vt 0.0000 0.5898 +vt 0.0000 0.5664 +vt 0.9688 0.5898 +vt 0.9688 0.5664 +vt 1.0000 0.5664 +vt 1.0000 0.5898 +vt 0.9375 0.5898 +vt 0.9375 0.5664 +vt 0.9062 0.5898 +vt 0.9062 0.5664 +vt 0.8750 0.5898 +vt 0.8750 0.5664 +vt 0.8125 0.5898 +vt 0.8125 0.5664 +vt 0.8438 0.5664 +vt 0.8438 0.5898 +vt 0.7812 0.5898 +vt 0.7812 0.5664 +vt 0.7500 0.5898 +vt 0.7500 0.5664 +vt 0.7188 0.5898 +vt 0.7188 0.5664 +vt 0.6875 0.5898 +vt 0.6875 0.5664 +vt 0.6250 0.5898 +vt 0.6250 0.5664 +vt 0.6562 0.5664 +vt 0.6562 0.5898 +vt 0.5938 0.5898 +vt 0.5938 0.5664 +vt 0.5625 0.5898 +vt 0.5625 0.5664 +vt 0.6340 0.5124 +vt 0.6340 0.4980 +vt 0.6649 0.4980 +vt 0.6649 0.5123 +vt 0.6959 0.5124 +vt 0.6959 0.4980 +vt 0.7268 0.5123 +vt 0.7268 0.4980 +vt 0.7577 0.5123 +vt 0.7578 0.4980 +vt 0.7886 0.5124 +vt 0.7887 0.4980 +vt 0.8196 0.5125 +vt 0.8196 0.4980 +vt 0.8506 0.4981 +vt 0.8505 0.5124 +vt 0.8814 0.5125 +vt 0.8815 0.4981 +vt 0.9123 0.5126 +vt 0.9125 0.4982 +vt 0.9434 0.5128 +vt 0.9436 0.4983 +vt 0.9747 0.4983 +vt 0.9745 0.5128 +vt 1.0057 0.4984 +vt 1.0055 0.5128 +vt 1.0366 0.5128 +vt 1.0367 0.4984 +vt 1.0677 0.4984 +vt 1.0677 0.5129 +vt 1.0988 0.4984 +vt 1.0988 0.5128 +vt 1.1301 0.5129 +vt 1.1297 0.4983 +vt 1.1607 0.4982 +vt 1.1617 0.5126 +vt 1.1934 0.5121 +vt 1.1912 0.4978 +vt 0.1983 0.5120 +vt 0.2004 0.4977 +vt 0.2310 0.4981 +vt 0.2300 0.5126 +vt 0.2617 0.5129 +vt 0.2621 0.4982 +vt 0.2933 0.4983 +vt 0.2932 0.5129 +vt 0.3244 0.4982 +vt 0.3245 0.5127 +vt 0.3553 0.4982 +vt 0.3554 0.5126 +vt 0.3863 0.4982 +vt 0.3864 0.5126 +vt 0.4172 0.4981 +vt 0.4173 0.5125 +vt 0.4481 0.4981 +vt 0.4482 0.5124 +vt 0.5101 0.5125 +vt 0.4791 0.5124 +vt 0.4790 0.4981 +vt 0.5100 0.4980 +vt 0.5720 0.5124 +vt 0.5410 0.5124 +vt 0.5410 0.4980 +vt 0.5719 0.4980 +vt 0.6030 0.5125 +vt 0.6030 0.4980 +vt 0.5312 0.5664 +vt 0.5312 0.5898 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6349 0.7398 +vt 0.6507 0.7556 +vt 0.6341 0.7693 +vt 0.6213 0.7565 +vt 0.4903 0.9161 +vt 0.4745 0.9003 +vt 0.4912 0.8866 +vt 0.5040 0.8994 +vt 0.5738 0.9414 +vt 0.5515 0.9414 +vt 0.5536 0.9200 +vt 0.5717 0.9200 +vt 0.6632 0.8817 +vt 0.6507 0.9003 +vt 0.6341 0.8866 +vt 0.6442 0.8716 +vt 0.5738 0.7145 +vt 0.5957 0.7189 +vt 0.5895 0.7395 +vt 0.5717 0.7360 +vt 0.4492 0.8391 +vt 0.4492 0.8168 +vt 0.4706 0.8189 +vt 0.4706 0.8370 +vt 0.4621 0.8817 +vt 0.4535 0.8611 +vt 0.4741 0.8548 +vt 0.4811 0.8715 +vt 0.4745 0.7556 +vt 0.4903 0.7398 +vt 0.5040 0.7565 +vt 0.4912 0.7693 +vt 0.5957 0.9371 +vt 0.5895 0.9164 +vt 0.5089 0.7274 +vt 0.5190 0.7464 +vt 0.5295 0.7189 +vt 0.5515 0.7145 +vt 0.5536 0.7360 +vt 0.5358 0.7395 +vt 0.5089 0.9285 +vt 0.5190 0.9095 +vt 0.6164 0.7274 +vt 0.6062 0.7464 +vt 0.4621 0.7742 +vt 0.4811 0.7844 +vt 0.6717 0.8611 +vt 0.6511 0.8548 +vt 0.6761 0.8391 +vt 0.6546 0.8370 +vt 0.6761 0.8168 +vt 0.6546 0.8189 +vt 0.6717 0.7949 +vt 0.6511 0.8011 +vt 0.6632 0.7742 +vt 0.6442 0.7844 +vt 0.6652 0.2723 +vt 0.6964 0.2723 +vt 0.5295 0.9371 +vt 0.5358 0.9164 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.5235 0.7803 +vt 0.5150 0.7889 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.4535 0.7949 +vt 0.4741 0.8011 +vt 0.6349 0.9161 +vt 0.6213 0.8994 +vt 0.6164 0.9285 +vt 0.6062 0.9095 +vt 0.5481 0.8008 +vt 0.5537 0.7985 +vt 0.5596 0.7973 +vt 0.5656 0.7973 +vt 0.5716 0.7985 +vt 0.5772 0.8008 +vt 0.5822 0.8041 +vt 0.5865 0.8084 +vt 0.5898 0.8134 +vt 0.5921 0.8190 +vt 0.5933 0.8249 +vt 0.5933 0.8310 +vt 0.5921 0.8369 +vt 0.5898 0.8425 +vt 0.5865 0.8475 +vt 0.5822 0.8518 +vt 0.5772 0.8551 +vt 0.5716 0.8575 +vt 0.5656 0.8586 +vt 0.5596 0.8586 +vt 0.5537 0.8575 +vt 0.5481 0.8551 +vt 0.5431 0.8518 +vt 0.5388 0.8475 +vt 0.5354 0.8425 +vt 0.5331 0.8369 +vt 0.5320 0.8310 +vt 0.5320 0.8249 +vt 0.5331 0.8190 +vt 0.5354 0.8134 +vt 0.5388 0.8084 +vt 0.5431 0.8041 +vt 0.5083 0.7989 +vt 0.5036 0.8101 +vt 0.5013 0.8219 +vt 0.5013 0.8340 +vt 0.5036 0.8459 +vt 0.5083 0.8570 +vt 0.5150 0.8671 +vt 0.5235 0.8756 +vt 0.5336 0.8823 +vt 0.5447 0.8870 +vt 0.5566 0.8893 +vt 0.5687 0.8893 +vt 0.5805 0.8870 +vt 0.5917 0.8823 +vt 0.6017 0.8756 +vt 0.6103 0.8671 +vt 0.6170 0.8570 +vt 0.6216 0.8459 +vt 0.6240 0.8340 +vt 0.6240 0.8219 +vt 0.6216 0.8101 +vt 0.6170 0.7989 +vt 0.6103 0.7889 +vt 0.6017 0.7803 +vt 0.5917 0.7736 +vt 0.5805 0.7690 +vt 0.5687 0.7666 +vt 0.5566 0.7666 +vt 0.5447 0.7690 +vt 0.5336 0.7736 +vt 0.2904 0.2721 +vt 0.2590 0.2720 +vt 1.0393 0.2725 +vt 1.0705 0.2725 +vt 0.9769 0.2725 +vt 1.0081 0.2725 +vt 0.2275 0.2720 +vt 0.1961 0.2720 +vt 1.1644 0.2725 +vt 1.1330 0.2725 +vt 1.1017 0.2725 +vt 0.3217 0.2721 +vt 0.3530 0.2721 +vt 0.9457 0.2725 +vt 0.7275 0.2723 +vt 0.8833 0.2724 +vt 0.9145 0.2724 +vt 0.8522 0.2724 +vt 0.8210 0.2724 +vt 0.4468 0.2721 +vt 0.4780 0.2722 +vt 0.7899 0.2724 +vt 0.7587 0.2723 +vt 1.1958 0.2725 +vt 0.6029 0.2722 +vt 0.6341 0.2723 +vt 0.5717 0.2722 +vt 0.5405 0.2722 +vt 0.5093 0.2722 +vt 0.4156 0.2721 +vt 0.3843 0.2721 +vt 0.4673 0.7498 +vt 0.4844 0.7327 +vt 0.5747 0.7053 +vt 0.5984 0.7100 +vt 0.6207 0.7192 +vt 0.6408 0.7327 +vt 0.6806 0.7922 +vt 0.6853 0.8159 +vt 0.6714 0.7699 +vt 0.6579 0.7498 +vt 0.5268 0.7100 +vt 0.5505 0.7053 +vt 0.5045 0.7192 +vt 0.4844 0.9233 +vt 0.4673 0.9062 +vt 0.4539 0.7699 +vt 0.4447 0.7922 +vt 0.4399 0.8159 +vt 0.4447 0.8638 +vt 0.4399 0.8400 +vt 0.4539 0.8861 +vt 0.5505 0.9507 +vt 0.5268 0.9459 +vt 0.5045 0.9367 +vt 0.6579 0.9062 +vt 0.6408 0.9233 +vt 0.5984 0.9459 +vt 0.5747 0.9507 +vt 0.6207 0.9367 +vt 0.6714 0.8861 +vt 0.6806 0.8638 +vt 0.6853 0.8400 +vn -1.0000 -0.0000 0.0000 +vn 1.0000 -0.0000 0.0000 +vn -0.6857 0.2113 0.6965 +vn 0.6857 0.2113 0.6965 +vn 0.6857 0.3431 0.6419 +vn -0.6857 0.3431 0.6419 +vn -0.6857 0.0713 0.7244 +vn 0.6857 0.0713 0.7244 +vn -0.6857 -0.0713 0.7244 +vn 0.6857 -0.0713 0.7244 +vn -0.6857 -0.2113 0.6965 +vn 0.6857 -0.2112 0.6966 +vn -0.6857 -0.3431 0.6419 +vn 0.6857 -0.3431 0.6419 +vn -0.6857 -0.4616 0.5628 +vn 0.6857 -0.4616 0.5628 +vn -0.6857 -0.5627 0.4617 +vn 0.6857 -0.5627 0.4617 +vn -0.6857 -0.6419 0.3431 +vn 0.6857 -0.6419 0.3431 +vn -0.6857 -0.6965 0.2113 +vn 0.6857 -0.6965 0.2113 +vn -0.6857 -0.7244 0.0713 +vn 0.6857 -0.7244 0.0713 +vn -0.6857 -0.7244 -0.0713 +vn 0.6857 -0.7244 -0.0713 +vn -0.6857 -0.6966 -0.2112 +vn 0.6857 -0.6965 -0.2114 +vn -0.6857 -0.6419 -0.3431 +vn 0.6857 -0.6419 -0.3431 +vn -0.6857 -0.5627 -0.4616 +vn 0.6857 -0.5626 -0.4618 +vn -0.6857 -0.4618 -0.5625 +vn 0.6857 -0.4617 -0.5626 +vn -0.6857 -0.3429 -0.6420 +vn 0.6857 -0.3431 -0.6419 +vn -0.6857 -0.2112 -0.6966 +vn 0.6857 -0.2113 -0.6965 +vn -0.6857 -0.0713 -0.7244 +vn 0.6857 -0.0713 -0.7244 +vn -0.6857 0.0713 -0.7244 +vn 0.6857 0.0713 -0.7244 +vn -0.6857 0.2113 -0.6965 +vn 0.6857 0.2113 -0.6965 +vn -0.6857 0.4617 -0.5626 +vn 0.6857 0.4617 -0.5626 +vn 0.6857 0.3431 -0.6419 +vn -0.6857 0.3431 -0.6419 +vn -0.6857 0.5626 -0.4617 +vn 0.6857 0.5626 -0.4617 +vn -0.6857 0.6419 -0.3431 +vn 0.6857 0.6419 -0.3431 +vn -0.6857 0.6965 -0.2113 +vn 0.6857 0.6966 -0.2112 +vn -0.6857 0.7244 -0.0713 +vn 0.6857 0.7244 -0.0713 +vn -0.6857 0.6966 0.2112 +vn 0.6857 0.6965 0.2113 +vn 0.6857 0.7244 0.0713 +vn -0.6857 0.7244 0.0713 +vn -0.6857 0.6419 0.3431 +vn 0.6857 0.6419 0.3431 +vn -0.6857 0.5626 0.4617 +vn 0.6857 0.5626 0.4618 +vn -0.2147 0.8614 -0.4604 +vn -0.1087 0.8767 -0.4686 +vn -0.1087 0.9513 -0.2886 +vn -0.2147 0.9346 -0.2835 +vn -0.2147 0.9720 -0.0957 +vn -0.1087 0.9893 -0.0974 +vn -0.2147 0.9720 0.0957 +vn -0.1087 0.9893 0.0974 +vn -0.2147 0.9346 0.2835 +vn -0.1087 0.9513 0.2886 +vn -0.2147 0.8614 0.4604 +vn -0.1087 0.8767 0.4686 +vn -0.2147 0.7550 0.6196 +vn -0.1087 0.7684 0.6306 +vn -0.1087 0.6306 0.7684 +vn -0.2147 0.6196 0.7550 +vn -0.2147 0.4604 0.8614 +vn -0.1087 0.4686 0.8767 +vn -0.2147 0.2835 0.9346 +vn -0.1087 0.2886 0.9513 +vn -0.2147 0.0957 0.9720 +vn -0.1087 0.0974 0.9893 +vn -0.1087 -0.0974 0.9893 +vn -0.2147 -0.0957 0.9720 +vn -0.1087 -0.2886 0.9513 +vn -0.2147 -0.2835 0.9346 +vn -0.2147 -0.4604 0.8614 +vn -0.1087 -0.4686 0.8767 +vn -0.1087 -0.6306 0.7684 +vn -0.2147 -0.6196 0.7550 +vn -0.1087 -0.7684 0.6306 +vn -0.2147 -0.7550 0.6196 +vn -0.2147 -0.8614 0.4604 +vn -0.1087 -0.8767 0.4686 +vn -0.1087 -0.9513 0.2886 +vn -0.2147 -0.9346 0.2835 +vn -0.2147 -0.9720 0.0957 +vn -0.1087 -0.9893 0.0974 +vn -0.1087 -0.9893 -0.0974 +vn -0.2147 -0.9720 -0.0957 +vn -0.2147 -0.9346 -0.2835 +vn -0.1087 -0.9513 -0.2886 +vn -0.1087 -0.8767 -0.4686 +vn -0.2147 -0.8614 -0.4604 +vn -0.1087 -0.7684 -0.6306 +vn -0.2147 -0.7550 -0.6196 +vn -0.1087 -0.6306 -0.7684 +vn -0.2147 -0.6196 -0.7550 +vn -0.1087 -0.4686 -0.8767 +vn -0.2147 -0.4604 -0.8614 +vn -0.1087 -0.2886 -0.9513 +vn -0.2147 -0.2835 -0.9346 +vn -0.1087 -0.0974 -0.9893 +vn -0.2147 -0.0957 -0.9720 +vn -0.2147 0.2835 -0.9346 +vn -0.2147 0.0957 -0.9720 +vn -0.1087 0.0974 -0.9893 +vn -0.1087 0.2886 -0.9513 +vn -0.2147 0.6196 -0.7550 +vn -0.2147 0.4604 -0.8614 +vn -0.1087 0.4686 -0.8767 +vn -0.1087 0.6306 -0.7684 +vn -0.2147 0.7550 -0.6196 +vn -0.1087 0.7684 -0.6306 +vn 0.6857 0.4617 0.5626 +vn -0.6857 0.4616 0.5628 +vn -0.6100 0.3032 0.7321 +vn 0.0000 0.3827 0.9239 +vn 0.0000 0.9914 0.1305 +vn -0.6100 0.7857 0.1033 +vn -0.6100 -0.4824 0.6287 +vn 0.0000 -0.6088 0.7934 +vn 0.0000 0.6087 -0.7934 +vn -0.6100 0.4824 -0.6287 +vn 0.0000 -0.3827 -0.9239 +vn -0.6100 -0.3033 -0.7321 +vn 0.0000 -0.9914 -0.1306 +vn -0.6100 -0.7856 -0.1034 +vn -0.6100 0.7321 0.3033 +vn 0.0000 0.9239 0.3827 +vn 0.0000 0.7934 -0.6087 +vn -0.6100 0.6287 -0.4823 +vn -0.6100 0.1034 0.7856 +vn 0.0000 0.1305 0.9914 +vn 0.0000 -0.1305 -0.9914 +vn -0.6100 -0.1036 -0.7856 +vn 0.0000 -0.9239 -0.3827 +vn -0.6100 -0.7321 -0.3032 +vn 0.0000 -0.7934 0.6087 +vn -0.6100 -0.6288 0.4823 +vn -0.6100 0.7321 -0.3032 +vn 0.0000 0.9239 -0.3827 +vn 0.0000 0.1305 -0.9914 +vn -0.6100 0.1033 -0.7857 +vn -0.6100 0.6287 0.4824 +vn 0.0000 0.7934 0.6088 +vn 0.0000 -0.7934 -0.6087 +vn -0.6100 -0.6287 -0.4824 +vn 0.0000 -0.9239 0.3827 +vn -0.6100 -0.7321 0.3032 +vn 0.0000 -0.1305 0.9914 +vn -0.6100 -0.1034 0.7856 +vn -0.6100 0.3032 -0.7321 +vn 0.0000 0.3827 -0.9239 +vn 0.0000 -0.6087 -0.7934 +vn -0.6100 -0.4823 -0.6287 +vn -0.6100 0.7856 -0.1034 +vn 0.0000 0.9914 -0.1305 +vn 0.0000 -0.9914 0.1305 +vn -0.6100 -0.7856 0.1035 +vn 0.0000 -0.3827 0.9239 +vn -0.6100 -0.3032 0.7321 +vn 0.0000 0.6087 0.7934 +vn -0.6100 0.4824 0.6287 +vn -0.6100 -0.3034 -0.7320 +vn 0.0000 -0.9914 -0.1305 +vn 0.0000 -0.6087 0.7934 +vn -0.6100 0.7856 0.1034 +vn -0.6100 -0.7321 -0.3033 +vn 0.0000 -0.7934 0.6088 +vn -0.6100 -0.6287 0.4824 +vn -0.6100 -0.1034 -0.7856 +vn 0.0000 0.1306 0.9914 +vn -0.6100 0.7321 0.3032 +vn -0.6100 0.6288 -0.4823 +vn -0.6100 -0.1033 0.7857 +vn -0.6100 -0.6286 -0.4825 +vn 0.0000 0.7934 0.6087 +vn -0.6100 0.6286 0.4824 +vn -0.6100 0.7322 -0.3030 +vn -0.6100 0.1034 -0.7856 +vn -0.6100 0.4823 0.6287 +vn -0.6100 -0.4825 -0.6286 +vn -0.5918 -0.6231 0.5114 +vn -0.5918 -0.5114 0.6231 +vn -0.8544 -0.3296 0.4016 +vn -0.8544 -0.4016 0.3296 +vn -0.5918 0.6231 -0.5114 +vn -0.5918 0.5114 -0.6231 +vn -0.8544 0.3296 -0.4016 +vn -0.8544 0.4016 -0.3296 +vn -0.5918 0.8022 0.0790 +vn -0.5918 0.8022 -0.0790 +vn -0.8544 0.5170 -0.0509 +vn -0.8544 0.5170 0.0509 +vn -0.5918 0.3800 0.7109 +vn -0.5918 0.5114 0.6231 +vn -0.8544 0.3296 0.4016 +vn -0.8544 0.2449 0.4582 +vn -0.5918 -0.8022 0.0790 +vn -0.5918 -0.7714 0.2340 +vn -0.8544 -0.4972 0.1508 +vn -0.8544 -0.5170 0.0509 +vn -0.5918 0.0790 -0.8022 +vn -0.5918 -0.0790 -0.8022 +vn -0.8544 -0.0509 -0.5170 +vn -0.8544 0.0509 -0.5170 +vn -0.5918 0.3800 -0.7109 +vn -0.5918 0.2340 -0.7714 +vn -0.8544 0.1508 -0.4972 +vn -0.8544 0.2449 -0.4582 +vn -0.5918 -0.5114 -0.6231 +vn -0.5918 -0.6231 -0.5114 +vn -0.8544 -0.4016 -0.3296 +vn -0.8544 -0.3296 -0.4016 +vn -0.5918 0.7714 0.2340 +vn -0.8544 0.4972 0.1508 +vn -0.5918 -0.7109 -0.3800 +vn -0.8544 -0.4582 -0.2449 +vn -0.5918 -0.7714 -0.2340 +vn -0.5918 -0.8022 -0.0790 +vn -0.8544 -0.5170 -0.0509 +vn -0.8544 -0.4972 -0.1508 +vn -0.5918 0.7109 -0.3800 +vn -0.8545 0.4582 -0.2449 +vn -0.5918 -0.7109 0.3800 +vn -0.8544 -0.4582 0.2449 +vn -0.5918 -0.3800 -0.7109 +vn -0.8544 -0.2449 -0.4582 +vn -0.5918 0.2340 0.7714 +vn -0.8544 0.1508 0.4972 +vn -0.5918 0.0790 0.8022 +vn -0.8544 0.0509 0.5170 +vn -0.5918 -0.0790 0.8022 +vn -0.8544 -0.0509 0.5170 +vn -0.5918 -0.2340 0.7714 +vn -0.8544 -0.1508 0.4972 +vn -0.5918 -0.3800 0.7109 +vn -0.8544 -0.2449 0.4582 +vn -0.2096 0.9357 -0.2838 +vn -0.2096 0.9731 -0.0958 +vn -0.5918 0.7714 -0.2340 +vn -0.8544 0.4972 -0.1508 +vn -0.6100 0.5603 0.5603 +vn 0.0000 0.7071 0.7071 +vn 0.0000 0.9659 -0.2588 +vn -0.6100 0.7654 -0.2051 +vn -0.6100 -0.2051 0.7654 +vn 0.0000 -0.2588 0.9659 +vn 0.0000 0.2588 -0.9659 +vn -0.6100 0.2052 -0.7654 +vn -0.0000 -0.7071 -0.7071 +vn -0.6100 -0.5603 -0.5603 +vn -0.0000 -0.9659 0.2588 +vn -0.6100 -0.7654 0.2050 +vn -0.6100 0.7924 -0.0001 +vn 0.0000 1.0000 -0.0000 +vn 0.0000 0.5000 -0.8660 +vn -0.6100 0.3960 -0.6863 +vn -0.6100 0.3961 0.6863 +vn 0.0000 0.5000 0.8660 +vn 0.0000 -0.5000 -0.8660 +vn -0.6100 -0.3962 -0.6862 +vn 0.0000 -1.0000 0.0000 +vn -0.6100 -0.7924 0.0001 +vn 0.0000 -0.5000 0.8660 +vn -0.6100 -0.3962 0.6862 +vn -0.6100 0.5603 -0.5603 +vn 0.0000 0.7071 -0.7071 +vn 0.0000 -0.2588 -0.9659 +vn -0.6100 -0.2050 -0.7654 +vn -0.6100 0.7654 0.2050 +vn 0.0000 0.9659 0.2588 +vn 0.0000 -0.9659 -0.2588 +vn -0.6100 -0.7654 -0.2051 +vn 0.0000 -0.7071 0.7071 +vn -0.6100 -0.5604 0.5602 +vn 0.0000 0.2588 0.9659 +vn -0.6100 0.2051 0.7654 +vn -0.6100 -0.0001 -0.7924 +vn 0.0000 0.0000 -1.0000 +vn 0.0000 -0.8660 -0.5000 +vn -0.6100 -0.6862 -0.3963 +vn -0.6100 0.6862 -0.3963 +vn 0.0000 0.8660 -0.5000 +vn -0.0000 -0.8660 0.5000 +vn -0.6100 -0.6863 0.3961 +vn -0.0000 -0.0000 1.0000 +vn -0.6100 -0.0002 0.7924 +vn -0.0000 0.8660 0.5000 +vn -0.6100 0.6862 0.3962 +vn -0.6100 -0.7654 0.2051 +vn -0.6100 0.2051 -0.7654 +vn -0.6100 -0.2052 0.7654 +vn -0.6100 0.7654 -0.2052 +vn -0.6100 -0.3960 0.6863 +vn -0.6100 -0.3961 -0.6863 +vn -0.6100 0.3962 0.6862 +vn -0.6100 0.3962 -0.6862 +vn -0.6100 -0.5603 0.5603 +vn -0.6100 -0.7654 -0.2050 +vn -0.6100 0.7654 0.2051 +vn -0.6100 -0.2051 -0.7654 +vn -0.9542 -0.2313 -0.1898 +vn -0.9542 -0.1898 -0.2313 +vn -0.6100 0.0000 0.7924 +vn -0.6100 0.6862 0.3963 +vn -0.6100 -0.6861 0.3963 +vn -0.6100 0.6863 -0.3961 +vn -0.6100 0.0001 -0.7924 +vn -0.6100 -0.6862 -0.3962 +vn -0.5918 -0.2340 -0.7714 +vn -0.8544 -0.1508 -0.4972 +vn -0.5918 0.6231 0.5114 +vn -0.8544 0.4016 0.3296 +vn -0.5918 0.7109 0.3800 +vn -0.8544 0.4582 0.2449 +vn -0.9916 -0.1139 -0.0609 +vn -0.9916 -0.1235 -0.0375 +vn -0.9916 -0.1285 -0.0127 +vn -0.9916 -0.1285 0.0127 +vn -0.9916 -0.1235 0.0375 +vn -0.9916 -0.1138 0.0608 +vn -0.9916 -0.0998 0.0819 +vn -0.9916 -0.0819 0.0998 +vn -0.9916 -0.0609 0.1138 +vn -0.9916 -0.0375 0.1235 +vn -0.9916 -0.0126 0.1285 +vn -0.9916 0.0127 0.1285 +vn -0.9916 0.0375 0.1235 +vn -0.9916 0.0609 0.1139 +vn -0.9916 0.0819 0.0998 +vn -0.9916 0.0998 0.0819 +vn -0.9916 0.1139 0.0608 +vn -0.9916 0.1235 0.0375 +vn -0.9916 0.1285 0.0127 +vn -0.9916 0.1285 -0.0127 +vn -0.9916 0.1235 -0.0375 +vn -0.9916 0.1139 -0.0608 +vn -0.9916 0.0998 -0.0819 +vn -0.9916 0.0819 -0.0998 +vn -0.9916 0.0609 -0.1138 +vn -0.9916 0.0375 -0.1235 +vn -0.9916 0.0127 -0.1285 +vn -0.9916 -0.0127 -0.1285 +vn -0.9916 -0.0375 -0.1235 +vn -0.9916 -0.0608 -0.1138 +vn -0.9916 -0.0819 -0.0998 +vn -0.9916 -0.0998 -0.0819 +vn -0.9542 -0.1411 -0.2639 +vn -0.9542 -0.0869 -0.2863 +vn -0.9542 -0.0293 -0.2978 +vn -0.9542 0.0293 -0.2978 +vn -0.9542 0.0869 -0.2863 +vn -0.9542 0.1411 -0.2639 +vn -0.9542 0.1898 -0.2313 +vn -0.9542 0.2313 -0.1898 +vn -0.9542 0.2639 -0.1411 +vn -0.9542 0.2863 -0.0869 +vn -0.9542 0.2978 -0.0293 +vn -0.9542 0.2978 0.0293 +vn -0.9542 0.2863 0.0869 +vn -0.9542 0.2639 0.1411 +vn -0.9542 0.2313 0.1898 +vn -0.9542 0.1898 0.2313 +vn -0.9542 0.1411 0.2639 +vn -0.9542 0.0869 0.2863 +vn -0.9542 0.0293 0.2978 +vn -0.9542 -0.0293 0.2978 +vn -0.9542 -0.0869 0.2863 +vn -0.9542 -0.1411 0.2639 +vn -0.9542 -0.1898 0.2313 +vn -0.9542 -0.2313 0.1898 +vn -0.9542 -0.2639 0.1410 +vn -0.9542 -0.2863 0.0869 +vn -0.9542 -0.2978 0.0293 +vn -0.9542 -0.2978 -0.0293 +vn -0.9542 -0.2863 -0.0869 +vn -0.9542 -0.2639 -0.1411 +vn -0.2096 -0.8623 -0.4609 +vn -0.2096 -0.9357 -0.2838 +vn -0.2096 -0.4609 0.8623 +vn -0.2096 -0.6203 0.7558 +vn -0.2096 -0.0958 0.9731 +vn -0.2096 -0.2838 0.9357 +vn -0.2096 -0.9731 -0.0958 +vn -0.2096 -0.9731 0.0958 +vn -0.2096 -0.9357 0.2838 +vn -0.2096 -0.8623 0.4609 +vn -0.2096 -0.7558 0.6203 +vn -0.2096 -0.7558 -0.6203 +vn -0.2096 -0.6203 -0.7558 +vn -0.2096 0.0958 0.9731 +vn -0.2096 0.9731 0.0958 +vn -0.2096 0.4609 0.8623 +vn -0.2096 0.2838 0.9357 +vn -0.2096 0.6203 0.7558 +vn -0.2096 0.7558 0.6203 +vn -0.2096 -0.0958 -0.9731 +vn -0.2096 0.0958 -0.9731 +vn -0.2096 0.8623 0.4609 +vn -0.2096 0.9357 0.2838 +vn -0.2096 0.7558 -0.6203 +vn -0.2096 0.8623 -0.4609 +vn -0.2096 0.6203 -0.7558 +vn -0.2096 0.4609 -0.8623 +vn -0.2096 0.2838 -0.9357 +vn -0.2096 -0.2838 -0.9357 +vn -0.2096 -0.4609 -0.8623 +g Pipe_Cylinder.002_None.002_Pipe_Cylinder.002_None.002_None +s off +f 1/1/1 2/2/1 3/3/1 4/4/1 5/5/1 6/6/1 +f 7/7/1 8/8/1 9/9/1 10/10/1 11/11/1 12/12/1 +f 13/13/1 14/14/1 15/15/1 16/16/1 17/17/1 18/18/1 +f 19/19/1 20/20/1 21/21/1 22/22/1 23/23/1 24/24/1 +f 25/25/1 26/26/1 27/27/1 28/28/1 29/29/1 30/30/1 +f 31/31/1 32/32/1 33/33/1 34/34/1 35/35/1 36/36/1 +f 37/37/1 38/38/1 39/39/1 40/40/1 41/41/1 42/42/1 +f 43/43/1 44/44/1 45/45/1 46/46/1 47/47/1 48/48/1 +f 49/49/1 50/50/1 51/51/1 52/52/1 53/53/1 54/54/1 55/55/1 56/56/1 57/57/1 58/58/1 59/59/1 60/60/1 61/61/1 62/62/1 63/63/1 64/64/1 65/65/1 66/66/1 67/67/1 68/68/1 69/69/1 70/70/1 71/71/1 72/72/1 73/73/1 74/74/1 75/75/1 76/76/1 77/77/1 78/78/1 79/79/1 80/80/1 +f 81/81/2 82/82/2 83/83/2 84/84/2 85/85/2 86/86/2 87/87/2 88/88/2 89/89/2 90/90/2 91/91/2 92/92/2 93/93/2 94/94/2 95/95/2 96/96/2 97/97/2 98/98/2 99/99/2 100/100/2 101/101/2 102/102/2 103/103/2 104/104/2 105/105/2 106/106/2 107/107/2 108/108/2 109/109/2 110/110/2 111/111/2 112/112/2 +f 113/113/1 114/114/1 115/115/1 116/116/1 117/117/1 118/118/1 +f 119/119/1 120/120/1 121/121/1 122/122/1 123/123/1 124/124/1 +f 125/125/1 126/126/1 127/127/1 128/128/1 129/129/1 130/130/1 +f 131/131/1 132/132/1 133/133/1 134/134/1 135/135/1 136/136/1 +f 137/137/1 138/138/1 139/139/1 140/140/1 141/141/1 142/142/1 +f 143/143/1 144/144/1 145/145/1 146/146/1 147/147/1 148/148/1 +f 149/149/1 150/150/1 151/151/1 152/152/1 153/153/1 154/154/1 +f 155/155/1 156/156/1 157/157/1 158/158/1 159/159/1 160/160/1 +s 1 +f 79/161/3 102/162/4 101/163/5 80/164/6 +f 78/165/7 103/166/8 102/162/4 79/161/3 +f 77/167/9 104/168/10 103/166/8 78/165/7 +f 76/169/11 105/170/12 104/168/10 77/167/9 +f 75/171/13 106/172/14 105/170/12 76/169/11 +f 74/173/15 107/174/16 106/172/14 75/171/13 +f 73/175/17 108/176/18 107/174/16 74/173/15 +f 72/177/19 109/178/20 108/176/18 73/175/17 +f 71/179/21 110/180/22 109/178/20 72/177/19 +f 70/181/23 111/182/24 110/180/22 71/179/21 +f 69/183/25 112/184/26 111/182/24 70/181/23 +f 68/185/27 81/186/28 112/184/26 69/183/25 +f 67/187/29 82/188/30 81/186/28 68/185/27 +f 66/189/31 83/190/32 82/191/30 67/187/29 +f 65/192/33 84/193/34 83/190/32 66/189/31 +f 64/194/35 85/195/36 84/193/34 65/192/33 +f 63/196/37 86/197/38 85/198/36 64/199/35 +f 62/200/39 87/201/40 86/197/38 63/196/37 +f 61/202/41 88/203/42 87/201/40 62/200/39 +f 60/204/43 89/205/44 88/203/42 61/202/41 +f 58/206/45 91/207/46 90/208/47 59/209/48 +f 59/209/48 90/208/47 89/205/44 60/204/43 +f 57/210/49 92/211/50 91/207/46 58/206/45 +f 56/212/51 93/213/52 92/211/50 57/210/49 +f 55/214/53 94/215/54 93/213/52 56/212/51 +f 54/216/55 95/217/56 94/215/54 55/214/53 +f 52/218/57 97/219/58 96/220/59 53/221/60 +f 53/221/60 96/220/59 95/217/56 54/216/55 +f 51/222/61 98/223/62 97/219/58 52/218/57 +f 50/224/63 99/225/64 98/223/62 51/222/61 +f 161/226/65 162/227/66 163/228/67 164/229/68 +f 165/230/69 164/229/68 163/228/67 166/231/70 +f 167/232/71 165/230/69 166/231/70 168/233/72 +f 169/234/73 167/232/71 168/233/72 170/235/74 +f 171/236/75 169/234/73 170/235/74 172/237/76 +f 173/238/77 171/236/75 172/237/76 174/239/78 +f 173/238/77 174/239/78 175/240/79 176/241/80 +f 177/242/81 176/241/80 175/240/79 178/243/82 +f 179/244/83 177/242/81 178/243/82 180/245/84 +f 181/246/85 179/244/83 180/245/84 182/247/86 +f 181/246/85 182/247/86 183/248/87 184/249/88 +f 184/249/88 183/248/87 185/250/89 186/251/90 +f 187/252/91 188/253/92 189/254/93 190/255/94 +f 186/251/90 185/250/89 188/253/92 187/252/91 +f 190/255/94 189/254/93 191/256/95 192/257/96 +f 193/258/97 192/257/96 191/256/95 194/259/98 +f 193/258/97 194/259/98 195/260/99 196/261/100 +f 197/262/101 196/261/100 195/260/99 198/263/102 +f 197/264/101 198/265/102 199/266/103 200/267/104 +f 201/268/105 200/267/104 199/266/103 202/269/106 +f 201/268/105 202/269/106 203/270/107 204/271/108 +f 204/271/108 203/270/107 205/272/109 206/273/110 +f 206/273/110 205/272/109 207/274/111 208/275/112 +f 208/275/112 207/274/111 209/276/113 210/277/114 +f 210/277/114 209/276/113 211/278/115 212/279/116 +f 212/279/116 211/278/115 213/280/117 214/281/118 +f 215/282/119 216/283/120 217/284/121 218/285/122 +f 216/283/120 214/281/118 213/280/117 217/284/121 +f 219/286/123 220/287/124 221/288/125 222/289/126 +f 215/282/119 218/285/122 221/288/125 220/287/124 +f 223/290/127 219/286/123 222/289/126 224/291/128 +f 223/290/127 224/291/128 162/227/66 161/226/65 +f 80/164/6 101/163/5 100/292/129 49/293/130 +f 1/294/131 225/295/132 226/296/133 2/297/134 +f 6/298/135 227/299/136 225/295/132 1/294/131 +f 2/297/134 226/296/133 228/300/137 3/301/138 +f 3/301/138 228/300/137 229/302/139 4/303/140 +f 4/304/140 229/305/139 230/306/141 5/307/142 +f 5/307/142 230/306/141 227/299/136 6/298/135 +f 7/308/143 231/309/144 232/310/145 8/311/146 +f 12/312/147 233/313/148 231/309/144 7/308/143 +f 8/311/146 232/310/145 234/314/149 9/315/150 +f 9/315/150 234/314/149 235/316/151 10/317/152 +f 10/318/152 235/319/151 236/320/153 11/321/154 +f 11/321/154 236/320/153 233/313/148 12/312/147 +f 13/322/155 237/323/156 238/324/157 14/325/158 +f 18/326/159 239/327/160 237/323/156 13/322/155 +f 14/325/158 238/324/157 240/328/161 15/329/162 +f 15/329/162 240/328/161 241/330/163 16/331/164 +f 16/332/164 241/333/163 242/334/165 17/335/166 +f 17/335/166 242/334/165 239/327/160 18/326/159 +f 19/336/167 243/337/168 244/338/169 20/339/170 +f 24/340/171 245/341/172 243/337/168 19/336/167 +f 20/339/170 244/338/169 246/342/173 21/343/174 +f 21/343/174 246/342/173 247/344/175 22/345/176 +f 22/346/176 247/347/175 248/348/177 23/349/178 +f 23/349/178 248/348/177 245/341/172 24/340/171 +f 25/350/179 249/351/139 250/352/180 26/353/142 +f 30/354/138 251/355/137 249/351/139 25/350/179 +f 26/353/142 250/352/180 252/356/181 27/357/135 +f 27/357/135 252/356/181 253/358/132 28/359/131 +f 28/360/131 253/361/132 254/362/133 29/363/182 +f 29/363/182 254/362/133 251/355/137 30/354/138 +f 31/364/183 255/365/151 256/366/184 32/367/185 +f 36/368/186 257/369/149 255/365/151 31/364/183 +f 32/367/185 256/366/184 258/370/187 33/371/147 +f 33/371/147 258/370/187 259/372/144 34/373/188 +f 34/374/188 259/375/144 260/376/145 35/377/189 +f 35/377/189 260/376/145 257/369/149 36/368/186 +f 37/378/164 261/379/163 262/380/165 38/381/190 +f 42/382/191 263/383/161 261/379/163 37/378/164 +f 38/381/190 262/380/165 264/384/192 39/385/193 +f 39/385/193 264/384/192 265/386/156 40/387/194 +f 40/388/194 265/389/156 266/390/157 41/391/195 +f 41/391/195 266/390/157 263/383/161 42/382/191 +f 43/392/176 267/393/175 268/394/177 44/395/196 +f 48/396/174 269/397/173 267/393/175 43/392/176 +f 44/395/196 268/394/177 270/398/172 45/399/171 +f 45/399/171 270/398/172 271/400/168 46/401/167 +f 46/402/167 271/403/168 272/404/169 47/405/197 +f 47/405/197 272/404/169 269/397/173 48/396/174 +f 273/406/198 274/407/199 275/408/200 276/409/201 +f 277/410/202 278/411/203 279/412/204 280/413/205 +f 281/414/206 282/415/207 283/416/208 284/417/209 +f 285/418/210 286/419/211 287/420/212 288/421/213 +f 289/422/214 290/423/215 291/424/216 292/425/217 +f 293/426/218 294/427/219 295/428/220 296/429/221 +f 297/430/222 298/431/223 299/432/224 300/433/225 +f 301/434/226 302/435/227 303/436/228 304/437/229 +f 305/438/230 281/414/206 284/417/209 306/439/231 +f 302/435/227 307/440/232 308/441/233 303/436/228 +f 309/442/234 310/443/235 311/444/236 312/445/237 +f 307/440/232 309/442/234 312/445/237 308/441/233 +f 298/431/223 293/426/218 296/429/221 299/432/224 +f 313/446/238 277/410/202 280/413/205 314/447/239 +f 290/423/215 315/448/240 316/449/241 291/424/216 +f 310/443/235 289/422/214 292/425/217 311/444/236 +f 49/293/130 100/292/129 99/225/64 50/224/63 +f 317/450/242 301/434/226 304/437/229 318/451/243 +f 319/452/244 285/418/210 288/421/213 320/453/245 +f 321/454/246 319/452/244 320/453/245 322/455/247 +f 323/456/248 321/454/246 322/455/247 324/457/249 +f 325/458/250 323/456/248 324/457/249 326/459/251 +f 327/460/252 325/458/250 326/459/251 328/461/253 +f 315/448/240 273/406/198 276/409/201 316/449/241 +f 274/407/199 327/460/252 328/461/253 275/408/200 +f 278/411/203 297/430/222 300/433/225 279/412/204 +f 329/462/254 330/463/255 166/231/70 163/228/67 +f 331/464/256 313/446/238 314/447/239 332/465/257 +f 113/466/258 333/467/259 334/468/260 114/469/261 +f 118/470/262 335/471/263 333/467/259 113/466/258 +f 114/469/261 334/468/260 336/472/264 115/473/265 +f 115/473/265 336/472/264 337/474/266 116/475/267 +f 116/476/267 337/477/266 338/478/268 117/479/269 +f 117/479/269 338/478/268 335/471/263 118/470/262 +f 119/480/270 339/481/271 340/482/272 120/483/273 +f 124/484/274 341/485/275 339/481/271 119/480/270 +f 120/483/273 340/482/272 342/486/276 121/487/277 +f 121/487/277 342/486/276 343/488/278 122/489/279 +f 122/490/279 343/491/278 344/492/280 123/493/281 +f 123/493/281 344/492/280 341/485/275 124/484/274 +f 125/494/282 345/495/283 346/496/284 126/497/285 +f 130/498/286 347/499/287 345/495/283 125/494/282 +f 126/497/285 346/496/284 348/500/288 127/501/289 +f 127/501/289 348/500/288 349/502/290 128/503/291 +f 128/504/291 349/505/290 350/506/292 129/507/293 +f 129/507/293 350/506/292 347/499/287 130/498/286 +f 131/508/294 351/509/295 352/510/296 132/511/297 +f 136/512/298 353/513/299 351/509/295 131/508/294 +f 132/511/297 352/510/296 354/514/300 133/515/301 +f 133/515/301 354/514/300 355/516/302 134/517/303 +f 134/518/303 355/519/302 356/520/304 135/521/305 +f 135/521/305 356/520/304 353/513/299 136/512/298 +f 137/522/267 357/523/266 358/524/268 138/525/306 +f 142/526/307 359/527/264 357/523/266 137/522/267 +f 138/525/306 358/524/268 360/528/263 139/529/308 +f 139/529/308 360/528/263 361/530/259 140/531/258 +f 140/532/258 361/533/259 362/534/260 141/535/309 +f 141/535/309 362/534/260 359/527/264 142/526/307 +f 143/536/279 363/537/278 364/538/280 144/539/310 +f 148/540/311 365/541/276 363/537/278 143/536/279 +f 144/539/310 364/538/280 366/542/275 145/543/312 +f 145/543/312 366/542/275 367/544/271 146/545/270 +f 146/546/270 367/547/271 368/548/272 147/549/313 +f 147/549/313 368/548/272 365/541/276 148/540/311 +f 149/550/314 369/551/290 370/552/292 150/553/293 +f 154/554/315 371/555/288 369/551/290 149/550/314 +f 150/553/293 370/552/292 372/556/287 151/557/316 +f 151/557/316 372/556/287 373/558/283 152/559/282 +f 152/560/282 373/561/283 374/562/284 153/563/317 +f 153/563/317 374/562/284 371/555/288 154/554/315 +f 304/437/229 303/436/228 375/564/318 376/565/319 +f 155/566/320 377/567/302 378/568/304 156/569/321 +f 160/570/322 379/571/300 377/567/302 155/566/320 +f 156/569/321 378/568/304 380/572/299 157/573/323 +f 157/573/323 380/572/299 381/574/295 158/575/324 +f 158/576/324 381/577/295 382/578/296 159/579/325 +f 159/579/325 382/578/296 379/571/300 160/570/322 +f 383/580/326 317/450/242 318/451/243 384/581/327 +f 286/419/211 385/582/328 386/583/329 287/420/212 +f 385/582/328 387/584/330 388/585/331 386/583/329 +f 387/584/330 305/438/230 306/439/231 388/585/331 +f 294/427/219 383/580/326 384/581/327 295/428/220 +f 389/586/332 390/587/333 391/588/334 392/589/335 393/590/336 394/591/337 395/592/338 396/593/339 397/594/340 398/595/341 399/596/342 400/597/343 401/598/344 402/599/345 403/600/346 404/601/347 405/602/348 406/603/349 407/604/350 408/605/351 409/606/352 410/607/353 411/608/354 412/609/355 413/610/356 414/611/357 415/612/358 416/613/359 417/614/360 418/615/361 419/616/362 420/617/363 +f 318/451/243 304/437/229 376/565/319 421/618/364 +f 384/581/327 318/451/243 421/618/364 422/619/365 +f 295/428/220 384/581/327 422/619/365 423/620/366 +f 296/429/221 295/428/220 423/620/366 424/621/367 +f 299/432/224 296/429/221 424/621/367 425/622/368 +f 300/433/225 299/432/224 425/622/368 426/623/369 +f 279/412/204 300/433/225 426/623/369 427/624/370 +f 280/413/205 279/412/204 427/624/370 428/625/371 +f 314/447/239 280/413/205 428/625/371 429/626/372 +f 332/465/257 314/447/239 429/626/372 430/627/373 +f 283/416/208 332/465/257 430/627/373 431/628/374 +f 284/417/209 283/416/208 431/628/374 432/629/375 +f 306/439/231 284/417/209 432/629/375 433/630/376 +f 388/585/331 306/439/231 433/630/376 434/631/377 +f 386/583/329 388/585/331 434/631/377 435/632/378 +f 287/420/212 386/583/329 435/632/378 436/633/379 +f 288/421/213 287/420/212 436/633/379 437/634/380 +f 320/453/245 288/421/213 437/634/380 438/635/381 +f 322/455/247 320/453/245 438/635/381 439/636/382 +f 324/457/249 322/455/247 439/636/382 440/637/383 +f 326/459/251 324/457/249 440/637/383 441/638/384 +f 328/461/253 326/459/251 441/638/384 442/639/385 +f 275/408/200 328/461/253 442/639/385 443/640/386 +f 276/409/201 275/408/200 443/640/386 444/641/387 +f 316/449/241 276/409/201 444/641/387 445/642/388 +f 291/424/216 316/449/241 445/642/388 446/643/389 +f 292/425/217 291/424/216 446/643/389 447/644/390 +f 311/444/236 292/425/217 447/644/390 448/645/391 +f 312/445/237 311/444/236 448/645/391 449/646/392 +f 308/441/233 312/445/237 449/646/392 450/647/393 +f 303/436/228 308/441/233 450/647/393 375/564/318 +f 451/648/394 203/270/107 202/269/106 452/649/395 +f 188/253/92 453/650/396 454/651/397 189/254/93 +f 183/248/87 455/652/398 456/653/399 185/250/89 +f 452/649/395 202/269/106 199/266/103 457/654/400 +f 457/654/400 199/266/103 198/265/102 458/655/401 +f 459/656/402 195/260/99 194/259/98 460/657/403 +f 185/250/89 456/653/399 453/650/396 188/253/92 +f 461/658/404 191/256/95 189/254/93 454/651/397 +f 460/657/403 194/259/98 191/256/95 461/658/404 +f 462/659/405 205/272/109 203/270/107 451/648/394 +f 462/659/405 463/660/406 207/274/111 205/272/109 +f 182/247/86 464/661/407 455/652/398 183/248/87 +f 465/662/408 168/233/72 166/231/70 330/463/255 +f 466/663/409 467/664/410 180/245/84 178/243/82 +f 468/665/411 466/663/409 178/243/82 175/240/79 +f 469/666/412 468/665/411 175/240/79 174/239/78 +f 217/284/121 213/280/117 470/667/413 471/668/414 +f 472/669/415 172/237/76 170/235/74 473/670/416 +f 458/671/401 198/263/102 195/260/99 459/656/402 +f 474/672/417 475/673/418 162/227/66 224/291/128 +f 282/415/207 331/464/256 332/465/257 283/416/208 +f 473/670/416 170/235/74 168/233/72 465/662/408 +f 329/462/254 163/228/67 162/227/66 475/673/418 +f 474/672/417 224/291/128 222/289/126 476/674/419 +f 221/288/125 477/675/420 476/674/419 222/289/126 +f 221/288/125 218/285/122 478/676/421 477/675/420 +f 472/669/415 469/666/412 174/239/78 172/237/76 +f 218/285/122 217/284/121 471/668/414 478/676/421 +f 470/667/413 213/280/117 211/278/115 479/677/422 +f 479/677/422 211/278/115 209/276/113 480/678/423 +f 376/565/319 375/564/318 420/617/363 419/616/362 +f 421/618/364 376/565/319 419/616/362 418/615/361 +f 422/619/365 421/618/364 418/615/361 417/614/360 +f 423/620/366 422/619/365 417/614/360 416/613/359 +f 424/621/367 423/620/366 416/613/359 415/612/358 +f 425/622/368 424/621/367 415/612/358 414/611/357 +f 426/623/369 425/622/368 414/611/357 413/610/356 +f 427/624/370 426/623/369 413/610/356 412/609/355 +f 428/625/371 427/624/370 412/609/355 411/608/354 +f 429/626/372 428/625/371 411/608/354 410/607/353 +f 430/627/373 429/626/372 410/607/353 409/606/352 +f 431/628/374 430/627/373 409/606/352 408/605/351 +f 432/629/375 431/628/374 408/605/351 407/604/350 +f 433/630/376 432/629/375 407/604/350 406/603/349 +f 434/631/377 433/630/376 406/603/349 405/602/348 +f 435/632/378 434/631/377 405/602/348 404/601/347 +f 436/633/379 435/632/378 404/601/347 403/600/346 +f 437/634/380 436/633/379 403/600/346 402/599/345 +f 438/635/381 437/634/380 402/599/345 401/598/344 +f 439/636/382 438/635/381 401/598/344 400/597/343 +f 440/637/383 439/636/382 400/597/343 399/596/342 +f 441/638/384 440/637/383 399/596/342 398/595/341 +f 442/639/385 441/638/384 398/595/341 397/594/340 +f 443/640/386 442/639/385 397/594/340 396/593/339 +f 444/641/387 443/640/386 396/593/339 395/592/338 +f 445/642/388 444/641/387 395/592/338 394/591/337 +f 446/643/389 445/642/388 394/591/337 393/590/336 +f 447/644/390 446/643/389 393/590/336 392/589/335 +f 448/645/391 447/644/390 392/589/335 391/588/334 +f 449/646/392 448/645/391 391/588/334 390/587/333 +f 450/647/393 449/646/392 390/587/333 389/586/332 +f 375/564/318 450/647/393 389/586/332 420/617/363 +f 480/678/423 209/276/113 207/274/111 463/660/406 +f 302/435/227 301/434/226 463/679/406 462/680/405 +f 290/423/215 289/422/214 458/681/401 459/682/402 +f 459/682/402 460/683/403 315/448/240 290/423/215 +f 460/683/403 461/684/404 273/406/198 315/448/240 +f 323/456/248 325/458/250 456/685/399 455/686/398 +f 325/458/250 327/460/252 453/687/396 456/685/399 +f 327/460/252 274/407/199 454/688/397 453/687/396 +f 310/443/235 309/442/234 452/689/395 457/690/400 +f 451/691/394 452/689/395 309/442/234 307/440/232 +f 462/680/405 451/691/394 307/440/232 302/435/227 +f 474/692/417 476/693/419 278/411/203 277/410/202 +f 301/434/226 317/450/242 480/694/423 463/679/406 +f 317/450/242 383/580/326 479/695/422 480/694/423 +f 383/580/326 294/427/219 470/696/413 479/695/422 +f 478/697/421 471/698/414 293/426/218 298/431/223 +f 477/699/420 478/697/421 298/431/223 297/430/222 +f 297/430/222 278/411/203 476/693/419 477/699/420 +f 330/700/255 329/701/254 331/464/256 282/415/207 +f 329/701/254 475/702/418 313/446/238 331/464/256 +f 277/410/202 313/446/238 475/702/418 474/692/417 +f 385/582/328 286/419/211 468/703/411 469/704/412 +f 281/414/206 305/438/230 473/705/416 465/706/408 +f 305/438/230 387/584/330 472/707/415 473/705/416 +f 387/584/330 385/582/328 469/704/412 472/707/415 +f 461/684/404 454/688/397 274/407/199 273/406/198 +f 466/708/409 468/703/411 286/419/211 285/418/210 +f 467/709/410 466/708/409 285/418/210 319/452/244 +f 464/710/407 467/709/410 319/452/244 321/454/246 +f 457/690/400 458/681/401 289/422/214 310/443/235 +f 282/415/207 281/414/206 465/706/408 330/700/255 +f 321/454/246 323/456/248 455/686/398 464/710/407 +f 471/698/414 470/696/413 294/427/219 293/426/218 +f 467/664/410 464/661/407 182/247/86 180/245/84 diff --git a/mods/pipeworks/models/pipeworks_pipe_2_lowpoly.obj b/mods/pipeworks/models/pipeworks_pipe_2_lowpoly.obj new file mode 100644 index 00000000..06d0b250 --- /dev/null +++ b/mods/pipeworks/models/pipeworks_pipe_2_lowpoly.obj @@ -0,0 +1,192 @@ +# Blender v2.78 (sub 0) OBJ File: 'pipe-master-lowpoly.blend' +# www.blender.org +o Cylinder.002_Cylinder.006_None +v 0.500000 -0.156250 -0.064721 +v 0.500000 -0.064721 -0.156250 +v 0.500000 0.064721 -0.156250 +v 0.500000 0.156250 -0.064721 +v 0.500000 0.156250 0.064721 +v 0.500000 0.064721 0.156250 +v 0.500000 -0.064721 0.156250 +v 0.500000 -0.156250 0.064721 +v 0.468750 -0.064721 -0.156250 +v 0.468750 -0.156250 -0.064721 +v 0.468750 -0.156250 0.064721 +v 0.468750 -0.064721 0.156250 +v 0.468750 0.064721 0.156250 +v 0.468750 0.156250 0.064721 +v 0.468750 0.156250 -0.064721 +v 0.468750 0.064721 -0.156250 +v 0.468750 -0.125000 -0.051777 +v 0.468750 -0.051777 -0.125000 +v 0.468750 0.051777 -0.125000 +v 0.468750 0.125000 -0.051777 +v 0.468750 0.125000 0.051777 +v 0.468750 0.051777 0.125000 +v 0.468750 -0.051777 0.125000 +v 0.468750 -0.125000 0.051777 +v 0.000000 0.051777 -0.125000 +v 0.000000 0.125000 -0.051777 +v 0.000000 0.051777 0.125000 +v 0.000000 0.125000 0.051777 +v 0.000000 -0.051777 0.125000 +v 0.000000 -0.125000 0.051777 +v 0.000000 -0.125000 -0.051777 +v 0.000000 -0.051777 -0.125000 +v -0.062500 -0.062500 0.025888 +v -0.062500 -0.062500 -0.025888 +v -0.062500 -0.025888 -0.062500 +v -0.062500 0.025888 -0.062500 +v -0.062500 0.062500 -0.025888 +v -0.062500 0.062500 0.025888 +v -0.062500 0.025888 0.062500 +v -0.062500 -0.025888 0.062500 +vt 0.3438 0.8906 +vt 0.2500 0.9844 +vt 0.1250 0.9844 +vt 0.0312 0.8906 +vt 0.0312 0.7656 +vt 0.1250 0.6719 +vt 0.2500 0.6719 +vt 0.3438 0.7656 +vt 0.6250 0.9844 +vt 0.7188 0.8906 +vt 0.7188 0.7656 +vt 0.6250 0.6719 +vt 0.5000 0.6719 +vt 0.4062 0.7656 +vt 0.4062 0.8906 +vt 0.5000 0.9844 +vt 0.3750 0.5938 +vt 0.3750 0.5625 +vt 0.4375 0.5625 +vt 0.4375 0.5938 +vt 0.3125 0.5938 +vt 0.3125 0.5625 +vt 0.5000 0.5625 +vt 0.5000 0.5938 +vt 0.0000 0.5938 +vt 0.0000 0.5625 +vt 0.0625 0.5625 +vt 0.0625 0.5938 +vt 0.1250 0.5625 +vt 0.1250 0.5938 +vt 0.1875 0.5625 +vt 0.1875 0.5938 +vt 0.2500 0.5625 +vt 0.2500 0.5938 +vt 1.0000 0.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 0.3750 0.2656 +vt 0.5000 0.2656 +vt 0.5000 0.5156 +vt 0.3750 0.5156 +vt 0.7500 0.2656 +vt 0.7500 0.5156 +vt 0.6250 0.5156 +vt 0.6250 0.2656 +vt 0.8750 0.2656 +vt 1.0000 0.2656 +vt 1.0000 0.5156 +vt 0.8750 0.5156 +vt 0.1250 0.2656 +vt 0.2500 0.2656 +vt 0.2500 0.5156 +vt 0.1250 0.5156 +vt 0.0000 0.2656 +vt 0.0000 0.5156 +vt 0.4619 0.1625 +vt 0.5652 0.1625 +vt 0.5393 0.2248 +vt 0.4877 0.2248 +vt 0.3889 0.2355 +vt 0.4512 0.2613 +vt 0.4619 0.4118 +vt 0.3889 0.3388 +vt 0.4512 0.3130 +vt 0.4877 0.3495 +vt 0.5652 0.4118 +vt 0.5393 0.3495 +vt 0.6382 0.2355 +vt 0.6382 0.3388 +vt 0.5759 0.3130 +vt 0.5759 0.2613 +vn 1.0000 0.0000 0.0000 +vn -1.0000 0.0000 0.0000 +vn -0.6302 -0.7173 -0.2971 +vn 0.6302 -0.7173 -0.2971 +vn 0.6302 -0.7173 0.2971 +vn -0.6302 -0.7173 0.2971 +vn -0.6302 -0.2971 -0.7173 +vn 0.6302 -0.2971 -0.7173 +vn 0.6302 -0.2971 0.7173 +vn -0.6302 -0.2971 0.7173 +vn 0.6302 0.2971 0.7173 +vn -0.6302 0.2971 0.7173 +vn 0.6302 0.7173 0.2971 +vn -0.6302 0.7173 0.2971 +vn 0.6302 0.7173 -0.2971 +vn -0.6302 0.7173 -0.2971 +vn 0.6302 0.2971 -0.7173 +vn -0.6302 0.2971 -0.7173 +vn 0.6303 -0.7173 -0.2971 +vn 0.6303 -0.2971 -0.7173 +vn 0.6303 0.2971 -0.7173 +vn 0.6303 0.7173 -0.2971 +vn 0.6303 0.7173 0.2971 +vn 0.6303 0.2971 0.7173 +vn 0.6303 -0.2971 0.7173 +vn 0.6303 -0.7173 0.2971 +vn -0.3689 0.3557 -0.8587 +vn -0.3689 0.8587 -0.3557 +vn -0.3689 0.3557 0.8587 +vn -0.3689 0.8587 0.3557 +vn -0.3689 -0.3557 0.8587 +vn -0.3689 -0.8587 0.3557 +vn -0.3689 -0.8587 -0.3557 +vn -0.3689 -0.3557 -0.8587 +vn -0.8991 -0.4044 0.1675 +vn -0.8991 -0.4044 -0.1675 +vn -0.8991 -0.1675 -0.4044 +vn -0.8991 0.1675 -0.4044 +vn -0.8991 0.4044 -0.1675 +vn -0.8991 0.4044 0.1675 +vn -0.8991 0.1675 0.4044 +vn -0.8991 -0.1675 0.4044 +g Cylinder.002_Cylinder.006_None_Cylinder.002_Cylinder.006_None_None +s off +f 1/1/1 2/2/1 3/3/1 4/4/1 5/5/1 6/6/1 7/7/1 8/8/1 +f 9/9/2 10/10/2 11/11/2 12/12/2 13/13/2 14/14/2 15/15/2 16/16/2 +s 1 +f 10/17/3 1/18/4 8/19/5 11/20/6 +f 9/21/7 2/22/8 1/18/4 10/17/3 +f 11/20/6 8/19/5 7/23/9 12/24/10 +f 12/25/10 7/26/9 6/27/11 13/28/12 +f 13/28/12 6/27/11 5/29/13 14/30/14 +f 14/30/14 5/29/13 4/31/15 15/32/16 +f 15/32/16 4/31/15 3/33/17 16/34/18 +f 16/34/18 3/33/17 2/22/8 9/21/7 +f 17/35/19 18/36/20 19/37/21 20/38/22 21/39/23 22/40/24 23/41/25 24/42/26 +f 25/43/27 26/44/28 20/45/22 19/46/21 +f 27/47/29 22/48/24 21/49/23 28/50/30 +f 29/51/31 30/52/32 24/53/26 23/54/25 +f 31/55/33 32/56/34 18/57/20 17/58/19 +f 32/56/34 25/43/27 19/46/21 18/57/20 +f 27/47/29 29/51/31 23/54/25 22/48/24 +f 30/59/32 31/55/33 17/58/19 24/60/26 +f 20/45/22 26/44/28 28/50/30 21/49/23 +f 31/61/33 30/62/32 33/63/35 34/64/36 +f 32/65/34 31/61/33 34/64/36 35/66/37 +f 26/67/28 25/68/27 36/69/38 37/70/39 +f 28/71/30 26/67/28 37/70/39 38/72/40 +f 25/68/27 32/65/34 35/66/37 36/69/38 +f 29/73/31 27/74/29 39/75/41 40/76/42 +f 27/74/29 28/71/30 38/72/40 39/75/41 +f 30/62/32 29/73/31 40/76/42 33/63/35 +f 36/69/38 35/66/37 34/64/36 33/63/35 40/76/42 39/75/41 38/72/40 37/70/39 diff --git a/mods/pipeworks/models/pipeworks_pipe_3.obj b/mods/pipeworks/models/pipeworks_pipe_3.obj new file mode 100644 index 00000000..ed0946bb --- /dev/null +++ b/mods/pipeworks/models/pipeworks_pipe_3.obj @@ -0,0 +1,2406 @@ +# Blender v2.78 (sub 0) OBJ File: 'pipe-master-highpoly.blend' +# www.blender.org +o Pipe_Cylinder.002 +v -0.468750 0.126770 0.038455 +v -0.468750 0.131837 0.012985 +v -0.468750 0.131837 -0.012984 +v -0.468750 0.126770 -0.038455 +v -0.468750 0.116832 -0.062448 +v -0.468750 0.102404 -0.084041 +v -0.468750 0.084041 -0.102404 +v -0.468750 0.062448 -0.116832 +v -0.468750 0.038455 -0.126770 +v -0.468750 0.012985 -0.131836 +v -0.468750 -0.012985 -0.131836 +v -0.468750 -0.062448 -0.116832 +v -0.468750 -0.084041 -0.102404 +v -0.468750 -0.102404 -0.084041 +v -0.468750 -0.116832 -0.062448 +v -0.468750 -0.126770 -0.038455 +v -0.468750 -0.131836 -0.012985 +v -0.468750 -0.131836 0.012985 +v -0.468750 -0.126770 0.038455 +v -0.468750 -0.116832 0.062448 +v -0.468750 -0.084041 0.102404 +v -0.468750 -0.102404 0.084041 +v -0.468750 -0.062448 0.116832 +v -0.468750 -0.038455 0.126770 +v -0.468750 0.012985 0.131837 +v -0.468750 0.062448 0.116832 +v -0.468750 0.038455 0.126770 +v -0.468750 0.084041 0.102404 +v -0.468750 0.102404 0.084041 +v -0.468750 0.116832 0.062448 +v -0.468750 -0.038455 -0.126770 +v -0.468750 -0.012985 0.131836 +v -0.437501 0.110774 0.059210 +v -0.437501 0.120197 0.036461 +v -0.437501 0.125000 0.012312 +v -0.437501 0.125001 -0.012311 +v -0.437501 0.120197 -0.036461 +v -0.437501 0.110774 -0.059210 +v -0.437501 0.097094 -0.079683 +v -0.437501 0.079683 -0.097094 +v -0.437501 0.059210 -0.110774 +v -0.437501 0.036461 -0.120197 +v -0.437501 0.012312 -0.125000 +v -0.437501 -0.012311 -0.125000 +v -0.437501 -0.036461 -0.120197 +v -0.437501 -0.059210 -0.110774 +v -0.437501 -0.079683 -0.097094 +v -0.437501 -0.097094 -0.079683 +v -0.437501 -0.110774 -0.059210 +v -0.437501 -0.120197 -0.036461 +v -0.437501 -0.125000 -0.012311 +v -0.437501 -0.125000 0.012311 +v -0.437501 -0.120197 0.036461 +v -0.437501 -0.110774 0.059210 +v -0.437501 -0.097094 0.079683 +v -0.437501 -0.079683 0.097094 +v -0.437501 -0.059210 0.110774 +v -0.437501 -0.036461 0.120197 +v -0.437501 -0.012311 0.125001 +v -0.437501 0.012311 0.125001 +v -0.437501 0.036461 0.120197 +v -0.437501 0.059210 0.110774 +v -0.437501 0.079683 0.097094 +v -0.437501 0.097094 0.079683 +v 0.437501 0.036461 -0.120197 +v 0.437501 0.012312 -0.125001 +v 0.437501 -0.012311 -0.125000 +v 0.437501 -0.036461 -0.120197 +v 0.437501 0.059210 -0.110774 +v 0.468750 0.012985 -0.131836 +v 0.468750 0.038455 -0.126770 +v 0.468750 -0.012985 -0.131836 +v 0.437501 -0.059210 -0.110774 +v 0.468750 -0.038455 -0.126770 +v 0.437501 0.079683 -0.097094 +v 0.468750 0.062448 -0.116832 +v 0.437501 -0.079683 -0.097094 +v 0.468750 -0.062448 -0.116832 +v 0.437501 0.097094 -0.079683 +v 0.468750 0.084041 -0.102404 +v 0.437501 -0.097094 -0.079683 +v 0.468750 -0.084041 -0.102404 +v 0.437501 0.110774 -0.059210 +v 0.468750 0.102404 -0.084041 +v 0.437501 -0.110774 -0.059210 +v 0.468750 -0.102404 -0.084041 +v 0.437501 0.120197 -0.036461 +v 0.468750 0.116832 -0.062448 +v 0.437501 -0.120197 -0.036461 +v 0.468750 -0.116832 -0.062448 +v 0.437501 0.125000 -0.012311 +v 0.468750 0.126770 -0.038455 +v 0.437501 -0.125001 -0.012311 +v 0.468750 -0.126770 -0.038455 +v 0.437501 0.125000 0.012312 +v 0.468750 0.131836 -0.012985 +v 0.437501 -0.125001 0.012311 +v 0.468750 -0.131837 -0.012985 +v 0.437501 0.120197 0.036461 +v 0.468750 0.131836 0.012985 +v 0.437501 -0.120197 0.036461 +v 0.468750 -0.131837 0.012985 +v 0.437501 0.110774 0.059210 +v 0.468750 0.126770 0.038455 +v 0.437501 -0.110774 0.059210 +v 0.468750 -0.126770 0.038455 +v 0.437501 0.097094 0.079683 +v 0.468750 0.116832 0.062448 +v 0.437501 -0.097094 0.079683 +v 0.468750 -0.116832 0.062448 +v 0.437501 0.079683 0.097094 +v 0.468750 0.102404 0.084041 +v 0.437501 -0.079683 0.097094 +v 0.468750 -0.102404 0.084041 +v 0.437501 0.059210 0.110774 +v 0.468750 0.084041 0.102404 +v 0.437501 -0.059210 0.110774 +v 0.468750 -0.084041 0.102404 +v 0.437501 0.036461 0.120197 +v 0.468750 0.062448 0.116832 +v 0.437501 -0.036461 0.120197 +v 0.468750 -0.062448 0.116832 +v 0.437501 0.012311 0.125000 +v 0.468750 0.038455 0.126770 +v 0.437501 -0.012311 0.125000 +v 0.468750 -0.038455 0.126770 +v 0.468750 0.012985 0.131837 +v 0.468750 -0.012985 0.131836 +v 0.460912 0.130078 0.063644 +v 0.468749 0.130078 0.063644 +v 0.468749 0.139022 0.062467 +v 0.460912 0.139022 0.062467 +v 0.460912 0.142474 0.054132 +v 0.460912 0.136982 0.046976 +v 0.460912 0.128039 0.048153 +v 0.460912 0.124587 0.056487 +v 0.468749 0.124587 0.056487 +v 0.468749 0.142474 0.054132 +v 0.468749 0.136982 0.046976 +v 0.468749 0.128039 0.048153 +v -0.460914 0.136982 0.046976 +v -0.468751 0.136982 0.046976 +v -0.468751 0.142474 0.054133 +v -0.460914 0.142474 0.054133 +v -0.460914 0.139022 0.062467 +v -0.460914 0.130078 0.063644 +v -0.460914 0.124587 0.056488 +v -0.460914 0.128039 0.048153 +v -0.468751 0.128039 0.048153 +v -0.468751 0.139022 0.062467 +v -0.468751 0.130078 0.063644 +v -0.468751 0.124587 0.056488 +v 0.460912 0.046976 0.136982 +v 0.468749 0.046976 0.136982 +v 0.468749 0.054133 0.142474 +v 0.460912 0.054133 0.142474 +v 0.460912 0.062467 0.139022 +v 0.460912 0.063644 0.130078 +v 0.460912 0.056488 0.124587 +v 0.460912 0.048154 0.128039 +v 0.468749 0.048154 0.128039 +v 0.468749 0.062467 0.139022 +v 0.468749 0.063644 0.130078 +v 0.468749 0.056488 0.124587 +v -0.460914 0.063644 0.130078 +v -0.468751 0.063644 0.130078 +v -0.468751 0.062467 0.139022 +v -0.460914 0.062467 0.139022 +v -0.460914 0.054133 0.142474 +v -0.460914 0.046976 0.136982 +v -0.460914 0.048153 0.128039 +v -0.460914 0.056487 0.124587 +v -0.468751 0.056487 0.124587 +v -0.468751 0.054133 0.142474 +v -0.468751 0.046976 0.136982 +v -0.468751 0.048153 0.128039 +v 0.460912 -0.063644 0.130078 +v 0.468749 -0.063644 0.130078 +v 0.468749 -0.062467 0.139022 +v 0.460912 -0.062467 0.139022 +v 0.460912 -0.054132 0.142474 +v 0.460912 -0.046976 0.136982 +v 0.460912 -0.048153 0.128039 +v 0.460912 -0.056487 0.124587 +v 0.468749 -0.056487 0.124587 +v 0.468749 -0.054132 0.142474 +v 0.468749 -0.046976 0.136982 +v 0.468749 -0.048153 0.128039 +v -0.460914 -0.046976 0.136982 +v -0.468751 -0.046976 0.136982 +v -0.468751 -0.054133 0.142474 +v -0.460914 -0.054133 0.142474 +v -0.460914 -0.062467 0.139022 +v -0.460914 -0.063644 0.130078 +v -0.460914 -0.056488 0.124587 +v -0.460914 -0.048153 0.128039 +v -0.468751 -0.048153 0.128039 +v -0.468751 -0.062467 0.139022 +v -0.468751 -0.063644 0.130078 +v -0.468751 -0.056488 0.124587 +v 0.460912 -0.136982 0.046976 +v 0.468749 -0.136982 0.046976 +v 0.468749 -0.142474 0.054133 +v 0.460912 -0.142474 0.054133 +v 0.460912 -0.139022 0.062467 +v 0.460912 -0.130078 0.063644 +v 0.460912 -0.124587 0.056488 +v 0.460912 -0.128039 0.048153 +v 0.468749 -0.128039 0.048153 +v 0.468749 -0.139022 0.062467 +v 0.468749 -0.130078 0.063644 +v 0.468749 -0.124587 0.056488 +v -0.460914 -0.130078 0.063644 +v -0.468751 -0.130078 0.063644 +v -0.468751 -0.139022 0.062467 +v -0.460914 -0.139022 0.062467 +v -0.460914 -0.142474 0.054133 +v -0.460914 -0.136982 0.046976 +v -0.460914 -0.128039 0.048153 +v -0.460914 -0.124587 0.056487 +v -0.468751 -0.124587 0.056487 +v -0.468751 -0.142474 0.054133 +v -0.468751 -0.136982 0.046976 +v -0.468751 -0.128039 0.048153 +v 0.460912 -0.130078 -0.063644 +v 0.468749 -0.130078 -0.063644 +v 0.468749 -0.139022 -0.062467 +v 0.460912 -0.139022 -0.062467 +v 0.460912 -0.142474 -0.054132 +v 0.460912 -0.136982 -0.046976 +v 0.460912 -0.128039 -0.048153 +v 0.460912 -0.124587 -0.056487 +v 0.468749 -0.124587 -0.056487 +v 0.468749 -0.142474 -0.054132 +v 0.468749 -0.136982 -0.046976 +v 0.468749 -0.128039 -0.048153 +v -0.460914 -0.136982 -0.046976 +v -0.468751 -0.136982 -0.046976 +v -0.468751 -0.142474 -0.054133 +v -0.460914 -0.142474 -0.054133 +v -0.460914 -0.139022 -0.062467 +v -0.460914 -0.130078 -0.063644 +v -0.460914 -0.124587 -0.056487 +v -0.460914 -0.128039 -0.048153 +v -0.468751 -0.128039 -0.048153 +v -0.468751 -0.139022 -0.062467 +v -0.468751 -0.130078 -0.063644 +v -0.468751 -0.124587 -0.056487 +v 0.460912 -0.046976 -0.136982 +v 0.468749 -0.046976 -0.136982 +v 0.468749 -0.054133 -0.142474 +v 0.460912 -0.054133 -0.142474 +v 0.460912 -0.062467 -0.139022 +v 0.460912 -0.063644 -0.130078 +v 0.460912 -0.056488 -0.124587 +v 0.460912 -0.048153 -0.128039 +v 0.468749 -0.048153 -0.128039 +v 0.468749 -0.062467 -0.139022 +v 0.468749 -0.063644 -0.130078 +v 0.468749 -0.056488 -0.124587 +v -0.460914 -0.063644 -0.130078 +v -0.468751 -0.063644 -0.130078 +v -0.468751 -0.062467 -0.139022 +v -0.460914 -0.062467 -0.139022 +v -0.460914 -0.054132 -0.142474 +v -0.460914 -0.046976 -0.136982 +v -0.460914 -0.048153 -0.128039 +v -0.460914 -0.056487 -0.124587 +v -0.468751 -0.056487 -0.124587 +v -0.468751 -0.054132 -0.142474 +v -0.468751 -0.046976 -0.136982 +v -0.468751 -0.048153 -0.128039 +v 0.460912 0.063644 -0.130078 +v 0.468749 0.063644 -0.130078 +v 0.468749 0.062467 -0.139022 +v 0.460912 0.062467 -0.139022 +v 0.460912 0.054132 -0.142474 +v 0.460912 0.046976 -0.136982 +v 0.460912 0.048153 -0.128039 +v 0.460912 0.056487 -0.124587 +v 0.468749 0.056487 -0.124587 +v 0.468749 0.054132 -0.142474 +v 0.468749 0.046976 -0.136982 +v 0.468749 0.048153 -0.128039 +v -0.460914 0.046976 -0.136982 +v -0.468751 0.046976 -0.136982 +v -0.468751 0.054133 -0.142474 +v -0.460914 0.054133 -0.142474 +v -0.460914 0.062467 -0.139022 +v -0.460914 0.063644 -0.130078 +v -0.460914 0.056487 -0.124587 +v -0.460914 0.048153 -0.128039 +v -0.468751 0.048153 -0.128039 +v -0.468751 0.062467 -0.139022 +v -0.468751 0.063644 -0.130078 +v -0.468751 0.056487 -0.124587 +v 0.460912 0.136982 -0.046976 +v 0.468749 0.136982 -0.046976 +v 0.468749 0.142474 -0.054133 +v 0.460912 0.142474 -0.054133 +v 0.460912 0.139022 -0.062467 +v 0.460912 0.130078 -0.063644 +v 0.460912 0.124587 -0.056488 +v 0.460912 0.128039 -0.048153 +v 0.468749 0.128039 -0.048153 +v 0.468749 0.139022 -0.062467 +v 0.468749 0.130078 -0.063644 +v 0.468749 0.124587 -0.056488 +v -0.460914 0.130078 -0.063644 +v -0.468751 0.130078 -0.063644 +v -0.468751 0.139022 -0.062467 +v -0.460914 0.139022 -0.062467 +v -0.460914 0.142474 -0.054133 +v -0.460914 0.136982 -0.046976 +v -0.460914 0.128039 -0.048153 +v -0.460914 0.124587 -0.056487 +v -0.468751 0.124587 -0.056487 +v -0.468751 0.142474 -0.054133 +v -0.468751 0.136982 -0.046976 +v -0.468751 0.128039 -0.048153 +v -0.500000 0.099603 -0.121367 +v -0.500000 0.074012 -0.138467 +v -0.500000 0.045577 -0.150245 +v -0.500000 0.015390 -0.156250 +v -0.500000 -0.015389 -0.156250 +v -0.500000 -0.045576 -0.150245 +v -0.500000 -0.074012 -0.138467 +v -0.500000 -0.099603 -0.121367 +v -0.500000 -0.121367 -0.099603 +v -0.500000 -0.150245 -0.045576 +v -0.500000 -0.156250 0.015389 +v -0.500000 -0.150245 0.045576 +v -0.500000 -0.121367 0.099603 +v -0.500000 -0.099603 0.121367 +v -0.500000 -0.074012 0.138467 +v -0.500000 -0.045576 0.150245 +v -0.500000 -0.015389 0.156250 +v -0.500000 0.045576 0.150245 +v -0.500000 0.074012 0.138467 +v -0.500000 0.099603 0.121367 +v -0.500000 0.138467 0.074012 +v -0.500000 0.156250 0.015389 +v -0.500000 0.156250 -0.015389 +v -0.500000 0.150245 -0.045576 +v -0.500000 0.138467 -0.074012 +v -0.500000 0.121367 -0.099603 +v -0.500000 -0.138466 -0.074012 +v -0.500000 -0.156250 -0.015389 +v -0.500000 -0.138467 0.074012 +v -0.500000 0.015389 0.156250 +v -0.500000 0.121367 0.099603 +v -0.500000 0.150245 0.045576 +v -0.468750 0.099603 -0.121367 +v -0.468750 0.121367 -0.099603 +v -0.468750 0.074012 -0.138467 +v -0.468750 0.045577 -0.150245 +v -0.468750 0.015390 -0.156250 +v -0.468750 -0.015389 -0.156250 +v -0.468750 -0.045576 -0.150245 +v -0.468750 -0.074012 -0.138467 +v -0.468750 -0.099603 -0.121367 +v -0.468750 -0.121367 -0.099603 +v -0.468750 -0.138466 -0.074012 +v -0.468750 -0.150245 -0.045576 +v -0.468750 -0.156250 -0.015389 +v -0.468750 -0.156250 0.015389 +v -0.468750 -0.150245 0.045576 +v -0.468750 -0.138467 0.074012 +v -0.468750 -0.121367 0.099603 +v -0.468750 -0.099603 0.121367 +v -0.468750 -0.074012 0.138467 +v -0.468750 -0.045576 0.150245 +v -0.468750 -0.015389 0.156250 +v -0.468750 0.015389 0.156250 +v -0.468750 0.074012 0.138467 +v -0.468750 0.045576 0.150245 +v -0.468750 0.099603 0.121367 +v -0.468750 0.121367 0.099603 +v -0.468750 0.138467 0.074012 +v -0.468750 0.150245 0.045576 +v -0.468750 0.156250 -0.015389 +v -0.468750 0.156250 0.015389 +v -0.468750 0.150245 -0.045576 +v -0.468750 0.138467 -0.074012 +v 0.468750 -0.138466 -0.074012 +v 0.468750 -0.150245 -0.045576 +v 0.468750 -0.156250 -0.015389 +v 0.468750 -0.121367 -0.099603 +v 0.468750 -0.156250 0.015389 +v 0.468750 -0.074012 -0.138467 +v 0.468750 -0.099603 -0.121367 +v 0.500000 -0.121367 -0.099603 +v 0.500000 -0.138467 -0.074012 +v 0.500000 -0.150245 -0.045576 +v 0.500000 -0.156250 -0.015389 +v 0.500000 -0.156250 0.015389 +v 0.468750 -0.045576 -0.150245 +v 0.500000 -0.099603 -0.121367 +v 0.468750 -0.150245 0.045576 +v 0.500000 -0.150245 0.045576 +v 0.468750 -0.015389 -0.156250 +v 0.500000 -0.045576 -0.150245 +v 0.500000 -0.074012 -0.138467 +v 0.468750 -0.138467 0.074012 +v 0.500000 -0.138467 0.074012 +v 0.468750 0.015389 -0.156250 +v 0.500000 -0.015389 -0.156250 +v 0.468750 -0.121367 0.099603 +v 0.500000 -0.121367 0.099603 +v 0.468750 0.045576 -0.150245 +v 0.500000 0.015389 -0.156250 +v 0.468750 -0.099603 0.121367 +v 0.500000 -0.099603 0.121367 +v 0.468750 0.074012 -0.138467 +v 0.500000 0.045576 -0.150245 +v 0.468750 -0.045576 0.150245 +v 0.468750 -0.074012 0.138467 +v 0.500000 -0.074012 0.138467 +v 0.468750 0.099603 -0.121367 +v 0.500000 0.074012 -0.138467 +v 0.468750 -0.015389 0.156250 +v 0.500000 -0.045576 0.150245 +v 0.468750 0.121367 -0.099603 +v 0.500000 0.099603 -0.121367 +v 0.468750 0.015389 0.156250 +v 0.500000 -0.015389 0.156250 +v 0.468750 0.138466 -0.074012 +v 0.500000 0.121367 -0.099603 +v 0.468750 0.045576 0.150245 +v 0.500000 0.015389 0.156250 +v 0.468750 0.150245 -0.045577 +v 0.500000 0.138466 -0.074012 +v 0.468750 0.074012 0.138467 +v 0.500000 0.045576 0.150245 +v 0.468750 0.156249 -0.015389 +v 0.500000 0.150245 -0.045577 +v 0.500000 0.156250 0.015389 +v 0.468750 0.099603 0.121367 +v 0.500000 0.074012 0.138467 +v 0.468750 0.156250 0.015389 +v 0.500000 0.156250 -0.015389 +v 0.500000 0.138467 0.074012 +v 0.500000 0.150245 0.045576 +v 0.500000 0.121367 0.099603 +v 0.500000 0.099603 0.121367 +v 0.468750 0.150245 0.045576 +v 0.468750 0.121367 0.099603 +v 0.468750 0.138467 0.074012 +v 0.460912 0.095821 0.108578 +v 0.468749 0.095821 0.108578 +v 0.468749 0.104534 0.110913 +v 0.460912 0.104534 0.110913 +v 0.460912 0.110913 0.104534 +v 0.460912 0.108578 0.095821 +v 0.460912 0.099865 0.093486 +v 0.460912 0.093486 0.099865 +v 0.468749 0.093486 0.099865 +v 0.468749 0.110913 0.104534 +v 0.468749 0.108578 0.095821 +v 0.468749 0.099865 0.093486 +v -0.460914 0.108578 0.095821 +v -0.468751 0.108578 0.095821 +v -0.468751 0.110913 0.104534 +v -0.460914 0.110913 0.104534 +v -0.460914 0.104534 0.110913 +v -0.460914 0.095821 0.108578 +v -0.460914 0.093486 0.099865 +v -0.460914 0.099865 0.093486 +v -0.468751 0.099865 0.093486 +v -0.468751 0.104534 0.110913 +v -0.468751 0.095821 0.108578 +v -0.468751 0.093486 0.099865 +v 0.460912 -0.009021 0.144532 +v 0.468749 -0.009021 0.144532 +v 0.468749 -0.004510 0.152344 +v 0.460912 -0.004510 0.152344 +v 0.460912 0.004510 0.152344 +v 0.460912 0.009021 0.144532 +v 0.460912 0.004510 0.136720 +v 0.460912 -0.004510 0.136720 +v 0.468749 -0.004510 0.136720 +v 0.468749 0.004510 0.152344 +v 0.468749 0.009021 0.144532 +v 0.468749 0.004510 0.136720 +v -0.460914 0.009021 0.144532 +v -0.468751 0.009021 0.144532 +v -0.468751 0.004510 0.152344 +v -0.460914 0.004510 0.152344 +v -0.460914 -0.004510 0.152344 +v -0.460914 -0.009021 0.144532 +v -0.460914 -0.004510 0.136720 +v -0.460914 0.004510 0.136720 +v -0.468751 0.004510 0.136720 +v -0.468751 -0.004510 0.152344 +v -0.468751 -0.009021 0.144532 +v -0.468751 -0.004510 0.136720 +v 0.460912 -0.108578 0.095821 +v 0.468749 -0.108578 0.095821 +v 0.468749 -0.110913 0.104534 +v 0.460912 -0.110913 0.104534 +v 0.460912 -0.104534 0.110913 +v 0.460912 -0.095821 0.108578 +v 0.460912 -0.093486 0.099865 +v 0.460912 -0.099865 0.093486 +v 0.468749 -0.099865 0.093486 +v 0.468749 -0.104534 0.110913 +v 0.468749 -0.095821 0.108578 +v 0.468749 -0.093486 0.099865 +v -0.460914 -0.095821 0.108578 +v -0.468751 -0.095821 0.108578 +v -0.468751 -0.104534 0.110913 +v -0.460914 -0.104534 0.110913 +v -0.460914 -0.110913 0.104534 +v -0.460914 -0.108578 0.095821 +v -0.460914 -0.099865 0.093486 +v -0.460914 -0.093486 0.099865 +v -0.468751 -0.093486 0.099865 +v -0.468751 -0.110913 0.104534 +v -0.468751 -0.108578 0.095821 +v -0.468751 -0.099865 0.093486 +v 0.460912 -0.144532 -0.009021 +v 0.468749 -0.144532 -0.009021 +v 0.468749 -0.152344 -0.004510 +v 0.460912 -0.152344 -0.004510 +v 0.460912 -0.152344 0.004511 +v 0.460912 -0.144532 0.009021 +v 0.460912 -0.136720 0.004510 +v 0.460912 -0.136720 -0.004510 +v 0.468749 -0.136720 -0.004510 +v 0.468749 -0.152344 0.004511 +v 0.468749 -0.144532 0.009021 +v 0.468749 -0.136720 0.004510 +v -0.460914 -0.144532 0.009021 +v -0.468751 -0.144532 0.009021 +v -0.468751 -0.152344 0.004510 +v -0.460914 -0.152344 0.004510 +v -0.460914 -0.152344 -0.004510 +v -0.460914 -0.144532 -0.009021 +v -0.460914 -0.136720 -0.004510 +v -0.460914 -0.136720 0.004510 +v -0.468751 -0.136720 0.004510 +v -0.468751 -0.152344 -0.004510 +v -0.468751 -0.144532 -0.009021 +v -0.468751 -0.136720 -0.004510 +v 0.460912 -0.095821 -0.108578 +v 0.468749 -0.095821 -0.108578 +v 0.468749 -0.104534 -0.110913 +v 0.460912 -0.104534 -0.110913 +v 0.460912 -0.110913 -0.104534 +v 0.460912 -0.108578 -0.095821 +v 0.460912 -0.099865 -0.093486 +v 0.460912 -0.093486 -0.099865 +v 0.468749 -0.093486 -0.099865 +v 0.468749 -0.110913 -0.104534 +v 0.468749 -0.108578 -0.095821 +v 0.468749 -0.099865 -0.093486 +v -0.460914 -0.108578 -0.095821 +v -0.468751 -0.108578 -0.095821 +v -0.468751 -0.110913 -0.104534 +v -0.460914 -0.110913 -0.104534 +v -0.460914 -0.104534 -0.110913 +v -0.460914 -0.095821 -0.108578 +v -0.460914 -0.093486 -0.099865 +v -0.460914 -0.099865 -0.093486 +v -0.468751 -0.099865 -0.093486 +v -0.468751 -0.104534 -0.110913 +v -0.468751 -0.095821 -0.108578 +v -0.468751 -0.093486 -0.099865 +v 0.460912 0.009021 -0.144532 +v 0.468749 0.009021 -0.144532 +v 0.468749 0.004510 -0.152344 +v 0.460912 0.004510 -0.152344 +v 0.460912 -0.004510 -0.152344 +v 0.460912 -0.009021 -0.144532 +v 0.460912 -0.004510 -0.136720 +v 0.460912 0.004510 -0.136720 +v 0.468749 0.004510 -0.136720 +v 0.468749 -0.004510 -0.152344 +v 0.468749 -0.009021 -0.144532 +v 0.468749 -0.004510 -0.136720 +v -0.460914 -0.009021 -0.144532 +v -0.468751 -0.009021 -0.144532 +v -0.468751 -0.004510 -0.152344 +v -0.460914 -0.004510 -0.152344 +v -0.460914 0.004510 -0.152344 +v -0.460914 0.009021 -0.144532 +v -0.460914 0.004510 -0.136720 +v -0.460914 -0.004510 -0.136720 +v -0.468751 -0.004510 -0.136720 +v -0.468751 0.004510 -0.152344 +v -0.468751 0.009021 -0.144532 +v -0.468751 0.004510 -0.136720 +v 0.460912 0.108578 -0.095821 +v 0.468749 0.108578 -0.095821 +v 0.468749 0.110913 -0.104534 +v 0.460912 0.110913 -0.104534 +v 0.460912 0.104534 -0.110913 +v 0.460912 0.095821 -0.108578 +v 0.460912 0.093486 -0.099865 +v 0.460912 0.099865 -0.093486 +v 0.468749 0.099865 -0.093486 +v 0.468749 0.104534 -0.110913 +v 0.468749 0.095821 -0.108578 +v 0.468749 0.093486 -0.099865 +v -0.460914 0.095821 -0.108578 +v -0.468751 0.095821 -0.108578 +v -0.468751 0.104534 -0.110913 +v -0.460914 0.104534 -0.110913 +v -0.460914 0.110913 -0.104534 +v -0.460914 0.108578 -0.095821 +v -0.460914 0.099865 -0.093486 +v -0.460914 0.093486 -0.099865 +v -0.468751 0.093486 -0.099865 +v -0.468751 0.110913 -0.104534 +v -0.468751 0.108578 -0.095821 +v -0.468751 0.099865 -0.093486 +v 0.460912 0.144532 0.009021 +v 0.468749 0.144532 0.009021 +v 0.468749 0.152344 0.004510 +v 0.460912 0.152344 0.004510 +v 0.460912 0.152344 -0.004510 +v 0.460912 0.144532 -0.009021 +v 0.460912 0.136720 -0.004510 +v 0.460912 0.136720 0.004510 +v 0.468749 0.136720 0.004510 +v 0.468749 0.152344 -0.004510 +v 0.468749 0.144532 -0.009021 +v 0.468749 0.136720 -0.004510 +v -0.460914 0.144532 -0.009021 +v -0.468751 0.144532 -0.009021 +v -0.468751 0.152344 -0.004510 +v -0.460914 0.152344 -0.004510 +v -0.460914 0.152344 0.004510 +v -0.460914 0.144532 0.009021 +v -0.460914 0.136720 0.004510 +v -0.460914 0.136720 -0.004510 +v -0.468751 0.136720 -0.004510 +v -0.468751 0.152344 0.004510 +v -0.468751 0.144532 0.009021 +v -0.468751 0.136720 0.004510 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.4412 0.9276 +vt 0.4630 0.9493 +vt 0.4886 0.9664 +vt 0.5170 0.9782 +vt 0.5472 0.9842 +vt 0.5780 0.9842 +vt 0.6082 0.9782 +vt 0.6366 0.9664 +vt 0.6622 0.9493 +vt 0.6840 0.9276 +vt 0.7011 0.9020 +vt 0.7129 0.8735 +vt 0.7189 0.8434 +vt 0.7189 0.8126 +vt 0.7129 0.7824 +vt 0.7011 0.7539 +vt 0.6840 0.7283 +vt 0.6622 0.7066 +vt 0.6366 0.6895 +vt 0.6082 0.6777 +vt 0.5780 0.6717 +vt 0.5472 0.6717 +vt 0.5170 0.6777 +vt 0.4886 0.6895 +vt 0.4630 0.7066 +vt 0.4412 0.7283 +vt 0.4241 0.7539 +vt 0.4124 0.7824 +vt 0.4063 0.8126 +vt 0.4063 0.8434 +vt 0.4124 0.8735 +vt 0.4241 0.9020 +vt 0.2332 0.6777 +vt 0.2616 0.6895 +vt 0.2872 0.7066 +vt 0.3090 0.7283 +vt 0.3261 0.7539 +vt 0.3379 0.7824 +vt 0.3439 0.8126 +vt 0.3439 0.8434 +vt 0.3379 0.8735 +vt 0.3261 0.9020 +vt 0.3090 0.9276 +vt 0.2872 0.9493 +vt 0.2616 0.9664 +vt 0.2332 0.9782 +vt 0.2030 0.9842 +vt 0.1722 0.9842 +vt 0.1420 0.9782 +vt 0.1136 0.9664 +vt 0.0880 0.9493 +vt 0.0662 0.9276 +vt 0.0491 0.9020 +vt 0.0374 0.8735 +vt 0.0313 0.8434 +vt 0.0313 0.8126 +vt 0.0374 0.7824 +vt 0.0491 0.7539 +vt 0.0662 0.7283 +vt 0.0880 0.7066 +vt 0.1136 0.6895 +vt 0.1420 0.6777 +vt 0.1722 0.6717 +vt 0.2030 0.6717 +vt 0.5780 0.6717 +vt 0.6082 0.6777 +vt 0.6366 0.6895 +vt 0.6622 0.7066 +vt 0.6840 0.7283 +vt 0.7011 0.7539 +vt 0.7129 0.7824 +vt 0.7189 0.8126 +vt 0.7189 0.8434 +vt 0.7129 0.8735 +vt 0.7011 0.9020 +vt 0.6840 0.9276 +vt 0.6622 0.9493 +vt 0.6366 0.9664 +vt 0.6082 0.9782 +vt 0.5780 0.9842 +vt 0.5472 0.9842 +vt 0.5170 0.9782 +vt 0.4886 0.9664 +vt 0.4630 0.9493 +vt 0.4412 0.9276 +vt 0.4241 0.9020 +vt 0.4124 0.8735 +vt 0.4063 0.8434 +vt 0.4063 0.8126 +vt 0.4124 0.7824 +vt 0.4241 0.7539 +vt 0.4412 0.7283 +vt 0.4630 0.7066 +vt 0.4886 0.6895 +vt 0.5170 0.6777 +vt 0.5472 0.6717 +vt 0.1136 0.6895 +vt 0.0880 0.7066 +vt 0.0662 0.7283 +vt 0.0491 0.7539 +vt 0.0374 0.7824 +vt 0.0313 0.8126 +vt 0.0313 0.8434 +vt 0.0374 0.8735 +vt 0.0491 0.9020 +vt 0.0662 0.9276 +vt 0.0880 0.9493 +vt 0.1136 0.9664 +vt 0.1420 0.9782 +vt 0.1722 0.9842 +vt 0.2030 0.9842 +vt 0.2332 0.9782 +vt 0.2616 0.9664 +vt 0.2872 0.9493 +vt 0.3090 0.9276 +vt 0.3261 0.9020 +vt 0.3379 0.8735 +vt 0.3439 0.8434 +vt 0.3439 0.8126 +vt 0.3379 0.7824 +vt 0.3261 0.7539 +vt 0.3090 0.7283 +vt 0.2872 0.7066 +vt 0.2616 0.6895 +vt 0.2332 0.6777 +vt 0.2030 0.6717 +vt 0.1722 0.6717 +vt 0.1420 0.6777 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.4688 0.5898 +vt 0.4688 0.5664 +vt 0.5000 0.5664 +vt 0.5000 0.5898 +vt 0.4375 0.5898 +vt 0.4375 0.5664 +vt 0.4062 0.5898 +vt 0.4062 0.5664 +vt 0.3750 0.5898 +vt 0.3750 0.5664 +vt 0.3438 0.5898 +vt 0.3438 0.5664 +vt 0.3125 0.5898 +vt 0.3125 0.5664 +vt 0.2812 0.5898 +vt 0.2812 0.5664 +vt 0.2500 0.5898 +vt 0.2500 0.5664 +vt 0.2188 0.5898 +vt 0.2188 0.5664 +vt 0.1875 0.5898 +vt 0.1875 0.5664 +vt 0.1562 0.5898 +vt 0.1562 0.5664 +vt 0.1250 0.5898 +vt 0.1250 0.5664 +vt 0.0938 0.5898 +vt 0.0938 0.5664 +vt 0.0625 0.5898 +vt 0.0625 0.5664 +vt 0.0937 0.5664 +vt 0.0312 0.5898 +vt 0.0312 0.5664 +vt 0.0000 0.5898 +vt 0.0000 0.5664 +vt 0.9688 0.5898 +vt 0.9688 0.5664 +vt 1.0000 0.5664 +vt 1.0000 0.5898 +vt 0.9375 0.5898 +vt 0.9375 0.5664 +vt 0.9062 0.5898 +vt 0.9062 0.5664 +vt 0.8750 0.5898 +vt 0.8750 0.5664 +vt 0.8125 0.5898 +vt 0.8125 0.5664 +vt 0.8438 0.5664 +vt 0.8438 0.5898 +vt 0.7812 0.5898 +vt 0.7812 0.5664 +vt 0.7500 0.5898 +vt 0.7500 0.5664 +vt 0.7188 0.5898 +vt 0.7188 0.5664 +vt 0.6875 0.5898 +vt 0.6875 0.5664 +vt 0.6250 0.5898 +vt 0.6250 0.5664 +vt 0.6562 0.5664 +vt 0.6562 0.5898 +vt 0.5938 0.5898 +vt 0.5938 0.5664 +vt 0.5625 0.5898 +vt 0.5625 0.5664 +vt 0.6719 0.5156 +vt 0.6719 0.5000 +vt 0.7031 0.5000 +vt 0.7031 0.5156 +vt 0.7344 0.5156 +vt 0.7344 0.5000 +vt 0.7656 0.5156 +vt 0.7656 0.5000 +vt 0.7969 0.5156 +vt 0.7969 0.5000 +vt 0.8281 0.5156 +vt 0.8281 0.5000 +vt 0.8594 0.5156 +vt 0.8594 0.5000 +vt 0.8906 0.5000 +vt 0.8906 0.5156 +vt 0.9219 0.5156 +vt 0.9219 0.5000 +vt 0.9531 0.5156 +vt 0.9531 0.5000 +vt 0.9844 0.5156 +vt 0.9844 0.5000 +vt 1.0156 0.5000 +vt 1.0156 0.5156 +vt 0.0156 0.5156 +vt 0.0156 0.5000 +vt 0.0469 0.5000 +vt 0.0469 0.5156 +vt 0.0781 0.5156 +vt 0.0781 0.5000 +vt 0.1094 0.5000 +vt 0.1094 0.5156 +vt 0.1406 0.5000 +vt 0.1406 0.5156 +vt 0.1719 0.5156 +vt 0.1719 0.5000 +vt 0.2031 0.5000 +vt 0.2031 0.5156 +vt 0.2344 0.5156 +vt 0.2344 0.5000 +vt 0.2656 0.5000 +vt 0.2656 0.5156 +vt 0.2969 0.5156 +vt 0.2969 0.5000 +vt 0.3281 0.5000 +vt 0.3281 0.5156 +vt 0.3594 0.5000 +vt 0.3594 0.5156 +vt 0.3906 0.5000 +vt 0.3906 0.5156 +vt 0.4219 0.5000 +vt 0.4219 0.5156 +vt 0.4531 0.5000 +vt 0.4531 0.5156 +vt 0.4844 0.5000 +vt 0.4844 0.5156 +vt 0.5469 0.5156 +vt 0.5156 0.5156 +vt 0.5156 0.5000 +vt 0.5469 0.5000 +vt 0.6094 0.5156 +vt 0.5781 0.5156 +vt 0.5781 0.5000 +vt 0.6094 0.5000 +vt 0.6406 0.5156 +vt 0.6406 0.5000 +vt 1.0156 0.0312 +vt 0.9844 0.0312 +vt 0.9844 0.0156 +vt 0.9531 0.0312 +vt 0.9531 0.0156 +vt 1.0156 0.0156 +vt 0.0469 0.0156 +vt 0.0469 0.0312 +vt 0.0156 0.0312 +vt 0.0156 0.0156 +vt 0.9219 0.0312 +vt 0.8906 0.0312 +vt 0.9219 0.0156 +vt 0.0781 0.0156 +vt 0.0781 0.0312 +vt 0.8906 0.0156 +vt 0.1094 0.0156 +vt 0.1094 0.0312 +vt 0.8594 0.0156 +vt 0.8594 0.0312 +vt 0.6875 0.5898 +vt 0.6875 0.5664 +vt 0.7188 0.5664 +vt 0.7188 0.5898 +vt 0.7812 0.5898 +vt 0.7812 0.5664 +vt 0.8125 0.5664 +vt 0.8125 0.5898 +vt 0.1406 0.0156 +vt 0.1406 0.0312 +vt 0.6562 0.5898 +vt 0.6562 0.5664 +vt 0.8281 0.0156 +vt 0.8281 0.0312 +vt 0.8438 0.5664 +vt 0.8438 0.5898 +vt 0.1719 0.0156 +vt 0.1719 0.0312 +vt 0.6250 0.5898 +vt 0.6250 0.5664 +vt 0.7969 0.0156 +vt 0.7969 0.0312 +vt 0.5938 0.5898 +vt 0.5938 0.5664 +vt 0.2031 0.0156 +vt 0.2031 0.0312 +vt 0.5312 0.5898 +vt 0.5312 0.5664 +vt 0.5625 0.5664 +vt 0.5625 0.5898 +vt 0.7656 0.0156 +vt 0.7656 0.0312 +vt 0.8750 0.5664 +vt 0.8750 0.5898 +vt 0.2344 0.0156 +vt 0.2344 0.0312 +vt 0.5000 0.5898 +vt 0.5000 0.5664 +vt 0.7344 0.0156 +vt 0.7344 0.0312 +vt 0.9062 0.5664 +vt 0.9062 0.5898 +vt 0.2656 0.0156 +vt 0.2656 0.0312 +vt 0.5312 0.5664 +vt 0.5312 0.5898 +vt 0.4688 0.5898 +vt 0.4688 0.5664 +vt 0.4219 0.0312 +vt 0.3906 0.0312 +vt 0.7031 0.0156 +vt 0.7031 0.0312 +vt 0.9375 0.5664 +vt 0.9375 0.5898 +vt 0.2969 0.0156 +vt 0.2969 0.0312 +vt 0.4375 0.5898 +vt 0.4375 0.5664 +vt 0.6719 0.0156 +vt 0.6719 0.0312 +vt 0.9688 0.5664 +vt 0.9688 0.5898 +vt 0.3281 0.0156 +vt 0.3281 0.0312 +vt 0.4062 0.5898 +vt 0.4062 0.5664 +vt 0.6406 0.0156 +vt 0.6406 0.0312 +vt 0.0000 0.5898 +vt 0.0000 0.5664 +vt 0.0312 0.5664 +vt 0.0312 0.5898 +vt 0.3594 0.0156 +vt 0.3594 0.0312 +vt 1.0000 0.5664 +vt 1.0000 0.5898 +vt 0.6094 0.0156 +vt 0.6094 0.0312 +vt 0.0625 0.5664 +vt 0.0625 0.5898 +vt 0.7500 0.5664 +vt 0.7500 0.5898 +vt 0.3906 0.0156 +vt 0.3750 0.5898 +vt 0.3750 0.5664 +vt 0.5469 0.0312 +vt 0.5781 0.0312 +vt 0.5781 0.0156 +vt 0.0937 0.5664 +vt 0.0938 0.5898 +vt 0.4219 0.0156 +vt 0.3438 0.5898 +vt 0.3438 0.5664 +vt 0.5469 0.0156 +vt 0.0938 0.5664 +vt 0.1250 0.5664 +vt 0.1250 0.5898 +vt 0.4531 0.0156 +vt 0.4531 0.0312 +vt 0.3125 0.5898 +vt 0.3125 0.5664 +vt 0.5156 0.0156 +vt 0.5156 0.0312 +vt 0.1562 0.5664 +vt 0.1562 0.5898 +vt 0.4844 0.0156 +vt 0.4844 0.0312 +vt 0.2812 0.5898 +vt 0.2812 0.5664 +vt 0.2500 0.5898 +vt 0.2500 0.5664 +vt 0.1875 0.5664 +vt 0.1875 0.5898 +vt 0.2188 0.5898 +vt 0.2188 0.5664 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vn -1.0000 -0.0000 0.0000 +vn 1.0000 -0.0000 0.0000 +vn 0.6857 0.2113 -0.6965 +vn -0.6857 0.2113 -0.6965 +vn -0.6857 0.3431 -0.6419 +vn 0.6857 0.3431 -0.6419 +vn 0.6857 0.0713 -0.7244 +vn -0.6857 0.0713 -0.7244 +vn 0.6857 -0.0713 -0.7244 +vn -0.6857 -0.0713 -0.7244 +vn 0.6857 -0.2113 -0.6965 +vn -0.6857 -0.2113 -0.6965 +vn 0.6857 -0.3431 -0.6419 +vn -0.6857 -0.3431 -0.6419 +vn 0.6857 -0.4617 -0.5626 +vn -0.6857 -0.4617 -0.5626 +vn 0.6857 -0.5626 -0.4617 +vn -0.6857 -0.5626 -0.4617 +vn 0.6857 -0.6419 -0.3431 +vn -0.6857 -0.6419 -0.3431 +vn 0.6857 -0.6965 -0.2113 +vn -0.6857 -0.6965 -0.2113 +vn 0.6857 -0.7244 -0.0713 +vn -0.6857 -0.7244 -0.0713 +vn 0.6857 -0.7244 0.0713 +vn -0.6857 -0.7244 0.0713 +vn 0.6857 -0.6965 0.2113 +vn -0.6857 -0.6965 0.2113 +vn 0.6857 -0.6419 0.3431 +vn -0.6857 -0.6419 0.3431 +vn 0.6857 -0.5626 0.4617 +vn -0.6857 -0.5626 0.4617 +vn 0.6857 -0.4617 0.5626 +vn -0.6857 -0.4617 0.5626 +vn 0.6857 -0.3431 0.6419 +vn -0.6857 -0.3431 0.6419 +vn 0.6857 -0.2113 0.6965 +vn -0.6857 -0.2113 0.6965 +vn 0.6857 -0.0713 0.7244 +vn -0.6857 -0.0713 0.7244 +vn 0.6857 0.0713 0.7244 +vn -0.6857 0.0713 0.7244 +vn 0.6857 0.2113 0.6965 +vn -0.6857 0.2113 0.6965 +vn 0.6857 0.4617 0.5626 +vn -0.6857 0.4617 0.5626 +vn -0.6857 0.3431 0.6419 +vn 0.6857 0.3431 0.6419 +vn 0.6857 0.5626 0.4617 +vn -0.6857 0.5626 0.4617 +vn 0.6857 0.6419 0.3431 +vn -0.6857 0.6419 0.3431 +vn 0.6857 0.6965 0.2113 +vn -0.6857 0.6965 0.2113 +vn 0.6857 0.7244 0.0713 +vn -0.6857 0.7244 0.0713 +vn 0.6857 0.6965 -0.2113 +vn -0.6857 0.6965 -0.2113 +vn -0.6857 0.7244 -0.0713 +vn 0.6857 0.7244 -0.0713 +vn 0.6857 0.6419 -0.3431 +vn -0.6857 0.6419 -0.3431 +vn 0.6857 0.5626 -0.4617 +vn -0.6857 0.5626 -0.4617 +vn 0.2147 0.8614 0.4604 +vn 0.1087 0.8767 0.4686 +vn 0.1087 0.9513 0.2886 +vn 0.2147 0.9346 0.2835 +vn 0.2147 0.9720 0.0957 +vn 0.1087 0.9893 0.0974 +vn 0.2147 0.9720 -0.0957 +vn 0.1087 0.9893 -0.0974 +vn 0.2147 0.9346 -0.2835 +vn 0.1087 0.9513 -0.2886 +vn 0.2147 0.8614 -0.4604 +vn 0.1087 0.8767 -0.4686 +vn 0.2147 0.7550 -0.6196 +vn 0.1087 0.7684 -0.6306 +vn 0.1087 0.6306 -0.7684 +vn 0.2147 0.6196 -0.7550 +vn 0.2147 0.4604 -0.8614 +vn 0.1087 0.4686 -0.8767 +vn 0.2147 0.2835 -0.9346 +vn 0.1087 0.2886 -0.9513 +vn 0.2147 0.0957 -0.9720 +vn 0.1087 0.0974 -0.9893 +vn 0.1087 -0.0974 -0.9893 +vn 0.2147 -0.0957 -0.9720 +vn 0.1087 -0.2886 -0.9513 +vn 0.2147 -0.2835 -0.9346 +vn 0.2147 -0.4604 -0.8614 +vn 0.1087 -0.4686 -0.8767 +vn 0.1087 -0.6306 -0.7684 +vn 0.2147 -0.6196 -0.7550 +vn 0.1087 -0.7684 -0.6306 +vn 0.2147 -0.7550 -0.6196 +vn 0.2147 -0.8614 -0.4604 +vn 0.1087 -0.8767 -0.4686 +vn 0.1087 -0.9513 -0.2886 +vn 0.2147 -0.9346 -0.2835 +vn 0.2147 -0.9720 -0.0957 +vn 0.1087 -0.9893 -0.0974 +vn 0.1087 -0.9893 0.0974 +vn 0.2147 -0.9720 0.0957 +vn 0.2147 -0.9346 0.2835 +vn 0.1087 -0.9513 0.2886 +vn 0.1087 -0.8767 0.4686 +vn 0.2147 -0.8614 0.4604 +vn 0.1087 -0.7684 0.6306 +vn 0.2147 -0.7550 0.6196 +vn 0.1087 -0.6306 0.7684 +vn 0.2147 -0.6196 0.7550 +vn 0.1087 -0.4686 0.8767 +vn 0.2147 -0.4604 0.8614 +vn 0.1087 -0.2886 0.9513 +vn 0.2147 -0.2835 0.9346 +vn 0.1087 -0.0974 0.9893 +vn 0.2147 -0.0957 0.9720 +vn 0.2147 0.2835 0.9346 +vn 0.2147 0.0957 0.9720 +vn 0.1087 0.0974 0.9893 +vn 0.1087 0.2886 0.9513 +vn 0.2147 0.6196 0.7550 +vn 0.2147 0.4604 0.8614 +vn 0.1087 0.4686 0.8767 +vn 0.1087 0.6306 0.7684 +vn 0.2147 0.7550 0.6196 +vn 0.1087 0.7684 0.6306 +vn -0.1087 -0.0974 -0.9893 +vn -0.1087 0.0974 -0.9893 +vn -0.2147 0.0957 -0.9720 +vn -0.1087 0.2886 -0.9513 +vn -0.2147 0.2835 -0.9346 +vn -0.2147 -0.0957 -0.9720 +vn -0.2147 -0.2835 -0.9346 +vn -0.1087 -0.2886 -0.9513 +vn -0.1087 0.4686 -0.8767 +vn -0.1087 0.6306 -0.7684 +vn -0.2147 0.4604 -0.8614 +vn -0.2147 -0.4604 -0.8614 +vn -0.1087 -0.4686 -0.8767 +vn -0.2147 0.6196 -0.7550 +vn -0.2147 -0.6196 -0.7550 +vn -0.1087 -0.6306 -0.7684 +vn -0.2147 0.7550 -0.6196 +vn -0.1087 0.7684 -0.6306 +vn -0.2147 -0.7550 -0.6196 +vn -0.1087 -0.7684 -0.6306 +vn -0.2147 0.8614 -0.4604 +vn -0.1087 0.8767 -0.4686 +vn -0.2147 -0.8614 -0.4604 +vn -0.1087 -0.8767 -0.4686 +vn -0.2147 0.9346 -0.2835 +vn -0.1087 0.9513 -0.2886 +vn -0.2147 -0.9346 -0.2835 +vn -0.1087 -0.9513 -0.2886 +vn -0.2147 0.9720 -0.0957 +vn -0.1087 0.9893 -0.0974 +vn -0.2147 -0.9720 -0.0957 +vn -0.1087 -0.9893 -0.0974 +vn -0.2147 0.9720 0.0957 +vn -0.1087 0.9893 0.0974 +vn -0.2147 -0.9720 0.0957 +vn -0.1087 -0.9893 0.0974 +vn -0.6857 0.4617 -0.5626 +vn 0.6857 0.4617 -0.5626 +vn -0.1087 -0.4686 0.8767 +vn -0.1087 -0.6306 0.7684 +vn -0.2147 0.9346 0.2835 +vn -0.1087 0.9513 0.2886 +vn -0.2147 -0.9346 0.2835 +vn -0.1087 -0.9513 0.2886 +vn -0.2147 0.8614 0.4604 +vn -0.1087 0.8767 0.4686 +vn -0.2147 -0.8614 0.4604 +vn -0.1087 -0.8767 0.4686 +vn -0.2147 0.7550 0.6196 +vn -0.1087 0.7684 0.6306 +vn -0.2147 -0.7550 0.6196 +vn -0.1087 -0.7684 0.6306 +vn -0.2147 0.6196 0.7550 +vn -0.1087 0.6306 0.7684 +vn -0.2147 -0.6196 0.7550 +vn -0.1087 0.2886 0.9513 +vn -0.1087 0.4686 0.8767 +vn -0.2147 0.4604 0.8614 +vn -0.2147 -0.4604 0.8614 +vn -0.2147 0.2835 0.9346 +vn -0.2147 -0.2835 0.9346 +vn -0.1087 -0.2886 0.9513 +vn -0.2147 0.0957 0.9720 +vn -0.1087 0.0974 0.9893 +vn -0.2147 -0.0957 0.9720 +vn -0.1087 -0.0974 0.9893 +vn -0.6100 -0.3032 0.7321 +vn 0.0000 -0.3827 0.9239 +vn 0.0000 0.6088 0.7933 +vn -0.6100 0.4824 0.6287 +vn -0.6100 -0.7856 0.1034 +vn 0.0000 -0.9914 0.1305 +vn 0.0000 0.9914 -0.1305 +vn -0.6100 0.7856 -0.1034 +vn 0.0000 0.3827 -0.9239 +vn -0.6100 0.3032 -0.7321 +vn 0.0000 -0.6088 -0.7933 +vn -0.6100 -0.4824 -0.6287 +vn 0.6100 0.3032 -0.7321 +vn 0.6100 0.7856 -0.1034 +vn 0.6100 -0.4824 -0.6287 +vn 0.6100 0.4824 0.6287 +vn 0.6100 -0.3032 0.7321 +vn 0.6100 -0.7856 0.1034 +vn -0.6100 -0.7321 0.3032 +vn 0.0000 -0.9239 0.3827 +vn 0.0000 -0.1305 0.9914 +vn -0.6100 -0.1034 0.7856 +vn -0.6100 -0.6287 -0.4824 +vn 0.0000 -0.7933 -0.6088 +vn 0.0000 0.7933 0.6088 +vn -0.6100 0.6287 0.4824 +vn 0.0000 0.9239 -0.3827 +vn -0.6100 0.7321 -0.3032 +vn 0.0000 0.1305 -0.9914 +vn -0.6100 0.1034 -0.7856 +vn 0.6100 0.7321 -0.3032 +vn 0.6100 0.6287 0.4824 +vn 0.6100 0.1034 -0.7856 +vn 0.6100 -0.1034 0.7856 +vn 0.6100 -0.7321 0.3032 +vn 0.6100 -0.6287 -0.4824 +vn -0.6100 -0.7321 -0.3032 +vn 0.0000 -0.9239 -0.3827 +vn 0.0000 -0.7933 0.6088 +vn -0.6100 -0.6287 0.4824 +vn -0.6100 -0.1034 -0.7856 +vn 0.0000 -0.1305 -0.9914 +vn 0.0000 0.1305 0.9914 +vn -0.6100 0.1034 0.7856 +vn 0.0000 0.9239 0.3827 +vn -0.6100 0.7321 0.3032 +vn 0.0000 0.7933 -0.6088 +vn -0.6100 0.6287 -0.4824 +vn 0.6100 0.7321 0.3032 +vn 0.6100 0.1034 0.7856 +vn 0.6100 0.6287 -0.4824 +vn 0.6100 -0.6287 0.4824 +vn 0.6100 -0.7321 -0.3032 +vn 0.6100 -0.1034 -0.7856 +vn -0.6100 -0.3032 -0.7321 +vn 0.0000 -0.3827 -0.9239 +vn 0.0000 -0.9914 -0.1305 +vn -0.6100 -0.7856 -0.1034 +vn -0.6100 0.4824 -0.6287 +vn 0.0000 0.6088 -0.7933 +vn 0.0000 -0.6088 0.7933 +vn -0.6100 -0.4824 0.6287 +vn 0.0000 0.3827 0.9239 +vn -0.6100 0.3032 0.7321 +vn 0.0000 0.9914 0.1305 +vn -0.6100 0.7856 0.1034 +vn 0.6100 0.3032 0.7321 +vn 0.6100 -0.4824 0.6287 +vn 0.6100 0.7856 0.1034 +vn 0.6100 -0.7856 -0.1034 +vn 0.6100 -0.3032 -0.7321 +vn 0.6100 0.4824 -0.6287 +vn -0.6100 -0.5603 0.5603 +vn 0.0000 -0.7071 0.7071 +vn 0.0000 0.2588 0.9659 +vn -0.6100 0.2051 0.7654 +vn -0.6100 -0.7654 -0.2051 +vn 0.0000 -0.9659 -0.2588 +vn 0.0000 0.9659 0.2588 +vn -0.6100 0.7654 0.2051 +vn 0.0000 0.7071 -0.7071 +vn -0.6100 0.5603 -0.5603 +vn 0.0000 -0.2588 -0.9659 +vn -0.6100 -0.2051 -0.7654 +vn 0.6100 0.5603 -0.5603 +vn 0.6100 0.7654 0.2051 +vn 0.6100 -0.2051 -0.7654 +vn 0.6100 0.2051 0.7654 +vn 0.6100 -0.5603 0.5603 +vn 0.6100 -0.7654 -0.2051 +vn -0.6100 -0.7924 0.0000 +vn 0.0000 -1.0000 0.0000 +vn 0.0000 -0.5000 0.8660 +vn -0.6100 -0.3962 0.6862 +vn -0.6100 -0.3962 -0.6862 +vn 0.0000 -0.5000 -0.8660 +vn 0.0000 0.5000 0.8660 +vn -0.6100 0.3962 0.6862 +vn 0.0000 1.0000 0.0000 +vn -0.6100 0.7924 0.0000 +vn 0.0000 0.5000 -0.8660 +vn -0.6100 0.3962 -0.6862 +vn 0.6100 0.7924 0.0000 +vn 0.6100 0.3962 0.6862 +vn 0.6100 0.3962 -0.6862 +vn 0.6100 -0.3962 0.6862 +vn 0.6100 -0.7924 0.0000 +vn 0.6100 -0.3962 -0.6862 +vn -0.6100 -0.5603 -0.5603 +vn 0.0000 -0.7071 -0.7071 +vn 0.0000 -0.9659 0.2588 +vn -0.6100 -0.7654 0.2051 +vn -0.6100 0.2051 -0.7654 +vn 0.0000 0.2588 -0.9659 +vn 0.0000 -0.2588 0.9659 +vn -0.6100 -0.2051 0.7654 +vn 0.0000 0.7071 0.7071 +vn -0.6100 0.5603 0.5603 +vn 0.0000 0.9659 -0.2588 +vn -0.6100 0.7654 -0.2051 +vn 0.6100 0.5603 0.5603 +vn 0.6100 -0.2051 0.7654 +vn 0.6100 0.7654 -0.2051 +vn 0.6100 -0.7654 0.2051 +vn 0.6100 -0.5603 -0.5603 +vn 0.6100 0.2051 -0.7654 +vn -0.6100 0.0000 -0.7924 +vn 0.0000 0.0000 -1.0000 +vn 0.0000 -0.8660 -0.5000 +vn -0.6100 -0.6862 -0.3962 +vn -0.6100 0.6862 -0.3962 +vn 0.0000 0.8660 -0.5000 +vn 0.0000 -0.8660 0.5000 +vn -0.6100 -0.6862 0.3962 +vn 0.0000 0.0000 1.0000 +vn -0.6100 0.0000 0.7924 +vn 0.0000 0.8660 0.5000 +vn -0.6100 0.6862 0.3962 +vn 0.6100 0.0000 0.7924 +vn 0.6100 -0.6862 0.3962 +vn 0.6100 0.6862 0.3962 +vn 0.6100 -0.6862 -0.3962 +vn 0.6100 0.0000 -0.7924 +vn 0.6100 0.6862 -0.3962 +g Pipe_Cylinder.002_None +s off +f 129/1/1 132/2/1 133/3/1 134/4/1 135/5/1 136/6/1 +f 141/7/2 144/8/2 145/9/2 146/10/2 147/11/2 148/12/2 +f 153/13/1 156/14/1 157/15/1 158/16/1 159/17/1 160/18/1 +f 165/19/2 168/20/2 169/21/2 170/22/2 171/23/2 172/24/2 +f 177/25/1 180/26/1 181/27/1 182/28/1 183/29/1 184/30/1 +f 189/31/2 192/32/2 193/33/2 194/34/2 195/35/2 196/36/2 +f 201/37/1 204/38/1 205/39/1 206/40/1 207/41/1 208/42/1 +f 213/43/2 216/44/2 217/45/2 218/46/2 219/47/2 220/48/2 +f 225/49/1 228/50/1 229/51/1 230/52/1 231/53/1 232/54/1 +f 237/55/2 240/56/2 241/57/2 242/58/2 243/59/2 244/60/2 +f 249/61/1 252/62/1 253/63/1 254/64/1 255/65/1 256/66/1 +f 261/67/2 264/68/2 265/69/2 266/70/2 267/71/2 268/72/2 +f 273/73/1 276/74/1 277/75/1 278/76/1 279/77/1 280/78/1 +f 285/79/2 288/80/2 289/81/2 290/82/2 291/83/2 292/84/2 +f 297/85/1 300/86/1 301/87/1 302/88/1 303/89/1 304/90/1 +f 309/91/2 312/92/2 313/93/2 314/94/2 315/95/2 316/96/2 +f 353/97/2 354/98/2 384/99/2 383/100/2 381/101/2 382/102/2 380/103/2 379/104/2 378/105/2 377/106/2 375/107/2 376/108/2 374/109/2 373/110/2 372/111/2 371/112/2 370/113/2 369/114/2 368/115/2 367/116/2 366/117/2 365/118/2 364/119/2 363/120/2 362/121/2 361/122/2 360/123/2 359/124/2 358/125/2 357/126/2 356/127/2 355/128/2 +f 332/129/1 349/130/1 333/131/1 334/132/1 335/133/1 336/134/1 337/135/1 350/136/1 338/137/1 339/138/1 340/139/1 351/140/1 341/141/1 352/142/1 342/143/1 343/144/1 344/145/1 345/146/1 346/147/1 321/148/1 322/149/1 323/150/1 324/151/1 325/152/1 326/153/1 327/154/1 328/155/1 329/156/1 347/157/1 330/158/1 348/159/1 331/160/1 +f 389/161/1 399/162/1 404/163/1 408/164/1 412/165/1 417/166/1 416/167/1 421/168/1 425/169/1 429/170/1 433/171/1 438/172/1 447/173/1 448/174/1 446/175/1 440/176/1 435/177/1 431/178/1 427/179/1 423/180/1 419/181/1 414/182/1 410/183/1 406/184/1 401/185/1 397/186/1 390/187/1 391/188/1 388/189/1 385/190/1 386/191/1 387/192/1 +f 393/193/2 392/194/2 398/195/2 403/196/2 402/197/2 407/198/2 411/199/2 415/200/2 420/201/2 424/202/2 428/203/2 432/204/2 436/205/2 441/206/2 437/207/2 443/208/2 442/209/2 444/210/2 445/211/2 439/212/2 434/213/2 430/214/2 426/215/2 422/216/2 418/217/2 413/218/2 409/219/2 405/220/2 400/221/2 396/222/2 395/223/2 394/224/2 +f 449/225/1 452/226/1 453/227/1 454/228/1 455/229/1 456/230/1 +f 461/231/2 464/232/2 465/233/2 466/234/2 467/235/2 468/236/2 +f 473/237/1 476/238/1 477/239/1 478/240/1 479/241/1 480/242/1 +f 485/243/2 488/244/2 489/245/2 490/246/2 491/247/2 492/248/2 +f 497/249/1 500/250/1 501/251/1 502/252/1 503/253/1 504/254/1 +f 509/255/2 512/256/2 513/257/2 514/258/2 515/259/2 516/260/2 +f 521/261/1 524/262/1 525/263/1 526/264/1 527/265/1 528/266/1 +f 533/267/2 536/268/2 537/269/2 538/270/2 539/271/2 540/272/2 +f 545/273/1 548/274/1 549/275/1 550/276/1 551/277/1 552/278/1 +f 557/279/2 560/280/2 561/281/2 562/282/2 563/283/2 564/284/2 +f 569/285/1 572/286/1 573/287/1 574/288/1 575/289/1 576/290/1 +f 581/291/2 584/292/2 585/293/2 586/294/2 587/295/2 588/296/2 +f 593/297/1 596/298/1 597/299/1 598/300/1 599/301/1 600/302/1 +f 605/303/2 608/304/2 609/305/2 610/306/2 611/307/2 612/308/2 +f 617/309/1 620/310/1 621/311/1 622/312/1 623/313/1 624/314/1 +f 629/315/2 632/316/2 633/317/2 634/318/2 635/319/2 636/320/2 +s 1 +f 356/321/3 323/322/4 322/323/5 355/324/6 +f 357/325/7 324/326/8 323/322/4 356/321/3 +f 358/327/9 325/328/10 324/326/8 357/325/7 +f 359/329/11 326/330/12 325/328/10 358/327/9 +f 360/331/13 327/332/14 326/330/12 359/329/11 +f 361/333/15 328/334/16 327/332/14 360/331/13 +f 362/335/17 329/336/18 328/334/16 361/333/15 +f 363/337/19 347/338/20 329/336/18 362/335/17 +f 364/339/21 330/340/22 347/338/20 363/337/19 +f 365/341/23 348/342/24 330/340/22 364/339/21 +f 366/343/25 331/344/26 348/342/24 365/341/23 +f 367/345/27 332/346/28 331/344/26 366/343/25 +f 368/347/29 349/348/30 332/346/28 367/345/27 +f 369/349/31 333/350/32 349/351/30 368/347/29 +f 370/352/33 334/353/34 333/350/32 369/349/31 +f 371/354/35 335/355/36 334/353/34 370/352/33 +f 372/356/37 336/357/38 335/358/36 371/359/35 +f 373/360/39 337/361/40 336/357/38 372/356/37 +f 374/362/41 350/363/42 337/361/40 373/360/39 +f 376/364/43 338/365/44 350/363/42 374/362/41 +f 377/366/45 340/367/46 339/368/47 375/369/48 +f 375/369/48 339/368/47 338/365/44 376/364/43 +f 378/370/49 351/371/50 340/367/46 377/366/45 +f 379/372/51 341/373/52 351/371/50 378/370/49 +f 380/374/53 352/375/54 341/373/52 379/372/51 +f 382/376/55 342/377/56 352/375/54 380/374/53 +f 383/378/57 344/379/58 343/380/59 381/381/60 +f 381/381/60 343/380/59 342/377/56 382/376/55 +f 384/382/61 345/383/62 344/379/58 383/378/57 +f 354/384/63 346/385/64 345/383/62 384/382/61 +f 30/386/65 33/387/66 34/388/67 1/389/68 +f 2/390/69 1/389/68 34/388/67 35/391/70 +f 3/392/71 2/390/69 35/391/70 36/393/72 +f 4/394/73 3/392/71 36/393/72 37/395/74 +f 5/396/75 4/394/73 37/395/74 38/397/76 +f 6/398/77 5/396/75 38/397/76 39/399/78 +f 6/398/77 39/399/78 40/400/79 7/401/80 +f 8/402/81 7/401/80 40/400/79 41/403/82 +f 9/404/83 8/402/81 41/403/82 42/405/84 +f 10/406/85 9/404/83 42/405/84 43/407/86 +f 10/406/85 43/407/86 44/408/87 11/409/88 +f 11/410/88 44/411/87 45/412/89 31/413/90 +f 12/414/91 46/415/92 47/416/93 13/417/94 +f 31/413/90 45/412/89 46/415/92 12/414/91 +f 13/417/94 47/416/93 48/418/95 14/419/96 +f 15/420/97 14/419/96 48/418/95 49/421/98 +f 15/420/97 49/421/98 50/422/99 16/423/100 +f 17/424/101 16/423/100 50/422/99 51/425/102 +f 17/424/101 51/425/102 52/426/103 18/427/104 +f 19/428/105 18/427/104 52/426/103 53/429/106 +f 19/428/105 53/429/106 54/430/107 20/431/108 +f 20/431/108 54/430/107 55/432/109 22/433/110 +f 22/433/110 55/432/109 56/434/111 21/435/112 +f 21/435/112 56/434/111 57/436/113 23/437/114 +f 23/437/114 57/436/113 58/438/115 24/439/116 +f 24/439/116 58/438/115 59/440/117 32/441/118 +f 27/442/119 25/443/120 60/444/121 61/445/122 +f 25/443/120 32/441/118 59/440/117 60/444/121 +f 28/446/123 26/447/124 62/448/125 63/449/126 +f 27/442/119 61/445/122 62/448/125 26/447/124 +f 29/450/127 28/446/123 63/449/126 64/451/128 +f 29/450/127 64/451/128 33/387/66 30/386/65 +f 67/452/129 44/408/87 43/407/86 66/453/130 +f 70/454/131 66/453/130 65/455/132 71/456/133 +f 72/457/134 67/452/129 66/453/130 70/454/131 +f 74/458/135 68/459/136 67/460/129 72/461/134 +f 69/462/137 41/403/82 40/400/79 75/463/138 +f 71/456/133 65/455/132 69/462/137 76/464/139 +f 78/465/140 73/466/141 68/459/136 74/458/135 +f 80/467/142 76/464/139 69/462/137 75/463/138 +f 82/468/143 77/469/144 73/466/141 78/465/140 +f 84/470/145 80/467/142 75/463/138 79/471/146 +f 388/472/18 392/473/17 393/474/19 385/475/20 +f 387/476/24 395/477/23 396/478/25 389/479/26 +f 86/480/147 81/481/148 77/469/144 82/468/143 +f 391/482/16 398/483/15 392/473/17 388/472/18 +f 88/484/149 84/470/145 79/471/146 83/485/150 +f 389/479/26 396/478/25 400/486/27 399/487/28 +f 90/488/151 85/489/152 81/481/148 86/480/147 +f 390/490/14 403/491/13 398/483/15 391/482/16 +f 92/492/153 88/484/149 83/485/150 87/493/154 +f 397/494/12 402/495/11 403/491/13 390/490/14 +f 94/496/155 89/497/156 85/489/152 90/488/151 +f 406/498/8 411/499/7 407/500/9 401/501/10 +f 96/502/157 92/492/153 87/493/154 91/503/158 +f 399/487/28 400/486/27 405/504/29 404/505/30 +f 98/506/159 93/507/160 89/497/156 94/496/155 +f 410/508/4 415/509/3 411/499/7 406/498/8 +f 100/510/161 96/502/157 91/503/158 95/511/162 +f 404/505/30 405/504/29 409/512/31 408/513/32 +f 102/514/163 97/515/164 93/507/160 98/506/159 +f 355/324/6 322/323/5 321/516/165 353/517/166 +f 414/518/5 420/519/6 415/509/3 410/508/4 +f 36/393/72 91/503/158 87/493/154 37/395/74 +f 117/520/167 57/436/113 56/434/111 113/521/168 +f 104/522/169 100/510/161 95/511/162 99/523/170 +f 408/513/32 409/512/31 413/524/33 412/525/34 +f 106/526/171 101/527/172 97/515/164 102/514/163 +f 419/528/165 424/529/166 420/519/6 414/518/5 +f 108/530/173 104/522/169 99/523/170 103/531/174 +f 412/525/34 413/524/33 418/532/35 417/533/36 +f 110/534/175 105/535/176 101/527/172 106/526/171 +f 423/536/64 428/537/63 424/529/166 419/528/165 +f 112/538/177 108/530/173 103/531/174 107/539/178 +f 416/540/38 422/541/37 426/542/39 421/543/40 +f 110/534/175 114/544/179 109/545/180 105/535/176 +f 417/533/36 418/532/35 422/546/37 416/547/38 +f 116/548/181 112/538/177 107/539/178 111/549/182 +f 421/543/40 426/542/39 430/550/41 425/551/42 +f 385/475/20 393/474/19 394/552/21 386/553/22 +f 118/554/183 113/521/168 109/545/180 114/544/179 +f 427/555/62 432/556/61 428/537/63 423/536/64 +f 61/445/122 119/557/184 115/558/185 62/448/125 +f 120/559/186 116/548/181 111/549/182 115/558/185 +f 425/551/42 430/550/41 434/560/43 429/561/44 +f 118/554/183 122/562/187 117/520/167 113/521/168 +f 431/563/58 436/564/57 432/556/61 427/555/62 +f 124/565/188 120/559/186 115/558/185 119/557/184 +f 429/561/44 434/566/43 439/567/48 433/568/47 +f 122/562/187 126/569/189 121/570/190 117/520/167 +f 435/571/59 441/572/60 436/564/57 431/563/58 +f 401/501/10 407/500/9 402/495/11 397/494/12 +f 127/573/191 124/565/188 119/557/184 123/574/192 +f 433/568/47 439/567/48 445/575/45 438/576/46 +f 126/569/189 128/577/193 125/578/194 121/570/190 +f 440/579/56 437/580/55 441/572/60 435/571/59 +f 128/577/193 127/573/191 123/574/192 125/578/194 +f 386/553/22 394/552/21 395/477/23 387/476/24 +f 446/581/54 443/582/53 437/580/55 440/579/56 +f 438/576/46 445/575/45 444/583/49 447/584/50 +f 448/585/52 442/586/51 443/582/53 446/581/54 +f 447/584/50 444/583/49 442/586/51 448/585/52 +f 129/587/195 130/588/196 131/589/197 132/590/198 +f 136/591/199 137/592/200 130/588/196 129/587/195 +f 132/590/198 131/589/197 138/593/201 133/594/202 +f 133/594/202 138/593/201 139/595/203 134/596/204 +f 134/597/204 139/598/203 140/599/205 135/600/206 +f 135/600/206 140/599/205 137/592/200 136/591/199 +f 141/601/207 142/602/203 143/603/201 144/604/208 +f 148/605/209 149/606/205 142/602/203 141/601/207 +f 144/604/208 143/603/201 150/607/197 145/608/210 +f 145/608/210 150/607/197 151/609/196 146/610/211 +f 146/611/211 151/612/196 152/613/200 147/614/212 +f 147/614/212 152/613/200 149/606/205 148/605/209 +f 153/615/213 154/616/214 155/617/215 156/618/216 +f 160/619/217 161/620/218 154/616/214 153/615/213 +f 156/618/216 155/617/215 162/621/219 157/622/220 +f 157/622/220 162/621/219 163/623/221 158/624/222 +f 158/625/222 163/626/221 164/627/223 159/628/224 +f 159/628/224 164/627/223 161/620/218 160/619/217 +f 165/629/225 166/630/221 167/631/219 168/632/226 +f 172/633/227 173/634/223 166/630/221 165/629/225 +f 168/632/226 167/631/219 174/635/215 169/636/228 +f 169/636/228 174/635/215 175/637/214 170/638/229 +f 170/639/229 175/640/214 176/641/218 171/642/230 +f 171/642/230 176/641/218 173/634/223 172/633/227 +f 177/643/231 178/644/232 179/645/233 180/646/234 +f 184/647/235 185/648/236 178/644/232 177/643/231 +f 180/646/234 179/645/233 186/649/237 181/650/238 +f 181/650/238 186/649/237 187/651/239 182/652/240 +f 182/653/240 187/654/239 188/655/241 183/656/242 +f 183/656/242 188/655/241 185/648/236 184/647/235 +f 189/657/243 190/658/239 191/659/237 192/660/244 +f 196/661/245 197/662/241 190/658/239 189/657/243 +f 192/660/244 191/659/237 198/663/233 193/664/246 +f 193/664/246 198/663/233 199/665/232 194/666/247 +f 194/667/247 199/668/232 200/669/236 195/670/248 +f 195/670/248 200/669/236 197/662/241 196/661/245 +f 201/671/249 202/672/250 203/673/251 204/674/252 +f 208/675/253 209/676/254 202/672/250 201/671/249 +f 204/674/252 203/673/251 210/677/255 205/678/256 +f 205/678/256 210/677/255 211/679/257 206/680/258 +f 206/681/258 211/682/257 212/683/259 207/684/260 +f 207/684/260 212/683/259 209/676/254 208/675/253 +f 213/685/261 214/686/257 215/687/255 216/688/262 +f 220/689/263 221/690/259 214/686/257 213/685/261 +f 216/688/262 215/687/255 222/691/251 217/692/264 +f 217/692/264 222/691/251 223/693/250 218/694/265 +f 218/695/265 223/696/250 224/697/254 219/698/266 +f 219/698/266 224/697/254 221/690/259 220/689/263 +f 225/699/204 226/700/203 227/701/205 228/702/206 +f 232/703/202 233/704/201 226/700/203 225/699/204 +f 228/702/206 227/701/205 234/705/200 229/706/199 +f 229/706/199 234/705/200 235/707/196 230/708/195 +f 230/709/195 235/710/196 236/711/197 231/712/198 +f 231/712/198 236/711/197 233/704/201 232/703/202 +f 237/713/211 238/714/196 239/715/200 240/716/212 +f 244/717/210 245/718/197 238/714/196 237/713/211 +f 240/716/212 239/715/200 246/719/205 241/720/209 +f 241/720/209 246/719/205 247/721/203 242/722/207 +f 242/723/207 247/724/203 248/725/201 243/726/208 +f 243/726/208 248/725/201 245/718/197 244/717/210 +f 249/727/222 250/728/221 251/729/223 252/730/224 +f 256/731/220 257/732/219 250/728/221 249/727/222 +f 252/730/224 251/729/223 258/733/218 253/734/217 +f 253/734/217 258/733/218 259/735/214 254/736/213 +f 254/737/213 259/738/214 260/739/215 255/740/216 +f 255/740/216 260/739/215 257/732/219 256/731/220 +f 261/741/229 262/742/214 263/743/218 264/744/230 +f 268/745/228 269/746/215 262/742/214 261/741/229 +f 264/744/230 263/743/218 270/747/223 265/748/227 +f 265/748/227 270/747/223 271/749/221 266/750/225 +f 266/751/225 271/752/221 272/753/219 267/754/226 +f 267/754/226 272/753/219 269/746/215 268/745/228 +f 273/755/240 274/756/239 275/757/241 276/758/242 +f 280/759/238 281/760/237 274/756/239 273/755/240 +f 276/758/242 275/757/241 282/761/236 277/762/235 +f 277/762/235 282/761/236 283/763/232 278/764/231 +f 278/765/231 283/766/232 284/767/233 279/768/234 +f 279/768/234 284/767/233 281/760/237 280/759/238 +f 285/769/247 286/770/232 287/771/236 288/772/248 +f 292/773/246 293/774/233 286/770/232 285/769/247 +f 288/772/248 287/771/236 294/775/241 289/776/245 +f 289/776/245 294/775/241 295/777/239 290/778/243 +f 290/779/243 295/780/239 296/781/237 291/782/244 +f 291/782/244 296/781/237 293/774/233 292/773/246 +f 297/783/258 298/784/257 299/785/259 300/786/260 +f 304/787/256 305/788/255 298/784/257 297/783/258 +f 300/786/260 299/785/259 306/789/254 301/790/253 +f 301/790/253 306/789/254 307/791/250 302/792/249 +f 302/793/249 307/794/250 308/795/251 303/796/252 +f 303/796/252 308/795/251 305/788/255 304/787/256 +f 309/797/265 310/798/250 311/799/254 312/800/266 +f 316/801/264 317/802/251 310/798/250 309/797/265 +f 312/800/266 311/799/254 318/803/259 313/804/263 +f 313/804/263 318/803/259 319/805/257 314/806/261 +f 314/807/261 319/808/257 320/809/255 315/810/262 +f 315/810/262 320/809/255 317/802/251 316/801/264 +f 54/430/107 53/429/106 101/527/172 105/535/176 +f 64/451/128 107/539/178 103/531/174 33/387/66 +f 125/578/194 59/440/117 58/438/115 121/570/190 +f 65/455/132 42/405/84 41/403/82 69/462/137 +f 62/448/125 115/558/185 111/549/182 63/449/126 +f 89/497/156 93/507/160 51/425/102 50/422/99 +f 38/397/76 37/395/74 87/493/154 83/485/150 +f 121/570/190 58/438/115 57/436/113 117/520/167 +f 61/445/122 60/444/121 123/574/192 119/557/184 +f 64/451/128 63/449/126 111/549/182 107/539/178 +f 125/578/194 123/574/192 60/444/121 59/440/117 +f 39/399/78 79/471/146 75/463/138 40/400/79 +f 35/391/70 34/388/67 99/523/170 95/511/162 +f 55/432/109 109/545/180 113/521/168 56/434/111 +f 55/432/109 54/430/107 105/535/176 109/545/180 +f 49/421/98 48/418/95 81/481/148 85/489/152 +f 353/517/166 321/516/165 346/385/64 354/384/63 +f 36/393/72 35/391/70 95/511/162 91/503/158 +f 43/407/86 42/405/84 65/455/132 66/453/130 +f 45/412/89 68/459/136 73/466/141 46/415/92 +f 46/415/92 73/466/141 77/469/144 47/416/93 +f 44/411/87 67/460/129 68/459/136 45/412/89 +f 52/426/103 97/515/164 101/527/172 53/429/106 +f 34/388/67 33/387/66 103/531/174 99/523/170 +f 89/497/156 50/422/99 49/421/98 85/489/152 +f 449/811/267 450/812/268 451/813/269 452/814/270 +f 456/815/271 457/816/272 450/812/268 449/811/267 +f 452/814/270 451/813/269 458/817/273 453/818/274 +f 453/818/274 458/817/273 459/819/275 454/820/276 +f 454/821/276 459/822/275 460/823/277 455/824/278 +f 455/824/278 460/823/277 457/816/272 456/815/271 +f 461/825/279 462/826/275 463/827/273 464/828/280 +f 468/829/281 469/830/277 462/826/275 461/825/279 +f 464/828/280 463/827/273 470/831/269 465/832/282 +f 465/832/282 470/831/269 471/833/268 466/834/283 +f 466/835/283 471/836/268 472/837/272 467/838/284 +f 467/838/284 472/837/272 469/830/277 468/829/281 +f 473/839/285 474/840/286 475/841/287 476/842/288 +f 480/843/289 481/844/290 474/840/286 473/839/285 +f 476/842/288 475/841/287 482/845/291 477/846/292 +f 477/846/292 482/845/291 483/847/293 478/848/294 +f 478/849/294 483/850/293 484/851/295 479/852/296 +f 479/852/296 484/851/295 481/844/290 480/843/289 +f 485/853/297 486/854/293 487/855/291 488/856/298 +f 492/857/299 493/858/295 486/854/293 485/853/297 +f 488/856/298 487/855/291 494/859/287 489/860/300 +f 489/860/300 494/859/287 495/861/286 490/862/301 +f 490/863/301 495/864/286 496/865/290 491/866/302 +f 491/866/302 496/865/290 493/858/295 492/857/299 +f 497/867/303 498/868/304 499/869/305 500/870/306 +f 504/871/307 505/872/308 498/868/304 497/867/303 +f 500/870/306 499/869/305 506/873/309 501/874/310 +f 501/874/310 506/873/309 507/875/311 502/876/312 +f 502/877/312 507/878/311 508/879/313 503/880/314 +f 503/880/314 508/879/313 505/872/308 504/871/307 +f 509/881/315 510/882/311 511/883/309 512/884/316 +f 516/885/317 517/886/313 510/882/311 509/881/315 +f 512/884/316 511/883/309 518/887/305 513/888/318 +f 513/888/318 518/887/305 519/889/304 514/890/319 +f 514/891/319 519/892/304 520/893/308 515/894/320 +f 515/894/320 520/893/308 517/886/313 516/885/317 +f 521/895/321 522/896/322 523/897/323 524/898/324 +f 528/899/325 529/900/326 522/896/322 521/895/321 +f 524/898/324 523/897/323 530/901/327 525/902/328 +f 525/902/328 530/901/327 531/903/329 526/904/330 +f 526/905/330 531/906/329 532/907/331 527/908/332 +f 527/908/332 532/907/331 529/900/326 528/899/325 +f 533/909/333 534/910/329 535/911/327 536/912/334 +f 540/913/335 541/914/331 534/910/329 533/909/333 +f 536/912/334 535/911/327 542/915/323 537/916/336 +f 537/916/336 542/915/323 543/917/322 538/918/337 +f 538/919/337 543/920/322 544/921/326 539/922/338 +f 539/922/338 544/921/326 541/914/331 540/913/335 +f 545/923/276 546/924/275 547/925/277 548/926/278 +f 552/927/274 553/928/273 546/924/275 545/923/276 +f 548/926/278 547/925/277 554/929/272 549/930/271 +f 549/930/271 554/929/272 555/931/268 550/932/267 +f 550/933/267 555/934/268 556/935/269 551/936/270 +f 551/936/270 556/935/269 553/928/273 552/927/274 +f 557/937/283 558/938/268 559/939/272 560/940/284 +f 564/941/282 565/942/269 558/938/268 557/937/283 +f 560/940/284 559/939/272 566/943/277 561/944/281 +f 561/944/281 566/943/277 567/945/275 562/946/279 +f 562/947/279 567/948/275 568/949/273 563/950/280 +f 563/950/280 568/949/273 565/942/269 564/941/282 +f 569/951/294 570/952/293 571/953/295 572/954/296 +f 576/955/292 577/956/291 570/952/293 569/951/294 +f 572/954/296 571/953/295 578/957/290 573/958/289 +f 573/958/289 578/957/290 579/959/286 574/960/285 +f 574/961/285 579/962/286 580/963/287 575/964/288 +f 575/964/288 580/963/287 577/956/291 576/955/292 +f 581/965/301 582/966/286 583/967/290 584/968/302 +f 588/969/300 589/970/287 582/966/286 581/965/301 +f 584/968/302 583/967/290 590/971/295 585/972/299 +f 585/972/299 590/971/295 591/973/293 586/974/297 +f 586/975/297 591/976/293 592/977/291 587/978/298 +f 587/978/298 592/977/291 589/970/287 588/969/300 +f 593/979/312 594/980/311 595/981/313 596/982/314 +f 600/983/310 601/984/309 594/980/311 593/979/312 +f 596/982/314 595/981/313 602/985/308 597/986/307 +f 597/986/307 602/985/308 603/987/304 598/988/303 +f 598/989/303 603/990/304 604/991/305 599/992/306 +f 599/992/306 604/991/305 601/984/309 600/983/310 +f 605/993/319 606/994/304 607/995/308 608/996/320 +f 612/997/318 613/998/305 606/994/304 605/993/319 +f 608/996/320 607/995/308 614/999/313 609/1000/317 +f 609/1000/317 614/999/313 615/1001/311 610/1002/315 +f 610/1003/315 615/1004/311 616/1005/309 611/1006/316 +f 611/1006/316 616/1005/309 613/998/305 612/997/318 +f 617/1007/330 618/1008/329 619/1009/331 620/1010/332 +f 624/1011/328 625/1012/327 618/1008/329 617/1007/330 +f 620/1010/332 619/1009/331 626/1013/326 621/1014/325 +f 621/1014/325 626/1013/326 627/1015/322 622/1016/321 +f 622/1017/321 627/1018/322 628/1019/323 623/1020/324 +f 623/1020/324 628/1019/323 625/1012/327 624/1011/328 +f 629/1021/337 630/1022/322 631/1023/326 632/1024/338 +f 636/1025/336 637/1026/323 630/1022/322 629/1021/337 +f 632/1024/338 631/1023/326 638/1027/331 633/1028/335 +f 633/1028/335 638/1027/331 639/1029/329 634/1030/333 +f 634/1031/333 639/1032/329 640/1033/327 635/1034/334 +f 635/1034/334 640/1033/327 637/1026/323 636/1025/336 +f 38/397/76 83/485/150 79/471/146 39/399/78 +f 81/481/148 48/418/95 47/416/93 77/469/144 +f 51/425/102 93/507/160 97/515/164 52/426/103 diff --git a/mods/pipeworks/models/pipeworks_pipe_3_lowpoly.obj b/mods/pipeworks/models/pipeworks_pipe_3_lowpoly.obj new file mode 100644 index 00000000..0d9bda41 --- /dev/null +++ b/mods/pipeworks/models/pipeworks_pipe_3_lowpoly.obj @@ -0,0 +1,194 @@ +# Blender v2.78 (sub 0) OBJ File: 'pipe-master-lowpoly.blend' +# www.blender.org +o Cylinder.000 +v 0.500000 -0.064721 0.156250 +v 0.468750 -0.064721 0.156250 +v 0.500000 -0.156250 0.064721 +v 0.468750 -0.156250 0.064721 +v 0.500000 -0.156250 -0.064721 +v 0.468750 -0.156250 -0.064721 +v 0.500000 -0.064721 -0.156250 +v 0.468750 -0.064721 -0.156250 +v 0.500000 0.064721 -0.156250 +v 0.468750 0.064721 -0.156250 +v 0.500000 0.156250 -0.064721 +v 0.468750 0.156250 -0.064721 +v 0.500000 0.156250 0.064721 +v 0.468750 0.156250 0.064721 +v 0.500000 0.064721 0.156250 +v 0.468750 0.064721 0.156250 +v 0.468750 -0.051777 0.125000 +v -0.468750 -0.051777 0.125000 +v 0.468750 -0.125000 0.051777 +v -0.468750 -0.125000 0.051777 +v 0.468750 -0.125000 -0.051777 +v -0.468750 -0.125000 -0.051777 +v 0.468750 -0.051777 -0.125000 +v -0.468750 -0.051777 -0.125000 +v 0.468750 0.051777 -0.125000 +v -0.468750 0.051777 -0.125000 +v 0.468750 0.125000 -0.051777 +v -0.468750 0.125000 -0.051777 +v 0.468750 0.125000 0.051777 +v -0.468750 0.125000 0.051777 +v 0.468750 0.051777 0.125000 +v -0.468750 0.051777 0.125000 +v -0.468750 -0.064721 0.156250 +v -0.500000 -0.064721 0.156250 +v -0.468750 -0.156250 0.064721 +v -0.500000 -0.156250 0.064721 +v -0.468750 -0.156250 -0.064721 +v -0.500000 -0.156250 -0.064721 +v -0.468750 -0.064721 -0.156250 +v -0.500000 -0.064721 -0.156250 +v -0.468750 0.064721 -0.156250 +v -0.500000 0.064721 -0.156250 +v -0.468750 0.156250 -0.064721 +v -0.500000 0.156250 -0.064721 +v -0.468750 0.156250 0.064721 +v -0.500000 0.156250 0.064721 +v -0.468750 0.064721 0.156250 +v -0.500000 0.064721 0.156250 +vt 0.7188 0.8906 +vt 0.6250 0.9844 +vt 0.5000 0.9844 +vt 0.4062 0.8906 +vt 0.4062 0.7656 +vt 0.5000 0.6719 +vt 0.6250 0.6719 +vt 0.7188 0.7656 +vt 0.2500 0.9844 +vt 0.3438 0.8906 +vt 0.3438 0.7656 +vt 0.2500 0.6719 +vt 0.1250 0.6719 +vt 0.0312 0.7656 +vt 0.0312 0.8906 +vt 0.1250 0.9844 +vt 0.3438 0.8906 +vt 0.2500 0.9844 +vt 0.1250 0.9844 +vt 0.0312 0.8906 +vt 0.0312 0.7656 +vt 0.1250 0.6719 +vt 0.2500 0.6719 +vt 0.3438 0.7656 +vt 0.6250 0.9844 +vt 0.7188 0.8906 +vt 0.7188 0.7656 +vt 0.6250 0.6719 +vt 0.5000 0.6719 +vt 0.4062 0.7656 +vt 0.4062 0.8906 +vt 0.5000 0.9844 +vt 0.8125 0.5938 +vt 0.8125 0.5625 +vt 0.8750 0.5625 +vt 0.8750 0.5938 +vt 0.9375 0.5625 +vt 0.9375 0.5938 +vt 1.0000 0.5625 +vt 1.0000 0.5938 +vt 0.5000 0.5938 +vt 0.5000 0.5625 +vt 0.5625 0.5625 +vt 0.5625 0.5938 +vt 0.6250 0.5625 +vt 0.6250 0.5938 +vt 0.6875 0.5625 +vt 0.6875 0.5938 +vt 0.7500 0.5625 +vt 0.7500 0.5938 +vt 0.3750 0.5938 +vt 0.3750 0.5625 +vt 0.4375 0.5625 +vt 0.4375 0.5938 +vt 0.3125 0.5938 +vt 0.3125 0.5625 +vt 0.5000 0.5625 +vt 0.5000 0.5938 +vt 0.0000 0.5938 +vt 0.0000 0.5625 +vt 0.0625 0.5625 +vt 0.0625 0.5938 +vt 0.1250 0.5625 +vt 0.1250 0.5938 +vt 0.1875 0.5625 +vt 0.1875 0.5938 +vt 0.2500 0.5625 +vt 0.2500 0.5938 +vt 1.0625 0.5156 +vt 0.9375 0.5156 +vt 0.9375 0.0156 +vt 1.0625 0.0156 +vt 0.6875 0.5156 +vt 0.5625 0.5156 +vt 0.5625 0.0156 +vt 0.6875 0.0156 +vt 0.8125 0.5156 +vt 0.8125 0.0156 +vt 0.0625 0.5156 +vt 0.0625 0.0156 +vt 0.1875 0.0156 +vt 0.1875 0.5156 +vt 0.3125 0.0156 +vt 0.4375 0.0156 +vt 0.4375 0.5156 +vt 0.3125 0.5156 +vn -1.0000 0.0000 0.0000 +vn 1.0000 0.0000 -0.0000 +vn 0.6302 -0.2971 0.7173 +vn -0.6302 -0.2971 0.7173 +vn -0.6302 -0.7173 0.2971 +vn 0.6302 -0.7173 0.2971 +vn -0.6302 -0.7173 -0.2971 +vn 0.6302 -0.7173 -0.2971 +vn -0.6302 -0.2971 -0.7173 +vn 0.6302 -0.2971 -0.7173 +vn -0.6302 0.2971 -0.7173 +vn 0.6302 0.2971 -0.7173 +vn -0.6302 0.7173 -0.2971 +vn 0.6302 0.7173 -0.2971 +vn -0.6302 0.7173 0.2971 +vn 0.6302 0.7173 0.2971 +vn -0.6302 0.2971 0.7173 +vn 0.6302 0.2971 0.7173 +vn 0.0000 -0.3827 -0.9239 +vn 0.0000 0.3827 -0.9239 +vn 0.0000 0.9239 0.3827 +vn 0.0000 0.3827 0.9239 +vn 0.0000 0.9239 -0.3827 +vn 0.0000 -0.9239 -0.3827 +vn 0.0000 -0.9239 0.3827 +vn 0.0000 -0.3827 0.9239 +g Cylinder.000_Cylinder.000_None +s off +f 4/1/1 2/2/1 16/3/1 14/4/1 12/5/1 10/6/1 8/7/1 6/8/1 +f 1/9/2 3/10/2 5/11/2 7/12/2 9/13/2 11/14/2 13/15/2 15/16/2 +f 36/17/1 34/18/1 48/19/1 46/20/1 44/21/1 42/22/1 40/23/1 38/24/1 +f 33/25/2 35/26/2 37/27/2 39/28/2 41/29/2 43/30/2 45/31/2 47/32/2 +s 1 +f 1/33/3 2/34/4 4/35/5 3/36/6 +f 3/36/6 4/35/5 6/37/7 5/38/8 +f 5/38/8 6/37/7 8/39/9 7/40/10 +f 7/41/10 8/42/9 10/43/11 9/44/12 +f 9/44/12 10/43/11 12/45/13 11/46/14 +f 11/46/14 12/45/13 14/47/15 13/48/16 +f 13/48/16 14/47/15 16/49/17 15/50/18 +f 15/50/18 16/49/17 2/34/4 1/33/3 +f 35/51/6 36/52/5 38/53/7 37/54/8 +f 33/55/3 34/56/4 36/52/5 35/51/6 +f 37/54/8 38/53/7 40/57/9 39/58/10 +f 39/59/10 40/60/9 42/61/11 41/62/12 +f 41/62/12 42/61/11 44/63/13 43/64/14 +f 43/64/14 44/63/13 46/65/15 45/66/16 +f 45/66/16 46/65/15 48/67/17 47/68/18 +f 47/68/18 48/67/17 34/56/4 33/55/3 +f 24/69/19 26/70/20 25/71/20 23/72/19 +f 30/73/21 32/74/22 31/75/22 29/76/21 +f 26/70/20 28/77/23 27/78/23 25/71/20 +f 24/79/19 23/80/19 21/81/24 22/82/24 +f 19/83/25 17/84/26 18/85/26 20/86/25 +f 21/81/24 19/83/25 20/86/25 22/82/24 +f 30/73/21 29/76/21 27/78/23 28/77/23 +f 17/84/26 31/75/22 32/74/22 18/85/26 diff --git a/mods/pipeworks/models/pipeworks_pipe_4.obj b/mods/pipeworks/models/pipeworks_pipe_4.obj new file mode 100644 index 00000000..5fca7d36 --- /dev/null +++ b/mods/pipeworks/models/pipeworks_pipe_4.obj @@ -0,0 +1,4755 @@ +# Blender v2.78 (sub 0) OBJ File: 'pipe-spigot-pouring.blend' +# www.blender.org +o Pipe_Cylinder.002_None.001 +v 0.460914 0.136982 -0.046976 +v 0.460914 0.142474 -0.054133 +v 0.460914 0.139022 -0.062467 +v 0.460914 0.130078 -0.063644 +v 0.460914 0.124587 -0.056488 +v 0.460914 0.128039 -0.048153 +v 0.460914 0.063644 -0.130078 +v 0.460914 0.062467 -0.139022 +v 0.460914 0.054133 -0.142474 +v 0.460914 0.046976 -0.136982 +v 0.460914 0.048153 -0.128039 +v 0.460914 0.056487 -0.124587 +v 0.460914 -0.046976 -0.136982 +v 0.460914 -0.054133 -0.142474 +v 0.460914 -0.062467 -0.139022 +v 0.460914 -0.063644 -0.130078 +v 0.460914 -0.056488 -0.124587 +v 0.460914 -0.048153 -0.128039 +v 0.460914 -0.130078 -0.063644 +v 0.460914 -0.139022 -0.062467 +v 0.460914 -0.142474 -0.054133 +v 0.460914 -0.136982 -0.046976 +v 0.460914 -0.128039 -0.048153 +v 0.460914 -0.124587 -0.056487 +v 0.460914 -0.136982 0.046976 +v 0.460914 -0.142474 0.054133 +v 0.460914 -0.139022 0.062467 +v 0.460914 -0.130078 0.063644 +v 0.460914 -0.124587 0.056487 +v 0.460914 -0.128039 0.048153 +v 0.460914 -0.063644 0.130078 +v 0.460914 -0.062467 0.139022 +v 0.460914 -0.054132 0.142474 +v 0.460914 -0.046976 0.136982 +v 0.460914 -0.048153 0.128039 +v 0.460914 -0.056487 0.124587 +v 0.460914 0.046976 0.136982 +v 0.460914 0.054133 0.142474 +v 0.460914 0.062467 0.139022 +v 0.460914 0.063644 0.130078 +v 0.460914 0.056487 0.124587 +v 0.460914 0.048153 0.128039 +v 0.460914 0.130078 0.063644 +v 0.460914 0.139022 0.062467 +v 0.460914 0.142474 0.054133 +v 0.460914 0.136982 0.046976 +v 0.460914 0.128039 0.048153 +v 0.460914 0.124587 0.056487 +v 0.468750 0.099603 0.121367 +v 0.468750 0.121367 0.099603 +v 0.468750 0.138467 0.074012 +v 0.468750 0.150245 0.045576 +v 0.468750 0.156250 0.015389 +v 0.468750 0.156250 -0.015389 +v 0.468750 0.150245 -0.045576 +v 0.468750 0.138467 -0.074012 +v 0.468750 0.121367 -0.099603 +v 0.468750 0.099603 -0.121367 +v 0.468750 0.074012 -0.138467 +v 0.468750 0.045576 -0.150245 +v 0.468750 0.015389 -0.156250 +v 0.468750 -0.015389 -0.156250 +v 0.468750 -0.045576 -0.150245 +v 0.468750 -0.074012 -0.138467 +v 0.468750 -0.099603 -0.121367 +v 0.468750 -0.121367 -0.099603 +v 0.468750 -0.138467 -0.074012 +v 0.468750 -0.150245 -0.045576 +v 0.468750 -0.156250 -0.015389 +v 0.468750 -0.156250 0.015389 +v 0.468750 -0.150245 0.045576 +v 0.468750 -0.138466 0.074012 +v 0.468750 -0.121367 0.099603 +v 0.468750 -0.099603 0.121367 +v 0.468750 -0.074012 0.138467 +v 0.468750 -0.045576 0.150245 +v 0.468750 -0.015389 0.156250 +v 0.468750 0.015390 0.156250 +v 0.468750 0.045577 0.150245 +v 0.468750 0.074012 0.138467 +v 0.500000 -0.150245 -0.045576 +v 0.500000 -0.138467 -0.074012 +v 0.500000 -0.121367 -0.099603 +v 0.500000 -0.099603 -0.121367 +v 0.500000 -0.074012 -0.138467 +v 0.500000 -0.045576 -0.150245 +v 0.500000 -0.015389 -0.156250 +v 0.500000 0.015389 -0.156250 +v 0.500000 0.045576 -0.150245 +v 0.500000 0.074012 -0.138467 +v 0.500000 0.099603 -0.121367 +v 0.500000 0.121367 -0.099603 +v 0.500000 0.138467 -0.074012 +v 0.500000 0.150245 -0.045576 +v 0.500000 0.156250 -0.015389 +v 0.500000 0.156250 0.015389 +v 0.500000 0.150245 0.045576 +v 0.500000 0.138467 0.074012 +v 0.500000 0.121367 0.099603 +v 0.500000 0.099603 0.121367 +v 0.500000 0.074012 0.138467 +v 0.500000 0.045577 0.150245 +v 0.500000 0.015390 0.156250 +v 0.500000 -0.015389 0.156250 +v 0.500000 -0.045576 0.150245 +v 0.500000 -0.074012 0.138467 +v 0.500000 -0.099603 0.121367 +v 0.500000 -0.121367 0.099603 +v 0.500000 -0.138466 0.074012 +v 0.500000 -0.150245 0.045576 +v 0.500000 -0.156250 0.015389 +v 0.500000 -0.156250 -0.015389 +v 0.460914 0.108578 -0.095821 +v 0.460914 0.110913 -0.104534 +v 0.460914 0.104534 -0.110913 +v 0.460914 0.095821 -0.108578 +v 0.460914 0.093486 -0.099865 +v 0.460914 0.099865 -0.093486 +v 0.460914 0.009021 -0.144532 +v 0.460914 0.004510 -0.152344 +v 0.460914 -0.004510 -0.152344 +v 0.460914 -0.009021 -0.144532 +v 0.460914 -0.004510 -0.136720 +v 0.460914 0.004510 -0.136720 +v 0.460914 -0.095821 -0.108578 +v 0.460914 -0.104534 -0.110913 +v 0.460914 -0.110913 -0.104534 +v 0.460914 -0.108578 -0.095821 +v 0.460914 -0.099865 -0.093486 +v 0.460914 -0.093486 -0.099865 +v 0.460914 -0.144532 -0.009021 +v 0.460914 -0.152344 -0.004510 +v 0.460914 -0.152344 0.004510 +v 0.460914 -0.144532 0.009021 +v 0.460914 -0.136720 0.004510 +v 0.460914 -0.136720 -0.004510 +v 0.460914 -0.108578 0.095821 +v 0.460914 -0.110913 0.104534 +v 0.460914 -0.104534 0.110913 +v 0.460914 -0.095821 0.108578 +v 0.460914 -0.093486 0.099865 +v 0.460914 -0.099865 0.093486 +v 0.460914 -0.009021 0.144532 +v 0.460914 -0.004510 0.152344 +v 0.460914 0.004510 0.152344 +v 0.460914 0.009021 0.144532 +v 0.460914 0.004510 0.136720 +v 0.460914 -0.004510 0.136720 +v 0.460914 0.095821 0.108578 +v 0.460914 0.104534 0.110913 +v 0.460914 0.110913 0.104534 +v 0.460914 0.108578 0.095821 +v 0.460914 0.099865 0.093486 +v 0.460914 0.093486 0.099865 +v 0.460914 0.144532 0.009021 +v 0.460914 0.152344 0.004510 +v 0.460914 0.152344 -0.004510 +v 0.460914 0.144532 -0.009021 +v 0.460914 0.136720 -0.004510 +v 0.460914 0.136720 0.004510 +v -0.130078 -0.460912 -0.063644 +v -0.139022 -0.460912 -0.062467 +v -0.142474 -0.460912 -0.054133 +v -0.136982 -0.460912 -0.046976 +v -0.128039 -0.460912 -0.048153 +v -0.124587 -0.460912 -0.056487 +v -0.046976 -0.460912 -0.136982 +v -0.054133 -0.460912 -0.142474 +v -0.062467 -0.460912 -0.139022 +v -0.063644 -0.460912 -0.130078 +v -0.056488 -0.460912 -0.124587 +v -0.048153 -0.460912 -0.128039 +v 0.063644 -0.460912 -0.130078 +v 0.062467 -0.460912 -0.139022 +v 0.054132 -0.460912 -0.142474 +v 0.046976 -0.460912 -0.136982 +v 0.048153 -0.460912 -0.128039 +v 0.056487 -0.460912 -0.124587 +v 0.136982 -0.460912 -0.046976 +v 0.142474 -0.460912 -0.054133 +v 0.139022 -0.460912 -0.062467 +v 0.130078 -0.460912 -0.063644 +v 0.124587 -0.460912 -0.056488 +v 0.128039 -0.460912 -0.048154 +v 0.130078 -0.460912 0.063644 +v 0.139022 -0.460912 0.062467 +v 0.142474 -0.460912 0.054132 +v 0.136982 -0.460912 0.046976 +v 0.128039 -0.460912 0.048153 +v 0.124587 -0.460912 0.056487 +v 0.046976 -0.460912 0.136982 +v 0.054133 -0.460912 0.142474 +v 0.062467 -0.460912 0.139022 +v 0.063644 -0.460912 0.130078 +v 0.056488 -0.460912 0.124587 +v 0.048153 -0.460912 0.128039 +v -0.063644 -0.460912 0.130078 +v -0.062467 -0.460912 0.139022 +v -0.054132 -0.460912 0.142474 +v -0.046976 -0.460912 0.136982 +v -0.048153 -0.460912 0.128039 +v -0.056487 -0.460912 0.124587 +v -0.136982 -0.460912 0.046976 +v -0.142474 -0.460912 0.054133 +v -0.139022 -0.460912 0.062467 +v -0.130078 -0.460912 0.063644 +v -0.124587 -0.460912 0.056488 +v -0.128039 -0.460912 0.048153 +v 0.156250 -0.468750 -0.015389 +v 0.150245 -0.468750 -0.045576 +v 0.138467 -0.468750 -0.074012 +v 0.121367 -0.468750 -0.099603 +v 0.099603 -0.468750 -0.121367 +v 0.074012 -0.468750 -0.138467 +v 0.045576 -0.468750 -0.150245 +v 0.015389 -0.468750 -0.156250 +v -0.015389 -0.468750 -0.156250 +v -0.045576 -0.468750 -0.150245 +v -0.074012 -0.468750 -0.138467 +v -0.099603 -0.468750 -0.121367 +v -0.121367 -0.468750 -0.099603 +v -0.138467 -0.468750 -0.074012 +v -0.150245 -0.468750 -0.045576 +v -0.156249 -0.468750 -0.015389 +v -0.156249 -0.468750 0.015389 +v -0.150245 -0.468750 0.045576 +v -0.138466 -0.468750 0.074012 +v -0.121367 -0.468750 0.099603 +v -0.099603 -0.468750 0.121367 +v -0.074012 -0.468750 0.138467 +v -0.045576 -0.468750 0.150245 +v -0.015389 -0.468750 0.156250 +v 0.015389 -0.468750 0.156250 +v 0.045576 -0.468750 0.150245 +v 0.074012 -0.468750 0.138467 +v 0.099603 -0.468750 0.121367 +v 0.121367 -0.468750 0.099603 +v 0.138467 -0.468750 0.074012 +v 0.150245 -0.468750 0.045576 +v 0.156250 -0.468750 0.015389 +v 0.138467 -0.500000 0.074012 +v 0.121367 -0.500000 0.099603 +v 0.099603 -0.500000 0.121367 +v 0.074012 -0.500000 0.138467 +v 0.045576 -0.500000 0.150245 +v 0.015389 -0.500000 0.156250 +v -0.015389 -0.500000 0.156250 +v -0.045576 -0.500000 0.150245 +v -0.074012 -0.500000 0.138467 +v -0.099603 -0.500000 0.121367 +v -0.121367 -0.500000 0.099603 +v -0.138466 -0.500000 0.074012 +v -0.150245 -0.500000 0.045576 +v -0.156249 -0.500000 0.015389 +v -0.156250 -0.500000 -0.015389 +v -0.150245 -0.500000 -0.045576 +v -0.138467 -0.500000 -0.074012 +v -0.121367 -0.500000 -0.099603 +v -0.099603 -0.500000 -0.121367 +v -0.074012 -0.500000 -0.138467 +v -0.045576 -0.500000 -0.150245 +v -0.015389 -0.500000 -0.156250 +v 0.015389 -0.500000 -0.156250 +v 0.045576 -0.500000 -0.150245 +v 0.074012 -0.500000 -0.138467 +v 0.099603 -0.500000 -0.121367 +v 0.121367 -0.500000 -0.099603 +v 0.138467 -0.500000 -0.074012 +v 0.150245 -0.500000 -0.045576 +v 0.156250 -0.500000 -0.015389 +v 0.156250 -0.500000 0.015389 +v 0.150245 -0.500000 0.045576 +v -0.095821 -0.460912 -0.108578 +v -0.104534 -0.460912 -0.110913 +v -0.110913 -0.460912 -0.104534 +v -0.108578 -0.460912 -0.095821 +v -0.099865 -0.460912 -0.093486 +v -0.093486 -0.460912 -0.099865 +v 0.009021 -0.460912 -0.144532 +v 0.004510 -0.460912 -0.152344 +v -0.004510 -0.460912 -0.152344 +v -0.009021 -0.460912 -0.144532 +v -0.004510 -0.460912 -0.136720 +v 0.004510 -0.460912 -0.136720 +v 0.108578 -0.460912 -0.095821 +v 0.110913 -0.460912 -0.104534 +v 0.104534 -0.460912 -0.110913 +v 0.095821 -0.460912 -0.108578 +v 0.093486 -0.460912 -0.099865 +v 0.099865 -0.460912 -0.093486 +v 0.144532 -0.460912 0.009021 +v 0.152344 -0.460912 0.004510 +v 0.152344 -0.460912 -0.004511 +v 0.144532 -0.460912 -0.009021 +v 0.136720 -0.460912 -0.004511 +v 0.136720 -0.460912 0.004510 +v 0.095821 -0.460912 0.108578 +v 0.104534 -0.460912 0.110913 +v 0.110913 -0.460912 0.104534 +v 0.108578 -0.460912 0.095821 +v 0.099865 -0.460912 0.093486 +v 0.093486 -0.460912 0.099865 +v -0.009021 -0.460912 0.144532 +v -0.004510 -0.460912 0.152344 +v 0.004510 -0.460912 0.152344 +v 0.009021 -0.460912 0.144532 +v 0.004510 -0.460912 0.136720 +v -0.004510 -0.460912 0.136720 +v -0.108578 -0.460912 0.095821 +v -0.110913 -0.460912 0.104534 +v -0.104534 -0.460912 0.110913 +v -0.095821 -0.460912 0.108578 +v -0.093486 -0.460912 0.099865 +v -0.099865 -0.460912 0.093486 +v -0.144532 -0.460912 -0.009021 +v -0.152344 -0.460912 -0.004510 +v -0.152344 -0.460912 0.004510 +v -0.144532 -0.460912 0.009021 +v -0.136720 -0.460912 0.004510 +v -0.136720 -0.460912 -0.004510 +v 0.468750 0.116832 -0.062448 +v 0.437501 0.110774 -0.059210 +v 0.437501 0.120197 -0.036461 +v 0.468750 0.126770 -0.038455 +v 0.468750 0.131837 -0.012985 +v 0.437501 0.125000 -0.012312 +v 0.468750 0.131837 0.012984 +v 0.437501 0.125001 0.012311 +v 0.468750 0.126770 0.038455 +v 0.437501 0.120197 0.036461 +v 0.468750 0.116832 0.062448 +v 0.437501 0.110774 0.059210 +v 0.468750 0.102404 0.084041 +v 0.437501 0.097094 0.079683 +v 0.437501 0.079683 0.097094 +v 0.468750 0.084041 0.102404 +v 0.468750 0.062448 0.116832 +v 0.437501 0.059210 0.110774 +v 0.468750 0.038455 0.126770 +v 0.437501 0.036461 0.120197 +v 0.468750 0.012985 0.131836 +v 0.437501 0.012312 0.125000 +v 0.437501 -0.012311 0.125000 +v 0.468750 -0.012985 0.131836 +v 0.437501 -0.036461 0.120197 +v 0.468750 -0.038455 0.126770 +v 0.468750 -0.062448 0.116832 +v 0.437501 -0.059210 0.110774 +v 0.437501 -0.079683 0.097094 +v 0.468750 -0.084041 0.102404 +v 0.437501 -0.097094 0.079683 +v 0.468750 -0.102404 0.084041 +v 0.468750 -0.116832 0.062448 +v 0.437501 -0.110774 0.059210 +v 0.437501 -0.120197 0.036461 +v 0.468750 -0.126770 0.038455 +v 0.468750 -0.131836 0.012985 +v 0.437501 -0.125000 0.012311 +v 0.437501 -0.125000 -0.012311 +v 0.468750 -0.131836 -0.012985 +v 0.468750 -0.126770 -0.038455 +v 0.437501 -0.120197 -0.036461 +v 0.437501 -0.110774 -0.059210 +v 0.468750 -0.116832 -0.062448 +v 0.437501 -0.097094 -0.079683 +v 0.468750 -0.102404 -0.084041 +v 0.437501 -0.079683 -0.097094 +v 0.468750 -0.084041 -0.102404 +v 0.437501 -0.059210 -0.110774 +v 0.468750 -0.062448 -0.116832 +v 0.437501 -0.036461 -0.120197 +v 0.468750 -0.038455 -0.126770 +v 0.437501 -0.012311 -0.125001 +v 0.468750 -0.012985 -0.131836 +v 0.468750 0.038455 -0.126770 +v 0.468750 0.012985 -0.131837 +v 0.437501 0.012311 -0.125001 +v 0.437501 0.036461 -0.120197 +v 0.468750 0.084041 -0.102404 +v 0.468750 0.062448 -0.116832 +v 0.437501 0.059210 -0.110774 +v 0.437501 0.079683 -0.097094 +v 0.468750 0.102404 -0.084041 +v 0.437501 0.097094 -0.079683 +v 0.468751 0.136982 -0.046976 +v 0.468751 0.142474 -0.054133 +v 0.468751 0.128039 -0.048153 +v 0.468751 0.139022 -0.062467 +v 0.468751 0.130078 -0.063644 +v 0.468751 0.124587 -0.056488 +v 0.468751 0.063644 -0.130078 +v 0.468751 0.062467 -0.139022 +v 0.468751 0.056487 -0.124587 +v 0.468751 0.054133 -0.142474 +v 0.468751 0.046976 -0.136982 +v 0.468751 0.048153 -0.128039 +v 0.468751 -0.046976 -0.136982 +v 0.468751 -0.054133 -0.142474 +v 0.468751 -0.048153 -0.128039 +v 0.468751 -0.062467 -0.139022 +v 0.468751 -0.063644 -0.130078 +v 0.468751 -0.056488 -0.124587 +v 0.468751 -0.130078 -0.063644 +v 0.468751 -0.139022 -0.062467 +v 0.468751 -0.124587 -0.056487 +v 0.468751 -0.142474 -0.054133 +v 0.468751 -0.136982 -0.046976 +v 0.468751 -0.128039 -0.048153 +v 0.468751 -0.136982 0.046976 +v 0.468751 -0.142474 0.054133 +v 0.468751 -0.128039 0.048153 +v 0.468751 -0.139022 0.062467 +v 0.468751 -0.130078 0.063644 +v 0.468751 -0.124587 0.056487 +v 0.468751 -0.063644 0.130078 +v 0.468751 -0.062467 0.139022 +v 0.468751 -0.056487 0.124587 +v 0.468751 -0.054132 0.142474 +v 0.468751 -0.046976 0.136982 +v 0.468751 -0.048153 0.128039 +v 0.468751 0.046976 0.136982 +v 0.468751 0.054133 0.142474 +v 0.468751 0.048153 0.128039 +v 0.468751 0.062467 0.139022 +v 0.468751 0.063644 0.130078 +v 0.468751 0.056487 0.124587 +v 0.468751 0.130078 0.063644 +v 0.468751 0.139022 0.062467 +v 0.468751 0.124587 0.056487 +v 0.468751 0.142474 0.054133 +v 0.468751 0.136982 0.046976 +v 0.468751 0.128039 0.048153 +v 0.312501 -0.059210 0.110774 +v 0.312501 -0.036461 0.120197 +v 0.312501 -0.079683 0.097094 +v 0.312501 -0.097094 0.079683 +v 0.312501 0.012311 -0.125000 +v 0.312501 -0.012311 -0.125000 +v 0.312501 0.125000 0.012311 +v 0.312501 0.125000 -0.012312 +v 0.312501 -0.012312 0.125000 +v 0.312501 0.079683 0.097094 +v 0.312501 0.059210 0.110774 +v 0.312501 -0.036461 -0.120197 +v 0.312501 -0.059210 -0.110774 +v 0.312501 -0.097094 -0.079683 +v 0.312501 -0.079683 -0.097094 +v 0.312501 0.120197 0.036461 +v 0.312501 0.097094 -0.079683 +v 0.312501 0.079683 -0.097094 +v 0.312501 0.110774 -0.059210 +v 0.312501 0.097094 0.079683 +v 0.312501 0.036461 0.120197 +v 0.312501 0.012312 0.125000 +v 0.312501 -0.110774 0.059210 +v 0.312501 -0.120197 0.036461 +v 0.312501 -0.125000 0.012311 +v 0.312501 -0.125000 -0.012311 +v 0.312501 -0.120197 -0.036461 +v 0.312501 -0.110774 -0.059210 +v 0.312501 0.120197 -0.036461 +v 0.468751 0.108578 -0.095821 +v 0.468751 0.110913 -0.104534 +v 0.468751 0.099865 -0.093486 +v 0.468751 0.104534 -0.110913 +v 0.468751 0.095821 -0.108578 +v 0.468751 0.093486 -0.099865 +v 0.468751 0.009021 -0.144532 +v 0.468751 0.004510 -0.152344 +v 0.468751 0.004510 -0.136720 +v 0.468751 -0.004510 -0.152344 +v 0.468751 -0.009021 -0.144532 +v 0.468751 -0.004510 -0.136720 +v 0.468751 -0.095821 -0.108578 +v 0.468751 -0.104534 -0.110913 +v 0.468751 -0.093486 -0.099865 +v 0.468751 -0.110913 -0.104534 +v 0.468751 -0.108578 -0.095821 +v 0.468751 -0.099865 -0.093486 +v 0.468751 -0.144532 -0.009021 +v 0.468751 -0.152344 -0.004510 +v 0.468751 -0.136720 -0.004510 +v 0.468751 -0.152344 0.004510 +v 0.468751 -0.144532 0.009021 +v 0.468751 -0.136720 0.004510 +v 0.468751 -0.108578 0.095821 +v 0.468751 -0.110913 0.104534 +v 0.468751 -0.099865 0.093486 +v 0.468751 -0.104534 0.110913 +v 0.468751 -0.095821 0.108578 +v 0.468751 -0.093486 0.099865 +v 0.468751 -0.009021 0.144532 +v 0.468751 -0.004510 0.152344 +v 0.468751 -0.004510 0.136720 +v 0.468751 0.004510 0.152344 +v 0.468751 0.009021 0.144532 +v 0.468751 0.004510 0.136720 +v 0.468751 0.095821 0.108578 +v 0.468751 0.104534 0.110913 +v 0.468751 0.093486 0.099865 +v 0.468751 0.110913 0.104534 +v 0.468751 0.108578 0.095821 +v 0.468751 0.099865 0.093486 +v 0.468751 0.144532 0.009021 +v 0.468751 0.152344 0.004510 +v 0.468751 0.136720 0.004510 +v 0.468751 0.152344 -0.004510 +v 0.468751 0.144532 -0.009021 +v 0.468751 0.136720 -0.004510 +v 0.312501 0.110774 0.059210 +v 0.012311 -0.312501 0.125000 +v -0.012312 -0.312501 0.125000 +v -0.012312 -0.437501 0.125000 +v 0.012311 -0.437501 0.125000 +v 0.036461 -0.312501 0.120197 +v 0.036461 -0.437501 0.120197 +v 0.059210 -0.312501 0.110774 +v 0.059210 -0.437501 0.110774 +v -0.036461 -0.312501 0.120197 +v -0.036461 -0.437501 0.120197 +v 0.079683 -0.312501 0.097094 +v 0.079683 -0.437501 0.097094 +v 0.097094 -0.437501 0.079683 +v 0.097094 -0.312501 0.079683 +v -0.012985 -0.468750 0.131836 +v -0.038455 -0.468750 0.126770 +v 0.012985 -0.468750 0.131836 +v 0.038455 -0.468750 0.126770 +v 0.079683 -0.312501 -0.097094 +v 0.097094 -0.312501 -0.079683 +v 0.097094 -0.437501 -0.079683 +v 0.079683 -0.437501 -0.097094 +v -0.059210 -0.437501 0.110774 +v -0.062448 -0.468750 0.116832 +v 0.062448 -0.468750 0.116832 +v 0.110774 -0.312501 0.059210 +v 0.110774 -0.437501 0.059210 +v -0.084041 -0.468750 0.102404 +v -0.079683 -0.437501 0.097094 +v 0.084041 -0.468750 0.102404 +v 0.120197 -0.312501 0.036461 +v 0.120197 -0.437501 0.036461 +v -0.097094 -0.312501 0.079683 +v -0.097094 -0.437501 0.079683 +v -0.079683 -0.312501 0.097094 +v -0.102404 -0.468750 0.084041 +v 0.102404 -0.468750 0.084041 +v -0.116832 -0.468750 0.062448 +v -0.110774 -0.437501 0.059210 +v 0.116832 -0.468750 0.062448 +v 0.125000 -0.312501 -0.012311 +v 0.125001 -0.312501 0.012311 +v 0.125001 -0.437501 0.012311 +v 0.125001 -0.437501 -0.012312 +v -0.125000 -0.312501 0.012311 +v -0.125000 -0.437501 0.012311 +v -0.120197 -0.437501 0.036461 +v -0.120197 -0.312501 0.036461 +v -0.126770 -0.468750 0.038455 +v 0.126770 -0.468750 0.038455 +v -0.131836 -0.468750 0.012985 +v 0.131837 -0.468750 0.012985 +v 0.110774 -0.312501 -0.059210 +v 0.120197 -0.312501 -0.036461 +v 0.120197 -0.437501 -0.036461 +v 0.110774 -0.437501 -0.059210 +v -0.125000 -0.312501 -0.012312 +v -0.120197 -0.312501 -0.036461 +v -0.120197 -0.437501 -0.036461 +v -0.125000 -0.437501 -0.012312 +v -0.131836 -0.468750 -0.012985 +v 0.131837 -0.468750 -0.012985 +v -0.097094 -0.312501 -0.079683 +v -0.079683 -0.312501 -0.097094 +v -0.079683 -0.437501 -0.097094 +v -0.097094 -0.437501 -0.079683 +v -0.126770 -0.468750 -0.038455 +v 0.126770 -0.468750 -0.038455 +v -0.116832 -0.468750 -0.062448 +v -0.110774 -0.437501 -0.059210 +v 0.116832 -0.468750 -0.062448 +v -0.102404 -0.468750 -0.084041 +v 0.102404 -0.468750 -0.084041 +v 0.012311 -0.312501 -0.125001 +v 0.012311 -0.437501 -0.125001 +v -0.012311 -0.437501 -0.125001 +v -0.012311 -0.312501 -0.125000 +v -0.084041 -0.468750 -0.102404 +v 0.084041 -0.468750 -0.102404 +v 0.059210 -0.437501 -0.110774 +v 0.059210 -0.312501 -0.110774 +v -0.036461 -0.312501 -0.120197 +v -0.036461 -0.437501 -0.120197 +v -0.062448 -0.468750 -0.116832 +v -0.059210 -0.437501 -0.110774 +v 0.062448 -0.468750 -0.116832 +v -0.038455 -0.468750 -0.126770 +v 0.038455 -0.468750 -0.126770 +v 0.036461 -0.437501 -0.120197 +v -0.012985 -0.468750 -0.131837 +v 0.012985 -0.468750 -0.131837 +v -0.130078 -0.468749 -0.063644 +v -0.139022 -0.468749 -0.062467 +v -0.124587 -0.468749 -0.056487 +v -0.142474 -0.468749 -0.054133 +v -0.136982 -0.468749 -0.046976 +v -0.128039 -0.468749 -0.048153 +v -0.046976 -0.468749 -0.136982 +v -0.054133 -0.468749 -0.142474 +v -0.048153 -0.468749 -0.128039 +v -0.062467 -0.468749 -0.139022 +v -0.063644 -0.468749 -0.130078 +v -0.056488 -0.468749 -0.124587 +v 0.063644 -0.468749 -0.130078 +v 0.062467 -0.468749 -0.139022 +v 0.056487 -0.468749 -0.124587 +v 0.054132 -0.468749 -0.142474 +v 0.046976 -0.468749 -0.136982 +v 0.048153 -0.468749 -0.128039 +v 0.136982 -0.468749 -0.046976 +v 0.142474 -0.468749 -0.054133 +v 0.128039 -0.468749 -0.048154 +v 0.139022 -0.468749 -0.062467 +v 0.130078 -0.468749 -0.063644 +v 0.124587 -0.468749 -0.056488 +v 0.130078 -0.468749 0.063644 +v 0.139022 -0.468749 0.062466 +v 0.124587 -0.468749 0.056487 +v 0.142474 -0.468749 0.054132 +v 0.136982 -0.468749 0.046976 +v 0.128039 -0.468749 0.048153 +v 0.046976 -0.468749 0.136982 +v 0.054133 -0.468749 0.142474 +v 0.048153 -0.468749 0.128039 +v 0.062467 -0.468749 0.139022 +v 0.063644 -0.468749 0.130078 +v 0.056488 -0.468749 0.124587 +v -0.063644 -0.468749 0.130078 +v -0.062467 -0.468749 0.139022 +v -0.056487 -0.468749 0.124587 +v -0.054132 -0.468749 0.142474 +v -0.046976 -0.468749 0.136982 +v -0.048153 -0.468749 0.128039 +v -0.136982 -0.468749 0.046976 +v -0.142474 -0.468749 0.054133 +v -0.128039 -0.468749 0.048153 +v -0.139022 -0.468749 0.062467 +v -0.130078 -0.468749 0.063644 +v -0.124587 -0.468749 0.056487 +v -0.110774 -0.312501 0.059210 +v -0.110774 -0.312501 -0.059210 +v 0.036461 -0.312501 -0.120197 +v -0.059210 -0.312501 -0.110774 +v -0.095821 -0.468749 -0.108578 +v -0.104534 -0.468749 -0.110913 +v -0.093486 -0.468749 -0.099865 +v -0.110913 -0.468749 -0.104534 +v -0.108578 -0.468749 -0.095821 +v -0.099865 -0.468749 -0.093486 +v 0.009021 -0.468749 -0.144532 +v 0.004510 -0.468749 -0.152344 +v 0.004510 -0.468749 -0.136720 +v -0.004510 -0.468749 -0.152344 +v -0.009021 -0.468749 -0.144532 +v -0.004510 -0.468749 -0.136720 +v 0.108578 -0.468749 -0.095821 +v 0.110913 -0.468749 -0.104534 +v 0.099865 -0.468749 -0.093486 +v 0.104534 -0.468749 -0.110913 +v 0.095821 -0.468749 -0.108578 +v 0.093486 -0.468749 -0.099865 +v 0.144532 -0.468749 0.009021 +v 0.152344 -0.468749 0.004510 +v 0.136720 -0.468749 0.004510 +v 0.152344 -0.468749 -0.004511 +v 0.144532 -0.468749 -0.009021 +v 0.136720 -0.468749 -0.004511 +v 0.095821 -0.468749 0.108578 +v 0.104534 -0.468749 0.110913 +v 0.093486 -0.468749 0.099865 +v 0.110913 -0.468749 0.104534 +v 0.108578 -0.468749 0.095821 +v 0.099865 -0.468749 0.093486 +v -0.009021 -0.468749 0.144532 +v -0.004510 -0.468749 0.152344 +v -0.004510 -0.468749 0.136720 +v 0.004510 -0.468749 0.152344 +v 0.009021 -0.468749 0.144532 +v 0.004510 -0.468749 0.136720 +v -0.108578 -0.468749 0.095821 +v -0.110913 -0.468749 0.104534 +v -0.099865 -0.468749 0.093486 +v -0.104534 -0.468749 0.110913 +v -0.095821 -0.468749 0.108578 +v -0.093486 -0.468749 0.099865 +v -0.144532 -0.468749 -0.009021 +v -0.152344 -0.468749 -0.004510 +v -0.136720 -0.468749 -0.004510 +v -0.152344 -0.468749 0.004510 +v -0.144532 -0.468749 0.009021 +v -0.136720 -0.468749 0.004510 +v -0.059210 -0.312501 0.110774 +v 0.312501 0.059210 -0.110774 +v 0.312501 0.036461 -0.120197 +v 0.278296 0.034781 0.120197 +v 0.280664 0.010748 0.125000 +v 0.271013 0.108736 0.059210 +v 0.272353 0.095122 0.079683 +v 0.269618 0.122894 -0.012312 +v 0.269618 0.122894 0.012311 +v 0.276067 0.057420 0.110774 +v 0.270089 0.118113 0.036461 +v 0.283077 -0.013757 -0.125000 +v 0.280664 0.010747 -0.125000 +v 0.274060 0.077795 0.097094 +v 0.270089 0.118113 -0.036461 +v 0.289681 -0.080804 0.097094 +v 0.291387 -0.098131 0.079683 +v 0.272353 0.095122 -0.079683 +v 0.271013 0.108736 -0.059210 +v 0.287674 -0.060430 0.110774 +v 0.278297 0.034781 -0.120197 +v 0.276067 0.057420 -0.110774 +v 0.274060 0.077795 -0.097094 +v 0.285444 -0.037790 0.120197 +v 0.289681 -0.080804 -0.097094 +v 0.287674 -0.060430 -0.110774 +v 0.292728 -0.111745 -0.059210 +v 0.291387 -0.098131 -0.079683 +v 0.285444 -0.037791 -0.120197 +v 0.293652 -0.121123 -0.036461 +v 0.294122 -0.125903 -0.012311 +v 0.294122 -0.125903 0.012311 +v 0.293652 -0.121123 0.036461 +v 0.292728 -0.111745 0.059210 +v 0.283077 -0.013757 0.125000 +v 0.227149 0.116594 0.012311 +v 0.228086 0.111883 0.036461 +v 0.275921 -0.128603 0.012311 +v 0.275921 -0.128603 -0.012311 +v 0.270477 -0.101233 -0.079683 +v 0.267080 -0.084157 -0.097094 +v 0.274984 -0.123892 0.036461 +v 0.244422 0.029756 -0.120197 +v 0.239984 0.052067 -0.110774 +v 0.273146 -0.114650 0.059210 +v 0.263086 -0.064077 -0.110774 +v 0.258648 -0.041765 -0.120197 +v 0.270477 -0.101233 0.079683 +v 0.235990 0.072147 0.097094 +v 0.239984 0.052068 0.110774 +v 0.249133 0.006071 0.125000 +v 0.253937 -0.018080 0.125000 +v 0.258648 -0.041765 0.120197 +v 0.244422 0.029756 0.120197 +v 0.229924 0.102641 0.059210 +v 0.232593 0.089224 0.079683 +v 0.227149 0.116594 -0.012312 +v 0.253937 -0.018079 -0.125000 +v 0.249133 0.006070 -0.125000 +v 0.228086 0.111883 -0.036461 +v 0.267080 -0.084157 0.097094 +v 0.232593 0.089224 -0.079683 +v 0.229924 0.102641 -0.059210 +v 0.263086 -0.064077 0.110774 +v 0.235990 0.072147 -0.097094 +v 0.273146 -0.114650 -0.059210 +v 0.274984 -0.123892 -0.036461 +v 0.238974 -0.070116 -0.110774 +v 0.232371 -0.048347 -0.120197 +v 0.249972 -0.106370 0.079683 +v 0.253943 -0.119460 0.059210 +v 0.198656 0.062796 0.097094 +v 0.204599 0.043204 0.110774 +v 0.218213 -0.001675 0.125000 +v 0.225361 -0.025238 0.125000 +v 0.232371 -0.048347 0.120197 +v 0.211203 0.021435 0.120197 +v 0.189631 0.092548 0.059210 +v 0.193602 0.079457 0.079683 +v 0.185501 0.106162 -0.012312 +v 0.185501 0.106162 0.012311 +v 0.186895 0.101565 0.036461 +v 0.225361 -0.025237 -0.125000 +v 0.218213 -0.001675 -0.125000 +v 0.186895 0.101565 -0.036461 +v 0.244918 -0.089708 0.097094 +v 0.193602 0.079457 -0.079683 +v 0.189631 0.092548 -0.059210 +v 0.238974 -0.070117 0.110774 +v 0.211203 0.021435 -0.120197 +v 0.204599 0.043204 -0.110774 +v 0.198656 0.062796 -0.097094 +v 0.244918 -0.089708 -0.097094 +v 0.253943 -0.119460 -0.059210 +v 0.249972 -0.106370 -0.079683 +v 0.256678 -0.128477 -0.036461 +v 0.258072 -0.133074 -0.012311 +v 0.258072 -0.133074 0.012311 +v 0.256678 -0.128477 0.036461 +v 0.145077 0.091698 -0.012312 +v 0.145077 0.091698 0.012311 +v 0.170253 0.030915 0.110774 +v 0.178959 0.009898 0.120197 +v 0.146915 0.087260 0.036461 +v 0.150521 0.078554 0.059210 +v 0.197623 -0.035162 -0.125000 +v 0.188201 -0.012413 -0.125000 +v 0.155756 0.065916 0.079683 +v 0.162419 0.049830 0.097094 +v 0.146915 0.087260 -0.036461 +v 0.223406 -0.097405 0.097094 +v 0.230068 -0.113491 0.079683 +v 0.155756 0.065916 -0.079683 +v 0.150521 0.078554 -0.059210 +v 0.215571 -0.078490 0.110774 +v 0.178959 0.009898 -0.120197 +v 0.170253 0.030915 -0.110774 +v 0.162419 0.049830 -0.097094 +v 0.206865 -0.057473 0.120197 +v 0.223406 -0.097405 -0.097094 +v 0.215571 -0.078490 -0.110774 +v 0.235303 -0.126129 -0.059210 +v 0.230068 -0.113491 -0.079683 +v 0.206865 -0.057473 -0.120197 +v 0.238909 -0.134835 -0.036461 +v 0.240748 -0.139273 -0.012311 +v 0.240748 -0.139273 0.012311 +v 0.238909 -0.134835 0.036461 +v 0.235303 -0.126129 0.059210 +v 0.188201 -0.012413 0.125000 +v 0.197624 -0.035162 0.125000 +v 0.193101 -0.089118 0.110774 +v 0.202752 -0.107174 0.097094 +v 0.159386 -0.026042 -0.125000 +v 0.148002 -0.004744 -0.120197 +v 0.137278 0.015319 -0.110774 +v 0.127627 0.033375 -0.097094 +v 0.182377 -0.069056 0.120197 +v 0.202752 -0.107174 -0.097094 +v 0.193101 -0.089118 -0.110774 +v 0.217408 -0.134594 -0.059210 +v 0.210959 -0.122529 -0.079683 +v 0.182377 -0.069056 -0.120197 +v 0.170993 -0.047757 -0.125000 +v 0.221850 -0.142904 -0.036461 +v 0.119419 0.048730 -0.079683 +v 0.224114 -0.147140 -0.012311 +v 0.106264 0.073341 0.012311 +v 0.108529 0.069104 0.036461 +v 0.224114 -0.147140 0.012311 +v 0.221850 -0.142904 0.036461 +v 0.217408 -0.134594 0.059210 +v 0.210959 -0.122529 0.079683 +v 0.127627 0.033375 0.097094 +v 0.137278 0.015319 0.110774 +v 0.159386 -0.026042 0.125000 +v 0.170993 -0.047757 0.125000 +v 0.148001 -0.004744 0.120197 +v 0.112971 0.060794 0.059210 +v 0.119419 0.048730 0.079683 +v 0.106264 0.073341 -0.012312 +v 0.108529 0.069104 -0.036461 +v 0.112971 0.060794 -0.059210 +v 0.094616 0.013588 -0.097094 +v 0.084942 0.028065 -0.079683 +v 0.208332 -0.156600 -0.012311 +v 0.205663 -0.152606 -0.036461 +v 0.069439 0.051268 0.012311 +v 0.072107 0.047274 0.036461 +v 0.208332 -0.156600 0.012311 +v 0.192828 -0.133397 -0.079683 +v 0.183155 -0.118920 -0.097094 +v 0.205663 -0.152606 0.036461 +v 0.118628 -0.022349 -0.120197 +v 0.105990 -0.003435 -0.110774 +v 0.200428 -0.144771 0.059210 +v 0.171780 -0.101897 -0.110774 +v 0.159142 -0.082982 -0.120197 +v 0.192828 -0.133397 0.079683 +v 0.094615 0.013588 0.097094 +v 0.105990 -0.003434 0.110774 +v 0.132045 -0.042429 0.125000 +v 0.145725 -0.062902 0.125000 +v 0.159142 -0.082982 0.120197 +v 0.118628 -0.022349 0.120197 +v 0.077342 0.039439 0.059210 +v 0.084942 0.028065 0.079683 +v 0.069439 0.051268 -0.012312 +v 0.145725 -0.062902 -0.125000 +v 0.132045 -0.042429 -0.125000 +v 0.072107 0.047274 -0.036461 +v 0.183155 -0.118920 0.097094 +v 0.077342 0.039439 -0.059210 +v 0.171780 -0.101897 0.110774 +v 0.200428 -0.144771 -0.059210 +v 0.091122 -0.042749 -0.120197 +v 0.076690 -0.025164 -0.110774 +v 0.184527 -0.156564 0.059210 +v 0.190505 -0.163848 0.036461 +v 0.151815 -0.116704 -0.110774 +v 0.137384 -0.099119 -0.120197 +v 0.175849 -0.145989 0.079683 +v 0.063702 -0.009338 0.097094 +v 0.076690 -0.025164 0.110774 +v 0.106442 -0.061417 0.125000 +v 0.122063 -0.080451 0.125000 +v 0.137384 -0.099119 0.120197 +v 0.091122 -0.042749 0.120197 +v 0.043979 0.014695 0.059210 +v 0.052657 0.004121 0.079683 +v 0.034953 0.025692 -0.012312 +v 0.034953 0.025692 0.012311 +v 0.038001 0.021979 0.036461 +v 0.122063 -0.080451 -0.125000 +v 0.106443 -0.061417 -0.125000 +v 0.038001 0.021979 -0.036461 +v 0.164803 -0.132530 0.097094 +v 0.052657 0.004121 -0.079683 +v 0.043979 0.014695 -0.059210 +v 0.151815 -0.116704 0.110774 +v 0.063702 -0.009338 -0.097094 +v 0.164803 -0.132530 -0.097094 +v 0.184527 -0.156564 -0.059210 +v 0.175849 -0.145989 -0.079683 +v 0.190505 -0.163848 -0.036461 +v 0.193552 -0.167561 -0.012311 +v 0.193552 -0.167561 0.012311 +v 0.100235 -0.100235 0.125000 +v 0.117312 -0.117311 0.120197 +v 0.065748 -0.065747 0.120197 +v 0.082824 -0.082823 0.125000 +v 0.013201 -0.013200 0.059210 +v 0.022874 -0.022873 0.079683 +v 0.003141 -0.003140 -0.012312 +v 0.003141 -0.003140 0.012311 +v 0.049662 -0.049661 0.110774 +v 0.006538 -0.006537 0.036461 +v 0.100235 -0.100235 -0.125000 +v 0.082824 -0.082824 -0.125000 +v 0.035185 -0.035185 0.097094 +v 0.006538 -0.006537 -0.036461 +v 0.147874 -0.147874 0.097094 +v 0.160186 -0.160185 0.079683 +v 0.022874 -0.022873 -0.079683 +v 0.013201 -0.013200 -0.059210 +v 0.133398 -0.133397 0.110774 +v 0.065748 -0.065747 -0.120197 +v 0.049662 -0.049661 -0.110774 +v 0.035185 -0.035185 -0.097094 +v 0.147874 -0.147874 -0.097094 +v 0.133398 -0.133397 -0.110774 +v 0.169859 -0.169858 -0.059210 +v 0.160186 -0.160185 -0.079683 +v 0.117312 -0.117311 -0.120197 +v 0.176522 -0.176521 -0.036461 +v 0.179918 -0.179918 -0.012311 +v 0.179918 -0.179918 0.012311 +v 0.176522 -0.176521 0.036461 +v 0.169859 -0.169858 0.059210 +v -0.021978 -0.038000 -0.036461 +v -0.025692 -0.034953 -0.012312 +v 0.132531 -0.164802 0.097094 +v 0.145990 -0.175848 0.079683 +v -0.004120 -0.052656 -0.079683 +v -0.014694 -0.043978 -0.059210 +v 0.116705 -0.151814 0.110774 +v 0.061418 -0.106442 -0.125000 +v 0.042750 -0.091121 -0.120197 +v 0.025165 -0.076690 -0.110774 +v 0.009339 -0.063702 -0.097094 +v 0.099120 -0.137383 0.120197 +v 0.132531 -0.164802 -0.097094 +v 0.116705 -0.151814 -0.110774 +v 0.156564 -0.184526 -0.059210 +v 0.145990 -0.175848 -0.079683 +v 0.099120 -0.137383 -0.120197 +v 0.080452 -0.122062 -0.125000 +v 0.163848 -0.190504 -0.036461 +v 0.167562 -0.193552 -0.012311 +v -0.025692 -0.034953 0.012311 +v -0.021978 -0.038000 0.036461 +v 0.167562 -0.193551 0.012311 +v 0.163848 -0.190504 0.036461 +v 0.156564 -0.184526 0.059210 +v 0.009339 -0.063702 0.097094 +v 0.025165 -0.076690 0.110774 +v 0.061418 -0.106442 0.125000 +v 0.080452 -0.122062 0.125000 +v 0.042750 -0.091121 0.120197 +v -0.014694 -0.043978 0.059210 +v -0.004120 -0.052656 0.079683 +v 0.144772 -0.200427 -0.059210 +v 0.133397 -0.192827 -0.079683 +v 0.082983 -0.159141 -0.120197 +v 0.062903 -0.145724 -0.125000 +v 0.152606 -0.205662 -0.036461 +v -0.013588 -0.094615 -0.097094 +v -0.028064 -0.084942 -0.079683 +v 0.156601 -0.208331 -0.012311 +v -0.051268 -0.069438 0.012311 +v -0.047273 -0.072106 0.036461 +v 0.156601 -0.208331 0.012311 +v 0.118921 -0.183154 -0.097094 +v 0.152606 -0.205662 0.036461 +v 0.022350 -0.118627 -0.120197 +v 0.003435 -0.105989 -0.110774 +v 0.144772 -0.200427 0.059210 +v 0.101898 -0.171779 -0.110774 +v 0.133397 -0.192827 0.079683 +v -0.013588 -0.094615 0.097094 +v 0.003435 -0.105989 0.110774 +v 0.042430 -0.132044 0.125000 +v 0.062903 -0.145724 0.125000 +v 0.082983 -0.159141 0.120197 +v 0.022350 -0.118627 0.120197 +v -0.039439 -0.077342 0.059210 +v -0.028064 -0.084942 0.079683 +v -0.051268 -0.069438 -0.012312 +v 0.042430 -0.132044 -0.125000 +v -0.047273 -0.072107 -0.036461 +v 0.118921 -0.183154 0.097094 +v -0.039439 -0.077342 -0.059210 +v 0.101898 -0.171780 0.110774 +v 0.122530 -0.210958 -0.079683 +v 0.107175 -0.202751 -0.097094 +v 0.142904 -0.221849 0.036461 +v 0.147141 -0.224113 0.012311 +v 0.004744 -0.148001 -0.120197 +v -0.015318 -0.137277 -0.110774 +v 0.134594 -0.217407 0.059210 +v 0.089119 -0.193100 -0.110774 +v 0.069056 -0.182376 -0.120197 +v 0.122530 -0.210958 0.079683 +v -0.033374 -0.127626 0.097094 +v -0.015318 -0.137277 0.110774 +v 0.026042 -0.159385 0.125000 +v 0.047758 -0.170992 0.125000 +v 0.069056 -0.182376 0.120197 +v 0.004744 -0.148001 0.120197 +v -0.060794 -0.112970 0.059210 +v -0.048729 -0.119419 0.079683 +v -0.073340 -0.106264 -0.012312 +v -0.073340 -0.106264 0.012311 +v -0.069104 -0.108528 0.036461 +v 0.047758 -0.170992 -0.125000 +v 0.026043 -0.159385 -0.125000 +v -0.069104 -0.108528 -0.036461 +v 0.107175 -0.202751 0.097094 +v -0.048729 -0.119419 -0.079683 +v -0.060794 -0.112970 -0.059210 +v 0.089119 -0.193100 0.110774 +v -0.033374 -0.127626 -0.097094 +v 0.134594 -0.217407 -0.059210 +v 0.142904 -0.221849 -0.036461 +v 0.147141 -0.224113 -0.012311 +v -0.049829 -0.162418 0.097094 +v -0.030915 -0.170253 0.110774 +v 0.012414 -0.188200 0.125000 +v 0.035163 -0.197623 0.125000 +v 0.057474 -0.206864 0.120197 +v -0.009897 -0.178958 0.120197 +v -0.078553 -0.150520 0.059210 +v -0.065915 -0.155755 0.079683 +v -0.091697 -0.145076 -0.012312 +v -0.091697 -0.145076 0.012311 +v -0.087259 -0.146914 0.036461 +v 0.035163 -0.197623 -0.125000 +v 0.012414 -0.188200 -0.125000 +v -0.087259 -0.146914 -0.036461 +v 0.097406 -0.223405 0.097094 +v 0.113492 -0.230068 0.079683 +v -0.065915 -0.155755 -0.079683 +v -0.078553 -0.150520 -0.059210 +v 0.078491 -0.215570 0.110774 +v -0.009897 -0.178958 -0.120197 +v -0.030914 -0.170253 -0.110774 +v -0.049829 -0.162418 -0.097094 +v 0.097406 -0.223405 -0.097094 +v 0.078491 -0.215570 -0.110774 +v 0.126130 -0.235303 -0.059210 +v 0.113492 -0.230068 -0.079683 +v 0.057474 -0.206864 -0.120197 +v 0.134836 -0.238909 -0.036461 +v 0.139274 -0.240747 -0.012311 +v 0.139274 -0.240747 0.012311 +v 0.134836 -0.238909 0.036461 +v 0.126130 -0.235303 0.059210 +v -0.101564 -0.186895 0.036461 +v -0.092547 -0.189630 0.059210 +v 0.025238 -0.225360 -0.125000 +v 0.001676 -0.218212 -0.125000 +v -0.079456 -0.193601 0.079683 +v -0.062795 -0.198655 0.097094 +v -0.101564 -0.186895 -0.036461 +v -0.106161 -0.185500 -0.012312 +v 0.089709 -0.244917 0.097094 +v 0.106370 -0.249971 0.079683 +v -0.079456 -0.193601 -0.079683 +v -0.092547 -0.189630 -0.059210 +v 0.070117 -0.238974 0.110774 +v -0.021434 -0.211202 -0.120197 +v -0.043203 -0.204598 -0.110774 +v -0.062795 -0.198655 -0.097094 +v 0.048348 -0.232370 0.120197 +v 0.089709 -0.244917 -0.097094 +v 0.070117 -0.238974 -0.110774 +v 0.119461 -0.253942 -0.059210 +v 0.106370 -0.249971 -0.079683 +v 0.048348 -0.232370 -0.120197 +v 0.128478 -0.256677 -0.036461 +v 0.133075 -0.258072 -0.012311 +v -0.106161 -0.185500 0.012311 +v 0.133075 -0.258072 0.012311 +v 0.128478 -0.256677 0.036461 +v 0.119461 -0.253942 0.059210 +v -0.043204 -0.204598 0.110774 +v 0.001675 -0.218212 0.125000 +v 0.025238 -0.225360 0.125000 +v -0.021434 -0.211202 0.120197 +v -0.052067 -0.239983 -0.110774 +v -0.072147 -0.235989 -0.097094 +v 0.041766 -0.258647 0.120197 +v 0.064078 -0.263085 0.110774 +v 0.084157 -0.267080 -0.097094 +v 0.064077 -0.263085 -0.110774 +v 0.114651 -0.273145 -0.059210 +v 0.101234 -0.270476 -0.079683 +v 0.041766 -0.258647 -0.120197 +v 0.018080 -0.253936 -0.125000 +v 0.123893 -0.274983 -0.036461 +v -0.089223 -0.232592 -0.079683 +v 0.128604 -0.275921 -0.012311 +v -0.116593 -0.227148 0.012311 +v -0.111882 -0.228085 0.036461 +v 0.128604 -0.275921 0.012311 +v 0.123893 -0.274983 0.036461 +v -0.029755 -0.244421 -0.120197 +v 0.114651 -0.273145 0.059210 +v 0.101234 -0.270476 0.079683 +v -0.072147 -0.235989 0.097094 +v -0.052067 -0.239983 0.110774 +v -0.006070 -0.249132 0.125000 +v 0.018080 -0.253936 0.125000 +v -0.029755 -0.244421 0.120197 +v -0.102640 -0.229923 0.059210 +v -0.089223 -0.232592 0.079683 +v -0.116593 -0.227148 -0.012312 +v -0.006070 -0.249132 -0.125000 +v -0.111882 -0.228085 -0.036461 +v 0.084157 -0.267080 0.097094 +v -0.102640 -0.229923 -0.059210 +v 0.125904 -0.294122 -0.012311 +v 0.121124 -0.293651 -0.036461 +v -0.122893 -0.269617 0.012311 +v -0.118112 -0.270088 0.036461 +v 0.125904 -0.294122 0.012311 +v 0.098132 -0.291386 -0.079683 +v 0.080805 -0.289680 -0.097094 +v 0.121124 -0.293651 0.036461 +v -0.034780 -0.278296 -0.120197 +v -0.057419 -0.276066 -0.110774 +v 0.111746 -0.292727 0.059210 +v 0.060430 -0.287673 -0.110774 +v 0.037791 -0.285443 -0.120197 +v 0.098132 -0.291386 0.079683 +v -0.077794 -0.274059 0.097094 +v -0.057419 -0.276066 0.110774 +v -0.010747 -0.280663 0.125000 +v 0.013758 -0.283076 0.125000 +v 0.037791 -0.285443 0.120197 +v -0.034780 -0.278296 0.120197 +v -0.108735 -0.271012 0.059210 +v -0.095121 -0.272353 0.079683 +v -0.122893 -0.269617 -0.012312 +v 0.013758 -0.283076 -0.125000 +v -0.010747 -0.280663 -0.125000 +v -0.118112 -0.270088 -0.036461 +v 0.080805 -0.289680 0.097094 +v -0.095121 -0.272353 -0.079683 +v -0.108735 -0.271012 -0.059210 +v 0.060430 -0.287673 0.110774 +v -0.077794 -0.274059 -0.097094 +v 0.111746 -0.292727 -0.059210 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.4412 0.9276 +vt 0.4630 0.9493 +vt 0.4886 0.9664 +vt 0.5170 0.9782 +vt 0.5472 0.9842 +vt 0.5780 0.9842 +vt 0.6082 0.9782 +vt 0.6366 0.9664 +vt 0.6622 0.9493 +vt 0.6840 0.9276 +vt 0.7011 0.9020 +vt 0.7129 0.8735 +vt 0.7189 0.8434 +vt 0.7189 0.8126 +vt 0.7129 0.7824 +vt 0.7011 0.7539 +vt 0.6840 0.7283 +vt 0.6622 0.7066 +vt 0.6366 0.6895 +vt 0.6082 0.6777 +vt 0.5780 0.6717 +vt 0.5472 0.6717 +vt 0.5170 0.6777 +vt 0.4886 0.6895 +vt 0.4630 0.7066 +vt 0.4412 0.7283 +vt 0.4241 0.7539 +vt 0.4124 0.7824 +vt 0.4063 0.8126 +vt 0.4063 0.8434 +vt 0.4124 0.8735 +vt 0.4241 0.9020 +vt 0.2332 0.6777 +vt 0.2616 0.6895 +vt 0.2872 0.7066 +vt 0.3090 0.7283 +vt 0.3261 0.7539 +vt 0.3379 0.7824 +vt 0.3439 0.8126 +vt 0.3439 0.8434 +vt 0.3379 0.8735 +vt 0.3261 0.9020 +vt 0.3090 0.9276 +vt 0.2872 0.9493 +vt 0.2616 0.9664 +vt 0.2332 0.9782 +vt 0.2030 0.9842 +vt 0.1722 0.9842 +vt 0.1420 0.9782 +vt 0.1136 0.9664 +vt 0.0880 0.9493 +vt 0.0662 0.9276 +vt 0.0491 0.9020 +vt 0.0374 0.8735 +vt 0.0313 0.8434 +vt 0.0313 0.8126 +vt 0.0374 0.7824 +vt 0.0491 0.7539 +vt 0.0662 0.7283 +vt 0.0880 0.7066 +vt 0.1136 0.6895 +vt 0.1420 0.6777 +vt 0.1722 0.6717 +vt 0.2030 0.6717 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.5780 0.6717 +vt 0.6082 0.6777 +vt 0.6366 0.6895 +vt 0.6622 0.7066 +vt 0.6840 0.7283 +vt 0.7011 0.7539 +vt 0.7129 0.7824 +vt 0.7189 0.8126 +vt 0.7189 0.8434 +vt 0.7129 0.8735 +vt 0.7011 0.9020 +vt 0.6840 0.9276 +vt 0.6622 0.9493 +vt 0.6366 0.9664 +vt 0.6082 0.9782 +vt 0.5780 0.9842 +vt 0.5472 0.9842 +vt 0.5170 0.9782 +vt 0.4886 0.9664 +vt 0.4630 0.9493 +vt 0.4412 0.9276 +vt 0.4241 0.9020 +vt 0.4124 0.8735 +vt 0.4063 0.8434 +vt 0.4063 0.8126 +vt 0.4124 0.7824 +vt 0.4241 0.7539 +vt 0.4412 0.7283 +vt 0.4630 0.7066 +vt 0.4886 0.6895 +vt 0.5170 0.6777 +vt 0.5472 0.6717 +vt 0.1136 0.6895 +vt 0.0880 0.7066 +vt 0.0662 0.7283 +vt 0.0491 0.7539 +vt 0.0374 0.7824 +vt 0.0313 0.8126 +vt 0.0313 0.8434 +vt 0.0374 0.8735 +vt 0.0491 0.9020 +vt 0.0662 0.9276 +vt 0.0880 0.9493 +vt 0.1136 0.9664 +vt 0.1420 0.9782 +vt 0.1722 0.9842 +vt 0.2030 0.9842 +vt 0.2332 0.9782 +vt 0.2616 0.9664 +vt 0.2872 0.9493 +vt 0.3090 0.9276 +vt 0.3261 0.9020 +vt 0.3379 0.8735 +vt 0.3439 0.8434 +vt 0.3439 0.8126 +vt 0.3379 0.7824 +vt 0.3261 0.7539 +vt 0.3090 0.7283 +vt 0.2872 0.7066 +vt 0.2616 0.6895 +vt 0.2332 0.6777 +vt 0.2030 0.6717 +vt 0.1722 0.6717 +vt 0.1420 0.6777 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.4688 0.5898 +vt 0.4688 0.5664 +vt 0.5000 0.5664 +vt 0.5000 0.5898 +vt 0.4375 0.5898 +vt 0.4375 0.5664 +vt 0.4062 0.5898 +vt 0.4062 0.5664 +vt 0.3750 0.5898 +vt 0.3750 0.5664 +vt 0.3438 0.5898 +vt 0.3438 0.5664 +vt 0.3125 0.5898 +vt 0.3125 0.5664 +vt 0.2812 0.5898 +vt 0.2812 0.5664 +vt 0.2500 0.5898 +vt 0.2500 0.5664 +vt 0.2188 0.5898 +vt 0.2188 0.5664 +vt 0.1875 0.5898 +vt 0.1875 0.5664 +vt 0.1562 0.5898 +vt 0.1562 0.5664 +vt 0.1250 0.5898 +vt 0.1250 0.5664 +vt 0.0938 0.5898 +vt 0.0938 0.5664 +vt 0.0625 0.5898 +vt 0.0625 0.5664 +vt 0.0937 0.5664 +vt 0.0312 0.5898 +vt 0.0312 0.5664 +vt 0.0000 0.5898 +vt 0.0000 0.5664 +vt 0.9688 0.5898 +vt 0.9688 0.5664 +vt 1.0000 0.5664 +vt 1.0000 0.5898 +vt 0.9375 0.5898 +vt 0.9375 0.5664 +vt 0.9062 0.5898 +vt 0.9062 0.5664 +vt 0.8750 0.5898 +vt 0.8750 0.5664 +vt 0.8125 0.5898 +vt 0.8125 0.5664 +vt 0.8438 0.5664 +vt 0.8438 0.5898 +vt 0.7812 0.5898 +vt 0.7812 0.5664 +vt 0.7500 0.5898 +vt 0.7500 0.5664 +vt 0.7188 0.5898 +vt 0.7188 0.5664 +vt 0.6875 0.5898 +vt 0.6875 0.5664 +vt 0.6250 0.5898 +vt 0.6250 0.5664 +vt 0.6562 0.5664 +vt 0.6562 0.5898 +vt 0.5938 0.5898 +vt 0.5938 0.5664 +vt 0.5625 0.5898 +vt 0.5625 0.5664 +vt 0.5625 0.0156 +vt 0.5625 0.0469 +vt 0.5312 0.0469 +vt 0.5312 0.0156 +vt 0.5000 0.0156 +vt 0.5000 0.0469 +vt 0.4688 0.0156 +vt 0.4688 0.0469 +vt 0.4375 0.0156 +vt 0.4375 0.0469 +vt 0.4062 0.0156 +vt 0.4062 0.0469 +vt 0.3750 0.0156 +vt 0.3750 0.0469 +vt 0.3438 0.0469 +vt 0.3438 0.0156 +vt 0.3125 0.0156 +vt 0.3125 0.0469 +vt 0.2812 0.0156 +vt 0.2812 0.0469 +vt 0.2500 0.0156 +vt 0.2500 0.0469 +vt 0.2188 0.0469 +vt 0.2188 0.0156 +vt 0.1875 0.0469 +vt 0.1875 0.0156 +vt 0.1562 0.0156 +vt 0.1562 0.0469 +vt 0.1250 0.0469 +vt 0.1250 0.0156 +vt 0.0938 0.0469 +vt 0.0938 0.0156 +vt 0.0625 0.0156 +vt 0.0625 0.0469 +vt 0.0312 0.0469 +vt 0.0312 0.0156 +vt -0.0000 0.0156 +vt 0.0000 0.0469 +vt 1.0000 0.0156 +vt 1.0000 0.0469 +vt 0.9688 0.0469 +vt 0.9688 0.0156 +vt 0.9375 0.0156 +vt 0.9375 0.0469 +vt 0.9062 0.0469 +vt 0.9062 0.0156 +vt 0.8750 0.0469 +vt 0.8750 0.0156 +vt 0.8438 0.0469 +vt 0.8438 0.0156 +vt 0.8125 0.0469 +vt 0.8125 0.0156 +vt 0.7812 0.0469 +vt 0.7812 0.0156 +vt 0.7500 0.0469 +vt 0.7500 0.0156 +vt 0.6875 0.0156 +vt 0.7188 0.0156 +vt 0.7188 0.0469 +vt 0.6875 0.0469 +vt 0.6250 0.0156 +vt 0.6562 0.0156 +vt 0.6562 0.0469 +vt 0.6250 0.0469 +vt 0.5938 0.0156 +vt 0.5938 0.0469 +vt 0.5312 0.5664 +vt 0.5312 0.5898 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.1562 0.1406 +vt 0.1875 0.1406 +vt 0.1250 0.1406 +vt 0.0938 0.1406 +vt 0.7188 0.1406 +vt 0.7500 0.1406 +vt 0.4688 0.1406 +vt 0.5000 0.1406 +vt 0.2188 0.1406 +vt 0.3438 0.1406 +vt 0.3125 0.1406 +vt 0.7812 0.1406 +vt 0.8125 0.1406 +vt 0.8750 0.1406 +vt 0.8438 0.1406 +vt 0.4375 0.1406 +vt 0.5938 0.1406 +vt 0.6250 0.1406 +vt 0.5625 0.1406 +vt 0.3750 0.1406 +vt 0.2812 0.1406 +vt 0.2500 0.1406 +vt 0.0625 0.1406 +vt 0.0312 0.1406 +vt 0.0000 0.1406 +vt 1.0000 0.1406 +vt 0.9688 0.1406 +vt 0.9375 0.1406 +vt 0.9062 0.1406 +vt 0.5312 0.1406 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.4062 0.1406 +vt 0.2188 0.3906 +vt 0.2500 0.3906 +vt 0.2500 0.4844 +vt 0.2188 0.4844 +vt 0.1875 0.3906 +vt 0.1875 0.4844 +vt 0.1562 0.3906 +vt 0.1562 0.4844 +vt 0.2812 0.3906 +vt 0.2812 0.4844 +vt 0.1250 0.3906 +vt 0.1250 0.4844 +vt 0.0938 0.4844 +vt 0.0938 0.3906 +vt 0.2500 0.5156 +vt 0.2812 0.5156 +vt 0.2188 0.5156 +vt 0.1875 0.5156 +vt 0.8438 0.3906 +vt 0.8750 0.3906 +vt 0.8750 0.4844 +vt 0.8438 0.4844 +vt 0.3125 0.4844 +vt 0.3125 0.5156 +vt 0.1562 0.5156 +vt 0.0625 0.3906 +vt 0.0625 0.4844 +vt 0.3438 0.5156 +vt 0.3438 0.4844 +vt 0.1250 0.5156 +vt 0.0312 0.3906 +vt 0.0312 0.4844 +vt 0.3750 0.3906 +vt 0.3750 0.4844 +vt 0.3438 0.3906 +vt 0.3750 0.5156 +vt 0.6875 0.5898 +vt 0.6875 0.5664 +vt 0.7188 0.5664 +vt 0.7188 0.5898 +vt 0.7812 0.5898 +vt 0.7812 0.5664 +vt 0.8125 0.5664 +vt 0.8125 0.5898 +vt 0.0938 0.5156 +vt 0.6562 0.5898 +vt 0.6562 0.5664 +vt 0.4062 0.5156 +vt 0.4062 0.4844 +vt 0.8438 0.5664 +vt 0.8438 0.5898 +vt 0.0625 0.5156 +vt 0.6250 0.5898 +vt 0.6250 0.5664 +vt 0.9688 0.3906 +vt 1.0000 0.3906 +vt 1.0000 0.4844 +vt 0.9688 0.4844 +vt 0.4688 0.3906 +vt 0.4688 0.4844 +vt 0.4375 0.4844 +vt 0.4375 0.3906 +vt 0.4375 0.5156 +vt 0.5938 0.5898 +vt 0.5938 0.5664 +vt 0.0312 0.5156 +vt 0.5312 0.5898 +vt 0.5312 0.5664 +vt 0.5625 0.5664 +vt 0.5625 0.5898 +vt 0.4688 0.5156 +vt 0.8750 0.5664 +vt 0.8750 0.5898 +vt 0.0000 0.5156 +vt 0.0000 0.4844 +vt 0.5000 0.5898 +vt 0.5000 0.5664 +vt 0.9062 0.3906 +vt 0.9375 0.3906 +vt 0.9375 0.4844 +vt 0.9062 0.4844 +vt 0.5000 0.3906 +vt 0.5312 0.3906 +vt 0.5312 0.4844 +vt 0.5000 0.4844 +vt 0.5000 0.5156 +vt 0.9062 0.5664 +vt 0.9062 0.5898 +vt 0.9688 0.5156 +vt 1.0000 0.5156 +vt 0.4688 0.5898 +vt 0.4688 0.5664 +vt 0.5938 0.3906 +vt 0.6250 0.3906 +vt 0.6250 0.4844 +vt 0.5938 0.4844 +vt 0.5312 0.5156 +vt 0.9375 0.5664 +vt 0.9375 0.5898 +vt 0.9375 0.5156 +vt 0.4375 0.5898 +vt 0.4375 0.5664 +vt 0.5625 0.5156 +vt 0.5625 0.4844 +vt 0.9688 0.5664 +vt 0.9688 0.5898 +vt 0.9062 0.5156 +vt 0.4062 0.5898 +vt 0.4062 0.5664 +vt 0.5938 0.5156 +vt 0.0000 0.5898 +vt 0.0000 0.5664 +vt 0.0312 0.5664 +vt 0.0312 0.5898 +vt 0.8750 0.5156 +vt 1.0000 0.5664 +vt 1.0000 0.5898 +vt 0.7500 0.3906 +vt 0.7500 0.4844 +vt 0.7188 0.4844 +vt 0.7188 0.3906 +vt 0.6250 0.5156 +vt 0.0625 0.5664 +vt 0.0625 0.5898 +vt 0.7500 0.5664 +vt 0.7500 0.5898 +vt 0.8438 0.5156 +vt 0.3750 0.5898 +vt 0.3750 0.5664 +vt 0.8125 0.4844 +vt 0.8125 0.3906 +vt 0.6875 0.3906 +vt 0.6875 0.4844 +vt 0.6562 0.5156 +vt 0.6562 0.4844 +vt 0.0937 0.5664 +vt 0.0938 0.5898 +vt 0.8125 0.5156 +vt 0.3438 0.5898 +vt 0.3438 0.5664 +vt 0.6875 0.5156 +vt 0.0938 0.5664 +vt 0.1250 0.5664 +vt 0.1250 0.5898 +vt 0.7812 0.5156 +vt 0.7812 0.4844 +vt 0.3125 0.5898 +vt 0.3125 0.5664 +vt 0.7188 0.5156 +vt 0.1562 0.5664 +vt 0.1562 0.5898 +vt 0.7500 0.5156 +vt 0.2812 0.5898 +vt 0.2812 0.5664 +vt 0.2500 0.5898 +vt 0.2500 0.5664 +vt 0.1875 0.5664 +vt 0.1875 0.5898 +vt 0.2188 0.5898 +vt 0.2188 0.5664 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.4062 0.3906 +vt 0.5625 0.3906 +vt 0.7812 0.3906 +vt 0.0000 0.3906 +vt 0.6562 0.3906 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.3125 0.3906 +vt 0.6562 0.1406 +vt 0.6875 0.1406 +vt 0.2812 0.1562 +vt 0.2500 0.1562 +vt 0.4062 0.1562 +vt 0.3750 0.1562 +vt 0.5000 0.1562 +vt 0.4688 0.1562 +vt 0.3125 0.1562 +vt 0.4375 0.1562 +vt 0.7500 0.1562 +vt 0.7188 0.1562 +vt 0.3438 0.1562 +vt 0.5312 0.1562 +vt 0.1250 0.1562 +vt 0.0938 0.1562 +vt 0.5938 0.1562 +vt 0.5625 0.1562 +vt 0.1562 0.1562 +vt 0.6875 0.1562 +vt 0.6562 0.1562 +vt 0.6250 0.1562 +vt 0.1875 0.1562 +vt 0.8438 0.1562 +vt 0.8125 0.1562 +vt 0.9062 0.1562 +vt 0.8750 0.1562 +vt 0.7812 0.1562 +vt 0.9375 0.1562 +vt 0.9688 0.1562 +vt 1.0000 0.1562 +vt 0.0312 0.1562 +vt 0.0000 0.1562 +vt 0.0625 0.1562 +vt 0.2188 0.1562 +vt 0.4688 0.1719 +vt 0.4375 0.1719 +vt 1.0000 0.1719 +vt 0.9688 0.1719 +vt 0.8750 0.1719 +vt 0.8438 0.1719 +vt 0.0312 0.1719 +vt 0.0000 0.1719 +vt 0.6875 0.1719 +vt 0.6562 0.1719 +vt 0.0625 0.1719 +vt 0.8125 0.1719 +vt 0.7812 0.1719 +vt 0.0938 0.1719 +vt 0.3438 0.1719 +vt 0.3125 0.1719 +vt 0.2500 0.1719 +vt 0.2188 0.1719 +vt 0.1875 0.1719 +vt 0.2812 0.1719 +vt 0.4062 0.1719 +vt 0.3750 0.1719 +vt 0.5000 0.1719 +vt 0.7500 0.1719 +vt 0.7188 0.1719 +vt 0.5312 0.1719 +vt 0.1250 0.1719 +vt 0.5938 0.1719 +vt 0.5625 0.1719 +vt 0.1562 0.1719 +vt 0.6250 0.1719 +vt 0.9062 0.1719 +vt 0.9375 0.1719 +vt 0.8125 0.1875 +vt 0.7812 0.1875 +vt 0.0938 0.1875 +vt 0.0625 0.1875 +vt 0.3438 0.1875 +vt 0.3125 0.1875 +vt 0.2500 0.1875 +vt 0.2188 0.1875 +vt 0.1875 0.1875 +vt 0.2812 0.1875 +vt 0.4062 0.1875 +vt 0.3750 0.1875 +vt 0.5000 0.1875 +vt 0.4688 0.1875 +vt 0.4375 0.1875 +vt 0.7500 0.1875 +vt 0.7188 0.1875 +vt 0.5312 0.1875 +vt 0.1250 0.1875 +vt 0.5938 0.1875 +vt 0.5625 0.1875 +vt 0.1562 0.1875 +vt 0.6875 0.1875 +vt 0.6562 0.1875 +vt 0.6250 0.1875 +vt 0.8438 0.1875 +vt 0.9062 0.1875 +vt 0.8750 0.1875 +vt 0.9375 0.1875 +vt 0.9688 0.1875 +vt 1.0000 0.1875 +vt 0.0312 0.1875 +vt 0.0000 0.1875 +vt 0.5000 0.2031 +vt 0.4688 0.2031 +vt 0.3125 0.2031 +vt 0.2812 0.2031 +vt 0.4375 0.2031 +vt 0.4062 0.2031 +vt 0.7500 0.2031 +vt 0.7188 0.2031 +vt 0.3750 0.2031 +vt 0.3438 0.2031 +vt 0.5312 0.2031 +vt 0.1250 0.2031 +vt 0.0938 0.2031 +vt 0.5938 0.2031 +vt 0.5625 0.2031 +vt 0.1562 0.2031 +vt 0.6875 0.2031 +vt 0.6562 0.2031 +vt 0.6250 0.2031 +vt 0.1875 0.2031 +vt 0.8438 0.2031 +vt 0.8125 0.2031 +vt 0.9062 0.2031 +vt 0.8750 0.2031 +vt 0.7812 0.2031 +vt 0.9375 0.2031 +vt 0.9688 0.2031 +vt 1.0000 0.2031 +vt 0.0312 0.2031 +vt 0.0000 0.2031 +vt 0.0625 0.2031 +vt 0.2500 0.2031 +vt 0.2188 0.2031 +vt 0.1562 0.2188 +vt 0.1250 0.2188 +vt 0.7188 0.2188 +vt 0.6875 0.2188 +vt 0.6562 0.2188 +vt 0.6250 0.2188 +vt 0.1875 0.2188 +vt 0.8438 0.2188 +vt 0.8125 0.2188 +vt 0.9062 0.2188 +vt 0.8750 0.2188 +vt 0.7812 0.2188 +vt 0.7500 0.2188 +vt 0.9375 0.2188 +vt 0.5938 0.2188 +vt 0.9688 0.2188 +vt 0.4688 0.2188 +vt 0.4375 0.2188 +vt 1.0000 0.2188 +vt 0.0312 0.2188 +vt 0.0000 0.2188 +vt 0.0625 0.2188 +vt 0.0938 0.2188 +vt 0.3438 0.2188 +vt 0.3125 0.2188 +vt 0.2500 0.2188 +vt 0.2188 0.2188 +vt 0.2812 0.2188 +vt 0.4062 0.2188 +vt 0.3750 0.2188 +vt 0.5000 0.2188 +vt 0.5312 0.2188 +vt 0.5625 0.2188 +vt 0.6250 0.2344 +vt 0.5938 0.2344 +vt 0.9688 0.2344 +vt 0.9375 0.2344 +vt 0.4688 0.2344 +vt 0.4375 0.2344 +vt 1.0000 0.2344 +vt 0.8750 0.2344 +vt 0.8438 0.2344 +vt 0.0312 0.2344 +vt 0.0000 0.2344 +vt 0.6875 0.2344 +vt 0.6562 0.2344 +vt 0.0625 0.2344 +vt 0.8125 0.2344 +vt 0.7812 0.2344 +vt 0.0938 0.2344 +vt 0.3438 0.2344 +vt 0.3125 0.2344 +vt 0.2500 0.2344 +vt 0.2188 0.2344 +vt 0.1875 0.2344 +vt 0.2812 0.2344 +vt 0.4062 0.2344 +vt 0.3750 0.2344 +vt 0.5000 0.2344 +vt 0.7500 0.2344 +vt 0.7188 0.2344 +vt 0.5312 0.2344 +vt 0.1250 0.2344 +vt 0.5625 0.2344 +vt 0.1562 0.2344 +vt 0.9062 0.2344 +vt 0.6875 0.2500 +vt 0.6562 0.2500 +vt 0.0625 0.2500 +vt 0.0312 0.2500 +vt 0.8125 0.2500 +vt 0.7812 0.2500 +vt 0.0938 0.2500 +vt 0.3438 0.2500 +vt 0.3125 0.2500 +vt 0.2500 0.2500 +vt 0.2188 0.2500 +vt 0.1875 0.2500 +vt 0.2812 0.2500 +vt 0.4062 0.2500 +vt 0.3750 0.2500 +vt 0.5000 0.2500 +vt 0.4688 0.2500 +vt 0.4375 0.2500 +vt 0.7500 0.2500 +vt 0.7188 0.2500 +vt 0.5312 0.2500 +vt 0.1250 0.2500 +vt 0.5938 0.2500 +vt 0.5625 0.2500 +vt 0.1562 0.2500 +vt 0.6250 0.2500 +vt 0.8438 0.2500 +vt 0.9062 0.2500 +vt 0.8750 0.2500 +vt 0.9375 0.2500 +vt 0.9688 0.2500 +vt 1.0000 0.2500 +vt 0.0000 0.2500 +vt 0.2188 0.2656 +vt 0.1875 0.2656 +vt 0.2812 0.2656 +vt 0.2500 0.2656 +vt 0.4062 0.2656 +vt 0.3750 0.2656 +vt 0.5000 0.2656 +vt 0.4688 0.2656 +vt 0.3125 0.2656 +vt 0.4375 0.2656 +vt 0.7500 0.2656 +vt 0.7188 0.2656 +vt 0.3438 0.2656 +vt 0.5312 0.2656 +vt 0.1250 0.2656 +vt 0.0938 0.2656 +vt 0.5938 0.2656 +vt 0.5625 0.2656 +vt 0.1562 0.2656 +vt 0.6875 0.2656 +vt 0.6562 0.2656 +vt 0.6250 0.2656 +vt 0.8438 0.2656 +vt 0.8125 0.2656 +vt 0.9062 0.2656 +vt 0.8750 0.2656 +vt 0.7812 0.2656 +vt 0.9375 0.2656 +vt 0.9688 0.2656 +vt 1.0000 0.2656 +vt 0.0312 0.2656 +vt 0.0000 0.2656 +vt 0.0625 0.2656 +vt 0.5312 0.2812 +vt 0.5000 0.2812 +vt 0.1250 0.2812 +vt 0.0938 0.2812 +vt 0.5938 0.2812 +vt 0.5625 0.2812 +vt 0.1562 0.2812 +vt 0.7188 0.2812 +vt 0.6875 0.2812 +vt 0.6562 0.2812 +vt 0.6250 0.2812 +vt 0.1875 0.2812 +vt 0.8438 0.2812 +vt 0.8125 0.2812 +vt 0.9062 0.2812 +vt 0.8750 0.2812 +vt 0.7812 0.2812 +vt 0.7500 0.2812 +vt 0.9375 0.2812 +vt 0.9688 0.2812 +vt 0.4688 0.2812 +vt 0.4375 0.2812 +vt 1.0000 0.2812 +vt 0.0312 0.2812 +vt 0.0000 0.2812 +vt 0.0625 0.2812 +vt 0.3438 0.2812 +vt 0.3125 0.2812 +vt 0.2500 0.2812 +vt 0.2188 0.2812 +vt 0.2812 0.2812 +vt 0.4062 0.2812 +vt 0.3750 0.2812 +vt 0.9062 0.2969 +vt 0.8750 0.2969 +vt 0.7812 0.2969 +vt 0.7500 0.2969 +vt 0.9375 0.2969 +vt 0.6250 0.2969 +vt 0.5938 0.2969 +vt 0.9688 0.2969 +vt 0.4688 0.2969 +vt 0.4375 0.2969 +vt 1.0000 0.2969 +vt 0.8438 0.2969 +vt 0.0312 0.2969 +vt 0.0000 0.2969 +vt 0.6875 0.2969 +vt 0.6562 0.2969 +vt 0.0625 0.2969 +vt 0.8125 0.2969 +vt 0.0938 0.2969 +vt 0.3438 0.2969 +vt 0.3125 0.2969 +vt 0.2500 0.2969 +vt 0.2188 0.2969 +vt 0.1875 0.2969 +vt 0.2812 0.2969 +vt 0.4062 0.2969 +vt 0.3750 0.2969 +vt 0.5000 0.2969 +vt 0.7188 0.2969 +vt 0.5312 0.2969 +vt 0.1250 0.2969 +vt 0.5625 0.2969 +vt 0.1562 0.2969 +vt 0.8750 0.3125 +vt 0.8438 0.3125 +vt 0.0312 0.3125 +vt 0.0000 0.3125 +vt 0.6875 0.3125 +vt 0.6562 0.3125 +vt 0.0625 0.3125 +vt 0.8125 0.3125 +vt 0.7812 0.3125 +vt 0.0938 0.3125 +vt 0.3438 0.3125 +vt 0.3125 0.3125 +vt 0.2500 0.3125 +vt 0.2188 0.3125 +vt 0.1875 0.3125 +vt 0.2812 0.3125 +vt 0.4062 0.3125 +vt 0.3750 0.3125 +vt 0.5000 0.3125 +vt 0.4688 0.3125 +vt 0.4375 0.3125 +vt 0.7500 0.3125 +vt 0.7188 0.3125 +vt 0.5312 0.3125 +vt 0.1250 0.3125 +vt 0.5938 0.3125 +vt 0.5625 0.3125 +vt 0.1562 0.3125 +vt 0.6250 0.3125 +vt 0.9062 0.3125 +vt 0.9375 0.3125 +vt 0.9688 0.3125 +vt 1.0000 0.3125 +vt 0.3438 0.3281 +vt 0.3125 0.3281 +vt 0.2500 0.3281 +vt 0.2188 0.3281 +vt 0.1875 0.3281 +vt 0.2812 0.3281 +vt 0.4062 0.3281 +vt 0.3750 0.3281 +vt 0.5000 0.3281 +vt 0.4688 0.3281 +vt 0.4375 0.3281 +vt 0.7500 0.3281 +vt 0.7188 0.3281 +vt 0.5312 0.3281 +vt 0.1250 0.3281 +vt 0.0938 0.3281 +vt 0.5938 0.3281 +vt 0.5625 0.3281 +vt 0.1562 0.3281 +vt 0.6875 0.3281 +vt 0.6562 0.3281 +vt 0.6250 0.3281 +vt 0.8438 0.3281 +vt 0.8125 0.3281 +vt 0.9062 0.3281 +vt 0.8750 0.3281 +vt 0.7812 0.3281 +vt 0.9375 0.3281 +vt 0.9688 0.3281 +vt 1.0000 0.3281 +vt 0.0312 0.3281 +vt 0.0000 0.3281 +vt 0.0625 0.3281 +vt 0.4375 0.3438 +vt 0.4062 0.3438 +vt 0.7500 0.3438 +vt 0.7188 0.3438 +vt 0.3750 0.3438 +vt 0.3438 0.3438 +vt 0.5312 0.3438 +vt 0.5000 0.3438 +vt 0.1250 0.3438 +vt 0.0938 0.3438 +vt 0.5938 0.3438 +vt 0.5625 0.3438 +vt 0.1562 0.3438 +vt 0.6875 0.3438 +vt 0.6562 0.3438 +vt 0.6250 0.3438 +vt 0.1875 0.3438 +vt 0.8438 0.3438 +vt 0.8125 0.3438 +vt 0.9062 0.3438 +vt 0.8750 0.3438 +vt 0.7812 0.3438 +vt 0.9375 0.3438 +vt 0.9688 0.3438 +vt 0.4688 0.3438 +vt 1.0000 0.3438 +vt 0.0312 0.3438 +vt 0.0000 0.3438 +vt 0.0625 0.3438 +vt 0.3125 0.3438 +vt 0.2500 0.3438 +vt 0.2188 0.3438 +vt 0.2812 0.3438 +vt 0.6562 0.3594 +vt 0.6250 0.3594 +vt 0.1875 0.3594 +vt 0.1562 0.3594 +vt 0.8438 0.3594 +vt 0.8125 0.3594 +vt 0.9062 0.3594 +vt 0.8750 0.3594 +vt 0.7812 0.3594 +vt 0.7500 0.3594 +vt 0.9375 0.3594 +vt 0.5938 0.3594 +vt 0.9688 0.3594 +vt 0.4688 0.3594 +vt 0.4375 0.3594 +vt 1.0000 0.3594 +vt 0.0312 0.3594 +vt 0.0000 0.3594 +vt 0.6875 0.3594 +vt 0.0625 0.3594 +vt 0.0938 0.3594 +vt 0.3438 0.3594 +vt 0.3125 0.3594 +vt 0.2500 0.3594 +vt 0.2188 0.3594 +vt 0.2812 0.3594 +vt 0.4062 0.3594 +vt 0.3750 0.3594 +vt 0.5000 0.3594 +vt 0.7188 0.3594 +vt 0.5312 0.3594 +vt 0.1250 0.3594 +vt 0.5625 0.3594 +vt 0.9688 0.3750 +vt 0.9375 0.3750 +vt 0.4688 0.3750 +vt 0.4375 0.3750 +vt 1.0000 0.3750 +vt 0.8750 0.3750 +vt 0.8438 0.3750 +vt 0.0312 0.3750 +vt 0.0000 0.3750 +vt 0.6875 0.3750 +vt 0.6562 0.3750 +vt 0.0625 0.3750 +vt 0.8125 0.3750 +vt 0.7812 0.3750 +vt 0.0938 0.3750 +vt 0.3438 0.3750 +vt 0.3125 0.3750 +vt 0.2500 0.3750 +vt 0.2188 0.3750 +vt 0.1875 0.3750 +vt 0.2812 0.3750 +vt 0.4062 0.3750 +vt 0.3750 0.3750 +vt 0.5000 0.3750 +vt 0.7500 0.3750 +vt 0.7188 0.3750 +vt 0.5312 0.3750 +vt 0.1250 0.3750 +vt 0.5938 0.3750 +vt 0.5625 0.3750 +vt 0.1562 0.3750 +vt 0.6250 0.3750 +vt 0.9062 0.3750 +vn -1.0000 0.0000 0.0000 +vn 1.0000 -0.0000 0.0000 +vn 0.0000 1.0000 0.0000 +vn 0.0000 -1.0000 0.0000 +vn -0.6857 0.2114 0.6965 +vn 0.6857 0.2113 0.6965 +vn 0.6857 0.3431 0.6419 +vn -0.6857 0.3431 0.6419 +vn -0.6857 0.0713 0.7244 +vn 0.6857 0.0713 0.7244 +vn -0.6857 -0.0713 0.7244 +vn 0.6857 -0.0713 0.7244 +vn -0.6857 -0.2113 0.6965 +vn 0.6857 -0.2113 0.6965 +vn -0.6857 -0.3430 0.6420 +vn 0.6857 -0.3432 0.6419 +vn -0.6857 -0.4616 0.5627 +vn 0.6857 -0.4618 0.5626 +vn -0.6857 -0.5627 0.4617 +vn 0.6857 -0.5627 0.4617 +vn -0.6857 -0.6420 0.3431 +vn 0.6857 -0.6419 0.3432 +vn -0.6857 -0.6965 0.2113 +vn 0.6857 -0.6965 0.2113 +vn -0.6857 -0.7244 0.0713 +vn 0.6857 -0.7244 0.0713 +vn -0.6857 -0.7244 -0.0713 +vn 0.6857 -0.7244 -0.0713 +vn -0.6857 -0.6966 -0.2112 +vn 0.6857 -0.6965 -0.2114 +vn -0.6857 -0.6419 -0.3432 +vn 0.6857 -0.6420 -0.3430 +vn -0.6857 -0.5626 -0.4617 +vn 0.6857 -0.5626 -0.4617 +vn -0.6857 -0.4617 -0.5626 +vn 0.6857 -0.4617 -0.5626 +vn -0.6857 -0.3431 -0.6419 +vn 0.6857 -0.3431 -0.6419 +vn -0.6857 -0.2113 -0.6965 +vn 0.6857 -0.2113 -0.6965 +vn -0.6857 -0.0713 -0.7244 +vn 0.6857 -0.0713 -0.7244 +vn -0.6857 0.0713 -0.7244 +vn 0.6857 0.0713 -0.7244 +vn -0.6857 0.2113 -0.6965 +vn 0.6857 0.2113 -0.6965 +vn -0.6857 0.4616 -0.5627 +vn 0.6857 0.4618 -0.5626 +vn 0.6857 0.3432 -0.6419 +vn -0.6857 0.3430 -0.6420 +vn -0.6857 0.5626 -0.4617 +vn 0.6857 0.5626 -0.4617 +vn -0.6857 0.6420 -0.3430 +vn 0.6857 0.6419 -0.3432 +vn -0.6857 0.6965 -0.2113 +vn 0.6857 0.6965 -0.2113 +vn -0.6857 0.7244 -0.0713 +vn 0.6857 0.7244 -0.0713 +vn -0.6857 0.6966 0.2112 +vn 0.6857 0.6965 0.2114 +vn 0.6857 0.7244 0.0713 +vn -0.6857 0.7244 0.0713 +vn -0.6857 0.6419 0.3432 +vn 0.6857 0.6420 0.3430 +vn -0.6857 0.5626 0.4617 +vn 0.6857 0.5626 0.4617 +vn -0.2147 0.8614 -0.4604 +vn -0.1087 0.8767 -0.4686 +vn -0.1087 0.9513 -0.2886 +vn -0.2147 0.9346 -0.2835 +vn -0.2147 0.9720 -0.0957 +vn -0.1087 0.9893 -0.0974 +vn -0.2147 0.9720 0.0957 +vn -0.1087 0.9893 0.0974 +vn -0.2147 0.9346 0.2835 +vn -0.1087 0.9513 0.2886 +vn -0.2147 0.8614 0.4604 +vn -0.1087 0.8767 0.4686 +vn -0.2147 0.7550 0.6196 +vn -0.1087 0.7684 0.6306 +vn -0.1087 0.6306 0.7684 +vn -0.2147 0.6196 0.7550 +vn -0.2147 0.4604 0.8614 +vn -0.1087 0.4686 0.8767 +vn -0.2147 0.2835 0.9346 +vn -0.1087 0.2886 0.9513 +vn -0.2147 0.0957 0.9720 +vn -0.1087 0.0974 0.9893 +vn -0.1087 -0.0974 0.9893 +vn -0.2147 -0.0957 0.9720 +vn -0.1087 -0.2886 0.9513 +vn -0.2147 -0.2835 0.9346 +vn -0.2147 -0.4604 0.8614 +vn -0.1087 -0.4686 0.8767 +vn -0.1087 -0.6306 0.7684 +vn -0.2147 -0.6196 0.7550 +vn -0.1087 -0.7684 0.6306 +vn -0.2147 -0.7550 0.6196 +vn -0.2147 -0.8614 0.4604 +vn -0.1087 -0.8767 0.4686 +vn -0.1087 -0.9513 0.2886 +vn -0.2147 -0.9346 0.2835 +vn -0.2147 -0.9720 0.0957 +vn -0.1087 -0.9893 0.0974 +vn -0.1087 -0.9893 -0.0974 +vn -0.2147 -0.9720 -0.0957 +vn -0.2147 -0.9346 -0.2835 +vn -0.1087 -0.9513 -0.2886 +vn -0.1087 -0.8767 -0.4686 +vn -0.2147 -0.8614 -0.4604 +vn -0.1087 -0.7684 -0.6306 +vn -0.2147 -0.7550 -0.6196 +vn -0.1087 -0.6306 -0.7684 +vn -0.2147 -0.6196 -0.7550 +vn -0.1087 -0.4686 -0.8767 +vn -0.2147 -0.4604 -0.8614 +vn -0.1087 -0.2886 -0.9513 +vn -0.2147 -0.2835 -0.9346 +vn -0.1087 -0.0974 -0.9893 +vn -0.2147 -0.0957 -0.9720 +vn -0.2147 0.2835 -0.9346 +vn -0.2147 0.0957 -0.9720 +vn -0.1087 0.0974 -0.9893 +vn -0.1087 0.2886 -0.9513 +vn -0.2147 0.6196 -0.7550 +vn -0.2147 0.4604 -0.8614 +vn -0.1087 0.4686 -0.8767 +vn -0.1087 0.6306 -0.7684 +vn -0.2147 0.7550 -0.6196 +vn -0.1087 0.7684 -0.6306 +vn 0.6857 0.4617 0.5626 +vn -0.6857 0.4617 0.5626 +vn -0.6100 0.3032 0.7321 +vn 0.0000 0.3827 0.9239 +vn 0.0000 0.9914 0.1305 +vn -0.6100 0.7856 0.1034 +vn -0.6100 -0.4824 0.6287 +vn 0.0000 -0.6088 0.7934 +vn 0.0000 0.6087 -0.7934 +vn -0.6100 0.4824 -0.6287 +vn 0.0000 -0.3827 -0.9239 +vn -0.6100 -0.3032 -0.7321 +vn 0.0000 -0.9914 -0.1305 +vn -0.6100 -0.7856 -0.1034 +vn -0.6100 0.7320 0.3034 +vn 0.0000 0.9239 0.3827 +vn 0.0000 0.7934 -0.6087 +vn -0.6100 0.6287 -0.4824 +vn -0.6100 0.1034 0.7856 +vn 0.0000 0.1305 0.9914 +vn 0.0000 -0.1305 -0.9914 +vn -0.6100 -0.1034 -0.7856 +vn 0.0000 -0.9239 -0.3827 +vn -0.6100 -0.7321 -0.3032 +vn 0.0000 -0.7934 0.6087 +vn -0.6100 -0.6288 0.4823 +vn -0.6100 0.7321 -0.3032 +vn 0.0000 0.9239 -0.3827 +vn 0.0000 0.1305 -0.9914 +vn -0.6100 0.1034 -0.7856 +vn -0.6100 0.6287 0.4824 +vn 0.0000 0.7934 0.6088 +vn 0.0000 -0.7934 -0.6087 +vn -0.6100 -0.6287 -0.4824 +vn 0.0000 -0.9239 0.3827 +vn -0.6100 -0.7321 0.3032 +vn 0.0000 -0.1306 0.9914 +vn -0.6100 -0.1034 0.7856 +vn -0.6100 0.3031 -0.7321 +vn 0.0000 0.3827 -0.9239 +vn 0.0000 -0.6087 -0.7934 +vn -0.6100 -0.4824 -0.6287 +vn -0.6100 0.7856 -0.1034 +vn 0.0000 0.9914 -0.1305 +vn 0.0000 -0.9914 0.1305 +vn -0.6100 -0.7856 0.1034 +vn 0.0000 -0.3827 0.9239 +vn -0.6100 -0.3032 0.7321 +vn 0.0000 0.6087 0.7934 +vn -0.6100 0.4824 0.6286 +vn 0.0000 -0.6087 0.7934 +vn -0.6100 0.3033 0.7320 +vn -0.6100 -0.7320 -0.3034 +vn 0.0000 -0.7934 0.6088 +vn -0.6100 -0.6287 0.4824 +vn 0.0000 0.1306 0.9914 +vn -0.6100 0.7321 0.3032 +vn -0.6100 0.6288 -0.4823 +vn 0.0000 -0.1305 0.9914 +vn -0.6100 -0.6286 -0.4825 +vn 0.0000 0.7934 0.6087 +vn -0.6100 0.7322 -0.3030 +vn -0.6100 0.1033 -0.7856 +vn -0.6100 -0.3031 0.7321 +vn -0.6100 0.4824 0.6287 +vn -0.6100 0.3032 -0.7321 +vn -0.6100 -0.4824 -0.6286 +vn 0.0115 -0.4702 0.8825 +vn 0.0071 -0.2889 0.9573 +vn 0.0155 -0.6334 0.7737 +vn 0.0190 -0.7722 0.6350 +vn -0.0025 0.0995 -0.9950 +vn 0.0023 -0.0965 -0.9953 +vn -0.0244 0.9949 0.0978 +vn -0.0244 0.9949 -0.0978 +vn 0.0023 -0.0965 0.9953 +vn -0.0156 0.6352 0.7722 +vn -0.0116 0.4726 0.8812 +vn 0.0071 -0.2889 -0.9573 +vn 0.0115 -0.4702 -0.8825 +vn 0.0190 -0.7722 -0.6350 +vn 0.0155 -0.6334 -0.7737 +vn -0.0235 0.9568 0.2898 +vn -0.0190 0.7735 -0.6335 +vn -0.0156 0.6352 -0.7722 +vn -0.0216 0.8821 -0.4707 +vn -0.0190 0.7735 0.6335 +vn -0.0072 0.2917 0.9565 +vn -0.0025 0.0995 0.9950 +vn 0.0217 -0.8814 0.4719 +vn 0.0235 -0.9565 0.2906 +vn 0.0245 -0.9949 0.0981 +vn 0.0245 -0.9949 -0.0981 +vn 0.0235 -0.9565 -0.2906 +vn 0.0217 -0.8814 -0.4719 +vn -0.0235 0.9568 -0.2898 +vn -0.6100 0.5603 0.5603 +vn 0.0000 0.7071 0.7071 +vn 0.0000 0.9659 -0.2588 +vn -0.6100 0.7654 -0.2051 +vn -0.6100 -0.2051 0.7654 +vn 0.0000 -0.2588 0.9659 +vn 0.0000 0.2588 -0.9659 +vn -0.6100 0.2051 -0.7654 +vn 0.0000 -0.7071 -0.7071 +vn -0.6100 -0.5603 -0.5603 +vn 0.0000 -0.9659 0.2588 +vn -0.6100 -0.7654 0.2051 +vn -0.6100 0.7924 -0.0000 +vn 0.0000 0.5000 -0.8660 +vn -0.6100 0.3962 -0.6862 +vn -0.6100 0.3961 0.6863 +vn 0.0000 0.5000 0.8660 +vn 0.0000 -0.5000 -0.8660 +vn -0.6100 -0.3962 -0.6862 +vn -0.6100 -0.7924 0.0000 +vn 0.0000 -0.5000 0.8660 +vn -0.6100 -0.3962 0.6862 +vn -0.6100 0.5603 -0.5603 +vn 0.0000 0.7071 -0.7071 +vn 0.0000 -0.2588 -0.9659 +vn -0.6100 -0.2051 -0.7654 +vn -0.6100 0.7654 0.2051 +vn 0.0000 0.9659 0.2588 +vn 0.0000 -0.9659 -0.2588 +vn -0.6100 -0.7654 -0.2051 +vn 0.0000 -0.7071 0.7071 +vn -0.6100 -0.5603 0.5603 +vn 0.0000 0.2588 0.9659 +vn -0.6100 0.2051 0.7654 +vn -0.6100 -0.0000 -0.7924 +vn 0.0000 0.0000 -1.0000 +vn 0.0000 -0.8660 -0.5000 +vn -0.6100 -0.6862 -0.3962 +vn -0.6100 0.6861 -0.3963 +vn 0.0000 0.8660 -0.5000 +vn 0.0000 -0.8660 0.5000 +vn -0.6100 -0.6862 0.3962 +vn 0.0000 0.0000 1.0000 +vn -0.6100 0.0000 0.7924 +vn 0.0000 0.8660 0.5000 +vn -0.6100 0.6862 0.3962 +vn -0.6100 -0.3961 -0.6863 +vn -0.6100 0.3962 0.6862 +vn -0.6100 -0.6861 0.3963 +vn -0.6100 0.6862 -0.3962 +vn -0.0216 0.8821 0.4707 +vn 0.0965 -0.0023 0.9953 +vn -0.0995 0.0025 0.9950 +vn -0.0974 0.1087 0.9893 +vn 0.0974 0.1087 0.9893 +vn 0.2889 -0.0071 0.9573 +vn 0.2886 0.1087 0.9513 +vn 0.4702 -0.0115 0.8825 +vn 0.4686 0.1087 0.8767 +vn -0.2917 0.0072 0.9565 +vn -0.2886 0.1087 0.9513 +vn 0.6334 -0.0156 0.7737 +vn 0.6306 0.1087 0.7684 +vn 0.7684 0.1087 0.6306 +vn 0.7722 -0.0190 0.6350 +vn -0.0957 0.2147 0.9720 +vn -0.2835 0.2147 0.9346 +vn 0.0957 0.2147 0.9720 +vn 0.2835 0.2147 0.9346 +vn 0.6334 -0.0156 -0.7737 +vn 0.7722 -0.0190 -0.6350 +vn 0.7684 0.1087 -0.6306 +vn 0.6306 0.1087 -0.7684 +vn -0.4686 0.1087 0.8767 +vn -0.4604 0.2147 0.8614 +vn 0.4604 0.2147 0.8614 +vn 0.8814 -0.0217 0.4719 +vn 0.8767 0.1087 0.4686 +vn -0.6196 0.2147 0.7550 +vn -0.6306 0.1087 0.7684 +vn 0.6196 0.2147 0.7550 +vn 0.9565 -0.0235 0.2906 +vn 0.9513 0.1087 0.2886 +vn -0.7735 0.0190 0.6335 +vn -0.7684 0.1087 0.6306 +vn -0.6352 0.0156 0.7722 +vn -0.7550 0.2147 0.6196 +vn 0.5626 0.6857 0.4617 +vn 0.5626 -0.6857 0.4617 +vn 0.6419 -0.6857 0.3431 +vn 0.6419 0.6857 0.3431 +vn 0.7244 0.6857 0.0713 +vn 0.7244 -0.6857 0.0713 +vn 0.7244 -0.6857 -0.0713 +vn 0.7244 0.6857 -0.0713 +vn 0.7550 0.2147 0.6196 +vn 0.4617 0.6857 0.5626 +vn 0.4617 -0.6857 0.5626 +vn -0.8614 0.2147 0.4604 +vn -0.8767 0.1087 0.4686 +vn 0.6965 -0.6857 -0.2113 +vn 0.6966 0.6857 -0.2112 +vn 0.8614 0.2147 0.4604 +vn 0.3430 0.6857 0.6420 +vn 0.3432 -0.6857 0.6419 +vn 0.9949 -0.0245 -0.0981 +vn 0.9949 -0.0245 0.0981 +vn 0.9893 0.1087 0.0974 +vn 0.9893 0.1087 -0.0974 +vn -0.9949 0.0244 0.0978 +vn -0.9893 0.1087 0.0974 +vn -0.9513 0.1087 0.2886 +vn -0.9568 0.0235 0.2898 +vn -0.9346 0.2147 0.2835 +vn 0.2113 0.6857 0.6965 +vn 0.2113 -0.6857 0.6965 +vn 0.9346 0.2147 0.2835 +vn -0.0713 0.6857 0.7244 +vn -0.0713 -0.6857 0.7244 +vn 0.0713 -0.6857 0.7244 +vn 0.0713 0.6857 0.7244 +vn -0.9720 0.2147 0.0957 +vn 0.6419 -0.6857 -0.3431 +vn 0.6419 0.6857 -0.3431 +vn 0.9720 0.2147 0.0957 +vn -0.2113 0.6857 0.6965 +vn -0.2113 -0.6857 0.6965 +vn 0.8814 -0.0217 -0.4719 +vn 0.9565 -0.0235 -0.2906 +vn 0.9513 0.1087 -0.2886 +vn 0.8767 0.1087 -0.4686 +vn -0.9949 0.0244 -0.0978 +vn -0.9568 0.0235 -0.2898 +vn -0.9513 0.1087 -0.2886 +vn -0.9893 0.1087 -0.0974 +vn -0.9720 0.2147 -0.0957 +vn 0.5626 -0.6857 -0.4617 +vn 0.5626 0.6857 -0.4617 +vn 0.9720 0.2147 -0.0957 +vn -0.3432 0.6857 0.6419 +vn -0.3430 -0.6857 0.6420 +vn -0.7735 0.0190 -0.6335 +vn -0.6352 0.0156 -0.7722 +vn -0.6306 0.1087 -0.7684 +vn -0.7684 0.1087 -0.6306 +vn -0.9346 0.2147 -0.2835 +vn 0.4617 -0.6857 -0.5626 +vn 0.4617 0.6857 -0.5626 +vn 0.9346 0.2147 -0.2835 +vn -0.4617 0.6857 0.5626 +vn -0.4617 -0.6857 0.5626 +vn -0.8614 0.2147 -0.4604 +vn -0.8767 0.1087 -0.4686 +vn 0.3430 -0.6857 -0.6420 +vn 0.3432 0.6857 -0.6419 +vn 0.8614 0.2147 -0.4604 +vn -0.5627 0.6857 0.4617 +vn -0.5627 -0.6857 0.4617 +vn -0.7550 0.2147 -0.6196 +vn 0.2113 0.6857 -0.6965 +vn 0.2113 -0.6857 -0.6965 +vn 0.0713 -0.6857 -0.7244 +vn 0.0713 0.6857 -0.7244 +vn 0.7550 0.2147 -0.6196 +vn 0.0965 -0.0023 -0.9953 +vn 0.0974 0.1087 -0.9893 +vn -0.0974 0.1087 -0.9893 +vn -0.0995 0.0025 -0.9950 +vn -0.6196 0.2147 -0.7550 +vn -0.0713 -0.6857 -0.7244 +vn -0.0713 0.6857 -0.7244 +vn 0.6965 -0.6857 0.2113 +vn 0.6965 0.6857 0.2113 +vn 0.6196 0.2147 -0.7550 +vn -0.6419 0.6857 0.3431 +vn -0.6419 -0.6857 0.3431 +vn 0.4686 0.1087 -0.8767 +vn 0.4702 -0.0115 -0.8825 +vn -0.2917 0.0072 -0.9565 +vn -0.2886 0.1087 -0.9513 +vn -0.4604 0.2147 -0.8614 +vn -0.4686 0.1087 -0.8767 +vn -0.2113 -0.6857 -0.6965 +vn -0.2113 0.6857 -0.6965 +vn 0.4604 0.2147 -0.8614 +vn -0.6965 0.6857 0.2113 +vn -0.6965 -0.6857 0.2113 +vn -0.2835 0.2147 -0.9346 +vn -0.3432 -0.6857 -0.6419 +vn -0.3430 0.6857 -0.6420 +vn 0.2835 0.2147 -0.9346 +vn 0.2886 0.1087 -0.9513 +vn -0.7244 0.6857 0.0713 +vn -0.7244 -0.6857 0.0713 +vn -0.0957 0.2147 -0.9720 +vn -0.4617 -0.6857 -0.5626 +vn -0.4617 0.6857 -0.5626 +vn 0.0957 0.2147 -0.9720 +vn -0.7244 0.6857 -0.0713 +vn -0.7244 -0.6857 -0.0713 +vn -0.6965 0.6857 -0.2114 +vn -0.6965 -0.6857 -0.2113 +vn -0.5626 -0.6857 -0.4617 +vn -0.5626 0.6857 -0.4617 +vn -0.6419 0.6857 -0.3431 +vn -0.6419 -0.6857 -0.3431 +vn 0.3032 0.6100 -0.7321 +vn 0.3827 -0.0000 -0.9239 +vn -0.6087 -0.0000 -0.7934 +vn -0.4824 0.6100 -0.6287 +vn 0.7856 0.6100 -0.1034 +vn 0.9914 -0.0000 -0.1305 +vn -0.9914 0.0000 0.1305 +vn -0.7856 0.6100 0.1034 +vn -0.3827 0.0000 0.9239 +vn -0.3033 0.6100 0.7321 +vn 0.6087 0.0000 0.7934 +vn 0.4824 0.6100 0.6287 +vn 0.7321 0.6100 -0.3032 +vn 0.9239 0.0000 -0.3827 +vn 0.1305 0.0000 -0.9914 +vn 0.1034 0.6100 -0.7856 +vn 0.6287 0.6100 0.4824 +vn 0.7934 0.0000 0.6088 +vn -0.7934 0.0000 -0.6087 +vn -0.6287 0.6100 -0.4824 +vn -0.9239 0.0000 0.3827 +vn -0.7321 0.6100 0.3032 +vn -0.1306 0.0000 0.9914 +vn -0.1035 0.6100 0.7856 +vn 0.7321 0.6100 0.3031 +vn 0.9239 0.0000 0.3827 +vn 0.7934 0.0000 -0.6088 +vn 0.6287 0.6100 -0.4824 +vn 0.1035 0.6100 0.7856 +vn 0.1305 0.0000 0.9914 +vn -0.1306 0.0000 -0.9914 +vn -0.1034 0.6100 -0.7856 +vn -0.9239 0.0000 -0.3827 +vn -0.7321 0.6100 -0.3032 +vn -0.7934 0.0000 0.6087 +vn -0.6287 0.6100 0.4824 +vn 0.3032 0.6100 0.7321 +vn 0.3826 0.0000 0.9239 +vn 0.9914 0.0000 0.1305 +vn 0.7856 0.6100 0.1034 +vn -0.4824 0.6100 0.6287 +vn -0.6088 0.0000 0.7933 +vn 0.6087 -0.0000 -0.7934 +vn 0.4824 0.6100 -0.6287 +vn -0.3827 -0.0000 -0.9239 +vn -0.3031 0.6100 -0.7321 +vn -0.9914 -0.0000 -0.1305 +vn -0.7856 0.6100 -0.1034 +vn -0.3032 0.6100 0.7321 +vn 0.6088 -0.0001 0.7933 +vn 0.4823 0.6100 0.6288 +vn 0.9914 -0.0000 -0.1306 +vn -0.1305 0.0000 0.9914 +vn -0.1034 0.6100 0.7856 +vn -0.7934 0.0000 -0.6088 +vn 0.7934 0.0000 0.6087 +vn 0.7321 0.6100 -0.3033 +vn 0.1306 0.0000 -0.9914 +vn -0.7934 0.0000 0.6088 +vn -0.1033 0.6100 -0.7856 +vn -0.1305 0.0000 -0.9914 +vn 0.1306 0.0000 0.9914 +vn 0.1034 0.6100 0.7856 +vn 0.7321 0.6100 0.3032 +vn 0.7934 0.0000 -0.6087 +vn -0.3032 0.6100 -0.7321 +vn 0.6088 0.0000 -0.7934 +vn -0.6087 0.0000 0.7934 +vn -0.4825 0.6100 0.6286 +vn 0.3827 -0.0000 0.9239 +vn 0.3033 0.6100 0.7320 +vn 0.9915 -0.0000 0.1305 +vn 0.7856 0.6100 0.1033 +vn -0.8821 0.0216 0.4707 +vn -0.8821 0.0216 -0.4707 +vn 0.2889 -0.0071 -0.9573 +vn -0.4726 0.0116 -0.8812 +vn 0.5603 0.6100 -0.5603 +vn 0.7071 0.0000 -0.7071 +vn -0.2588 0.0000 -0.9659 +vn -0.2051 0.6100 -0.7654 +vn 0.7654 0.6100 0.2051 +vn 0.9659 0.0000 0.2588 +vn -0.9659 0.0000 -0.2588 +vn -0.7654 0.6100 -0.2051 +vn -0.7071 0.0000 0.7071 +vn -0.5603 0.6100 0.5603 +vn 0.2588 0.0000 0.9659 +vn 0.2051 0.6100 0.7654 +vn 0.7924 0.6100 -0.0000 +vn 0.5000 0.0000 -0.8660 +vn 0.3962 0.6100 -0.6862 +vn 0.3962 0.6100 0.6862 +vn 0.5000 0.0000 0.8660 +vn -0.5000 0.0000 -0.8660 +vn -0.3962 0.6100 -0.6862 +vn -0.7924 0.6100 0.0000 +vn -0.5000 0.0000 0.8660 +vn -0.3962 0.6100 0.6862 +vn 0.5603 0.6100 0.5603 +vn 0.7071 0.0000 0.7071 +vn 0.9659 0.0000 -0.2588 +vn 0.7654 0.6100 -0.2051 +vn -0.2051 0.6100 0.7654 +vn -0.2588 0.0000 0.9659 +vn 0.2588 0.0000 -0.9659 +vn 0.2051 0.6100 -0.7654 +vn -0.7071 0.0000 -0.7071 +vn -0.5603 0.6100 -0.5603 +vn -0.9659 0.0000 0.2588 +vn -0.7654 0.6100 0.2051 +vn 0.0000 0.6100 0.7924 +vn 0.8660 -0.0000 0.5000 +vn 0.6862 0.6100 0.3962 +vn -0.6862 0.6100 0.3962 +vn -0.8660 -0.0000 0.5000 +vn 0.8660 -0.0000 -0.5000 +vn 0.6863 0.6100 -0.3961 +vn -0.0000 0.6100 -0.7924 +vn -0.8660 -0.0000 -0.5000 +vn -0.6862 0.6100 -0.3962 +vn -0.6861 0.6100 -0.3963 +vn 0.6862 0.6100 -0.3962 +vn -0.4726 0.0116 0.8812 +vn -0.0116 0.4726 -0.8812 +vn -0.0072 0.2917 -0.9565 +vn -0.0287 0.2917 0.9561 +vn -0.0099 0.1006 0.9949 +vn -0.0865 0.8783 0.4701 +vn -0.0759 0.7705 0.6329 +vn -0.0975 0.9904 -0.0977 +vn -0.0975 0.9904 0.0977 +vn -0.0464 0.4715 0.8806 +vn -0.0938 0.9526 0.2894 +vn 0.0093 -0.0945 -0.9955 +vn -0.0099 0.1005 -0.9949 +vn -0.0624 0.6332 0.7715 +vn -0.0938 0.9526 -0.2894 +vn 0.0620 -0.6295 0.7745 +vn 0.0756 -0.7681 0.6359 +vn -0.0759 0.7705 -0.6329 +vn -0.0865 0.8783 -0.4701 +vn 0.0460 -0.4668 0.8832 +vn -0.0287 0.2917 -0.9561 +vn -0.0464 0.4715 -0.8806 +vn -0.0624 0.6332 -0.7715 +vn 0.0282 -0.2861 0.9578 +vn 0.0620 -0.6295 -0.7745 +vn 0.0460 -0.4668 -0.8832 +vn 0.0864 -0.8770 -0.4727 +vn 0.0756 -0.7681 -0.6359 +vn 0.0282 -0.2861 -0.9578 +vn 0.0938 -0.9521 -0.2911 +vn 0.0975 -0.9904 -0.0983 +vn 0.0975 -0.9904 0.0983 +vn 0.0938 -0.9521 0.2911 +vn 0.0864 -0.8770 0.4727 +vn 0.0093 -0.0945 0.9955 +vn -0.1942 0.9761 0.0977 +vn -0.1867 0.9388 0.2894 +vn 0.1941 -0.9760 0.0983 +vn 0.1941 -0.9760 -0.0983 +vn 0.1506 -0.7569 -0.6359 +vn 0.1234 -0.6204 -0.7745 +vn 0.1866 -0.9383 0.2911 +vn -0.0572 0.2874 -0.9561 +vn -0.0924 0.4647 -0.8806 +vn 0.1719 -0.8643 0.4727 +vn 0.0915 -0.4600 -0.8832 +vn 0.0561 -0.2819 -0.9578 +vn 0.1506 -0.7569 0.6359 +vn -0.1241 0.6240 0.7715 +vn -0.0924 0.4647 0.8806 +vn -0.0197 0.0991 0.9949 +vn 0.0185 -0.0931 0.9955 +vn 0.0561 -0.2819 0.9578 +vn -0.0572 0.2874 0.9561 +vn -0.1722 0.8656 0.4701 +vn -0.1510 0.7594 0.6329 +vn -0.1942 0.9761 -0.0977 +vn 0.0185 -0.0931 -0.9955 +vn -0.0197 0.0991 -0.9949 +vn -0.1867 0.9388 -0.2894 +vn 0.1234 -0.6204 0.7745 +vn -0.1510 0.7594 -0.6329 +vn -0.1722 0.8656 -0.4701 +vn 0.0915 -0.4600 0.8832 +vn -0.1241 0.6240 -0.7715 +vn 0.1719 -0.8643 -0.4727 +vn 0.1866 -0.9383 -0.2911 +vn 0.1361 -0.4488 -0.8832 +vn 0.0834 -0.2751 -0.9578 +vn 0.2240 -0.7385 0.6359 +vn 0.2558 -0.8433 0.4727 +vn -0.1847 0.6088 0.7715 +vn -0.1375 0.4534 0.8806 +vn -0.0293 0.0967 0.9949 +vn 0.0276 -0.0909 0.9955 +vn 0.0834 -0.2751 0.9578 +vn -0.0851 0.2805 0.9561 +vn -0.2562 0.8446 0.4701 +vn -0.2247 0.7409 0.6329 +vn -0.2889 0.9524 -0.0977 +vn -0.2889 0.9524 0.0977 +vn -0.2779 0.9160 0.2894 +vn 0.0276 -0.0909 -0.9955 +vn -0.0293 0.0967 -0.9949 +vn -0.2779 0.9160 -0.2894 +vn 0.1836 -0.6053 0.7745 +vn -0.2247 0.7409 -0.6329 +vn -0.2562 0.8446 -0.4701 +vn 0.1361 -0.4488 0.8832 +vn -0.0851 0.2805 -0.9561 +vn -0.1375 0.4534 -0.8806 +vn -0.1847 0.6088 -0.7715 +vn 0.1836 -0.6053 -0.7745 +vn 0.2558 -0.8433 -0.4727 +vn 0.2240 -0.7385 -0.6359 +vn 0.2777 -0.9155 -0.2911 +vn 0.2889 -0.9523 -0.0983 +vn 0.2889 -0.9523 0.0983 +vn 0.2777 -0.9155 0.2911 +vn -0.3809 0.9195 -0.0977 +vn -0.3809 0.9195 0.0977 +vn -0.1813 0.4377 0.8806 +vn -0.1122 0.2708 0.9561 +vn -0.3663 0.8843 0.2894 +vn -0.3378 0.8154 0.4701 +vn 0.0363 -0.0877 -0.9955 +vn -0.0387 0.0933 -0.9949 +vn -0.2963 0.7153 0.6329 +vn -0.2435 0.5878 0.7715 +vn -0.3663 0.8843 -0.2894 +vn 0.2421 -0.5844 0.7745 +vn 0.2953 -0.7130 0.6359 +vn -0.2963 0.7153 -0.6329 +vn -0.3378 0.8154 -0.4701 +vn 0.1795 -0.4333 0.8832 +vn -0.1122 0.2708 -0.9561 +vn -0.1813 0.4377 -0.8806 +vn -0.2435 0.5878 -0.7715 +vn 0.1100 -0.2656 0.9578 +vn 0.2421 -0.5844 -0.7745 +vn 0.1795 -0.4333 -0.8832 +vn 0.3372 -0.8142 -0.4727 +vn 0.2953 -0.7130 -0.6359 +vn 0.1100 -0.2656 -0.9578 +vn 0.3661 -0.8839 -0.2911 +vn 0.3808 -0.9194 -0.0983 +vn 0.3808 -0.9194 0.0983 +vn 0.3661 -0.8839 0.2911 +vn 0.3372 -0.8142 0.4727 +vn -0.0387 0.0933 0.9949 +vn 0.0363 -0.0877 0.9955 +vn 0.2211 -0.4136 0.8832 +vn 0.2982 -0.5579 0.7745 +vn -0.0476 0.0891 -0.9949 +vn -0.1382 0.2585 -0.9561 +vn -0.2233 0.4178 -0.8806 +vn -0.2999 0.5611 -0.7715 +vn 0.1355 -0.2535 0.9578 +vn 0.2982 -0.5579 -0.7745 +vn 0.2211 -0.4136 -0.8832 +vn 0.4154 -0.7772 -0.4727 +vn 0.3638 -0.6806 -0.6359 +vn 0.1355 -0.2535 -0.9578 +vn 0.0448 -0.0838 -0.9955 +vn 0.4510 -0.8437 -0.2911 +vn -0.3650 0.6828 -0.6329 +vn 0.4691 -0.8776 -0.0983 +vn -0.4691 0.8777 0.0977 +vn -0.4512 0.8442 0.2894 +vn 0.4691 -0.8776 0.0983 +vn 0.4510 -0.8437 0.2911 +vn 0.4154 -0.7772 0.4727 +vn 0.3638 -0.6806 0.6359 +vn -0.2999 0.5611 0.7715 +vn -0.2233 0.4178 0.8806 +vn -0.0476 0.0891 0.9949 +vn 0.0448 -0.0838 0.9955 +vn -0.1382 0.2585 0.9561 +vn -0.4161 0.7784 0.4701 +vn -0.3650 0.6828 0.6329 +vn -0.4691 0.8777 -0.0977 +vn -0.4512 0.8442 -0.2894 +vn -0.4161 0.7784 -0.4701 +vn -0.3535 0.5290 -0.7715 +vn -0.4301 0.6438 -0.6329 +vn 0.5529 -0.8274 -0.0983 +vn 0.5315 -0.7955 -0.2911 +vn -0.5529 0.8275 0.0977 +vn -0.5318 0.7959 0.2894 +vn 0.5529 -0.8274 0.0983 +vn 0.4288 -0.6417 -0.6359 +vn 0.3514 -0.5260 -0.7745 +vn 0.5315 -0.7955 0.2911 +vn -0.1628 0.2437 -0.9561 +vn -0.2632 0.3939 -0.8806 +vn 0.4896 -0.7327 0.4727 +vn 0.2606 -0.3900 -0.8832 +vn 0.1597 -0.2390 -0.9578 +vn 0.4288 -0.6417 0.6359 +vn -0.3535 0.5290 0.7715 +vn -0.2632 0.3939 0.8806 +vn -0.0561 0.0840 0.9949 +vn 0.0528 -0.0790 0.9955 +vn 0.1597 -0.2390 0.9578 +vn -0.1628 0.2437 0.9561 +vn -0.4903 0.7339 0.4701 +vn -0.4301 0.6438 0.6329 +vn -0.5529 0.8275 -0.0977 +vn 0.0528 -0.0790 -0.9955 +vn -0.0561 0.0840 -0.9949 +vn -0.5318 0.7959 -0.2894 +vn 0.3514 -0.5260 0.7745 +vn -0.4903 0.7339 -0.4701 +vn 0.2606 -0.3900 0.8832 +vn 0.4896 -0.7327 -0.4727 +vn -0.1859 0.2265 -0.9561 +vn -0.3006 0.3662 -0.8806 +vn 0.5590 -0.6812 0.4727 +vn 0.6069 -0.7395 0.2911 +vn 0.2975 -0.3626 -0.8832 +vn 0.1824 -0.2222 -0.9578 +vn 0.4896 -0.5966 0.6359 +vn -0.4036 0.4918 0.7715 +vn -0.3006 0.3662 0.8806 +vn -0.0641 0.0781 0.9949 +vn 0.0602 -0.0734 0.9955 +vn 0.1824 -0.2222 0.9578 +vn -0.1859 0.2265 0.9561 +vn -0.5599 0.6823 0.4701 +vn -0.4912 0.5985 0.6329 +vn -0.6314 0.7693 -0.0977 +vn -0.6314 0.7693 0.0977 +vn -0.6072 0.7399 0.2894 +vn 0.0602 -0.0734 -0.9955 +vn -0.0641 0.0781 -0.9949 +vn -0.6072 0.7399 -0.2894 +vn 0.4013 -0.4890 0.7745 +vn -0.4912 0.5985 -0.6329 +vn -0.5599 0.6823 -0.4701 +vn 0.2975 -0.3626 0.8832 +vn -0.4036 0.4918 -0.7715 +vn 0.4013 -0.4890 -0.7745 +vn 0.5590 -0.6812 -0.4727 +vn 0.4896 -0.5966 -0.6359 +vn 0.6069 -0.7395 -0.2911 +vn 0.6313 -0.7693 -0.0983 +vn 0.6313 -0.7693 0.0983 +vn 0.0672 -0.0672 0.9955 +vn 0.2033 -0.2033 0.9578 +vn -0.2072 0.2072 0.9561 +vn -0.0714 0.0714 0.9949 +vn -0.6241 0.6241 0.4701 +vn -0.5475 0.5475 0.6329 +vn -0.7037 0.7037 -0.0977 +vn -0.7037 0.7037 0.0977 +vn -0.3350 0.3350 0.8806 +vn -0.6768 0.6768 0.2894 +vn 0.0672 -0.0672 -0.9955 +vn -0.0714 0.0714 -0.9949 +vn -0.4499 0.4499 0.7715 +vn -0.6768 0.6768 -0.2894 +vn 0.4473 -0.4473 0.7745 +vn 0.5457 -0.5457 0.6359 +vn -0.5475 0.5475 -0.6329 +vn -0.6241 0.6241 -0.4701 +vn 0.3316 -0.3316 0.8832 +vn -0.2072 0.2072 -0.9561 +vn -0.3350 0.3350 -0.8806 +vn -0.4499 0.4499 -0.7715 +vn 0.4473 -0.4473 -0.7745 +vn 0.3316 -0.3316 -0.8832 +vn 0.6231 -0.6231 -0.4727 +vn 0.5457 -0.5457 -0.6359 +vn 0.2033 -0.2033 -0.9578 +vn 0.6765 -0.6765 -0.2911 +vn 0.7037 -0.7037 -0.0983 +vn 0.7037 -0.7037 0.0983 +vn 0.6765 -0.6765 0.2911 +vn 0.6231 -0.6231 0.4727 +vn -0.7399 0.6072 -0.2894 +vn -0.7693 0.6314 -0.0977 +vn 0.4890 -0.4013 0.7745 +vn 0.5966 -0.4896 0.6359 +vn -0.5985 0.4912 -0.6329 +vn -0.6823 0.5599 -0.4701 +vn 0.3626 -0.2975 0.8832 +vn -0.0781 0.0641 -0.9949 +vn -0.2266 0.1859 -0.9561 +vn -0.3662 0.3006 -0.8806 +vn -0.4918 0.4036 -0.7715 +vn 0.2222 -0.1824 0.9578 +vn 0.4890 -0.4013 -0.7745 +vn 0.3626 -0.2975 -0.8832 +vn 0.6812 -0.5591 -0.4727 +vn 0.5966 -0.4896 -0.6359 +vn 0.2222 -0.1824 -0.9578 +vn 0.0734 -0.0602 -0.9955 +vn 0.7395 -0.6069 -0.2911 +vn 0.7693 -0.6313 -0.0983 +vn -0.7693 0.6314 0.0977 +vn -0.7399 0.6072 0.2894 +vn 0.7693 -0.6313 0.0983 +vn 0.7395 -0.6069 0.2911 +vn 0.6812 -0.5591 0.4727 +vn -0.4918 0.4036 0.7715 +vn -0.3662 0.3006 0.8806 +vn -0.0781 0.0641 0.9949 +vn 0.0734 -0.0602 0.9955 +vn -0.2266 0.1859 0.9561 +vn -0.6823 0.5599 0.4701 +vn -0.5985 0.4912 0.6329 +vn 0.7327 -0.4896 -0.4727 +vn 0.6417 -0.4288 -0.6359 +vn 0.2390 -0.1597 -0.9578 +vn 0.0790 -0.0528 -0.9955 +vn 0.7954 -0.5315 -0.2911 +vn -0.5290 0.3535 -0.7715 +vn -0.6438 0.4301 -0.6329 +vn 0.8274 -0.5529 -0.0983 +vn -0.8275 0.5529 0.0977 +vn -0.7959 0.5318 0.2894 +vn 0.8274 -0.5529 0.0983 +vn 0.5260 -0.3514 -0.7745 +vn 0.7955 -0.5315 0.2911 +vn -0.2437 0.1628 -0.9561 +vn -0.3939 0.2632 -0.8806 +vn 0.7327 -0.4896 0.4727 +vn 0.3900 -0.2606 -0.8832 +vn 0.6417 -0.4288 0.6359 +vn -0.5290 0.3535 0.7715 +vn -0.3939 0.2632 0.8806 +vn -0.0840 0.0561 0.9949 +vn 0.0790 -0.0528 0.9955 +vn 0.2390 -0.1597 0.9578 +vn -0.2437 0.1628 0.9561 +vn -0.7338 0.4903 0.4701 +vn -0.6438 0.4301 0.6329 +vn -0.8275 0.5529 -0.0977 +vn -0.0840 0.0561 -0.9949 +vn -0.7959 0.5318 -0.2894 +vn 0.5260 -0.3514 0.7745 +vn -0.7339 0.4903 -0.4701 +vn 0.3900 -0.2606 0.8832 +vn 0.6806 -0.3638 -0.6359 +vn 0.5579 -0.2982 -0.7745 +vn 0.8437 -0.4510 0.2911 +vn 0.8776 -0.4691 0.0983 +vn -0.2585 0.1382 -0.9561 +vn -0.4178 0.2233 -0.8806 +vn 0.7772 -0.4154 0.4727 +vn 0.4136 -0.2211 -0.8832 +vn 0.2535 -0.1355 -0.9578 +vn 0.6806 -0.3638 0.6359 +vn -0.5611 0.2999 0.7715 +vn -0.4178 0.2233 0.8806 +vn -0.0891 0.0476 0.9949 +vn 0.0838 -0.0448 0.9955 +vn 0.2535 -0.1355 0.9578 +vn -0.2585 0.1382 0.9561 +vn -0.7784 0.4161 0.4701 +vn -0.6828 0.3650 0.6329 +vn -0.8777 0.4691 -0.0977 +vn -0.8777 0.4691 0.0977 +vn -0.8442 0.4512 0.2894 +vn 0.0838 -0.0448 -0.9955 +vn -0.0891 0.0476 -0.9949 +vn -0.8442 0.4512 -0.2894 +vn 0.5579 -0.2982 0.7745 +vn -0.6828 0.3650 -0.6329 +vn -0.7784 0.4161 -0.4701 +vn 0.4136 -0.2211 0.8832 +vn -0.5611 0.2999 -0.7715 +vn 0.7772 -0.4154 -0.4727 +vn 0.8437 -0.4510 -0.2911 +vn 0.8776 -0.4691 -0.0983 +vn -0.5878 0.2435 0.7715 +vn -0.4377 0.1813 0.8806 +vn -0.0933 0.0387 0.9949 +vn 0.0877 -0.0363 0.9955 +vn 0.2656 -0.1100 0.9578 +vn -0.2708 0.1122 0.9561 +vn -0.8154 0.3378 0.4701 +vn -0.7153 0.2963 0.6329 +vn -0.9195 0.3809 -0.0977 +vn -0.9195 0.3809 0.0977 +vn -0.8843 0.3663 0.2894 +vn 0.0877 -0.0363 -0.9955 +vn -0.0933 0.0387 -0.9949 +vn -0.8843 0.3663 -0.2894 +vn 0.5844 -0.2421 0.7745 +vn 0.7130 -0.2953 0.6359 +vn -0.7153 0.2963 -0.6329 +vn -0.8154 0.3378 -0.4701 +vn 0.4333 -0.1795 0.8832 +vn -0.2708 0.1122 -0.9561 +vn -0.4377 0.1813 -0.8806 +vn -0.5878 0.2435 -0.7715 +vn 0.5844 -0.2421 -0.7745 +vn 0.4333 -0.1795 -0.8832 +vn 0.8142 -0.3372 -0.4727 +vn 0.7130 -0.2953 -0.6359 +vn 0.2656 -0.1100 -0.9578 +vn 0.8839 -0.3661 -0.2911 +vn 0.9194 -0.3808 -0.0983 +vn 0.9194 -0.3808 0.0983 +vn 0.8839 -0.3661 0.2911 +vn 0.8142 -0.3372 0.4727 +vn -0.9160 0.2779 0.2894 +vn -0.8446 0.2562 0.4701 +vn 0.0909 -0.0276 -0.9955 +vn -0.0967 0.0293 -0.9949 +vn -0.7409 0.2247 0.6329 +vn -0.6088 0.1847 0.7715 +vn -0.9160 0.2779 -0.2894 +vn -0.9524 0.2889 -0.0977 +vn 0.6053 -0.1836 0.7745 +vn 0.7385 -0.2240 0.6359 +vn -0.7409 0.2247 -0.6329 +vn -0.8446 0.2562 -0.4701 +vn 0.4488 -0.1361 0.8832 +vn -0.2805 0.0851 -0.9561 +vn -0.4534 0.1375 -0.8806 +vn -0.6088 0.1847 -0.7715 +vn 0.2751 -0.0834 0.9578 +vn 0.6053 -0.1836 -0.7745 +vn 0.4488 -0.1361 -0.8832 +vn 0.8433 -0.2558 -0.4727 +vn 0.7385 -0.2240 -0.6359 +vn 0.2751 -0.0834 -0.9578 +vn 0.9155 -0.2777 -0.2911 +vn 0.9523 -0.2889 -0.0983 +vn -0.9524 0.2889 0.0977 +vn 0.9523 -0.2889 0.0983 +vn 0.9155 -0.2777 0.2911 +vn 0.8433 -0.2558 0.4727 +vn -0.4534 0.1375 0.8806 +vn -0.0967 0.0293 0.9949 +vn 0.0909 -0.0276 0.9955 +vn -0.2805 0.0851 0.9561 +vn -0.4647 0.0924 -0.8806 +vn -0.6240 0.1241 -0.7715 +vn 0.2819 -0.0561 0.9578 +vn 0.4600 -0.0915 0.8832 +vn 0.6204 -0.1234 -0.7745 +vn 0.4600 -0.0915 -0.8832 +vn 0.8643 -0.1719 -0.4727 +vn 0.7569 -0.1506 -0.6359 +vn 0.2819 -0.0561 -0.9578 +vn 0.0931 -0.0185 -0.9955 +vn 0.9383 -0.1866 -0.2911 +vn -0.7594 0.1510 -0.6329 +vn 0.9760 -0.1941 -0.0983 +vn -0.9761 0.1942 0.0977 +vn -0.9388 0.1867 0.2894 +vn 0.9760 -0.1941 0.0983 +vn 0.9383 -0.1866 0.2911 +vn -0.2874 0.0572 -0.9561 +vn 0.8643 -0.1719 0.4727 +vn 0.7569 -0.1506 0.6359 +vn -0.6240 0.1241 0.7715 +vn -0.4647 0.0924 0.8806 +vn -0.0991 0.0197 0.9949 +vn 0.0931 -0.0185 0.9955 +vn -0.2874 0.0572 0.9561 +vn -0.8656 0.1722 0.4701 +vn -0.7594 0.1510 0.6329 +vn -0.9761 0.1942 -0.0977 +vn -0.0991 0.0197 -0.9949 +vn -0.9388 0.1867 -0.2894 +vn 0.6204 -0.1234 0.7745 +vn -0.8656 0.1722 -0.4701 +vn 0.9904 -0.0976 -0.0983 +vn 0.9521 -0.0938 -0.2911 +vn -0.9904 0.0976 0.0977 +vn -0.9526 0.0938 0.2894 +vn 0.9904 -0.0976 0.0983 +vn 0.7681 -0.0757 -0.6359 +vn 0.6295 -0.0620 -0.7745 +vn 0.9521 -0.0938 0.2911 +vn -0.2917 0.0287 -0.9561 +vn -0.4715 0.0464 -0.8806 +vn 0.8770 -0.0864 0.4727 +vn 0.4668 -0.0460 -0.8832 +vn 0.2861 -0.0282 -0.9578 +vn 0.7681 -0.0757 0.6359 +vn -0.6332 0.0624 0.7715 +vn -0.4715 0.0464 0.8806 +vn -0.1005 0.0099 0.9949 +vn 0.0945 -0.0093 0.9955 +vn 0.2861 -0.0282 0.9578 +vn -0.2917 0.0287 0.9561 +vn -0.8783 0.0865 0.4701 +vn -0.7705 0.0759 0.6329 +vn -0.9904 0.0976 -0.0977 +vn 0.0945 -0.0093 -0.9955 +vn -0.1006 0.0099 -0.9949 +vn -0.9526 0.0938 -0.2894 +vn 0.6295 -0.0620 0.7745 +vn -0.7705 0.0759 -0.6329 +vn -0.8783 0.0865 -0.4701 +vn 0.4668 -0.0460 0.8832 +vn -0.6332 0.0624 -0.7715 +vn 0.8770 -0.0864 -0.4727 +g Pipe_Cylinder.002_None.001_Pipe_Cylinder.002_None.001_None +s off +f 1/1/1 2/2/1 3/3/1 4/4/1 5/5/1 6/6/1 +f 7/7/1 8/8/1 9/9/1 10/10/1 11/11/1 12/12/1 +f 13/13/1 14/14/1 15/15/1 16/16/1 17/17/1 18/18/1 +f 19/19/1 20/20/1 21/21/1 22/22/1 23/23/1 24/24/1 +f 25/25/1 26/26/1 27/27/1 28/28/1 29/29/1 30/30/1 +f 31/31/1 32/32/1 33/33/1 34/34/1 35/35/1 36/36/1 +f 37/37/1 38/38/1 39/39/1 40/40/1 41/41/1 42/42/1 +f 43/43/1 44/44/1 45/45/1 46/46/1 47/47/1 48/48/1 +f 49/49/1 50/50/1 51/51/1 52/52/1 53/53/1 54/54/1 55/55/1 56/56/1 57/57/1 58/58/1 59/59/1 60/60/1 61/61/1 62/62/1 63/63/1 64/64/1 65/65/1 66/66/1 67/67/1 68/68/1 69/69/1 70/70/1 71/71/1 72/72/1 73/73/1 74/74/1 75/75/1 76/76/1 77/77/1 78/78/1 79/79/1 80/80/1 +f 81/81/2 82/82/2 83/83/2 84/84/2 85/85/2 86/86/2 87/87/2 88/88/2 89/89/2 90/90/2 91/91/2 92/92/2 93/93/2 94/94/2 95/95/2 96/96/2 97/97/2 98/98/2 99/99/2 100/100/2 101/101/2 102/102/2 103/103/2 104/104/2 105/105/2 106/106/2 107/107/2 108/108/2 109/109/2 110/110/2 111/111/2 112/112/2 +f 113/113/1 114/114/1 115/115/1 116/116/1 117/117/1 118/118/1 +f 119/119/1 120/120/1 121/121/1 122/122/1 123/123/1 124/124/1 +f 125/125/1 126/126/1 127/127/1 128/128/1 129/129/1 130/130/1 +f 131/131/1 132/132/1 133/133/1 134/134/1 135/135/1 136/136/1 +f 137/137/1 138/138/1 139/139/1 140/140/1 141/141/1 142/142/1 +f 143/143/1 144/144/1 145/145/1 146/146/1 147/147/1 148/148/1 +f 149/149/1 150/150/1 151/151/1 152/152/1 153/153/1 154/154/1 +f 155/155/1 156/156/1 157/157/1 158/158/1 159/159/1 160/160/1 +f 161/161/3 162/162/3 163/163/3 164/164/3 165/165/3 166/166/3 +f 167/167/3 168/168/3 169/169/3 170/170/3 171/171/3 172/172/3 +f 173/173/3 174/174/3 175/175/3 176/176/3 177/177/3 178/178/3 +f 179/179/3 180/180/3 181/181/3 182/182/3 183/183/3 184/184/3 +f 185/185/3 186/186/3 187/187/3 188/188/3 189/189/3 190/190/3 +f 191/191/3 192/192/3 193/193/3 194/194/3 195/195/3 196/196/3 +f 197/197/3 198/198/3 199/199/3 200/200/3 201/201/3 202/202/3 +f 203/203/3 204/204/3 205/205/3 206/206/3 207/207/3 208/208/3 +f 209/209/3 210/210/3 211/211/3 212/212/3 213/213/3 214/214/3 215/215/3 216/216/3 217/217/3 218/218/3 219/219/3 220/220/3 221/221/3 222/222/3 223/223/3 224/224/3 225/225/3 226/226/3 227/227/3 228/228/3 229/229/3 230/230/3 231/231/3 232/232/3 233/233/3 234/234/3 235/235/3 236/236/3 237/237/3 238/238/3 239/239/3 240/240/3 +f 241/241/4 242/242/4 243/243/4 244/244/4 245/245/4 246/246/4 247/247/4 248/248/4 249/249/4 250/250/4 251/251/4 252/252/4 253/253/4 254/254/4 255/255/4 256/256/4 257/257/4 258/258/4 259/259/4 260/260/4 261/261/4 262/262/4 263/263/4 264/264/4 265/265/4 266/266/4 267/267/4 268/268/4 269/269/4 270/270/4 271/271/4 272/272/4 +f 273/273/3 274/274/3 275/275/3 276/276/3 277/277/3 278/278/3 +f 279/279/3 280/280/3 281/281/3 282/282/3 283/283/3 284/284/3 +f 285/285/3 286/286/3 287/287/3 288/288/3 289/289/3 290/290/3 +f 291/291/3 292/292/3 293/293/3 294/294/3 295/295/3 296/296/3 +f 297/297/3 298/298/3 299/299/3 300/300/3 301/301/3 302/302/3 +f 303/303/3 304/304/3 305/305/3 306/306/3 307/307/3 308/308/3 +f 309/309/3 310/310/3 311/311/3 312/312/3 313/313/3 314/314/3 +f 315/315/3 316/316/3 317/317/3 318/318/3 319/319/3 320/320/3 +s 1 +f 79/321/5 102/322/6 101/323/7 80/324/8 +f 78/325/9 103/326/10 102/322/6 79/321/5 +f 77/327/11 104/328/12 103/326/10 78/325/9 +f 76/329/13 105/330/14 104/328/12 77/327/11 +f 75/331/15 106/332/16 105/330/14 76/329/13 +f 74/333/17 107/334/18 106/332/16 75/331/15 +f 73/335/19 108/336/20 107/334/18 74/333/17 +f 72/337/21 109/338/22 108/336/20 73/335/19 +f 71/339/23 110/340/24 109/338/22 72/337/21 +f 70/341/25 111/342/26 110/340/24 71/339/23 +f 69/343/27 112/344/28 111/342/26 70/341/25 +f 68/345/29 81/346/30 112/344/28 69/343/27 +f 67/347/31 82/348/32 81/346/30 68/345/29 +f 66/349/33 83/350/34 82/351/32 67/347/31 +f 65/352/35 84/353/36 83/350/34 66/349/33 +f 64/354/37 85/355/38 84/353/36 65/352/35 +f 63/356/39 86/357/40 85/358/38 64/359/37 +f 62/360/41 87/361/42 86/357/40 63/356/39 +f 61/362/43 88/363/44 87/361/42 62/360/41 +f 60/364/45 89/365/46 88/363/44 61/362/43 +f 58/366/47 91/367/48 90/368/49 59/369/50 +f 59/369/50 90/368/49 89/365/46 60/364/45 +f 57/370/51 92/371/52 91/367/48 58/366/47 +f 56/372/53 93/373/54 92/371/52 57/370/51 +f 55/374/55 94/375/56 93/373/54 56/372/53 +f 54/376/57 95/377/58 94/375/56 55/374/55 +f 52/378/59 97/379/60 96/380/61 53/381/62 +f 53/381/62 96/380/61 95/377/58 54/376/57 +f 51/382/63 98/383/64 97/379/60 52/378/59 +f 50/384/65 99/385/66 98/383/64 51/382/63 +f 321/386/67 322/387/68 323/388/69 324/389/70 +f 325/390/71 324/389/70 323/388/69 326/391/72 +f 327/392/73 325/390/71 326/391/72 328/393/74 +f 329/394/75 327/392/73 328/393/74 330/395/76 +f 331/396/77 329/394/75 330/395/76 332/397/78 +f 333/398/79 331/396/77 332/397/78 334/399/80 +f 333/398/79 334/399/80 335/400/81 336/401/82 +f 337/402/83 336/401/82 335/400/81 338/403/84 +f 339/404/85 337/402/83 338/403/84 340/405/86 +f 341/406/87 339/404/85 340/405/86 342/407/88 +f 341/406/87 342/407/88 343/408/89 344/409/90 +f 344/409/90 343/408/89 345/410/91 346/411/92 +f 347/412/93 348/413/94 349/414/95 350/415/96 +f 346/411/92 345/410/91 348/413/94 347/412/93 +f 350/415/96 349/414/95 351/416/97 352/417/98 +f 353/418/99 352/417/98 351/416/97 354/419/100 +f 353/418/99 354/419/100 355/420/101 356/421/102 +f 357/422/103 356/421/102 355/420/101 358/423/104 +f 357/424/103 358/425/104 359/426/105 360/427/106 +f 361/428/107 360/427/106 359/426/105 362/429/108 +f 361/428/107 362/429/108 363/430/109 364/431/110 +f 364/431/110 363/430/109 365/432/111 366/433/112 +f 366/433/112 365/432/111 367/434/113 368/435/114 +f 368/435/114 367/434/113 369/436/115 370/437/116 +f 370/437/116 369/436/115 371/438/117 372/439/118 +f 372/439/118 371/438/117 373/440/119 374/441/120 +f 375/442/121 376/443/122 377/444/123 378/445/124 +f 376/443/122 374/441/120 373/440/119 377/444/123 +f 379/446/125 380/447/126 381/448/127 382/449/128 +f 375/442/121 378/445/124 381/448/127 380/447/126 +f 383/450/129 379/446/125 382/449/128 384/451/130 +f 383/450/129 384/451/130 322/387/68 321/386/67 +f 80/324/8 101/323/7 100/452/131 49/453/132 +f 1/454/133 385/455/134 386/456/135 2/457/136 +f 6/458/137 387/459/138 385/455/134 1/454/133 +f 2/457/136 386/456/135 388/460/139 3/461/140 +f 3/461/140 388/460/139 389/462/141 4/463/142 +f 4/464/142 389/465/141 390/466/143 5/467/144 +f 5/467/144 390/466/143 387/459/138 6/458/137 +f 7/468/145 391/469/146 392/470/147 8/471/148 +f 12/472/149 393/473/150 391/469/146 7/468/145 +f 8/471/148 392/470/147 394/474/151 9/475/152 +f 9/475/152 394/474/151 395/476/153 10/477/154 +f 10/478/154 395/479/153 396/480/155 11/481/156 +f 11/481/156 396/480/155 393/473/150 12/472/149 +f 13/482/157 397/483/158 398/484/159 14/485/160 +f 18/486/161 399/487/162 397/483/158 13/482/157 +f 14/485/160 398/484/159 400/488/163 15/489/164 +f 15/489/164 400/488/163 401/490/165 16/491/166 +f 16/492/166 401/493/165 402/494/167 17/495/168 +f 17/495/168 402/494/167 399/487/162 18/486/161 +f 19/496/169 403/497/170 404/498/171 20/499/172 +f 24/500/173 405/501/174 403/497/170 19/496/169 +f 20/499/172 404/498/171 406/502/175 21/503/176 +f 21/503/176 406/502/175 407/504/177 22/505/178 +f 22/506/178 407/507/177 408/508/179 23/509/180 +f 23/509/180 408/508/179 405/501/174 24/500/173 +f 25/510/142 409/511/141 410/512/143 26/513/144 +f 30/514/140 411/515/139 409/511/141 25/510/142 +f 26/513/144 410/512/143 412/516/181 27/517/137 +f 27/517/137 412/516/181 413/518/134 28/519/182 +f 28/520/182 413/521/134 414/522/135 29/523/136 +f 29/523/136 414/522/135 411/515/139 30/514/140 +f 31/524/183 415/525/153 416/526/184 32/527/185 +f 36/528/152 417/529/151 415/525/153 31/524/183 +f 32/527/185 416/526/184 418/530/186 33/531/149 +f 33/531/149 418/530/186 419/532/146 34/533/187 +f 34/534/187 419/535/146 420/536/147 35/537/188 +f 35/537/188 420/536/147 417/529/151 36/528/152 +f 37/538/166 421/539/165 422/540/189 38/541/168 +f 42/542/190 423/543/163 421/539/165 37/538/166 +f 38/541/168 422/540/189 424/544/191 39/545/161 +f 39/545/161 424/544/191 425/546/158 40/547/192 +f 40/548/192 425/549/158 426/550/159 41/551/193 +f 41/551/193 426/550/159 423/543/163 42/542/190 +f 43/552/194 427/553/177 428/554/179 44/555/195 +f 48/556/176 429/557/175 427/553/177 43/552/194 +f 44/555/195 428/554/179 430/558/174 45/559/173 +f 45/559/173 430/558/174 431/560/170 46/561/196 +f 46/562/196 431/563/170 432/564/171 47/565/197 +f 47/565/197 432/564/171 429/557/175 48/556/176 +f 433/566/198 348/413/94 345/410/91 434/567/199 +f 435/568/200 349/414/95 348/413/94 433/566/198 +f 435/568/200 436/569/201 351/416/97 349/414/95 +f 437/570/202 377/444/123 373/440/119 438/571/203 +f 439/572/204 328/393/74 326/391/72 440/573/205 +f 434/567/199 345/410/91 343/408/89 441/574/206 +f 442/575/207 443/576/208 338/403/84 335/400/81 +f 444/577/209 371/438/117 369/436/115 445/578/210 +f 446/579/211 447/580/212 367/434/113 365/432/111 +f 448/581/213 330/395/76 328/393/74 439/572/204 +f 449/582/214 384/451/130 382/449/128 450/583/215 +f 438/571/203 373/440/119 371/438/117 444/577/209 +f 445/578/210 369/436/115 367/434/113 447/580/212 +f 449/582/214 451/584/216 322/387/68 384/451/130 +f 49/453/132 100/452/131 99/385/66 50/384/65 +f 452/585/217 442/575/207 335/400/81 334/399/80 +f 443/576/208 453/586/218 340/405/86 338/403/84 +f 453/586/218 454/587/219 342/407/88 340/405/86 +f 441/574/206 343/408/89 342/407/88 454/587/219 +f 436/569/201 455/588/220 354/419/100 351/416/97 +f 455/588/220 456/589/221 355/420/101 354/419/100 +f 456/589/221 457/590/222 358/423/104 355/420/101 +f 457/591/222 458/592/223 359/426/105 358/425/104 +f 458/592/223 459/593/224 362/429/108 359/426/105 +f 459/593/224 460/594/225 363/430/109 362/429/108 +f 460/594/225 446/579/211 365/432/111 363/430/109 +f 461/595/226 323/388/69 322/387/68 451/584/216 +f 461/595/226 440/573/205 326/391/72 323/388/69 +f 113/596/227 462/597/228 463/598/229 114/599/230 +f 118/600/231 464/601/232 462/597/228 113/596/227 +f 114/599/230 463/598/229 465/602/233 115/603/234 +f 115/603/234 465/602/233 466/604/235 116/605/236 +f 116/606/236 466/607/235 467/608/237 117/609/238 +f 117/609/238 467/608/237 464/601/232 118/600/231 +f 119/610/239 468/611/3 469/612/240 120/613/241 +f 124/614/242 470/615/243 468/611/3 119/610/239 +f 120/613/241 469/612/240 471/616/244 121/617/245 +f 121/617/245 471/616/244 472/618/4 122/619/246 +f 122/620/246 472/621/4 473/622/247 123/623/248 +f 123/623/248 473/622/247 470/615/243 124/614/242 +f 125/624/249 474/625/250 475/626/251 126/627/252 +f 130/628/253 476/629/254 474/625/250 125/624/249 +f 126/627/252 475/626/251 477/630/255 127/631/256 +f 127/631/256 477/630/255 478/632/257 128/633/258 +f 128/634/258 478/635/257 479/636/259 129/637/260 +f 129/637/260 479/636/259 476/629/254 130/628/253 +f 131/638/261 480/639/262 481/640/263 132/641/264 +f 136/642/265 482/643/266 480/639/262 131/638/261 +f 132/641/264 481/640/263 483/644/267 133/645/268 +f 133/645/268 483/644/267 484/646/269 134/647/270 +f 134/648/270 484/649/269 485/650/271 135/651/272 +f 135/651/272 485/650/271 482/643/266 136/642/265 +f 137/652/236 486/653/235 487/654/237 138/655/238 +f 142/656/234 488/657/233 486/653/235 137/652/236 +f 138/655/238 487/654/237 489/658/232 139/659/231 +f 139/659/231 489/658/232 490/660/228 140/661/227 +f 140/662/227 490/663/228 491/664/229 141/665/230 +f 141/665/230 491/664/229 488/657/233 142/656/234 +f 143/666/246 492/667/4 493/668/247 144/669/248 +f 148/670/273 494/671/244 492/667/4 143/666/246 +f 144/669/248 493/668/247 495/672/243 145/673/274 +f 145/673/274 495/672/243 496/674/3 146/675/239 +f 146/676/239 496/677/3 497/678/240 147/679/241 +f 147/679/241 497/678/240 494/671/244 148/670/273 +f 149/680/258 498/681/257 499/682/259 150/683/260 +f 154/684/256 500/685/255 498/681/257 149/680/258 +f 150/683/260 499/682/259 501/686/254 151/687/253 +f 151/687/253 501/686/254 502/688/250 152/689/249 +f 152/690/249 502/691/250 503/692/251 153/693/252 +f 153/693/252 503/692/251 500/685/255 154/684/256 +f 155/694/270 504/695/269 505/696/271 156/697/272 +f 160/698/275 506/699/267 504/695/269 155/694/270 +f 156/697/272 505/696/271 507/700/266 157/701/276 +f 157/701/276 507/700/266 508/702/262 158/703/261 +f 158/704/261 508/705/262 509/706/263 159/707/264 +f 159/707/264 509/706/263 506/699/267 160/698/275 +f 510/708/277 332/397/78 330/395/76 448/581/213 +f 510/708/277 452/585/217 334/399/80 332/397/78 +f 511/709/278 512/710/279 513/711/280 514/712/281 +f 515/713/282 511/709/278 514/712/281 516/714/283 +f 517/715/284 515/713/282 516/714/283 518/716/285 +f 512/710/279 519/717/286 520/718/287 513/711/280 +f 521/719/288 517/715/284 518/716/285 522/720/289 +f 521/719/288 522/720/289 523/721/290 524/722/291 +f 525/723/292 513/711/280 520/718/287 526/724/293 +f 527/725/294 514/712/281 513/711/280 525/723/292 +f 528/726/295 516/714/283 514/712/281 527/725/294 +f 529/727/296 530/728/297 531/729/298 532/730/299 +f 526/724/293 520/718/287 533/731/300 534/732/301 +f 535/733/302 518/716/285 516/714/283 528/726/295 +f 536/734/303 524/722/291 523/721/290 537/735/304 +f 538/736/305 534/732/301 533/731/300 539/737/306 +f 540/738/307 522/720/289 518/716/285 535/733/302 +f 541/739/308 536/734/303 537/735/304 542/740/309 +f 543/741/310 544/742/311 539/737/306 545/743/312 +f 546/744/313 538/736/305 539/737/306 544/742/311 +f 237/745/314 242/746/315 241/747/316 238/748/317 +f 240/749/318 271/750/319 270/751/320 209/752/321 +f 547/753/322 523/721/290 522/720/289 540/738/307 +f 236/754/323 243/755/324 242/746/315 237/745/314 +f 548/756/325 546/744/313 544/742/311 549/757/326 +f 209/752/321 270/751/320 269/758/327 210/759/328 +f 550/760/329 537/735/304 523/721/290 547/753/322 +f 235/761/330 244/762/331 243/755/324 236/754/323 +f 551/763/332 552/764/333 553/765/334 554/766/335 +f 555/767/336 556/768/337 557/769/338 558/770/339 +f 559/771/340 548/756/325 549/757/326 557/769/338 +f 234/772/341 245/773/342 244/762/331 235/761/330 +f 560/774/343 542/740/309 537/735/304 550/760/329 +f 232/775/344 247/776/345 246/777/346 233/778/347 +f 561/779/348 559/771/340 557/769/338 556/768/337 +f 210/759/328 269/758/327 268/780/349 211/781/350 +f 562/782/351 553/783/334 542/740/309 560/774/343 +f 231/784/352 248/785/353 247/776/345 232/775/344 +f 563/786/354 564/787/355 565/788/356 566/789/357 +f 567/790/358 568/791/359 569/792/360 570/793/361 +f 571/794/362 561/779/348 556/768/337 570/793/361 +f 211/781/350 268/780/349 267/795/363 212/796/364 +f 572/797/365 554/766/335 553/765/334 562/798/351 +f 230/799/366 249/800/367 248/785/353 231/784/352 +f 530/728/297 563/786/354 566/789/357 531/729/298 +f 573/801/368 574/802/369 575/803/370 576/804/371 +f 577/805/372 571/794/362 570/793/361 569/792/360 +f 212/796/364 267/795/363 266/806/373 213/807/374 +f 578/808/375 565/788/356 554/766/335 572/797/365 +f 229/809/376 250/810/377 249/800/367 230/799/366 +f 579/811/378 577/805/372 569/792/360 580/812/379 +f 213/807/374 266/806/373 265/813/380 214/814/381 +f 581/815/382 566/789/357 565/788/356 578/808/375 +f 228/816/383 251/817/384 250/810/377 229/809/376 +f 582/818/385 579/811/378 580/812/379 576/804/371 +f 215/819/386 264/820/387 263/821/388 216/822/389 +f 581/815/382 583/823/390 531/729/298 566/789/357 +f 214/814/381 265/813/380 264/824/387 215/825/386 +f 584/826/391 585/827/392 586/828/393 587/829/394 +f 588/830/395 582/818/385 576/804/371 575/803/370 +f 216/822/389 263/821/388 262/831/396 217/832/397 +f 238/748/317 241/747/316 272/833/398 239/834/399 +f 589/835/400 532/730/299 531/729/298 583/823/390 +f 227/836/401 252/837/402 251/817/384 228/816/383 +f 529/727/296 532/730/299 590/838/403 591/839/404 +f 592/840/405 587/829/394 586/828/393 593/841/406 +f 594/842/407 588/830/395 575/803/370 595/843/408 +f 217/832/397 262/831/396 261/844/409 218/845/410 +f 589/835/400 596/846/411 590/838/403 532/730/299 +f 226/847/412 253/848/413 252/837/402 227/836/401 +f 597/849/414 594/842/407 595/843/408 593/841/406 +f 218/845/410 261/850/409 260/851/415 219/852/416 +f 596/846/411 598/853/417 599/854/418 590/838/403 +f 225/855/419 254/856/420 253/848/413 226/847/412 +f 233/778/347 246/777/346 245/773/342 234/772/341 +f 600/857/421 597/849/414 593/841/406 586/828/393 +f 219/852/416 260/851/415 259/858/422 220/859/423 +f 598/853/417 601/860/424 585/827/392 599/854/418 +f 224/861/425 255/862/426 254/856/420 225/855/419 +f 601/860/424 600/857/421 586/828/393 585/827/392 +f 239/834/399 272/833/398 271/750/319 240/749/318 +f 223/863/427 256/864/428 255/862/426 224/861/425 +f 220/859/423 259/858/422 258/865/429 221/866/430 +f 222/867/431 257/868/432 256/864/428 223/863/427 +f 221/866/430 258/865/429 257/868/432 222/867/431 +f 161/869/433 602/870/434 603/871/435 162/872/436 +f 166/873/437 604/874/438 602/870/434 161/869/433 +f 162/872/436 603/871/435 605/875/439 163/876/440 +f 163/876/440 605/875/439 606/877/441 164/878/442 +f 164/879/442 606/880/441 607/881/443 165/882/444 +f 165/882/444 607/881/443 604/874/438 166/873/437 +f 167/883/445 608/884/446 609/885/447 168/886/448 +f 172/887/449 610/888/450 608/884/446 167/883/445 +f 168/886/448 609/885/447 611/889/451 169/890/452 +f 169/890/452 611/889/451 612/891/453 170/892/454 +f 170/893/454 612/894/453 613/895/455 171/896/456 +f 171/896/456 613/895/455 610/888/450 172/887/449 +f 173/897/457 614/898/458 615/899/459 174/900/460 +f 178/901/461 616/902/462 614/898/458 173/897/457 +f 174/900/460 615/899/459 617/903/463 175/904/464 +f 175/904/464 617/903/463 618/905/465 176/906/466 +f 176/907/466 618/908/465 619/909/467 177/910/468 +f 177/910/468 619/909/467 616/902/462 178/901/461 +f 179/911/469 620/912/470 621/913/471 180/914/472 +f 184/915/473 622/916/474 620/912/470 179/911/469 +f 180/914/472 621/913/471 623/917/475 181/918/476 +f 181/918/476 623/917/475 624/919/477 182/920/478 +f 182/921/478 624/922/477 625/923/479 183/924/480 +f 183/924/480 625/923/479 622/916/474 184/915/473 +f 185/925/481 626/926/441 627/927/482 186/928/483 +f 190/929/440 628/930/439 626/926/441 185/925/481 +f 186/928/483 627/927/482 629/931/484 187/932/437 +f 187/932/437 629/931/484 630/933/434 188/934/433 +f 188/935/433 630/936/434 631/937/435 189/938/436 +f 189/938/436 631/937/435 628/930/439 190/929/440 +f 191/939/454 632/940/453 633/941/485 192/942/486 +f 196/943/452 634/944/487 632/940/453 191/939/454 +f 192/942/486 633/941/485 635/945/488 193/946/449 +f 193/946/449 635/945/488 636/947/446 194/948/489 +f 194/949/489 636/950/446 637/951/490 195/952/448 +f 195/952/448 637/951/490 634/944/487 196/943/452 +f 197/953/466 638/954/465 639/955/491 198/956/468 +f 202/957/492 640/958/493 638/954/465 197/953/466 +f 198/956/468 639/955/491 641/959/494 199/960/495 +f 199/960/495 641/959/494 642/961/458 200/962/496 +f 200/963/496 642/964/458 643/965/497 201/966/460 +f 201/966/460 643/965/497 640/958/493 202/957/492 +f 203/967/498 644/968/477 645/969/479 204/970/480 +f 208/971/476 646/972/499 644/968/477 203/967/498 +f 204/970/480 645/969/479 647/973/500 205/974/501 +f 205/974/501 647/973/500 648/975/502 206/976/503 +f 206/977/503 648/978/502 649/979/504 207/980/505 +f 207/980/505 649/979/504 646/972/499 208/971/476 +f 543/741/310 650/981/506 549/757/326 544/742/311 +f 650/981/506 558/770/339 557/769/338 549/757/326 +f 568/791/359 651/982/507 580/812/379 569/792/360 +f 651/982/507 573/801/368 576/804/371 580/812/379 +f 652/983/508 591/839/404 590/838/403 599/854/418 +f 555/767/336 567/790/358 570/793/361 556/768/337 +f 552/984/333 541/739/308 542/740/309 553/783/334 +f 584/826/391 652/983/508 599/854/418 585/827/392 +f 564/787/355 551/763/332 554/766/335 565/788/356 +f 592/840/405 593/841/406 595/843/408 653/985/509 +f 273/986/510 654/987/511 655/988/512 274/989/513 +f 278/990/514 656/991/515 654/987/511 273/986/510 +f 274/989/513 655/988/512 657/992/516 275/993/517 +f 275/993/517 657/992/516 658/994/518 276/995/519 +f 276/996/519 658/997/518 659/998/520 277/999/521 +f 277/999/521 659/998/520 656/991/515 278/990/514 +f 279/1000/522 660/1001/2 661/1002/523 280/1003/524 +f 284/1004/525 662/1005/526 660/1001/2 279/1000/522 +f 280/1003/524 661/1002/523 663/1006/527 281/1007/528 +f 281/1007/528 663/1006/527 664/1008/1 282/1009/529 +f 282/1010/529 664/1011/1 665/1012/530 283/1013/531 +f 283/1013/531 665/1012/530 662/1005/526 284/1004/525 +f 285/1014/532 666/1015/533 667/1016/534 286/1017/535 +f 290/1018/536 668/1019/537 666/1015/533 285/1014/532 +f 286/1017/535 667/1016/534 669/1020/538 287/1021/539 +f 287/1021/539 669/1020/538 670/1022/540 288/1023/541 +f 288/1024/541 670/1025/540 671/1026/542 289/1027/543 +f 289/1027/543 671/1026/542 668/1019/537 290/1018/536 +f 291/1028/544 672/1029/269 673/1030/545 292/1031/546 +f 296/1032/547 674/1033/548 672/1029/269 291/1028/544 +f 292/1031/546 673/1030/545 675/1034/549 293/1035/550 +f 293/1035/550 675/1034/549 676/1036/262 294/1037/551 +f 294/1038/551 676/1039/262 677/1040/552 295/1041/553 +f 295/1041/553 677/1040/552 674/1033/548 296/1032/547 +f 297/1042/519 678/1043/518 679/1044/520 298/1045/521 +f 302/1046/517 680/1047/516 678/1043/518 297/1042/519 +f 298/1045/521 679/1044/520 681/1048/515 299/1049/514 +f 299/1049/514 681/1048/515 682/1050/511 300/1051/510 +f 300/1052/510 682/1053/511 683/1054/512 301/1055/513 +f 301/1055/513 683/1054/512 680/1047/516 302/1046/517 +f 303/1056/529 684/1057/1 685/1058/530 304/1059/531 +f 308/1060/528 686/1061/527 684/1057/1 303/1056/529 +f 304/1059/531 685/1058/530 687/1062/526 305/1063/525 +f 305/1063/525 687/1062/526 688/1064/2 306/1065/522 +f 306/1066/522 688/1067/2 689/1068/523 307/1069/524 +f 307/1069/524 689/1068/523 686/1061/527 308/1060/528 +f 309/1070/541 690/1071/540 691/1072/542 310/1073/543 +f 314/1074/539 692/1075/538 690/1071/540 309/1070/541 +f 310/1073/543 691/1072/542 693/1076/537 311/1077/536 +f 311/1077/536 693/1076/537 694/1078/533 312/1079/532 +f 312/1080/532 694/1081/533 695/1082/534 313/1083/535 +f 313/1083/535 695/1082/534 692/1075/538 314/1074/539 +f 315/1084/551 696/1085/262 697/1086/552 316/1087/554 +f 320/1088/555 698/1089/549 696/1085/262 315/1084/551 +f 316/1087/554 697/1086/552 699/1090/548 317/1091/547 +f 317/1091/547 699/1090/548 700/1092/269 318/1093/544 +f 318/1094/544 700/1095/269 701/1096/545 319/1097/546 +f 319/1097/546 701/1096/545 698/1089/549 320/1088/555 +f 653/985/509 595/843/408 575/803/370 574/802/369 +f 533/731/300 702/1098/556 545/743/312 539/737/306 +f 520/718/287 519/717/286 702/1098/556 533/731/300 +f 381/448/127 703/1099/557 450/583/215 382/449/128 +f 378/445/124 377/444/123 437/570/202 704/1100/558 +f 381/448/127 378/445/124 704/1100/558 703/1099/557 +f 454/587/219 453/586/218 705/1101/559 706/1102/560 +f 452/585/217 510/708/277 707/1103/561 708/1104/562 +f 439/572/204 440/573/205 709/1105/563 710/1106/564 +f 453/586/218 443/576/208 711/1107/565 705/1101/559 +f 510/708/277 448/581/213 712/1108/566 707/1103/561 +f 437/570/202 438/571/203 713/1109/567 714/1110/568 +f 442/575/207 452/585/217 708/1104/562 715/1111/569 +f 440/573/205 461/595/226 716/1112/570 709/1105/563 +f 436/569/201 435/568/200 717/1113/571 718/1114/572 +f 451/584/216 449/582/214 719/1115/573 720/1116/574 +f 461/595/226 451/584/216 720/1116/574 716/1112/570 +f 435/568/200 433/566/198 721/1117/575 717/1113/571 +f 704/1100/558 437/570/202 714/1110/568 722/1118/576 +f 450/583/215 703/1099/557 723/1119/577 724/1120/578 +f 433/566/198 434/567/199 725/1121/579 721/1117/575 +f 445/578/210 447/580/212 726/1122/580 727/1123/581 +f 446/579/211 460/594/225 728/1124/582 729/1125/583 +f 438/571/203 444/577/209 730/1126/584 713/1109/567 +f 460/594/225 459/593/224 731/1127/585 728/1124/582 +f 449/582/214 450/583/215 724/1120/578 719/1115/573 +f 459/593/224 458/592/223 732/1128/586 731/1127/585 +f 448/581/213 439/572/204 710/1106/564 712/1108/566 +f 458/592/223 457/591/222 733/1129/587 732/1128/586 +f 447/580/212 446/579/211 729/1125/583 726/1122/580 +f 457/590/222 456/589/221 734/1130/588 733/1131/587 +f 703/1099/557 704/1100/558 722/1118/576 723/1119/577 +f 456/589/221 455/588/220 735/1132/589 734/1130/588 +f 444/577/209 445/578/210 727/1123/581 730/1126/584 +f 455/588/220 436/569/201 718/1114/572 735/1132/589 +f 443/576/208 442/575/207 715/1111/569 711/1107/565 +f 441/574/206 454/587/219 706/1102/560 736/1133/590 +f 434/567/199 441/574/206 736/1133/590 725/1121/579 +f 712/1108/566 710/1106/564 737/1134/591 738/1135/592 +f 732/1128/586 733/1129/587 739/1136/593 740/1137/594 +f 726/1122/580 729/1125/583 741/1138/595 742/1139/596 +f 733/1131/587 734/1130/588 743/1140/597 739/1141/593 +f 723/1119/577 722/1118/576 744/1142/598 745/1143/599 +f 734/1130/588 735/1132/589 746/1144/600 743/1140/597 +f 730/1126/584 727/1123/581 747/1145/601 748/1146/602 +f 735/1132/589 718/1114/572 749/1147/603 746/1144/600 +f 711/1107/565 715/1111/569 750/1148/604 751/1149/605 +f 736/1133/590 706/1102/560 752/1150/606 753/1151/607 +f 725/1121/579 736/1133/590 753/1151/607 754/1152/608 +f 706/1102/560 705/1101/559 755/1153/609 752/1150/606 +f 708/1104/562 707/1103/561 756/1154/610 757/1155/611 +f 710/1106/564 709/1105/563 758/1156/612 737/1134/591 +f 705/1101/559 711/1107/565 751/1149/605 755/1153/609 +f 707/1103/561 712/1108/566 738/1135/592 756/1154/610 +f 714/1110/568 713/1109/567 759/1157/613 760/1158/614 +f 715/1111/569 708/1104/562 757/1155/611 750/1148/604 +f 709/1105/563 716/1112/570 761/1159/615 758/1156/612 +f 718/1114/572 717/1113/571 762/1160/616 749/1147/603 +f 720/1116/574 719/1115/573 763/1161/617 764/1162/618 +f 716/1112/570 720/1116/574 764/1162/618 761/1159/615 +f 717/1113/571 721/1117/575 765/1163/619 762/1160/616 +f 722/1118/576 714/1110/568 760/1158/614 744/1142/598 +f 724/1120/578 723/1119/577 745/1143/599 766/1164/620 +f 721/1117/575 725/1121/579 754/1152/608 765/1163/619 +f 727/1123/581 726/1122/580 742/1139/596 747/1145/601 +f 729/1125/583 728/1124/582 767/1165/621 741/1138/595 +f 713/1109/567 730/1126/584 748/1146/602 759/1157/613 +f 728/1124/582 731/1127/585 768/1166/622 767/1165/621 +f 719/1115/573 724/1120/578 766/1164/620 763/1161/617 +f 731/1127/585 732/1128/586 740/1137/594 768/1166/622 +f 748/1146/602 747/1145/601 769/1167/623 770/1168/624 +f 746/1144/600 749/1147/603 771/1169/625 772/1170/626 +f 751/1149/605 750/1148/604 773/1171/627 774/1172/628 +f 753/1151/607 752/1150/606 775/1173/629 776/1174/630 +f 754/1152/608 753/1151/607 776/1174/630 777/1175/631 +f 752/1150/606 755/1153/609 778/1176/632 775/1173/629 +f 757/1155/611 756/1154/610 779/1177/633 780/1178/634 +f 737/1134/591 758/1156/612 781/1179/635 782/1180/636 +f 755/1153/609 751/1149/605 774/1172/628 778/1176/632 +f 756/1154/610 738/1135/592 783/1181/637 779/1177/633 +f 760/1158/614 759/1157/613 784/1182/638 785/1183/639 +f 750/1148/604 757/1155/611 780/1178/634 773/1171/627 +f 758/1156/612 761/1159/615 786/1184/640 781/1179/635 +f 749/1147/603 762/1160/616 787/1185/641 771/1169/625 +f 764/1162/618 763/1161/617 788/1186/642 789/1187/643 +f 761/1159/615 764/1162/618 789/1187/643 786/1184/640 +f 762/1160/616 765/1163/619 790/1188/644 787/1185/641 +f 744/1142/598 760/1158/614 785/1183/639 791/1189/645 +f 766/1164/620 745/1143/599 792/1190/646 793/1191/647 +f 765/1163/619 754/1152/608 777/1175/631 790/1188/644 +f 747/1145/601 742/1139/596 794/1192/648 769/1167/623 +f 741/1138/595 767/1165/621 795/1193/649 796/1194/650 +f 759/1157/613 748/1146/602 770/1168/624 784/1182/638 +f 767/1165/621 768/1166/622 797/1195/651 795/1193/649 +f 763/1161/617 766/1164/620 793/1191/647 788/1186/642 +f 768/1166/622 740/1137/594 798/1196/652 797/1195/651 +f 738/1135/592 737/1134/591 782/1180/636 783/1181/637 +f 740/1137/594 739/1136/593 799/1197/653 798/1196/652 +f 742/1139/596 741/1138/595 796/1194/650 794/1192/648 +f 739/1141/593 743/1140/597 800/1198/654 799/1199/653 +f 745/1143/599 744/1142/598 791/1189/645 792/1190/646 +f 743/1140/597 746/1144/600 772/1170/626 800/1198/654 +f 782/1180/636 781/1179/635 801/1200/655 802/1201/656 +f 778/1176/632 774/1172/628 803/1202/657 804/1203/658 +f 779/1177/633 783/1181/637 805/1204/659 806/1205/660 +f 785/1183/639 784/1182/638 807/1206/661 808/1207/662 +f 773/1171/627 780/1178/634 809/1208/663 810/1209/664 +f 781/1179/635 786/1184/640 811/1210/665 801/1200/655 +f 771/1169/625 787/1185/641 812/1211/666 813/1212/667 +f 789/1187/643 788/1186/642 814/1213/668 815/1214/669 +f 786/1184/640 789/1187/643 815/1214/669 811/1210/665 +f 787/1185/641 790/1188/644 816/1215/670 812/1211/666 +f 791/1189/645 785/1183/639 808/1207/662 817/1216/671 +f 793/1191/647 792/1190/646 818/1217/672 819/1218/673 +f 790/1188/644 777/1175/631 820/1219/674 816/1215/670 +f 769/1167/623 794/1192/648 821/1220/675 822/1221/676 +f 796/1194/650 795/1193/649 823/1222/677 824/1223/678 +f 784/1182/638 770/1168/624 825/1224/679 807/1206/661 +f 795/1193/649 797/1195/651 826/1225/680 823/1222/677 +f 788/1186/642 793/1191/647 819/1218/673 814/1213/668 +f 797/1195/651 798/1196/652 827/1226/681 826/1225/680 +f 783/1181/637 782/1180/636 802/1201/656 805/1204/659 +f 798/1196/652 799/1197/653 828/1227/682 827/1226/681 +f 794/1192/648 796/1194/650 824/1223/678 821/1220/675 +f 799/1199/653 800/1198/654 829/1228/683 828/1229/682 +f 792/1190/646 791/1189/645 817/1216/671 818/1217/672 +f 800/1198/654 772/1170/626 830/1230/684 829/1228/683 +f 770/1168/624 769/1167/623 822/1221/676 825/1224/679 +f 772/1170/626 771/1169/625 813/1212/667 830/1230/684 +f 774/1172/628 773/1171/627 810/1209/664 803/1202/657 +f 776/1174/630 775/1173/629 831/1231/685 832/1232/686 +f 777/1175/631 776/1174/630 832/1232/686 820/1219/674 +f 775/1173/629 778/1176/632 804/1203/658 831/1231/685 +f 780/1178/634 779/1177/633 806/1205/660 809/1208/663 +f 812/1211/666 816/1215/670 833/1233/687 834/1234/688 +f 817/1216/671 808/1207/662 835/1235/689 836/1236/690 +f 819/1218/673 818/1217/672 837/1237/691 838/1238/692 +f 816/1215/670 820/1219/674 839/1239/693 833/1233/687 +f 822/1221/676 821/1220/675 840/1240/694 841/1241/695 +f 824/1223/678 823/1222/677 842/1242/696 843/1243/697 +f 807/1206/661 825/1224/679 844/1244/698 845/1245/699 +f 823/1222/677 826/1225/680 846/1246/700 842/1242/696 +f 814/1213/668 819/1218/673 838/1238/692 847/1247/701 +f 826/1225/680 827/1226/681 848/1248/702 846/1246/700 +f 805/1204/659 802/1201/656 849/1249/703 850/1250/704 +f 827/1226/681 828/1227/682 851/1251/705 848/1248/702 +f 821/1220/675 824/1223/678 843/1243/697 840/1240/694 +f 828/1229/682 829/1228/683 852/1252/706 851/1253/705 +f 818/1217/672 817/1216/671 836/1236/690 837/1237/691 +f 829/1228/683 830/1230/684 853/1254/707 852/1252/706 +f 825/1224/679 822/1221/676 841/1241/695 844/1244/698 +f 830/1230/684 813/1212/667 854/1255/708 853/1254/707 +f 803/1202/657 810/1209/664 855/1256/709 856/1257/710 +f 832/1232/686 831/1231/685 857/1258/711 858/1259/712 +f 820/1219/674 832/1232/686 858/1259/712 839/1239/693 +f 831/1231/685 804/1203/658 859/1260/713 857/1258/711 +f 809/1208/663 806/1205/660 860/1261/714 861/1262/715 +f 802/1201/656 801/1200/655 862/1263/716 849/1249/703 +f 804/1203/658 803/1202/657 856/1257/710 859/1260/713 +f 806/1205/660 805/1204/659 850/1250/704 860/1261/714 +f 808/1207/662 807/1206/661 845/1245/699 835/1235/689 +f 810/1209/664 809/1208/663 861/1262/715 855/1256/709 +f 801/1200/655 811/1210/665 863/1264/717 862/1263/716 +f 813/1212/667 812/1211/666 834/1234/688 854/1255/708 +f 815/1214/669 814/1213/668 847/1247/701 864/1265/718 +f 811/1210/665 815/1214/669 864/1265/718 863/1264/717 +f 847/1247/701 838/1238/692 865/1266/719 866/1267/720 +f 846/1246/700 848/1248/702 867/1268/721 868/1269/722 +f 850/1250/704 849/1249/703 869/1270/723 870/1271/724 +f 848/1248/702 851/1251/705 871/1272/725 867/1268/721 +f 840/1240/694 843/1243/697 872/1273/726 873/1274/727 +f 851/1253/705 852/1252/706 874/1275/728 871/1276/725 +f 837/1237/691 836/1236/690 875/1277/729 876/1278/730 +f 852/1252/706 853/1254/707 877/1279/731 874/1275/728 +f 844/1244/698 841/1241/695 878/1280/732 879/1281/733 +f 853/1254/707 854/1255/708 880/1282/734 877/1279/731 +f 856/1257/710 855/1256/709 881/1283/735 882/1284/736 +f 858/1259/712 857/1258/711 883/1285/737 884/1286/738 +f 839/1239/693 858/1259/712 884/1286/738 885/1287/739 +f 857/1258/711 859/1260/713 886/1288/740 883/1285/737 +f 861/1262/715 860/1261/714 887/1289/741 888/1290/742 +f 849/1249/703 862/1263/716 889/1291/743 869/1270/723 +f 859/1260/713 856/1257/710 882/1284/736 886/1288/740 +f 860/1261/714 850/1250/704 870/1271/724 887/1289/741 +f 835/1235/689 845/1245/699 890/1292/744 891/1293/745 +f 855/1256/709 861/1262/715 888/1290/742 881/1283/735 +f 862/1263/716 863/1264/717 892/1294/746 889/1291/743 +f 854/1255/708 834/1234/688 893/1295/747 880/1282/734 +f 864/1265/718 847/1247/701 866/1267/720 894/1296/748 +f 863/1264/717 864/1265/718 894/1296/748 892/1294/746 +f 834/1234/688 833/1233/687 895/1297/749 893/1295/747 +f 836/1236/690 835/1235/689 891/1293/745 875/1277/729 +f 838/1238/692 837/1237/691 876/1278/730 865/1266/719 +f 833/1233/687 839/1239/693 885/1287/739 895/1297/749 +f 841/1241/695 840/1240/694 873/1274/727 878/1280/732 +f 843/1243/697 842/1242/696 896/1298/750 872/1273/726 +f 845/1245/699 844/1244/698 879/1281/733 890/1292/744 +f 842/1242/696 846/1246/700 868/1269/722 896/1298/750 +f 876/1278/730 875/1277/729 897/1299/751 898/1300/752 +f 874/1275/728 877/1279/731 899/1301/753 900/1302/754 +f 879/1281/733 878/1280/732 901/1303/755 902/1304/756 +f 877/1279/731 880/1282/734 903/1305/757 899/1301/753 +f 882/1284/736 881/1283/735 904/1306/758 905/1307/759 +f 884/1286/738 883/1285/737 906/1308/760 907/1309/761 +f 885/1287/739 884/1286/738 907/1309/761 908/1310/762 +f 883/1285/737 886/1288/740 909/1311/763 906/1308/760 +f 888/1290/742 887/1289/741 910/1312/764 911/1313/765 +f 869/1270/723 889/1291/743 912/1314/766 913/1315/767 +f 886/1288/740 882/1284/736 905/1307/759 909/1311/763 +f 887/1289/741 870/1271/724 914/1316/768 910/1312/764 +f 891/1293/745 890/1292/744 915/1317/769 916/1318/770 +f 881/1283/735 888/1290/742 911/1313/765 904/1306/758 +f 889/1291/743 892/1294/746 917/1319/771 912/1314/766 +f 880/1282/734 893/1295/747 918/1320/772 903/1305/757 +f 894/1296/748 866/1267/720 919/1321/773 920/1322/774 +f 892/1294/746 894/1296/748 920/1322/774 917/1319/771 +f 893/1295/747 895/1297/749 921/1323/775 918/1320/772 +f 875/1277/729 891/1293/745 916/1318/770 897/1299/751 +f 865/1266/719 876/1278/730 898/1300/752 922/1324/776 +f 895/1297/749 885/1287/739 908/1310/762 921/1323/775 +f 878/1280/732 873/1274/727 923/1325/777 901/1303/755 +f 872/1273/726 896/1298/750 924/1326/778 925/1327/779 +f 890/1292/744 879/1281/733 902/1304/756 915/1317/769 +f 896/1298/750 868/1269/722 926/1328/780 924/1326/778 +f 866/1267/720 865/1266/719 922/1324/776 919/1321/773 +f 868/1269/722 867/1268/721 927/1329/781 926/1328/780 +f 870/1271/724 869/1270/723 913/1315/767 914/1316/768 +f 867/1268/721 871/1272/725 928/1330/782 927/1329/781 +f 873/1274/727 872/1273/726 925/1327/779 923/1325/777 +f 871/1276/725 874/1275/728 900/1302/754 928/1331/782 +f 908/1310/762 907/1309/761 929/1332/783 930/1333/784 +f 906/1308/760 909/1311/763 931/1334/785 932/1335/786 +f 911/1313/765 910/1312/764 933/1336/787 934/1337/788 +f 913/1315/767 912/1314/766 935/1338/789 936/1339/790 +f 909/1311/763 905/1307/759 937/1340/791 931/1334/785 +f 910/1312/764 914/1316/768 938/1341/792 933/1336/787 +f 916/1318/770 915/1317/769 939/1342/793 940/1343/794 +f 904/1306/758 911/1313/765 934/1337/788 941/1344/795 +f 912/1314/766 917/1319/771 942/1345/796 935/1338/789 +f 903/1305/757 918/1320/772 943/1346/797 944/1347/798 +f 920/1322/774 919/1321/773 945/1348/799 946/1349/800 +f 917/1319/771 920/1322/774 946/1349/800 942/1345/796 +f 918/1320/772 921/1323/775 947/1350/801 943/1346/797 +f 897/1299/751 916/1318/770 940/1343/794 948/1351/802 +f 922/1324/776 898/1300/752 949/1352/803 950/1353/804 +f 921/1323/775 908/1310/762 930/1333/784 947/1350/801 +f 901/1303/755 923/1325/777 951/1354/805 952/1355/806 +f 925/1327/779 924/1326/778 953/1356/807 954/1357/808 +f 915/1317/769 902/1304/756 955/1358/809 939/1342/793 +f 924/1326/778 926/1328/780 956/1359/810 953/1356/807 +f 919/1321/773 922/1324/776 950/1353/804 945/1348/799 +f 926/1328/780 927/1329/781 957/1360/811 956/1359/810 +f 914/1316/768 913/1315/767 936/1339/790 938/1341/792 +f 927/1329/781 928/1330/782 958/1361/812 957/1360/811 +f 923/1325/777 925/1327/779 954/1357/808 951/1354/805 +f 928/1331/782 900/1302/754 959/1362/813 958/1363/812 +f 898/1300/752 897/1299/751 948/1351/802 949/1352/803 +f 900/1302/754 899/1301/753 960/1364/814 959/1362/813 +f 902/1304/756 901/1303/755 952/1355/806 955/1358/809 +f 899/1301/753 903/1305/757 944/1347/798 960/1364/814 +f 905/1307/759 904/1306/758 941/1344/795 937/1340/791 +f 907/1309/761 906/1308/760 932/1335/786 929/1332/783 +f 935/1338/789 942/1345/796 961/1365/815 962/1366/816 +f 944/1347/798 943/1346/797 963/1367/817 964/1368/818 +f 946/1349/800 945/1348/799 965/1369/819 966/1370/820 +f 942/1345/796 946/1349/800 966/1370/820 961/1365/815 +f 943/1346/797 947/1350/801 967/1371/821 963/1367/817 +f 948/1351/802 940/1343/794 968/1372/822 969/1373/823 +f 950/1353/804 949/1352/803 970/1374/824 971/1375/825 +f 947/1350/801 930/1333/784 972/1376/826 967/1371/821 +f 952/1355/806 951/1354/805 973/1377/827 974/1378/828 +f 954/1357/808 953/1356/807 975/1379/829 976/1380/830 +f 939/1342/793 955/1358/809 977/1381/831 978/1382/832 +f 953/1356/807 956/1359/810 979/1383/833 975/1379/829 +f 945/1348/799 950/1353/804 971/1375/825 965/1369/819 +f 956/1359/810 957/1360/811 980/1384/834 979/1383/833 +f 938/1341/792 936/1339/790 981/1385/835 982/1386/836 +f 957/1360/811 958/1361/812 983/1387/837 980/1384/834 +f 951/1354/805 954/1357/808 976/1380/830 973/1377/827 +f 958/1363/812 959/1362/813 984/1388/838 983/1389/837 +f 949/1352/803 948/1351/802 969/1373/823 970/1374/824 +f 959/1362/813 960/1364/814 985/1390/839 984/1388/838 +f 955/1358/809 952/1355/806 974/1378/828 977/1381/831 +f 960/1364/814 944/1347/798 964/1368/818 985/1390/839 +f 937/1340/791 941/1344/795 986/1391/840 987/1392/841 +f 929/1332/783 932/1335/786 988/1393/842 989/1394/843 +f 930/1333/784 929/1332/783 989/1394/843 972/1376/826 +f 932/1335/786 931/1334/785 990/1395/844 988/1393/842 +f 934/1337/788 933/1336/787 991/1396/845 992/1397/846 +f 936/1339/790 935/1338/789 962/1366/816 981/1385/835 +f 931/1334/785 937/1340/791 987/1392/841 990/1395/844 +f 933/1336/787 938/1341/792 982/1386/836 991/1396/845 +f 940/1343/794 939/1342/793 978/1382/832 968/1372/822 +f 941/1344/795 934/1337/788 992/1397/846 986/1391/840 +f 976/1380/830 975/1379/829 993/1398/847 994/1399/848 +f 978/1382/832 977/1381/831 995/1400/849 996/1401/850 +f 975/1379/829 979/1383/833 997/1402/851 993/1398/847 +f 965/1369/819 971/1375/825 998/1403/852 999/1404/853 +f 979/1383/833 980/1384/834 1000/1405/854 997/1402/851 +f 982/1386/836 981/1385/835 1001/1406/855 1002/1407/856 +f 980/1384/834 983/1387/837 1003/1408/857 1000/1405/854 +f 973/1377/827 976/1380/830 994/1399/848 1004/1409/858 +f 983/1389/837 984/1388/838 1005/1410/859 1003/1411/857 +f 970/1374/824 969/1373/823 1006/1412/860 1007/1413/861 +f 984/1388/838 985/1390/839 1008/1414/862 1005/1410/859 +f 977/1381/831 974/1378/828 1009/1415/863 995/1400/849 +f 985/1390/839 964/1368/818 1010/1416/864 1008/1414/862 +f 987/1392/841 986/1391/840 1011/1417/865 1012/1418/866 +f 989/1394/843 988/1393/842 1013/1419/867 1014/1420/868 +f 972/1376/826 989/1394/843 1014/1420/868 1015/1421/869 +f 988/1393/842 990/1395/844 1016/1422/870 1013/1419/867 +f 992/1397/846 991/1396/845 1017/1423/871 1018/1424/872 +f 981/1385/835 962/1366/816 1019/1425/873 1001/1406/855 +f 990/1395/844 987/1392/841 1012/1418/866 1016/1422/870 +f 991/1396/845 982/1386/836 1002/1407/856 1017/1423/871 +f 968/1372/822 978/1382/832 996/1401/850 1020/1426/874 +f 986/1391/840 992/1397/846 1018/1424/872 1011/1417/865 +f 962/1366/816 961/1365/815 1021/1427/875 1019/1425/873 +f 964/1368/818 963/1367/817 1022/1428/876 1010/1416/864 +f 966/1370/820 965/1369/819 999/1404/853 1023/1429/877 +f 961/1365/815 966/1370/820 1023/1429/877 1021/1427/875 +f 963/1367/817 967/1371/821 1024/1430/878 1022/1428/876 +f 969/1373/823 968/1372/822 1020/1426/874 1006/1412/860 +f 971/1375/825 970/1374/824 1007/1413/861 998/1403/852 +f 967/1371/821 972/1376/826 1015/1421/869 1024/1430/878 +f 974/1378/828 973/1377/827 1004/1409/858 1009/1415/863 +f 1004/1409/858 994/1399/848 1025/1431/879 1026/1432/880 +f 1003/1411/857 1005/1410/859 1027/1433/881 1028/1434/882 +f 1007/1413/861 1006/1412/860 1029/1435/883 1030/1436/884 +f 1005/1410/859 1008/1414/862 1031/1437/885 1027/1433/881 +f 995/1400/849 1009/1415/863 1032/1438/886 1033/1439/887 +f 1008/1414/862 1010/1416/864 1034/1440/888 1031/1437/885 +f 1012/1418/866 1011/1417/865 1035/1441/889 1036/1442/890 +f 1014/1420/868 1013/1419/867 1037/1443/891 1038/1444/892 +f 1015/1421/869 1014/1420/868 1038/1444/892 1039/1445/893 +f 1013/1419/867 1016/1422/870 1040/1446/894 1037/1443/891 +f 1018/1424/872 1017/1423/871 1041/1447/895 1042/1448/896 +f 1001/1406/855 1019/1425/873 1043/1449/897 1044/1450/898 +f 1016/1422/870 1012/1418/866 1036/1442/890 1040/1446/894 +f 1017/1423/871 1002/1407/856 1045/1451/899 1041/1447/895 +f 1020/1426/874 996/1401/850 1046/1452/900 1047/1453/901 +f 1011/1417/865 1018/1424/872 1042/1448/896 1035/1441/889 +f 1019/1425/873 1021/1427/875 1048/1454/902 1043/1449/897 +f 1010/1416/864 1022/1428/876 1049/1455/903 1034/1440/888 +f 1023/1429/877 999/1404/853 1050/1456/904 1051/1457/905 +f 1021/1427/875 1023/1429/877 1051/1457/905 1048/1454/902 +f 1022/1428/876 1024/1430/878 1052/1458/906 1049/1455/903 +f 1006/1412/860 1020/1426/874 1047/1453/901 1029/1435/883 +f 998/1403/852 1007/1413/861 1030/1436/884 1053/1459/907 +f 1024/1430/878 1015/1421/869 1039/1445/893 1052/1458/906 +f 1009/1415/863 1004/1409/858 1026/1432/880 1032/1438/886 +f 994/1399/848 993/1398/847 1054/1460/908 1025/1431/879 +f 996/1401/850 995/1400/849 1033/1439/887 1046/1452/900 +f 993/1398/847 997/1402/851 1055/1461/909 1054/1460/908 +f 999/1404/853 998/1403/852 1053/1459/907 1050/1456/904 +f 997/1402/851 1000/1405/854 1056/1462/910 1055/1461/909 +f 1002/1407/856 1001/1406/855 1044/1450/898 1045/1451/899 +f 1000/1405/854 1003/1408/857 1028/1463/882 1056/1462/910 +f 1036/1442/890 1035/1441/889 1057/1464/911 1058/1465/912 +f 1038/1444/892 1037/1443/891 1059/1466/913 1060/1467/914 +f 1039/1445/893 1038/1444/892 1060/1467/914 1061/1468/915 +f 1037/1443/891 1040/1446/894 1062/1469/916 1059/1466/913 +f 1042/1448/896 1041/1447/895 1063/1470/917 1064/1471/918 +f 1044/1450/898 1043/1449/897 1065/1472/919 1066/1473/920 +f 1040/1446/894 1036/1442/890 1058/1465/912 1062/1469/916 +f 1041/1447/895 1045/1451/899 1067/1474/921 1063/1470/917 +f 1047/1453/901 1046/1452/900 1068/1475/922 1069/1476/923 +f 1035/1441/889 1042/1448/896 1064/1471/918 1057/1464/911 +f 1043/1449/897 1048/1454/902 1070/1477/924 1065/1472/919 +f 1034/1440/888 1049/1455/903 1071/1478/925 1072/1479/926 +f 1051/1457/905 1050/1456/904 1073/1480/927 1074/1481/928 +f 1048/1454/902 1051/1457/905 1074/1481/928 1070/1477/924 +f 1049/1455/903 1052/1458/906 1075/1482/929 1071/1478/925 +f 1029/1435/883 1047/1453/901 1069/1476/923 1076/1483/930 +f 1053/1459/907 1030/1436/884 1077/1484/931 1078/1485/932 +f 1052/1458/906 1039/1445/893 1061/1468/915 1075/1482/929 +f 1032/1438/886 1026/1432/880 1079/1486/933 1080/1487/934 +f 1025/1431/879 1054/1460/908 1081/1488/935 1082/1489/936 +f 1046/1452/900 1033/1439/887 1083/1490/937 1068/1475/922 +f 1054/1460/908 1055/1461/909 1084/1491/938 1081/1488/935 +f 1050/1456/904 1053/1459/907 1078/1485/932 1073/1480/927 +f 1055/1461/909 1056/1462/910 1085/1492/939 1084/1491/938 +f 1045/1451/899 1044/1450/898 1066/1473/920 1067/1474/921 +f 1056/1462/910 1028/1463/882 1086/1493/940 1085/1492/939 +f 1026/1432/880 1025/1431/879 1082/1489/936 1079/1486/933 +f 1028/1434/882 1027/1433/881 1087/1494/941 1086/1495/940 +f 1030/1436/884 1029/1435/883 1076/1483/930 1077/1484/931 +f 1027/1433/881 1031/1437/885 1088/1496/942 1087/1494/941 +f 1033/1439/887 1032/1438/886 1080/1487/934 1083/1490/937 +f 1031/1437/885 1034/1440/888 1072/1479/926 1088/1496/942 +f 1063/1470/917 1067/1474/921 1089/1497/943 1090/1498/944 +f 1069/1476/923 1068/1475/922 1091/1499/945 1092/1500/946 +f 1057/1464/911 1064/1471/918 1093/1501/947 1094/1502/948 +f 1065/1472/919 1070/1477/924 1095/1503/949 1096/1504/950 +f 1072/1479/926 1071/1478/925 1097/1505/951 1098/1506/952 +f 1074/1481/928 1073/1480/927 1099/1507/953 1100/1508/954 +f 1070/1477/924 1074/1481/928 1100/1508/954 1095/1503/949 +f 1071/1478/925 1075/1482/929 1101/1509/955 1097/1505/951 +f 1076/1483/930 1069/1476/923 1092/1500/946 1102/1510/956 +f 1078/1485/932 1077/1484/931 1103/1511/957 1104/1512/958 +f 1075/1482/929 1061/1468/915 1105/1513/959 1101/1509/955 +f 1080/1487/934 1079/1486/933 1106/1514/960 1107/1515/961 +f 1082/1489/936 1081/1488/935 1108/1516/962 1109/1517/963 +f 1068/1475/922 1083/1490/937 1110/1518/964 1091/1499/945 +f 1081/1488/935 1084/1491/938 1111/1519/965 1108/1516/962 +f 1073/1480/927 1078/1485/932 1104/1512/958 1099/1507/953 +f 1084/1491/938 1085/1492/939 1112/1520/966 1111/1519/965 +f 1067/1474/921 1066/1473/920 1113/1521/967 1089/1497/943 +f 1085/1492/939 1086/1493/940 1114/1522/968 1112/1520/966 +f 1079/1486/933 1082/1489/936 1109/1517/963 1106/1514/960 +f 1086/1495/940 1087/1494/941 1115/1523/969 1114/1524/968 +f 1077/1484/931 1076/1483/930 1102/1510/956 1103/1511/957 +f 1087/1494/941 1088/1496/942 1116/1525/970 1115/1523/969 +f 1083/1490/937 1080/1487/934 1107/1515/961 1110/1518/964 +f 1088/1496/942 1072/1479/926 1098/1506/952 1116/1525/970 +f 1058/1465/912 1057/1464/911 1094/1502/948 1117/1526/971 +f 1060/1467/914 1059/1466/913 1118/1527/972 1119/1528/973 +f 1061/1468/915 1060/1467/914 1119/1528/973 1105/1513/959 +f 1059/1466/913 1062/1469/916 1120/1529/974 1118/1527/972 +f 1064/1471/918 1063/1470/917 1090/1498/944 1093/1501/947 +f 1066/1473/920 1065/1472/919 1096/1504/950 1113/1521/967 +f 1062/1469/916 1058/1465/912 1117/1526/971 1120/1529/974 +f 1104/1512/958 1103/1511/957 1121/1530/975 1122/1531/976 +f 1101/1509/955 1105/1513/959 1123/1532/977 1124/1533/978 +f 1107/1515/961 1106/1514/960 1125/1534/979 1126/1535/980 +f 1109/1517/963 1108/1516/962 1127/1536/981 1128/1537/982 +f 1091/1499/945 1110/1518/964 1129/1538/983 1130/1539/984 +f 1108/1516/962 1111/1519/965 1131/1540/985 1127/1536/981 +f 1099/1507/953 1104/1512/958 1122/1531/976 1132/1541/986 +f 1111/1519/965 1112/1520/966 1133/1542/987 1131/1540/985 +f 1089/1497/943 1113/1521/967 1134/1543/988 1135/1544/989 +f 1112/1520/966 1114/1522/968 1136/1545/990 1133/1542/987 +f 1106/1514/960 1109/1517/963 1128/1537/982 1125/1534/979 +f 1114/1524/968 1115/1523/969 1137/1546/991 1136/1547/990 +f 1103/1511/957 1102/1510/956 1138/1548/992 1121/1530/975 +f 1115/1523/969 1116/1525/970 1139/1549/993 1137/1546/991 +f 1110/1518/964 1107/1515/961 1126/1535/980 1129/1538/983 +f 1116/1525/970 1098/1506/952 1140/1550/994 1139/1549/993 +f 1117/1526/971 1094/1502/948 1141/1551/995 1142/1552/996 +f 1119/1528/973 1118/1527/972 1143/1553/997 1144/1554/998 +f 1105/1513/959 1119/1528/973 1144/1554/998 1123/1532/977 +f 1118/1527/972 1120/1529/974 1145/1555/999 1143/1553/997 +f 1093/1501/947 1090/1498/944 1146/1556/1000 1147/1557/1001 +f 1113/1521/967 1096/1504/950 1148/1558/1002 1134/1543/988 +f 1120/1529/974 1117/1526/971 1142/1552/996 1145/1555/999 +f 1090/1498/944 1089/1497/943 1135/1544/989 1146/1556/1000 +f 1092/1500/946 1091/1499/945 1130/1539/984 1149/1559/1003 +f 1094/1502/948 1093/1501/947 1147/1557/1001 1141/1551/995 +f 1096/1504/950 1095/1503/949 1150/1560/1004 1148/1558/1002 +f 1098/1506/952 1097/1505/951 1151/1561/1005 1140/1550/994 +f 1100/1508/954 1099/1507/953 1132/1541/986 1152/1562/1006 +f 1095/1503/949 1100/1508/954 1152/1562/1006 1150/1560/1004 +f 1097/1505/951 1101/1509/955 1124/1533/978 1151/1561/1005 +f 1102/1510/956 1092/1500/946 1149/1559/1003 1138/1548/992 +f 1131/1540/985 1133/1542/987 1153/1563/1007 1154/1564/1008 +f 1135/1544/989 1134/1543/988 1155/1565/1009 1156/1566/1010 +f 1133/1542/987 1136/1545/990 1157/1567/1011 1153/1563/1007 +f 1125/1534/979 1128/1537/982 1158/1568/1012 1159/1569/1013 +f 1136/1547/990 1137/1546/991 1160/1570/1014 1157/1571/1011 +f 1121/1530/975 1138/1548/992 1161/1572/1015 1162/1573/1016 +f 1137/1546/991 1139/1549/993 1163/1574/1017 1160/1570/1014 +f 1129/1538/983 1126/1535/980 1164/1575/1018 1165/1576/1019 +f 1139/1549/993 1140/1550/994 1166/1577/1020 1163/1574/1017 +f 1142/1552/996 1141/1551/995 1167/1578/1021 1168/1579/1022 +f 1144/1554/998 1143/1553/997 1169/1580/1023 1170/1581/1024 +f 1123/1532/977 1144/1554/998 1170/1581/1024 1171/1582/1025 +f 1143/1553/997 1145/1555/999 1172/1583/1026 1169/1580/1023 +f 1147/1557/1001 1146/1556/1000 1173/1584/1027 1174/1585/1028 +f 1134/1543/988 1148/1558/1002 1175/1586/1029 1155/1565/1009 +f 1145/1555/999 1142/1552/996 1168/1579/1022 1172/1583/1026 +f 1146/1556/1000 1135/1544/989 1156/1566/1010 1173/1584/1027 +f 1149/1559/1003 1130/1539/984 1176/1587/1030 1177/1588/1031 +f 1141/1551/995 1147/1557/1001 1174/1585/1028 1167/1578/1021 +f 1148/1558/1002 1150/1560/1004 1178/1589/1032 1175/1586/1029 +f 1140/1550/994 1151/1561/1005 1179/1590/1033 1166/1577/1020 +f 1152/1562/1006 1132/1541/986 1180/1591/1034 1181/1592/1035 +f 1150/1560/1004 1152/1562/1006 1181/1592/1035 1178/1589/1032 +f 1151/1561/1005 1124/1533/978 1182/1593/1036 1179/1590/1033 +f 1138/1548/992 1149/1559/1003 1177/1588/1031 1161/1572/1015 +f 1122/1531/976 1121/1530/975 1162/1573/1016 1183/1594/1037 +f 1124/1533/978 1123/1532/977 1171/1582/1025 1182/1593/1036 +f 1126/1535/980 1125/1534/979 1159/1569/1013 1164/1575/1018 +f 1128/1537/982 1127/1536/981 1184/1595/1038 1158/1568/1012 +f 1130/1539/984 1129/1538/983 1165/1576/1019 1176/1587/1030 +f 1127/1536/981 1131/1540/985 1154/1564/1008 1184/1595/1038 +f 1132/1541/986 1122/1531/976 1183/1594/1037 1180/1591/1034 +f 1160/1570/1014 1163/1574/1017 536/734/303 541/739/308 +f 1165/1576/1019 1164/1575/1018 591/839/404 652/983/508 +f 1163/1574/1017 1166/1577/1020 524/722/291 536/734/303 +f 1168/1579/1022 1167/1578/1021 545/743/312 702/1098/556 +f 1170/1581/1024 1169/1580/1023 512/710/279 511/709/278 +f 1171/1582/1025 1170/1581/1024 511/709/278 515/713/282 +f 1169/1580/1023 1172/1583/1026 519/717/286 512/710/279 +f 1174/1585/1028 1173/1584/1027 650/981/506 543/741/310 +f 1155/1565/1009 1175/1586/1029 567/790/358 555/767/336 +f 1172/1583/1026 1168/1579/1022 702/1098/556 519/717/286 +f 1173/1584/1027 1156/1566/1010 558/770/339 650/981/506 +f 1177/1588/1031 1176/1587/1030 584/826/391 587/829/394 +f 1167/1578/1021 1174/1585/1028 543/741/310 545/743/312 +f 1175/1586/1029 1178/1589/1032 568/791/359 567/790/358 +f 1166/1577/1020 1179/1590/1033 521/719/288 524/722/291 +f 1181/1592/1035 1180/1591/1034 573/801/368 651/982/507 +f 1178/1589/1032 1181/1592/1035 651/982/507 568/791/359 +f 1179/1590/1033 1182/1593/1036 517/715/284 521/719/288 +f 1161/1572/1015 1177/1588/1031 587/829/394 592/840/405 +f 1183/1594/1037 1162/1573/1016 653/985/509 574/802/369 +f 1182/1593/1036 1171/1582/1025 515/713/282 517/715/284 +f 1164/1575/1018 1159/1569/1013 529/727/296 591/839/404 +f 1158/1568/1012 1184/1595/1038 563/786/354 530/728/297 +f 1176/1587/1030 1165/1576/1019 652/983/508 584/826/391 +f 1184/1595/1038 1154/1564/1008 564/787/355 563/786/354 +f 1180/1591/1034 1183/1594/1037 574/802/369 573/801/368 +f 1154/1564/1008 1153/1563/1007 551/763/332 564/787/355 +f 1156/1566/1010 1155/1565/1009 555/767/336 558/770/339 +f 1153/1563/1007 1157/1567/1011 552/764/333 551/763/332 +f 1159/1569/1013 1158/1568/1012 530/728/297 529/727/296 +f 1157/1571/1011 1160/1570/1014 541/739/308 552/984/333 +f 1162/1573/1016 1161/1572/1015 592/840/405 653/985/509 diff --git a/mods/pipeworks/models/pipeworks_pipe_4_lowpoly.obj b/mods/pipeworks/models/pipeworks_pipe_4_lowpoly.obj new file mode 100644 index 00000000..788b6b12 --- /dev/null +++ b/mods/pipeworks/models/pipeworks_pipe_4_lowpoly.obj @@ -0,0 +1,358 @@ +# Blender v2.78 (sub 0) OBJ File: 'pipe-master-lowpoly.blend' +# www.blender.org +o Cylinder.000_Cylinder.000_None.001 +v -0.125000 0.000000 0.051777 +v -0.051777 0.000000 0.125000 +v -0.051777 0.051777 0.125000 +v -0.088388 0.088388 0.088388 +v -0.125000 0.051777 0.051777 +v -0.125000 -0.000000 -0.051777 +v -0.125000 0.051777 -0.051777 +v -0.088388 0.088389 -0.088388 +v -0.051777 0.051777 -0.125000 +v -0.051777 -0.000000 -0.125000 +v 0.000000 0.051777 -0.125000 +v 0.000000 -0.000000 -0.125000 +v 0.000000 0.000000 0.125000 +v 0.000000 0.051777 0.125000 +v -0.125000 0.000000 0.000000 +v -0.125000 0.051777 -0.000000 +v -0.051777 0.125000 0.051777 +v -0.051777 0.125000 -0.051777 +v 0.500000 -0.156250 -0.064721 +v 0.500000 -0.064721 -0.156250 +v 0.500000 0.064721 -0.156250 +v 0.500000 0.156250 -0.064721 +v 0.500000 0.156250 0.064721 +v 0.500000 0.064721 0.156250 +v 0.500000 -0.064721 0.156250 +v 0.500000 -0.156250 0.064721 +v 0.468750 -0.064721 -0.156250 +v 0.468750 -0.156250 -0.064721 +v 0.468750 -0.156250 0.064721 +v 0.468750 -0.064721 0.156250 +v 0.468750 0.064721 0.156250 +v 0.468750 0.156250 0.064721 +v 0.468750 0.156250 -0.064721 +v 0.468750 0.064721 -0.156250 +v 0.156250 -0.468750 -0.064721 +v 0.064721 -0.468750 -0.156250 +v -0.064721 -0.468750 -0.156250 +v -0.156250 -0.468750 -0.064721 +v -0.156250 -0.468750 0.064721 +v -0.064721 -0.468750 0.156250 +v 0.064721 -0.468750 0.156250 +v 0.156250 -0.468750 0.064721 +v 0.064721 -0.500000 -0.156250 +v 0.156250 -0.500000 -0.064721 +v 0.156250 -0.500000 0.064721 +v 0.064721 -0.500000 0.156250 +v -0.064721 -0.500000 0.156250 +v -0.156250 -0.500000 0.064721 +v -0.156250 -0.500000 -0.064721 +v -0.064721 -0.500000 -0.156250 +v 0.468750 -0.125000 -0.051777 +v 0.468750 -0.051777 -0.125000 +v 0.468750 0.051777 -0.125000 +v 0.468750 0.125000 -0.051777 +v 0.468750 0.125000 0.051777 +v 0.468750 0.051777 0.125000 +v 0.468750 -0.051777 0.125000 +v 0.468750 -0.125000 0.051777 +v 0.125000 -0.468750 0.051777 +v 0.125000 -0.125000 0.051777 +v 0.051777 -0.051777 0.125000 +v 0.051777 -0.468750 0.125000 +v 0.125000 -0.468750 -0.051777 +v 0.051777 -0.468750 -0.125000 +v 0.051777 -0.051777 -0.125000 +v 0.125000 -0.125000 -0.051777 +v 0.000000 -0.051777 0.125000 +v 0.000000 -0.051777 -0.125000 +v -0.051777 -0.468750 0.125000 +v -0.125000 -0.468750 0.051777 +v -0.125000 -0.468750 -0.051777 +v -0.051777 -0.468750 -0.125000 +v -0.051777 -0.051777 -0.125000 +v -0.051777 -0.051777 0.125000 +vt 0.3438 0.8906 +vt 0.2500 0.9844 +vt 0.1250 0.9844 +vt 0.0312 0.8906 +vt 0.0312 0.7656 +vt 0.1250 0.6719 +vt 0.2500 0.6719 +vt 0.3438 0.7656 +vt 0.6250 0.9844 +vt 0.7188 0.8906 +vt 0.7188 0.7656 +vt 0.6250 0.6719 +vt 0.5000 0.6719 +vt 0.4062 0.7656 +vt 0.4062 0.8906 +vt 0.5000 0.9844 +vt 0.7188 0.8906 +vt 0.6250 0.9844 +vt 0.5000 0.9844 +vt 0.4062 0.8906 +vt 0.4062 0.7656 +vt 0.5000 0.6719 +vt 0.6250 0.6719 +vt 0.7188 0.7656 +vt 0.2500 0.9844 +vt 0.3438 0.8906 +vt 0.3438 0.7656 +vt 0.2500 0.6719 +vt 0.1250 0.6719 +vt 0.0312 0.7656 +vt 0.0312 0.8906 +vt 0.1250 0.9844 +vt 1.0000 0.2656 +vt 0.8750 0.2656 +vt 0.8750 0.2344 +vt 0.9375 0.2188 +vt 1.0000 0.2344 +vt 0.1250 0.2656 +vt 0.1250 0.2344 +vt 0.1875 0.2188 +vt 0.2500 0.2344 +vt 0.2500 0.2656 +vt 0.3125 0.2344 +vt 0.3125 0.2656 +vt 0.7500 0.2344 +vt 0.8125 0.2344 +vt 0.8125 0.2656 +vt 0.7500 0.2656 +vt -0.0000 0.2344 +vt 0.0625 0.2344 +vt 0.0625 0.2656 +vt -0.0000 0.2656 +vt -0.0000 0.2969 +vt 0.0625 0.2969 +vt 0.9375 0.3125 +vt 0.8750 0.2969 +vt 0.8750 0.2344 +vt 0.9375 0.2188 +vt 1.0000 0.2344 +vt 1.0000 0.2656 +vt 1.0000 0.2969 +vt 0.3750 0.5938 +vt 0.3750 0.5625 +vt 0.4375 0.5625 +vt 0.4375 0.5938 +vt 0.3125 0.5938 +vt 0.3125 0.5625 +vt 0.5000 0.5625 +vt 0.5000 0.5938 +vt 0.0000 0.5938 +vt 0.0000 0.5625 +vt 0.0625 0.5625 +vt 0.0625 0.5938 +vt 0.1250 0.5625 +vt 0.1250 0.5938 +vt 0.1875 0.5625 +vt 0.1875 0.5938 +vt 0.2500 0.5625 +vt 0.2500 0.5938 +vt 1.0000 0.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 0.0156 +vt 1.0000 0.2031 +vt 0.8750 0.2344 +vt 0.8750 0.0156 +vt 0.1250 0.0156 +vt 0.2500 0.0156 +vt 0.2500 0.2344 +vt 0.1250 0.2031 +vt 0.8750 0.5156 +vt 0.7500 0.5156 +vt 0.8750 0.2656 +vt 0.8750 0.2969 +vt 1.0000 0.5156 +vt 1.0000 0.3281 +vt 0.2500 0.2969 +vt 0.2500 0.2656 +vt 0.3750 0.2656 +vt 0.3750 0.5156 +vt 0.2500 0.5156 +vt 0.6250 0.5156 +vt 0.6250 0.2344 +vt 0.6875 0.2188 +vt 0.1250 0.5156 +vt -0.0000 0.5156 +vt -0.0000 0.3281 +vt 0.1250 0.3281 +vt 0.5000 0.5156 +vt 0.5000 0.2344 +vt 0.8125 0.5938 +vt 0.8125 0.5625 +vt 0.8750 0.5625 +vt 0.8750 0.5938 +vt 0.9375 0.5625 +vt 0.9375 0.5938 +vt 1.0000 0.5625 +vt 1.0000 0.5938 +vt 0.5000 0.5938 +vt 0.5000 0.5625 +vt 0.5625 0.5625 +vt 0.5625 0.5938 +vt 0.6250 0.5625 +vt 0.6250 0.5938 +vt 0.6875 0.5625 +vt 0.6875 0.5938 +vt 0.7500 0.5625 +vt 0.7500 0.5938 +vt 0.0000 1.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.5000 0.2656 +vt 0.3750 0.2656 +vt 0.3750 0.2344 +vt 0.3750 0.0156 +vt 0.5000 0.0156 +vt 0.7500 0.2344 +vt 0.7500 0.2656 +vt 0.6250 0.2656 +vt 0.6250 0.0156 +vt 0.7500 0.0156 +vt 0.5625 0.2656 +vt 0.8125 0.2344 +vt 0.3125 0.2344 +vt -0.0000 0.2031 +vt -0.0000 0.0156 +vt 0.3750 0.2344 +vt 0.4375 0.2188 +vn 1.0000 0.0000 0.0000 +vn -1.0000 0.0000 0.0000 +vn 0.0000 1.0000 -0.0000 +vn 0.0000 -1.0000 0.0000 +vn -0.9239 0.0000 0.3827 +vn -0.3827 0.0000 0.9239 +vn -0.5441 0.5441 0.6386 +vn -0.8881 0.3251 0.3251 +vn -0.9054 0.3002 0.3002 +vn -0.9239 0.0000 -0.3827 +vn -0.9054 0.3002 -0.3002 +vn -0.3251 0.3251 -0.8881 +vn -0.3119 -0.1343 -0.9406 +vn -0.3827 0.0000 -0.9239 +vn -0.0783 0.5712 -0.8171 +vn 0.0000 0.0000 -1.0000 +vn 0.0000 0.0000 1.0000 +vn -0.2288 0.3725 0.8994 +vn -0.9239 0.3827 0.0000 +vn -0.3119 0.9406 -0.1343 +vn -0.5441 0.6386 -0.5441 +vn -0.6302 -0.7173 -0.2971 +vn 0.6302 -0.7173 -0.2971 +vn 0.6302 -0.7173 0.2971 +vn -0.6302 -0.7173 0.2971 +vn -0.6302 -0.2971 -0.7173 +vn 0.6302 -0.2971 -0.7173 +vn 0.6302 -0.2971 0.7173 +vn -0.6302 -0.2971 0.7173 +vn 0.6302 0.2971 0.7173 +vn -0.6302 0.2971 0.7173 +vn 0.6302 0.7173 0.2971 +vn -0.6302 0.7173 0.2971 +vn 0.6302 0.7173 -0.2971 +vn -0.6302 0.7173 -0.2971 +vn 0.6302 0.2971 -0.7173 +vn -0.6302 0.2971 -0.7173 +vn 0.6303 -0.7173 -0.2971 +vn 0.6303 -0.2971 -0.7173 +vn 0.6303 0.2971 -0.7173 +vn 0.6303 0.7173 -0.2971 +vn 0.6303 0.7173 0.2971 +vn 0.6303 0.2971 0.7173 +vn 0.6303 -0.2971 0.7173 +vn 0.6303 -0.7173 0.2971 +vn 0.7173 -0.6303 0.2971 +vn 0.5789 -0.5789 0.5743 +vn 0.1101 -0.1101 0.9878 +vn 0.2971 -0.6303 0.7173 +vn 0.7173 -0.6303 -0.2971 +vn 0.2971 -0.6303 -0.7173 +vn 0.1101 -0.1101 -0.9878 +vn 0.5789 -0.5789 -0.5743 +vn 0.2971 -0.6302 -0.7173 +vn 0.2971 0.6302 -0.7173 +vn 0.7173 0.6302 -0.2971 +vn 0.7173 -0.6302 -0.2971 +vn 0.7173 0.6302 0.2971 +vn 0.7173 -0.6302 0.2971 +vn 0.2971 0.6302 0.7173 +vn 0.2971 -0.6302 0.7173 +vn -0.2971 0.6302 0.7173 +vn -0.2971 -0.6302 0.7173 +vn -0.7173 0.6302 0.2971 +vn -0.7173 -0.6302 0.2971 +vn -0.7173 0.6302 -0.2971 +vn -0.7173 -0.6302 -0.2971 +vn -0.2971 0.6302 -0.7173 +vn -0.2971 -0.6302 -0.7173 +vn -0.2971 -0.6303 0.7173 +vn -0.7173 -0.6303 0.2971 +vn -0.7173 -0.6303 -0.2971 +vn -0.2971 -0.6303 -0.7173 +g Cylinder.000_Cylinder.000_None.001_Cylinder.000_Cylinder.000_None.001_None +s off +f 19/1/1 20/2/1 21/3/1 22/4/1 23/5/1 24/6/1 25/7/1 26/8/1 +f 27/9/2 28/10/2 29/11/2 30/12/2 31/13/2 32/14/2 33/15/2 34/16/2 +f 35/17/3 36/18/3 37/19/3 38/20/3 39/21/3 40/22/3 41/23/3 42/24/3 +f 43/25/4 44/26/4 45/27/4 46/28/4 47/29/4 48/30/4 49/31/4 50/32/4 +s 1 +f 1/33/5 2/34/6 3/35/7 4/36/8 5/37/9 +f 6/38/10 7/39/11 8/40/12 9/41/13 10/42/14 +f 9/41/13 11/43/15 12/44/16 10/42/14 +f 3/45/7 2/46/6 13/47/17 14/48/18 +f 7/49/11 6/50/10 15/51/2 16/52/19 +f 5/53/9 16/52/19 15/51/2 1/54/5 +f 4/55/8 17/56/20 18/57/21 8/58/12 7/59/11 16/60/19 5/61/9 +f 28/62/22 19/63/23 26/64/24 29/65/25 +f 27/66/26 20/67/27 19/63/23 28/62/22 +f 29/65/25 26/64/24 25/68/28 30/69/29 +f 30/70/29 25/71/28 24/72/30 31/73/31 +f 31/73/31 24/72/30 23/74/32 32/75/33 +f 32/75/33 23/74/32 22/76/34 33/77/35 +f 33/77/35 22/76/34 21/78/36 34/79/37 +f 34/79/37 21/78/36 20/67/27 27/66/26 +f 51/80/38 52/81/39 53/82/40 54/83/41 55/84/42 56/85/43 57/86/44 58/87/45 +f 59/88/46 60/89/47 61/90/48 62/91/49 +f 63/92/50 64/93/51 65/94/52 66/95/53 +f 57/96/44 56/97/43 14/48/18 13/47/17 67/98/17 61/99/48 +f 58/100/45 57/96/44 61/99/48 60/101/47 +f 65/102/52 68/103/16 12/44/16 11/104/15 53/105/40 52/106/39 +f 56/97/43 55/107/42 17/108/20 4/109/8 3/45/7 14/48/18 +f 51/110/38 58/111/45 60/112/47 66/113/53 +f 55/107/42 54/114/41 18/115/21 17/108/20 +f 43/116/54 36/117/55 35/118/56 44/119/57 +f 44/119/57 35/118/56 42/120/58 45/121/59 +f 45/121/59 42/120/58 41/122/60 46/123/61 +f 46/124/61 41/125/60 40/126/62 47/127/63 +f 47/127/63 40/126/62 39/128/64 48/129/65 +f 48/129/65 39/128/64 38/130/66 49/131/67 +f 49/131/67 38/130/66 37/132/68 50/133/69 +f 50/133/69 37/132/68 36/117/55 43/116/54 +f 64/134/51 63/135/50 59/136/46 62/137/49 69/138/70 70/139/71 71/140/72 72/141/73 +f 6/142/10 10/143/14 73/144/14 72/145/73 71/146/72 +f 74/147/6 2/148/6 1/149/5 70/150/71 69/151/70 +f 51/110/38 66/113/53 65/102/52 52/106/39 +f 70/150/71 1/149/5 15/152/2 6/142/10 71/146/72 +f 62/91/49 61/90/48 67/153/17 74/147/6 69/151/70 +f 64/93/51 72/145/73 73/144/14 68/154/16 65/94/52 +f 63/92/50 66/95/53 60/155/47 59/156/46 +f 10/143/14 12/44/16 68/154/16 73/144/14 +f 74/147/6 67/153/17 13/47/17 2/148/6 +f 53/105/40 11/104/15 9/157/13 8/158/12 18/115/21 54/114/41 diff --git a/mods/pipeworks/models/pipeworks_pipe_5.obj b/mods/pipeworks/models/pipeworks_pipe_5.obj new file mode 100644 index 00000000..27b37756 --- /dev/null +++ b/mods/pipeworks/models/pipeworks_pipe_5.obj @@ -0,0 +1,4277 @@ +# Blender v2.78 (sub 0) OBJ File: 'pipe-master-highpoly.blend' +# www.blender.org +o Pipe_Cylinder.002_None.001 +v 0.460914 0.136982 -0.046976 +v 0.460914 0.142474 -0.054133 +v 0.460914 0.139022 -0.062467 +v 0.460914 0.130078 -0.063644 +v 0.460914 0.124587 -0.056488 +v 0.460914 0.128039 -0.048153 +v 0.460914 0.063644 -0.130078 +v 0.460914 0.062467 -0.139022 +v 0.460914 0.054133 -0.142474 +v 0.460914 0.046976 -0.136982 +v 0.460914 0.048153 -0.128039 +v 0.460914 0.056487 -0.124587 +v 0.460914 -0.046976 -0.136982 +v 0.460914 -0.054133 -0.142474 +v 0.460914 -0.062467 -0.139022 +v 0.460914 -0.063644 -0.130078 +v 0.460914 -0.056488 -0.124587 +v 0.460914 -0.048153 -0.128039 +v 0.460914 -0.130078 -0.063644 +v 0.460914 -0.139022 -0.062467 +v 0.460914 -0.142474 -0.054133 +v 0.460914 -0.136982 -0.046976 +v 0.460914 -0.128039 -0.048153 +v 0.460914 -0.124587 -0.056487 +v 0.460914 -0.136982 0.046976 +v 0.460914 -0.142474 0.054133 +v 0.460914 -0.139022 0.062467 +v 0.460914 -0.130078 0.063644 +v 0.460914 -0.124587 0.056487 +v 0.460914 -0.128039 0.048153 +v 0.460914 -0.063644 0.130078 +v 0.460914 -0.062467 0.139022 +v 0.460914 -0.054132 0.142474 +v 0.460914 -0.046976 0.136982 +v 0.460914 -0.048153 0.128039 +v 0.460914 -0.056487 0.124587 +v 0.460914 0.046976 0.136982 +v 0.460914 0.054133 0.142474 +v 0.460914 0.062467 0.139022 +v 0.460914 0.063644 0.130078 +v 0.460914 0.056487 0.124587 +v 0.460914 0.048153 0.128039 +v 0.460914 0.130078 0.063644 +v 0.460914 0.139022 0.062467 +v 0.460914 0.142474 0.054133 +v 0.460914 0.136982 0.046976 +v 0.460914 0.128039 0.048153 +v 0.460914 0.124587 0.056487 +v 0.468750 0.099603 0.121367 +v 0.468750 0.121367 0.099603 +v 0.468750 0.138467 0.074012 +v 0.468750 0.150245 0.045576 +v 0.468750 0.156250 0.015389 +v 0.468750 0.156250 -0.015389 +v 0.468750 0.150245 -0.045576 +v 0.468750 0.138467 -0.074012 +v 0.468750 0.121367 -0.099603 +v 0.468750 0.099603 -0.121367 +v 0.468750 0.074012 -0.138467 +v 0.468750 0.045576 -0.150245 +v 0.468750 0.015389 -0.156250 +v 0.468750 -0.015389 -0.156250 +v 0.468750 -0.045576 -0.150245 +v 0.468750 -0.074012 -0.138467 +v 0.468750 -0.099603 -0.121367 +v 0.468750 -0.121367 -0.099603 +v 0.468750 -0.138467 -0.074012 +v 0.468750 -0.150245 -0.045576 +v 0.468750 -0.156250 -0.015389 +v 0.468750 -0.156250 0.015389 +v 0.468750 -0.150245 0.045576 +v 0.468750 -0.138466 0.074012 +v 0.468750 -0.121367 0.099603 +v 0.468750 -0.099603 0.121367 +v 0.468750 -0.074012 0.138467 +v 0.468750 -0.045576 0.150245 +v 0.468750 -0.015389 0.156250 +v 0.468750 0.015390 0.156250 +v 0.468750 0.045577 0.150245 +v 0.468750 0.074012 0.138467 +v 0.500000 -0.150245 -0.045576 +v 0.500000 -0.138467 -0.074012 +v 0.500000 -0.121367 -0.099603 +v 0.500000 -0.099603 -0.121367 +v 0.500000 -0.074012 -0.138467 +v 0.500000 -0.045576 -0.150245 +v 0.500000 -0.015389 -0.156250 +v 0.500000 0.015389 -0.156250 +v 0.500000 0.045576 -0.150245 +v 0.500000 0.074012 -0.138467 +v 0.500000 0.099603 -0.121367 +v 0.500000 0.121367 -0.099603 +v 0.500000 0.138467 -0.074012 +v 0.500000 0.150245 -0.045576 +v 0.500000 0.156250 -0.015389 +v 0.500000 0.156250 0.015389 +v 0.500000 0.150245 0.045576 +v 0.500000 0.138467 0.074012 +v 0.500000 0.121367 0.099603 +v 0.500000 0.099603 0.121367 +v 0.500000 0.074012 0.138467 +v 0.500000 0.045577 0.150245 +v 0.500000 0.015390 0.156250 +v 0.500000 -0.015389 0.156250 +v 0.500000 -0.045576 0.150245 +v 0.500000 -0.074012 0.138467 +v 0.500000 -0.099603 0.121367 +v 0.500000 -0.121367 0.099603 +v 0.500000 -0.138466 0.074012 +v 0.500000 -0.150245 0.045576 +v 0.500000 -0.156250 0.015389 +v 0.500000 -0.156250 -0.015389 +v 0.460914 0.108578 -0.095821 +v 0.460914 0.110913 -0.104534 +v 0.460914 0.104534 -0.110913 +v 0.460914 0.095821 -0.108578 +v 0.460914 0.093486 -0.099865 +v 0.460914 0.099865 -0.093486 +v 0.460914 0.009021 -0.144532 +v 0.460914 0.004510 -0.152344 +v 0.460914 -0.004510 -0.152344 +v 0.460914 -0.009021 -0.144532 +v 0.460914 -0.004510 -0.136720 +v 0.460914 0.004510 -0.136720 +v 0.460914 -0.095821 -0.108578 +v 0.460914 -0.104534 -0.110913 +v 0.460914 -0.110913 -0.104534 +v 0.460914 -0.108578 -0.095821 +v 0.460914 -0.099865 -0.093486 +v 0.460914 -0.093486 -0.099865 +v 0.460914 -0.144532 -0.009021 +v 0.460914 -0.152344 -0.004510 +v 0.460914 -0.152344 0.004510 +v 0.460914 -0.144532 0.009021 +v 0.460914 -0.136720 0.004510 +v 0.460914 -0.136720 -0.004510 +v 0.460914 -0.108578 0.095821 +v 0.460914 -0.110913 0.104534 +v 0.460914 -0.104534 0.110913 +v 0.460914 -0.095821 0.108578 +v 0.460914 -0.093486 0.099865 +v 0.460914 -0.099865 0.093486 +v 0.460914 -0.009021 0.144532 +v 0.460914 -0.004510 0.152344 +v 0.460914 0.004510 0.152344 +v 0.460914 0.009021 0.144532 +v 0.460914 0.004510 0.136720 +v 0.460914 -0.004510 0.136720 +v 0.460914 0.095821 0.108578 +v 0.460914 0.104534 0.110913 +v 0.460914 0.110913 0.104534 +v 0.460914 0.108578 0.095821 +v 0.460914 0.099865 0.093486 +v 0.460914 0.093486 0.099865 +v 0.460914 0.144532 0.009021 +v 0.460914 0.152344 0.004510 +v 0.460914 0.152344 -0.004510 +v 0.460914 0.144532 -0.009021 +v 0.460914 0.136720 -0.004510 +v 0.460914 0.136720 0.004510 +v -0.130078 -0.460912 -0.063644 +v -0.139022 -0.460912 -0.062467 +v -0.142474 -0.460912 -0.054133 +v -0.136982 -0.460912 -0.046976 +v -0.128039 -0.460912 -0.048153 +v -0.124587 -0.460912 -0.056487 +v -0.046976 -0.460912 -0.136982 +v -0.054133 -0.460912 -0.142474 +v -0.062467 -0.460912 -0.139022 +v -0.063644 -0.460912 -0.130078 +v -0.056488 -0.460912 -0.124587 +v -0.048153 -0.460912 -0.128039 +v 0.063644 -0.460912 -0.130078 +v 0.062467 -0.460912 -0.139022 +v 0.054132 -0.460912 -0.142474 +v 0.046976 -0.460912 -0.136982 +v 0.048153 -0.460912 -0.128039 +v 0.056487 -0.460912 -0.124587 +v 0.136982 -0.460912 -0.046976 +v 0.142474 -0.460912 -0.054133 +v 0.139022 -0.460912 -0.062467 +v 0.130078 -0.460912 -0.063644 +v 0.124587 -0.460912 -0.056488 +v 0.128039 -0.460912 -0.048154 +v 0.130078 -0.460912 0.063644 +v 0.139022 -0.460912 0.062467 +v 0.142474 -0.460912 0.054132 +v 0.136982 -0.460912 0.046976 +v 0.128039 -0.460912 0.048153 +v 0.124587 -0.460912 0.056487 +v 0.046976 -0.460912 0.136982 +v 0.054133 -0.460912 0.142474 +v 0.062467 -0.460912 0.139022 +v 0.063644 -0.460912 0.130078 +v 0.056488 -0.460912 0.124587 +v 0.048153 -0.460912 0.128039 +v -0.063644 -0.460912 0.130078 +v -0.062467 -0.460912 0.139022 +v -0.054132 -0.460912 0.142474 +v -0.046976 -0.460912 0.136982 +v -0.048153 -0.460912 0.128039 +v -0.056487 -0.460912 0.124587 +v -0.136982 -0.460912 0.046976 +v -0.142474 -0.460912 0.054133 +v -0.139022 -0.460912 0.062467 +v -0.130078 -0.460912 0.063644 +v -0.124587 -0.460912 0.056488 +v -0.128039 -0.460912 0.048153 +v 0.156250 -0.468750 -0.015389 +v 0.150245 -0.468750 -0.045576 +v 0.138467 -0.468750 -0.074012 +v 0.121367 -0.468750 -0.099603 +v 0.099603 -0.468750 -0.121367 +v 0.074012 -0.468750 -0.138467 +v 0.045576 -0.468750 -0.150245 +v 0.015389 -0.468750 -0.156250 +v -0.015389 -0.468750 -0.156250 +v -0.045576 -0.468750 -0.150245 +v -0.074012 -0.468750 -0.138467 +v -0.099603 -0.468750 -0.121367 +v -0.121367 -0.468750 -0.099603 +v -0.138467 -0.468750 -0.074012 +v -0.150245 -0.468750 -0.045576 +v -0.156249 -0.468750 -0.015389 +v -0.156249 -0.468750 0.015389 +v -0.150245 -0.468750 0.045576 +v -0.138466 -0.468750 0.074012 +v -0.121367 -0.468750 0.099603 +v -0.099603 -0.468750 0.121367 +v -0.074012 -0.468750 0.138467 +v -0.045576 -0.468750 0.150245 +v -0.015389 -0.468750 0.156250 +v 0.015389 -0.468750 0.156250 +v 0.045576 -0.468750 0.150245 +v 0.074012 -0.468750 0.138467 +v 0.099603 -0.468750 0.121367 +v 0.121367 -0.468750 0.099603 +v 0.138467 -0.468750 0.074012 +v 0.150245 -0.468750 0.045576 +v 0.156250 -0.468750 0.015389 +v 0.138467 -0.500000 0.074012 +v 0.121367 -0.500000 0.099603 +v 0.099603 -0.500000 0.121367 +v 0.074012 -0.500000 0.138467 +v 0.045576 -0.500000 0.150245 +v 0.015389 -0.500000 0.156250 +v -0.015389 -0.500000 0.156250 +v -0.045576 -0.500000 0.150245 +v -0.074012 -0.500000 0.138467 +v -0.099603 -0.500000 0.121367 +v -0.121367 -0.500000 0.099603 +v -0.138466 -0.500000 0.074012 +v -0.150245 -0.500000 0.045576 +v -0.156249 -0.500000 0.015389 +v -0.156250 -0.500000 -0.015389 +v -0.150245 -0.500000 -0.045576 +v -0.138467 -0.500000 -0.074012 +v -0.121367 -0.500000 -0.099603 +v -0.099603 -0.500000 -0.121367 +v -0.074012 -0.500000 -0.138467 +v -0.045576 -0.500000 -0.150245 +v -0.015389 -0.500000 -0.156250 +v 0.015389 -0.500000 -0.156250 +v 0.045576 -0.500000 -0.150245 +v 0.074012 -0.500000 -0.138467 +v 0.099603 -0.500000 -0.121367 +v 0.121367 -0.500000 -0.099603 +v 0.138467 -0.500000 -0.074012 +v 0.150245 -0.500000 -0.045576 +v 0.156250 -0.500000 -0.015389 +v 0.156250 -0.500000 0.015389 +v 0.150245 -0.500000 0.045576 +v -0.095821 -0.460912 -0.108578 +v -0.104534 -0.460912 -0.110913 +v -0.110913 -0.460912 -0.104534 +v -0.108578 -0.460912 -0.095821 +v -0.099865 -0.460912 -0.093486 +v -0.093486 -0.460912 -0.099865 +v 0.009021 -0.460912 -0.144532 +v 0.004510 -0.460912 -0.152344 +v -0.004510 -0.460912 -0.152344 +v -0.009021 -0.460912 -0.144532 +v -0.004510 -0.460912 -0.136720 +v 0.004510 -0.460912 -0.136720 +v 0.108578 -0.460912 -0.095821 +v 0.110913 -0.460912 -0.104534 +v 0.104534 -0.460912 -0.110913 +v 0.095821 -0.460912 -0.108578 +v 0.093486 -0.460912 -0.099865 +v 0.099865 -0.460912 -0.093486 +v 0.144532 -0.460912 0.009021 +v 0.152344 -0.460912 0.004510 +v 0.152344 -0.460912 -0.004511 +v 0.144532 -0.460912 -0.009021 +v 0.136720 -0.460912 -0.004511 +v 0.136720 -0.460912 0.004510 +v 0.095821 -0.460912 0.108578 +v 0.104534 -0.460912 0.110913 +v 0.110913 -0.460912 0.104534 +v 0.108578 -0.460912 0.095821 +v 0.099865 -0.460912 0.093486 +v 0.093486 -0.460912 0.099865 +v -0.009021 -0.460912 0.144532 +v -0.004510 -0.460912 0.152344 +v 0.004510 -0.460912 0.152344 +v 0.009021 -0.460912 0.144532 +v 0.004510 -0.460912 0.136720 +v -0.004510 -0.460912 0.136720 +v -0.108578 -0.460912 0.095821 +v -0.110913 -0.460912 0.104534 +v -0.104534 -0.460912 0.110913 +v -0.095821 -0.460912 0.108578 +v -0.093486 -0.460912 0.099865 +v -0.099865 -0.460912 0.093486 +v -0.144532 -0.460912 -0.009021 +v -0.152344 -0.460912 -0.004510 +v -0.152344 -0.460912 0.004510 +v -0.144532 -0.460912 0.009021 +v -0.136720 -0.460912 0.004510 +v -0.136720 -0.460912 -0.004510 +v -0.136982 -0.046976 -0.460912 +v -0.142474 -0.054133 -0.460912 +v -0.139022 -0.062467 -0.460912 +v -0.130078 -0.063644 -0.460912 +v -0.124587 -0.056488 -0.460912 +v -0.128039 -0.048153 -0.460912 +v 0.136982 0.046976 -0.460912 +v 0.142474 0.054133 -0.460912 +v 0.139022 0.062467 -0.460912 +v 0.130078 0.063644 -0.460912 +v 0.124587 0.056488 -0.460912 +v 0.128039 0.048154 -0.460912 +v 0.063644 0.130078 -0.460912 +v 0.062467 0.139022 -0.460912 +v 0.054132 0.142474 -0.460912 +v 0.046976 0.136982 -0.460912 +v 0.048153 0.128039 -0.460912 +v 0.056487 0.124587 -0.460912 +v -0.046976 0.136982 -0.460912 +v -0.054133 0.142474 -0.460912 +v -0.062467 0.139022 -0.460912 +v -0.063644 0.130078 -0.460912 +v -0.056488 0.124587 -0.460912 +v -0.048153 0.128039 -0.460912 +v -0.130078 0.063644 -0.460912 +v -0.139022 0.062467 -0.460912 +v -0.142474 0.054133 -0.460912 +v -0.136982 0.046976 -0.460912 +v -0.128039 0.048153 -0.460912 +v -0.124587 0.056487 -0.460912 +v 0.156250 0.015389 -0.468750 +v 0.150245 0.045576 -0.468750 +v 0.138467 0.074012 -0.468750 +v 0.121367 0.099603 -0.468750 +v 0.099603 0.121367 -0.468750 +v 0.074012 0.138467 -0.468750 +v 0.045576 0.150245 -0.468750 +v 0.015389 0.156250 -0.468750 +v -0.015389 0.156250 -0.468750 +v -0.045576 0.150245 -0.468750 +v -0.074012 0.138467 -0.468750 +v -0.099603 0.121367 -0.468750 +v -0.121367 0.099603 -0.468750 +v -0.138467 0.074012 -0.468750 +v -0.150245 0.045576 -0.468750 +v -0.156249 0.015389 -0.468750 +v -0.156249 -0.015389 -0.468750 +v -0.150245 -0.045576 -0.468750 +v -0.138466 -0.074012 -0.468750 +v -0.121367 -0.099603 -0.468750 +v -0.099603 -0.121367 -0.468750 +v -0.074012 -0.138467 -0.468750 +v -0.045576 -0.150245 -0.468750 +v -0.015389 -0.156250 -0.468750 +v 0.015389 -0.156250 -0.468750 +v 0.045576 -0.150245 -0.468750 +v 0.074012 -0.138467 -0.468750 +v 0.099603 -0.121367 -0.468750 +v 0.121367 -0.099603 -0.468750 +v 0.138467 -0.074012 -0.468750 +v 0.150245 -0.045576 -0.468750 +v 0.156250 -0.015389 -0.468750 +v 0.138467 -0.074012 -0.500000 +v 0.121367 -0.099603 -0.500000 +v 0.099603 -0.121367 -0.500000 +v 0.074012 -0.138467 -0.500000 +v 0.045576 -0.150245 -0.500000 +v 0.015389 -0.156250 -0.500000 +v -0.015389 -0.156250 -0.500000 +v -0.045576 -0.150245 -0.500000 +v -0.074012 -0.138467 -0.500000 +v -0.099603 -0.121367 -0.500000 +v -0.121367 -0.099603 -0.500000 +v -0.138466 -0.074012 -0.500000 +v -0.150245 -0.045576 -0.500000 +v -0.156249 -0.015389 -0.500000 +v -0.156250 0.015389 -0.500000 +v -0.150245 0.045576 -0.500000 +v -0.138467 0.074012 -0.500000 +v -0.121367 0.099603 -0.500000 +v -0.099603 0.121367 -0.500000 +v -0.074012 0.138467 -0.500000 +v -0.045576 0.150245 -0.500000 +v -0.015389 0.156250 -0.500000 +v 0.015389 0.156250 -0.500000 +v 0.045576 0.150245 -0.500000 +v 0.074012 0.138467 -0.500000 +v 0.099603 0.121367 -0.500000 +v 0.121367 0.099603 -0.500000 +v 0.138467 0.074012 -0.500000 +v 0.150245 0.045576 -0.500000 +v 0.156250 0.015389 -0.500000 +v 0.156250 -0.015389 -0.500000 +v 0.150245 -0.045576 -0.500000 +v -0.095821 0.108578 -0.460912 +v -0.104534 0.110913 -0.460912 +v -0.110913 0.104534 -0.460912 +v -0.108578 0.095821 -0.460912 +v -0.099865 0.093486 -0.460912 +v -0.093486 0.099865 -0.460912 +v 0.009021 0.144532 -0.460912 +v 0.004510 0.152344 -0.460912 +v -0.004510 0.152344 -0.460912 +v -0.009021 0.144532 -0.460912 +v -0.004510 0.136720 -0.460912 +v 0.004510 0.136720 -0.460912 +v 0.108578 0.095821 -0.460912 +v 0.110913 0.104534 -0.460912 +v 0.104534 0.110913 -0.460912 +v 0.095821 0.108578 -0.460912 +v 0.093486 0.099865 -0.460912 +v 0.099865 0.093486 -0.460912 +v 0.144532 -0.009021 -0.460912 +v 0.152344 -0.004510 -0.460912 +v 0.152344 0.004511 -0.460912 +v 0.144532 0.009021 -0.460912 +v 0.136720 0.004510 -0.460912 +v 0.136720 -0.004510 -0.460912 +v -0.108578 -0.095821 -0.460912 +v -0.110913 -0.104534 -0.460912 +v -0.104534 -0.110913 -0.460912 +v -0.095821 -0.108578 -0.460912 +v -0.093486 -0.099865 -0.460912 +v -0.099865 -0.093486 -0.460912 +v -0.144532 0.009021 -0.460912 +v -0.152344 0.004510 -0.460912 +v -0.152344 -0.004510 -0.460912 +v -0.144532 -0.009021 -0.460912 +v -0.136720 -0.004510 -0.460912 +v -0.136720 0.004510 -0.460912 +v 0.468750 0.116832 -0.062448 +v 0.437501 0.110774 -0.059210 +v 0.437501 0.120197 -0.036461 +v 0.468750 0.126770 -0.038455 +v 0.468750 0.131837 -0.012985 +v 0.437501 0.125000 -0.012312 +v 0.468750 0.131837 0.012984 +v 0.437501 0.125001 0.012311 +v 0.468750 0.126770 0.038455 +v 0.437501 0.120197 0.036461 +v 0.468750 0.116832 0.062448 +v 0.437501 0.110774 0.059210 +v 0.468750 0.102404 0.084041 +v 0.437501 0.097094 0.079683 +v 0.437501 0.079683 0.097094 +v 0.468750 0.084041 0.102404 +v 0.468750 0.062448 0.116832 +v 0.437501 0.059210 0.110774 +v 0.468750 0.038455 0.126770 +v 0.437501 0.036461 0.120197 +v 0.468750 0.012985 0.131836 +v 0.437501 0.012312 0.125000 +v 0.437501 -0.012311 0.125000 +v 0.468750 -0.012985 0.131836 +v 0.437501 -0.036461 0.120197 +v 0.468750 -0.038455 0.126770 +v 0.468750 -0.062448 0.116832 +v 0.437501 -0.059210 0.110774 +v 0.437501 -0.079683 0.097094 +v 0.468750 -0.084041 0.102404 +v 0.437501 -0.097094 0.079683 +v 0.468750 -0.102404 0.084041 +v 0.468750 -0.116832 0.062448 +v 0.437501 -0.110774 0.059210 +v 0.437501 -0.120197 0.036461 +v 0.468750 -0.126770 0.038455 +v 0.468750 -0.131836 0.012985 +v 0.437501 -0.125000 0.012311 +v 0.437501 -0.125000 -0.012311 +v 0.468750 -0.131836 -0.012985 +v 0.468750 -0.126770 -0.038455 +v 0.437501 -0.120197 -0.036461 +v 0.437501 -0.110774 -0.059210 +v 0.468750 -0.116832 -0.062448 +v 0.437501 -0.097094 -0.079683 +v 0.468750 -0.102404 -0.084041 +v 0.437501 -0.079683 -0.097094 +v 0.468750 -0.084041 -0.102404 +v 0.437501 -0.059210 -0.110774 +v 0.468750 -0.062448 -0.116832 +v 0.437501 -0.036461 -0.120197 +v 0.468750 -0.038455 -0.126770 +v 0.437501 -0.012311 -0.125001 +v 0.468750 -0.012985 -0.131836 +v 0.468750 0.038455 -0.126770 +v 0.468750 0.012985 -0.131837 +v 0.437501 0.012311 -0.125001 +v 0.437501 0.036461 -0.120197 +v 0.468750 0.084041 -0.102404 +v 0.468750 0.062448 -0.116832 +v 0.437501 0.059210 -0.110774 +v 0.437501 0.079683 -0.097094 +v 0.468750 0.102404 -0.084041 +v 0.437501 0.097094 -0.079683 +v 0.468751 0.136982 -0.046976 +v 0.468751 0.142474 -0.054133 +v 0.468751 0.128039 -0.048153 +v 0.468751 0.139022 -0.062467 +v 0.468751 0.130078 -0.063644 +v 0.468751 0.124587 -0.056488 +v 0.468751 0.063644 -0.130078 +v 0.468751 0.062467 -0.139022 +v 0.468751 0.056487 -0.124587 +v 0.468751 0.054133 -0.142474 +v 0.468751 0.046976 -0.136982 +v 0.468751 0.048153 -0.128039 +v 0.468751 -0.046976 -0.136982 +v 0.468751 -0.054133 -0.142474 +v 0.468751 -0.048153 -0.128039 +v 0.468751 -0.062467 -0.139022 +v 0.468751 -0.063644 -0.130078 +v 0.468751 -0.056488 -0.124587 +v 0.468751 -0.130078 -0.063644 +v 0.468751 -0.139022 -0.062467 +v 0.468751 -0.124587 -0.056487 +v 0.468751 -0.142474 -0.054133 +v 0.468751 -0.136982 -0.046976 +v 0.468751 -0.128039 -0.048153 +v 0.468751 -0.136982 0.046976 +v 0.468751 -0.142474 0.054133 +v 0.468751 -0.128039 0.048153 +v 0.468751 -0.139022 0.062467 +v 0.468751 -0.130078 0.063644 +v 0.468751 -0.124587 0.056487 +v 0.468751 -0.063644 0.130078 +v 0.468751 -0.062467 0.139022 +v 0.468751 -0.056487 0.124587 +v 0.468751 -0.054132 0.142474 +v 0.468751 -0.046976 0.136982 +v 0.468751 -0.048153 0.128039 +v 0.468751 0.046976 0.136982 +v 0.468751 0.054133 0.142474 +v 0.468751 0.048153 0.128039 +v 0.468751 0.062467 0.139022 +v 0.468751 0.063644 0.130078 +v 0.468751 0.056487 0.124587 +v 0.468751 0.130078 0.063644 +v 0.468751 0.139022 0.062467 +v 0.468751 0.124587 0.056487 +v 0.468751 0.142474 0.054133 +v 0.468751 0.136982 0.046976 +v 0.468751 0.128039 0.048153 +v 0.059210 -0.059210 0.110774 +v 0.036461 -0.036461 0.120197 +v 0.079683 -0.079683 0.097094 +v 0.097094 -0.097094 0.079683 +v 0.036461 0.120197 -0.036461 +v 0.059210 0.110774 -0.059210 +v 0.012312 -0.012312 0.125000 +v -0.000000 0.110774 0.059210 +v -0.000000 0.097094 0.079683 +v -0.000000 0.079683 0.097094 +v -0.000000 0.059210 0.110774 +v -0.000000 0.120197 0.036461 +v 0.012312 0.125000 0.012312 +v -0.000000 0.125000 0.012311 +v 0.012311 0.125000 -0.012311 +v 0.012311 0.125000 -0.000000 +v 0.079683 0.097094 -0.079683 +v 0.097094 0.079683 -0.097094 +v -0.000000 0.036461 0.120197 +v -0.000000 0.012311 0.125001 +v 0.012312 0.012312 0.125000 +v 0.012312 0.000000 0.125000 +v 0.110774 -0.110774 0.059210 +v 0.120197 -0.120197 0.036461 +v 0.125000 -0.125000 0.012311 +v 0.125000 -0.125000 -0.012311 +v 0.120197 -0.120197 -0.036461 +v 0.110774 -0.110774 -0.059210 +v 0.097094 -0.097094 -0.079683 +v 0.088389 -0.088389 -0.088389 +v 0.097094 -0.079683 -0.097094 +v 0.110774 -0.059210 -0.110774 +v 0.120197 -0.036461 -0.120197 +v 0.125000 -0.012311 -0.125000 +v 0.125000 0.012311 -0.125000 +v 0.120197 0.036461 -0.120197 +v 0.110774 0.059210 -0.110774 +v 0.468751 0.108578 -0.095821 +v 0.468751 0.110913 -0.104534 +v 0.468751 0.099865 -0.093486 +v 0.468751 0.104534 -0.110913 +v 0.468751 0.095821 -0.108578 +v 0.468751 0.093486 -0.099865 +v 0.468751 0.009021 -0.144532 +v 0.468751 0.004510 -0.152344 +v 0.468751 0.004510 -0.136720 +v 0.468751 -0.004510 -0.152344 +v 0.468751 -0.009021 -0.144532 +v 0.468751 -0.004510 -0.136720 +v 0.468751 -0.095821 -0.108578 +v 0.468751 -0.104534 -0.110913 +v 0.468751 -0.093486 -0.099865 +v 0.468751 -0.110913 -0.104534 +v 0.468751 -0.108578 -0.095821 +v 0.468751 -0.099865 -0.093486 +v 0.468751 -0.144532 -0.009021 +v 0.468751 -0.152344 -0.004510 +v 0.468751 -0.136720 -0.004510 +v 0.468751 -0.152344 0.004510 +v 0.468751 -0.144532 0.009021 +v 0.468751 -0.136720 0.004510 +v 0.468751 -0.108578 0.095821 +v 0.468751 -0.110913 0.104534 +v 0.468751 -0.099865 0.093486 +v 0.468751 -0.104534 0.110913 +v 0.468751 -0.095821 0.108578 +v 0.468751 -0.093486 0.099865 +v 0.468751 -0.009021 0.144532 +v 0.468751 -0.004510 0.152344 +v 0.468751 -0.004510 0.136720 +v 0.468751 0.004510 0.152344 +v 0.468751 0.009021 0.144532 +v 0.468751 0.004510 0.136720 +v 0.468751 0.095821 0.108578 +v 0.468751 0.104534 0.110913 +v 0.468751 0.093486 0.099865 +v 0.468751 0.110913 0.104534 +v 0.468751 0.108578 0.095821 +v 0.468751 0.099865 0.093486 +v 0.468751 0.144532 0.009021 +v 0.468751 0.152344 0.004510 +v 0.468751 0.136720 0.004510 +v 0.468751 0.152344 -0.004510 +v 0.468751 0.144532 -0.009021 +v 0.468751 0.136720 -0.004510 +v -0.000000 0.000000 0.125605 +v 0.000000 0.125000 -0.000000 +v -0.000000 -0.012312 0.125000 +v 0.012311 -0.437501 0.125000 +v -0.012312 -0.012311 0.125000 +v -0.012312 -0.437501 0.125000 +v 0.036461 -0.437501 0.120197 +v 0.059210 -0.437501 0.110774 +v -0.012312 0.000000 0.125605 +v -0.036461 0.000000 0.120778 +v -0.036461 -0.437501 0.120197 +v 0.079683 -0.437501 0.097094 +v -0.059210 0.000000 0.111310 +v -0.059210 -0.437501 0.110774 +v -0.097094 0.000000 0.080069 +v -0.097094 -0.437501 0.079683 +v -0.079683 -0.437501 0.097094 +v -0.079683 0.000000 0.097564 +v -0.012985 -0.468750 0.131836 +v -0.038455 -0.468750 0.126770 +v 0.012985 -0.468750 0.131836 +v 0.038455 -0.468750 0.126770 +v 0.097094 0.079683 -0.437501 +v 0.079683 0.097094 -0.437501 +v -0.062448 -0.468750 0.116832 +v 0.062448 -0.468750 0.116832 +v 0.097094 -0.437501 0.079683 +v 0.110774 -0.437501 0.059210 +v -0.084041 -0.468750 0.102404 +v 0.084041 -0.468750 0.102404 +v 0.120197 -0.437501 0.036461 +v -0.120197 -0.036461 -0.437501 +v -0.120197 -0.036461 -0.036461 +v -0.125000 -0.012312 -0.012311 +v -0.125000 -0.012311 -0.437501 +v -0.102404 -0.468750 0.084041 +v 0.102404 -0.468750 0.084041 +v -0.116832 -0.468750 0.062448 +v -0.110774 -0.437501 0.059210 +v 0.116832 -0.468750 0.062448 +v 0.125001 -0.437501 0.012311 +v 0.125001 -0.437501 -0.012312 +v -0.125000 -0.012311 0.012312 +v -0.125000 -0.437501 0.012311 +v -0.120197 -0.437501 0.036461 +v -0.120197 0.000000 0.036638 +v -0.125000 0.000000 0.012371 +v -0.126770 -0.468750 0.038455 +v 0.126770 -0.468750 0.038455 +v -0.131836 -0.468750 0.012985 +v 0.131837 -0.468750 0.012985 +v 0.120197 -0.437501 -0.036461 +v 0.110774 -0.437501 -0.059210 +v -0.120197 -0.437501 -0.036461 +v -0.125000 -0.437501 -0.012312 +v -0.131836 -0.468750 -0.012985 +v 0.131837 -0.468750 -0.012985 +v 0.097094 -0.437501 -0.079683 +v -0.110774 -0.437501 -0.059210 +v -0.110774 -0.059210 -0.059210 +v -0.126770 -0.468750 -0.038455 +v 0.126770 -0.468750 -0.038455 +v -0.116832 -0.468750 -0.062448 +v 0.116832 -0.468750 -0.062448 +v -0.102404 -0.468750 -0.084041 +v -0.097094 -0.437501 -0.079683 +v 0.102404 -0.468750 -0.084041 +v 0.036461 -0.120197 -0.120197 +v 0.059210 -0.110774 -0.110774 +v 0.059210 -0.437501 -0.110774 +v 0.036461 -0.437501 -0.120197 +v -0.036461 -0.120197 -0.120197 +v -0.012311 -0.125000 -0.125000 +v -0.012311 -0.437501 -0.125001 +v -0.036461 -0.437501 -0.120197 +v -0.084041 -0.468750 -0.102404 +v -0.079683 -0.437501 -0.097094 +v 0.084041 -0.468750 -0.102404 +v 0.079683 -0.437501 -0.097094 +v 0.012311 -0.125000 -0.125000 +v 0.012311 -0.437501 -0.125001 +v -0.062448 -0.468750 -0.116832 +v -0.059210 -0.437501 -0.110774 +v 0.062448 -0.468750 -0.116832 +v -0.038455 -0.468750 -0.126770 +v 0.038455 -0.468750 -0.126770 +v -0.012985 -0.468750 -0.131837 +v 0.012985 -0.468750 -0.131837 +v -0.130078 -0.468749 -0.063644 +v -0.139022 -0.468749 -0.062467 +v -0.124587 -0.468749 -0.056487 +v -0.142474 -0.468749 -0.054133 +v -0.136982 -0.468749 -0.046976 +v -0.128039 -0.468749 -0.048153 +v -0.046976 -0.468749 -0.136982 +v -0.054133 -0.468749 -0.142474 +v -0.048153 -0.468749 -0.128039 +v -0.062467 -0.468749 -0.139022 +v -0.063644 -0.468749 -0.130078 +v -0.056488 -0.468749 -0.124587 +v 0.063644 -0.468749 -0.130078 +v 0.062467 -0.468749 -0.139022 +v 0.056487 -0.468749 -0.124587 +v 0.054132 -0.468749 -0.142474 +v 0.046976 -0.468749 -0.136982 +v 0.048153 -0.468749 -0.128039 +v 0.136982 -0.468749 -0.046976 +v 0.142474 -0.468749 -0.054133 +v 0.128039 -0.468749 -0.048154 +v 0.139022 -0.468749 -0.062467 +v 0.130078 -0.468749 -0.063644 +v 0.124587 -0.468749 -0.056488 +v 0.130078 -0.468749 0.063644 +v 0.139022 -0.468749 0.062466 +v 0.124587 -0.468749 0.056487 +v 0.142474 -0.468749 0.054132 +v 0.136982 -0.468749 0.046976 +v 0.128039 -0.468749 0.048153 +v 0.046976 -0.468749 0.136982 +v 0.054133 -0.468749 0.142474 +v 0.048153 -0.468749 0.128039 +v 0.062467 -0.468749 0.139022 +v 0.063644 -0.468749 0.130078 +v 0.056488 -0.468749 0.124587 +v -0.063644 -0.468749 0.130078 +v -0.062467 -0.468749 0.139022 +v -0.056487 -0.468749 0.124587 +v -0.054132 -0.468749 0.142474 +v -0.046976 -0.468749 0.136982 +v -0.048153 -0.468749 0.128039 +v -0.136982 -0.468749 0.046976 +v -0.142474 -0.468749 0.054133 +v -0.128039 -0.468749 0.048153 +v -0.139022 -0.468749 0.062467 +v -0.130078 -0.468749 0.063644 +v -0.124587 -0.468749 0.056487 +v -0.125000 0.000000 -0.000000 +v -0.125000 -0.000000 -0.012312 +v -0.125000 -0.012312 -0.000000 +v -0.110774 0.000000 0.059497 +v -0.097094 -0.079683 -0.079683 +v -0.079683 -0.097094 -0.097094 +v 0.079683 -0.097094 -0.097094 +v -0.059210 -0.110774 -0.110774 +v -0.095821 -0.468749 -0.108578 +v -0.104534 -0.468749 -0.110913 +v -0.093486 -0.468749 -0.099865 +v -0.110913 -0.468749 -0.104534 +v -0.108578 -0.468749 -0.095821 +v -0.099865 -0.468749 -0.093486 +v 0.009021 -0.468749 -0.144532 +v 0.004510 -0.468749 -0.152344 +v 0.004510 -0.468749 -0.136720 +v -0.004510 -0.468749 -0.152344 +v -0.009021 -0.468749 -0.144532 +v -0.004510 -0.468749 -0.136720 +v 0.108578 -0.468749 -0.095821 +v 0.110913 -0.468749 -0.104534 +v 0.099865 -0.468749 -0.093486 +v 0.104534 -0.468749 -0.110913 +v 0.095821 -0.468749 -0.108578 +v 0.093486 -0.468749 -0.099865 +v 0.144532 -0.468749 0.009021 +v 0.152344 -0.468749 0.004510 +v 0.136720 -0.468749 0.004510 +v 0.152344 -0.468749 -0.004511 +v 0.144532 -0.468749 -0.009021 +v 0.136720 -0.468749 -0.004511 +v 0.095821 -0.468749 0.108578 +v 0.104534 -0.468749 0.110913 +v 0.093486 -0.468749 0.099865 +v 0.110913 -0.468749 0.104534 +v 0.108578 -0.468749 0.095821 +v 0.099865 -0.468749 0.093486 +v -0.009021 -0.468749 0.144532 +v -0.004510 -0.468749 0.152344 +v -0.004510 -0.468749 0.136720 +v 0.004510 -0.468749 0.152344 +v 0.009021 -0.468749 0.144532 +v 0.004510 -0.468749 0.136720 +v -0.108578 -0.468749 0.095821 +v -0.110913 -0.468749 0.104534 +v -0.099865 -0.468749 0.093486 +v -0.104534 -0.468749 0.110913 +v -0.095821 -0.468749 0.108578 +v -0.093486 -0.468749 0.099865 +v -0.144532 -0.468749 -0.009021 +v -0.152344 -0.468749 -0.004510 +v -0.136720 -0.468749 -0.004510 +v -0.152344 -0.468749 0.004510 +v -0.144532 -0.468749 0.009021 +v -0.136720 -0.468749 0.004510 +v -0.120197 0.036461 -0.000000 +v -0.120197 0.036461 -0.437501 +v -0.125000 0.012312 -0.437501 +v -0.125000 0.012311 -0.012312 +v -0.125000 0.012311 -0.000000 +v -0.110774 -0.059210 -0.437501 +v -0.124587 -0.056488 -0.468749 +v -0.128039 -0.048153 -0.468749 +v -0.130078 -0.063644 -0.468749 +v -0.139022 -0.062467 -0.468749 +v -0.142474 -0.054133 -0.468749 +v -0.136982 -0.046976 -0.468749 +v 0.124587 0.056488 -0.468749 +v 0.128039 0.048154 -0.468749 +v 0.130078 0.063644 -0.468749 +v 0.139022 0.062467 -0.468749 +v 0.142474 0.054133 -0.468749 +v 0.136982 0.046976 -0.468749 +v 0.048153 0.128039 -0.468749 +v 0.056487 0.124587 -0.468749 +v 0.046976 0.136982 -0.468749 +v 0.054132 0.142474 -0.468749 +v 0.062467 0.139022 -0.468749 +v 0.063644 0.130078 -0.468749 +v -0.056488 0.124587 -0.468749 +v -0.048153 0.128039 -0.468749 +v -0.063644 0.130078 -0.468749 +v -0.062467 0.139022 -0.468749 +v -0.054133 0.142474 -0.468749 +v -0.046976 0.136982 -0.468749 +v -0.128039 0.048153 -0.468749 +v -0.124587 0.056487 -0.468749 +v -0.136982 0.046976 -0.468749 +v -0.142474 0.054133 -0.468749 +v -0.139022 0.062467 -0.468749 +v -0.130078 0.063644 -0.468749 +v 0.012985 0.131837 -0.468750 +v -0.012985 0.131837 -0.468750 +v -0.012311 0.125001 -0.437501 +v 0.012311 0.125001 -0.437501 +v 0.038455 0.126770 -0.468750 +v 0.036461 0.120197 -0.437501 +v -0.038455 0.126770 -0.468750 +v -0.036461 0.120197 -0.437501 +v 0.062448 0.116832 -0.468750 +v 0.059210 0.110774 -0.437501 +v -0.062448 0.116832 -0.468750 +v -0.059210 0.110774 -0.437501 +v 0.084041 0.102404 -0.468750 +v -0.084041 0.102404 -0.468750 +v -0.079683 0.097094 -0.437501 +v 0.102404 0.084041 -0.468750 +v -0.102404 0.084041 -0.468750 +v -0.097094 0.079683 -0.437501 +v -0.012311 0.125000 -0.012312 +v 0.000000 0.125000 -0.012312 +v 0.116832 0.062448 -0.468750 +v 0.110774 0.059210 -0.437501 +v -0.116832 0.062448 -0.468750 +v -0.110774 0.059210 -0.437501 +v 0.120197 0.036461 -0.437501 +v 0.126770 0.038455 -0.468750 +v -0.126770 0.038455 -0.468750 +v 0.125001 0.012311 -0.437501 +v 0.131837 0.012985 -0.468750 +v -0.131836 0.012985 -0.468750 +v 0.125001 -0.012311 -0.437501 +v 0.131837 -0.012985 -0.468750 +v -0.131836 -0.012985 -0.468750 +v 0.120197 -0.036461 -0.437501 +v 0.126770 -0.038455 -0.468750 +v -0.126770 -0.038455 -0.468750 +v 0.110774 -0.059210 -0.437501 +v 0.116832 -0.062448 -0.468750 +v -0.116832 -0.062448 -0.468750 +v 0.097094 -0.079683 -0.437501 +v 0.102404 -0.084041 -0.468750 +v -0.102404 -0.084041 -0.468750 +v -0.097094 -0.079683 -0.437501 +v 0.079683 -0.097094 -0.437501 +v 0.084041 -0.102404 -0.468750 +v -0.084041 -0.102404 -0.468750 +v -0.079683 -0.097094 -0.437501 +v 0.059210 -0.110774 -0.437501 +v 0.062448 -0.116832 -0.468750 +v -0.062448 -0.116832 -0.468750 +v -0.059210 -0.110774 -0.437501 +v 0.036461 -0.120197 -0.437501 +v 0.038455 -0.126770 -0.468750 +v -0.038455 -0.126770 -0.468750 +v -0.036461 -0.120197 -0.437501 +v 0.012311 -0.125000 -0.437501 +v 0.012985 -0.131836 -0.468750 +v -0.012312 -0.125000 -0.437501 +v -0.012985 -0.131836 -0.468750 +v -0.079683 0.097094 -0.000000 +v -0.059210 0.110774 -0.000000 +v -0.110774 0.059210 -0.000000 +v -0.036461 0.120197 -0.000000 +v -0.095821 0.108578 -0.468749 +v -0.104534 0.110913 -0.468749 +v -0.093486 0.099865 -0.468749 +v -0.110913 0.104534 -0.468749 +v -0.108578 0.095821 -0.468749 +v -0.099865 0.093486 -0.468749 +v 0.009021 0.144532 -0.468749 +v 0.004510 0.152344 -0.468749 +v 0.004510 0.136720 -0.468749 +v -0.004510 0.152344 -0.468749 +v -0.009021 0.144532 -0.468749 +v -0.004510 0.136720 -0.468749 +v 0.108578 0.095821 -0.468749 +v 0.110913 0.104534 -0.468749 +v 0.099865 0.093486 -0.468749 +v 0.104534 0.110913 -0.468749 +v 0.095821 0.108578 -0.468749 +v 0.093486 0.099865 -0.468749 +v 0.144532 -0.009021 -0.468749 +v 0.152344 -0.004510 -0.468749 +v 0.136720 -0.004510 -0.468749 +v 0.152344 0.004511 -0.468749 +v 0.144532 0.009021 -0.468749 +v 0.136720 0.004510 -0.468749 +v -0.108578 -0.095821 -0.468749 +v -0.110913 -0.104534 -0.468749 +v -0.099865 -0.093486 -0.468749 +v -0.104534 -0.110913 -0.468749 +v -0.095821 -0.108578 -0.468749 +v -0.093486 -0.099865 -0.468749 +v -0.144532 0.009021 -0.468749 +v -0.152344 0.004510 -0.468749 +v -0.136720 0.004510 -0.468749 +v -0.152344 -0.004510 -0.468749 +v -0.144532 -0.009021 -0.468749 +v -0.136720 -0.004510 -0.468749 +v -0.097094 0.079683 -0.000000 +v -0.012312 0.125000 -0.000000 +v -0.059210 0.010910 0.110774 +v -0.079683 0.009563 0.097094 +v -0.120197 0.003591 0.036461 +v -0.125000 0.001213 0.012312 +v -0.012312 0.012312 0.125001 +v -0.036461 0.011838 0.120197 +v -0.110774 0.005832 0.059210 +v -0.097094 0.007848 0.079683 +v -0.012312 0.036461 0.120197 +v -0.059210 0.032312 0.106517 +v -0.079683 0.028321 0.093363 +v -0.120197 0.010636 0.035060 +v -0.125000 0.003591 0.011838 +v -0.036461 0.035060 0.115578 +v -0.110774 0.017271 0.056935 +v -0.079683 0.045991 0.086044 +v -0.097094 0.037744 0.070614 +v -0.097094 0.023243 0.076621 +v -0.012312 0.059210 0.110774 +v -0.036461 0.056935 0.106517 +v -0.110774 0.028047 0.052471 +v -0.059210 0.052471 0.098167 +v -0.120197 0.017271 0.032312 +v -0.125000 0.005832 0.010910 +v -0.079683 0.061894 0.075418 +v -0.097094 0.050795 0.061894 +v -0.110774 0.037744 0.045991 +v -0.120197 0.023243 0.028321 +v -0.079683 0.075418 0.061894 +v -0.097094 0.061894 0.050795 +v -0.012312 0.079683 0.097094 +v -0.036461 0.076621 0.093363 +v -0.059210 0.070614 0.086044 +v -0.125000 0.007848 0.009563 +v -0.036461 0.093363 0.076621 +v -0.059210 0.086044 0.070614 +v -0.110774 0.045991 0.037744 +v -0.120197 0.028321 0.023243 +v -0.079683 0.086044 0.045991 +v -0.097094 0.070614 0.037744 +v -0.012312 0.097094 0.079683 +v -0.125000 0.009563 0.007848 +v -0.120197 0.032312 0.017271 +v -0.125000 0.010910 0.005832 +v -0.036461 0.106517 0.056935 +v -0.059210 0.098167 0.052471 +v -0.110774 0.052471 0.028046 +v -0.079683 0.093363 0.028321 +v -0.097094 0.076621 0.023243 +v -0.012312 0.110774 0.059210 +v -0.012312 0.120197 0.036461 +v -0.059210 0.106517 0.032312 +v -0.120197 0.035060 0.010635 +v -0.125000 0.011838 0.003591 +v -0.036461 0.115578 0.035060 +v -0.110774 0.056935 0.017271 +v -0.079683 0.097094 0.009563 +v -0.097094 0.079683 0.007848 +v -0.110774 0.059210 0.005832 +v -0.012312 0.125000 0.012311 +v -0.059210 0.110774 0.010910 +v -0.120197 0.036461 0.003591 +v -0.125000 0.012312 0.001212 +v -0.036461 0.120197 0.011838 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.4412 0.9276 +vt 0.4630 0.9493 +vt 0.4886 0.9664 +vt 0.5170 0.9782 +vt 0.5472 0.9842 +vt 0.5780 0.9842 +vt 0.6082 0.9782 +vt 0.6366 0.9664 +vt 0.6622 0.9493 +vt 0.6840 0.9276 +vt 0.7011 0.9020 +vt 0.7129 0.8735 +vt 0.7189 0.8434 +vt 0.7189 0.8126 +vt 0.7129 0.7824 +vt 0.7011 0.7539 +vt 0.6840 0.7283 +vt 0.6622 0.7066 +vt 0.6366 0.6895 +vt 0.6082 0.6777 +vt 0.5780 0.6717 +vt 0.5472 0.6717 +vt 0.5170 0.6777 +vt 0.4886 0.6895 +vt 0.4630 0.7066 +vt 0.4412 0.7283 +vt 0.4241 0.7539 +vt 0.4124 0.7824 +vt 0.4063 0.8126 +vt 0.4063 0.8434 +vt 0.4124 0.8735 +vt 0.4241 0.9020 +vt 0.2332 0.6777 +vt 0.2616 0.6895 +vt 0.2872 0.7066 +vt 0.3090 0.7283 +vt 0.3261 0.7539 +vt 0.3379 0.7824 +vt 0.3439 0.8126 +vt 0.3439 0.8434 +vt 0.3379 0.8735 +vt 0.3261 0.9020 +vt 0.3090 0.9276 +vt 0.2872 0.9493 +vt 0.2616 0.9664 +vt 0.2332 0.9782 +vt 0.2030 0.9842 +vt 0.1722 0.9842 +vt 0.1420 0.9782 +vt 0.1136 0.9664 +vt 0.0880 0.9493 +vt 0.0662 0.9276 +vt 0.0491 0.9020 +vt 0.0374 0.8735 +vt 0.0313 0.8434 +vt 0.0313 0.8126 +vt 0.0374 0.7824 +vt 0.0491 0.7539 +vt 0.0662 0.7283 +vt 0.0880 0.7066 +vt 0.1136 0.6895 +vt 0.1420 0.6777 +vt 0.1722 0.6717 +vt 0.2030 0.6717 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.5780 0.6717 +vt 0.6082 0.6777 +vt 0.6366 0.6895 +vt 0.6622 0.7066 +vt 0.6840 0.7283 +vt 0.7011 0.7539 +vt 0.7129 0.7824 +vt 0.7189 0.8126 +vt 0.7189 0.8434 +vt 0.7129 0.8735 +vt 0.7011 0.9020 +vt 0.6840 0.9276 +vt 0.6622 0.9493 +vt 0.6366 0.9664 +vt 0.6082 0.9782 +vt 0.5780 0.9842 +vt 0.5472 0.9842 +vt 0.5170 0.9782 +vt 0.4886 0.9664 +vt 0.4630 0.9493 +vt 0.4412 0.9276 +vt 0.4241 0.9020 +vt 0.4124 0.8735 +vt 0.4063 0.8434 +vt 0.4063 0.8126 +vt 0.4124 0.7824 +vt 0.4241 0.7539 +vt 0.4412 0.7283 +vt 0.4630 0.7066 +vt 0.4886 0.6895 +vt 0.5170 0.6777 +vt 0.5472 0.6717 +vt 0.1136 0.6895 +vt 0.0880 0.7066 +vt 0.0662 0.7283 +vt 0.0491 0.7539 +vt 0.0374 0.7824 +vt 0.0313 0.8126 +vt 0.0313 0.8434 +vt 0.0374 0.8735 +vt 0.0491 0.9020 +vt 0.0662 0.9276 +vt 0.0880 0.9493 +vt 0.1136 0.9664 +vt 0.1420 0.9782 +vt 0.1722 0.9842 +vt 0.2030 0.9842 +vt 0.2332 0.9782 +vt 0.2616 0.9664 +vt 0.2872 0.9493 +vt 0.3090 0.9276 +vt 0.3261 0.9020 +vt 0.3379 0.8735 +vt 0.3439 0.8434 +vt 0.3439 0.8126 +vt 0.3379 0.7824 +vt 0.3261 0.7539 +vt 0.3090 0.7283 +vt 0.2872 0.7066 +vt 0.2616 0.6895 +vt 0.2332 0.6777 +vt 0.2030 0.6717 +vt 0.1722 0.6717 +vt 0.1420 0.6777 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.5780 0.6717 +vt 0.6082 0.6777 +vt 0.6366 0.6895 +vt 0.6622 0.7066 +vt 0.6840 0.7283 +vt 0.7011 0.7539 +vt 0.7129 0.7824 +vt 0.7189 0.8126 +vt 0.7189 0.8434 +vt 0.7129 0.8735 +vt 0.7011 0.9020 +vt 0.6840 0.9276 +vt 0.6622 0.9493 +vt 0.6366 0.9664 +vt 0.6082 0.9782 +vt 0.5780 0.9842 +vt 0.5472 0.9842 +vt 0.5170 0.9782 +vt 0.4886 0.9664 +vt 0.4630 0.9493 +vt 0.4412 0.9276 +vt 0.4241 0.9020 +vt 0.4124 0.8735 +vt 0.4063 0.8434 +vt 0.4063 0.8126 +vt 0.4124 0.7824 +vt 0.4241 0.7539 +vt 0.4412 0.7283 +vt 0.4630 0.7066 +vt 0.4886 0.6895 +vt 0.5170 0.6777 +vt 0.5472 0.6717 +vt 0.1136 0.6895 +vt 0.0880 0.7066 +vt 0.0662 0.7283 +vt 0.0491 0.7539 +vt 0.0374 0.7824 +vt 0.0313 0.8126 +vt 0.0313 0.8434 +vt 0.0374 0.8735 +vt 0.0491 0.9020 +vt 0.0662 0.9276 +vt 0.0880 0.9493 +vt 0.1136 0.9664 +vt 0.1420 0.9782 +vt 0.1722 0.9842 +vt 0.2030 0.9842 +vt 0.2332 0.9782 +vt 0.2616 0.9664 +vt 0.2872 0.9493 +vt 0.3090 0.9276 +vt 0.3261 0.9020 +vt 0.3379 0.8735 +vt 0.3439 0.8434 +vt 0.3439 0.8126 +vt 0.3379 0.7824 +vt 0.3261 0.7539 +vt 0.3090 0.7283 +vt 0.2872 0.7066 +vt 0.2616 0.6895 +vt 0.2332 0.6777 +vt 0.2030 0.6717 +vt 0.1722 0.6717 +vt 0.1420 0.6777 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.4688 0.5898 +vt 0.4688 0.5664 +vt 0.5000 0.5664 +vt 0.5000 0.5898 +vt 0.4375 0.5898 +vt 0.4375 0.5664 +vt 0.4062 0.5898 +vt 0.4062 0.5664 +vt 0.3750 0.5898 +vt 0.3750 0.5664 +vt 0.3438 0.5898 +vt 0.3438 0.5664 +vt 0.3125 0.5898 +vt 0.3125 0.5664 +vt 0.2812 0.5898 +vt 0.2812 0.5664 +vt 0.2500 0.5898 +vt 0.2500 0.5664 +vt 0.2188 0.5898 +vt 0.2188 0.5664 +vt 0.1875 0.5898 +vt 0.1875 0.5664 +vt 0.1562 0.5898 +vt 0.1562 0.5664 +vt 0.1250 0.5898 +vt 0.1250 0.5664 +vt 0.0938 0.5898 +vt 0.0938 0.5664 +vt 0.0625 0.5898 +vt 0.0625 0.5664 +vt 0.0937 0.5664 +vt 0.0312 0.5898 +vt 0.0312 0.5664 +vt 0.0000 0.5898 +vt 0.0000 0.5664 +vt 0.9688 0.5898 +vt 0.9688 0.5664 +vt 1.0000 0.5664 +vt 1.0000 0.5898 +vt 0.9375 0.5898 +vt 0.9375 0.5664 +vt 0.9062 0.5898 +vt 0.9062 0.5664 +vt 0.8750 0.5898 +vt 0.8750 0.5664 +vt 0.8125 0.5898 +vt 0.8125 0.5664 +vt 0.8438 0.5664 +vt 0.8438 0.5898 +vt 0.7812 0.5898 +vt 0.7812 0.5664 +vt 0.7500 0.5898 +vt 0.7500 0.5664 +vt 0.7188 0.5898 +vt 0.7188 0.5664 +vt 0.6875 0.5898 +vt 0.6875 0.5664 +vt 0.6250 0.5898 +vt 0.6250 0.5664 +vt 0.6562 0.5664 +vt 0.6562 0.5898 +vt 0.5938 0.5898 +vt 0.5938 0.5664 +vt 0.5625 0.5898 +vt 0.5625 0.5664 +vt 0.6340 0.5124 +vt 0.6340 0.4980 +vt 0.6649 0.4980 +vt 0.6649 0.5123 +vt 0.6959 0.5124 +vt 0.6959 0.4980 +vt 0.7268 0.5123 +vt 0.7268 0.4980 +vt 0.7577 0.5123 +vt 0.7578 0.4980 +vt 0.7886 0.5124 +vt 0.7887 0.4980 +vt 0.8196 0.5125 +vt 0.8196 0.4980 +vt 0.8506 0.4981 +vt 0.8505 0.5124 +vt 0.8814 0.5125 +vt 0.8815 0.4981 +vt 0.9123 0.5126 +vt 0.9125 0.4982 +vt 0.9434 0.5128 +vt 0.9436 0.4983 +vt 0.9747 0.4983 +vt 0.9745 0.5128 +vt 1.0057 0.4984 +vt 1.0055 0.5128 +vt 1.0366 0.5128 +vt 1.0367 0.4984 +vt 1.0677 0.4984 +vt 1.0677 0.5129 +vt 1.0988 0.4984 +vt 1.0988 0.5128 +vt 1.1301 0.5129 +vt 1.1297 0.4983 +vt 1.1607 0.4982 +vt 1.1617 0.5126 +vt 1.1934 0.5121 +vt 1.1912 0.4978 +vt 0.1983 0.5120 +vt 0.2004 0.4977 +vt 0.2310 0.4981 +vt 0.2300 0.5126 +vt 0.2617 0.5129 +vt 0.2621 0.4982 +vt 0.2933 0.4983 +vt 0.2932 0.5129 +vt 0.3244 0.4982 +vt 0.3245 0.5127 +vt 0.3553 0.4982 +vt 0.3554 0.5126 +vt 0.3863 0.4982 +vt 0.3864 0.5126 +vt 0.4172 0.4981 +vt 0.4173 0.5125 +vt 0.4481 0.4981 +vt 0.4482 0.5124 +vt 0.5101 0.5125 +vt 0.4791 0.5124 +vt 0.4790 0.4981 +vt 0.5100 0.4980 +vt 0.5720 0.5124 +vt 0.5410 0.5124 +vt 0.5410 0.4980 +vt 0.5719 0.4980 +vt 0.6030 0.5125 +vt 0.6030 0.4980 +vt 0.5312 0.5664 +vt 0.5312 0.5898 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 1.0393 0.2971 +vt 1.0081 0.2851 +vt 1.0706 0.3080 +vt 1.1018 0.3172 +vt 0.6652 0.2849 +vt 0.6339 0.2969 +vt 0.9769 0.2723 +vt 0.7899 0.2657 +vt 0.8211 0.2658 +vt 0.8522 0.2658 +vt 0.8834 0.2658 +vt 0.7587 0.2657 +vt 0.7275 0.2722 +vt 0.7276 0.2657 +vt 0.6964 0.2722 +vt 0.7120 0.2722 +vt 0.6027 0.3076 +vt 0.5715 0.3168 +vt 0.9146 0.2658 +vt 0.9458 0.2658 +vt 0.9457 0.2723 +vt 0.9613 0.2723 +vt 1.1329 0.3245 +vt 1.1642 0.3296 +vt 1.1955 0.3322 +vt 0.1964 0.3319 +vt 0.2277 0.3318 +vt 0.2591 0.3292 +vt 0.2903 0.3241 +vt 0.3215 0.3169 +vt 0.3372 0.3122 +vt 0.3528 0.3168 +vt 0.3842 0.3241 +vt 0.4155 0.3290 +vt 0.4467 0.3316 +vt 0.4779 0.3315 +vt 0.5091 0.3290 +vt 0.5403 0.3240 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.9614 0.2658 +vt 0.7120 0.2657 +vt 0.9769 0.2658 +vt 0.9767 0.0339 +vt 0.9770 0.2593 +vt 0.9614 0.2593 +vt 0.9458 0.2593 +vt 0.9458 0.0339 +vt 1.0075 0.0339 +vt 1.0082 0.2466 +vt 1.0383 0.0339 +vt 1.0394 0.2346 +vt 0.9458 0.2658 +vt 0.9146 0.2658 +vt 0.9151 0.0339 +vt 1.0691 0.0339 +vt 1.0706 0.2237 +vt 0.8834 0.2658 +vt 0.8843 0.0339 +vt 0.8211 0.2658 +vt 0.8228 0.0338 +vt 0.8536 0.0338 +vt 0.8522 0.2658 +vt 0.9459 0.0196 +vt 0.9151 0.0196 +vt 0.9767 0.0195 +vt 1.0076 0.0195 +vt 0.3218 0.2139 +vt 0.3268 0.0318 +vt 0.3580 0.0320 +vt 0.3530 0.2232 +vt 0.8844 0.0196 +vt 1.0385 0.0195 +vt 1.1328 0.2072 +vt 1.1017 0.2145 +vt 1.0999 0.0340 +vt 1.1306 0.0342 +vt 0.8537 0.0195 +vt 1.0694 0.0196 +vt 1.1640 0.2021 +vt 1.1610 0.0344 +vt 0.7611 0.0336 +vt 0.7588 0.2465 +vt 0.7276 0.2592 +vt 0.7302 0.0335 +vt 0.8229 0.0194 +vt 0.6875 0.5898 +vt 0.6875 0.5664 +vt 0.7188 0.5664 +vt 0.7188 0.5898 +vt 0.7812 0.5898 +vt 0.7812 0.5664 +vt 0.8125 0.5664 +vt 0.8125 0.5898 +vt 1.1004 0.0197 +vt 0.6562 0.5898 +vt 0.6562 0.5664 +vt 0.7921 0.0194 +vt 0.7920 0.0337 +vt 0.8438 0.5664 +vt 0.8438 0.5898 +vt 1.1314 0.0198 +vt 0.6250 0.5898 +vt 0.6250 0.5664 +vt 0.2280 0.1990 +vt 0.1969 0.1988 +vt 0.2015 0.0321 +vt 0.2327 0.0318 +vt 0.7276 0.2592 +vt 0.7302 0.0335 +vt 0.7611 0.0336 +vt 0.7587 0.2657 +vt 0.7276 0.2657 +vt 0.7613 0.0193 +vt 0.5938 0.5898 +vt 0.5938 0.5664 +vt 1.1624 0.0202 +vt 0.5312 0.5898 +vt 0.5312 0.5664 +vt 0.5625 0.5664 +vt 0.5625 0.5898 +vt 0.7304 0.0192 +vt 0.8750 0.5664 +vt 0.8750 0.5898 +vt 1.1934 0.0209 +vt 1.1908 0.0349 +vt 0.5000 0.5898 +vt 0.5000 0.5664 +vt 0.2906 0.2066 +vt 0.2593 0.2016 +vt 0.2642 0.0317 +vt 0.2956 0.0317 +vt 0.6964 0.2592 +vt 0.6653 0.2464 +vt 0.6685 0.0333 +vt 0.6994 0.0334 +vt 0.6995 0.0191 +vt 0.9062 0.5664 +vt 0.9062 0.5898 +vt 0.2320 0.0171 +vt 0.1997 0.0175 +vt 0.4688 0.5898 +vt 0.4688 0.5664 +vt 0.3218 0.2139 +vt 0.3268 0.0318 +vt 0.6375 0.0332 +vt 0.6342 0.2344 +vt 0.6686 0.0189 +vt 0.9375 0.5664 +vt 0.9375 0.5898 +vt 0.2641 0.0170 +vt 0.4375 0.5898 +vt 0.4375 0.5664 +vt 0.6377 0.0188 +vt 0.9688 0.5664 +vt 0.9688 0.5898 +vt 0.2958 0.0171 +vt 0.4062 0.5898 +vt 0.4062 0.5664 +vt 0.6068 0.0187 +vt 0.6066 0.0331 +vt 0.0000 0.5898 +vt 0.0000 0.5664 +vt 0.0312 0.5664 +vt 0.0312 0.5898 +vt 0.3271 0.0173 +vt 1.0000 0.5664 +vt 1.0000 0.5898 +vt 0.4160 0.2019 +vt 0.3846 0.2068 +vt 0.3892 0.0320 +vt 0.4204 0.0322 +vt 0.5097 0.2021 +vt 0.4786 0.1994 +vt 0.4827 0.0325 +vt 0.5137 0.0327 +vt 0.5759 0.0186 +vt 0.5757 0.0330 +vt 0.0625 0.5664 +vt 0.0625 0.5898 +vt 0.7500 0.5664 +vt 0.7500 0.5898 +vt 0.3583 0.0174 +vt 0.3580 0.0320 +vt 0.3750 0.5898 +vt 0.3750 0.5664 +vt 0.4473 0.1994 +vt 0.4516 0.0324 +vt 0.5450 0.0184 +vt 0.5447 0.0328 +vt 0.0937 0.5664 +vt 0.0938 0.5898 +vt 0.3895 0.0175 +vt 0.3438 0.5898 +vt 0.3438 0.5664 +vt 0.5140 0.0183 +vt 0.0938 0.5664 +vt 0.1250 0.5664 +vt 0.1250 0.5898 +vt 0.4208 0.0177 +vt 0.3125 0.5898 +vt 0.3125 0.5664 +vt 0.4830 0.0181 +vt 0.1562 0.5664 +vt 0.1562 0.5898 +vt 0.4519 0.0179 +vt 0.2812 0.5898 +vt 0.2812 0.5664 +vt 0.2500 0.5898 +vt 0.2500 0.5664 +vt 0.1875 0.5664 +vt 0.1875 0.5898 +vt 0.2188 0.5898 +vt 0.2188 0.5664 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.7120 0.2657 +vt 0.6964 0.2657 +vt 0.7120 0.2592 +vt 0.7899 0.2657 +vt 0.6031 0.2236 +vt 0.5719 0.2143 +vt 1.1952 0.1995 +vt 0.3531 0.2140 +vt 0.3374 0.2186 +vt 0.5409 0.2071 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6652 0.2656 +vt 0.6685 0.0333 +vt 0.6994 0.0334 +vt 0.6964 0.2592 +vt 0.6964 0.2657 +vt 0.7920 0.0337 +vt 0.7900 0.2345 +vt 0.7120 0.2592 +vt 0.6562 0.6719 +vt 0.6562 0.6562 +vt 0.6719 0.6562 +vt 0.6719 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.7188 0.6719 +vt 0.7188 0.6562 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.7031 0.6719 +vt 0.7031 0.6562 +vt 0.6875 0.6562 +vt 0.6875 0.6719 +vt 0.6562 0.6719 +vt 0.6562 0.6562 +vt 0.6719 0.6562 +vt 0.6719 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.7188 0.6719 +vt 0.7188 0.6562 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.7031 0.6719 +vt 0.7031 0.6562 +vt 0.6875 0.6562 +vt 0.6875 0.6719 +vt 0.6562 0.6719 +vt 0.6562 0.6562 +vt 0.6719 0.6562 +vt 0.6719 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.7188 0.6719 +vt 0.7188 0.6562 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.7031 0.6719 +vt 0.7031 0.6562 +vt 0.6875 0.6562 +vt 0.6875 0.6719 +vt 0.6562 0.6719 +vt 0.6562 0.6562 +vt 0.6719 0.6562 +vt 0.6719 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.7188 0.6719 +vt 0.7188 0.6562 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.7031 0.6719 +vt 0.7031 0.6562 +vt 0.6875 0.6562 +vt 0.6875 0.6719 +vt 0.6562 0.6719 +vt 0.6562 0.6562 +vt 0.6719 0.6562 +vt 0.6719 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.7188 0.6719 +vt 0.7188 0.6562 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.7031 0.6719 +vt 0.7031 0.6562 +vt 0.6875 0.6562 +vt 0.6875 0.6719 +vt 0.1875 0.5898 +vt 0.1875 0.5664 +vt 0.2188 0.5664 +vt 0.2188 0.5898 +vt 0.2500 0.5664 +vt 0.2500 0.5898 +vt 0.1562 0.5898 +vt 0.1562 0.5664 +vt 0.2812 0.5664 +vt 0.2812 0.5898 +vt 0.7500 0.5898 +vt 0.7500 0.5664 +vt 0.7812 0.5664 +vt 0.7812 0.5898 +vt 0.4519 0.0179 +vt 0.4830 0.0181 +vt 0.4827 0.0325 +vt 0.4516 0.0324 +vt 0.3125 0.5664 +vt 0.3125 0.5898 +vt 0.4208 0.0177 +vt 0.4204 0.0322 +vt 0.1250 0.5898 +vt 0.1250 0.5664 +vt 0.5140 0.0183 +vt 0.5137 0.0327 +vt 0.5625 0.5898 +vt 0.5625 0.5664 +vt 0.5938 0.5664 +vt 0.5938 0.5898 +vt 0.3438 0.5664 +vt 0.3438 0.5898 +vt 0.3895 0.0175 +vt 0.3892 0.0320 +vt 0.0938 0.5898 +vt 0.0938 0.5664 +vt 0.5450 0.0184 +vt 0.5447 0.0328 +vt 0.3750 0.5664 +vt 0.3750 0.5898 +vt 0.3583 0.0174 +vt 0.0625 0.5898 +vt 0.0625 0.5664 +vt 0.0937 0.5664 +vt 0.5759 0.0186 +vt 0.5757 0.0330 +vt 0.4156 0.2462 +vt 0.3843 0.2341 +vt 0.4062 0.5664 +vt 0.4062 0.5898 +vt 0.3271 0.0173 +vt 0.7188 0.5898 +vt 0.7188 0.5664 +vt 0.0312 0.5898 +vt 0.0312 0.5664 +vt 0.6068 0.0187 +vt 0.6066 0.0331 +vt 0.4468 0.2590 +vt 0.4780 0.2590 +vt 0.4624 0.2590 +vt 0.9688 0.5898 +vt 0.9688 0.5664 +vt 1.0000 0.5664 +vt 1.0000 0.5898 +vt 0.2958 0.0171 +vt 0.2956 0.0317 +vt 0.0000 0.5898 +vt 0.0000 0.5664 +vt 0.6377 0.0188 +vt 0.6375 0.0332 +vt 0.4375 0.5664 +vt 0.4375 0.5898 +vt 0.2642 0.0317 +vt 0.2641 0.0170 +vt 0.9375 0.5898 +vt 0.9375 0.5664 +vt 0.6686 0.0189 +vt 0.4688 0.5664 +vt 0.4688 0.5898 +vt 0.2327 0.0318 +vt 0.2320 0.0171 +vt 0.9062 0.5898 +vt 0.9062 0.5664 +vt 0.6995 0.0191 +vt 0.2906 0.2066 +vt 0.5000 0.5664 +vt 0.5000 0.5898 +vt 0.2015 0.0321 +vt 0.1997 0.0175 +vt 0.8750 0.5898 +vt 0.8750 0.5664 +vt 0.7304 0.0192 +vt 0.2593 0.2016 +vt 0.5312 0.5664 +vt 0.5312 0.5898 +vt 1.1934 0.0209 +vt 1.1908 0.0349 +vt 1.1610 0.0344 +vt 1.1624 0.0202 +vt 0.8438 0.5898 +vt 0.8438 0.5664 +vt 0.7613 0.0193 +vt 1.1306 0.0342 +vt 1.1314 0.0198 +vt 0.6250 0.5664 +vt 0.6250 0.5898 +vt 0.7921 0.0194 +vt 0.2280 0.1990 +vt 0.1969 0.1988 +vt 0.6562 0.5664 +vt 0.6562 0.5898 +vt 1.0999 0.0340 +vt 1.1004 0.0197 +vt 0.8125 0.5898 +vt 0.8125 0.5664 +vt 0.8229 0.0194 +vt 0.8228 0.0338 +vt 0.6875 0.5664 +vt 0.6875 0.5898 +vt 1.0691 0.0339 +vt 1.0694 0.0196 +vt 0.8537 0.0195 +vt 0.8536 0.0338 +vt 1.1640 0.2021 +vt 1.1328 0.2072 +vt 1.0383 0.0339 +vt 1.0385 0.0195 +vt 0.8844 0.0196 +vt 0.8843 0.0339 +vt 1.1017 0.2145 +vt 1.0075 0.0339 +vt 1.0076 0.0195 +vt 0.9151 0.0196 +vt 0.9151 0.0339 +vt 1.0862 0.2191 +vt 1.0705 0.2145 +vt 0.9767 0.0339 +vt 0.9767 0.0195 +vt 0.9458 0.0339 +vt 0.9459 0.0196 +vt 1.0393 0.2073 +vt 0.8835 0.2074 +vt 0.8524 0.2146 +vt 1.0081 0.2024 +vt 0.9147 0.2024 +vt 0.9770 0.1999 +vt 0.9458 0.1999 +vt 0.5717 0.2656 +vt 0.5405 0.2656 +vt 0.6341 0.2656 +vt 0.8212 0.2238 +vt 1.1952 0.1995 +vt 0.5092 0.2655 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6029 0.2656 +vt 0.4780 0.2655 +vt 0.4624 0.2655 +vt 0.4467 0.2655 +vt 0.8834 0.2658 +vt 0.8522 0.2658 +vt 0.7587 0.2657 +vt 0.7276 0.2657 +vt 0.9614 0.2658 +vt 0.9458 0.2658 +vt 0.9146 0.2658 +vt 0.7899 0.2657 +vt 0.8211 0.2658 +vt 0.9614 0.2658 +vt 0.9458 0.2658 +vt 0.8834 0.2658 +vt 0.8522 0.2658 +vt 0.7587 0.2657 +vt 0.7276 0.2657 +vt 0.9146 0.2658 +vt 0.7899 0.2657 +vt 0.8522 0.2658 +vt 0.8211 0.2658 +vt 0.8211 0.2658 +vt 0.9458 0.2658 +vt 0.9146 0.2658 +vt 0.7899 0.2657 +vt 0.9614 0.2658 +vt 0.8834 0.2658 +vt 0.7587 0.2657 +vt 0.7276 0.2657 +vt 0.8522 0.2658 +vt 0.8211 0.2658 +vt 0.7899 0.2657 +vt 0.7587 0.2657 +vt 0.8522 0.2658 +vt 0.8211 0.2658 +vt 0.9458 0.2658 +vt 0.9146 0.2658 +vt 0.9614 0.2658 +vt 0.8834 0.2658 +vt 0.7276 0.2657 +vt 0.9146 0.2658 +vt 0.8834 0.2658 +vt 0.7899 0.2657 +vt 0.7587 0.2657 +vt 0.8522 0.2658 +vt 0.8211 0.2658 +vt 0.9458 0.2658 +vt 0.9614 0.2658 +vt 0.7276 0.2657 +vt 0.7587 0.2657 +vt 0.7276 0.2657 +vt 0.9146 0.2658 +vt 0.8834 0.2658 +vt 0.7899 0.2657 +vt 0.8522 0.2658 +vt 0.8211 0.2658 +vt 0.9458 0.2658 +vt 0.9614 0.2658 +vt 0.9614 0.2658 +vt 0.9458 0.2658 +vt 0.8834 0.2658 +vt 0.7587 0.2657 +vt 0.7276 0.2657 +vt 0.9146 0.2658 +vt 0.7899 0.2657 +vt 0.8522 0.2658 +vt 0.8211 0.2658 +vt 0.7899 0.2657 +vt 0.9614 0.2658 +vt 0.9458 0.2658 +vt 0.8834 0.2658 +vt 0.7587 0.2657 +vt 0.7276 0.2657 +vt 0.9146 0.2658 +vt 0.9146 0.2658 +vt 0.8834 0.2658 +vt 0.7899 0.2657 +vt 0.7587 0.2657 +vt 0.9458 0.2658 +vt 0.8211 0.2658 +vt 0.8522 0.2658 +vt 0.9614 0.2658 +vt 0.7276 0.2657 +vn -1.0000 0.0000 0.0000 +vn 1.0000 0.0000 0.0000 +vn 0.0000 1.0000 0.0000 +vn 0.0000 -1.0000 0.0000 +vn 0.0000 0.0000 1.0000 +vn 0.0000 0.0000 -1.0000 +vn -0.6857 0.2113 0.6965 +vn 0.6857 0.2113 0.6965 +vn 0.6857 0.3431 0.6419 +vn -0.6857 0.3431 0.6419 +vn -0.6857 0.0713 0.7244 +vn 0.6857 0.0713 0.7244 +vn -0.6857 -0.0713 0.7244 +vn 0.6857 -0.0713 0.7244 +vn -0.6857 -0.2112 0.6966 +vn 0.6857 -0.2114 0.6965 +vn -0.6857 -0.3432 0.6419 +vn 0.6857 -0.3432 0.6419 +vn -0.6857 -0.4618 0.5625 +vn 0.6857 -0.4618 0.5625 +vn -0.6857 -0.5627 0.4617 +vn 0.6857 -0.5627 0.4617 +vn -0.6857 -0.6420 0.3431 +vn 0.6857 -0.6419 0.3432 +vn -0.6857 -0.6966 0.2112 +vn 0.6857 -0.6966 0.2112 +vn -0.6857 -0.7244 0.0713 +vn 0.6857 -0.7244 0.0713 +vn -0.6857 -0.7244 -0.0713 +vn 0.6857 -0.7244 -0.0713 +vn -0.6857 -0.6965 -0.2113 +vn 0.6857 -0.6965 -0.2113 +vn -0.6857 -0.6419 -0.3432 +vn 0.6857 -0.6420 -0.3430 +vn -0.6857 -0.5628 -0.4616 +vn 0.6857 -0.5626 -0.4617 +vn -0.6857 -0.4617 -0.5626 +vn 0.6857 -0.4618 -0.5626 +vn -0.6857 -0.3431 -0.6419 +vn 0.6857 -0.3431 -0.6419 +vn -0.6857 -0.2115 -0.6965 +vn 0.6857 -0.2112 -0.6966 +vn -0.6857 -0.0713 -0.7244 +vn 0.6857 -0.0713 -0.7244 +vn -0.6857 0.0712 -0.7244 +vn 0.6857 0.0714 -0.7244 +vn -0.6857 0.2112 -0.6966 +vn 0.6857 0.2114 -0.6965 +vn -0.6857 0.4617 -0.5626 +vn 0.6857 0.4616 -0.5627 +vn 0.6857 0.3431 -0.6419 +vn -0.6857 0.3431 -0.6419 +vn -0.6857 0.5626 -0.4618 +vn 0.6857 0.5626 -0.4617 +vn -0.6857 0.6420 -0.3430 +vn 0.6857 0.6419 -0.3432 +vn -0.6857 0.6965 -0.2113 +vn 0.6857 0.6965 -0.2113 +vn -0.6857 0.7244 -0.0713 +vn 0.6857 0.7244 -0.0713 +vn -0.6857 0.6965 0.2114 +vn 0.6857 0.6965 0.2113 +vn 0.6857 0.7244 0.0713 +vn -0.6857 0.7244 0.0713 +vn -0.6857 0.6419 0.3432 +vn 0.6857 0.6420 0.3430 +vn -0.6857 0.5626 0.4617 +vn 0.6857 0.5625 0.4618 +vn -0.2147 0.8614 -0.4604 +vn -0.1087 0.8767 -0.4686 +vn -0.1087 0.9513 -0.2886 +vn -0.2147 0.9346 -0.2835 +vn -0.2147 0.9720 -0.0957 +vn -0.1087 0.9893 -0.0974 +vn -0.2147 0.9720 0.0957 +vn -0.1087 0.9893 0.0974 +vn -0.2147 0.9346 0.2835 +vn -0.1087 0.9513 0.2886 +vn -0.2147 0.8614 0.4604 +vn -0.1087 0.8767 0.4686 +vn -0.2147 0.7550 0.6196 +vn -0.1087 0.7684 0.6306 +vn -0.1087 0.6306 0.7684 +vn -0.2147 0.6196 0.7550 +vn -0.2147 0.4604 0.8614 +vn -0.1087 0.4686 0.8767 +vn -0.2147 0.2835 0.9346 +vn -0.1087 0.2886 0.9513 +vn -0.2147 0.0957 0.9720 +vn -0.1087 0.0974 0.9893 +vn -0.1087 -0.0974 0.9893 +vn -0.2147 -0.0957 0.9720 +vn -0.1087 -0.2886 0.9513 +vn -0.2147 -0.2835 0.9346 +vn -0.2147 -0.4604 0.8614 +vn -0.1087 -0.4686 0.8767 +vn -0.1087 -0.6306 0.7684 +vn -0.2147 -0.6196 0.7550 +vn -0.1087 -0.7684 0.6306 +vn -0.2147 -0.7550 0.6196 +vn -0.2147 -0.8614 0.4604 +vn -0.1087 -0.8767 0.4686 +vn -0.1087 -0.9513 0.2886 +vn -0.2147 -0.9346 0.2835 +vn -0.2147 -0.9720 0.0957 +vn -0.1087 -0.9893 0.0974 +vn -0.1087 -0.9893 -0.0974 +vn -0.2147 -0.9720 -0.0957 +vn -0.2147 -0.9346 -0.2835 +vn -0.1087 -0.9513 -0.2886 +vn -0.1087 -0.8767 -0.4686 +vn -0.2147 -0.8614 -0.4604 +vn -0.1087 -0.7684 -0.6306 +vn -0.2147 -0.7550 -0.6196 +vn -0.1087 -0.6306 -0.7684 +vn -0.2147 -0.6196 -0.7550 +vn -0.1087 -0.4686 -0.8767 +vn -0.2147 -0.4604 -0.8614 +vn -0.1087 -0.2886 -0.9513 +vn -0.2147 -0.2835 -0.9346 +vn -0.1087 -0.0974 -0.9893 +vn -0.2147 -0.0957 -0.9720 +vn -0.2147 0.2835 -0.9346 +vn -0.2147 0.0957 -0.9720 +vn -0.1087 0.0974 -0.9893 +vn -0.1087 0.2886 -0.9513 +vn -0.2147 0.6196 -0.7550 +vn -0.2147 0.4604 -0.8614 +vn -0.1087 0.4686 -0.8767 +vn -0.1087 0.6306 -0.7684 +vn -0.2147 0.7550 -0.6196 +vn -0.1087 0.7684 -0.6306 +vn 0.6857 0.4617 0.5626 +vn -0.6857 0.4616 0.5627 +vn -0.6100 0.3031 0.7322 +vn -0.0000 0.3827 0.9239 +vn -0.0000 0.9914 0.1305 +vn -0.6100 0.7856 0.1034 +vn -0.6100 -0.4824 0.6287 +vn 0.0000 -0.6088 0.7934 +vn 0.0000 0.6087 -0.7934 +vn -0.6100 0.4824 -0.6286 +vn 0.0000 -0.3827 -0.9239 +vn -0.6100 -0.3033 -0.7321 +vn 0.0000 -0.9914 -0.1305 +vn -0.6100 -0.7856 -0.1034 +vn -0.6100 0.7320 0.3034 +vn 0.0000 0.9239 0.3827 +vn 0.0000 0.7934 -0.6087 +vn -0.6100 0.6287 -0.4823 +vn -0.6100 0.1034 0.7856 +vn 0.0000 0.1305 0.9914 +vn 0.0000 -0.1305 -0.9914 +vn -0.6100 -0.1034 -0.7856 +vn 0.0000 -0.9239 -0.3827 +vn -0.6100 -0.7321 -0.3032 +vn 0.0000 -0.7934 0.6087 +vn -0.6100 -0.6288 0.4823 +vn -0.6100 0.7321 -0.3032 +vn 0.0000 0.9239 -0.3827 +vn 0.0000 0.1305 -0.9914 +vn -0.6100 0.1034 -0.7856 +vn -0.6100 0.6287 0.4824 +vn 0.0000 0.7934 0.6088 +vn 0.0000 -0.7934 -0.6087 +vn -0.6100 -0.6286 -0.4824 +vn 0.0000 -0.9239 0.3827 +vn -0.6100 -0.7321 0.3032 +vn 0.0000 -0.1306 0.9914 +vn -0.6100 -0.1034 0.7856 +vn -0.6100 0.3032 -0.7321 +vn 0.0000 0.3827 -0.9239 +vn 0.0000 -0.6087 -0.7934 +vn -0.6100 -0.4823 -0.6287 +vn -0.6100 0.7856 -0.1034 +vn 0.0000 0.9914 -0.1305 +vn -0.0000 -0.9914 0.1305 +vn -0.6100 -0.7856 0.1034 +vn -0.0000 -0.3827 0.9239 +vn -0.6100 -0.3033 0.7321 +vn 0.0000 0.6087 0.7934 +vn -0.6100 0.4824 0.6286 +vn -0.6100 -0.3032 -0.7321 +vn -0.6100 0.4824 -0.6287 +vn -0.0000 -0.6087 0.7934 +vn -0.6100 -0.4824 0.6286 +vn -0.6100 0.3032 0.7321 +vn -0.6100 -0.7320 -0.3034 +vn 0.0000 -0.7934 0.6088 +vn -0.6100 -0.6287 0.4824 +vn 0.0000 0.1306 0.9914 +vn -0.6100 0.7321 0.3032 +vn -0.6100 0.6288 -0.4823 +vn 0.0000 -0.1305 0.9914 +vn -0.6100 -0.6286 -0.4825 +vn 0.0000 0.7934 0.6087 +vn -0.6100 0.6287 0.4823 +vn -0.6100 0.7322 -0.3030 +vn -0.6100 -0.3032 0.7321 +vn -0.6100 0.4822 0.6288 +vn -0.6100 -0.4824 -0.6286 +vn 0.2267 -0.2267 0.9472 +vn 0.1243 -0.1243 0.9844 +vn 0.3333 -0.3333 0.8819 +vn 0.4431 -0.4431 0.7793 +vn 0.1243 0.9844 -0.1243 +vn 0.2267 0.9472 -0.2267 +vn 0.0309 -0.0309 0.9990 +vn -0.0000 0.8819 0.4714 +vn -0.0000 0.7730 0.6344 +vn -0.0000 0.6344 0.7730 +vn -0.0000 0.4714 0.8819 +vn -0.0000 0.9569 0.2903 +vn -0.0000 0.9952 0.0980 +vn 0.0247 0.9994 -0.0247 +vn 0.3333 0.8819 -0.3333 +vn 0.4431 0.7793 -0.4431 +vn 0.0000 0.2903 0.9569 +vn 0.0062 0.1163 0.9932 +vn 0.0062 0.1041 0.9945 +vn 0.0123 -0.0000 0.9999 +vn 0.5510 -0.5510 0.6267 +vn 0.6437 -0.6437 0.4139 +vn 0.6995 -0.6995 0.1458 +vn 0.6995 -0.6995 -0.1458 +vn 0.6437 -0.6437 -0.4139 +vn 0.5510 -0.5510 -0.6267 +vn 0.4431 -0.4431 -0.7793 +vn 0.5774 -0.5774 -0.5774 +vn 0.4431 -0.7793 -0.4431 +vn 0.5510 -0.6267 -0.5510 +vn 0.6437 -0.4139 -0.6437 +vn 0.6995 -0.1458 -0.6995 +vn 0.6995 0.1458 -0.6995 +vn 0.6437 0.4139 -0.6437 +vn 0.5510 0.6267 -0.5510 +vn -0.6100 0.5602 0.5604 +vn 0.0000 0.7071 0.7071 +vn 0.0000 0.9659 -0.2588 +vn -0.6100 0.7654 -0.2051 +vn -0.6100 -0.2051 0.7654 +vn 0.0000 -0.2588 0.9659 +vn 0.0000 0.2588 -0.9659 +vn -0.6100 0.2051 -0.7654 +vn 0.0000 -0.7071 -0.7071 +vn -0.6100 -0.5603 -0.5603 +vn 0.0000 -0.9659 0.2588 +vn -0.6100 -0.7654 0.2052 +vn -0.6100 0.7924 -0.0001 +vn 0.0000 0.5000 -0.8660 +vn -0.6100 0.3961 -0.6863 +vn -0.6100 0.3961 0.6863 +vn 0.0000 0.5000 0.8660 +vn 0.0000 -0.5000 -0.8660 +vn -0.6100 -0.3963 -0.6861 +vn -0.6100 -0.7924 0.0001 +vn 0.0000 -0.5000 0.8660 +vn -0.6100 -0.3962 0.6862 +vn -0.6100 0.5603 -0.5603 +vn 0.0000 0.7071 -0.7071 +vn 0.0000 -0.2588 -0.9659 +vn -0.6100 -0.2050 -0.7654 +vn -0.6100 0.7654 0.2050 +vn 0.0000 0.9659 0.2588 +vn 0.0000 -0.9659 -0.2588 +vn -0.6100 -0.7654 -0.2051 +vn 0.0000 -0.7071 0.7071 +vn -0.6100 -0.5604 0.5602 +vn 0.0000 0.2588 0.9659 +vn -0.6100 0.2051 0.7654 +vn -0.6100 0.0001 -0.7924 +vn 0.0000 -0.8660 -0.5000 +vn -0.6100 -0.6862 -0.3963 +vn -0.6100 0.6862 -0.3963 +vn 0.0000 0.8660 -0.5000 +vn -0.0000 -0.8660 0.5000 +vn -0.6100 -0.6864 0.3959 +vn -0.6100 -0.0002 0.7924 +vn -0.0000 0.8660 0.5000 +vn -0.6100 0.6862 0.3962 +vn -0.6100 -0.7654 0.2051 +vn -0.6100 -0.2052 0.7654 +vn -0.6100 0.5603 0.5603 +vn -0.6100 0.7654 -0.2052 +vn -0.6100 -0.3961 -0.6863 +vn -0.6100 0.3962 0.6862 +vn -0.6100 0.3962 -0.6862 +vn -0.6100 -0.5603 0.5603 +vn -0.6100 0.2049 0.7654 +vn -0.6100 -0.7654 -0.2050 +vn -0.6100 0.7654 0.2051 +vn -0.6100 -0.2051 -0.7654 +vn -0.6100 0.6862 0.3963 +vn -0.6100 -0.6862 0.3962 +vn -0.6100 0.6863 -0.3961 +vn -0.6100 -0.6862 -0.3962 +vn 0.0061 -0.0184 0.9998 +vn 0.0974 0.1087 0.9893 +vn -0.0917 -0.0131 0.9957 +vn -0.0946 0.1083 0.9896 +vn 0.2886 0.1087 0.9513 +vn 0.4686 0.1087 0.8767 +vn -0.0952 0.0117 0.9954 +vn -0.2879 0.0228 0.9574 +vn -0.2861 0.1081 0.9521 +vn 0.6306 0.1087 0.7684 +vn -0.4719 0.0211 0.8814 +vn -0.4691 0.1082 0.8765 +vn -0.7733 0.0153 0.6339 +vn -0.7688 0.1084 0.6302 +vn -0.6311 0.1083 0.7681 +vn -0.6349 0.0185 0.7724 +vn -0.0957 0.2147 0.9720 +vn -0.2835 0.2147 0.9346 +vn 0.0957 0.2147 0.9720 +vn 0.2835 0.2147 0.9346 +vn 0.7684 0.6306 0.1087 +vn 0.6306 0.7684 0.1087 +vn -0.4604 0.2147 0.8614 +vn 0.4604 0.2147 0.8614 +vn 0.7684 0.1087 0.6306 +vn 0.8767 0.1087 0.4686 +vn -0.6196 0.2147 0.7550 +vn 0.6196 0.2147 0.7550 +vn 0.9513 0.1087 0.2886 +vn -0.9513 -0.2886 0.1087 +vn -0.9844 -0.1243 -0.1243 +vn -0.9994 -0.0247 -0.0247 +vn -0.9893 -0.0974 0.1087 +vn -0.7550 0.2147 0.6196 +vn 0.5626 0.6857 0.4617 +vn 0.5626 -0.6857 0.4617 +vn 0.6419 -0.6857 0.3431 +vn 0.6419 0.6857 0.3431 +vn 0.7244 0.6857 0.0713 +vn 0.7244 -0.6857 0.0713 +vn 0.7244 -0.6857 -0.0713 +vn 0.7244 0.6857 -0.0713 +vn 0.7550 0.2147 0.6196 +vn 0.4618 0.6857 0.5625 +vn 0.4618 -0.6857 0.5626 +vn -0.8614 0.2147 0.4604 +vn -0.8769 0.1085 0.4682 +vn 0.6966 -0.6857 -0.2112 +vn 0.6965 0.6857 -0.2114 +vn 0.8614 0.2147 0.4604 +vn 0.3430 0.6857 0.6420 +vn 0.3432 -0.6857 0.6419 +vn 0.9893 0.1087 0.0974 +vn 0.9893 0.1087 -0.0974 +vn -0.9952 -0.0000 0.0975 +vn -0.9893 0.1087 0.0973 +vn -0.9514 0.1086 0.2882 +vn -0.9568 0.0071 0.2907 +vn -0.9951 0.0025 0.0992 +vn -0.9346 0.2147 0.2835 +vn 0.2113 0.6857 0.6965 +vn 0.2113 -0.6857 0.6965 +vn 0.9346 0.2147 0.2835 +vn -0.0713 0.6857 0.7244 +vn -0.0713 -0.6857 0.7244 +vn 0.0713 -0.6857 0.7244 +vn 0.0713 0.6857 0.7244 +vn -0.9720 0.2147 0.0957 +vn 0.6420 -0.6857 -0.3430 +vn 0.6419 0.6857 -0.3432 +vn 0.9720 0.2147 0.0957 +vn -0.2113 0.6857 0.6965 +vn -0.2113 -0.6857 0.6965 +vn 0.9513 0.1087 -0.2886 +vn 0.8767 0.1087 -0.4686 +vn -0.9513 0.1087 -0.2886 +vn -0.9893 0.1087 -0.0974 +vn -0.9720 0.2147 -0.0957 +vn 0.5628 -0.6857 -0.4616 +vn 0.5628 0.6857 -0.4616 +vn 0.9720 0.2147 -0.0957 +vn -0.3432 0.6857 0.6419 +vn -0.3430 -0.6857 0.6420 +vn 0.7684 0.1087 -0.6306 +vn -0.8767 0.1087 -0.4686 +vn -0.9472 -0.2267 -0.2267 +vn -0.9346 0.2147 -0.2835 +vn 0.4617 -0.6857 -0.5626 +vn 0.4617 0.6857 -0.5626 +vn 0.9346 0.2147 -0.2835 +vn -0.4617 0.6857 0.5626 +vn -0.4618 -0.6857 0.5626 +vn -0.8614 0.2147 -0.4604 +vn 0.3430 -0.6857 -0.6420 +vn 0.3432 0.6857 -0.6419 +vn 0.8614 0.2147 -0.4604 +vn -0.5627 0.6857 0.4617 +vn -0.5627 -0.6857 0.4617 +vn -0.7550 0.2147 -0.6196 +vn -0.7684 0.1087 -0.6306 +vn 0.2113 0.6857 -0.6965 +vn 0.2113 -0.6857 -0.6965 +vn 0.0713 -0.6857 -0.7244 +vn 0.0713 0.6857 -0.7244 +vn 0.7550 0.2147 -0.6196 +vn 0.4139 -0.6437 -0.6437 +vn 0.6267 -0.5510 -0.5510 +vn 0.4686 0.1087 -0.8767 +vn 0.2886 0.1087 -0.9513 +vn -0.4139 -0.6437 -0.6437 +vn -0.1458 -0.6995 -0.6995 +vn -0.0974 0.1087 -0.9893 +vn -0.2886 0.1087 -0.9513 +vn -0.6196 0.2147 -0.7550 +vn -0.6306 0.1087 -0.7684 +vn -0.0713 -0.6857 -0.7244 +vn -0.0713 0.6857 -0.7244 +vn 0.6965 -0.6857 0.2113 +vn 0.6965 0.6857 0.2113 +vn 0.6196 0.2147 -0.7550 +vn 0.6306 0.1087 -0.7684 +vn -0.6420 0.6857 0.3430 +vn -0.6419 -0.6857 0.3433 +vn 0.1458 -0.6995 -0.6995 +vn 0.0974 0.1087 -0.9893 +vn -0.4604 0.2147 -0.8614 +vn -0.4686 0.1087 -0.8767 +vn -0.2113 -0.6857 -0.6965 +vn -0.2113 0.6857 -0.6965 +vn 0.4604 0.2147 -0.8614 +vn -0.6965 0.6857 0.2113 +vn -0.6965 -0.6857 0.2113 +vn -0.2835 0.2147 -0.9346 +vn -0.3434 -0.6857 -0.6418 +vn -0.3431 0.6857 -0.6419 +vn 0.2835 0.2147 -0.9346 +vn -0.7244 0.6857 0.0713 +vn -0.7244 -0.6857 0.0711 +vn -0.0957 0.2147 -0.9720 +vn -0.4617 -0.6857 -0.5626 +vn -0.4617 0.6857 -0.5626 +vn 0.0957 0.2147 -0.9720 +vn -0.7244 0.6857 -0.0713 +vn -0.7244 -0.6857 -0.0713 +vn -0.6965 0.6857 -0.2113 +vn -0.6965 -0.6857 -0.2113 +vn -0.5626 -0.6857 -0.4617 +vn -0.5626 0.6857 -0.4617 +vn -0.6419 0.6857 -0.3431 +vn -0.6419 -0.6857 -0.3431 +vn 0.3032 0.6100 -0.7321 +vn 0.3827 -0.0000 -0.9239 +vn -0.6087 -0.0000 -0.7934 +vn -0.4824 0.6100 -0.6287 +vn 0.7856 0.6100 -0.1034 +vn 0.9914 0.0000 -0.1305 +vn -0.9914 -0.0000 0.1305 +vn -0.7856 0.6100 0.1034 +vn -0.3827 0.0000 0.9239 +vn -0.3033 0.6100 0.7321 +vn 0.6087 0.0000 0.7934 +vn 0.4824 0.6100 0.6287 +vn 0.7320 0.6100 -0.3034 +vn 0.9239 0.0000 -0.3827 +vn 0.1305 0.0000 -0.9914 +vn 0.1033 0.6100 -0.7857 +vn 0.6287 0.6100 0.4824 +vn 0.7934 0.0000 0.6088 +vn -0.7934 0.0000 -0.6087 +vn -0.6287 0.6100 -0.4823 +vn -0.9239 0.0000 0.3827 +vn -0.7321 0.6100 0.3032 +vn -0.1305 0.0000 0.9914 +vn -0.1034 0.6100 0.7856 +vn 0.7322 0.6100 0.3031 +vn 0.9239 0.0000 0.3827 +vn 0.7934 0.0000 -0.6088 +vn 0.6286 0.6100 -0.4825 +vn 0.1033 0.6100 0.7856 +vn 0.1305 0.0000 0.9914 +vn -0.1306 0.0000 -0.9914 +vn -0.1034 0.6100 -0.7856 +vn -0.9239 0.0000 -0.3827 +vn -0.7321 0.6100 -0.3032 +vn -0.7934 0.0000 0.6087 +vn -0.6287 0.6100 0.4824 +vn 0.3032 0.6100 0.7321 +vn 0.3826 0.0000 0.9239 +vn 0.9914 0.0000 0.1305 +vn 0.7856 0.6100 0.1035 +vn -0.4824 0.6100 0.6287 +vn -0.6088 0.0000 0.7933 +vn 0.6087 0.0000 -0.7934 +vn 0.4824 0.6100 -0.6287 +vn -0.3827 -0.0000 -0.9239 +vn -0.3031 0.6100 -0.7321 +vn -0.9914 0.0000 -0.1305 +vn -0.7856 0.6100 -0.1036 +vn -0.3032 0.6100 0.7321 +vn 0.6088 -0.0001 0.7933 +vn 0.4823 0.6100 0.6288 +vn 0.9914 -0.0000 -0.1306 +vn -0.7320 0.6100 0.3034 +vn -0.1033 0.6100 0.7857 +vn -0.6287 0.6100 -0.4824 +vn -0.7934 0.0000 -0.6088 +vn 0.7934 0.0000 0.6087 +vn 0.6287 0.6100 0.4823 +vn 0.7321 0.6100 -0.3032 +vn 0.1035 0.6100 -0.7856 +vn -0.7322 0.6100 -0.3031 +vn -0.7934 0.0000 0.6088 +vn -0.6286 0.6100 0.4825 +vn -0.1033 0.6100 -0.7856 +vn -0.1305 0.0000 -0.9914 +vn 0.1306 0.0000 0.9914 +vn 0.1034 0.6100 0.7856 +vn 0.7321 0.6100 0.3032 +vn 0.7934 0.0000 -0.6087 +vn 0.6287 0.6100 -0.4824 +vn -0.3031 0.6100 -0.7322 +vn -0.7856 0.6100 -0.1033 +vn 0.6088 0.0000 -0.7934 +vn -0.6087 0.0000 0.7934 +vn -0.4825 0.6100 0.6286 +vn 0.3827 -0.0000 0.9239 +vn 0.9915 -0.0000 0.1305 +vn 0.7856 0.6100 0.1034 +vn -0.8819 0.0114 0.4713 +vn -0.8819 -0.3333 -0.3333 +vn -0.7793 -0.4431 -0.4431 +vn 0.7793 -0.4431 -0.4431 +vn -0.6267 -0.5510 -0.5510 +vn 0.5604 0.6100 -0.5602 +vn 0.7071 0.0000 -0.7071 +vn -0.2588 0.0000 -0.9659 +vn -0.2052 0.6100 -0.7654 +vn 0.7654 0.6100 0.2051 +vn 0.9659 0.0000 0.2588 +vn -0.9659 0.0000 -0.2588 +vn -0.7654 0.6100 -0.2050 +vn -0.7071 0.0000 0.7071 +vn -0.5604 0.6100 0.5602 +vn 0.2588 0.0000 0.9659 +vn 0.2051 0.6100 0.7654 +vn 0.7924 0.6100 0.0001 +vn 0.5000 0.0000 -0.8660 +vn 0.3962 0.6100 -0.6862 +vn 0.3963 0.6100 0.6862 +vn 0.5000 0.0000 0.8660 +vn -0.5000 0.0000 -0.8660 +vn -0.3961 0.6100 -0.6863 +vn -0.7924 0.6100 0.0000 +vn -0.5000 0.0000 0.8660 +vn -0.3962 0.6100 0.6862 +vn 0.5602 0.6100 0.5604 +vn 0.7071 0.0000 0.7071 +vn 0.9659 0.0000 -0.2588 +vn 0.7654 0.6100 -0.2052 +vn -0.2051 0.6100 0.7654 +vn -0.2588 0.0000 0.9659 +vn 0.2588 0.0000 -0.9659 +vn 0.2050 0.6100 -0.7654 +vn -0.7071 0.0000 -0.7071 +vn -0.5602 0.6100 -0.5604 +vn -0.9659 0.0000 0.2588 +vn -0.7654 0.6100 0.2051 +vn -0.0001 0.6100 0.7924 +vn 0.8660 0.0000 0.5000 +vn 0.6862 0.6100 0.3962 +vn -0.6863 0.6100 0.3961 +vn -0.8660 0.0000 0.5000 +vn 0.8660 0.0000 -0.5000 +vn 0.6863 0.6100 -0.3961 +vn -0.0000 0.6100 -0.7924 +vn -0.8660 -0.0000 -0.5000 +vn -0.6862 0.6100 -0.3963 +vn 0.2052 0.6100 0.7654 +vn -0.7654 0.6100 -0.2051 +vn 0.7654 0.6100 0.2050 +vn -0.2051 0.6100 -0.7654 +vn -0.7924 0.6100 -0.0001 +vn -0.3963 0.6100 -0.6862 +vn 0.3961 0.6100 0.6863 +vn 0.7924 0.6100 -0.0000 +vn -0.7654 0.6100 0.2052 +vn 0.2051 0.6100 -0.7654 +vn -0.2050 0.6100 0.7654 +vn 0.7654 0.6100 -0.2051 +vn -0.0001 0.6100 -0.7924 +vn -0.6863 0.6100 -0.3961 +vn 0.6861 0.6100 -0.3963 +vn -0.6862 0.6100 0.3962 +vn 0.0000 0.6100 0.7924 +vn -0.9569 0.2903 -0.0000 +vn -0.9513 0.2886 0.1087 +vn -0.9893 0.0974 0.1087 +vn -0.9952 0.0980 0.0000 +vn -0.8767 -0.4686 0.1087 +vn 0.7856 -0.1035 0.6100 +vn 0.9914 -0.1306 0.0000 +vn 0.6088 0.7933 0.0000 +vn 0.4824 0.6286 0.6100 +vn 0.3032 -0.7321 0.6100 +vn 0.3827 -0.9239 0.0000 +vn -0.4824 -0.6287 0.6100 +vn -0.6087 -0.7934 0.0000 +vn -0.7856 0.1034 0.6100 +vn -0.9914 0.1305 0.0000 +vn -0.3827 0.9239 0.0000 +vn -0.3032 0.7321 0.6100 +vn -0.7856 0.1033 0.6100 +vn -0.6088 -0.7933 -0.0000 +vn -0.4825 -0.6286 0.6100 +vn 0.4823 0.6287 0.6100 +vn 0.6087 0.7934 0.0000 +vn 0.7856 -0.1034 0.6100 +vn 0.9914 -0.1305 0.0000 +vn 0.3826 -0.9239 0.0000 +vn 0.3030 -0.7322 0.6100 +vn -0.6287 -0.4824 0.6100 +vn -0.7934 -0.6087 0.0000 +vn 0.1305 -0.9914 0.0000 +vn 0.1036 -0.7856 0.6100 +vn -0.7321 0.3032 0.6100 +vn -0.9239 0.3827 0.0000 +vn -0.1034 0.7856 0.6100 +vn -0.1306 0.9914 0.0000 +vn 0.6287 0.4824 0.6100 +vn 0.7934 0.6088 0.0000 +vn 0.9239 -0.3827 0.0000 +vn 0.7321 -0.3032 0.6100 +vn -0.1034 -0.7856 0.6100 +vn -0.1305 -0.9914 0.0000 +vn 0.7934 -0.6088 0.0000 +vn 0.6287 -0.4824 0.6100 +vn -0.7321 -0.3031 0.6100 +vn -0.9239 -0.3827 0.0000 +vn -0.6287 0.4823 0.6100 +vn -0.7934 0.6087 0.0000 +vn 0.1034 0.7856 0.6100 +vn 0.1305 0.9914 0.0000 +vn 0.9239 0.3827 0.0000 +vn 0.7322 0.3031 0.6100 +vn 0.4824 -0.6287 0.6100 +vn 0.6088 -0.7934 0.0000 +vn 0.9914 0.1305 0.0000 +vn 0.7856 0.1033 0.6100 +vn -0.3034 -0.7320 0.6100 +vn -0.3827 -0.9239 0.0000 +vn -0.7856 -0.1034 0.6100 +vn -0.9914 -0.1305 0.0000 +vn -0.4824 0.6287 0.6100 +vn -0.6087 0.7934 0.0000 +vn 0.3827 0.9239 0.0000 +vn 0.3032 0.7321 0.6100 +vn -0.5626 0.4617 0.6857 +vn -0.5626 0.4617 -0.6857 +vn -0.6420 0.3430 -0.6857 +vn -0.6419 0.3432 0.6857 +vn -0.6966 0.2111 -0.6857 +vn -0.6965 0.2113 0.6857 +vn -0.4617 0.5626 0.6857 +vn -0.4617 0.5626 -0.6857 +vn -0.7244 0.0713 -0.6857 +vn -0.7244 0.0713 0.6857 +vn 0.6965 -0.2113 0.6857 +vn 0.6965 -0.2113 -0.6857 +vn 0.7244 -0.0713 -0.6857 +vn 0.7244 -0.0713 0.6857 +vn 0.0957 0.9720 0.2147 +vn -0.0957 0.9720 0.2147 +vn -0.0974 0.9893 0.1087 +vn 0.0974 0.9893 0.1087 +vn -0.7244 -0.0712 -0.6857 +vn -0.7244 -0.0714 0.6857 +vn 0.2835 0.9346 0.2147 +vn 0.2886 0.9513 0.1087 +vn -0.3431 0.6419 0.6857 +vn -0.3431 0.6419 -0.6857 +vn -0.2835 0.9346 0.2147 +vn -0.2886 0.9513 0.1087 +vn 0.0713 -0.7244 0.6857 +vn 0.0713 -0.7244 -0.6857 +vn 0.2113 -0.6965 -0.6857 +vn 0.2113 -0.6965 0.6857 +vn -0.6965 -0.2113 -0.6857 +vn -0.6965 -0.2113 0.6857 +vn 0.4604 0.8614 0.2147 +vn 0.4686 0.8767 0.1087 +vn -0.2114 0.6965 0.6857 +vn -0.2112 0.6966 -0.6857 +vn -0.4604 0.8614 0.2147 +vn -0.4686 0.8767 0.1087 +vn -0.6419 -0.3432 -0.6857 +vn -0.6420 -0.3431 0.6857 +vn 0.6196 0.7550 0.2147 +vn -0.0713 0.7244 0.6857 +vn -0.0713 0.7244 -0.6857 +vn -0.6196 0.7550 0.2147 +vn -0.6306 0.7684 0.1087 +vn -0.5627 -0.4617 -0.6857 +vn -0.5627 -0.4617 0.6857 +vn 0.7550 0.6196 0.2147 +vn 0.6419 -0.3432 0.6857 +vn 0.6420 -0.3430 -0.6857 +vn 0.0713 0.7244 0.6857 +vn 0.0713 0.7244 -0.6857 +vn -0.7550 0.6196 0.2147 +vn -0.7684 0.6306 0.1087 +vn -0.0980 0.9952 0.0000 +vn 0.3431 0.6419 0.6857 +vn 0.3431 0.6419 -0.6857 +vn 0.2113 0.6965 -0.6857 +vn 0.2113 0.6965 0.6857 +vn 0.8614 0.4604 0.2147 +vn 0.8767 0.4686 0.1087 +vn -0.8614 0.4604 0.2147 +vn -0.8767 0.4686 0.1087 +vn -0.4618 -0.5626 -0.6857 +vn -0.4616 -0.5627 0.6857 +vn 0.9513 0.2886 0.1087 +vn 0.9346 0.2835 0.2147 +vn 0.4617 0.5626 0.6857 +vn 0.4617 0.5626 -0.6857 +vn -0.9346 0.2835 0.2147 +vn -0.3432 -0.6419 -0.6857 +vn -0.3430 -0.6420 0.6857 +vn 0.9893 0.0974 0.1087 +vn 0.9720 0.0957 0.2147 +vn 0.5625 0.4618 0.6857 +vn 0.5628 0.4616 -0.6857 +vn -0.9720 0.0957 0.2147 +vn -0.2112 -0.6966 -0.6857 +vn -0.2112 -0.6966 0.6857 +vn 0.9893 -0.0974 0.1087 +vn 0.9720 -0.0957 0.2147 +vn 0.6420 0.3430 0.6857 +vn 0.6419 0.3432 -0.6857 +vn -0.9720 -0.0957 0.2147 +vn -0.0713 -0.7244 -0.6857 +vn -0.0713 -0.7244 0.6857 +vn 0.9513 -0.2886 0.1087 +vn 0.9346 -0.2835 0.2147 +vn 0.6965 0.2113 0.6857 +vn 0.6966 0.2112 -0.6857 +vn -0.9346 -0.2835 0.2147 +vn 0.8767 -0.4686 0.1087 +vn 0.8614 -0.4604 0.2147 +vn 0.3430 -0.6420 -0.6857 +vn 0.3432 -0.6419 0.6857 +vn -0.8614 -0.4604 0.2147 +vn 0.4616 -0.5627 -0.6857 +vn 0.4618 -0.5626 0.6857 +vn 0.7684 -0.6306 0.1087 +vn 0.7550 -0.6196 0.2147 +vn 0.7244 0.0713 0.6857 +vn 0.7244 0.0713 -0.6857 +vn -0.7550 -0.6196 0.2147 +vn -0.7684 -0.6306 0.1087 +vn 0.5625 -0.4618 -0.6857 +vn 0.5628 -0.4616 0.6857 +vn 0.6306 -0.7684 0.1087 +vn 0.6196 -0.7550 0.2147 +vn -0.6196 -0.7550 0.2147 +vn -0.6306 -0.7684 0.1087 +vn 0.4686 -0.8767 0.1087 +vn 0.4604 -0.8614 0.2147 +vn -0.4604 -0.8614 0.2147 +vn -0.4686 -0.8767 0.1087 +vn 0.2886 -0.9513 0.1087 +vn 0.2835 -0.9346 0.2147 +vn -0.2835 -0.9346 0.2147 +vn -0.2886 -0.9513 0.1087 +vn 0.0974 -0.9893 0.1087 +vn 0.0957 -0.9720 0.2147 +vn -0.0974 -0.9893 0.1087 +vn -0.0957 -0.9720 0.2147 +vn -0.6344 0.7730 -0.0000 +vn -0.4714 0.8819 -0.0000 +vn -0.8819 0.4714 -0.0000 +vn -0.2903 0.9569 0.0000 +vn 0.5604 0.5602 0.6100 +vn 0.7071 0.7071 -0.0000 +vn -0.2588 0.9659 -0.0000 +vn -0.2051 0.7654 0.6100 +vn 0.7654 -0.2051 0.6100 +vn 0.9659 -0.2588 0.0000 +vn -0.9659 0.2588 -0.0000 +vn -0.7654 0.2051 0.6100 +vn -0.7071 -0.7071 -0.0000 +vn -0.5604 -0.5602 0.6100 +vn 0.2588 -0.9659 0.0000 +vn 0.2051 -0.7654 0.6100 +vn 0.7924 0.0000 0.6100 +vn 0.5000 0.8660 0.0000 +vn 0.3962 0.6862 0.6100 +vn 0.3962 -0.6862 0.6100 +vn 0.5000 -0.8660 0.0000 +vn -0.5000 0.8660 0.0000 +vn -0.3962 0.6862 0.6100 +vn -0.7924 -0.0000 0.6100 +vn -0.5000 -0.8660 -0.0000 +vn -0.3961 -0.6863 0.6100 +vn 0.5602 -0.5604 0.6100 +vn 0.7071 -0.7071 0.0000 +vn 0.9659 0.2588 0.0000 +vn 0.7654 0.2051 0.6100 +vn -0.2052 -0.7654 0.6100 +vn -0.2588 -0.9659 0.0000 +vn 0.2588 0.9659 0.0000 +vn 0.2051 0.7654 0.6100 +vn -0.7071 0.7071 -0.0000 +vn -0.5602 0.5604 0.6100 +vn -0.9659 -0.2588 0.0000 +vn -0.7654 -0.2051 0.6100 +vn -0.0001 -0.7924 0.6100 +vn 0.8660 -0.5000 0.0000 +vn 0.6862 -0.3963 0.6100 +vn -0.6861 -0.3963 0.6100 +vn -0.8660 -0.5000 0.0000 +vn 0.8660 0.5000 -0.0000 +vn 0.6862 0.3962 0.6100 +vn -0.0001 0.7924 0.6100 +vn -0.8660 0.5000 -0.0000 +vn -0.6862 0.3962 0.6100 +vn -0.2051 -0.7654 0.6100 +vn -0.0000 0.7924 0.6100 +vn 0.6862 0.3963 0.6100 +vn -0.6862 -0.3962 0.6100 +vn 0.0000 -0.7924 0.6100 +vn 0.6863 -0.3961 0.6100 +vn -0.7730 0.6344 -0.0000 +vn -0.4711 0.1079 0.8754 +vn -0.6338 0.0947 0.7677 +vn -0.9560 0.0360 0.2911 +vn -0.9948 0.0126 0.1013 +vn -0.0980 0.1217 0.9877 +vn -0.2902 0.1170 0.9498 +vn -0.8809 0.0581 0.4698 +vn -0.7721 0.0779 0.6307 +vn -0.0979 0.2889 0.9523 +vn -0.4706 0.2561 0.8444 +vn -0.6332 0.2247 0.7407 +vn -0.9556 0.0855 0.2819 +vn -0.9946 0.0301 0.0991 +vn -0.2898 0.2778 0.9159 +vn -0.8803 0.1377 0.4540 +vn -0.6332 0.3649 0.6826 +vn -0.7715 0.2999 0.5611 +vn -0.7715 0.1847 0.6088 +vn -0.0979 0.4691 0.8777 +vn -0.2898 0.4512 0.8441 +vn -0.8803 0.2236 0.4184 +vn -0.4706 0.4159 0.7782 +vn -0.9556 0.1389 0.2598 +vn -0.9946 0.0488 0.0913 +vn -0.6332 0.4910 0.5983 +vn -0.7715 0.4036 0.4918 +vn -0.8803 0.3010 0.3667 +vn -0.9556 0.1869 0.2277 +vn -0.6332 0.5983 0.4910 +vn -0.7715 0.4918 0.4036 +vn -0.0979 0.6314 0.7693 +vn -0.2898 0.6072 0.7398 +vn -0.4706 0.5598 0.6821 +vn -0.9946 0.0657 0.0801 +vn -0.2898 0.7398 0.6072 +vn -0.4706 0.6821 0.5598 +vn -0.8803 0.3667 0.3010 +vn -0.9556 0.2277 0.1869 +vn -0.6332 0.6826 0.3649 +vn -0.7715 0.5611 0.2999 +vn -0.0979 0.7693 0.6314 +vn -0.9946 0.0801 0.0657 +vn -0.9556 0.2598 0.1389 +vn -0.9946 0.0913 0.0488 +vn -0.2898 0.8441 0.4512 +vn -0.4706 0.7782 0.4159 +vn -0.8803 0.4184 0.2236 +vn -0.6332 0.7407 0.2247 +vn -0.7715 0.6088 0.1847 +vn -0.0979 0.8777 0.4691 +vn -0.0979 0.9523 0.2889 +vn -0.4706 0.8444 0.2561 +vn -0.9556 0.2819 0.0855 +vn -0.9946 0.0991 0.0301 +vn -0.2898 0.9159 0.2778 +vn -0.8803 0.4540 0.1377 +vn -0.6332 0.7703 0.0759 +vn -0.7715 0.6332 0.0624 +vn -0.8803 0.4721 0.0465 +vn -0.0979 0.9904 0.0975 +vn -0.4706 0.8781 0.0865 +vn -0.9556 0.2932 0.0289 +vn -0.9946 0.1031 0.0101 +vn -0.2898 0.9525 0.0938 +g Pipe_Cylinder.002_None.001_Pipe_Cylinder.002_None.001_None +s off +f 1/1/1 2/2/1 3/3/1 4/4/1 5/5/1 6/6/1 +f 7/7/1 8/8/1 9/9/1 10/10/1 11/11/1 12/12/1 +f 13/13/1 14/14/1 15/15/1 16/16/1 17/17/1 18/18/1 +f 19/19/1 20/20/1 21/21/1 22/22/1 23/23/1 24/24/1 +f 25/25/1 26/26/1 27/27/1 28/28/1 29/29/1 30/30/1 +f 31/31/1 32/32/1 33/33/1 34/34/1 35/35/1 36/36/1 +f 37/37/1 38/38/1 39/39/1 40/40/1 41/41/1 42/42/1 +f 43/43/1 44/44/1 45/45/1 46/46/1 47/47/1 48/48/1 +f 49/49/1 50/50/1 51/51/1 52/52/1 53/53/1 54/54/1 55/55/1 56/56/1 57/57/1 58/58/1 59/59/1 60/60/1 61/61/1 62/62/1 63/63/1 64/64/1 65/65/1 66/66/1 67/67/1 68/68/1 69/69/1 70/70/1 71/71/1 72/72/1 73/73/1 74/74/1 75/75/1 76/76/1 77/77/1 78/78/1 79/79/1 80/80/1 +f 81/81/2 82/82/2 83/83/2 84/84/2 85/85/2 86/86/2 87/87/2 88/88/2 89/89/2 90/90/2 91/91/2 92/92/2 93/93/2 94/94/2 95/95/2 96/96/2 97/97/2 98/98/2 99/99/2 100/100/2 101/101/2 102/102/2 103/103/2 104/104/2 105/105/2 106/106/2 107/107/2 108/108/2 109/109/2 110/110/2 111/111/2 112/112/2 +f 113/113/1 114/114/1 115/115/1 116/116/1 117/117/1 118/118/1 +f 119/119/1 120/120/1 121/121/1 122/122/1 123/123/1 124/124/1 +f 125/125/1 126/126/1 127/127/1 128/128/1 129/129/1 130/130/1 +f 131/131/1 132/132/1 133/133/1 134/134/1 135/135/1 136/136/1 +f 137/137/1 138/138/1 139/139/1 140/140/1 141/141/1 142/142/1 +f 143/143/1 144/144/1 145/145/1 146/146/1 147/147/1 148/148/1 +f 149/149/1 150/150/1 151/151/1 152/152/1 153/153/1 154/154/1 +f 155/155/1 156/156/1 157/157/1 158/158/1 159/159/1 160/160/1 +f 161/161/3 162/162/3 163/163/3 164/164/3 165/165/3 166/166/3 +f 167/167/3 168/168/3 169/169/3 170/170/3 171/171/3 172/172/3 +f 173/173/3 174/174/3 175/175/3 176/176/3 177/177/3 178/178/3 +f 179/179/3 180/180/3 181/181/3 182/182/3 183/183/3 184/184/3 +f 185/185/3 186/186/3 187/187/3 188/188/3 189/189/3 190/190/3 +f 191/191/3 192/192/3 193/193/3 194/194/3 195/195/3 196/196/3 +f 197/197/3 198/198/3 199/199/3 200/200/3 201/201/3 202/202/3 +f 203/203/3 204/204/3 205/205/3 206/206/3 207/207/3 208/208/3 +f 209/209/3 210/210/3 211/211/3 212/212/3 213/213/3 214/214/3 215/215/3 216/216/3 217/217/3 218/218/3 219/219/3 220/220/3 221/221/3 222/222/3 223/223/3 224/224/3 225/225/3 226/226/3 227/227/3 228/228/3 229/229/3 230/230/3 231/231/3 232/232/3 233/233/3 234/234/3 235/235/3 236/236/3 237/237/3 238/238/3 239/239/3 240/240/3 +f 241/241/4 242/242/4 243/243/4 244/244/4 245/245/4 246/246/4 247/247/4 248/248/4 249/249/4 250/250/4 251/251/4 252/252/4 253/253/4 254/254/4 255/255/4 256/256/4 257/257/4 258/258/4 259/259/4 260/260/4 261/261/4 262/262/4 263/263/4 264/264/4 265/265/4 266/266/4 267/267/4 268/268/4 269/269/4 270/270/4 271/271/4 272/272/4 +f 273/273/3 274/274/3 275/275/3 276/276/3 277/277/3 278/278/3 +f 279/279/3 280/280/3 281/281/3 282/282/3 283/283/3 284/284/3 +f 285/285/3 286/286/3 287/287/3 288/288/3 289/289/3 290/290/3 +f 291/291/3 292/292/3 293/293/3 294/294/3 295/295/3 296/296/3 +f 297/297/3 298/298/3 299/299/3 300/300/3 301/301/3 302/302/3 +f 303/303/3 304/304/3 305/305/3 306/306/3 307/307/3 308/308/3 +f 309/309/3 310/310/3 311/311/3 312/312/3 313/313/3 314/314/3 +f 315/315/3 316/316/3 317/317/3 318/318/3 319/319/3 320/320/3 +f 321/321/5 322/322/5 323/323/5 324/324/5 325/325/5 326/326/5 +f 327/327/5 328/328/5 329/329/5 330/330/5 331/331/5 332/332/5 +f 333/333/5 334/334/5 335/335/5 336/336/5 337/337/5 338/338/5 +f 339/339/5 340/340/5 341/341/5 342/342/5 343/343/5 344/344/5 +f 345/345/5 346/346/5 347/347/5 348/348/5 349/349/5 350/350/5 +f 351/351/5 352/352/5 353/353/5 354/354/5 355/355/5 356/356/5 357/357/5 358/358/5 359/359/5 360/360/5 361/361/5 362/362/5 363/363/5 364/364/5 365/365/5 366/366/5 367/367/5 368/368/5 369/369/5 370/370/5 371/371/5 372/372/5 373/373/5 374/374/5 375/375/5 376/376/5 377/377/5 378/378/5 379/379/5 380/380/5 381/381/5 382/382/5 +f 383/383/6 384/384/6 385/385/6 386/386/6 387/387/6 388/388/6 389/389/6 390/390/6 391/391/6 392/392/6 393/393/6 394/394/6 395/395/6 396/396/6 397/397/6 398/398/6 399/399/6 400/400/6 401/401/6 402/402/6 403/403/6 404/404/6 405/405/6 406/406/6 407/407/6 408/408/6 409/409/6 410/410/6 411/411/6 412/412/6 413/413/6 414/414/6 +f 415/415/5 416/416/5 417/417/5 418/418/5 419/419/5 420/420/5 +f 421/421/5 422/422/5 423/423/5 424/424/5 425/425/5 426/426/5 +f 427/427/5 428/428/5 429/429/5 430/430/5 431/431/5 432/432/5 +f 433/433/5 434/434/5 435/435/5 436/436/5 437/437/5 438/438/5 +f 439/439/5 440/440/5 441/441/5 442/442/5 443/443/5 444/444/5 +f 445/445/5 446/446/5 447/447/5 448/448/5 449/449/5 450/450/5 +s 1 +f 79/451/7 102/452/8 101/453/9 80/454/10 +f 78/455/11 103/456/12 102/452/8 79/451/7 +f 77/457/13 104/458/14 103/456/12 78/455/11 +f 76/459/15 105/460/16 104/458/14 77/457/13 +f 75/461/17 106/462/18 105/460/16 76/459/15 +f 74/463/19 107/464/20 106/462/18 75/461/17 +f 73/465/21 108/466/22 107/464/20 74/463/19 +f 72/467/23 109/468/24 108/466/22 73/465/21 +f 71/469/25 110/470/26 109/468/24 72/467/23 +f 70/471/27 111/472/28 110/470/26 71/469/25 +f 69/473/29 112/474/30 111/472/28 70/471/27 +f 68/475/31 81/476/32 112/474/30 69/473/29 +f 67/477/33 82/478/34 81/476/32 68/475/31 +f 66/479/35 83/480/36 82/481/34 67/477/33 +f 65/482/37 84/483/38 83/480/36 66/479/35 +f 64/484/39 85/485/40 84/483/38 65/482/37 +f 63/486/41 86/487/42 85/488/40 64/489/39 +f 62/490/43 87/491/44 86/487/42 63/486/41 +f 61/492/45 88/493/46 87/491/44 62/490/43 +f 60/494/47 89/495/48 88/493/46 61/492/45 +f 58/496/49 91/497/50 90/498/51 59/499/52 +f 59/499/52 90/498/51 89/495/48 60/494/47 +f 57/500/53 92/501/54 91/497/50 58/496/49 +f 56/502/55 93/503/56 92/501/54 57/500/53 +f 55/504/57 94/505/58 93/503/56 56/502/55 +f 54/506/59 95/507/60 94/505/58 55/504/57 +f 52/508/61 97/509/62 96/510/63 53/511/64 +f 53/511/64 96/510/63 95/507/60 54/506/59 +f 51/512/65 98/513/66 97/509/62 52/508/61 +f 50/514/67 99/515/68 98/513/66 51/512/65 +f 451/516/69 452/517/70 453/518/71 454/519/72 +f 455/520/73 454/519/72 453/518/71 456/521/74 +f 457/522/75 455/520/73 456/521/74 458/523/76 +f 459/524/77 457/522/75 458/523/76 460/525/78 +f 461/526/79 459/524/77 460/525/78 462/527/80 +f 463/528/81 461/526/79 462/527/80 464/529/82 +f 463/528/81 464/529/82 465/530/83 466/531/84 +f 467/532/85 466/531/84 465/530/83 468/533/86 +f 469/534/87 467/532/85 468/533/86 470/535/88 +f 471/536/89 469/534/87 470/535/88 472/537/90 +f 471/536/89 472/537/90 473/538/91 474/539/92 +f 474/539/92 473/538/91 475/540/93 476/541/94 +f 477/542/95 478/543/96 479/544/97 480/545/98 +f 476/541/94 475/540/93 478/543/96 477/542/95 +f 480/545/98 479/544/97 481/546/99 482/547/100 +f 483/548/101 482/547/100 481/546/99 484/549/102 +f 483/548/101 484/549/102 485/550/103 486/551/104 +f 487/552/105 486/551/104 485/550/103 488/553/106 +f 487/554/105 488/555/106 489/556/107 490/557/108 +f 491/558/109 490/557/108 489/556/107 492/559/110 +f 491/558/109 492/559/110 493/560/111 494/561/112 +f 494/561/112 493/560/111 495/562/113 496/563/114 +f 496/563/114 495/562/113 497/564/115 498/565/116 +f 498/565/116 497/564/115 499/566/117 500/567/118 +f 500/567/118 499/566/117 501/568/119 502/569/120 +f 502/569/120 501/568/119 503/570/121 504/571/122 +f 505/572/123 506/573/124 507/574/125 508/575/126 +f 506/573/124 504/571/122 503/570/121 507/574/125 +f 509/576/127 510/577/128 511/578/129 512/579/130 +f 505/572/123 508/575/126 511/578/129 510/577/128 +f 513/580/131 509/576/127 512/579/130 514/581/132 +f 513/580/131 514/581/132 452/517/70 451/516/69 +f 80/454/10 101/453/9 100/582/133 49/583/134 +f 1/584/135 515/585/136 516/586/137 2/587/138 +f 6/588/139 517/589/140 515/585/136 1/584/135 +f 2/587/138 516/586/137 518/590/141 3/591/142 +f 3/591/142 518/590/141 519/592/143 4/593/144 +f 4/594/144 519/595/143 520/596/145 5/597/146 +f 5/597/146 520/596/145 517/589/140 6/588/139 +f 7/598/147 521/599/148 522/600/149 8/601/150 +f 12/602/151 523/603/152 521/599/148 7/598/147 +f 8/601/150 522/600/149 524/604/153 9/605/154 +f 9/605/154 524/604/153 525/606/155 10/607/156 +f 10/608/156 525/609/155 526/610/157 11/611/158 +f 11/611/158 526/610/157 523/603/152 12/602/151 +f 13/612/159 527/613/160 528/614/161 14/615/162 +f 18/616/163 529/617/164 527/613/160 13/612/159 +f 14/615/162 528/614/161 530/618/165 15/619/166 +f 15/619/166 530/618/165 531/620/167 16/621/168 +f 16/622/168 531/623/167 532/624/169 17/625/170 +f 17/625/170 532/624/169 529/617/164 18/616/163 +f 19/626/171 533/627/172 534/628/173 20/629/174 +f 24/630/175 535/631/176 533/627/172 19/626/171 +f 20/629/174 534/628/173 536/632/177 21/633/178 +f 21/633/178 536/632/177 537/634/179 22/635/180 +f 22/636/180 537/637/179 538/638/181 23/639/182 +f 23/639/182 538/638/181 535/631/176 24/630/175 +f 25/640/183 539/641/143 540/642/145 26/643/146 +f 30/644/184 541/645/141 539/641/143 25/640/183 +f 26/643/146 540/642/145 542/646/185 27/647/186 +f 27/647/186 542/646/185 543/648/136 28/649/187 +f 28/650/187 543/651/136 544/652/137 29/653/138 +f 29/653/138 544/652/137 541/645/141 30/644/184 +f 31/654/188 545/655/155 546/656/189 32/657/190 +f 36/658/154 547/659/153 545/655/155 31/654/188 +f 32/657/190 546/656/189 548/660/191 33/661/151 +f 33/661/151 548/660/191 549/662/148 34/663/192 +f 34/664/192 549/665/148 550/666/149 35/667/193 +f 35/667/193 550/666/149 547/659/153 36/658/154 +f 37/668/168 551/669/167 552/670/194 38/671/170 +f 42/672/195 553/673/165 551/669/167 37/668/168 +f 38/671/170 552/670/194 554/674/196 39/675/197 +f 39/675/197 554/674/196 555/676/160 40/677/198 +f 40/678/198 555/679/160 556/680/161 41/681/162 +f 41/681/162 556/680/161 553/673/165 42/672/195 +f 43/682/199 557/683/179 558/684/181 44/685/200 +f 48/686/178 559/687/177 557/683/179 43/682/199 +f 44/685/200 558/684/181 560/688/176 45/689/175 +f 45/689/175 560/688/176 561/690/172 46/691/171 +f 46/692/171 561/693/172 562/694/173 47/695/201 +f 47/695/201 562/694/173 559/687/177 48/686/178 +f 563/696/202 478/543/96 475/540/93 564/697/203 +f 565/698/204 479/544/97 478/543/96 563/696/202 +f 565/698/204 566/699/205 481/546/99 479/544/97 +f 567/700/206 453/518/71 452/517/70 568/701/207 +f 564/697/203 475/540/93 473/538/91 569/702/208 +f 570/703/209 571/704/210 464/529/82 462/527/80 +f 572/705/211 573/706/212 468/533/86 465/530/83 +f 574/707/213 460/525/78 458/523/76 575/708/214 576/709/214 +f 575/708/214 458/523/76 456/521/74 577/710/215 578/711/3 +f 514/581/132 579/712/216 568/701/207 452/517/70 +f 456/521/74 453/518/71 567/700/206 577/710/215 +f 571/704/210 572/705/211 465/530/83 464/529/82 +f 49/583/134 100/582/133 99/515/68 50/514/67 +f 580/713/217 579/712/216 514/581/132 512/579/130 +f 573/706/212 581/714/218 470/535/88 468/533/86 +f 581/714/218 582/715/219 583/716/220 472/537/90 470/535/88 +f 569/702/208 473/538/91 472/537/90 583/716/220 584/717/221 +f 566/699/205 585/718/222 484/549/102 481/546/99 +f 585/718/222 586/719/223 485/550/103 484/549/102 +f 586/719/223 587/720/224 488/553/106 485/550/103 +f 587/721/224 588/722/225 489/556/107 488/555/106 +f 588/722/225 589/723/226 492/559/110 489/556/107 +f 589/723/226 590/724/227 493/560/111 492/559/110 +f 590/724/227 591/725/228 495/562/113 493/560/111 +f 591/725/228 592/726/229 593/727/230 497/564/115 495/562/113 +f 593/727/230 594/728/231 499/566/117 497/564/115 +f 594/728/231 595/729/232 501/568/119 499/566/117 +f 595/729/232 596/730/233 503/570/121 501/568/119 +f 597/731/234 598/732/235 508/575/126 507/574/125 +f 596/730/233 597/731/234 507/574/125 503/570/121 +f 599/733/236 580/713/217 512/579/130 511/578/129 +f 598/732/235 599/733/236 511/578/129 508/575/126 +f 113/734/237 600/735/238 601/736/239 114/737/240 +f 118/738/241 602/739/242 600/735/238 113/734/237 +f 114/737/240 601/736/239 603/740/243 115/741/244 +f 115/741/244 603/740/243 604/742/245 116/743/246 +f 116/744/246 604/745/245 605/746/247 117/747/248 +f 117/747/248 605/746/247 602/739/242 118/738/241 +f 119/748/249 606/749/3 607/750/250 120/751/251 +f 124/752/252 608/753/253 606/749/3 119/748/249 +f 120/751/251 607/750/250 609/754/254 121/755/255 +f 121/755/255 609/754/254 610/756/4 122/757/256 +f 122/758/256 610/759/4 611/760/257 123/761/258 +f 123/761/258 611/760/257 608/753/253 124/752/252 +f 125/762/259 612/763/260 613/764/261 126/765/262 +f 130/766/263 614/767/264 612/763/260 125/762/259 +f 126/765/262 613/764/261 615/768/265 127/769/266 +f 127/769/266 615/768/265 616/770/267 128/771/268 +f 128/772/268 616/773/267 617/774/269 129/775/270 +f 129/775/270 617/774/269 614/767/264 130/766/263 +f 131/776/271 618/777/6 619/778/272 132/779/273 +f 136/780/274 620/781/275 618/777/6 131/776/271 +f 132/779/273 619/778/272 621/782/276 133/783/277 +f 133/783/277 621/782/276 622/784/5 134/785/278 +f 134/786/278 622/787/5 623/788/279 135/789/280 +f 135/789/280 623/788/279 620/781/275 136/780/274 +f 137/790/246 624/791/245 625/792/247 138/793/281 +f 142/794/244 626/795/243 624/791/245 137/790/246 +f 138/793/281 625/792/247 627/796/242 139/797/282 +f 139/797/282 627/796/242 628/798/238 140/799/283 +f 140/800/283 628/801/238 629/802/239 141/803/284 +f 141/803/284 629/802/239 626/795/243 142/794/244 +f 143/804/256 630/805/4 631/806/257 144/807/258 +f 148/808/285 632/809/254 630/805/4 143/804/256 +f 144/807/258 631/806/257 633/810/253 145/811/286 +f 145/811/286 633/810/253 634/812/3 146/813/249 +f 146/814/249 634/815/3 635/816/250 147/817/287 +f 147/817/287 635/816/250 632/809/254 148/808/285 +f 149/818/288 636/819/267 637/820/269 150/821/289 +f 154/822/290 638/823/265 636/819/267 149/818/288 +f 150/821/289 637/820/269 639/824/264 151/825/291 +f 151/825/291 639/824/264 640/826/260 152/827/259 +f 152/828/259 640/829/260 641/830/261 153/831/292 +f 153/831/292 641/830/261 638/823/265 154/822/290 +f 155/832/278 642/833/5 643/834/279 156/835/293 +f 160/836/294 644/837/276 642/833/5 155/832/278 +f 156/835/293 643/834/279 645/838/275 157/839/295 +f 157/839/295 645/838/275 646/840/6 158/841/271 +f 158/842/271 646/843/6 647/844/272 159/845/296 +f 159/845/296 647/844/272 644/837/276 160/836/294 +f 570/703/209 462/527/80 460/525/78 574/707/213 +f 584/717/221 583/716/220 582/715/219 648/846/221 +f 575/708/214 578/711/3 649/847/3 576/709/214 +f 569/702/208 584/717/221 648/846/221 650/848/297 +f 651/849/298 569/850/208 650/851/297 652/852/299 653/853/300 +f 654/854/301 564/855/203 569/850/208 651/849/298 +f 655/856/302 563/857/202 564/855/203 654/854/301 +f 652/852/299 656/858/303 657/859/304 658/860/305 653/853/300 +f 659/861/306 565/862/204 563/857/202 655/856/302 +f 658/860/305 657/859/304 660/863/307 661/864/308 +f 662/865/309 663/866/310 664/867/311 665/868/312 +f 666/869/313 653/853/300 658/860/305 667/870/314 +f 668/871/315 651/849/298 653/853/300 666/869/313 +f 669/872/316 654/854/301 651/849/298 668/871/315 +f 580/873/217 670/874/317 671/875/318 579/876/216 +f 667/870/314 658/860/305 661/864/308 672/877/319 +f 673/878/320 655/856/302 654/854/301 669/872/316 +f 585/879/222 566/880/205 674/881/321 675/882/322 +f 676/883/323 672/877/319 661/864/308 664/867/311 +f 677/884/324 659/861/306 655/856/302 673/878/320 +f 586/885/223 585/879/222 675/882/322 678/886/325 +f 679/887/326 680/888/327 681/889/328 682/890/329 +f 683/891/330 676/883/323 664/867/311 663/866/310 +f 237/892/331 242/893/332 241/894/333 238/895/334 +f 240/896/335 271/897/336 270/898/337 209/899/338 +f 684/900/339 674/881/321 659/861/306 677/884/324 +f 236/901/340 243/902/341 242/893/332 237/892/331 +f 685/903/342 683/891/330 663/866/310 686/904/343 +f 209/899/338 270/898/337 269/905/344 210/906/345 +f 687/907/346 675/882/322 674/881/321 684/900/339 +f 235/908/347 244/909/348 243/902/341 236/901/340 +f 588/910/225 587/911/224 688/912/349 689/913/350 +f 690/914/351 691/915/352 692/916/353 693/917/354 694/918/355 +f 695/919/356 685/903/342 686/904/343 692/916/353 +f 234/920/357 245/921/358 244/909/348 235/908/347 +f 696/922/359 678/886/325 675/882/322 687/907/346 +f 232/923/360 247/924/361 246/925/362 233/926/363 +f 697/927/364 695/919/356 692/916/353 691/915/352 +f 210/906/345 269/905/344 268/928/365 211/929/366 +f 698/930/367 688/931/349 678/886/325 696/922/359 +f 231/932/368 248/933/369 247/924/361 232/923/360 +f 590/934/227 589/935/226 699/936/370 700/937/371 +f 681/938/328 680/939/327 701/940/372 702/941/373 +f 703/942/374 697/927/364 691/915/352 702/941/373 +f 211/929/366 268/928/365 267/943/375 212/944/376 +f 704/945/377 689/913/350 688/912/349 698/946/367 +f 230/947/378 249/948/379 248/933/369 231/932/368 +f 591/949/228 590/934/227 700/937/371 705/950/380 +f 706/951/381 701/940/372 680/939/327 707/952/382 +f 708/953/383 703/942/374 702/941/373 701/940/372 +f 212/944/376 267/943/375 266/954/384 213/955/385 +f 709/956/386 699/936/370 689/913/350 704/945/377 +f 229/957/387 250/958/388 249/948/379 230/947/378 +f 710/959/389 708/953/383 701/940/372 706/951/381 +f 213/955/385 266/954/384 265/960/390 214/961/391 +f 711/962/392 700/937/371 699/936/370 709/956/386 +f 228/963/393 251/964/394 250/958/388 229/957/387 +f 712/965/395 710/959/389 706/951/381 713/966/396 +f 215/967/397 264/968/398 263/969/399 216/970/400 +f 711/962/392 714/971/401 705/950/380 700/937/371 +f 214/961/391 265/960/390 264/972/398 215/973/397 +f 715/974/402 716/975/403 717/976/404 718/977/405 +f 719/978/406 720/979/407 721/980/408 722/981/409 +f 723/982/410 712/965/395 713/966/396 724/983/411 +f 216/970/400 263/969/399 262/984/412 217/985/413 +f 238/895/334 241/894/333 272/986/414 239/987/415 +f 725/988/416 726/989/417 705/950/380 714/971/401 +f 227/990/418 252/991/419 251/964/394 228/963/393 +f 727/992/420 715/974/402 718/977/405 728/993/421 +f 721/980/408 720/979/407 727/992/420 728/993/421 +f 729/994/422 723/982/410 724/983/411 730/995/423 +f 217/985/413 262/984/412 261/996/424 218/997/425 +f 725/988/416 731/998/426 717/976/404 726/989/417 +f 226/999/427 253/1000/428 252/991/419 227/990/418 +f 732/1001/429 729/994/422 730/995/423 722/981/409 +f 218/997/425 261/1002/424 260/1003/430 219/1004/431 +f 731/998/426 733/1005/432 718/977/405 717/976/404 +f 225/1006/433 254/1007/434 253/1000/428 226/999/427 +f 233/926/363 246/925/362 245/921/358 234/920/357 +f 734/1008/435 732/1001/429 722/981/409 721/980/408 +f 219/1004/431 260/1003/430 259/1009/436 220/1010/437 +f 733/1005/432 735/1011/438 728/993/421 718/977/405 +f 224/1012/439 255/1013/440 254/1007/434 225/1006/433 +f 735/1011/438 734/1008/435 721/980/408 728/993/421 +f 239/987/415 272/986/414 271/897/336 240/896/335 +f 223/1014/441 256/1015/442 255/1013/440 224/1012/439 +f 220/1010/437 259/1009/436 258/1016/443 221/1017/444 +f 222/1018/445 257/1019/446 256/1015/442 223/1014/441 +f 221/1017/444 258/1016/443 257/1019/446 222/1018/445 +f 161/1020/447 736/1021/448 737/1022/449 162/1023/450 +f 166/1024/451 738/1025/452 736/1021/448 161/1020/447 +f 162/1023/450 737/1022/449 739/1026/453 163/1027/454 +f 163/1027/454 739/1026/453 740/1028/455 164/1029/456 +f 164/1030/456 740/1031/455 741/1032/457 165/1033/458 +f 165/1033/458 741/1032/457 738/1025/452 166/1024/451 +f 167/1034/459 742/1035/460 743/1036/461 168/1037/462 +f 172/1038/463 744/1039/464 742/1035/460 167/1034/459 +f 168/1037/462 743/1036/461 745/1040/465 169/1041/466 +f 169/1041/466 745/1040/465 746/1042/467 170/1043/468 +f 170/1044/468 746/1045/467 747/1046/469 171/1047/470 +f 171/1047/470 747/1046/469 744/1039/464 172/1038/463 +f 173/1048/471 748/1049/472 749/1050/473 174/1051/474 +f 178/1052/475 750/1053/476 748/1049/472 173/1048/471 +f 174/1051/474 749/1050/473 751/1054/477 175/1055/478 +f 175/1055/478 751/1054/477 752/1056/479 176/1057/480 +f 176/1058/480 752/1059/479 753/1060/481 177/1061/482 +f 177/1061/482 753/1060/481 750/1053/476 178/1052/475 +f 179/1062/483 754/1063/484 755/1064/485 180/1065/486 +f 184/1066/487 756/1067/488 754/1063/484 179/1062/483 +f 180/1065/486 755/1064/485 757/1068/489 181/1069/490 +f 181/1069/490 757/1068/489 758/1070/491 182/1071/492 +f 182/1072/492 758/1073/491 759/1074/493 183/1075/494 +f 183/1075/494 759/1074/493 756/1067/488 184/1066/487 +f 185/1076/495 760/1077/455 761/1078/496 186/1079/497 +f 190/1080/454 762/1081/453 760/1077/455 185/1076/495 +f 186/1079/497 761/1078/496 763/1082/498 187/1083/451 +f 187/1083/451 763/1082/498 764/1084/448 188/1085/447 +f 188/1086/447 764/1087/448 765/1088/449 189/1089/450 +f 189/1089/450 765/1088/449 762/1081/453 190/1080/454 +f 191/1090/499 766/1091/467 767/1092/469 192/1093/500 +f 196/1094/501 768/1095/502 766/1091/467 191/1090/499 +f 192/1093/500 767/1092/469 769/1096/503 193/1097/504 +f 193/1097/504 769/1096/503 770/1098/460 194/1099/505 +f 194/1100/505 770/1101/460 771/1102/461 195/1103/506 +f 195/1103/506 771/1102/461 768/1095/502 196/1094/501 +f 197/1104/507 772/1105/479 773/1106/508 198/1107/509 +f 202/1108/510 774/1109/511 772/1105/479 197/1104/507 +f 198/1107/509 773/1106/508 775/1110/512 199/1111/513 +f 199/1111/513 775/1110/512 776/1112/472 200/1113/514 +f 200/1114/514 776/1115/472 777/1116/515 201/1117/516 +f 201/1117/516 777/1116/515 774/1109/511 202/1108/510 +f 203/1118/517 778/1119/491 779/1120/493 204/1121/518 +f 208/1122/490 780/1123/519 778/1119/491 203/1118/517 +f 204/1121/518 779/1120/493 781/1124/520 205/1125/521 +f 205/1125/521 781/1124/520 782/1126/522 206/1127/483 +f 206/1128/483 782/1129/522 783/1130/523 207/1131/524 +f 207/1131/524 783/1130/523 780/1123/519 208/1122/490 +f 648/846/221 656/858/303 652/852/299 650/851/297 +f 784/1132/1 785/1133/1 681/938/328 786/1134/1 +f 661/864/308 660/863/307 665/868/312 664/867/311 +f 787/1135/525 686/904/343 663/866/310 662/865/309 +f 681/938/328 702/941/373 691/915/352 690/914/351 786/1134/1 +f 788/1136/526 789/1137/527 724/983/411 713/966/396 +f 706/951/381 707/952/382 788/1136/526 713/966/396 +f 587/1138/224 586/885/223 678/886/325 688/931/349 +f 589/935/226 588/910/225 689/913/350 699/936/370 +f 790/1139/528 592/1140/229 591/949/228 705/950/380 726/989/417 +f 789/1137/527 791/1141/529 730/995/423 724/983/411 +f 716/975/403 790/1139/528 726/989/417 717/976/404 +f 791/1141/529 719/978/406 722/981/409 730/995/423 +f 273/1142/530 792/1143/531 793/1144/532 274/1145/533 +f 278/1146/534 794/1147/535 792/1143/531 273/1142/530 +f 274/1145/533 793/1144/532 795/1148/536 275/1149/537 +f 275/1149/537 795/1148/536 796/1150/538 276/1151/539 +f 276/1152/539 796/1153/538 797/1154/540 277/1155/541 +f 277/1155/541 797/1154/540 794/1147/535 278/1146/534 +f 279/1156/542 798/1157/2 799/1158/543 280/1159/544 +f 284/1160/545 800/1161/546 798/1157/2 279/1156/542 +f 280/1159/544 799/1158/543 801/1162/547 281/1163/548 +f 281/1163/548 801/1162/547 802/1164/1 282/1165/549 +f 282/1166/549 802/1167/1 803/1168/550 283/1169/551 +f 283/1169/551 803/1168/550 800/1161/546 284/1160/545 +f 285/1170/552 804/1171/553 805/1172/554 286/1173/555 +f 290/1174/556 806/1175/557 804/1171/553 285/1170/552 +f 286/1173/555 805/1172/554 807/1176/558 287/1177/559 +f 287/1177/559 807/1176/558 808/1178/560 288/1179/561 +f 288/1180/561 808/1181/560 809/1182/562 289/1183/563 +f 289/1183/563 809/1182/562 806/1175/557 290/1174/556 +f 291/1184/564 810/1185/5 811/1186/565 292/1187/566 +f 296/1188/567 812/1189/568 810/1185/5 291/1184/564 +f 292/1187/566 811/1186/565 813/1190/569 293/1191/570 +f 293/1191/570 813/1190/569 814/1192/6 294/1193/571 +f 294/1194/571 814/1195/6 815/1196/572 295/1197/573 +f 295/1197/573 815/1196/572 812/1189/568 296/1188/567 +f 297/1198/539 816/1199/538 817/1200/540 298/1201/574 +f 302/1202/575 818/1203/536 816/1199/538 297/1198/539 +f 298/1201/574 817/1200/540 819/1204/535 299/1205/576 +f 299/1205/576 819/1204/535 820/1206/531 300/1207/530 +f 300/1208/530 820/1209/531 821/1210/532 301/1211/577 +f 301/1211/577 821/1210/532 818/1203/536 302/1202/575 +f 303/1212/578 822/1213/1 823/1214/550 304/1215/551 +f 308/1216/579 824/1217/547 822/1213/1 303/1212/578 +f 304/1215/551 823/1214/550 825/1218/546 305/1219/580 +f 305/1219/580 825/1218/546 826/1220/2 306/1221/581 +f 306/1222/581 826/1223/2 827/1224/543 307/1225/544 +f 307/1225/544 827/1224/543 824/1217/547 308/1216/579 +f 309/1226/561 828/1227/560 829/1228/562 310/1229/582 +f 314/1230/583 830/1231/558 828/1227/560 309/1226/561 +f 310/1229/582 829/1228/562 831/1232/557 311/1233/584 +f 311/1233/584 831/1232/557 832/1234/553 312/1235/552 +f 312/1236/552 832/1237/553 833/1238/554 313/1239/585 +f 313/1239/585 833/1238/554 830/1231/558 314/1230/583 +f 315/1240/586 834/1241/6 835/1242/572 316/1243/587 +f 320/1244/588 836/1245/569 834/1241/6 315/1240/586 +f 316/1243/587 835/1242/572 837/1246/568 317/1247/589 +f 317/1247/589 837/1246/568 838/1248/5 318/1249/590 +f 318/1250/590 838/1251/5 839/1252/565 319/1253/566 +f 319/1253/566 839/1252/565 836/1245/569 320/1244/588 +f 694/918/355 784/1132/1 786/1134/1 690/914/351 +f 840/1254/591 841/1255/592 842/1256/593 843/1257/594 844/1258/594 +f 565/862/204 659/861/306 674/881/321 566/880/205 +f 845/1259/595 707/1260/382 680/888/327 679/887/326 +f 693/917/354 692/916/353 686/904/343 787/1135/525 +f 784/1132/1 844/1258/594 843/1257/594 785/1261/1 +f 325/1262/596 846/1263/597 847/1264/598 326/1265/599 +f 324/1266/600 848/1267/601 846/1263/597 325/1262/596 +f 323/1268/602 849/1269/603 848/1270/601 324/1271/600 +f 322/1272/604 850/1273/605 849/1269/603 323/1268/602 +f 326/1265/599 847/1264/598 851/1274/606 321/1275/607 +f 321/1275/607 851/1274/606 850/1273/605 322/1272/604 +f 331/1276/608 852/1277/605 853/1278/609 332/1279/610 +f 330/1280/607 854/1281/606 852/1277/605 331/1276/608 +f 329/1282/611 855/1283/612 854/1284/606 330/1285/607 +f 328/1286/613 856/1287/614 855/1283/612 329/1282/611 +f 332/1279/610 853/1278/609 857/1288/615 327/1289/616 +f 327/1289/616 857/1288/615 856/1287/614 328/1286/613 +f 337/1290/617 858/1291/618 859/1292/619 338/1293/620 +f 336/1294/621 860/1295/622 858/1291/618 337/1290/617 +f 335/1296/623 861/1297/624 860/1298/622 336/1299/621 +f 334/1300/625 862/1301/626 861/1297/624 335/1296/623 +f 338/1293/620 859/1292/619 863/1302/627 333/1303/628 +f 333/1303/628 863/1302/627 862/1301/626 334/1300/625 +f 343/1304/629 864/1305/630 865/1306/631 344/1307/632 +f 342/1308/633 866/1309/634 864/1305/630 343/1304/629 +f 341/1310/635 867/1311/636 866/1312/634 342/1313/633 +f 340/1314/637 868/1315/638 867/1311/636 341/1310/635 +f 344/1307/632 865/1306/631 869/1316/639 339/1317/640 +f 339/1317/640 869/1316/639 868/1315/638 340/1314/637 +f 349/1318/641 870/1319/642 871/1320/643 350/1321/644 +f 348/1322/645 872/1323/646 870/1319/642 349/1318/641 +f 347/1324/647 873/1325/648 872/1326/646 348/1327/645 +f 346/1328/649 874/1329/650 873/1325/648 347/1324/647 +f 350/1321/644 871/1320/643 875/1330/651 345/1331/652 +f 345/1331/652 875/1330/651 874/1329/650 346/1328/649 +f 363/1332/653 400/1333/654 399/1334/655 364/1335/656 +f 364/1335/656 399/1334/655 398/1336/657 365/1337/658 +f 362/1338/659 401/1339/660 400/1333/654 363/1332/653 +f 365/1337/658 398/1336/657 397/1340/661 366/1341/662 +f 381/1342/663 414/1343/664 413/1344/665 382/1345/666 +f 876/1346/667 877/1347/668 878/1348/669 879/1349/670 +f 366/1341/662 397/1340/661 396/1350/671 367/1351/672 +f 880/1352/673 876/1346/667 879/1349/670 881/1353/674 +f 361/1354/675 402/1355/676 401/1339/660 362/1338/659 +f 877/1347/668 882/1356/677 883/1357/678 878/1348/669 +f 375/1358/679 388/1359/680 387/1360/681 376/1361/682 +f 367/1351/672 396/1350/671 395/1362/683 368/1363/684 +f 884/1364/685 880/1352/673 881/1353/674 885/1365/686 +f 360/1366/687 403/1367/688 402/1355/676 361/1354/675 +f 882/1356/677 886/1368/689 887/1369/690 883/1357/678 +f 368/1363/684 395/1362/683 394/1370/691 369/1371/692 +f 888/1372/693 884/1364/685 885/1365/686 671/875/318 +f 359/1373/694 404/1374/695 403/1375/688 360/1366/687 +f 886/1368/689 889/1376/696 890/1377/697 887/1369/690 +f 881/1353/674 567/1378/206 568/1379/207 885/1365/686 +f 843/1257/594 842/1256/593 682/890/329 681/889/328 785/1261/1 +f 369/1371/692 394/1370/691 393/1380/698 370/1381/699 +f 888/1372/693 671/875/318 670/874/317 891/1382/700 +f 380/1383/701 383/1384/702 414/1343/664 381/1342/663 +f 358/1385/703 405/1386/704 404/1374/695 359/1373/694 +f 889/1376/696 892/1387/705 893/1388/706 890/1377/697 +f 577/1389/215 879/1349/670 878/1348/669 894/1390/707 895/1391/3 +f 671/875/318 885/1365/686 568/1379/207 579/876/216 +f 356/1392/708 407/1393/709 406/1394/710 357/1395/711 +f 896/1396/712 891/1382/700 670/874/317 897/1397/713 +f 357/1398/711 406/1399/710 405/1386/704 358/1385/703 +f 892/1387/705 898/1400/714 899/1401/715 893/1388/706 +f 370/1381/699 393/1380/698 392/1402/716 371/1403/717 +f 896/1396/712 897/1397/713 900/1404/718 901/1405/719 +f 355/1406/720 408/1407/721 407/1393/709 356/1392/708 +f 898/1400/714 902/1408/722 841/1255/592 899/1401/715 +f 371/1403/717 392/1402/716 391/1409/723 372/1410/724 +f 901/1405/719 900/1404/718 903/1411/725 904/1412/726 +f 354/1413/727 409/1414/728 408/1407/721 355/1406/720 +f 902/1408/722 905/1415/729 842/1256/593 841/1255/592 +f 580/873/217 599/1416/236 897/1397/713 670/874/317 +f 372/1410/724 391/1409/723 390/1417/730 373/1418/731 +f 904/1412/726 903/1411/725 906/1419/732 907/1420/733 +f 353/1421/734 410/1422/735 409/1414/728 354/1413/727 +f 905/1415/729 908/1423/736 682/890/329 842/1256/593 +f 599/1416/236 598/1424/235 900/1404/718 897/1397/713 +f 373/1418/731 390/1417/730 389/1425/737 374/1426/738 +f 907/1427/733 906/1428/732 909/1429/739 910/1430/740 +f 352/1431/741 411/1432/742 410/1422/735 353/1421/734 +f 908/1423/736 911/1433/743 679/887/326 682/890/329 +f 374/1426/738 389/1425/737 388/1359/680 375/1358/679 +f 910/1430/740 909/1429/739 912/1434/744 913/1435/745 +f 376/1361/682 387/1360/681 386/1436/746 377/1437/747 +f 911/1433/743 914/1438/748 845/1259/595 679/887/326 +f 597/1439/234 596/1440/233 906/1419/732 903/1411/725 +f 377/1437/747 386/1436/746 385/1441/749 378/1442/750 +f 913/1435/745 912/1434/744 915/1443/751 916/1444/752 +f 351/1445/753 412/1446/754 411/1432/742 352/1431/741 +f 914/1438/748 917/1447/755 918/1448/756 845/1259/595 +f 378/1442/750 385/1441/749 384/1449/757 379/1450/758 +f 916/1444/752 915/1443/751 919/1451/759 920/1452/760 +f 382/1345/666 413/1344/665 412/1446/754 351/1445/753 +f 379/1450/758 384/1449/757 383/1384/702 380/1383/701 +f 917/1447/755 921/1453/761 922/1454/762 918/1448/756 +f 595/1455/232 594/1456/231 912/1434/744 909/1429/739 +f 920/1452/760 919/1451/759 923/1457/763 924/1458/764 +f 921/1453/761 925/1459/765 926/1460/766 922/1454/762 +f 594/1456/231 593/1461/230 915/1443/751 912/1434/744 +f 924/1458/764 923/1457/763 927/1462/767 928/1463/768 +f 929/1464/769 930/1465/770 926/1460/766 925/1459/765 +f 593/1461/230 592/1466/229 790/1467/528 919/1451/759 915/1443/751 +f 928/1463/768 927/1462/767 931/1468/771 932/1469/772 +f 932/1469/772 931/1468/771 933/1470/773 934/1471/774 +f 934/1471/774 933/1470/773 930/1465/770 929/1464/769 +f 790/1467/528 716/1472/403 923/1457/763 919/1451/759 +f 926/1460/766 791/1473/529 789/1474/527 922/1454/762 +f 716/1472/403 715/1475/402 927/1462/767 923/1457/763 +f 930/1465/770 719/1476/406 791/1473/529 926/1460/766 +f 715/1475/402 727/1477/420 931/1468/771 927/1462/767 +f 727/1477/420 720/1478/407 933/1470/773 931/1468/771 +f 720/1478/407 719/1476/406 930/1465/770 933/1470/773 +f 890/1377/697 935/1479/775 936/1480/776 887/1369/690 +f 937/1481/777 899/1401/715 841/1255/592 840/1254/591 +f 577/1389/215 567/1378/206 881/1353/674 879/1349/670 +f 922/1454/762 789/1474/527 788/1482/526 918/1448/756 +f 596/1483/233 595/1455/232 909/1429/739 906/1428/732 +f 598/1424/235 597/1439/234 903/1411/725 900/1404/718 +f 887/1369/690 936/1480/776 938/1484/778 883/1357/678 +f 415/1485/779 939/1486/780 940/1487/781 416/1488/782 +f 420/1489/783 941/1490/784 939/1486/780 415/1485/779 +f 416/1488/782 940/1487/781 942/1491/785 417/1492/786 +f 417/1492/786 942/1491/785 943/1493/787 418/1494/788 +f 418/1495/788 943/1496/787 944/1497/789 419/1498/790 +f 419/1498/790 944/1497/789 941/1490/784 420/1489/783 +f 421/1499/791 945/1500/2 946/1501/792 422/1502/793 +f 426/1503/794 947/1504/795 945/1500/2 421/1499/791 +f 422/1502/793 946/1501/792 948/1505/796 423/1506/797 +f 423/1506/797 948/1505/796 949/1507/1 424/1508/798 +f 424/1509/798 949/1510/1 950/1511/799 425/1512/800 +f 425/1512/800 950/1511/799 947/1504/795 426/1503/794 +f 427/1513/801 951/1514/802 952/1515/803 428/1516/804 +f 432/1517/805 953/1518/806 951/1514/802 427/1513/801 +f 428/1516/804 952/1515/803 954/1519/807 429/1520/808 +f 429/1520/808 954/1519/807 955/1521/809 430/1522/810 +f 430/1523/810 955/1524/809 956/1525/811 431/1526/812 +f 431/1526/812 956/1525/811 953/1518/806 432/1517/805 +f 433/1527/813 957/1528/4 958/1529/814 434/1530/815 +f 438/1531/816 959/1532/817 957/1528/4 433/1527/813 +f 434/1530/815 958/1529/814 960/1533/818 435/1534/819 +f 435/1534/819 960/1533/818 961/1535/3 436/1536/820 +f 436/1537/820 961/1538/3 962/1539/821 437/1540/822 +f 437/1540/822 962/1539/821 959/1532/817 438/1531/816 +f 439/1541/810 963/1542/809 964/1543/811 440/1544/812 +f 444/1545/808 965/1546/807 963/1542/809 439/1541/810 +f 440/1544/812 964/1543/811 966/1547/806 441/1548/823 +f 441/1548/823 966/1547/806 967/1549/802 442/1550/801 +f 442/1551/801 967/1552/802 968/1553/803 443/1554/804 +f 443/1554/804 968/1553/803 965/1546/807 444/1545/808 +f 445/1555/824 969/1556/3 970/1557/821 446/1558/822 +f 450/1559/825 971/1560/818 969/1556/3 445/1555/824 +f 446/1558/822 970/1557/821 972/1561/817 447/1562/826 +f 447/1562/826 972/1561/817 973/1563/4 448/1564/827 +f 448/1565/827 973/1566/4 974/1567/814 449/1568/828 +f 449/1568/828 974/1567/814 971/1560/818 450/1559/825 +f 975/1569/829 935/1479/775 890/1377/697 893/1388/706 +f 918/1448/756 788/1482/526 707/1260/382 845/1259/595 +f 894/1390/707 878/1348/669 883/1357/678 938/1484/778 976/1570/707 +f 937/1481/777 975/1569/829 893/1388/706 899/1401/715 +f 895/1391/3 894/1390/707 976/1570/707 649/1571/3 +f 577/1389/215 895/1391/3 649/1571/3 578/1572/3 +f 665/868/312 660/863/307 977/1573/830 978/1574/831 +f 694/918/355 693/917/354 979/1575/832 980/1576/833 +f 656/858/303 648/846/221 582/1577/219 981/1578/834 +f 660/863/307 657/859/304 982/1579/835 977/1573/830 +f 784/1132/1 694/918/355 980/1576/833 +f 693/917/354 787/1135/525 983/1580/836 979/1575/832 +f 657/859/304 656/858/303 981/1578/834 982/1579/835 +f 787/1135/525 662/865/309 984/1581/837 983/1580/836 +f 662/865/309 665/868/312 978/1574/831 984/1581/837 +f 582/1577/219 581/1582/218 985/1583/838 981/1578/834 +f 977/1573/830 986/1584/839 987/1585/840 978/1574/831 +f 979/1575/832 988/1586/841 989/1587/842 980/1576/833 +f 980/1576/833 989/1587/842 784/1132/1 +f 982/1579/835 990/1588/843 986/1584/839 977/1573/830 +f 983/1580/836 991/1589/844 988/1586/841 979/1575/832 +f 987/1585/840 992/1590/845 993/1591/846 994/1592/847 +f 981/1578/834 985/1583/838 990/1588/843 982/1579/835 +f 984/1581/837 994/1592/847 991/1589/844 983/1580/836 +f 985/1583/838 995/1593/848 996/1594/849 990/1588/843 +f 994/1592/847 993/1591/846 997/1595/850 991/1589/844 +f 581/1582/218 573/1596/212 995/1593/848 985/1583/838 +f 986/1584/839 998/1597/851 992/1590/845 987/1585/840 +f 988/1586/841 999/1598/852 1000/1599/853 989/1587/842 +f 989/1587/842 1000/1599/853 784/1132/1 +f 990/1588/843 996/1594/849 998/1597/851 986/1584/839 +f 991/1589/844 997/1595/850 999/1598/852 988/1586/841 +f 992/1590/845 1001/1600/854 1002/1601/855 993/1591/846 +f 997/1595/850 1003/1602/856 1004/1603/857 999/1598/852 +f 1001/1600/854 1005/1604/858 1006/1605/859 1002/1601/855 +f 995/1593/848 1007/1606/860 1008/1607/861 996/1594/849 +f 993/1591/846 1002/1601/855 1003/1602/856 997/1595/850 +f 573/1596/212 572/1608/211 1007/1606/860 995/1593/848 +f 998/1597/851 1009/1609/862 1001/1600/854 992/1590/845 +f 999/1598/852 1004/1603/857 1010/1610/863 1000/1599/853 +f 1000/1599/853 1010/1610/863 784/1132/1 +f 996/1594/849 1008/1607/861 1009/1609/862 998/1597/851 +f 1008/1607/861 1011/1611/864 1012/1612/865 1009/1609/862 +f 1003/1602/856 1013/1613/866 1014/1614/867 1004/1603/857 +f 1005/1604/858 1015/1615/868 1016/1616/869 1006/1605/859 +f 1007/1606/860 1017/1617/870 1011/1611/864 1008/1607/861 +f 1002/1601/855 1006/1605/859 1013/1613/866 1003/1602/856 +f 572/1608/211 571/1618/210 1017/1617/870 1007/1606/860 +f 1009/1609/862 1012/1612/865 1005/1604/858 1001/1600/854 +f 1004/1603/857 1014/1614/867 1018/1619/871 1010/1610/863 +f 1010/1610/863 1018/1619/871 784/1132/1 +f 1014/1614/867 1019/1620/872 1020/1621/873 1018/1619/871 +f 1018/1619/871 1020/1621/873 784/1132/1 +f 1011/1611/864 1021/1622/874 1022/1623/875 1012/1612/865 +f 1013/1613/866 1023/1624/876 1019/1620/872 1014/1614/867 +f 1015/1615/868 1024/1625/877 1025/1626/878 1016/1616/869 +f 1017/1617/870 1026/1627/879 1021/1622/874 1011/1611/864 +f 1006/1605/859 1016/1616/869 1023/1624/876 1013/1613/866 +f 571/1618/210 570/1628/209 1026/1627/879 1017/1617/870 +f 1012/1612/865 1022/1623/875 1015/1615/868 1005/1604/858 +f 570/1628/209 574/1629/213 1027/1630/880 1026/1627/879 +f 1022/1623/875 1028/1631/881 1024/1625/877 1015/1615/868 +f 1019/1620/872 1029/1632/882 1030/1633/883 1020/1621/873 +f 1020/1621/873 1030/1633/883 784/1132/1 +f 1021/1622/874 1031/1634/884 1028/1631/881 1022/1623/875 +f 1023/1624/876 1032/1635/885 1029/1632/882 1019/1620/872 +f 1024/1625/877 1033/1636/886 1034/1637/887 1025/1626/878 +f 1026/1627/879 1027/1630/880 1031/1634/884 1021/1622/874 +f 1016/1616/869 1025/1626/878 1032/1635/885 1023/1624/876 +f 1025/1626/878 1034/1637/887 1035/1638/888 1032/1635/885 +f 574/1629/213 576/1639/214 1036/1640/889 1027/1630/880 +f 1028/1631/881 1037/1641/890 1033/1636/886 1024/1625/877 +f 1029/1632/882 1038/1642/891 1039/1643/892 1030/1633/883 +f 1030/1633/883 1039/1643/892 784/1132/1 +f 1031/1634/884 1040/1644/893 1037/1641/890 1028/1631/881 +f 1032/1635/885 1035/1638/888 1038/1642/891 1029/1632/882 +f 1027/1630/880 1036/1640/889 1040/1644/893 1031/1634/884 +f 1037/1641/890 1040/1644/893 938/1645/778 936/1646/776 +f 1038/1642/891 1035/1638/888 937/1647/777 840/1648/591 +f 1040/1644/893 1036/1640/889 976/1649/707 938/1645/778 +f 1035/1638/888 1034/1637/887 975/1650/829 937/1647/777 +f 1034/1637/887 1033/1636/886 935/1651/775 975/1650/829 +f 1036/1640/889 576/1639/214 649/1652/3 976/1649/707 +f 1033/1636/886 1037/1641/890 936/1646/776 935/1651/775 +f 1039/1643/892 1038/1642/891 840/1648/591 844/1653/594 +f 784/1132/1 1039/1643/892 844/1653/594 +f 978/1574/831 987/1585/840 994/1592/847 984/1581/837 diff --git a/mods/pipeworks/models/pipeworks_pipe_5_lowpoly.obj b/mods/pipeworks/models/pipeworks_pipe_5_lowpoly.obj new file mode 100644 index 00000000..9c6bf3d7 --- /dev/null +++ b/mods/pipeworks/models/pipeworks_pipe_5_lowpoly.obj @@ -0,0 +1,461 @@ +# Blender v2.78 (sub 0) OBJ File: 'pipe-master-lowpoly.blend' +# www.blender.org +o Cylinder.000_Cylinder.000_None_pipeworks_pipe_plain.png.000 +v -0.051777 0.051777 0.125000 +v 0.468750 0.051777 0.125000 +v 0.468750 0.125000 0.051777 +v 0.051777 0.125000 0.051777 +v -0.051777 0.125000 0.051777 +v -0.088388 0.088388 0.088388 +v -0.125000 -0.051777 0.051777 +v -0.125000 0.051777 0.051777 +v -0.125000 0.051777 -0.468750 +v -0.125000 -0.051777 -0.468750 +v -0.125000 -0.051777 -0.051777 +v -0.051777 -0.051777 0.125000 +v 0.051777 -0.051777 0.125000 +v 0.468750 -0.051777 0.125000 +v -0.051777 0.125000 -0.468750 +v -0.125000 -0.468750 0.051777 +v -0.051777 -0.468750 0.125000 +v 0.051777 0.125000 -0.051777 +v 0.051777 0.125000 -0.468750 +v 0.500000 -0.156250 -0.064721 +v 0.500000 -0.064721 -0.156250 +v 0.500000 0.064721 -0.156250 +v 0.500000 0.156250 -0.064721 +v 0.500000 0.156250 0.064721 +v 0.500000 0.064721 0.156250 +v 0.500000 -0.064721 0.156250 +v 0.500000 -0.156250 0.064721 +v 0.468750 -0.064721 -0.156250 +v 0.468750 -0.156250 -0.064721 +v 0.468750 -0.156250 0.064721 +v 0.468750 -0.064721 0.156250 +v 0.468750 0.064721 0.156250 +v 0.468750 0.156250 0.064721 +v 0.468750 0.156250 -0.064721 +v 0.468750 0.064721 -0.156250 +v 0.156250 -0.500000 0.064721 +v 0.064721 -0.500000 0.156250 +v -0.064721 -0.500000 0.156250 +v -0.156250 -0.500000 0.064721 +v -0.156250 -0.500000 -0.064721 +v -0.064721 -0.500000 -0.156250 +v 0.064721 -0.500000 -0.156250 +v 0.156250 -0.500000 -0.064721 +v 0.064721 -0.468750 0.156250 +v 0.156250 -0.468750 0.064721 +v 0.156250 -0.468750 -0.064721 +v 0.064721 -0.468750 -0.156250 +v -0.064721 -0.468750 -0.156250 +v -0.156250 -0.468750 -0.064721 +v -0.156250 -0.468750 0.064721 +v -0.064721 -0.468750 0.156250 +v 0.064721 -0.156250 -0.468750 +v 0.156250 -0.064721 -0.468750 +v 0.156250 0.064721 -0.468750 +v 0.064721 0.156250 -0.468750 +v -0.064721 0.156250 -0.468750 +v -0.156250 0.064721 -0.468750 +v -0.156250 -0.064721 -0.468750 +v -0.064721 -0.156250 -0.468750 +v 0.156250 -0.064721 -0.500000 +v 0.064721 -0.156250 -0.500000 +v -0.064721 -0.156250 -0.500000 +v -0.156250 -0.064721 -0.500000 +v -0.156250 0.064721 -0.500000 +v -0.064721 0.156250 -0.500000 +v 0.064721 0.156250 -0.500000 +v 0.156250 0.064721 -0.500000 +v -0.125000 -0.051777 0.051777 +v -0.125000 -0.051777 -0.051777 +v -0.125000 -0.468750 -0.051777 +v -0.125000 -0.468750 0.051777 +v 0.125000 -0.468750 0.051777 +v 0.125000 -0.468750 -0.051777 +v 0.125000 -0.125000 -0.051777 +v 0.125000 -0.125000 0.051777 +v 0.051777 -0.468750 -0.125000 +v 0.051777 -0.125000 -0.125000 +v 0.088388 -0.088388 -0.088388 +v -0.051777 -0.468750 -0.125000 +v -0.051777 -0.125000 -0.125000 +v 0.468750 -0.125000 -0.051777 +v 0.468750 -0.051777 -0.125000 +v 0.468750 0.051777 -0.125000 +v 0.468750 0.125000 -0.051777 +v 0.468750 0.125000 0.051777 +v 0.468750 0.051777 0.125000 +v 0.468750 -0.051777 0.125000 +v 0.468750 -0.125000 0.051777 +v 0.051777 0.125000 -0.468750 +v 0.051777 0.125000 -0.051777 +v 0.125000 0.051777 -0.125000 +v 0.125000 0.051777 -0.468750 +v -0.051777 -0.125000 -0.468750 +v -0.125000 -0.051777 -0.468750 +v 0.051777 -0.051777 0.125000 +v 0.051777 0.125000 0.051777 +v 0.125000 -0.051777 -0.125000 +v 0.051777 -0.468750 0.125000 +v -0.051777 -0.468750 0.125000 +v 0.125000 -0.051777 -0.468750 +v 0.051777 -0.125000 -0.468750 +v -0.125000 0.051777 -0.468750 +v -0.051777 0.125000 -0.468750 +v -0.051777 -0.051777 0.125000 +vt 0.3438 0.8906 +vt 0.2500 0.9844 +vt 0.1250 0.9844 +vt 0.0312 0.8906 +vt 0.0312 0.7656 +vt 0.1250 0.6719 +vt 0.2500 0.6719 +vt 0.3438 0.7656 +vt 0.6250 0.9844 +vt 0.7188 0.8906 +vt 0.7188 0.7656 +vt 0.6250 0.6719 +vt 0.5000 0.6719 +vt 0.4062 0.7656 +vt 0.4062 0.8906 +vt 0.5000 0.9844 +vt 0.2500 0.9844 +vt 0.3438 0.8906 +vt 0.3438 0.7656 +vt 0.2500 0.6719 +vt 0.1250 0.6719 +vt 0.0312 0.7656 +vt 0.0312 0.8906 +vt 0.1250 0.9844 +vt 0.7188 0.8906 +vt 0.6250 0.9844 +vt 0.5000 0.9844 +vt 0.4062 0.8906 +vt 0.4062 0.7656 +vt 0.5000 0.6719 +vt 0.6250 0.6719 +vt 0.7188 0.7656 +vt 0.7188 0.8906 +vt 0.6250 0.9844 +vt 0.5000 0.9844 +vt 0.4062 0.8906 +vt 0.4062 0.7656 +vt 0.5000 0.6719 +vt 0.6250 0.6719 +vt 0.7188 0.7656 +vt 0.2500 0.9844 +vt 0.3438 0.8906 +vt 0.3438 0.7656 +vt 0.2500 0.6719 +vt 0.1250 0.6719 +vt 0.0312 0.7656 +vt 0.0312 0.8906 +vt 0.1250 0.9844 +vt 0.7500 0.2344 +vt 0.7500 0.5156 +vt 0.6250 0.5156 +vt 0.6250 0.2969 +vt 0.6250 0.2344 +vt 0.6875 0.2188 +vt 0.8750 0.2656 +vt 0.7500 0.2656 +vt 0.7500 0.0156 +vt 0.8750 0.0156 +vt 0.8750 0.2344 +vt 0.8750 0.2656 +vt 0.8750 0.2969 +vt 0.8750 0.5156 +vt 0.7500 0.2656 +vt 0.6875 0.3125 +vt 0.6250 0.2969 +vt 0.6250 0.0156 +vt 0.7500 0.2969 +vt 1.0000 0.2969 +vt 0.9375 0.3125 +vt 0.8750 0.2969 +vt 0.8750 0.2344 +vt 0.8750 0.0156 +vt 1.0000 0.0156 +vt 1.0000 0.2344 +vt 0.6250 0.2656 +vt 0.5000 0.2656 +vt 0.5000 0.2344 +vt 0.5000 0.0156 +vt 0.8750 0.2344 +vt 0.7500 0.2344 +vt 0.7500 0.0156 +vt 0.8750 0.0156 +vt 0.2500 0.0156 +vt 0.3750 0.0156 +vt 0.3750 0.2031 +vt 0.2500 0.2031 +vt 0.5000 0.0156 +vt 0.5000 0.2031 +vt 0.4375 0.2188 +vt 0.3750 0.5938 +vt 0.3750 0.5625 +vt 0.4375 0.5625 +vt 0.4375 0.5938 +vt 0.3125 0.5938 +vt 0.3125 0.5625 +vt 0.5000 0.5625 +vt 0.5000 0.5938 +vt 0.0000 0.5938 +vt 0.0000 0.5625 +vt 0.0625 0.5625 +vt 0.0625 0.5938 +vt 0.1250 0.5625 +vt 0.1250 0.5938 +vt 0.1875 0.5625 +vt 0.1875 0.5938 +vt 0.2500 0.5625 +vt 0.2500 0.5938 +vt 0.6250 0.0156 +vt 0.6250 0.2031 +vt 1.0000 0.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 0.5000 0.0156 +vt 0.5000 0.2344 +vt 0.3750 0.2031 +vt 0.3750 0.0156 +vt 1.0000 0.0156 +vt 1.0000 0.2031 +vt 0.8750 0.2344 +vt 0.8750 0.0156 +vt 1.0000 0.5156 +vt 0.8750 0.5156 +vt 0.8750 0.2969 +vt 1.0000 0.3281 +vt 0.6250 0.5156 +vt 0.5000 0.5156 +vt 0.5000 0.2969 +vt 0.6250 0.2969 +vt 0.1250 0.5156 +vt 0.0000 0.5156 +vt -0.0000 0.3281 +vt 0.1250 0.3281 +vt 0.1875 0.3125 +vt 0.2500 0.3281 +vt 0.2500 0.5156 +vt 0.3750 0.3281 +vt 0.3750 0.5156 +vt 0.0000 1.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.7500 0.5938 +vt 0.7500 0.5625 +vt 0.8125 0.5625 +vt 0.8125 0.5938 +vt 0.6875 0.5938 +vt 0.6875 0.5625 +vt 0.6250 0.5938 +vt 0.6250 0.5625 +vt 0.5625 0.5938 +vt 0.5625 0.5625 +vt 0.5000 0.5938 +vt 0.5000 0.5625 +vt 0.9375 0.5938 +vt 0.9375 0.5625 +vt 1.0000 0.5625 +vt 1.0000 0.5938 +vt 0.8750 0.5938 +vt 0.8750 0.5625 +vt 0.1250 0.0156 +vt 0.1250 0.2344 +vt 0.8125 0.5938 +vt 0.8125 0.5625 +vt 0.8750 0.5625 +vt 0.8750 0.5938 +vt 0.9375 0.5625 +vt 0.9375 0.5938 +vt 1.0000 0.5625 +vt 1.0000 0.5938 +vt 0.5000 0.5938 +vt 0.5000 0.5625 +vt 0.5625 0.5625 +vt 0.5625 0.5938 +vt 0.6250 0.5625 +vt 0.6250 0.5938 +vt 0.6875 0.5625 +vt 0.6875 0.5938 +vt 0.7500 0.5625 +vt 0.7500 0.5938 +vt 0.0000 1.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt -0.0000 0.2344 +vt -0.0000 0.0156 +vt 0.2500 0.0156 +vt 0.2500 0.2031 +vt 0.1250 0.0156 +vt 0.1875 0.2188 +vt 0.1250 0.2031 +vt -0.0000 0.2031 +vt -0.0000 0.0156 +vn 1.0000 0.0000 0.0000 +vn -1.0000 0.0000 0.0000 +vn 0.0000 -1.0000 0.0000 +vn 0.0000 1.0000 0.0000 +vn 0.0000 0.0000 1.0000 +vn 0.0000 0.0000 -1.0000 +vn -0.3002 0.3002 0.9054 +vn 0.6302 0.2971 0.7173 +vn 0.6302 0.7173 0.2971 +vn -0.0000 0.9239 0.3826 +vn -0.3002 0.9054 0.3002 +vn -0.5774 0.5774 0.5774 +vn -0.9239 0.0000 0.3826 +vn -0.9054 0.3002 0.3002 +vn -0.7173 0.2971 -0.6302 +vn -0.7173 -0.2972 -0.6302 +vn -0.9878 -0.1100 -0.1100 +vn -0.3826 0.0000 0.9239 +vn 0.1100 -0.1100 0.9878 +vn 0.6302 -0.2972 0.7173 +vn -0.2971 0.7173 -0.6302 +vn -0.7173 -0.6302 0.2971 +vn -0.2971 -0.6302 0.7173 +vn 0.1100 0.9878 -0.1100 +vn 0.2972 0.7173 -0.6302 +vn -0.7173 -0.6303 -0.2971 +vn 0.7173 -0.6303 0.2971 +vn 0.7173 -0.6303 -0.2971 +vn 0.5789 -0.5789 -0.5743 +vn 0.5789 -0.5789 0.5743 +vn 0.2971 -0.6303 -0.7173 +vn 0.5743 -0.5789 -0.5789 +vn 0.5774 -0.5774 -0.5774 +vn -0.6302 -0.7173 -0.2971 +vn 0.6302 -0.7173 -0.2971 +vn 0.6302 -0.7173 0.2971 +vn -0.6302 -0.7173 0.2971 +vn -0.6302 -0.2971 -0.7173 +vn 0.6302 -0.2971 -0.7173 +vn 0.6302 -0.2971 0.7173 +vn -0.6302 -0.2971 0.7173 +vn -0.6302 0.2971 0.7173 +vn -0.6302 0.7173 0.2971 +vn 0.6302 0.7173 -0.2971 +vn -0.6302 0.7173 -0.2971 +vn 0.6302 0.2971 -0.7173 +vn -0.6302 0.2971 -0.7173 +vn -0.2971 -0.6303 -0.7173 +vn -0.5743 -0.5789 -0.5789 +vn 0.6303 -0.7173 -0.2971 +vn 0.6303 -0.2971 -0.7173 +vn 0.6303 0.2971 -0.7173 +vn 0.6303 0.7173 -0.2971 +vn 0.6303 -0.7173 0.2971 +vn 0.2971 0.7173 -0.6302 +vn 0.5789 0.5743 -0.5789 +vn 0.7173 0.2971 -0.6303 +vn -0.2971 -0.7173 -0.6303 +vn -0.7173 -0.2971 -0.6302 +vn 0.5789 -0.5743 -0.5789 +vn 0.2971 -0.6303 0.7173 +vn 0.7173 -0.6302 -0.2971 +vn 0.7173 0.6302 -0.2971 +vn 0.7173 0.6302 0.2971 +vn 0.7173 -0.6302 0.2971 +vn 0.2971 -0.6302 -0.7173 +vn 0.2971 0.6302 -0.7173 +vn -0.2971 -0.6302 -0.7173 +vn -0.2971 0.6302 -0.7173 +vn -0.7173 -0.6302 -0.2971 +vn -0.7173 0.6302 -0.2971 +vn -0.7173 0.6302 0.2971 +vn -0.2971 0.6302 0.7173 +vn 0.2971 -0.6302 0.7173 +vn 0.2971 0.6302 0.7173 +vn 0.7173 -0.2971 -0.6302 +vn 0.7173 -0.2971 0.6302 +vn 0.2971 -0.7173 0.6302 +vn 0.2971 -0.7173 -0.6302 +vn -0.2971 -0.7173 0.6302 +vn -0.2971 -0.7173 -0.6302 +vn -0.7173 -0.2971 0.6302 +vn -0.7173 0.2971 0.6302 +vn -0.2971 0.7173 0.6302 +vn 0.2971 0.7173 0.6302 +vn 0.7173 0.2971 0.6302 +vn 0.7173 0.2971 -0.6302 +vn 0.7173 -0.2971 -0.6303 +vn 0.2971 -0.7173 -0.6303 +g Cylinder.000_Cylinder.000_None_pipeworks_pipe_plain.png.000_Cylinder.000_Cylinder.000_None_pipeworks_pipe_plain.png.000_None +s off +f 20/1/1 21/2/1 22/3/1 23/4/1 24/5/1 25/6/1 26/7/1 27/8/1 +f 28/9/2 29/10/2 30/11/2 31/12/2 32/13/2 33/14/2 34/15/2 35/16/2 +f 36/17/3 37/18/3 38/19/3 39/20/3 40/21/3 41/22/3 42/23/3 43/24/3 +f 44/25/4 45/26/4 46/27/4 47/28/4 48/29/4 49/30/4 50/31/4 51/32/4 +f 52/33/5 53/34/5 54/35/5 55/36/5 56/37/5 57/38/5 58/39/5 59/40/5 +f 60/41/6 61/42/6 62/43/6 63/44/6 64/45/6 65/46/6 66/47/6 67/48/6 +s 1 +f 1/49/7 2/50/8 3/51/9 4/52/10 5/53/11 6/54/12 +f 7/55/13 8/56/14 9/57/15 10/58/16 11/59/17 +f 12/60/18 13/61/19 14/62/20 2/50/8 1/63/7 +f 6/64/12 5/65/11 15/66/21 9/57/15 8/67/14 +f 1/68/7 6/69/12 8/70/14 7/71/13 16/72/22 17/73/23 12/74/18 +f 5/75/11 4/76/10 18/77/24 19/78/25 15/66/21 +f 68/79/13 69/80/17 70/81/26 71/82/22 +f 72/83/27 73/84/28 74/85/29 75/86/30 +f 76/87/31 77/88/32 78/89/33 74/85/29 73/84/28 +f 29/90/34 20/91/35 27/92/36 30/93/37 +f 28/94/38 21/95/39 20/91/35 29/90/34 +f 30/93/37 27/92/36 26/96/40 31/97/41 +f 31/98/41 26/99/40 25/100/8 32/101/42 +f 32/101/42 25/100/8 24/102/9 33/103/43 +f 33/103/43 24/102/9 23/104/44 34/105/45 +f 34/105/45 23/104/44 22/106/46 35/107/47 +f 35/107/47 22/106/46 21/95/39 28/94/38 +f 79/108/48 80/109/49 77/88/32 76/87/31 +f 81/110/50 82/111/51 83/112/52 84/113/53 85/114/9 86/115/8 87/116/40 88/117/54 +f 89/118/55 90/119/24 91/120/56 92/121/57 +f 93/122/58 80/123/49 69/124/17 94/125/59 +f 79/108/48 70/81/26 69/80/17 80/109/49 +f 88/126/54 87/127/40 95/128/19 75/129/30 +f 85/130/9 84/131/53 90/132/24 96/133/10 +f 81/134/50 88/135/54 75/136/30 74/137/29 +f 81/134/50 74/137/29 78/138/33 97/139/60 82/140/51 +f 82/140/51 97/139/60 91/141/56 83/142/52 +f 72/143/27 98/144/61 99/145/23 71/146/22 70/147/26 79/148/48 76/149/31 73/150/28 +f 43/151/62 46/152/63 45/153/64 36/154/65 +f 42/155/66 47/156/67 46/152/63 43/151/62 +f 41/157/68 48/158/69 47/156/67 42/155/66 +f 40/159/70 49/160/71 48/158/69 41/157/68 +f 39/161/22 50/162/72 49/160/71 40/159/70 +f 38/163/23 51/164/73 50/165/72 39/166/22 +f 37/167/74 44/168/75 51/164/73 38/163/23 +f 98/169/61 72/83/27 75/86/30 95/170/19 +f 36/154/65 45/153/64 44/168/75 37/167/74 +f 60/171/76 53/172/77 52/173/78 61/174/79 +f 61/174/79 52/173/78 59/175/80 62/176/81 +f 62/176/81 59/175/80 58/177/82 63/178/59 +f 63/179/59 58/180/82 57/181/83 64/182/15 +f 64/182/15 57/181/83 56/183/84 65/184/21 +f 65/184/21 56/183/84 55/185/85 66/186/55 +f 66/186/55 55/185/85 54/187/86 67/188/87 +f 67/188/87 54/187/86 53/172/77 60/171/76 +f 100/189/88 101/190/89 93/191/58 94/192/59 102/193/15 103/194/21 89/195/55 92/196/57 +f 104/197/18 99/198/23 98/169/61 95/170/19 +f 100/199/88 92/121/57 91/120/56 97/200/60 +f 101/201/89 100/199/88 97/200/60 78/202/33 77/203/32 +f 101/201/89 77/203/32 80/204/49 93/205/58 +f 83/142/52 91/141/56 90/132/24 84/131/53 diff --git a/mods/pipeworks/models/pipeworks_pipe_6.obj b/mods/pipeworks/models/pipeworks_pipe_6.obj new file mode 100644 index 00000000..c6b060ed --- /dev/null +++ b/mods/pipeworks/models/pipeworks_pipe_6.obj @@ -0,0 +1,3819 @@ +# Blender v2.78 (sub 0) OBJ File: 'pipe-master-highpoly.blend' +# www.blender.org +o Pipe_Cylinder.002 +v -0.468750 0.126770 0.038455 +v -0.468750 0.131837 0.012985 +v -0.468750 0.131837 -0.012984 +v -0.468750 0.126770 -0.038455 +v -0.468750 0.116832 -0.062448 +v -0.468750 0.102404 -0.084041 +v -0.468750 0.084041 -0.102404 +v -0.468750 0.062448 -0.116832 +v -0.468750 0.038455 -0.126770 +v -0.468750 0.012985 -0.131836 +v -0.468750 -0.012985 -0.131836 +v -0.468750 -0.062448 -0.116832 +v -0.468750 -0.084041 -0.102404 +v -0.468750 -0.102404 -0.084041 +v -0.468750 -0.116832 -0.062448 +v -0.468750 -0.126770 -0.038455 +v -0.468750 -0.131836 -0.012985 +v -0.468750 -0.131836 0.012985 +v -0.468750 -0.126770 0.038455 +v -0.468750 -0.116832 0.062448 +v -0.468750 -0.084041 0.102404 +v -0.468750 -0.102404 0.084041 +v -0.468750 -0.062448 0.116832 +v -0.468750 -0.038455 0.126770 +v -0.468750 0.012985 0.131837 +v -0.468750 0.062448 0.116832 +v -0.468750 0.038455 0.126770 +v -0.468750 0.084041 0.102404 +v -0.468750 0.102404 0.084041 +v -0.468750 0.116832 0.062448 +v -0.468750 -0.038455 -0.126770 +v -0.468750 -0.012985 0.131836 +v -0.437501 0.110774 0.059210 +v -0.437501 0.120197 0.036461 +v -0.437501 0.125000 0.012312 +v -0.437501 0.125001 -0.012311 +v -0.437501 0.120197 -0.036461 +v -0.437501 0.110774 -0.059210 +v -0.437501 0.097094 -0.079683 +v -0.437501 0.079683 -0.097094 +v -0.437501 0.059210 -0.110774 +v -0.437501 0.036461 -0.120197 +v -0.437501 0.012312 -0.125000 +v -0.437501 -0.012311 -0.125000 +v -0.437501 -0.036461 -0.120197 +v -0.437501 -0.059210 -0.110774 +v -0.437501 -0.079683 -0.097094 +v -0.437501 -0.097094 -0.079683 +v -0.437501 -0.110774 -0.059210 +v -0.437501 -0.120197 -0.036461 +v -0.437501 -0.125000 -0.012311 +v -0.437501 -0.125000 0.012311 +v -0.437501 -0.120197 0.036461 +v -0.437501 -0.110774 0.059210 +v -0.437501 -0.097094 0.079683 +v -0.437501 -0.079683 0.097094 +v -0.437501 -0.059210 0.110774 +v -0.437501 -0.036461 0.120197 +v -0.437501 -0.012311 0.125001 +v -0.437501 0.012311 0.125001 +v -0.437501 0.036461 0.120197 +v -0.437501 0.059210 0.110774 +v -0.437501 0.079683 0.097094 +v -0.437501 0.097094 0.079683 +v 0.437501 0.036461 -0.120197 +v 0.437501 0.012312 -0.125001 +v 0.437501 -0.012311 -0.125000 +v 0.437501 -0.036461 -0.120197 +v 0.437501 0.059210 -0.110774 +v 0.468750 0.012985 -0.131836 +v 0.468750 0.038455 -0.126770 +v 0.468750 -0.012985 -0.131836 +v 0.437501 -0.059210 -0.110774 +v 0.468750 -0.038455 -0.126770 +v 0.437501 0.079683 -0.097094 +v 0.468750 0.062448 -0.116832 +v 0.437501 -0.079683 -0.097094 +v 0.468750 -0.062448 -0.116832 +v 0.437501 0.097094 -0.079683 +v 0.468750 0.084041 -0.102404 +v 0.437501 -0.097094 -0.079683 +v 0.468750 -0.084041 -0.102404 +v 0.437501 0.110774 -0.059210 +v 0.468750 0.102404 -0.084041 +v 0.437501 -0.110774 -0.059210 +v 0.468750 -0.102404 -0.084041 +v 0.437501 0.120197 -0.036461 +v 0.468750 0.116832 -0.062448 +v 0.437501 -0.120197 -0.036461 +v 0.468750 -0.116832 -0.062448 +v 0.437501 0.125000 -0.012311 +v 0.468750 0.126770 -0.038455 +v 0.437501 -0.125001 -0.012311 +v 0.468750 -0.126770 -0.038455 +v 0.437501 0.125000 0.012312 +v 0.468750 0.131836 -0.012985 +v 0.437501 -0.125001 0.012311 +v 0.468750 -0.131837 -0.012985 +v 0.437501 0.120197 0.036461 +v 0.468750 0.131836 0.012985 +v 0.437501 -0.120197 0.036461 +v 0.468750 -0.131837 0.012985 +v 0.437501 0.110774 0.059210 +v 0.468750 0.126770 0.038455 +v 0.437501 -0.110774 0.059210 +v 0.468750 -0.126770 0.038455 +v 0.437501 0.097094 0.079683 +v 0.468750 0.116832 0.062448 +v 0.437501 -0.097094 0.079683 +v 0.468750 -0.116832 0.062448 +v 0.437501 0.079683 0.097094 +v 0.468750 0.102404 0.084041 +v 0.437501 -0.079683 0.097094 +v 0.468750 -0.102404 0.084041 +v 0.437501 0.059210 0.110774 +v 0.468750 0.084041 0.102404 +v 0.437501 -0.059210 0.110774 +v 0.468750 -0.084041 0.102404 +v 0.437501 0.036461 0.120197 +v 0.468750 0.062448 0.116832 +v 0.437501 -0.036461 0.120197 +v 0.468750 -0.062448 0.116832 +v 0.437501 0.012311 0.125000 +v 0.468750 0.038455 0.126770 +v 0.437501 -0.012311 0.125000 +v 0.468750 -0.038455 0.126770 +v 0.468750 0.012985 0.131837 +v 0.468750 -0.012985 0.131836 +v 0.460912 0.130078 0.063644 +v 0.468749 0.130078 0.063644 +v 0.468749 0.139022 0.062467 +v 0.460912 0.139022 0.062467 +v 0.460912 0.142474 0.054132 +v 0.460912 0.136982 0.046976 +v 0.460912 0.128039 0.048153 +v 0.460912 0.124587 0.056487 +v 0.468749 0.124587 0.056487 +v 0.468749 0.142474 0.054132 +v 0.468749 0.136982 0.046976 +v 0.468749 0.128039 0.048153 +v -0.460914 0.136982 0.046976 +v -0.468751 0.136982 0.046976 +v -0.468751 0.142474 0.054133 +v -0.460914 0.142474 0.054133 +v -0.460914 0.139022 0.062467 +v -0.460914 0.130078 0.063644 +v -0.460914 0.124587 0.056488 +v -0.460914 0.128039 0.048153 +v -0.468751 0.128039 0.048153 +v -0.468751 0.139022 0.062467 +v -0.468751 0.130078 0.063644 +v -0.468751 0.124587 0.056488 +v 0.460912 0.046976 0.136982 +v 0.468749 0.046976 0.136982 +v 0.468749 0.054133 0.142474 +v 0.460912 0.054133 0.142474 +v 0.460912 0.062467 0.139022 +v 0.460912 0.063644 0.130078 +v 0.460912 0.056488 0.124587 +v 0.460912 0.048154 0.128039 +v 0.468749 0.048154 0.128039 +v 0.468749 0.062467 0.139022 +v 0.468749 0.063644 0.130078 +v 0.468749 0.056488 0.124587 +v -0.460914 0.063644 0.130078 +v -0.468751 0.063644 0.130078 +v -0.468751 0.062467 0.139022 +v -0.460914 0.062467 0.139022 +v -0.460914 0.054133 0.142474 +v -0.460914 0.046976 0.136982 +v -0.460914 0.048153 0.128039 +v -0.460914 0.056487 0.124587 +v -0.468751 0.056487 0.124587 +v -0.468751 0.054133 0.142474 +v -0.468751 0.046976 0.136982 +v -0.468751 0.048153 0.128039 +v 0.460912 -0.063644 0.130078 +v 0.468749 -0.063644 0.130078 +v 0.468749 -0.062467 0.139022 +v 0.460912 -0.062467 0.139022 +v 0.460912 -0.054132 0.142474 +v 0.460912 -0.046976 0.136982 +v 0.460912 -0.048153 0.128039 +v 0.460912 -0.056487 0.124587 +v 0.468749 -0.056487 0.124587 +v 0.468749 -0.054132 0.142474 +v 0.468749 -0.046976 0.136982 +v 0.468749 -0.048153 0.128039 +v -0.460914 -0.046976 0.136982 +v -0.468751 -0.046976 0.136982 +v -0.468751 -0.054133 0.142474 +v -0.460914 -0.054133 0.142474 +v -0.460914 -0.062467 0.139022 +v -0.460914 -0.063644 0.130078 +v -0.460914 -0.056488 0.124587 +v -0.460914 -0.048153 0.128039 +v -0.468751 -0.048153 0.128039 +v -0.468751 -0.062467 0.139022 +v -0.468751 -0.063644 0.130078 +v -0.468751 -0.056488 0.124587 +v 0.460912 -0.136982 0.046976 +v 0.468749 -0.136982 0.046976 +v 0.468749 -0.142474 0.054133 +v 0.460912 -0.142474 0.054133 +v 0.460912 -0.139022 0.062467 +v 0.460912 -0.130078 0.063644 +v 0.460912 -0.124587 0.056488 +v 0.460912 -0.128039 0.048153 +v 0.468749 -0.128039 0.048153 +v 0.468749 -0.139022 0.062467 +v 0.468749 -0.130078 0.063644 +v 0.468749 -0.124587 0.056488 +v -0.460914 -0.130078 0.063644 +v -0.468751 -0.130078 0.063644 +v -0.468751 -0.139022 0.062467 +v -0.460914 -0.139022 0.062467 +v -0.460914 -0.142474 0.054133 +v -0.460914 -0.136982 0.046976 +v -0.460914 -0.128039 0.048153 +v -0.460914 -0.124587 0.056487 +v -0.468751 -0.124587 0.056487 +v -0.468751 -0.142474 0.054133 +v -0.468751 -0.136982 0.046976 +v -0.468751 -0.128039 0.048153 +v 0.460912 -0.130078 -0.063644 +v 0.468749 -0.130078 -0.063644 +v 0.468749 -0.139022 -0.062467 +v 0.460912 -0.139022 -0.062467 +v 0.460912 -0.142474 -0.054132 +v 0.460912 -0.136982 -0.046976 +v 0.460912 -0.128039 -0.048153 +v 0.460912 -0.124587 -0.056487 +v 0.468749 -0.124587 -0.056487 +v 0.468749 -0.142474 -0.054132 +v 0.468749 -0.136982 -0.046976 +v 0.468749 -0.128039 -0.048153 +v -0.460914 -0.136982 -0.046976 +v -0.468751 -0.136982 -0.046976 +v -0.468751 -0.142474 -0.054133 +v -0.460914 -0.142474 -0.054133 +v -0.460914 -0.139022 -0.062467 +v -0.460914 -0.130078 -0.063644 +v -0.460914 -0.124587 -0.056487 +v -0.460914 -0.128039 -0.048153 +v -0.468751 -0.128039 -0.048153 +v -0.468751 -0.139022 -0.062467 +v -0.468751 -0.130078 -0.063644 +v -0.468751 -0.124587 -0.056487 +v 0.460912 -0.046976 -0.136982 +v 0.468749 -0.046976 -0.136982 +v 0.468749 -0.054133 -0.142474 +v 0.460912 -0.054133 -0.142474 +v 0.460912 -0.062467 -0.139022 +v 0.460912 -0.063644 -0.130078 +v 0.460912 -0.056488 -0.124587 +v 0.460912 -0.048153 -0.128039 +v 0.468749 -0.048153 -0.128039 +v 0.468749 -0.062467 -0.139022 +v 0.468749 -0.063644 -0.130078 +v 0.468749 -0.056488 -0.124587 +v -0.460914 -0.063644 -0.130078 +v -0.468751 -0.063644 -0.130078 +v -0.468751 -0.062467 -0.139022 +v -0.460914 -0.062467 -0.139022 +v -0.460914 -0.054132 -0.142474 +v -0.460914 -0.046976 -0.136982 +v -0.460914 -0.048153 -0.128039 +v -0.460914 -0.056487 -0.124587 +v -0.468751 -0.056487 -0.124587 +v -0.468751 -0.054132 -0.142474 +v -0.468751 -0.046976 -0.136982 +v -0.468751 -0.048153 -0.128039 +v 0.460912 0.063644 -0.130078 +v 0.468749 0.063644 -0.130078 +v 0.468749 0.062467 -0.139022 +v 0.460912 0.062467 -0.139022 +v 0.460912 0.054132 -0.142474 +v 0.460912 0.046976 -0.136982 +v 0.460912 0.048153 -0.128039 +v 0.460912 0.056487 -0.124587 +v 0.468749 0.056487 -0.124587 +v 0.468749 0.054132 -0.142474 +v 0.468749 0.046976 -0.136982 +v 0.468749 0.048153 -0.128039 +v -0.460914 0.046976 -0.136982 +v -0.468751 0.046976 -0.136982 +v -0.468751 0.054133 -0.142474 +v -0.460914 0.054133 -0.142474 +v -0.460914 0.062467 -0.139022 +v -0.460914 0.063644 -0.130078 +v -0.460914 0.056487 -0.124587 +v -0.460914 0.048153 -0.128039 +v -0.468751 0.048153 -0.128039 +v -0.468751 0.062467 -0.139022 +v -0.468751 0.063644 -0.130078 +v -0.468751 0.056487 -0.124587 +v 0.460912 0.136982 -0.046976 +v 0.468749 0.136982 -0.046976 +v 0.468749 0.142474 -0.054133 +v 0.460912 0.142474 -0.054133 +v 0.460912 0.139022 -0.062467 +v 0.460912 0.130078 -0.063644 +v 0.460912 0.124587 -0.056488 +v 0.460912 0.128039 -0.048153 +v 0.468749 0.128039 -0.048153 +v 0.468749 0.139022 -0.062467 +v 0.468749 0.130078 -0.063644 +v 0.468749 0.124587 -0.056488 +v -0.460914 0.130078 -0.063644 +v -0.468751 0.130078 -0.063644 +v -0.468751 0.139022 -0.062467 +v -0.460914 0.139022 -0.062467 +v -0.460914 0.142474 -0.054133 +v -0.460914 0.136982 -0.046976 +v -0.460914 0.128039 -0.048153 +v -0.460914 0.124587 -0.056487 +v -0.468751 0.124587 -0.056487 +v -0.468751 0.142474 -0.054133 +v -0.468751 0.136982 -0.046976 +v -0.468751 0.128039 -0.048153 +v -0.012312 -0.012312 -0.125000 +v -0.036461 -0.036461 -0.120197 +v -0.059210 -0.059210 -0.110774 +v -0.079683 -0.079683 -0.097094 +v -0.097094 -0.097094 -0.079683 +v -0.110774 -0.110774 -0.059210 +v -0.120197 -0.120197 -0.036461 +v -0.125000 -0.125000 -0.012311 +v -0.125000 -0.125000 0.012311 +v -0.120197 -0.120197 0.036461 +v 0.125000 -0.125001 -0.012311 +v 0.110774 -0.110774 0.059210 +v 0.097094 -0.097094 0.079683 +v 0.079683 -0.079683 0.097094 +v 0.036461 -0.036461 0.120197 +v 0.110774 -0.110774 -0.059210 +v 0.059210 -0.059210 0.110774 +v 0.012311 -0.012311 0.125000 +v -0.500000 0.099603 -0.121367 +v -0.500000 0.074012 -0.138467 +v -0.500000 0.045577 -0.150245 +v -0.500000 0.015390 -0.156250 +v -0.500000 -0.015389 -0.156250 +v -0.500000 -0.045576 -0.150245 +v -0.500000 -0.074012 -0.138467 +v -0.500000 -0.099603 -0.121367 +v -0.500000 -0.121367 -0.099603 +v -0.500000 -0.150245 -0.045576 +v -0.500000 -0.156250 0.015389 +v -0.500000 -0.150245 0.045576 +v -0.500000 -0.121367 0.099603 +v -0.500000 -0.099603 0.121367 +v -0.500000 -0.074012 0.138467 +v -0.500000 -0.045576 0.150245 +v -0.500000 -0.015389 0.156250 +v -0.500000 0.045576 0.150245 +v -0.500000 0.074012 0.138467 +v -0.500000 0.099603 0.121367 +v -0.500000 0.138467 0.074012 +v -0.500000 0.156250 0.015389 +v -0.500000 0.156250 -0.015389 +v -0.500000 0.150245 -0.045576 +v -0.500000 0.138467 -0.074012 +v -0.500000 0.121367 -0.099603 +v -0.500000 -0.138466 -0.074012 +v -0.500000 -0.156250 -0.015389 +v -0.500000 -0.138467 0.074012 +v -0.500000 0.015389 0.156250 +v -0.500000 0.121367 0.099603 +v -0.500000 0.150245 0.045576 +v -0.468750 0.099603 -0.121367 +v -0.468750 0.121367 -0.099603 +v -0.468750 0.074012 -0.138467 +v -0.468750 0.045577 -0.150245 +v -0.468750 0.015390 -0.156250 +v -0.468750 -0.015389 -0.156250 +v -0.468750 -0.045576 -0.150245 +v -0.468750 -0.074012 -0.138467 +v -0.468750 -0.099603 -0.121367 +v -0.468750 -0.121367 -0.099603 +v -0.468750 -0.138466 -0.074012 +v -0.468750 -0.150245 -0.045576 +v -0.468750 -0.156250 -0.015389 +v -0.468750 -0.156250 0.015389 +v -0.468750 -0.150245 0.045576 +v -0.468750 -0.138467 0.074012 +v -0.468750 -0.121367 0.099603 +v -0.468750 -0.099603 0.121367 +v -0.468750 -0.074012 0.138467 +v -0.468750 -0.045576 0.150245 +v -0.468750 -0.015389 0.156250 +v -0.468750 0.015389 0.156250 +v -0.468750 0.074012 0.138467 +v -0.468750 0.045576 0.150245 +v -0.468750 0.099603 0.121367 +v -0.468750 0.121367 0.099603 +v -0.468750 0.138467 0.074012 +v -0.468750 0.150245 0.045576 +v -0.468750 0.156250 -0.015389 +v -0.468750 0.156250 0.015389 +v -0.468750 0.150245 -0.045576 +v -0.468750 0.138467 -0.074012 +v 0.468750 -0.138466 -0.074012 +v 0.468750 -0.150245 -0.045576 +v 0.468750 -0.156250 -0.015389 +v 0.468750 -0.121367 -0.099603 +v 0.468750 -0.156250 0.015389 +v 0.468750 -0.074012 -0.138467 +v 0.468750 -0.099603 -0.121367 +v 0.500000 -0.121367 -0.099603 +v 0.500000 -0.138467 -0.074012 +v 0.500000 -0.150245 -0.045576 +v 0.500000 -0.156250 -0.015389 +v 0.500000 -0.156250 0.015389 +v 0.468750 -0.045576 -0.150245 +v 0.500000 -0.099603 -0.121367 +v 0.468750 -0.150245 0.045576 +v 0.500000 -0.150245 0.045576 +v 0.468750 -0.015389 -0.156250 +v 0.500000 -0.045576 -0.150245 +v 0.500000 -0.074012 -0.138467 +v 0.468750 -0.138467 0.074012 +v 0.500000 -0.138467 0.074012 +v 0.468750 0.015389 -0.156250 +v 0.500000 -0.015389 -0.156250 +v 0.468750 -0.121367 0.099603 +v 0.500000 -0.121367 0.099603 +v 0.468750 0.045576 -0.150245 +v 0.500000 0.015389 -0.156250 +v 0.468750 -0.099603 0.121367 +v 0.500000 -0.099603 0.121367 +v 0.468750 0.074012 -0.138467 +v 0.500000 0.045576 -0.150245 +v 0.468750 -0.045576 0.150245 +v 0.468750 -0.074012 0.138467 +v 0.500000 -0.074012 0.138467 +v 0.468750 0.099603 -0.121367 +v 0.500000 0.074012 -0.138467 +v 0.468750 -0.015389 0.156250 +v 0.500000 -0.045576 0.150245 +v 0.468750 0.121367 -0.099603 +v 0.500000 0.099603 -0.121367 +v 0.468750 0.015389 0.156250 +v 0.500000 -0.015389 0.156250 +v 0.468750 0.138466 -0.074012 +v 0.500000 0.121367 -0.099603 +v 0.468750 0.045576 0.150245 +v 0.500000 0.015389 0.156250 +v 0.468750 0.150245 -0.045577 +v 0.500000 0.138466 -0.074012 +v 0.468750 0.074012 0.138467 +v 0.500000 0.045576 0.150245 +v 0.468750 0.156249 -0.015389 +v 0.500000 0.150245 -0.045577 +v 0.500000 0.156250 0.015389 +v 0.468750 0.099603 0.121367 +v 0.500000 0.074012 0.138467 +v 0.468750 0.156250 0.015389 +v 0.500000 0.156250 -0.015389 +v 0.500000 0.138467 0.074012 +v 0.500000 0.150245 0.045576 +v 0.500000 0.121367 0.099603 +v 0.500000 0.099603 0.121367 +v 0.468750 0.150245 0.045576 +v 0.468750 0.121367 0.099603 +v 0.468750 0.138467 0.074012 +v 0.460912 0.095821 0.108578 +v 0.468749 0.095821 0.108578 +v 0.468749 0.104534 0.110913 +v 0.460912 0.104534 0.110913 +v 0.460912 0.110913 0.104534 +v 0.460912 0.108578 0.095821 +v 0.460912 0.099865 0.093486 +v 0.460912 0.093486 0.099865 +v 0.468749 0.093486 0.099865 +v 0.468749 0.110913 0.104534 +v 0.468749 0.108578 0.095821 +v 0.468749 0.099865 0.093486 +v -0.460914 0.108578 0.095821 +v -0.468751 0.108578 0.095821 +v -0.468751 0.110913 0.104534 +v -0.460914 0.110913 0.104534 +v -0.460914 0.104534 0.110913 +v -0.460914 0.095821 0.108578 +v -0.460914 0.093486 0.099865 +v -0.460914 0.099865 0.093486 +v -0.468751 0.099865 0.093486 +v -0.468751 0.104534 0.110913 +v -0.468751 0.095821 0.108578 +v -0.468751 0.093486 0.099865 +v 0.460912 -0.009021 0.144532 +v 0.468749 -0.009021 0.144532 +v 0.468749 -0.004510 0.152344 +v 0.460912 -0.004510 0.152344 +v 0.460912 0.004510 0.152344 +v 0.460912 0.009021 0.144532 +v 0.460912 0.004510 0.136720 +v 0.460912 -0.004510 0.136720 +v 0.468749 -0.004510 0.136720 +v 0.468749 0.004510 0.152344 +v 0.468749 0.009021 0.144532 +v 0.468749 0.004510 0.136720 +v -0.460914 0.009021 0.144532 +v -0.468751 0.009021 0.144532 +v -0.468751 0.004510 0.152344 +v -0.460914 0.004510 0.152344 +v -0.460914 -0.004510 0.152344 +v -0.460914 -0.009021 0.144532 +v -0.460914 -0.004510 0.136720 +v -0.460914 0.004510 0.136720 +v -0.468751 0.004510 0.136720 +v -0.468751 -0.004510 0.152344 +v -0.468751 -0.009021 0.144532 +v -0.468751 -0.004510 0.136720 +v 0.460912 -0.108578 0.095821 +v 0.468749 -0.108578 0.095821 +v 0.468749 -0.110913 0.104534 +v 0.460912 -0.110913 0.104534 +v 0.460912 -0.104534 0.110913 +v 0.460912 -0.095821 0.108578 +v 0.460912 -0.093486 0.099865 +v 0.460912 -0.099865 0.093486 +v 0.468749 -0.099865 0.093486 +v 0.468749 -0.104534 0.110913 +v 0.468749 -0.095821 0.108578 +v 0.468749 -0.093486 0.099865 +v -0.460914 -0.095821 0.108578 +v -0.468751 -0.095821 0.108578 +v -0.468751 -0.104534 0.110913 +v -0.460914 -0.104534 0.110913 +v -0.460914 -0.110913 0.104534 +v -0.460914 -0.108578 0.095821 +v -0.460914 -0.099865 0.093486 +v -0.460914 -0.093486 0.099865 +v -0.468751 -0.093486 0.099865 +v -0.468751 -0.110913 0.104534 +v -0.468751 -0.108578 0.095821 +v -0.468751 -0.099865 0.093486 +v 0.460912 -0.144532 -0.009021 +v 0.468749 -0.144532 -0.009021 +v 0.468749 -0.152344 -0.004510 +v 0.460912 -0.152344 -0.004510 +v 0.460912 -0.152344 0.004511 +v 0.460912 -0.144532 0.009021 +v 0.460912 -0.136720 0.004510 +v 0.460912 -0.136720 -0.004510 +v 0.468749 -0.136720 -0.004510 +v 0.468749 -0.152344 0.004511 +v 0.468749 -0.144532 0.009021 +v 0.468749 -0.136720 0.004510 +v -0.460914 -0.144532 0.009021 +v -0.468751 -0.144532 0.009021 +v -0.468751 -0.152344 0.004510 +v -0.460914 -0.152344 0.004510 +v -0.460914 -0.152344 -0.004510 +v -0.460914 -0.144532 -0.009021 +v -0.460914 -0.136720 -0.004510 +v -0.460914 -0.136720 0.004510 +v -0.468751 -0.136720 0.004510 +v -0.468751 -0.152344 -0.004510 +v -0.468751 -0.144532 -0.009021 +v -0.468751 -0.136720 -0.004510 +v 0.460912 -0.095821 -0.108578 +v 0.468749 -0.095821 -0.108578 +v 0.468749 -0.104534 -0.110913 +v 0.460912 -0.104534 -0.110913 +v 0.460912 -0.110913 -0.104534 +v 0.460912 -0.108578 -0.095821 +v 0.460912 -0.099865 -0.093486 +v 0.460912 -0.093486 -0.099865 +v 0.468749 -0.093486 -0.099865 +v 0.468749 -0.110913 -0.104534 +v 0.468749 -0.108578 -0.095821 +v 0.468749 -0.099865 -0.093486 +v -0.460914 -0.108578 -0.095821 +v -0.468751 -0.108578 -0.095821 +v -0.468751 -0.110913 -0.104534 +v -0.460914 -0.110913 -0.104534 +v -0.460914 -0.104534 -0.110913 +v -0.460914 -0.095821 -0.108578 +v -0.460914 -0.093486 -0.099865 +v -0.460914 -0.099865 -0.093486 +v -0.468751 -0.099865 -0.093486 +v -0.468751 -0.104534 -0.110913 +v -0.468751 -0.095821 -0.108578 +v -0.468751 -0.093486 -0.099865 +v 0.460912 0.009021 -0.144532 +v 0.468749 0.009021 -0.144532 +v 0.468749 0.004510 -0.152344 +v 0.460912 0.004510 -0.152344 +v 0.460912 -0.004510 -0.152344 +v 0.460912 -0.009021 -0.144532 +v 0.460912 -0.004510 -0.136720 +v 0.460912 0.004510 -0.136720 +v 0.468749 0.004510 -0.136720 +v 0.468749 -0.004510 -0.152344 +v 0.468749 -0.009021 -0.144532 +v 0.468749 -0.004510 -0.136720 +v -0.460914 -0.009021 -0.144532 +v -0.468751 -0.009021 -0.144532 +v -0.468751 -0.004510 -0.152344 +v -0.460914 -0.004510 -0.152344 +v -0.460914 0.004510 -0.152344 +v -0.460914 0.009021 -0.144532 +v -0.460914 0.004510 -0.136720 +v -0.460914 -0.004510 -0.136720 +v -0.468751 -0.004510 -0.136720 +v -0.468751 0.004510 -0.152344 +v -0.468751 0.009021 -0.144532 +v -0.468751 0.004510 -0.136720 +v 0.460912 0.108578 -0.095821 +v 0.468749 0.108578 -0.095821 +v 0.468749 0.110913 -0.104534 +v 0.460912 0.110913 -0.104534 +v 0.460912 0.104534 -0.110913 +v 0.460912 0.095821 -0.108578 +v 0.460912 0.093486 -0.099865 +v 0.460912 0.099865 -0.093486 +v 0.468749 0.099865 -0.093486 +v 0.468749 0.104534 -0.110913 +v 0.468749 0.095821 -0.108578 +v 0.468749 0.093486 -0.099865 +v -0.460914 0.095821 -0.108578 +v -0.468751 0.095821 -0.108578 +v -0.468751 0.104534 -0.110913 +v -0.460914 0.104534 -0.110913 +v -0.460914 0.110913 -0.104534 +v -0.460914 0.108578 -0.095821 +v -0.460914 0.099865 -0.093486 +v -0.460914 0.093486 -0.099865 +v -0.468751 0.093486 -0.099865 +v -0.468751 0.110913 -0.104534 +v -0.468751 0.108578 -0.095821 +v -0.468751 0.099865 -0.093486 +v 0.460912 0.144532 0.009021 +v 0.468749 0.144532 0.009021 +v 0.468749 0.152344 0.004510 +v 0.460912 0.152344 0.004510 +v 0.460912 0.152344 -0.004510 +v 0.460912 0.144532 -0.009021 +v 0.460912 0.136720 -0.004510 +v 0.460912 0.136720 0.004510 +v 0.468749 0.136720 0.004510 +v 0.468749 0.152344 -0.004510 +v 0.468749 0.144532 -0.009021 +v 0.468749 0.136720 -0.004510 +v -0.460914 0.144532 -0.009021 +v -0.468751 0.144532 -0.009021 +v -0.468751 0.152344 -0.004510 +v -0.460914 0.152344 -0.004510 +v -0.460914 0.152344 0.004510 +v -0.460914 0.144532 0.009021 +v -0.460914 0.136720 0.004510 +v -0.460914 0.136720 -0.004510 +v -0.468751 0.136720 -0.004510 +v -0.468751 0.152344 0.004510 +v -0.468751 0.144532 0.009021 +v -0.468751 0.136720 0.004510 +v -0.126770 -0.468750 0.038456 +v -0.131837 -0.468750 0.012985 +v -0.131837 -0.468750 -0.012984 +v -0.126770 -0.468750 -0.038455 +v -0.116832 -0.468750 -0.062448 +v -0.102404 -0.468750 -0.084041 +v -0.084041 -0.468750 -0.102404 +v -0.062448 -0.468750 -0.116832 +v -0.038455 -0.468750 -0.126770 +v -0.012985 -0.468750 -0.131836 +v 0.012985 -0.468750 -0.131836 +v 0.062448 -0.468750 -0.116832 +v 0.084041 -0.468750 -0.102404 +v 0.102404 -0.468750 -0.084041 +v 0.116832 -0.468750 -0.062448 +v 0.126770 -0.468750 -0.038455 +v 0.131836 -0.468750 -0.012985 +v 0.131836 -0.468750 0.012985 +v 0.126770 -0.468750 0.038455 +v 0.116832 -0.468750 0.062448 +v 0.084041 -0.468750 0.102404 +v 0.102404 -0.468750 0.084041 +v 0.062448 -0.468750 0.116832 +v 0.038455 -0.468750 0.126770 +v -0.012985 -0.468750 0.131837 +v -0.062448 -0.468750 0.116832 +v -0.038455 -0.468750 0.126770 +v -0.084041 -0.468750 0.102404 +v -0.102404 -0.468750 0.084041 +v -0.116832 -0.468750 0.062448 +v 0.038455 -0.468750 -0.126770 +v 0.012985 -0.468750 0.131837 +v -0.110774 -0.437501 0.059210 +v -0.120197 -0.437501 0.036462 +v -0.125001 -0.437501 0.012312 +v -0.125001 -0.437501 -0.012311 +v -0.120197 -0.437501 -0.036461 +v -0.110774 -0.437501 -0.059210 +v -0.097094 -0.437501 -0.079683 +v -0.079683 -0.437501 -0.097094 +v -0.059210 -0.437501 -0.110774 +v -0.036461 -0.437501 -0.120197 +v -0.012312 -0.437501 -0.125000 +v 0.012311 -0.437501 -0.125000 +v 0.036461 -0.437501 -0.120197 +v 0.059210 -0.437501 -0.110774 +v 0.079683 -0.437501 -0.097094 +v 0.097094 -0.437501 -0.079683 +v 0.110774 -0.437501 -0.059210 +v 0.120197 -0.437501 -0.036461 +v 0.125000 -0.437501 -0.012311 +v 0.125000 -0.437501 0.012312 +v 0.120197 -0.437501 0.036461 +v 0.110774 -0.437501 0.059210 +v 0.097094 -0.437501 0.079683 +v 0.079683 -0.437501 0.097094 +v 0.059210 -0.437501 0.110774 +v 0.036461 -0.437501 0.120197 +v 0.012311 -0.437501 0.125001 +v -0.012311 -0.437501 0.125001 +v -0.036461 -0.437501 0.120197 +v -0.059210 -0.437501 0.110774 +v -0.079683 -0.437501 0.097094 +v -0.097094 -0.437501 0.079683 +v -0.136982 -0.460914 0.046976 +v -0.136982 -0.468751 0.046976 +v -0.142474 -0.468751 0.054133 +v -0.142474 -0.460914 0.054133 +v -0.139022 -0.460914 0.062467 +v -0.130078 -0.460914 0.063644 +v -0.124587 -0.460914 0.056488 +v -0.128039 -0.460914 0.048154 +v -0.128039 -0.468751 0.048154 +v -0.139022 -0.468751 0.062467 +v -0.130078 -0.468751 0.063644 +v -0.124587 -0.468751 0.056488 +v -0.063644 -0.460914 0.130078 +v -0.063644 -0.468751 0.130078 +v -0.062467 -0.468751 0.139022 +v -0.062467 -0.460914 0.139022 +v -0.054133 -0.460914 0.142474 +v -0.046976 -0.460914 0.136982 +v -0.048153 -0.460914 0.128039 +v -0.056487 -0.460914 0.124587 +v -0.056487 -0.468751 0.124587 +v -0.054133 -0.468751 0.142474 +v -0.046976 -0.468751 0.136982 +v -0.048153 -0.468751 0.128039 +v 0.046976 -0.460914 0.136982 +v 0.046976 -0.468751 0.136982 +v 0.054133 -0.468751 0.142474 +v 0.054133 -0.460914 0.142474 +v 0.062467 -0.460914 0.139022 +v 0.063644 -0.460914 0.130078 +v 0.056487 -0.460914 0.124587 +v 0.048153 -0.460914 0.128039 +v 0.048153 -0.468751 0.128039 +v 0.062467 -0.468751 0.139022 +v 0.063644 -0.468751 0.130078 +v 0.056487 -0.468751 0.124587 +v 0.130078 -0.460914 0.063644 +v 0.130078 -0.468751 0.063644 +v 0.139022 -0.468751 0.062467 +v 0.139022 -0.460914 0.062467 +v 0.142474 -0.460914 0.054133 +v 0.136982 -0.460914 0.046976 +v 0.128039 -0.460914 0.048153 +v 0.124587 -0.460914 0.056488 +v 0.124587 -0.468751 0.056488 +v 0.142474 -0.468751 0.054133 +v 0.136982 -0.468751 0.046976 +v 0.128039 -0.468751 0.048153 +v 0.136982 -0.460914 -0.046976 +v 0.136982 -0.468751 -0.046976 +v 0.142474 -0.468751 -0.054133 +v 0.142474 -0.460914 -0.054133 +v 0.139022 -0.460914 -0.062467 +v 0.130078 -0.460914 -0.063644 +v 0.124587 -0.460914 -0.056487 +v 0.128039 -0.460914 -0.048153 +v 0.128039 -0.468751 -0.048153 +v 0.139022 -0.468751 -0.062467 +v 0.130078 -0.468751 -0.063644 +v 0.124587 -0.468751 -0.056487 +v 0.063644 -0.460914 -0.130078 +v 0.063644 -0.468751 -0.130078 +v 0.062467 -0.468751 -0.139022 +v 0.062467 -0.460914 -0.139022 +v 0.054132 -0.460914 -0.142474 +v 0.046976 -0.460914 -0.136982 +v 0.048153 -0.460914 -0.128039 +v 0.056487 -0.460914 -0.124587 +v 0.056487 -0.468751 -0.124587 +v 0.054132 -0.468751 -0.142474 +v 0.046976 -0.468751 -0.136982 +v 0.048153 -0.468751 -0.128039 +v -0.046976 -0.460914 -0.136982 +v -0.046976 -0.468751 -0.136982 +v -0.054133 -0.468751 -0.142474 +v -0.054133 -0.460914 -0.142474 +v -0.062467 -0.460914 -0.139022 +v -0.063644 -0.460914 -0.130078 +v -0.056488 -0.460914 -0.124587 +v -0.048153 -0.460914 -0.128039 +v -0.048153 -0.468751 -0.128039 +v -0.062467 -0.468751 -0.139022 +v -0.063644 -0.468751 -0.130078 +v -0.056488 -0.468751 -0.124587 +v -0.130078 -0.460914 -0.063644 +v -0.130078 -0.468751 -0.063644 +v -0.139022 -0.468751 -0.062467 +v -0.139022 -0.460914 -0.062467 +v -0.142474 -0.460914 -0.054132 +v -0.136982 -0.460914 -0.046976 +v -0.128039 -0.460914 -0.048153 +v -0.124587 -0.460914 -0.056487 +v -0.124587 -0.468751 -0.056487 +v -0.142474 -0.468751 -0.054132 +v -0.136982 -0.468751 -0.046976 +v -0.128039 -0.468751 -0.048153 +v 0.012312 -0.012312 -0.125000 +v 0.036461 -0.036461 -0.120197 +v 0.059210 -0.059210 -0.110774 +v 0.079683 -0.079683 -0.097094 +v 0.097094 -0.097094 -0.079683 +v 0.120197 -0.120197 -0.036461 +v 0.125000 -0.125000 0.012311 +v 0.120197 -0.120197 0.036461 +v -0.110774 -0.110774 0.059210 +v -0.097094 -0.097094 0.079683 +v -0.079683 -0.079683 0.097094 +v -0.059210 -0.059210 0.110774 +v -0.036461 -0.036461 0.120197 +v -0.012311 -0.012312 0.125000 +v -0.099603 -0.500000 -0.121367 +v -0.074012 -0.500000 -0.138466 +v -0.045577 -0.500000 -0.150245 +v -0.015390 -0.500000 -0.156249 +v 0.015389 -0.500000 -0.156249 +v 0.045576 -0.500000 -0.150245 +v 0.074012 -0.500000 -0.138467 +v 0.099603 -0.500000 -0.121367 +v 0.121367 -0.500000 -0.099603 +v 0.150245 -0.500000 -0.045576 +v 0.156249 -0.500000 0.015389 +v 0.150245 -0.500000 0.045576 +v 0.121367 -0.500000 0.099603 +v 0.099603 -0.500000 0.121367 +v 0.074012 -0.500000 0.138467 +v 0.045576 -0.500000 0.150245 +v 0.015389 -0.500000 0.156250 +v -0.045576 -0.500000 0.150245 +v -0.074012 -0.500000 0.138467 +v -0.099603 -0.500000 0.121367 +v -0.138467 -0.500000 0.074012 +v -0.156250 -0.500000 0.015389 +v -0.156250 -0.500000 -0.015389 +v -0.150245 -0.500000 -0.045576 +v -0.138467 -0.500000 -0.074012 +v -0.121367 -0.500000 -0.099603 +v 0.138466 -0.500000 -0.074012 +v 0.156249 -0.500000 -0.015389 +v 0.138467 -0.500000 0.074012 +v -0.015389 -0.500000 0.156250 +v -0.121367 -0.500000 0.099603 +v -0.150245 -0.500000 0.045576 +v -0.099604 -0.468750 -0.121367 +v -0.121367 -0.468750 -0.099603 +v -0.074012 -0.468750 -0.138466 +v -0.045577 -0.468750 -0.150245 +v -0.015390 -0.468750 -0.156250 +v 0.015389 -0.468750 -0.156250 +v 0.045576 -0.468750 -0.150245 +v 0.074012 -0.468750 -0.138467 +v 0.099603 -0.468750 -0.121367 +v 0.121367 -0.468750 -0.099603 +v 0.138466 -0.468750 -0.074012 +v 0.150245 -0.468750 -0.045576 +v 0.156249 -0.468750 -0.015389 +v 0.156249 -0.468750 0.015389 +v 0.150245 -0.468750 0.045576 +v 0.138467 -0.468750 0.074012 +v 0.121367 -0.468750 0.099603 +v 0.099603 -0.468750 0.121367 +v 0.074012 -0.468750 0.138467 +v 0.045576 -0.468750 0.150245 +v 0.015389 -0.468750 0.156250 +v -0.015389 -0.468750 0.156250 +v -0.074012 -0.468750 0.138467 +v -0.045576 -0.468750 0.150245 +v -0.099603 -0.468750 0.121367 +v -0.121367 -0.468750 0.099603 +v -0.138467 -0.468750 0.074012 +v -0.150245 -0.468750 0.045576 +v -0.156250 -0.468750 -0.015389 +v -0.156250 -0.468750 0.015389 +v -0.150245 -0.468750 -0.045576 +v -0.138467 -0.468750 -0.074012 +v -0.108578 -0.460914 0.095821 +v -0.108578 -0.468751 0.095821 +v -0.110913 -0.468751 0.104534 +v -0.110913 -0.460914 0.104534 +v -0.104534 -0.460914 0.110913 +v -0.095821 -0.460914 0.108578 +v -0.093486 -0.460914 0.099865 +v -0.099865 -0.460914 0.093486 +v -0.099865 -0.468751 0.093486 +v -0.104534 -0.468751 0.110913 +v -0.095821 -0.468751 0.108578 +v -0.093486 -0.468751 0.099865 +v -0.009021 -0.460914 0.144532 +v -0.009021 -0.468751 0.144532 +v -0.004510 -0.468751 0.152344 +v -0.004510 -0.460914 0.152344 +v 0.004510 -0.460914 0.152344 +v 0.009021 -0.460914 0.144532 +v 0.004510 -0.460914 0.136720 +v -0.004510 -0.460914 0.136720 +v -0.004510 -0.468751 0.136720 +v 0.004510 -0.468751 0.152344 +v 0.009021 -0.468751 0.144532 +v 0.004510 -0.468751 0.136720 +v 0.095821 -0.460914 0.108578 +v 0.095821 -0.468751 0.108578 +v 0.104534 -0.468751 0.110913 +v 0.104534 -0.460914 0.110913 +v 0.110913 -0.460914 0.104534 +v 0.108578 -0.460914 0.095821 +v 0.099865 -0.460914 0.093486 +v 0.093486 -0.460914 0.099865 +v 0.093486 -0.468751 0.099865 +v 0.110913 -0.468751 0.104534 +v 0.108578 -0.468751 0.095821 +v 0.099865 -0.468751 0.093486 +v 0.144532 -0.460914 0.009021 +v 0.144532 -0.468751 0.009021 +v 0.152344 -0.468751 0.004510 +v 0.152344 -0.460914 0.004510 +v 0.152344 -0.460914 -0.004510 +v 0.144532 -0.460914 -0.009021 +v 0.136720 -0.460914 -0.004510 +v 0.136720 -0.460914 0.004510 +v 0.136720 -0.468751 0.004510 +v 0.152344 -0.468751 -0.004510 +v 0.144532 -0.468751 -0.009021 +v 0.136720 -0.468751 -0.004510 +v 0.108578 -0.460914 -0.095821 +v 0.108578 -0.468751 -0.095821 +v 0.110913 -0.468751 -0.104534 +v 0.110913 -0.460914 -0.104534 +v 0.104534 -0.460914 -0.110913 +v 0.095821 -0.460914 -0.108578 +v 0.093486 -0.460914 -0.099865 +v 0.099865 -0.460914 -0.093486 +v 0.099865 -0.468751 -0.093486 +v 0.104534 -0.468751 -0.110913 +v 0.095821 -0.468751 -0.108578 +v 0.093486 -0.468751 -0.099865 +v 0.009021 -0.460914 -0.144532 +v 0.009021 -0.468751 -0.144532 +v 0.004510 -0.468751 -0.152344 +v 0.004510 -0.460914 -0.152344 +v -0.004510 -0.460914 -0.152344 +v -0.009021 -0.460914 -0.144532 +v -0.004510 -0.460914 -0.136720 +v 0.004510 -0.460914 -0.136720 +v 0.004510 -0.468751 -0.136720 +v -0.004510 -0.468751 -0.152344 +v -0.009021 -0.468751 -0.144532 +v -0.004510 -0.468751 -0.136720 +v -0.095821 -0.460914 -0.108578 +v -0.095821 -0.468751 -0.108578 +v -0.104534 -0.468751 -0.110913 +v -0.104534 -0.460914 -0.110913 +v -0.110913 -0.460914 -0.104534 +v -0.108578 -0.460914 -0.095821 +v -0.099865 -0.460914 -0.093486 +v -0.093486 -0.460914 -0.099865 +v -0.093486 -0.468751 -0.099865 +v -0.110913 -0.468751 -0.104534 +v -0.108578 -0.468751 -0.095821 +v -0.099865 -0.468751 -0.093486 +v -0.144532 -0.460914 -0.009021 +v -0.144532 -0.468751 -0.009021 +v -0.152344 -0.468751 -0.004510 +v -0.152344 -0.460914 -0.004510 +v -0.152344 -0.460914 0.004511 +v -0.144532 -0.460914 0.009021 +v -0.136720 -0.460914 0.004510 +v -0.136720 -0.460914 -0.004510 +v -0.136720 -0.468751 -0.004510 +v -0.152344 -0.468751 0.004511 +v -0.144532 -0.468751 0.009021 +v -0.136720 -0.468751 0.004510 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.4412 0.9276 +vt 0.4630 0.9493 +vt 0.4886 0.9664 +vt 0.5170 0.9782 +vt 0.5472 0.9842 +vt 0.5780 0.9842 +vt 0.6082 0.9782 +vt 0.6366 0.9664 +vt 0.6622 0.9493 +vt 0.6840 0.9276 +vt 0.7011 0.9020 +vt 0.7129 0.8735 +vt 0.7189 0.8434 +vt 0.7189 0.8126 +vt 0.7129 0.7824 +vt 0.7011 0.7539 +vt 0.6840 0.7283 +vt 0.6622 0.7066 +vt 0.6366 0.6895 +vt 0.6082 0.6777 +vt 0.5780 0.6717 +vt 0.5472 0.6717 +vt 0.5170 0.6777 +vt 0.4886 0.6895 +vt 0.4630 0.7066 +vt 0.4412 0.7283 +vt 0.4241 0.7539 +vt 0.4124 0.7824 +vt 0.4063 0.8126 +vt 0.4063 0.8434 +vt 0.4124 0.8735 +vt 0.4241 0.9020 +vt 0.2332 0.6777 +vt 0.2616 0.6895 +vt 0.2872 0.7066 +vt 0.3090 0.7283 +vt 0.3261 0.7539 +vt 0.3379 0.7824 +vt 0.3439 0.8126 +vt 0.3439 0.8434 +vt 0.3379 0.8735 +vt 0.3261 0.9020 +vt 0.3090 0.9276 +vt 0.2872 0.9493 +vt 0.2616 0.9664 +vt 0.2332 0.9782 +vt 0.2030 0.9842 +vt 0.1722 0.9842 +vt 0.1420 0.9782 +vt 0.1136 0.9664 +vt 0.0880 0.9493 +vt 0.0662 0.9276 +vt 0.0491 0.9020 +vt 0.0374 0.8735 +vt 0.0313 0.8434 +vt 0.0313 0.8126 +vt 0.0374 0.7824 +vt 0.0491 0.7539 +vt 0.0662 0.7283 +vt 0.0880 0.7066 +vt 0.1136 0.6895 +vt 0.1420 0.6777 +vt 0.1722 0.6717 +vt 0.2030 0.6717 +vt 0.5780 0.6717 +vt 0.6082 0.6777 +vt 0.6366 0.6895 +vt 0.6622 0.7066 +vt 0.6840 0.7283 +vt 0.7011 0.7539 +vt 0.7129 0.7824 +vt 0.7189 0.8126 +vt 0.7189 0.8434 +vt 0.7129 0.8735 +vt 0.7011 0.9020 +vt 0.6840 0.9276 +vt 0.6622 0.9493 +vt 0.6366 0.9664 +vt 0.6082 0.9782 +vt 0.5780 0.9842 +vt 0.5472 0.9842 +vt 0.5170 0.9782 +vt 0.4886 0.9664 +vt 0.4630 0.9493 +vt 0.4412 0.9276 +vt 0.4241 0.9020 +vt 0.4124 0.8735 +vt 0.4063 0.8434 +vt 0.4063 0.8126 +vt 0.4124 0.7824 +vt 0.4241 0.7539 +vt 0.4412 0.7283 +vt 0.4630 0.7066 +vt 0.4886 0.6895 +vt 0.5170 0.6777 +vt 0.5472 0.6717 +vt 0.1136 0.6895 +vt 0.0880 0.7066 +vt 0.0662 0.7283 +vt 0.0491 0.7539 +vt 0.0374 0.7824 +vt 0.0313 0.8126 +vt 0.0313 0.8434 +vt 0.0374 0.8735 +vt 0.0491 0.9020 +vt 0.0662 0.9276 +vt 0.0880 0.9493 +vt 0.1136 0.9664 +vt 0.1420 0.9782 +vt 0.1722 0.9842 +vt 0.2030 0.9842 +vt 0.2332 0.9782 +vt 0.2616 0.9664 +vt 0.2872 0.9493 +vt 0.3090 0.9276 +vt 0.3261 0.9020 +vt 0.3379 0.8735 +vt 0.3439 0.8434 +vt 0.3439 0.8126 +vt 0.3379 0.7824 +vt 0.3261 0.7539 +vt 0.3090 0.7283 +vt 0.2872 0.7066 +vt 0.2616 0.6895 +vt 0.2332 0.6777 +vt 0.2030 0.6717 +vt 0.1722 0.6717 +vt 0.1420 0.6777 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.4412 0.9276 +vt 0.4630 0.9493 +vt 0.4886 0.9664 +vt 0.5170 0.9782 +vt 0.5472 0.9842 +vt 0.5780 0.9842 +vt 0.6082 0.9782 +vt 0.6366 0.9664 +vt 0.6622 0.9493 +vt 0.6840 0.9276 +vt 0.7011 0.9020 +vt 0.7129 0.8735 +vt 0.7189 0.8434 +vt 0.7189 0.8126 +vt 0.7129 0.7824 +vt 0.7011 0.7539 +vt 0.6840 0.7283 +vt 0.6622 0.7066 +vt 0.6366 0.6895 +vt 0.6082 0.6777 +vt 0.5780 0.6717 +vt 0.5472 0.6717 +vt 0.5170 0.6777 +vt 0.4886 0.6895 +vt 0.4630 0.7066 +vt 0.4412 0.7283 +vt 0.4241 0.7539 +vt 0.4124 0.7824 +vt 0.4063 0.8126 +vt 0.4063 0.8434 +vt 0.4124 0.8735 +vt 0.4241 0.9020 +vt 0.2332 0.6777 +vt 0.2616 0.6895 +vt 0.2872 0.7066 +vt 0.3090 0.7283 +vt 0.3261 0.7539 +vt 0.3379 0.7824 +vt 0.3439 0.8126 +vt 0.3439 0.8434 +vt 0.3379 0.8735 +vt 0.3261 0.9020 +vt 0.3090 0.9276 +vt 0.2872 0.9493 +vt 0.2616 0.9664 +vt 0.2332 0.9782 +vt 0.2030 0.9842 +vt 0.1722 0.9842 +vt 0.1420 0.9782 +vt 0.1136 0.9664 +vt 0.0880 0.9493 +vt 0.0662 0.9276 +vt 0.0491 0.9020 +vt 0.0374 0.8735 +vt 0.0313 0.8434 +vt 0.0313 0.8126 +vt 0.0374 0.7824 +vt 0.0491 0.7539 +vt 0.0662 0.7283 +vt 0.0880 0.7066 +vt 0.1136 0.6895 +vt 0.1420 0.6777 +vt 0.1722 0.6717 +vt 0.2030 0.6717 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.4688 0.5898 +vt 0.4688 0.5664 +vt 0.5000 0.5664 +vt 0.5000 0.5898 +vt 0.4375 0.5898 +vt 0.4375 0.5664 +vt 0.4062 0.5898 +vt 0.4062 0.5664 +vt 0.3750 0.5898 +vt 0.3750 0.5664 +vt 0.3438 0.5898 +vt 0.3438 0.5664 +vt 0.3125 0.5898 +vt 0.3125 0.5664 +vt 0.2812 0.5898 +vt 0.2812 0.5664 +vt 0.2500 0.5898 +vt 0.2500 0.5664 +vt 0.2188 0.5898 +vt 0.2188 0.5664 +vt 0.1875 0.5898 +vt 0.1875 0.5664 +vt 0.1562 0.5898 +vt 0.1562 0.5664 +vt 0.1250 0.5898 +vt 0.1250 0.5664 +vt 0.0938 0.5898 +vt 0.0938 0.5664 +vt 0.0625 0.5898 +vt 0.0625 0.5664 +vt 0.0937 0.5664 +vt 0.0312 0.5898 +vt 0.0312 0.5664 +vt 0.0000 0.5898 +vt 0.0000 0.5664 +vt 0.9688 0.5898 +vt 0.9688 0.5664 +vt 1.0000 0.5664 +vt 1.0000 0.5898 +vt 0.9375 0.5898 +vt 0.9375 0.5664 +vt 0.9062 0.5898 +vt 0.9062 0.5664 +vt 0.8750 0.5898 +vt 0.8750 0.5664 +vt 0.8125 0.5898 +vt 0.8125 0.5664 +vt 0.8438 0.5664 +vt 0.8438 0.5898 +vt 0.7812 0.5898 +vt 0.7812 0.5664 +vt 0.7500 0.5898 +vt 0.7500 0.5664 +vt 0.7188 0.5898 +vt 0.7188 0.5664 +vt 0.6875 0.5898 +vt 0.6875 0.5664 +vt 0.6250 0.5898 +vt 0.6250 0.5664 +vt 0.6562 0.5664 +vt 0.6562 0.5898 +vt 0.5938 0.5898 +vt 0.5938 0.5664 +vt 0.5625 0.5898 +vt 0.5625 0.5664 +vt 0.6340 0.5124 +vt 0.6340 0.4980 +vt 0.6649 0.4980 +vt 0.6649 0.5123 +vt 0.6959 0.5124 +vt 0.6959 0.4980 +vt 0.7268 0.5123 +vt 0.7268 0.4980 +vt 0.7577 0.5123 +vt 0.7578 0.4980 +vt 0.7886 0.5124 +vt 0.7887 0.4980 +vt 0.8196 0.5125 +vt 0.8196 0.4980 +vt 0.8506 0.4981 +vt 0.8505 0.5124 +vt 0.8814 0.5125 +vt 0.8815 0.4981 +vt 0.9123 0.5126 +vt 0.9125 0.4982 +vt 0.9434 0.5128 +vt 0.9436 0.4983 +vt 0.9747 0.4983 +vt 0.9745 0.5128 +vt 1.0057 0.4984 +vt 1.0055 0.5128 +vt 1.0366 0.5128 +vt 1.0367 0.4984 +vt 1.0677 0.4984 +vt 1.0677 0.5129 +vt 1.0988 0.4984 +vt 1.0988 0.5128 +vt 1.1301 0.5129 +vt 1.1297 0.4983 +vt 1.1607 0.4982 +vt 1.1617 0.5126 +vt 1.1934 0.5121 +vt 1.1912 0.4978 +vt 0.1983 0.5120 +vt 0.2004 0.4977 +vt 0.2310 0.4981 +vt 0.2300 0.5126 +vt 0.2617 0.5129 +vt 0.2621 0.4982 +vt 0.2933 0.4983 +vt 0.2932 0.5129 +vt 0.3244 0.4982 +vt 0.3245 0.5127 +vt 0.3553 0.4982 +vt 0.3554 0.5126 +vt 0.3863 0.4982 +vt 0.3864 0.5126 +vt 0.4172 0.4981 +vt 0.4173 0.5125 +vt 0.4481 0.4981 +vt 0.4482 0.5124 +vt 0.5101 0.5125 +vt 0.4791 0.5124 +vt 0.4790 0.4981 +vt 0.5100 0.4980 +vt 0.5720 0.5124 +vt 0.5410 0.5124 +vt 0.5410 0.4980 +vt 0.5719 0.4980 +vt 0.6030 0.5125 +vt 0.6030 0.4980 +vt 1.0081 0.2851 +vt 0.9769 0.2723 +vt 1.0393 0.2971 +vt 1.0706 0.3080 +vt 0.9459 0.0196 +vt 0.9458 0.0339 +vt 0.9151 0.0339 +vt 0.9151 0.0196 +vt 0.9767 0.0195 +vt 0.9767 0.0339 +vt 1.0076 0.0195 +vt 1.0075 0.0339 +vt 0.3215 0.3169 +vt 0.3528 0.3076 +vt 0.8843 0.0339 +vt 0.8844 0.0196 +vt 1.0385 0.0195 +vt 1.0383 0.0339 +vt 1.1328 0.2072 +vt 1.1017 0.2145 +vt 1.0999 0.0340 +vt 1.1306 0.0342 +vt 0.8537 0.0195 +vt 0.8536 0.0338 +vt 1.0694 0.0196 +vt 1.0691 0.0339 +vt 1.1640 0.2021 +vt 1.1610 0.0344 +vt 0.8229 0.0194 +vt 0.8228 0.0338 +vt 0.6875 0.5898 +vt 0.6875 0.5664 +vt 0.7188 0.5664 +vt 0.7188 0.5898 +vt 0.7812 0.5898 +vt 0.7812 0.5664 +vt 0.8125 0.5664 +vt 0.8125 0.5898 +vt 1.1004 0.0197 +vt 0.6562 0.5898 +vt 0.6562 0.5664 +vt 0.7921 0.0194 +vt 0.7920 0.0337 +vt 0.8438 0.5664 +vt 0.8438 0.5898 +vt 1.1314 0.0198 +vt 0.6250 0.5898 +vt 0.6250 0.5664 +vt 0.2280 0.1990 +vt 0.1969 0.1988 +vt 0.2015 0.0321 +vt 0.2327 0.0318 +vt 0.7613 0.0193 +vt 0.7611 0.0336 +vt 0.5938 0.5898 +vt 0.5938 0.5664 +vt 1.1624 0.0202 +vt 0.5312 0.5898 +vt 0.5312 0.5664 +vt 0.5625 0.5664 +vt 0.5625 0.5898 +vt 0.7304 0.0192 +vt 0.7302 0.0335 +vt 0.8750 0.5664 +vt 0.8750 0.5898 +vt 1.1934 0.0209 +vt 1.1908 0.0349 +vt 0.5000 0.5898 +vt 0.5000 0.5664 +vt 0.2906 0.2066 +vt 0.2593 0.2016 +vt 0.2642 0.0317 +vt 0.2956 0.0317 +vt 0.6995 0.0191 +vt 0.6994 0.0334 +vt 0.9062 0.5664 +vt 0.9062 0.5898 +vt 0.2320 0.0171 +vt 0.1997 0.0175 +vt 0.5312 0.5664 +vt 0.5312 0.5898 +vt 0.4688 0.5898 +vt 0.4688 0.5664 +vt 0.3218 0.2139 +vt 0.3268 0.0318 +vt 0.4827 0.0325 +vt 0.5137 0.0327 +vt 0.6686 0.0189 +vt 0.6685 0.0333 +vt 0.9375 0.5664 +vt 0.9375 0.5898 +vt 0.2641 0.0170 +vt 0.4375 0.5898 +vt 0.4375 0.5664 +vt 0.6377 0.0188 +vt 0.6375 0.0332 +vt 0.9688 0.5664 +vt 0.9688 0.5898 +vt 0.2958 0.0171 +vt 0.4062 0.5898 +vt 0.4062 0.5664 +vt 0.6068 0.0187 +vt 0.6066 0.0331 +vt 0.0000 0.5898 +vt 0.0000 0.5664 +vt 0.0312 0.5664 +vt 0.0312 0.5898 +vt 0.3271 0.0173 +vt 1.0000 0.5664 +vt 1.0000 0.5898 +vt 0.4467 0.2720 +vt 0.4154 0.2848 +vt 0.5759 0.0186 +vt 0.5757 0.0330 +vt 0.0625 0.5664 +vt 0.0625 0.5898 +vt 0.7500 0.5664 +vt 0.7500 0.5898 +vt 0.3583 0.0174 +vt 0.3580 0.0320 +vt 0.3750 0.5898 +vt 0.3750 0.5664 +vt 0.3842 0.2968 +vt 0.5447 0.0328 +vt 0.5450 0.0184 +vt 0.0937 0.5664 +vt 0.0938 0.5898 +vt 0.3895 0.0175 +vt 0.3892 0.0320 +vt 0.3438 0.5898 +vt 0.3438 0.5664 +vt 0.5140 0.0183 +vt 0.0938 0.5664 +vt 0.1250 0.5664 +vt 0.1250 0.5898 +vt 0.4208 0.0177 +vt 0.4204 0.0322 +vt 0.3125 0.5898 +vt 0.3125 0.5664 +vt 0.4830 0.0181 +vt 0.1562 0.5664 +vt 0.1562 0.5898 +vt 0.4519 0.0179 +vt 0.4516 0.0324 +vt 0.2812 0.5898 +vt 0.2812 0.5664 +vt 0.2500 0.5898 +vt 0.2500 0.5664 +vt 0.1875 0.5664 +vt 0.1875 0.5898 +vt 0.2188 0.5898 +vt 0.2188 0.5664 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 1.0394 0.2346 +vt 1.0082 0.2466 +vt 1.0706 0.2237 +vt 1.1018 0.3172 +vt 0.9770 0.2593 +vt 0.4780 0.2720 +vt 0.4790 0.4981 +vt 0.4481 0.4981 +vt 0.4467 0.2720 +vt 0.4468 0.2590 +vt 0.4156 0.2462 +vt 0.3530 0.2232 +vt 0.3843 0.2341 +vt 1.1329 0.3245 +vt 1.1642 0.3296 +vt 1.1955 0.3322 +vt 0.1964 0.3319 +vt 0.2277 0.3318 +vt 0.2591 0.3292 +vt 0.2903 0.3241 +vt 1.1952 0.1995 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.4688 0.5898 +vt 0.4688 0.5664 +vt 0.5000 0.5664 +vt 0.5000 0.5898 +vt 0.4375 0.5898 +vt 0.4375 0.5664 +vt 0.4062 0.5898 +vt 0.4062 0.5664 +vt 0.3750 0.5898 +vt 0.3750 0.5664 +vt 0.3438 0.5898 +vt 0.3438 0.5664 +vt 0.3125 0.5898 +vt 0.3125 0.5664 +vt 0.2812 0.5898 +vt 0.2812 0.5664 +vt 0.2500 0.5898 +vt 0.2500 0.5664 +vt 0.2188 0.5898 +vt 0.2188 0.5664 +vt 0.1875 0.5898 +vt 0.1875 0.5664 +vt 0.1562 0.5898 +vt 0.1562 0.5664 +vt 0.1250 0.5898 +vt 0.1250 0.5664 +vt 0.0938 0.5898 +vt 0.0938 0.5664 +vt 0.0625 0.5898 +vt 0.0625 0.5664 +vt 0.0937 0.5664 +vt 0.0312 0.5898 +vt 0.0312 0.5664 +vt 0.0000 0.5898 +vt 0.0000 0.5664 +vt 0.9688 0.5898 +vt 0.9688 0.5664 +vt 1.0000 0.5664 +vt 1.0000 0.5898 +vt 0.9375 0.5898 +vt 0.9375 0.5664 +vt 0.9062 0.5898 +vt 0.9062 0.5664 +vt 0.8750 0.5898 +vt 0.8750 0.5664 +vt 0.8125 0.5898 +vt 0.8125 0.5664 +vt 0.8438 0.5664 +vt 0.8438 0.5898 +vt 0.7812 0.5898 +vt 0.7812 0.5664 +vt 0.7500 0.5898 +vt 0.7500 0.5664 +vt 0.7188 0.5898 +vt 0.7188 0.5664 +vt 0.6875 0.5898 +vt 0.6875 0.5664 +vt 0.6250 0.5898 +vt 0.6250 0.5664 +vt 0.6562 0.5664 +vt 0.6562 0.5898 +vt 0.5938 0.5898 +vt 0.5938 0.5664 +vt 0.5625 0.5898 +vt 0.5625 0.5664 +vt 0.6340 0.5124 +vt 0.6340 0.4980 +vt 0.6649 0.4980 +vt 0.6649 0.5123 +vt 0.6959 0.5124 +vt 0.6959 0.4980 +vt 0.7268 0.5123 +vt 0.7268 0.4980 +vt 0.7577 0.5123 +vt 0.7578 0.4980 +vt 0.7886 0.5124 +vt 0.7887 0.4980 +vt 0.8196 0.5125 +vt 0.8196 0.4980 +vt 0.8506 0.4981 +vt 0.8505 0.5124 +vt 0.8814 0.5125 +vt 0.8815 0.4981 +vt 0.9123 0.5126 +vt 0.9125 0.4982 +vt 0.9434 0.5128 +vt 0.9436 0.4983 +vt 0.9747 0.4983 +vt 0.9745 0.5128 +vt 1.0057 0.4984 +vt 1.0055 0.5128 +vt 1.0366 0.5128 +vt 1.0367 0.4984 +vt 1.0677 0.4984 +vt 1.0677 0.5129 +vt 1.0988 0.4984 +vt 1.0988 0.5128 +vt 1.1301 0.5129 +vt 1.1297 0.4983 +vt 1.1607 0.4982 +vt 1.1617 0.5126 +vt 1.1934 0.5121 +vt 1.1912 0.4978 +vt 0.1983 0.5120 +vt 0.2004 0.4977 +vt 0.2310 0.4981 +vt 0.2300 0.5126 +vt 0.2617 0.5129 +vt 0.2621 0.4982 +vt 0.2933 0.4983 +vt 0.2932 0.5129 +vt 0.3244 0.4982 +vt 0.3245 0.5127 +vt 0.3553 0.4982 +vt 0.3554 0.5126 +vt 0.3863 0.4982 +vt 0.3864 0.5126 +vt 0.4172 0.4981 +vt 0.4173 0.5125 +vt 0.4482 0.5124 +vt 0.5101 0.5125 +vt 0.4791 0.5124 +vt 0.5100 0.4980 +vt 0.5720 0.5124 +vt 0.5410 0.5124 +vt 0.5410 0.4980 +vt 0.5719 0.4980 +vt 0.6030 0.5125 +vt 0.6030 0.4980 +vt 0.5312 0.5664 +vt 0.5312 0.5898 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.9457 0.2723 +vt 0.9145 0.2850 +vt 1.0393 0.2971 +vt 1.0081 0.2851 +vt 1.0706 0.3080 +vt 0.8833 0.2970 +vt 1.1018 0.3172 +vt 0.9769 0.2723 +vt 0.3215 0.3169 +vt 0.3528 0.3076 +vt 0.5715 0.3076 +vt 0.6027 0.3168 +vt 0.4154 0.2848 +vt 0.3842 0.2968 +vt 0.5092 0.2848 +vt 0.5403 0.2968 +vt 0.8521 0.3078 +vt 0.8209 0.3169 +vt 0.6339 0.3241 +vt 0.6650 0.3290 +vt 0.6962 0.3316 +vt 0.7273 0.3316 +vt 0.7585 0.3291 +vt 0.7897 0.3241 +vt 1.1329 0.3245 +vt 1.1642 0.3296 +vt 1.1955 0.3322 +vt 0.1964 0.3319 +vt 0.2277 0.3318 +vt 0.2591 0.3292 +vt 0.2903 0.3241 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vn -1.0000 -0.0000 0.0000 +vn 1.0000 -0.0000 0.0000 +vn -0.0000 1.0000 0.0000 +vn 0.0000 -1.0000 0.0000 +vn 0.6857 0.2113 -0.6965 +vn -0.6857 0.2113 -0.6965 +vn -0.6857 0.3431 -0.6419 +vn 0.6857 0.3431 -0.6419 +vn 0.6857 0.0713 -0.7244 +vn -0.6857 0.0713 -0.7244 +vn 0.6857 -0.0713 -0.7244 +vn -0.6857 -0.0713 -0.7244 +vn 0.6857 -0.2113 -0.6965 +vn -0.6857 -0.2113 -0.6965 +vn 0.6857 -0.3431 -0.6419 +vn -0.6857 -0.3431 -0.6419 +vn 0.6857 -0.4617 -0.5626 +vn -0.6857 -0.4617 -0.5626 +vn 0.6857 -0.5626 -0.4617 +vn -0.6857 -0.5626 -0.4617 +vn 0.6857 -0.6419 -0.3431 +vn -0.6857 -0.6419 -0.3431 +vn 0.6857 -0.6965 -0.2113 +vn -0.6857 -0.6965 -0.2113 +vn 0.6857 -0.7244 -0.0713 +vn -0.6857 -0.7244 -0.0713 +vn 0.6857 -0.7244 0.0713 +vn -0.6857 -0.7244 0.0713 +vn 0.6857 -0.6965 0.2113 +vn -0.6857 -0.6965 0.2113 +vn 0.6857 -0.6419 0.3431 +vn -0.6857 -0.6419 0.3431 +vn 0.6857 -0.5626 0.4617 +vn -0.6857 -0.5626 0.4617 +vn 0.6857 -0.4617 0.5626 +vn -0.6857 -0.4617 0.5626 +vn 0.6857 -0.3431 0.6419 +vn -0.6857 -0.3431 0.6419 +vn 0.6857 -0.2113 0.6965 +vn -0.6857 -0.2113 0.6965 +vn 0.6857 -0.0713 0.7244 +vn -0.6857 -0.0713 0.7244 +vn 0.6857 0.0713 0.7244 +vn -0.6857 0.0713 0.7244 +vn 0.6857 0.2113 0.6965 +vn -0.6857 0.2113 0.6965 +vn 0.6857 0.4617 0.5626 +vn -0.6857 0.4617 0.5626 +vn -0.6857 0.3431 0.6419 +vn 0.6857 0.3431 0.6419 +vn 0.6857 0.5626 0.4617 +vn -0.6857 0.5626 0.4617 +vn 0.6857 0.6419 0.3431 +vn -0.6857 0.6419 0.3431 +vn 0.6857 0.6965 0.2113 +vn -0.6857 0.6965 0.2113 +vn 0.6857 0.7244 0.0713 +vn -0.6857 0.7244 0.0713 +vn 0.6857 0.6965 -0.2113 +vn -0.6857 0.6965 -0.2113 +vn -0.6857 0.7244 -0.0713 +vn 0.6857 0.7244 -0.0713 +vn 0.6857 0.6419 -0.3431 +vn -0.6857 0.6419 -0.3431 +vn 0.6857 0.5626 -0.4617 +vn -0.6857 0.5626 -0.4617 +vn 0.2147 0.8614 0.4604 +vn 0.1087 0.8767 0.4686 +vn 0.1087 0.9513 0.2886 +vn 0.2147 0.9346 0.2835 +vn 0.2147 0.9720 0.0957 +vn 0.1087 0.9893 0.0974 +vn 0.2147 0.9720 -0.0957 +vn 0.1087 0.9893 -0.0974 +vn 0.2147 0.9346 -0.2835 +vn 0.1087 0.9513 -0.2886 +vn 0.2147 0.8614 -0.4604 +vn 0.1087 0.8767 -0.4686 +vn 0.2147 0.7550 -0.6196 +vn 0.1087 0.7684 -0.6306 +vn 0.1087 0.6306 -0.7684 +vn 0.2147 0.6196 -0.7550 +vn 0.2147 0.4604 -0.8614 +vn 0.1087 0.4686 -0.8767 +vn 0.2147 0.2835 -0.9346 +vn 0.1087 0.2886 -0.9513 +vn 0.2147 0.0957 -0.9720 +vn 0.1087 0.0974 -0.9893 +vn 0.1087 -0.0974 -0.9893 +vn 0.2147 -0.0957 -0.9720 +vn 0.1087 -0.2886 -0.9513 +vn 0.2147 -0.2835 -0.9346 +vn 0.2147 -0.4604 -0.8614 +vn 0.1087 -0.4686 -0.8767 +vn 0.1087 -0.6306 -0.7684 +vn 0.2147 -0.6196 -0.7550 +vn 0.1087 -0.7684 -0.6306 +vn 0.2147 -0.7550 -0.6196 +vn 0.2147 -0.8614 -0.4604 +vn 0.1087 -0.8767 -0.4686 +vn 0.1087 -0.9513 -0.2886 +vn 0.2147 -0.9346 -0.2835 +vn 0.2147 -0.9720 -0.0957 +vn 0.1087 -0.9893 -0.0974 +vn 0.1087 -0.9893 0.0974 +vn 0.2147 -0.9720 0.0957 +vn 0.2147 -0.9346 0.2835 +vn 0.1087 -0.9513 0.2886 +vn 0.1087 -0.8767 0.4686 +vn 0.2147 -0.8614 0.4604 +vn 0.1087 -0.7684 0.6306 +vn 0.2147 -0.7550 0.6196 +vn 0.1087 -0.6306 0.7684 +vn 0.2147 -0.6196 0.7550 +vn 0.1087 -0.4686 0.8767 +vn 0.2147 -0.4604 0.8614 +vn 0.1087 -0.2886 0.9513 +vn 0.2147 -0.2835 0.9346 +vn 0.1087 -0.0974 0.9893 +vn 0.2147 -0.0957 0.9720 +vn 0.2147 0.2835 0.9346 +vn 0.2147 0.0957 0.9720 +vn 0.1087 0.0974 0.9893 +vn 0.1087 0.2886 0.9513 +vn 0.2147 0.6196 0.7550 +vn 0.2147 0.4604 0.8614 +vn 0.1087 0.4686 0.8767 +vn 0.1087 0.6306 0.7684 +vn 0.2147 0.7550 0.6196 +vn 0.1087 0.7684 0.6306 +vn -0.1243 -0.1243 -0.9844 +vn -0.0247 -0.0247 -0.9994 +vn -0.2267 -0.2267 -0.9472 +vn -0.3333 -0.3333 -0.8819 +vn -0.2147 0.0957 -0.9720 +vn -0.1087 0.0974 -0.9893 +vn -0.1087 0.2886 -0.9513 +vn -0.2147 0.2835 -0.9346 +vn -0.2147 -0.0957 -0.9720 +vn -0.1087 -0.0974 -0.9893 +vn -0.2147 -0.2835 -0.9346 +vn -0.1087 -0.2886 -0.9513 +vn -0.4431 -0.4431 0.7793 +vn -0.3333 -0.3333 0.8819 +vn -0.1087 0.4686 -0.8767 +vn -0.2147 0.4604 -0.8614 +vn -0.2147 -0.4604 -0.8614 +vn -0.1087 -0.4686 -0.8767 +vn 0.5510 -0.5510 -0.6267 +vn 0.4431 -0.4431 -0.7793 +vn -0.1087 -0.7684 -0.6306 +vn -0.1087 -0.8767 -0.4686 +vn -0.2147 0.6196 -0.7550 +vn -0.1087 0.6306 -0.7684 +vn -0.2147 -0.6196 -0.7550 +vn -0.1087 -0.6306 -0.7684 +vn 0.6437 -0.6437 -0.4139 +vn -0.1087 -0.9513 -0.2886 +vn -0.2147 0.7550 -0.6196 +vn -0.1087 0.7684 -0.6306 +vn -0.2147 -0.7550 -0.6196 +vn -0.2147 0.8614 -0.4604 +vn -0.1087 0.8767 -0.4686 +vn -0.2147 -0.8614 -0.4604 +vn 0.6995 -0.6995 0.1458 +vn 0.6995 -0.6995 -0.1458 +vn -0.1087 -0.9893 -0.0974 +vn -0.1087 -0.9893 0.0974 +vn -0.2147 0.9346 -0.2835 +vn -0.1087 0.9513 -0.2886 +vn -0.2147 -0.9346 -0.2835 +vn -0.2147 0.9720 -0.0957 +vn -0.1087 0.9893 -0.0974 +vn -0.2147 -0.9720 -0.0957 +vn 0.5510 -0.5510 0.6267 +vn 0.6437 -0.6437 0.4139 +vn -0.1087 -0.9513 0.2886 +vn -0.1087 -0.8767 0.4686 +vn -0.2147 0.9720 0.0957 +vn -0.1087 0.9893 0.0974 +vn -0.2147 -0.9720 0.0957 +vn -0.6857 0.4617 -0.5626 +vn 0.6857 0.4617 -0.5626 +vn 0.4431 -0.4431 0.7793 +vn -0.1087 -0.7684 0.6306 +vn -0.1087 0.0974 0.9893 +vn -0.1087 0.2886 0.9513 +vn -0.2147 0.9346 0.2835 +vn -0.1087 0.9513 0.2886 +vn -0.2147 -0.9346 0.2835 +vn -0.2147 0.8614 0.4604 +vn -0.1087 0.8767 0.4686 +vn -0.2147 -0.8614 0.4604 +vn -0.2147 0.7550 0.6196 +vn -0.1087 0.7684 0.6306 +vn -0.2147 -0.7550 0.6196 +vn -0.0247 -0.0247 0.9994 +vn -0.1243 -0.1243 0.9844 +vn -0.2147 0.6196 0.7550 +vn -0.1087 0.6306 0.7684 +vn -0.2147 -0.6196 0.7550 +vn -0.1087 -0.6306 0.7684 +vn -0.2267 -0.2267 0.9472 +vn -0.1087 0.4686 0.8767 +vn -0.2147 0.4604 0.8614 +vn -0.2147 -0.4604 0.8614 +vn -0.1087 -0.4686 0.8767 +vn -0.2147 0.2835 0.9346 +vn -0.2147 -0.2835 0.9346 +vn -0.1087 -0.2886 0.9513 +vn -0.2147 0.0957 0.9720 +vn -0.2147 -0.0957 0.9720 +vn -0.1087 -0.0974 0.9893 +vn -0.6100 -0.3032 0.7321 +vn 0.0000 -0.3827 0.9239 +vn 0.0000 0.6088 0.7933 +vn -0.6100 0.4824 0.6287 +vn -0.6100 -0.7856 0.1034 +vn 0.0000 -0.9914 0.1305 +vn 0.0000 0.9914 -0.1305 +vn -0.6100 0.7856 -0.1034 +vn 0.0000 0.3827 -0.9239 +vn -0.6100 0.3032 -0.7321 +vn 0.0000 -0.6088 -0.7933 +vn -0.6100 -0.4824 -0.6287 +vn 0.6100 0.3032 -0.7321 +vn 0.6100 0.7856 -0.1034 +vn 0.6100 -0.4824 -0.6287 +vn 0.6100 0.4824 0.6287 +vn 0.6100 -0.3032 0.7321 +vn 0.6100 -0.7856 0.1034 +vn -0.6100 -0.7321 0.3032 +vn 0.0000 -0.9239 0.3827 +vn 0.0000 -0.1305 0.9914 +vn -0.6100 -0.1034 0.7856 +vn -0.6100 -0.6287 -0.4824 +vn 0.0000 -0.7933 -0.6088 +vn 0.0000 0.7933 0.6088 +vn -0.6100 0.6287 0.4824 +vn 0.0000 0.9239 -0.3827 +vn -0.6100 0.7321 -0.3032 +vn 0.0000 0.1305 -0.9914 +vn -0.6100 0.1034 -0.7856 +vn 0.6100 0.7321 -0.3032 +vn 0.6100 0.6287 0.4824 +vn 0.6100 0.1034 -0.7856 +vn 0.6100 -0.1034 0.7856 +vn 0.6100 -0.7321 0.3032 +vn 0.6100 -0.6287 -0.4824 +vn -0.6100 -0.7321 -0.3032 +vn 0.0000 -0.9239 -0.3827 +vn 0.0000 -0.7933 0.6088 +vn -0.6100 -0.6287 0.4824 +vn -0.6100 -0.1034 -0.7856 +vn 0.0000 -0.1305 -0.9914 +vn 0.0000 0.1305 0.9914 +vn -0.6100 0.1034 0.7856 +vn 0.0000 0.9239 0.3827 +vn -0.6100 0.7321 0.3032 +vn 0.0000 0.7933 -0.6088 +vn -0.6100 0.6287 -0.4824 +vn 0.6100 0.7321 0.3032 +vn 0.6100 0.1034 0.7856 +vn 0.6100 0.6287 -0.4824 +vn 0.6100 -0.6287 0.4824 +vn 0.6100 -0.7321 -0.3032 +vn 0.6100 -0.1034 -0.7856 +vn -0.6100 -0.3032 -0.7321 +vn 0.0000 -0.3827 -0.9239 +vn 0.0000 -0.9914 -0.1305 +vn -0.6100 -0.7856 -0.1034 +vn -0.6100 0.4824 -0.6287 +vn 0.0000 0.6088 -0.7933 +vn 0.0000 -0.6088 0.7933 +vn -0.6100 -0.4824 0.6287 +vn 0.0000 0.3827 0.9239 +vn -0.6100 0.3032 0.7321 +vn 0.0000 0.9914 0.1305 +vn -0.6100 0.7856 0.1034 +vn 0.6100 0.3032 0.7321 +vn 0.6100 -0.4824 0.6287 +vn 0.6100 0.7856 0.1034 +vn 0.6100 -0.7856 -0.1034 +vn 0.6100 -0.3032 -0.7321 +vn 0.6100 0.4824 -0.6287 +vn 0.2267 -0.2267 -0.9472 +vn 0.1243 -0.1243 -0.9844 +vn 0.3333 -0.3333 -0.8819 +vn -0.4431 -0.4431 -0.7793 +vn 0.0247 -0.0247 -0.9994 +vn -0.0974 0.1087 0.9893 +vn 0.0974 0.1087 0.9893 +vn 0.0247 -0.0247 0.9994 +vn 0.1243 -0.1243 0.9844 +vn 0.3333 -0.3333 0.8819 +vn 0.2267 -0.2267 0.9472 +vn -0.5510 -0.5510 -0.6267 +vn -0.6437 -0.6437 -0.4139 +vn -0.6995 -0.6995 -0.1458 +vn -0.6995 -0.6995 0.1458 +vn -0.6437 -0.6437 0.4139 +vn -0.5510 -0.5510 0.6267 +vn -0.6100 -0.5603 0.5603 +vn 0.0000 -0.7071 0.7071 +vn 0.0000 0.2588 0.9659 +vn -0.6100 0.2051 0.7654 +vn -0.6100 -0.7654 -0.2051 +vn 0.0000 -0.9659 -0.2588 +vn 0.0000 0.9659 0.2588 +vn -0.6100 0.7654 0.2051 +vn 0.0000 0.7071 -0.7071 +vn -0.6100 0.5603 -0.5603 +vn 0.0000 -0.2588 -0.9659 +vn -0.6100 -0.2051 -0.7654 +vn 0.6100 0.5603 -0.5603 +vn 0.6100 0.7654 0.2051 +vn 0.6100 -0.2051 -0.7654 +vn 0.6100 0.2051 0.7654 +vn 0.6100 -0.5603 0.5603 +vn 0.6100 -0.7654 -0.2051 +vn -0.6100 -0.7924 0.0000 +vn 0.0000 -0.5000 0.8660 +vn -0.6100 -0.3962 0.6862 +vn -0.6100 -0.3962 -0.6862 +vn 0.0000 -0.5000 -0.8660 +vn 0.0000 0.5000 0.8660 +vn -0.6100 0.3962 0.6862 +vn -0.6100 0.7924 0.0000 +vn 0.0000 0.5000 -0.8660 +vn -0.6100 0.3962 -0.6862 +vn 0.6100 0.7924 0.0000 +vn 0.6100 0.3962 0.6862 +vn 0.6100 0.3962 -0.6862 +vn 0.6100 -0.3962 0.6862 +vn 0.6100 -0.7924 0.0000 +vn 0.6100 -0.3962 -0.6862 +vn -0.6100 -0.5603 -0.5603 +vn 0.0000 -0.7071 -0.7071 +vn 0.0000 -0.9659 0.2588 +vn -0.6100 -0.7654 0.2051 +vn -0.6100 0.2051 -0.7654 +vn 0.0000 0.2588 -0.9659 +vn 0.0000 -0.2588 0.9659 +vn -0.6100 -0.2051 0.7654 +vn 0.0000 0.7071 0.7071 +vn -0.6100 0.5603 0.5603 +vn 0.0000 0.9659 -0.2588 +vn -0.6100 0.7654 -0.2051 +vn 0.6100 0.5603 0.5603 +vn 0.6100 -0.2051 0.7654 +vn 0.6100 0.7654 -0.2051 +vn 0.6100 -0.7654 0.2051 +vn 0.6100 -0.5603 -0.5603 +vn 0.6100 0.2051 -0.7654 +vn -0.6100 0.0000 -0.7924 +vn 0.0000 0.0000 -1.0000 +vn 0.0000 -0.8660 -0.5000 +vn -0.6100 -0.6862 -0.3962 +vn -0.6100 0.6862 -0.3962 +vn 0.0000 0.8660 -0.5000 +vn 0.0000 -0.8660 0.5000 +vn -0.6100 -0.6862 0.3962 +vn 0.0000 0.0000 1.0000 +vn -0.6100 0.0000 0.7924 +vn 0.0000 0.8660 0.5000 +vn -0.6100 0.6862 0.3962 +vn 0.6100 0.0000 0.7924 +vn 0.6100 -0.6862 0.3962 +vn 0.6100 0.6862 0.3962 +vn 0.6100 -0.6862 -0.3962 +vn 0.6100 0.0000 -0.7924 +vn 0.6100 0.6862 -0.3962 +vn -0.2113 0.6857 -0.6965 +vn -0.2113 -0.6857 -0.6965 +vn -0.3431 -0.6857 -0.6419 +vn -0.3431 0.6857 -0.6419 +vn -0.0713 0.6857 -0.7244 +vn -0.0713 -0.6857 -0.7244 +vn 0.0713 0.6857 -0.7244 +vn 0.0713 -0.6857 -0.7244 +vn 0.2113 0.6857 -0.6965 +vn 0.2113 -0.6857 -0.6965 +vn 0.3431 0.6857 -0.6419 +vn 0.3431 -0.6857 -0.6419 +vn 0.4617 0.6857 -0.5626 +vn 0.4617 -0.6857 -0.5626 +vn 0.5626 0.6857 -0.4617 +vn 0.5626 -0.6857 -0.4617 +vn 0.6419 0.6857 -0.3431 +vn 0.6419 -0.6857 -0.3431 +vn 0.6965 0.6857 -0.2113 +vn 0.6965 -0.6857 -0.2113 +vn 0.7244 0.6857 -0.0713 +vn 0.7244 -0.6857 -0.0713 +vn 0.7244 0.6857 0.0713 +vn 0.7244 -0.6857 0.0713 +vn 0.6965 0.6857 0.2113 +vn 0.6965 -0.6857 0.2113 +vn 0.6419 0.6857 0.3431 +vn 0.6419 -0.6857 0.3431 +vn 0.5626 0.6857 0.4617 +vn 0.5626 -0.6857 0.4617 +vn 0.4617 0.6857 0.5626 +vn 0.4617 -0.6857 0.5626 +vn 0.3431 0.6857 0.6419 +vn 0.3431 -0.6857 0.6419 +vn 0.2113 0.6857 0.6965 +vn 0.2113 -0.6857 0.6965 +vn 0.0713 0.6857 0.7244 +vn 0.0713 -0.6857 0.7244 +vn -0.0713 0.6857 0.7244 +vn -0.0713 -0.6857 0.7244 +vn -0.2113 0.6857 0.6965 +vn -0.2113 -0.6857 0.6965 +vn -0.4617 0.6857 0.5626 +vn -0.4617 -0.6857 0.5626 +vn -0.3431 -0.6857 0.6419 +vn -0.3431 0.6857 0.6419 +vn -0.5626 0.6857 0.4617 +vn -0.5626 -0.6857 0.4617 +vn -0.6419 0.6857 0.3431 +vn -0.6419 -0.6857 0.3431 +vn -0.6965 0.6857 0.2113 +vn -0.6965 -0.6857 0.2113 +vn -0.7244 0.6857 0.0713 +vn -0.7244 -0.6857 0.0713 +vn -0.6965 0.6857 -0.2113 +vn -0.6965 -0.6857 -0.2113 +vn -0.7244 -0.6857 -0.0713 +vn -0.7244 0.6857 -0.0713 +vn -0.6419 0.6857 -0.3431 +vn -0.6419 -0.6857 -0.3431 +vn -0.5626 0.6857 -0.4617 +vn -0.5626 -0.6857 -0.4617 +vn -0.8614 0.2147 0.4604 +vn -0.8767 0.1087 0.4686 +vn -0.9513 0.1087 0.2886 +vn -0.9346 0.2147 0.2835 +vn -0.9720 0.2147 0.0957 +vn -0.9893 0.1087 0.0974 +vn -0.9720 0.2147 -0.0957 +vn -0.9893 0.1087 -0.0974 +vn -0.9346 0.2147 -0.2835 +vn -0.9513 0.1087 -0.2886 +vn -0.8614 0.2147 -0.4604 +vn -0.8767 0.1087 -0.4686 +vn -0.7550 0.2147 -0.6196 +vn -0.7684 0.1087 -0.6306 +vn -0.6306 0.1087 -0.7684 +vn -0.6196 0.2147 -0.7550 +vn -0.4604 0.2147 -0.8614 +vn -0.4686 0.1087 -0.8767 +vn -0.2835 0.2147 -0.9346 +vn -0.2886 0.1087 -0.9513 +vn -0.0957 0.2147 -0.9720 +vn -0.0974 0.1087 -0.9893 +vn 0.0974 0.1087 -0.9893 +vn 0.0957 0.2147 -0.9720 +vn 0.2886 0.1087 -0.9513 +vn 0.2835 0.2147 -0.9346 +vn 0.4604 0.2147 -0.8614 +vn 0.4686 0.1087 -0.8767 +vn 0.6306 0.1087 -0.7684 +vn 0.6196 0.2147 -0.7550 +vn 0.7684 0.1087 -0.6306 +vn 0.7550 0.2147 -0.6196 +vn 0.8614 0.2147 -0.4604 +vn 0.8767 0.1087 -0.4686 +vn 0.9513 0.1087 -0.2886 +vn 0.9346 0.2147 -0.2835 +vn 0.9720 0.2147 -0.0957 +vn 0.9893 0.1087 -0.0974 +vn 0.9893 0.1087 0.0974 +vn 0.9720 0.2147 0.0957 +vn 0.9346 0.2147 0.2835 +vn 0.9513 0.1087 0.2886 +vn 0.8767 0.1087 0.4686 +vn 0.8614 0.2147 0.4604 +vn 0.7684 0.1087 0.6306 +vn 0.7550 0.2147 0.6196 +vn 0.6306 0.1087 0.7684 +vn 0.6196 0.2147 0.7550 +vn 0.4686 0.1087 0.8767 +vn 0.4604 0.2147 0.8614 +vn 0.2886 0.1087 0.9513 +vn 0.2835 0.2147 0.9346 +vn 0.0957 0.2147 0.9720 +vn -0.2835 0.2147 0.9346 +vn -0.0957 0.2147 0.9720 +vn -0.2886 0.1087 0.9513 +vn -0.6196 0.2147 0.7550 +vn -0.4604 0.2147 0.8614 +vn -0.4686 0.1087 0.8767 +vn -0.6306 0.1087 0.7684 +vn -0.7550 0.2147 0.6196 +vn -0.7684 0.1087 0.6306 +vn -0.4617 -0.6857 -0.5626 +vn -0.4617 0.6857 -0.5626 +vn -0.3032 0.6100 -0.7321 +vn -0.3827 0.0000 -0.9239 +vn -0.9914 0.0000 -0.1305 +vn -0.7856 0.6100 -0.1034 +vn 0.4824 0.6100 -0.6287 +vn 0.6088 0.0000 -0.7933 +vn -0.6088 0.0000 0.7933 +vn -0.4824 0.6100 0.6287 +vn 0.3827 0.0000 0.9239 +vn 0.3032 0.6100 0.7321 +vn 0.9914 0.0000 0.1305 +vn 0.7856 0.6100 0.1034 +vn -0.7321 0.6100 -0.3032 +vn -0.9239 0.0000 -0.3827 +vn -0.7933 0.0000 0.6088 +vn -0.6287 0.6100 0.4824 +vn -0.1034 0.6100 -0.7856 +vn -0.1305 0.0000 -0.9914 +vn 0.1305 0.0000 0.9914 +vn 0.1034 0.6100 0.7856 +vn 0.9239 0.0000 0.3827 +vn 0.7321 0.6100 0.3032 +vn 0.7933 0.0000 -0.6088 +vn 0.6287 0.6100 -0.4824 +vn -0.7321 0.6100 0.3032 +vn -0.9239 0.0000 0.3827 +vn -0.1305 0.0000 0.9914 +vn -0.1034 0.6100 0.7856 +vn -0.6287 0.6100 -0.4824 +vn -0.7933 0.0000 -0.6088 +vn 0.7933 0.0000 0.6088 +vn 0.6287 0.6100 0.4824 +vn 0.9239 0.0000 -0.3827 +vn 0.7321 0.6100 -0.3032 +vn 0.1305 0.0000 -0.9914 +vn 0.1034 0.6100 -0.7856 +vn -0.3032 0.6100 0.7321 +vn -0.3827 0.0000 0.9239 +vn 0.6088 0.0000 0.7933 +vn 0.4824 0.6100 0.6287 +vn -0.7856 0.6100 0.1034 +vn -0.9914 0.0000 0.1305 +vn 0.9914 0.0000 -0.1305 +vn 0.7856 0.6100 -0.1034 +vn 0.3827 0.0000 -0.9239 +vn 0.3032 0.6100 -0.7321 +vn -0.6088 0.0000 -0.7933 +vn -0.4824 0.6100 -0.6287 +vn -0.5603 0.6100 -0.5603 +vn -0.7071 0.0000 -0.7071 +vn -0.9659 0.0000 0.2588 +vn -0.7654 0.6100 0.2051 +vn 0.2051 0.6100 -0.7654 +vn 0.2588 0.0000 -0.9659 +vn -0.2588 0.0000 0.9659 +vn -0.2051 0.6100 0.7654 +vn 0.7071 0.0000 0.7071 +vn 0.5603 0.6100 0.5603 +vn 0.9659 0.0000 -0.2588 +vn 0.7654 0.6100 -0.2051 +vn -0.7924 0.6100 0.0000 +vn -0.5000 0.0000 0.8660 +vn -0.3962 0.6100 0.6862 +vn -0.3962 0.6100 -0.6862 +vn -0.5000 0.0000 -0.8660 +vn 0.5000 0.0000 0.8660 +vn 0.3962 0.6100 0.6862 +vn 0.7924 0.6100 0.0000 +vn 0.5000 0.0000 -0.8660 +vn 0.3962 0.6100 -0.6862 +vn -0.5603 0.6100 0.5603 +vn -0.7071 0.0000 0.7071 +vn 0.2588 0.0000 0.9659 +vn 0.2051 0.6100 0.7654 +vn -0.7654 0.6100 -0.2051 +vn -0.9659 0.0000 -0.2588 +vn 0.9659 0.0000 0.2588 +vn 0.7654 0.6100 0.2051 +vn 0.7071 0.0000 -0.7071 +vn 0.5603 0.6100 -0.5603 +vn -0.2588 0.0000 -0.9659 +vn -0.2051 0.6100 -0.7654 +vn 0.0000 0.6100 0.7924 +vn 0.8660 0.0000 0.5000 +vn 0.6862 0.6100 0.3962 +vn -0.6862 0.6100 0.3962 +vn -0.8660 0.0000 0.5000 +vn 0.8660 0.0000 -0.5000 +vn 0.6862 0.6100 -0.3962 +vn 0.0000 0.6100 -0.7924 +vn -0.8660 0.0000 -0.5000 +vn -0.6862 0.6100 -0.3962 +g Pipe_Cylinder.002_None +s off +f 129/1/1 132/2/1 133/3/1 134/4/1 135/5/1 136/6/1 +f 141/7/2 144/8/2 145/9/2 146/10/2 147/11/2 148/12/2 +f 153/13/1 156/14/1 157/15/1 158/16/1 159/17/1 160/18/1 +f 165/19/2 168/20/2 169/21/2 170/22/2 171/23/2 172/24/2 +f 177/25/1 180/26/1 181/27/1 182/28/1 183/29/1 184/30/1 +f 189/31/2 192/32/2 193/33/2 194/34/2 195/35/2 196/36/2 +f 201/37/1 204/38/1 205/39/1 206/40/1 207/41/1 208/42/1 +f 213/43/2 216/44/2 217/45/2 218/46/2 219/47/2 220/48/2 +f 225/49/1 228/50/1 229/51/1 230/52/1 231/53/1 232/54/1 +f 237/55/2 240/56/2 241/57/2 242/58/2 243/59/2 244/60/2 +f 249/61/1 252/62/1 253/63/1 254/64/1 255/65/1 256/66/1 +f 261/67/2 264/68/2 265/69/2 266/70/2 267/71/2 268/72/2 +f 273/73/1 276/74/1 277/75/1 278/76/1 279/77/1 280/78/1 +f 285/79/2 288/80/2 289/81/2 290/82/2 291/83/2 292/84/2 +f 297/85/1 300/86/1 301/87/1 302/88/1 303/89/1 304/90/1 +f 309/91/2 312/92/2 313/93/2 314/94/2 315/95/2 316/96/2 +f 371/97/2 372/98/2 402/99/2 401/100/2 399/101/2 400/102/2 398/103/2 397/104/2 396/105/2 395/106/2 393/107/2 394/108/2 392/109/2 391/110/2 390/111/2 389/112/2 388/113/2 387/114/2 386/115/2 385/116/2 384/117/2 383/118/2 382/119/2 381/120/2 380/121/2 379/122/2 378/123/2 377/124/2 376/125/2 375/126/2 374/127/2 373/128/2 +f 350/129/1 367/130/1 351/131/1 352/132/1 353/133/1 354/134/1 355/135/1 368/136/1 356/137/1 357/138/1 358/139/1 369/140/1 359/141/1 370/142/1 360/143/1 361/144/1 362/145/1 363/146/1 364/147/1 339/148/1 340/149/1 341/150/1 342/151/1 343/152/1 344/153/1 345/154/1 346/155/1 347/156/1 365/157/1 348/158/1 366/159/1 349/160/1 +f 407/161/1 417/162/1 422/163/1 426/164/1 430/165/1 435/166/1 434/167/1 439/168/1 443/169/1 447/170/1 451/171/1 456/172/1 465/173/1 466/174/1 464/175/1 458/176/1 453/177/1 449/178/1 445/179/1 441/180/1 437/181/1 432/182/1 428/183/1 424/184/1 419/185/1 415/186/1 408/187/1 409/188/1 406/189/1 403/190/1 404/191/1 405/192/1 +f 411/193/2 410/194/2 416/195/2 421/196/2 420/197/2 425/198/2 429/199/2 433/200/2 438/201/2 442/202/2 446/203/2 450/204/2 454/205/2 459/206/2 455/207/2 461/208/2 460/209/2 462/210/2 463/211/2 457/212/2 452/213/2 448/214/2 444/215/2 440/216/2 436/217/2 431/218/2 427/219/2 423/220/2 418/221/2 414/222/2 413/223/2 412/224/2 +f 467/225/1 470/226/1 471/227/1 472/228/1 473/229/1 474/230/1 +f 479/231/2 482/232/2 483/233/2 484/234/2 485/235/2 486/236/2 +f 491/237/1 494/238/1 495/239/1 496/240/1 497/241/1 498/242/1 +f 503/243/2 506/244/2 507/245/2 508/246/2 509/247/2 510/248/2 +f 515/249/1 518/250/1 519/251/1 520/252/1 521/253/1 522/254/1 +f 527/255/2 530/256/2 531/257/2 532/258/2 533/259/2 534/260/2 +f 539/261/1 542/262/1 543/263/1 544/264/1 545/265/1 546/266/1 +f 551/267/2 554/268/2 555/269/2 556/270/2 557/271/2 558/272/2 +f 563/273/1 566/274/1 567/275/1 568/276/1 569/277/1 570/278/1 +f 575/279/2 578/280/2 579/281/2 580/282/2 581/283/2 582/284/2 +f 587/285/1 590/286/1 591/287/1 592/288/1 593/289/1 594/290/1 +f 599/291/2 602/292/2 603/293/2 604/294/2 605/295/2 606/296/2 +f 611/297/1 614/298/1 615/299/1 616/300/1 617/301/1 618/302/1 +f 623/303/2 626/304/2 627/305/2 628/306/2 629/307/2 630/308/2 +f 635/309/1 638/310/1 639/311/1 640/312/1 641/313/1 642/314/1 +f 647/315/2 650/316/2 651/317/2 652/318/2 653/319/2 654/320/2 +f 723/321/3 726/322/3 727/323/3 728/324/3 729/325/3 730/326/3 +f 735/327/3 738/328/3 739/329/3 740/330/3 741/331/3 742/332/3 +f 747/333/3 750/334/3 751/335/3 752/336/3 753/337/3 754/338/3 +f 759/339/3 762/340/3 763/341/3 764/342/3 765/343/3 766/344/3 +f 771/345/3 774/346/3 775/347/3 776/348/3 777/349/3 778/350/3 +f 783/351/3 786/352/3 787/353/3 788/354/3 789/355/3 790/356/3 +f 795/357/3 798/358/3 799/359/3 800/360/3 801/361/3 802/362/3 +f 807/363/3 810/364/3 811/365/3 812/366/3 813/367/3 814/368/3 +f 865/369/3 866/370/3 896/371/3 895/372/3 893/373/3 894/374/3 892/375/3 891/376/3 890/377/3 889/378/3 887/379/3 888/380/3 886/381/3 885/382/3 884/383/3 883/384/3 882/385/3 881/386/3 880/387/3 879/388/3 878/389/3 877/390/3 876/391/3 875/392/3 874/393/3 873/394/3 872/395/3 871/396/3 870/397/3 869/398/3 868/399/3 867/400/3 +f 844/401/4 861/402/4 845/403/4 846/404/4 847/405/4 848/406/4 849/407/4 862/408/4 850/409/4 851/410/4 852/411/4 863/412/4 853/413/4 864/414/4 854/415/4 855/416/4 856/417/4 857/418/4 858/419/4 833/420/4 834/421/4 835/422/4 836/423/4 837/424/4 838/425/4 839/426/4 840/427/4 841/428/4 859/429/4 842/430/4 860/431/4 843/432/4 +f 897/433/3 900/434/3 901/435/3 902/436/3 903/437/3 904/438/3 +f 909/439/3 912/440/3 913/441/3 914/442/3 915/443/3 916/444/3 +f 921/445/3 924/446/3 925/447/3 926/448/3 927/449/3 928/450/3 +f 933/451/3 936/452/3 937/453/3 938/454/3 939/455/3 940/456/3 +f 945/457/3 948/458/3 949/459/3 950/460/3 951/461/3 952/462/3 +f 957/463/3 960/464/3 961/465/3 962/466/3 963/467/3 964/468/3 +f 969/469/3 972/470/3 973/471/3 974/472/3 975/473/3 976/474/3 +f 981/475/3 984/476/3 985/477/3 986/478/3 987/479/3 988/480/3 +s 1 +f 374/481/5 341/482/6 340/483/7 373/484/8 +f 375/485/9 342/486/10 341/482/6 374/481/5 +f 376/487/11 343/488/12 342/486/10 375/485/9 +f 377/489/13 344/490/14 343/488/12 376/487/11 +f 378/491/15 345/492/16 344/490/14 377/489/13 +f 379/493/17 346/494/18 345/492/16 378/491/15 +f 380/495/19 347/496/20 346/494/18 379/493/17 +f 381/497/21 365/498/22 347/496/20 380/495/19 +f 382/499/23 348/500/24 365/498/22 381/497/21 +f 383/501/25 366/502/26 348/500/24 382/499/23 +f 384/503/27 349/504/28 366/502/26 383/501/25 +f 385/505/29 350/506/30 349/504/28 384/503/27 +f 386/507/31 367/508/32 350/506/30 385/505/29 +f 387/509/33 351/510/34 367/511/32 386/507/31 +f 388/512/35 352/513/36 351/510/34 387/509/33 +f 389/514/37 353/515/38 352/513/36 388/512/35 +f 390/516/39 354/517/40 353/518/38 389/519/37 +f 391/520/41 355/521/42 354/517/40 390/516/39 +f 392/522/43 368/523/44 355/521/42 391/520/41 +f 394/524/45 356/525/46 368/523/44 392/522/43 +f 395/526/47 358/527/48 357/528/49 393/529/50 +f 393/529/50 357/528/49 356/525/46 394/524/45 +f 396/530/51 369/531/52 358/527/48 395/526/47 +f 397/532/53 359/533/54 369/531/52 396/530/51 +f 398/534/55 370/535/56 359/533/54 397/532/53 +f 400/536/57 360/537/58 370/535/56 398/534/55 +f 401/538/59 362/539/60 361/540/61 399/541/62 +f 399/541/62 361/540/61 360/537/58 400/536/57 +f 402/542/63 363/543/64 362/539/60 401/538/59 +f 372/544/65 364/545/66 363/543/64 402/542/63 +f 30/546/67 33/547/68 34/548/69 1/549/70 +f 2/550/71 1/549/70 34/548/69 35/551/72 +f 3/552/73 2/550/71 35/551/72 36/553/74 +f 4/554/75 3/552/73 36/553/74 37/555/76 +f 5/556/77 4/554/75 37/555/76 38/557/78 +f 6/558/79 5/556/77 38/557/78 39/559/80 +f 6/558/79 39/559/80 40/560/81 7/561/82 +f 8/562/83 7/561/82 40/560/81 41/563/84 +f 9/564/85 8/562/83 41/563/84 42/565/86 +f 10/566/87 9/564/85 42/565/86 43/567/88 +f 10/566/87 43/567/88 44/568/89 11/569/90 +f 11/569/90 44/568/89 45/570/91 31/571/92 +f 12/572/93 46/573/94 47/574/95 13/575/96 +f 31/571/92 45/570/91 46/573/94 12/572/93 +f 13/575/96 47/574/95 48/576/97 14/577/98 +f 15/578/99 14/577/98 48/576/97 49/579/100 +f 15/578/99 49/579/100 50/580/101 16/581/102 +f 17/582/103 16/581/102 50/580/101 51/583/104 +f 17/584/103 51/585/104 52/586/105 18/587/106 +f 19/588/107 18/587/106 52/586/105 53/589/108 +f 19/588/107 53/589/108 54/590/109 20/591/110 +f 20/591/110 54/590/109 55/592/111 22/593/112 +f 22/593/112 55/592/111 56/594/113 21/595/114 +f 21/595/114 56/594/113 57/596/115 23/597/116 +f 23/597/116 57/596/115 58/598/117 24/599/118 +f 24/599/118 58/598/117 59/600/119 32/601/120 +f 27/602/121 25/603/122 60/604/123 61/605/124 +f 25/603/122 32/601/120 59/600/119 60/604/123 +f 28/606/125 26/607/126 62/608/127 63/609/128 +f 27/602/121 61/605/124 62/608/127 26/607/126 +f 29/610/129 28/606/125 63/609/128 64/611/130 +f 29/610/129 64/611/130 33/547/68 30/546/67 +f 322/612/131 45/570/91 44/568/89 321/613/132 +f 323/614/133 46/573/94 45/570/91 322/612/131 +f 324/615/134 47/574/95 46/573/94 323/614/133 +f 70/616/135 66/617/136 65/618/137 71/619/138 +f 72/620/139 67/621/140 66/617/136 70/616/135 +f 74/622/141 68/623/142 67/621/140 72/620/139 +f 828/624/143 829/625/144 56/594/113 55/592/111 +f 71/619/138 65/618/137 69/626/145 76/627/146 +f 78/628/147 73/629/148 68/623/142 74/622/141 +f 336/630/149 823/631/150 81/632/151 85/633/152 +f 80/634/153 76/627/146 69/626/145 75/635/154 +f 82/636/155 77/637/156 73/629/148 78/628/147 +f 824/638/157 336/630/149 85/633/152 89/639/158 +f 84/640/159 80/634/153 75/635/154 79/641/160 +f 406/642/20 410/643/19 411/644/21 403/645/22 +f 405/646/26 413/647/25 414/648/27 407/649/28 +f 86/650/161 81/632/151 77/637/156 82/636/155 +f 409/651/18 416/652/17 410/643/19 406/642/20 +f 88/653/162 84/640/159 79/641/160 83/654/163 +f 407/649/28 414/648/27 418/655/29 417/656/30 +f 90/657/164 85/633/152 81/632/151 86/650/161 +f 408/658/16 421/659/15 416/652/17 409/651/18 +f 825/660/165 331/661/166 93/662/167 97/663/168 +f 92/664/169 88/653/162 83/654/163 87/665/170 +f 415/666/14 420/667/13 421/659/15 408/658/16 +f 94/668/171 89/639/158 85/633/152 90/657/164 +f 424/669/10 429/670/9 425/671/11 419/672/12 +f 96/673/172 92/664/169 87/665/170 91/674/173 +f 417/656/30 418/655/29 423/675/31 422/676/32 +f 98/677/174 93/678/167 89/639/158 94/668/171 +f 428/679/6 433/680/5 429/670/9 424/669/10 +f 332/681/175 826/682/176 101/683/177 105/684/178 +f 100/685/179 96/673/172 91/674/173 95/686/180 +f 422/676/32 423/675/31 427/687/33 426/688/34 +f 102/689/181 97/663/168 93/662/167 98/690/174 +f 373/484/8 340/483/7 339/691/182 371/692/183 +f 432/693/7 438/694/8 433/680/5 428/679/6 +f 333/695/184 332/681/175 105/684/178 109/696/185 +f 61/605/124 60/604/123 123/697/186 119/698/187 +f 104/699/188 100/685/179 95/686/180 99/700/189 +f 426/688/34 427/687/33 431/701/35 430/702/36 +f 106/703/190 101/683/177 97/663/168 102/689/181 +f 437/704/182 442/705/183 438/694/8 432/693/7 +f 108/706/191 104/699/188 99/700/189 103/707/192 +f 430/702/36 431/701/35 436/708/37 435/709/38 +f 110/710/193 105/684/178 101/683/177 106/703/190 +f 441/711/66 446/712/65 442/705/183 437/704/182 +f 112/713/194 108/706/191 103/707/192 107/714/195 +f 434/715/40 440/716/39 444/717/41 439/718/42 +f 110/710/193 114/719/196 109/696/185 105/684/178 +f 435/709/38 436/708/37 440/720/39 434/721/40 +f 832/722/197 59/600/119 58/598/117 831/723/198 +f 116/724/199 112/713/194 107/714/195 111/725/200 +f 439/718/42 444/717/41 448/726/43 443/727/44 +f 403/645/22 411/644/21 412/728/23 404/729/24 +f 118/730/201 113/731/202 109/696/185 114/719/196 +f 445/732/64 450/733/63 446/712/65 441/711/66 +f 831/723/198 58/598/117 57/596/115 830/734/203 +f 61/605/124 119/698/187 115/735/204 62/608/127 +f 120/736/205 116/724/199 111/725/200 115/735/204 +f 443/727/44 448/726/43 452/737/45 447/738/46 +f 118/730/201 122/739/206 117/740/207 113/731/202 +f 449/741/60 454/742/59 450/733/63 445/732/64 +f 124/743/208 120/736/205 115/735/204 119/698/187 +f 447/738/46 452/744/45 457/745/50 451/746/49 +f 122/739/206 126/747/209 121/748/210 117/740/207 +f 453/749/61 459/750/62 454/742/59 449/741/60 +f 419/672/12 425/671/11 420/667/13 415/666/14 +f 127/751/211 124/743/208 119/698/187 123/697/186 +f 451/746/49 457/745/50 463/752/47 456/753/48 +f 126/747/209 128/754/212 125/755/213 121/748/210 +f 458/756/58 455/757/57 459/750/62 453/749/61 +f 128/754/212 127/751/211 123/697/186 125/755/213 +f 404/729/24 412/728/23 413/647/25 405/646/26 +f 464/758/56 461/759/55 455/757/57 458/756/58 +f 456/753/48 463/752/47 462/760/51 465/761/52 +f 466/762/54 460/763/53 461/759/55 464/758/56 +f 465/761/52 462/760/51 460/763/53 466/762/54 +f 129/764/214 130/765/215 131/766/216 132/767/217 +f 136/768/218 137/769/219 130/765/215 129/764/214 +f 132/767/217 131/766/216 138/770/220 133/771/221 +f 133/771/221 138/770/220 139/772/222 134/773/223 +f 134/774/223 139/775/222 140/776/224 135/777/225 +f 135/777/225 140/776/224 137/769/219 136/768/218 +f 141/778/226 142/779/222 143/780/220 144/781/227 +f 148/782/228 149/783/224 142/779/222 141/778/226 +f 144/781/227 143/780/220 150/784/216 145/785/229 +f 145/785/229 150/784/216 151/786/215 146/787/230 +f 146/788/230 151/789/215 152/790/219 147/791/231 +f 147/791/231 152/790/219 149/783/224 148/782/228 +f 153/792/232 154/793/233 155/794/234 156/795/235 +f 160/796/236 161/797/237 154/793/233 153/792/232 +f 156/795/235 155/794/234 162/798/238 157/799/239 +f 157/799/239 162/798/238 163/800/240 158/801/241 +f 158/802/241 163/803/240 164/804/242 159/805/243 +f 159/805/243 164/804/242 161/797/237 160/796/236 +f 165/806/244 166/807/240 167/808/238 168/809/245 +f 172/810/246 173/811/242 166/807/240 165/806/244 +f 168/809/245 167/808/238 174/812/234 169/813/247 +f 169/813/247 174/812/234 175/814/233 170/815/248 +f 170/816/248 175/817/233 176/818/237 171/819/249 +f 171/819/249 176/818/237 173/811/242 172/810/246 +f 177/820/250 178/821/251 179/822/252 180/823/253 +f 184/824/254 185/825/255 178/821/251 177/820/250 +f 180/823/253 179/822/252 186/826/256 181/827/257 +f 181/827/257 186/826/256 187/828/258 182/829/259 +f 182/830/259 187/831/258 188/832/260 183/833/261 +f 183/833/261 188/832/260 185/825/255 184/824/254 +f 189/834/262 190/835/258 191/836/256 192/837/263 +f 196/838/264 197/839/260 190/835/258 189/834/262 +f 192/837/263 191/836/256 198/840/252 193/841/265 +f 193/841/265 198/840/252 199/842/251 194/843/266 +f 194/844/266 199/845/251 200/846/255 195/847/267 +f 195/847/267 200/846/255 197/839/260 196/838/264 +f 201/848/268 202/849/269 203/850/270 204/851/271 +f 208/852/272 209/853/273 202/849/269 201/848/268 +f 204/851/271 203/850/270 210/854/274 205/855/275 +f 205/855/275 210/854/274 211/856/276 206/857/277 +f 206/858/277 211/859/276 212/860/278 207/861/279 +f 207/861/279 212/860/278 209/853/273 208/852/272 +f 213/862/280 214/863/276 215/864/274 216/865/281 +f 220/866/282 221/867/278 214/863/276 213/862/280 +f 216/865/281 215/864/274 222/868/270 217/869/283 +f 217/869/283 222/868/270 223/870/269 218/871/284 +f 218/872/284 223/873/269 224/874/273 219/875/285 +f 219/875/285 224/874/273 221/867/278 220/866/282 +f 225/876/223 226/877/222 227/878/224 228/879/225 +f 232/880/221 233/881/220 226/877/222 225/876/223 +f 228/879/225 227/878/224 234/882/219 229/883/218 +f 229/883/218 234/882/219 235/884/215 230/885/214 +f 230/886/214 235/887/215 236/888/216 231/889/217 +f 231/889/217 236/888/216 233/881/220 232/880/221 +f 237/890/230 238/891/215 239/892/219 240/893/231 +f 244/894/229 245/895/216 238/891/215 237/890/230 +f 240/893/231 239/892/219 246/896/224 241/897/228 +f 241/897/228 246/896/224 247/898/222 242/899/226 +f 242/900/226 247/901/222 248/902/220 243/903/227 +f 243/903/227 248/902/220 245/895/216 244/894/229 +f 249/904/241 250/905/240 251/906/242 252/907/243 +f 256/908/239 257/909/238 250/905/240 249/904/241 +f 252/907/243 251/906/242 258/910/237 253/911/236 +f 253/911/236 258/910/237 259/912/233 254/913/232 +f 254/914/232 259/915/233 260/916/234 255/917/235 +f 255/917/235 260/916/234 257/909/238 256/908/239 +f 261/918/248 262/919/233 263/920/237 264/921/249 +f 268/922/247 269/923/234 262/919/233 261/918/248 +f 264/921/249 263/920/237 270/924/242 265/925/246 +f 265/925/246 270/924/242 271/926/240 266/927/244 +f 266/928/244 271/929/240 272/930/238 267/931/245 +f 267/931/245 272/930/238 269/923/234 268/922/247 +f 273/932/259 274/933/258 275/934/260 276/935/261 +f 280/936/257 281/937/256 274/933/258 273/932/259 +f 276/935/261 275/934/260 282/938/255 277/939/254 +f 277/939/254 282/938/255 283/940/251 278/941/250 +f 278/942/250 283/943/251 284/944/252 279/945/253 +f 279/945/253 284/944/252 281/937/256 280/936/257 +f 285/946/266 286/947/251 287/948/255 288/949/267 +f 292/950/265 293/951/252 286/947/251 285/946/266 +f 288/949/267 287/948/255 294/952/260 289/953/264 +f 289/953/264 294/952/260 295/954/258 290/955/262 +f 290/956/262 295/957/258 296/958/256 291/959/263 +f 291/959/263 296/958/256 293/951/252 292/950/265 +f 297/960/277 298/961/276 299/962/278 300/963/279 +f 304/964/275 305/965/274 298/961/276 297/960/277 +f 300/963/279 299/962/278 306/966/273 301/967/272 +f 301/967/272 306/966/273 307/968/269 302/969/268 +f 302/970/268 307/971/269 308/972/270 303/973/271 +f 303/973/271 308/972/270 305/965/274 304/964/275 +f 309/974/284 310/975/269 311/976/273 312/977/285 +f 316/978/283 317/979/270 310/975/269 309/974/284 +f 312/977/285 311/976/273 318/980/278 313/981/282 +f 313/981/282 318/980/278 319/982/276 314/983/280 +f 314/984/280 319/985/276 320/986/274 315/987/281 +f 315/987/281 320/986/274 317/979/270 316/978/283 +f 821/988/286 820/989/287 68/623/142 73/629/148 +f 822/990/288 821/988/286 73/629/148 77/637/156 +f 324/615/134 325/991/289 48/576/97 47/574/95 +f 64/611/130 63/609/128 111/725/200 107/714/195 +f 820/989/287 819/992/290 67/621/140 68/623/142 +f 832/993/197 718/994/291 717/995/292 338/996/293 +f 64/611/130 107/714/195 103/707/192 33/547/68 +f 65/618/137 42/565/86 41/563/84 69/626/145 +f 338/997/293 335/998/294 121/748/210 125/755/213 +f 62/608/127 115/735/204 111/725/200 63/609/128 +f 36/553/74 91/674/173 87/665/170 37/555/76 +f 38/557/78 37/555/76 87/665/170 83/654/163 +f 334/999/295 333/695/184 109/696/185 113/731/202 +f 335/998/294 337/1000/296 117/740/207 121/748/210 +f 334/999/295 113/731/202 117/740/207 337/1000/296 +f 39/559/80 79/641/160 75/635/154 40/560/81 +f 35/551/72 34/548/69 99/700/189 95/686/180 +f 830/734/203 57/596/115 56/594/113 829/625/144 +f 371/692/183 339/691/182 364/545/66 372/544/65 +f 36/553/74 35/551/72 95/686/180 91/674/173 +f 43/567/88 42/565/86 65/618/137 66/617/136 +f 325/991/289 326/1001/297 49/579/100 48/576/97 +f 326/1001/297 327/1002/298 50/580/101 49/579/100 +f 327/1002/298 328/1003/299 51/583/104 50/580/101 +f 328/1004/299 329/1005/300 52/586/105 51/585/104 +f 329/1005/300 330/1006/301 53/589/108 52/586/105 +f 330/1006/301 827/1007/302 54/590/109 53/589/108 +f 827/1007/302 828/624/143 55/592/111 54/590/109 +f 34/548/69 33/547/68 103/707/192 99/700/189 +f 331/1008/166 824/638/157 89/639/158 93/678/167 +f 826/682/176 825/660/165 97/663/168 101/683/177 +f 467/1009/303 468/1010/304 469/1011/305 470/1012/306 +f 474/1013/307 475/1014/308 468/1010/304 467/1009/303 +f 470/1012/306 469/1011/305 476/1015/309 471/1016/310 +f 471/1016/310 476/1015/309 477/1017/311 472/1018/312 +f 472/1019/312 477/1020/311 478/1021/313 473/1022/314 +f 473/1022/314 478/1021/313 475/1014/308 474/1013/307 +f 479/1023/315 480/1024/311 481/1025/309 482/1026/316 +f 486/1027/317 487/1028/313 480/1024/311 479/1023/315 +f 482/1026/316 481/1025/309 488/1029/305 483/1030/318 +f 483/1030/318 488/1029/305 489/1031/304 484/1032/319 +f 484/1033/319 489/1034/304 490/1035/308 485/1036/320 +f 485/1036/320 490/1035/308 487/1028/313 486/1027/317 +f 491/1037/321 492/1038/4 493/1039/322 494/1040/323 +f 498/1041/324 499/1042/325 492/1038/4 491/1037/321 +f 494/1040/323 493/1039/322 500/1043/326 495/1044/327 +f 495/1044/327 500/1043/326 501/1045/3 496/1046/328 +f 496/1047/328 501/1048/3 502/1049/329 497/1050/330 +f 497/1050/330 502/1049/329 499/1042/325 498/1041/324 +f 503/1051/331 504/1052/3 505/1053/326 506/1054/332 +f 510/1055/333 511/1056/329 504/1052/3 503/1051/331 +f 506/1054/332 505/1053/326 512/1057/322 507/1058/334 +f 507/1058/334 512/1057/322 513/1059/4 508/1060/335 +f 508/1061/335 513/1062/4 514/1063/325 509/1064/336 +f 509/1064/336 514/1063/325 511/1056/329 510/1055/333 +f 515/1065/337 516/1066/338 517/1067/339 518/1068/340 +f 522/1069/341 523/1070/342 516/1066/338 515/1065/337 +f 518/1068/340 517/1067/339 524/1071/343 519/1072/344 +f 519/1072/344 524/1071/343 525/1073/345 520/1074/346 +f 520/1075/346 525/1076/345 526/1077/347 521/1078/348 +f 521/1078/348 526/1077/347 523/1070/342 522/1069/341 +f 527/1079/349 528/1080/345 529/1081/343 530/1082/350 +f 534/1083/351 535/1084/347 528/1080/345 527/1079/349 +f 530/1082/350 529/1081/343 536/1085/339 531/1086/352 +f 531/1086/352 536/1085/339 537/1087/338 532/1088/353 +f 532/1089/353 537/1090/338 538/1091/342 533/1092/354 +f 533/1092/354 538/1091/342 535/1084/347 534/1083/351 +f 539/1093/355 540/1094/356 541/1095/357 542/1096/358 +f 546/1097/359 547/1098/360 540/1094/356 539/1093/355 +f 542/1096/358 541/1095/357 548/1099/361 543/1100/362 +f 543/1100/362 548/1099/361 549/1101/363 544/1102/364 +f 544/1103/364 549/1104/363 550/1105/365 545/1106/366 +f 545/1106/366 550/1105/365 547/1098/360 546/1097/359 +f 551/1107/367 552/1108/363 553/1109/361 554/1110/368 +f 558/1111/369 559/1112/365 552/1108/363 551/1107/367 +f 554/1110/368 553/1109/361 560/1113/357 555/1114/370 +f 555/1114/370 560/1113/357 561/1115/356 556/1116/371 +f 556/1117/371 561/1118/356 562/1119/360 557/1120/372 +f 557/1120/372 562/1119/360 559/1112/365 558/1111/369 +f 563/1121/312 564/1122/311 565/1123/313 566/1124/314 +f 570/1125/310 571/1126/309 564/1122/311 563/1121/312 +f 566/1124/314 565/1123/313 572/1127/308 567/1128/307 +f 567/1128/307 572/1127/308 573/1129/304 568/1130/303 +f 568/1131/303 573/1132/304 574/1133/305 569/1134/306 +f 569/1134/306 574/1133/305 571/1126/309 570/1125/310 +f 575/1135/319 576/1136/304 577/1137/308 578/1138/320 +f 582/1139/318 583/1140/305 576/1136/304 575/1135/319 +f 578/1138/320 577/1137/308 584/1141/313 579/1142/317 +f 579/1142/317 584/1141/313 585/1143/311 580/1144/315 +f 580/1145/315 585/1146/311 586/1147/309 581/1148/316 +f 581/1148/316 586/1147/309 583/1140/305 582/1139/318 +f 587/1149/328 588/1150/3 589/1151/329 590/1152/330 +f 594/1153/327 595/1154/326 588/1150/3 587/1149/328 +f 590/1152/330 589/1151/329 596/1155/325 591/1156/324 +f 591/1156/324 596/1155/325 597/1157/4 592/1158/321 +f 592/1159/321 597/1160/4 598/1161/322 593/1162/323 +f 593/1162/323 598/1161/322 595/1154/326 594/1153/327 +f 599/1163/335 600/1164/4 601/1165/325 602/1166/336 +f 606/1167/334 607/1168/322 600/1164/4 599/1163/335 +f 602/1166/336 601/1165/325 608/1169/329 603/1170/333 +f 603/1170/333 608/1169/329 609/1171/3 604/1172/331 +f 604/1173/331 609/1174/3 610/1175/326 605/1176/332 +f 605/1176/332 610/1175/326 607/1168/322 606/1167/334 +f 611/1177/346 612/1178/345 613/1179/347 614/1180/348 +f 618/1181/344 619/1182/343 612/1178/345 611/1177/346 +f 614/1180/348 613/1179/347 620/1183/342 615/1184/341 +f 615/1184/341 620/1183/342 621/1185/338 616/1186/337 +f 616/1187/337 621/1188/338 622/1189/339 617/1190/340 +f 617/1190/340 622/1189/339 619/1182/343 618/1181/344 +f 623/1191/353 624/1192/338 625/1193/342 626/1194/354 +f 630/1195/352 631/1196/339 624/1192/338 623/1191/353 +f 626/1194/354 625/1193/342 632/1197/347 627/1198/351 +f 627/1198/351 632/1197/347 633/1199/345 628/1200/349 +f 628/1201/349 633/1202/345 634/1203/343 629/1204/350 +f 629/1204/350 634/1203/343 631/1196/339 630/1195/352 +f 635/1205/364 636/1206/363 637/1207/365 638/1208/366 +f 642/1209/362 643/1210/361 636/1206/363 635/1205/364 +f 638/1208/366 637/1207/365 644/1211/360 639/1212/359 +f 639/1212/359 644/1211/360 645/1213/356 640/1214/355 +f 640/1215/355 645/1216/356 646/1217/357 641/1218/358 +f 641/1218/358 646/1217/357 643/1210/361 642/1209/362 +f 647/1219/371 648/1220/356 649/1221/360 650/1222/372 +f 654/1223/370 655/1224/357 648/1220/356 647/1219/371 +f 650/1222/372 649/1221/360 656/1225/365 651/1226/369 +f 651/1226/369 656/1225/365 657/1227/363 652/1228/367 +f 652/1229/367 657/1230/363 658/1231/361 653/1232/368 +f 653/1232/368 658/1231/361 655/1224/357 654/1223/370 +f 38/557/78 83/654/163 79/641/160 39/559/80 +f 69/626/145 41/563/84 40/560/81 75/635/154 +f 822/990/288 77/637/156 81/632/151 823/631/150 +f 43/567/88 66/617/136 67/621/140 819/992/290 321/613/132 44/568/89 +f 60/604/123 59/600/119 832/722/197 338/997/293 125/755/213 123/697/186 +f 868/1233/373 835/1234/374 834/1235/375 867/1236/376 +f 869/1237/377 836/1238/378 835/1234/374 868/1233/373 +f 870/1239/379 837/1240/380 836/1238/378 869/1237/377 +f 871/1241/381 838/1242/382 837/1240/380 870/1239/379 +f 872/1243/383 839/1244/384 838/1242/382 871/1241/381 +f 873/1245/385 840/1246/386 839/1244/384 872/1243/383 +f 874/1247/387 841/1248/388 840/1246/386 873/1245/385 +f 875/1249/389 859/1250/390 841/1248/388 874/1247/387 +f 876/1251/391 842/1252/392 859/1250/390 875/1249/389 +f 877/1253/393 860/1254/394 842/1252/392 876/1251/391 +f 878/1255/395 843/1256/396 860/1254/394 877/1253/393 +f 879/1257/397 844/1258/398 843/1256/396 878/1255/395 +f 880/1259/399 861/1260/400 844/1258/398 879/1257/397 +f 881/1261/401 845/1262/402 861/1263/400 880/1259/399 +f 882/1264/403 846/1265/404 845/1262/402 881/1261/401 +f 883/1266/405 847/1267/406 846/1265/404 882/1264/403 +f 884/1268/407 848/1269/408 847/1270/406 883/1271/405 +f 885/1272/409 849/1273/410 848/1269/408 884/1268/407 +f 886/1274/411 862/1275/412 849/1273/410 885/1272/409 +f 888/1276/413 850/1277/414 862/1275/412 886/1274/411 +f 889/1278/415 852/1279/416 851/1280/417 887/1281/418 +f 887/1281/418 851/1280/417 850/1277/414 888/1276/413 +f 890/1282/419 863/1283/420 852/1279/416 889/1278/415 +f 891/1284/421 853/1285/422 863/1283/420 890/1282/419 +f 892/1286/423 864/1287/424 853/1285/422 891/1284/421 +f 894/1288/425 854/1289/426 864/1287/424 892/1286/423 +f 895/1290/427 856/1291/428 855/1292/429 893/1293/430 +f 893/1293/430 855/1292/429 854/1289/426 894/1288/425 +f 896/1294/431 857/1295/432 856/1291/428 895/1290/427 +f 866/1296/433 858/1297/434 857/1295/432 896/1294/431 +f 688/1298/435 691/1299/436 692/1300/437 659/1301/438 +f 660/1302/439 659/1301/438 692/1300/437 693/1303/440 +f 661/1304/441 660/1302/439 693/1303/440 694/1305/442 +f 662/1306/443 661/1304/441 694/1305/442 695/1307/444 +f 663/1308/445 662/1306/443 695/1307/444 696/1309/446 +f 664/1310/447 663/1308/445 696/1309/446 697/1311/448 +f 664/1310/447 697/1311/448 698/1312/449 665/1313/450 +f 666/1314/451 665/1313/450 698/1312/449 699/1315/452 +f 667/1316/453 666/1314/451 699/1315/452 700/1317/454 +f 668/1318/455 667/1316/453 700/1317/454 701/1319/456 +f 668/1318/455 701/1319/456 702/1320/457 669/1321/458 +f 669/1321/458 702/1320/457 703/1322/459 689/1323/460 +f 670/1324/461 704/1325/462 705/1326/463 671/1327/464 +f 689/1323/460 703/1322/459 704/1325/462 670/1324/461 +f 671/1327/464 705/1326/463 706/1328/465 672/1329/466 +f 673/1330/467 672/1329/466 706/1328/465 707/1331/468 +f 673/1330/467 707/1331/468 708/1332/469 674/1333/470 +f 675/1334/471 674/1333/470 708/1332/469 709/1335/472 +f 675/1336/471 709/1337/472 710/1338/473 676/1339/474 +f 677/1340/475 676/1339/474 710/1338/473 711/1341/476 +f 677/1340/475 711/1341/476 712/1342/477 678/1343/478 +f 678/1343/478 712/1342/477 713/1344/479 680/1345/480 +f 680/1345/480 713/1344/479 714/1346/481 679/1347/482 +f 679/1347/482 714/1346/481 715/1348/483 681/1349/484 +f 681/1349/484 715/1348/483 716/1350/485 682/1351/486 +f 682/1351/486 716/1350/485 717/995/292 690/1352/487 +f 685/1353/488 683/1354/489 718/994/291 719/1355/490 +f 683/1354/489 690/1352/487 717/995/292 718/994/291 +f 686/1356/491 684/1357/492 720/1358/493 721/1359/494 +f 685/1353/488 719/1355/490 720/1358/493 684/1357/492 +f 687/1360/495 686/1356/491 721/1359/494 722/1361/496 +f 687/1360/495 722/1361/496 691/1299/436 688/1298/435 +f 867/1236/376 834/1235/375 833/1362/497 865/1363/498 +f 723/1364/499 724/1365/500 725/1366/501 726/1367/502 +f 730/1368/503 731/1369/504 724/1365/500 723/1364/499 +f 726/1367/502 725/1366/501 732/1370/505 727/1371/506 +f 727/1371/506 732/1370/505 733/1372/507 728/1373/508 +f 728/1374/508 733/1375/507 734/1376/509 729/1377/510 +f 729/1377/510 734/1376/509 731/1369/504 730/1368/503 +f 735/1378/511 736/1379/512 737/1380/513 738/1381/514 +f 742/1382/515 743/1383/516 736/1379/512 735/1378/511 +f 738/1381/514 737/1380/513 744/1384/517 739/1385/518 +f 739/1385/518 744/1384/517 745/1386/519 740/1387/520 +f 740/1388/520 745/1389/519 746/1390/521 741/1391/522 +f 741/1391/522 746/1390/521 743/1383/516 742/1382/515 +f 747/1392/523 748/1393/524 749/1394/525 750/1395/526 +f 754/1396/527 755/1397/528 748/1393/524 747/1392/523 +f 750/1395/526 749/1394/525 756/1398/529 751/1399/530 +f 751/1399/530 756/1398/529 757/1400/531 752/1401/532 +f 752/1402/532 757/1403/531 758/1404/533 753/1405/534 +f 753/1405/534 758/1404/533 755/1397/528 754/1396/527 +f 759/1406/535 760/1407/536 761/1408/537 762/1409/538 +f 766/1410/539 767/1411/540 760/1407/536 759/1406/535 +f 762/1409/538 761/1408/537 768/1412/541 763/1413/542 +f 763/1413/542 768/1412/541 769/1414/543 764/1415/544 +f 764/1416/544 769/1417/543 770/1418/545 765/1419/546 +f 765/1419/546 770/1418/545 767/1411/540 766/1410/539 +f 771/1420/508 772/1421/507 773/1422/509 774/1423/510 +f 778/1424/506 779/1425/505 772/1421/507 771/1420/508 +f 774/1423/510 773/1422/509 780/1426/504 775/1427/503 +f 775/1427/503 780/1426/504 781/1428/500 776/1429/499 +f 776/1430/499 781/1431/500 782/1432/501 777/1433/502 +f 777/1433/502 782/1432/501 779/1425/505 778/1424/506 +f 783/1434/520 784/1435/519 785/1436/521 786/1437/522 +f 790/1438/518 791/1439/517 784/1435/519 783/1434/520 +f 786/1437/522 785/1436/521 792/1440/516 787/1441/515 +f 787/1441/515 792/1440/516 793/1442/512 788/1443/511 +f 788/1444/511 793/1445/512 794/1446/513 789/1447/514 +f 789/1447/514 794/1446/513 791/1439/517 790/1438/518 +f 795/1448/532 796/1449/531 797/1450/533 798/1451/534 +f 802/1452/530 803/1453/529 796/1449/531 795/1448/532 +f 798/1451/534 797/1450/533 804/1454/528 799/1455/527 +f 799/1455/527 804/1454/528 805/1456/524 800/1457/523 +f 800/1458/523 805/1459/524 806/1460/525 801/1461/526 +f 801/1461/526 806/1460/525 803/1453/529 802/1452/530 +f 807/1462/544 808/1463/543 809/1464/545 810/1465/546 +f 814/1466/542 815/1467/541 808/1463/543 807/1462/544 +f 810/1465/546 809/1464/545 816/1468/540 811/1469/539 +f 811/1469/539 816/1468/540 817/1470/536 812/1471/535 +f 812/1472/535 817/1473/536 818/1474/537 813/1475/538 +f 813/1475/538 818/1474/537 815/1467/541 814/1466/542 +f 321/1476/132 701/1319/456 700/1317/454 322/1477/131 +f 821/1478/286 704/1325/462 703/1322/459 820/1479/287 +f 822/1480/288 705/1326/463 704/1325/462 821/1478/286 +f 322/1477/131 700/1317/454 699/1315/452 323/1481/133 +f 822/1480/288 823/1482/150 706/1328/465 705/1326/463 +f 819/1483/290 702/1320/457 701/1319/456 321/1476/132 +f 820/1479/287 703/1322/459 702/1320/457 819/1483/290 +f 333/1484/184 334/1485/295 714/1346/481 713/1344/479 +f 829/1486/144 828/1487/143 722/1361/496 721/1359/494 +f 338/996/293 717/995/292 716/1350/485 335/1488/294 +f 337/1489/296 715/1348/483 714/1346/481 334/1485/295 +f 831/1490/198 719/1355/490 718/994/291 832/993/197 +f 830/1491/203 720/1358/493 719/1355/490 831/1490/198 +f 829/1486/144 721/1359/494 720/1358/493 830/1491/203 +f 335/1488/294 716/1350/485 715/1348/483 337/1489/296 +f 323/1481/133 699/1315/452 698/1312/449 324/1492/134 +f 325/1493/289 324/1492/134 698/1312/449 697/1311/448 +f 865/1363/498 833/1362/497 858/1297/434 866/1296/433 +f 827/1494/302 330/1495/301 692/1300/437 691/1299/436 +f 330/1495/301 329/1496/300 693/1303/440 692/1300/437 +f 329/1496/300 328/1497/299 694/1305/442 693/1303/440 +f 328/1497/299 327/1498/298 695/1307/444 694/1305/442 +f 327/1498/298 326/1499/297 696/1309/446 695/1307/444 +f 326/1499/297 325/1493/289 697/1311/448 696/1309/446 +f 823/1482/150 336/1500/149 707/1331/468 706/1328/465 +f 336/1500/149 824/1501/157 708/1332/469 707/1331/468 +f 824/1501/157 331/1502/166 709/1335/472 708/1332/469 +f 331/1503/166 825/1504/165 710/1338/473 709/1337/472 +f 825/1504/165 826/1505/176 711/1341/476 710/1338/473 +f 826/1505/176 332/1506/175 712/1342/477 711/1341/476 +f 332/1506/175 333/1484/184 713/1344/479 712/1342/477 +f 722/1361/496 828/1487/143 827/1494/302 691/1299/436 +f 897/1507/547 898/1508/548 899/1509/549 900/1510/550 +f 904/1511/551 905/1512/552 898/1508/548 897/1507/547 +f 900/1510/550 899/1509/549 906/1513/553 901/1514/554 +f 901/1514/554 906/1513/553 907/1515/555 902/1516/556 +f 902/1517/556 907/1518/555 908/1519/557 903/1520/558 +f 903/1520/558 908/1519/557 905/1512/552 904/1511/551 +f 909/1521/559 910/1522/1 911/1523/560 912/1524/561 +f 916/1525/562 917/1526/563 910/1522/1 909/1521/559 +f 912/1524/561 911/1523/560 918/1527/564 913/1528/565 +f 913/1528/565 918/1527/564 919/1529/2 914/1530/566 +f 914/1531/566 919/1532/2 920/1533/567 915/1534/568 +f 915/1534/568 920/1533/567 917/1526/563 916/1525/562 +f 921/1535/569 922/1536/570 923/1537/571 924/1538/572 +f 928/1539/573 929/1540/574 922/1536/570 921/1535/569 +f 924/1538/572 923/1537/571 930/1541/575 925/1542/576 +f 925/1542/576 930/1541/575 931/1543/577 926/1544/578 +f 926/1545/578 931/1546/577 932/1547/579 927/1548/580 +f 927/1548/580 932/1547/579 929/1540/574 928/1539/573 +f 933/1549/581 934/1550/363 935/1551/582 936/1552/583 +f 940/1553/584 941/1554/585 934/1550/363 933/1549/581 +f 936/1552/583 935/1551/582 942/1555/586 937/1556/587 +f 937/1556/587 942/1555/586 943/1557/356 938/1558/588 +f 938/1559/588 943/1560/356 944/1561/589 939/1562/590 +f 939/1562/590 944/1561/589 941/1554/585 940/1553/584 +f 945/1563/556 946/1564/555 947/1565/557 948/1566/558 +f 952/1567/554 953/1568/553 946/1564/555 945/1563/556 +f 948/1566/558 947/1565/557 954/1569/552 949/1570/551 +f 949/1570/551 954/1569/552 955/1571/548 950/1572/547 +f 950/1573/547 955/1574/548 956/1575/549 951/1576/550 +f 951/1576/550 956/1575/549 953/1568/553 952/1567/554 +f 957/1577/566 958/1578/2 959/1579/567 960/1580/568 +f 964/1581/565 965/1582/564 958/1578/2 957/1577/566 +f 960/1580/568 959/1579/567 966/1583/563 961/1584/562 +f 961/1584/562 966/1583/563 967/1585/1 962/1586/559 +f 962/1587/559 967/1588/1 968/1589/560 963/1590/561 +f 963/1590/561 968/1589/560 965/1582/564 964/1581/565 +f 969/1591/578 970/1592/577 971/1593/579 972/1594/580 +f 976/1595/576 977/1596/575 970/1592/577 969/1591/578 +f 972/1594/580 971/1593/579 978/1597/574 973/1598/573 +f 973/1598/573 978/1597/574 979/1599/570 974/1600/569 +f 974/1601/569 979/1602/570 980/1603/571 975/1604/572 +f 975/1604/572 980/1603/571 977/1596/575 976/1595/576 +f 981/1605/588 982/1606/356 983/1607/589 984/1608/590 +f 988/1609/587 989/1610/586 982/1606/356 981/1605/588 +f 984/1608/590 983/1607/589 990/1611/585 985/1612/584 +f 985/1612/584 990/1611/585 991/1613/363 986/1614/581 +f 986/1615/581 991/1616/363 992/1617/582 987/1618/583 +f 987/1618/583 992/1617/582 989/1610/586 988/1609/587 diff --git a/mods/pipeworks/models/pipeworks_pipe_6_lowpoly.obj b/mods/pipeworks/models/pipeworks_pipe_6_lowpoly.obj new file mode 100644 index 00000000..0ab94ebc --- /dev/null +++ b/mods/pipeworks/models/pipeworks_pipe_6_lowpoly.obj @@ -0,0 +1,378 @@ +# Blender v2.78 (sub 0) OBJ File: 'pipe-master-lowpoly.blend' +# www.blender.org +o Cylinder.002_Cylinder.006_None.001 +v -0.468750 -0.156250 -0.064721 +v -0.468750 -0.064721 -0.156250 +v -0.468750 0.064721 -0.156250 +v -0.468750 0.156250 -0.064721 +v -0.468750 0.156250 0.064721 +v -0.468750 0.064721 0.156250 +v -0.468750 -0.064721 0.156250 +v -0.468750 -0.156250 0.064721 +v -0.500000 -0.064721 -0.156250 +v -0.500000 -0.156250 -0.064721 +v -0.500000 -0.156250 0.064721 +v -0.500000 -0.064721 0.156250 +v -0.500000 0.064721 0.156250 +v -0.500000 0.156250 0.064721 +v -0.500000 0.156250 -0.064721 +v -0.500000 0.064721 -0.156250 +v 0.500000 -0.156250 -0.064721 +v 0.500000 -0.064721 -0.156250 +v 0.500000 0.064721 -0.156250 +v 0.500000 0.156250 -0.064721 +v 0.500000 0.156250 0.064721 +v 0.500000 0.064721 0.156250 +v 0.500000 -0.064721 0.156250 +v 0.500000 -0.156250 0.064721 +v 0.468750 -0.064721 -0.156250 +v 0.468750 -0.156250 -0.064721 +v 0.468750 -0.156250 0.064721 +v 0.468750 -0.064721 0.156250 +v 0.468750 0.064721 0.156250 +v 0.468750 0.156250 0.064721 +v 0.468750 0.156250 -0.064721 +v 0.468750 0.064721 -0.156250 +v -0.156250 -0.500000 -0.064721 +v -0.064721 -0.500000 -0.156250 +v 0.064721 -0.500000 -0.156250 +v 0.156250 -0.500000 -0.064721 +v 0.156250 -0.500000 0.064721 +v 0.064721 -0.500000 0.156250 +v -0.064721 -0.500000 0.156250 +v -0.156250 -0.500000 0.064721 +v -0.064721 -0.468750 -0.156250 +v -0.156250 -0.468750 -0.064721 +v -0.156250 -0.468750 0.064721 +v -0.064721 -0.468750 0.156250 +v 0.064721 -0.468750 0.156250 +v 0.156250 -0.468750 0.064721 +v 0.156250 -0.468750 -0.064721 +v 0.064721 -0.468750 -0.156250 +v -0.468750 -0.051777 -0.125000 +v -0.468750 -0.125000 -0.051777 +v -0.468750 -0.125000 0.051777 +v -0.468750 -0.051777 0.125000 +v -0.468750 0.051777 0.125000 +v -0.468750 0.125000 0.051777 +v -0.468750 0.125000 -0.051777 +v -0.468750 0.051777 -0.125000 +v 0.468750 -0.125000 -0.051777 +v 0.468750 -0.051777 -0.125000 +v 0.468750 0.051777 -0.125000 +v 0.468750 0.125000 -0.051777 +v 0.468750 0.125000 0.051777 +v 0.468750 0.051777 0.125000 +v 0.468750 -0.051777 0.125000 +v 0.468750 -0.125000 0.051777 +v 0.051777 -0.051777 0.125000 +v 0.125000 -0.125000 0.051777 +v 0.125000 -0.125000 -0.051777 +v 0.051777 -0.051777 -0.125000 +v -0.051777 -0.468750 -0.125000 +v -0.051777 -0.051777 -0.125000 +v 0.051777 -0.468750 -0.125000 +v -0.051777 -0.051777 0.125000 +v -0.051777 -0.468750 0.125000 +v 0.051777 -0.468750 0.125000 +v -0.125000 -0.125000 -0.051777 +v -0.125000 -0.125000 0.051777 +v -0.125000 -0.468750 -0.051777 +v 0.125000 -0.468750 -0.051777 +v 0.125000 -0.468750 0.051777 +v -0.125000 -0.468750 0.051777 +vt 0.7188 0.8906 +vt 0.6250 0.9844 +vt 0.5000 0.9844 +vt 0.4062 0.8906 +vt 0.4062 0.7656 +vt 0.5000 0.6719 +vt 0.6250 0.6719 +vt 0.7188 0.7656 +vt 0.2500 0.9844 +vt 0.3438 0.8906 +vt 0.3438 0.7656 +vt 0.2500 0.6719 +vt 0.1250 0.6719 +vt 0.0312 0.7656 +vt 0.0312 0.8906 +vt 0.1250 0.9844 +vt 0.3438 0.8906 +vt 0.2500 0.9844 +vt 0.1250 0.9844 +vt 0.0312 0.8906 +vt 0.0312 0.7656 +vt 0.1250 0.6719 +vt 0.2500 0.6719 +vt 0.3438 0.7656 +vt 0.6250 0.9844 +vt 0.7188 0.8906 +vt 0.7188 0.7656 +vt 0.6250 0.6719 +vt 0.5000 0.6719 +vt 0.4062 0.7656 +vt 0.4062 0.8906 +vt 0.5000 0.9844 +vt 0.3438 0.8906 +vt 0.2500 0.9844 +vt 0.1250 0.9844 +vt 0.0312 0.8906 +vt 0.0312 0.7656 +vt 0.1250 0.6719 +vt 0.2500 0.6719 +vt 0.3438 0.7656 +vt 0.6250 0.9844 +vt 0.7188 0.8906 +vt 0.7188 0.7656 +vt 0.6250 0.6719 +vt 0.5000 0.6719 +vt 0.4062 0.7656 +vt 0.4062 0.8906 +vt 0.5000 0.9844 +vt 0.8125 0.5938 +vt 0.8125 0.5625 +vt 0.8750 0.5625 +vt 0.8750 0.5938 +vt 0.9375 0.5625 +vt 0.9375 0.5938 +vt 1.0000 0.5625 +vt 1.0000 0.5938 +vt 0.5000 0.5938 +vt 0.5000 0.5625 +vt 0.5625 0.5625 +vt 0.5625 0.5938 +vt 0.6250 0.5625 +vt 0.6250 0.5938 +vt 0.6875 0.5625 +vt 0.6875 0.5938 +vt 0.7500 0.5625 +vt 0.7500 0.5938 +vt 0.3750 0.5938 +vt 0.3750 0.5625 +vt 0.4375 0.5625 +vt 0.4375 0.5938 +vt 0.3125 0.5938 +vt 0.3125 0.5625 +vt 0.5000 0.5625 +vt 0.5000 0.5938 +vt 0.0000 0.5938 +vt 0.0000 0.5625 +vt 0.0625 0.5625 +vt 0.0625 0.5938 +vt 0.1250 0.5625 +vt 0.1250 0.5938 +vt 0.1875 0.5625 +vt 0.1875 0.5938 +vt 0.2500 0.5625 +vt 0.2500 0.5938 +vt 0.0000 1.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 1.0000 0.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0022 0.5135 +vt 0.8768 0.5135 +vt 0.8768 0.2909 +vt 1.0022 0.3300 +vt 0.1242 0.5135 +vt 0.1242 0.3300 +vt 0.2498 0.2909 +vt 0.2498 0.5135 +vt 0.2498 0.5135 +vt 0.2498 0.2909 +vt 0.3752 0.2909 +vt 0.3752 0.5135 +vt 0.6260 0.5135 +vt 0.5006 0.5135 +vt 0.5006 0.0130 +vt 0.6259 0.0130 +vt 0.7514 0.0130 +vt 0.7514 0.5135 +vt 0.8767 0.0130 +vt 0.8768 0.2356 +vt -0.0012 0.5135 +vt -0.0012 0.3300 +vt 0.8768 0.5135 +vt 0.7514 0.5135 +vt 0.7514 0.2909 +vt 0.8768 0.2909 +vt 0.3752 0.5135 +vt 0.3751 0.0130 +vt 0.1242 0.0130 +vt 0.1242 0.1965 +vt -0.0012 0.1965 +vt -0.0013 0.0130 +vt 0.3750 0.5938 +vt 0.3750 0.5625 +vt 0.4375 0.5625 +vt 0.4375 0.5938 +vt 0.3125 0.5938 +vt 0.3125 0.5625 +vt 0.5000 0.5625 +vt 0.5000 0.5938 +vt 0.0000 0.5938 +vt 0.0000 0.5625 +vt 0.0625 0.5625 +vt 0.0625 0.5938 +vt 0.1250 0.5625 +vt 0.1250 0.5938 +vt 0.1875 0.5625 +vt 0.1875 0.5938 +vt 0.2500 0.5625 +vt 0.2500 0.5938 +vt 1.0000 0.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 0.1242 0.5135 +vt 0.1242 0.3300 +vt 1.0022 0.5135 +vt 1.0022 0.3300 +vt 0.2498 0.2356 +vt 0.2498 0.0130 +vt 0.5006 0.3300 +vt 0.5006 0.5135 +vt 0.6260 0.5135 +vt 0.6260 0.3300 +vt -0.0012 0.5135 +vt -0.0012 0.3300 +vt 1.0021 0.0130 +vt 1.0022 0.1965 +vn 1.0000 0.0000 0.0000 +vn -1.0000 -0.0000 0.0000 +vn 0.0000 -1.0000 0.0000 +vn 0.0000 1.0000 -0.0000 +vn -0.6302 -0.2971 -0.7173 +vn 0.6302 -0.2971 -0.7173 +vn 0.6302 -0.7173 -0.2971 +vn -0.6302 -0.7173 -0.2971 +vn 0.6302 -0.7173 0.2971 +vn -0.6302 -0.7173 0.2971 +vn 0.6302 -0.2971 0.7173 +vn -0.6302 -0.2971 0.7173 +vn 0.6302 0.2971 0.7173 +vn -0.6302 0.2971 0.7173 +vn 0.6302 0.7173 0.2971 +vn -0.6302 0.7173 0.2971 +vn 0.6302 0.7173 -0.2971 +vn -0.6302 0.7173 -0.2971 +vn 0.6302 0.2971 -0.7173 +vn -0.6302 0.2971 -0.7173 +vn -0.6303 -0.2971 -0.7173 +vn -0.6303 -0.7173 -0.2971 +vn -0.6303 -0.7173 0.2971 +vn -0.6303 -0.2971 0.7173 +vn -0.6303 0.2971 0.7173 +vn -0.6303 0.7173 0.2971 +vn -0.6303 0.7173 -0.2971 +vn -0.6303 0.2971 -0.7173 +vn 0.6303 -0.7173 -0.2971 +vn 0.6303 -0.2971 -0.7173 +vn 0.6303 0.2971 -0.7173 +vn 0.6303 0.7173 -0.2971 +vn 0.6303 0.7173 0.2971 +vn 0.6303 0.2971 0.7173 +vn 0.6303 -0.2971 0.7173 +vn 0.6303 -0.7173 0.2971 +vn 0.1101 -0.1101 0.9878 +vn 0.5789 -0.5789 0.5743 +vn 0.5789 -0.5789 -0.5743 +vn 0.1101 -0.1101 -0.9878 +vn -0.2971 -0.6303 -0.7173 +vn -0.1101 -0.1101 -0.9878 +vn 0.2971 -0.6303 -0.7173 +vn -0.1101 -0.1101 0.9878 +vn -0.2971 -0.6303 0.7173 +vn 0.2971 -0.6303 0.7173 +vn -0.5789 -0.5789 -0.5743 +vn -0.5789 -0.5789 0.5743 +vn -0.7173 0.6302 -0.2971 +vn -0.7173 -0.6302 -0.2971 +vn -0.7173 -0.6302 0.2971 +vn -0.7173 0.6302 0.2971 +vn -0.2971 0.6302 -0.7173 +vn -0.2971 -0.6302 -0.7173 +vn -0.2971 -0.6302 0.7173 +vn -0.2971 0.6302 0.7173 +vn 0.2971 -0.6302 0.7173 +vn 0.2971 0.6302 0.7173 +vn 0.7173 -0.6302 0.2971 +vn 0.7173 0.6302 0.2971 +vn 0.7173 -0.6302 -0.2971 +vn 0.7173 0.6302 -0.2971 +vn 0.2971 -0.6302 -0.7173 +vn 0.2971 0.6302 -0.7173 +vn -0.7173 -0.6303 -0.2971 +vn 0.7173 -0.6303 -0.2971 +vn 0.7173 -0.6303 0.2971 +vn -0.7173 -0.6303 0.2971 +g Cylinder.002_Cylinder.006_None.001_Cylinder.002_Cylinder.006_None.001_None +s off +f 1/1/1 2/2/1 3/3/1 4/4/1 5/5/1 6/6/1 7/7/1 8/8/1 +f 9/9/2 10/10/2 11/11/2 12/12/2 13/13/2 14/14/2 15/15/2 16/16/2 +f 17/17/1 18/18/1 19/19/1 20/20/1 21/21/1 22/22/1 23/23/1 24/24/1 +f 25/25/2 26/26/2 27/27/2 28/28/2 29/29/2 30/30/2 31/31/2 32/32/2 +f 33/33/3 34/34/3 35/35/3 36/36/3 37/37/3 38/38/3 39/39/3 40/40/3 +f 41/41/4 42/42/4 43/43/4 44/44/4 45/45/4 46/46/4 47/47/4 48/48/4 +s 1 +f 9/49/5 2/50/6 1/51/7 10/52/8 +f 10/52/8 1/51/7 8/53/9 11/54/10 +f 11/54/10 8/53/9 7/55/11 12/56/12 +f 12/57/12 7/58/11 6/59/13 13/60/14 +f 13/60/14 6/59/13 5/61/15 14/62/16 +f 14/62/16 5/61/15 4/63/17 15/64/18 +f 15/64/18 4/63/17 3/65/19 16/66/20 +f 16/66/20 3/65/19 2/50/6 9/49/5 +f 26/67/8 17/68/7 24/69/9 27/70/10 +f 25/71/5 18/72/6 17/68/7 26/67/8 +f 27/70/10 24/69/9 23/73/11 28/74/12 +f 28/75/12 23/76/11 22/77/13 29/78/14 +f 29/78/14 22/77/13 21/79/15 30/80/16 +f 30/80/16 21/79/15 20/81/17 31/82/18 +f 31/82/18 20/81/17 19/83/19 32/84/20 +f 32/84/20 19/83/19 18/72/6 25/71/5 +f 49/85/21 50/86/22 51/87/23 52/88/24 53/89/25 54/90/26 55/91/27 56/92/28 +f 57/93/29 58/94/30 59/95/31 60/96/32 61/97/33 62/98/34 63/99/35 64/100/36 +f 64/101/36 63/102/35 65/103/37 66/104/38 +f 57/105/29 67/106/39 68/107/40 58/108/30 +f 69/109/41 70/110/42 68/111/40 71/112/43 +f 61/113/33 60/114/32 55/115/27 54/116/26 +f 53/117/25 62/118/34 61/113/33 54/116/26 +f 53/117/25 52/119/24 72/120/44 65/103/37 63/102/35 62/118/34 +f 57/105/29 64/121/36 66/122/38 67/106/39 +f 73/123/45 74/124/46 65/125/37 72/126/44 +f 55/115/27 60/114/32 59/127/31 56/128/28 +f 50/129/22 75/130/47 76/131/48 51/132/23 +f 42/133/49 33/134/50 40/135/51 43/136/52 +f 41/137/53 34/138/54 33/134/50 42/133/49 +f 43/136/52 40/135/51 39/139/55 44/140/56 +f 44/141/56 39/142/55 38/143/57 45/144/58 +f 45/144/58 38/143/57 37/145/59 46/146/60 +f 46/146/60 37/145/59 36/147/61 47/148/62 +f 47/148/62 36/147/61 35/149/63 48/150/64 +f 48/150/64 35/149/63 34/138/54 41/137/53 +f 77/151/65 69/152/41 71/153/43 78/154/66 79/155/67 74/156/46 73/157/45 80/158/68 +f 77/159/65 75/160/47 70/110/42 69/109/41 +f 80/161/68 73/123/45 72/126/44 76/162/48 +f 58/108/30 68/107/40 70/163/42 49/164/21 56/128/28 59/127/31 +f 71/112/43 68/111/40 67/165/39 78/166/66 +f 79/167/67 66/168/38 65/125/37 74/124/46 +f 50/129/22 49/164/21 70/163/42 75/130/47 +f 79/167/67 78/166/66 67/165/39 66/168/38 +f 77/159/65 80/169/68 76/170/48 75/160/47 +f 51/171/23 76/172/48 72/120/44 52/119/24 diff --git a/mods/pipeworks/models/pipeworks_pipe_7.obj b/mods/pipeworks/models/pipeworks_pipe_7.obj new file mode 100644 index 00000000..12d389a7 --- /dev/null +++ b/mods/pipeworks/models/pipeworks_pipe_7.obj @@ -0,0 +1,5314 @@ +# Blender v2.78 (sub 0) OBJ File: 'pipe-spigot-pouring.blend' +# www.blender.org +o Pipe_Cylinder.002_None.004 +v -0.460912 0.130078 -0.063644 +v -0.460912 0.139022 -0.062467 +v -0.460912 0.142474 -0.054132 +v -0.460912 0.136982 -0.046976 +v -0.460912 0.128039 -0.048153 +v -0.460912 0.124587 -0.056487 +v 0.460914 0.136982 -0.046976 +v 0.460914 0.142474 -0.054133 +v 0.460914 0.139022 -0.062467 +v 0.460914 0.130078 -0.063644 +v 0.460914 0.124587 -0.056488 +v 0.460914 0.128039 -0.048153 +v -0.460912 0.046976 -0.136982 +v -0.460912 0.054133 -0.142474 +v -0.460912 0.062467 -0.139022 +v -0.460912 0.063644 -0.130078 +v -0.460912 0.056488 -0.124587 +v -0.460912 0.048154 -0.128039 +v 0.460914 0.063644 -0.130078 +v 0.460914 0.062467 -0.139022 +v 0.460914 0.054133 -0.142474 +v 0.460914 0.046976 -0.136982 +v 0.460914 0.048153 -0.128039 +v 0.460914 0.056487 -0.124587 +v -0.460912 -0.063644 -0.130078 +v -0.460912 -0.062467 -0.139022 +v -0.460912 -0.054132 -0.142474 +v -0.460912 -0.046976 -0.136982 +v -0.460912 -0.048153 -0.128039 +v -0.460912 -0.056487 -0.124587 +v 0.460914 -0.046976 -0.136982 +v 0.460914 -0.054133 -0.142474 +v 0.460914 -0.062467 -0.139022 +v 0.460914 -0.063644 -0.130078 +v 0.460914 -0.056488 -0.124587 +v 0.460914 -0.048153 -0.128039 +v -0.460912 -0.136982 -0.046976 +v -0.460912 -0.142474 -0.054133 +v -0.460912 -0.139022 -0.062467 +v -0.460912 -0.130078 -0.063644 +v -0.460912 -0.124587 -0.056488 +v -0.460912 -0.128039 -0.048153 +v 0.460914 -0.130078 -0.063644 +v 0.460914 -0.139022 -0.062467 +v 0.460914 -0.142474 -0.054133 +v 0.460914 -0.136982 -0.046976 +v 0.460914 -0.128039 -0.048153 +v 0.460914 -0.124587 -0.056487 +v -0.460912 -0.130078 0.063644 +v -0.460912 -0.139022 0.062467 +v -0.460912 -0.142474 0.054132 +v -0.460912 -0.136982 0.046976 +v -0.460912 -0.128039 0.048153 +v -0.460912 -0.124587 0.056487 +v 0.460914 -0.136982 0.046976 +v 0.460914 -0.142474 0.054133 +v 0.460914 -0.139022 0.062467 +v 0.460914 -0.130078 0.063644 +v 0.460914 -0.124587 0.056487 +v 0.460914 -0.128039 0.048153 +v -0.460912 -0.046976 0.136982 +v -0.460912 -0.054133 0.142474 +v -0.460912 -0.062467 0.139022 +v -0.460912 -0.063644 0.130078 +v -0.460912 -0.056488 0.124587 +v -0.460912 -0.048153 0.128039 +v 0.460914 -0.063644 0.130078 +v 0.460914 -0.062467 0.139022 +v 0.460914 -0.054132 0.142474 +v 0.460914 -0.046976 0.136982 +v 0.460914 -0.048153 0.128039 +v 0.460914 -0.056487 0.124587 +v -0.460912 0.063644 0.130078 +v -0.460912 0.062467 0.139022 +v -0.460912 0.054132 0.142474 +v -0.460912 0.046976 0.136982 +v -0.460912 0.048153 0.128039 +v -0.460912 0.056487 0.124587 +v 0.460914 0.046976 0.136982 +v 0.460914 0.054133 0.142474 +v 0.460914 0.062467 0.139022 +v 0.460914 0.063644 0.130078 +v 0.460914 0.056487 0.124587 +v 0.460914 0.048153 0.128039 +v -0.460912 0.136982 0.046976 +v -0.460912 0.142474 0.054133 +v -0.460912 0.139022 0.062467 +v -0.460912 0.130078 0.063644 +v -0.460912 0.124587 0.056488 +v -0.460912 0.128039 0.048153 +v 0.460914 0.130078 0.063644 +v 0.460914 0.139022 0.062467 +v 0.460914 0.142474 0.054133 +v 0.460914 0.136982 0.046976 +v 0.460914 0.128039 0.048153 +v 0.460914 0.124587 0.056487 +v 0.468750 0.099603 0.121367 +v 0.468750 0.121367 0.099603 +v 0.468750 0.138467 0.074012 +v 0.468750 0.150245 0.045576 +v 0.468750 0.156250 0.015389 +v 0.468750 0.156250 -0.015389 +v 0.468750 0.150245 -0.045576 +v 0.468750 0.138467 -0.074012 +v 0.468750 0.121367 -0.099603 +v 0.468750 0.099603 -0.121367 +v 0.468750 0.074012 -0.138467 +v 0.468750 0.045576 -0.150245 +v 0.468750 0.015389 -0.156250 +v 0.468750 -0.015389 -0.156250 +v 0.468750 -0.045576 -0.150245 +v 0.468750 -0.074012 -0.138467 +v 0.468750 -0.099603 -0.121367 +v 0.468750 -0.121367 -0.099603 +v 0.468750 -0.138467 -0.074012 +v 0.468750 -0.150245 -0.045576 +v 0.468750 -0.156250 -0.015389 +v 0.468750 -0.156250 0.015389 +v 0.468750 -0.150245 0.045576 +v 0.468750 -0.138466 0.074012 +v 0.468750 -0.121367 0.099603 +v 0.468750 -0.099603 0.121367 +v 0.468750 -0.074012 0.138467 +v 0.468750 -0.045576 0.150245 +v 0.468750 -0.015389 0.156250 +v 0.468750 0.015390 0.156250 +v 0.468750 0.045577 0.150245 +v 0.468750 0.074012 0.138467 +v 0.500000 -0.150245 -0.045576 +v 0.500000 -0.138467 -0.074012 +v 0.500000 -0.121367 -0.099603 +v 0.500000 -0.099603 -0.121367 +v 0.500000 -0.074012 -0.138467 +v 0.500000 -0.045576 -0.150245 +v 0.500000 -0.015389 -0.156250 +v 0.500000 0.015389 -0.156250 +v 0.500000 0.045576 -0.150245 +v 0.500000 0.074012 -0.138467 +v 0.500000 0.099603 -0.121367 +v 0.500000 0.121367 -0.099603 +v 0.500000 0.138467 -0.074012 +v 0.500000 0.150245 -0.045576 +v 0.500000 0.156250 -0.015389 +v 0.500000 0.156250 0.015389 +v 0.500000 0.150245 0.045576 +v 0.500000 0.138467 0.074012 +v 0.500000 0.121367 0.099603 +v 0.500000 0.099603 0.121367 +v 0.500000 0.074012 0.138467 +v 0.500000 0.045577 0.150245 +v 0.500000 0.015390 0.156250 +v 0.500000 -0.015389 0.156250 +v 0.500000 -0.045576 0.150245 +v 0.500000 -0.074012 0.138467 +v 0.500000 -0.099603 0.121367 +v 0.500000 -0.121367 0.099603 +v 0.500000 -0.138466 0.074012 +v 0.500000 -0.150245 0.045576 +v 0.500000 -0.156250 0.015389 +v 0.500000 -0.156250 -0.015389 +v -0.468750 -0.156250 -0.015389 +v -0.468750 -0.150245 -0.045576 +v -0.468750 -0.138467 -0.074012 +v -0.468750 -0.121367 -0.099603 +v -0.468750 -0.099603 -0.121367 +v -0.468750 -0.074012 -0.138467 +v -0.468750 -0.045576 -0.150245 +v -0.468750 -0.015389 -0.156250 +v -0.468750 0.015389 -0.156250 +v -0.468750 0.045576 -0.150245 +v -0.468750 0.074012 -0.138467 +v -0.468750 0.099603 -0.121367 +v -0.468750 0.121367 -0.099603 +v -0.468750 0.138467 -0.074012 +v -0.468750 0.150245 -0.045576 +v -0.468750 0.156250 -0.015389 +v -0.468750 0.156249 0.015389 +v -0.468750 0.150245 0.045577 +v -0.468750 0.138466 0.074012 +v -0.468750 0.121367 0.099603 +v -0.468750 0.099603 0.121367 +v -0.468750 0.074012 0.138467 +v -0.468750 0.045576 0.150245 +v -0.468750 0.015389 0.156250 +v -0.468750 -0.015389 0.156250 +v -0.468750 -0.045576 0.150245 +v -0.468750 -0.074012 0.138467 +v -0.468750 -0.099603 0.121367 +v -0.468750 -0.121367 0.099603 +v -0.468750 -0.138466 0.074012 +v -0.468750 -0.150245 0.045576 +v -0.468750 -0.156250 0.015389 +v -0.500000 -0.138467 0.074012 +v -0.500000 -0.121367 0.099603 +v -0.500000 -0.099603 0.121367 +v -0.500000 -0.074012 0.138467 +v -0.500000 -0.045576 0.150245 +v -0.500000 -0.015389 0.156250 +v -0.500000 0.015389 0.156250 +v -0.500000 0.045576 0.150245 +v -0.500000 0.074012 0.138467 +v -0.500000 0.099603 0.121367 +v -0.500000 0.121367 0.099603 +v -0.500000 0.138466 0.074012 +v -0.500000 0.150245 0.045577 +v -0.500000 0.156250 0.015389 +v -0.500000 0.156250 -0.015389 +v -0.500000 0.150245 -0.045576 +v -0.500000 0.138467 -0.074012 +v -0.500000 0.121367 -0.099603 +v -0.500000 0.099603 -0.121367 +v -0.500000 0.074012 -0.138467 +v -0.500000 0.045576 -0.150245 +v -0.500000 0.015389 -0.156250 +v -0.500000 -0.015389 -0.156250 +v -0.500000 -0.045576 -0.150245 +v -0.500000 -0.074012 -0.138467 +v -0.500000 -0.099603 -0.121367 +v -0.500000 -0.121367 -0.099603 +v -0.500000 -0.138467 -0.074012 +v -0.500000 -0.150245 -0.045576 +v -0.500000 -0.156250 -0.015389 +v -0.500000 -0.156250 0.015389 +v -0.500000 -0.150245 0.045576 +v -0.460912 0.095821 -0.108578 +v -0.460912 0.104534 -0.110913 +v -0.460912 0.110913 -0.104534 +v -0.460912 0.108578 -0.095821 +v -0.460912 0.099865 -0.093486 +v -0.460912 0.093486 -0.099865 +v 0.460914 0.108578 -0.095821 +v 0.460914 0.110913 -0.104534 +v 0.460914 0.104534 -0.110913 +v 0.460914 0.095821 -0.108578 +v 0.460914 0.093486 -0.099865 +v 0.460914 0.099865 -0.093486 +v -0.460912 -0.009021 -0.144532 +v -0.460912 -0.004510 -0.152344 +v -0.460912 0.004510 -0.152344 +v -0.460912 0.009021 -0.144532 +v -0.460912 0.004510 -0.136720 +v -0.460912 -0.004510 -0.136720 +v 0.460914 0.009021 -0.144532 +v 0.460914 0.004510 -0.152344 +v 0.460914 -0.004510 -0.152344 +v 0.460914 -0.009021 -0.144532 +v 0.460914 -0.004510 -0.136720 +v 0.460914 0.004510 -0.136720 +v -0.460912 -0.108578 -0.095821 +v -0.460912 -0.110913 -0.104534 +v -0.460912 -0.104534 -0.110913 +v -0.460912 -0.095821 -0.108578 +v -0.460912 -0.093486 -0.099865 +v -0.460912 -0.099865 -0.093486 +v 0.460914 -0.095821 -0.108578 +v 0.460914 -0.104534 -0.110913 +v 0.460914 -0.110913 -0.104534 +v 0.460914 -0.108578 -0.095821 +v 0.460914 -0.099865 -0.093486 +v 0.460914 -0.093486 -0.099865 +v -0.460912 -0.144532 0.009021 +v -0.460912 -0.152344 0.004510 +v -0.460912 -0.152344 -0.004511 +v -0.460912 -0.144532 -0.009021 +v -0.460912 -0.136720 -0.004510 +v -0.460912 -0.136720 0.004510 +v 0.460914 -0.144532 -0.009021 +v 0.460914 -0.152344 -0.004510 +v 0.460914 -0.152344 0.004510 +v 0.460914 -0.144532 0.009021 +v 0.460914 -0.136720 0.004510 +v 0.460914 -0.136720 -0.004510 +v -0.460912 -0.095821 0.108578 +v -0.460912 -0.104534 0.110913 +v -0.460912 -0.110913 0.104534 +v -0.460912 -0.108578 0.095821 +v -0.460912 -0.099865 0.093486 +v -0.460912 -0.093486 0.099865 +v 0.460914 -0.108578 0.095821 +v 0.460914 -0.110913 0.104534 +v 0.460914 -0.104534 0.110913 +v 0.460914 -0.095821 0.108578 +v 0.460914 -0.093486 0.099865 +v 0.460914 -0.099865 0.093486 +v -0.460912 0.009021 0.144532 +v -0.460912 0.004510 0.152344 +v -0.460912 -0.004510 0.152344 +v -0.460912 -0.009021 0.144532 +v -0.460912 -0.004510 0.136720 +v -0.460912 0.004510 0.136720 +v 0.460914 -0.009021 0.144532 +v 0.460914 -0.004510 0.152344 +v 0.460914 0.004510 0.152344 +v 0.460914 0.009021 0.144532 +v 0.460914 0.004510 0.136720 +v 0.460914 -0.004510 0.136720 +v -0.460912 0.108578 0.095821 +v -0.460912 0.110913 0.104534 +v -0.460912 0.104534 0.110913 +v -0.460912 0.095821 0.108578 +v -0.460912 0.093486 0.099865 +v -0.460912 0.099865 0.093486 +v 0.460914 0.095821 0.108578 +v 0.460914 0.104534 0.110913 +v 0.460914 0.110913 0.104534 +v 0.460914 0.108578 0.095821 +v 0.460914 0.099865 0.093486 +v 0.460914 0.093486 0.099865 +v -0.460912 0.144532 -0.009021 +v -0.460912 0.152344 -0.004510 +v -0.460912 0.152344 0.004510 +v -0.460912 0.144532 0.009021 +v -0.460912 0.136720 0.004510 +v -0.460912 0.136720 -0.004510 +v 0.460914 0.144532 0.009021 +v 0.460914 0.152344 0.004510 +v 0.460914 0.152344 -0.004510 +v 0.460914 0.144532 -0.009021 +v 0.460914 0.136720 -0.004510 +v 0.460914 0.136720 0.004510 +v 0.136982 -0.460914 -0.046976 +v 0.142474 -0.460914 -0.054133 +v 0.139022 -0.460914 -0.062467 +v 0.130078 -0.460914 -0.063644 +v 0.124587 -0.460914 -0.056488 +v 0.128039 -0.460914 -0.048154 +v 0.063644 -0.460914 -0.130078 +v 0.062467 -0.460914 -0.139022 +v 0.054133 -0.460914 -0.142474 +v 0.046976 -0.460914 -0.136982 +v 0.048153 -0.460914 -0.128039 +v 0.056487 -0.460914 -0.124587 +v -0.046976 -0.460914 -0.136982 +v -0.054133 -0.460914 -0.142474 +v -0.062467 -0.460914 -0.139022 +v -0.063644 -0.460914 -0.130078 +v -0.056487 -0.460914 -0.124587 +v -0.048153 -0.460914 -0.128039 +v -0.130078 -0.460914 -0.063644 +v -0.139022 -0.460914 -0.062467 +v -0.142474 -0.460914 -0.054133 +v -0.136982 -0.460914 -0.046976 +v -0.128039 -0.460914 -0.048153 +v -0.124587 -0.460914 -0.056488 +v -0.136982 -0.460914 0.046976 +v -0.142474 -0.460914 0.054133 +v -0.139022 -0.460914 0.062467 +v -0.130078 -0.460914 0.063644 +v -0.124587 -0.460914 0.056487 +v -0.128039 -0.460914 0.048153 +v -0.063644 -0.460914 0.130078 +v -0.062467 -0.460914 0.139022 +v -0.054132 -0.460914 0.142474 +v -0.046976 -0.460914 0.136982 +v -0.048153 -0.460914 0.128039 +v -0.056487 -0.460914 0.124587 +v 0.046976 -0.460914 0.136982 +v 0.054133 -0.460914 0.142474 +v 0.062467 -0.460914 0.139022 +v 0.063644 -0.460914 0.130078 +v 0.056488 -0.460914 0.124587 +v 0.048153 -0.460914 0.128039 +v 0.130078 -0.460914 0.063644 +v 0.139022 -0.460914 0.062467 +v 0.142474 -0.460914 0.054132 +v 0.136982 -0.460914 0.046976 +v 0.128039 -0.460914 0.048153 +v 0.124587 -0.460914 0.056487 +v 0.099604 -0.468750 0.121367 +v 0.121367 -0.468750 0.099603 +v 0.138467 -0.468750 0.074012 +v 0.150245 -0.468750 0.045576 +v 0.156250 -0.468750 0.015389 +v 0.156250 -0.468750 -0.015389 +v 0.150245 -0.468750 -0.045576 +v 0.138467 -0.468750 -0.074012 +v 0.121367 -0.468750 -0.099603 +v 0.099603 -0.468750 -0.121367 +v 0.074012 -0.468750 -0.138467 +v 0.045576 -0.468750 -0.150245 +v 0.015389 -0.468750 -0.156250 +v -0.015389 -0.468750 -0.156250 +v -0.045576 -0.468750 -0.150245 +v -0.074012 -0.468750 -0.138467 +v -0.099603 -0.468750 -0.121367 +v -0.121367 -0.468750 -0.099603 +v -0.138467 -0.468750 -0.074012 +v -0.150245 -0.468750 -0.045576 +v -0.156249 -0.468750 -0.015389 +v -0.156249 -0.468750 0.015389 +v -0.150245 -0.468750 0.045576 +v -0.138466 -0.468750 0.074012 +v -0.121367 -0.468750 0.099603 +v -0.099603 -0.468750 0.121367 +v -0.074012 -0.468750 0.138467 +v -0.045576 -0.468750 0.150245 +v -0.015389 -0.468750 0.156250 +v 0.015390 -0.468750 0.156250 +v 0.045577 -0.468750 0.150245 +v 0.074012 -0.468750 0.138466 +v -0.150245 -0.500000 -0.045576 +v -0.138467 -0.500000 -0.074012 +v -0.121367 -0.500000 -0.099603 +v -0.099603 -0.500000 -0.121367 +v -0.074012 -0.500000 -0.138467 +v -0.045576 -0.500000 -0.150245 +v -0.015389 -0.500000 -0.156250 +v 0.015389 -0.500000 -0.156250 +v 0.045576 -0.500000 -0.150245 +v 0.074012 -0.500000 -0.138467 +v 0.099603 -0.500000 -0.121367 +v 0.121367 -0.500000 -0.099603 +v 0.138467 -0.500000 -0.074012 +v 0.150245 -0.500000 -0.045576 +v 0.156250 -0.500000 -0.015389 +v 0.156250 -0.500000 0.015389 +v 0.150245 -0.500000 0.045576 +v 0.138467 -0.500000 0.074012 +v 0.121367 -0.500000 0.099603 +v 0.099603 -0.500000 0.121367 +v 0.074012 -0.500000 0.138466 +v 0.045577 -0.500000 0.150245 +v 0.015390 -0.500000 0.156249 +v -0.015389 -0.500000 0.156249 +v -0.045576 -0.500000 0.150245 +v -0.074012 -0.500000 0.138467 +v -0.099603 -0.500000 0.121367 +v -0.121367 -0.500000 0.099603 +v -0.138466 -0.500000 0.074012 +v -0.150245 -0.500000 0.045576 +v -0.156249 -0.500000 0.015389 +v -0.156249 -0.500000 -0.015389 +v 0.108578 -0.460914 -0.095821 +v 0.110913 -0.460914 -0.104534 +v 0.104534 -0.460914 -0.110913 +v 0.095821 -0.460914 -0.108578 +v 0.093486 -0.460914 -0.099865 +v 0.099865 -0.460914 -0.093486 +v 0.009021 -0.460914 -0.144532 +v 0.004510 -0.460914 -0.152344 +v -0.004510 -0.460914 -0.152344 +v -0.009021 -0.460914 -0.144532 +v -0.004510 -0.460914 -0.136720 +v 0.004510 -0.460914 -0.136720 +v -0.095821 -0.460914 -0.108578 +v -0.104534 -0.460914 -0.110913 +v -0.110913 -0.460914 -0.104534 +v -0.108578 -0.460914 -0.095821 +v -0.099865 -0.460914 -0.093486 +v -0.093486 -0.460914 -0.099865 +v -0.144532 -0.460914 -0.009021 +v -0.152344 -0.460914 -0.004510 +v -0.152344 -0.460914 0.004510 +v -0.144532 -0.460914 0.009021 +v -0.136720 -0.460914 0.004510 +v -0.136720 -0.460914 -0.004510 +v -0.108578 -0.460914 0.095821 +v -0.110913 -0.460914 0.104534 +v -0.104534 -0.460914 0.110913 +v -0.095821 -0.460914 0.108578 +v -0.093486 -0.460914 0.099865 +v -0.099865 -0.460914 0.093486 +v -0.009021 -0.460914 0.144532 +v -0.004510 -0.460914 0.152344 +v 0.004510 -0.460914 0.152344 +v 0.009021 -0.460914 0.144532 +v 0.004510 -0.460914 0.136720 +v -0.004510 -0.460914 0.136720 +v 0.095821 -0.460914 0.108578 +v 0.104534 -0.460914 0.110913 +v 0.110913 -0.460914 0.104534 +v 0.108578 -0.460914 0.095821 +v 0.099865 -0.460914 0.093486 +v 0.093486 -0.460914 0.099865 +v 0.144532 -0.460914 0.009021 +v 0.152344 -0.460914 0.004510 +v 0.152344 -0.460914 -0.004511 +v 0.144532 -0.460914 -0.009021 +v 0.136720 -0.460914 -0.004510 +v 0.136720 -0.460914 0.004510 +v 0.136982 0.046976 -0.460914 +v 0.142474 0.054133 -0.460914 +v 0.139022 0.062467 -0.460914 +v 0.130078 0.063644 -0.460914 +v 0.124587 0.056488 -0.460914 +v 0.128039 0.048154 -0.460914 +v 0.063644 0.130078 -0.460914 +v 0.062467 0.139022 -0.460914 +v 0.054133 0.142474 -0.460914 +v 0.046976 0.136982 -0.460914 +v 0.048153 0.128039 -0.460914 +v 0.056487 0.124587 -0.460914 +v -0.046976 0.136982 -0.460914 +v -0.054133 0.142474 -0.460914 +v -0.062467 0.139022 -0.460914 +v -0.063644 0.130078 -0.460914 +v -0.056487 0.124587 -0.460914 +v -0.048153 0.128039 -0.460914 +v -0.130078 0.063644 -0.460914 +v -0.139022 0.062467 -0.460914 +v -0.142474 0.054133 -0.460914 +v -0.136982 0.046976 -0.460914 +v -0.128039 0.048153 -0.460914 +v -0.124587 0.056487 -0.460914 +v -0.136982 -0.046976 -0.460914 +v -0.142474 -0.054133 -0.460914 +v -0.139022 -0.062467 -0.460914 +v -0.130078 -0.063644 -0.460914 +v -0.124587 -0.056487 -0.460914 +v -0.128039 -0.048153 -0.460914 +v -0.063644 -0.130078 -0.460914 +v -0.062467 -0.139022 -0.460914 +v -0.054132 -0.142474 -0.460914 +v -0.046976 -0.136982 -0.460914 +v -0.048153 -0.128039 -0.460914 +v -0.056487 -0.124587 -0.460914 +v 0.046976 -0.136982 -0.460914 +v 0.054133 -0.142474 -0.460914 +v 0.062467 -0.139022 -0.460914 +v 0.063644 -0.130078 -0.460914 +v 0.056488 -0.124587 -0.460914 +v 0.048153 -0.128039 -0.460914 +v 0.130078 -0.063644 -0.460914 +v 0.139022 -0.062467 -0.460914 +v 0.142474 -0.054132 -0.460914 +v 0.136982 -0.046976 -0.460914 +v 0.128039 -0.048153 -0.460914 +v 0.124587 -0.056487 -0.460914 +v 0.099604 -0.121367 -0.468750 +v 0.121367 -0.099603 -0.468750 +v 0.138467 -0.074012 -0.468750 +v 0.150245 -0.045576 -0.468750 +v 0.156250 -0.015389 -0.468750 +v 0.156250 0.015389 -0.468750 +v 0.150245 0.045576 -0.468750 +v 0.138467 0.074012 -0.468750 +v 0.121367 0.099603 -0.468750 +v 0.099603 0.121367 -0.468750 +v 0.074012 0.138467 -0.468750 +v 0.045576 0.150245 -0.468750 +v 0.015389 0.156250 -0.468750 +v -0.015389 0.156250 -0.468750 +v -0.045576 0.150245 -0.468750 +v -0.074012 0.138467 -0.468750 +v -0.099603 0.121367 -0.468750 +v -0.121367 0.099603 -0.468750 +v -0.138467 0.074012 -0.468750 +v -0.150245 0.045576 -0.468750 +v -0.156249 0.015389 -0.468750 +v -0.156249 -0.015389 -0.468750 +v -0.150245 -0.045576 -0.468750 +v -0.138466 -0.074012 -0.468750 +v -0.121367 -0.099603 -0.468750 +v -0.099603 -0.121367 -0.468750 +v -0.074012 -0.138467 -0.468750 +v -0.045576 -0.150245 -0.468750 +v -0.015389 -0.156250 -0.468750 +v 0.015390 -0.156250 -0.468750 +v 0.045577 -0.150245 -0.468750 +v 0.074012 -0.138467 -0.468750 +v -0.150245 0.045576 -0.500000 +v -0.138467 0.074012 -0.500000 +v -0.121367 0.099603 -0.500000 +v -0.099603 0.121367 -0.500000 +v -0.074012 0.138467 -0.500000 +v -0.045576 0.150245 -0.500000 +v -0.015389 0.156250 -0.500000 +v 0.015389 0.156250 -0.500000 +v 0.045576 0.150245 -0.500000 +v 0.074012 0.138467 -0.500000 +v 0.099603 0.121367 -0.500000 +v 0.121367 0.099603 -0.500000 +v 0.138467 0.074012 -0.500000 +v 0.150245 0.045576 -0.500000 +v 0.156250 0.015389 -0.500000 +v 0.156250 -0.015389 -0.500000 +v 0.150245 -0.045576 -0.500000 +v 0.138467 -0.074012 -0.500000 +v 0.121367 -0.099603 -0.500000 +v 0.099603 -0.121367 -0.500000 +v 0.074012 -0.138467 -0.500000 +v 0.045577 -0.150245 -0.500000 +v 0.015390 -0.156250 -0.500000 +v -0.015389 -0.156250 -0.500000 +v -0.045576 -0.150245 -0.500000 +v -0.074012 -0.138467 -0.500000 +v -0.099603 -0.121367 -0.500000 +v -0.121367 -0.099603 -0.500000 +v -0.138466 -0.074012 -0.500000 +v -0.150245 -0.045576 -0.500000 +v -0.156249 -0.015389 -0.500000 +v -0.156249 0.015389 -0.500000 +v 0.108578 0.095821 -0.460914 +v 0.110913 0.104534 -0.460914 +v 0.104534 0.110913 -0.460914 +v 0.095821 0.108578 -0.460914 +v 0.093486 0.099865 -0.460914 +v 0.099865 0.093486 -0.460914 +v 0.009021 0.144532 -0.460914 +v 0.004510 0.152344 -0.460914 +v -0.004510 0.152344 -0.460914 +v -0.009021 0.144532 -0.460914 +v -0.004510 0.136720 -0.460914 +v 0.004510 0.136720 -0.460914 +v -0.095821 0.108578 -0.460914 +v -0.104534 0.110913 -0.460914 +v -0.110913 0.104534 -0.460914 +v -0.108578 0.095821 -0.460914 +v -0.099865 0.093486 -0.460914 +v -0.093486 0.099865 -0.460914 +v -0.144532 0.009021 -0.460914 +v -0.152344 0.004510 -0.460914 +v -0.152344 -0.004510 -0.460914 +v -0.144532 -0.009021 -0.460914 +v -0.136720 -0.004510 -0.460914 +v -0.136720 0.004510 -0.460914 +v -0.108578 -0.095821 -0.460914 +v -0.110913 -0.104534 -0.460914 +v -0.104534 -0.110913 -0.460914 +v -0.095821 -0.108578 -0.460914 +v -0.093486 -0.099865 -0.460914 +v -0.099865 -0.093486 -0.460914 +v -0.009021 -0.144532 -0.460914 +v -0.004510 -0.152344 -0.460914 +v 0.004510 -0.152344 -0.460914 +v 0.009021 -0.144532 -0.460914 +v 0.004510 -0.136720 -0.460914 +v -0.004510 -0.136720 -0.460914 +v 0.095821 -0.108578 -0.460914 +v 0.104534 -0.110913 -0.460914 +v 0.110913 -0.104534 -0.460914 +v 0.108578 -0.095821 -0.460914 +v 0.099865 -0.093486 -0.460914 +v 0.093486 -0.099865 -0.460914 +v 0.144532 -0.009021 -0.460914 +v 0.152344 -0.004510 -0.460914 +v 0.152344 0.004510 -0.460914 +v 0.144532 0.009021 -0.460914 +v 0.136720 0.004510 -0.460914 +v 0.136720 -0.004510 -0.460914 +v 0.468750 0.116832 -0.062448 +v 0.437501 0.110774 -0.059210 +v 0.437501 0.120197 -0.036461 +v 0.468750 0.126770 -0.038455 +v 0.468750 0.131837 -0.012985 +v 0.437501 0.125000 -0.012312 +v 0.468750 0.131837 0.012984 +v 0.437501 0.125001 0.012311 +v 0.468750 0.126770 0.038455 +v 0.437501 0.120197 0.036461 +v 0.468750 0.116832 0.062448 +v 0.437501 0.110774 0.059210 +v 0.468750 0.102404 0.084041 +v 0.437501 0.097094 0.079683 +v 0.437501 0.079683 0.097094 +v 0.468750 0.084041 0.102404 +v 0.468750 0.062448 0.116832 +v 0.437501 0.059210 0.110774 +v 0.468750 0.038455 0.126770 +v 0.437501 0.036461 0.120197 +v 0.468750 0.012985 0.131836 +v 0.437501 0.012312 0.125000 +v 0.437501 -0.012311 0.125000 +v 0.468750 -0.012985 0.131836 +v 0.437501 -0.036461 0.120197 +v 0.468750 -0.038455 0.126770 +v 0.468750 -0.062448 0.116832 +v 0.437501 -0.059210 0.110774 +v 0.437501 -0.079683 0.097094 +v 0.468750 -0.084041 0.102404 +v 0.437501 -0.097094 0.079683 +v 0.468750 -0.102404 0.084041 +v 0.468750 -0.116832 0.062448 +v 0.437501 -0.110774 0.059210 +v 0.437501 -0.120197 0.036461 +v 0.468750 -0.126770 0.038455 +v 0.468750 -0.131836 0.012985 +v 0.437501 -0.125000 0.012311 +v 0.437501 -0.125000 -0.012311 +v 0.468750 -0.131836 -0.012985 +v 0.468750 -0.126770 -0.038455 +v 0.437501 -0.120197 -0.036461 +v 0.437501 -0.110774 -0.059210 +v 0.468750 -0.116832 -0.062448 +v 0.437501 -0.097094 -0.079683 +v 0.468750 -0.102404 -0.084041 +v 0.437501 -0.079683 -0.097094 +v 0.468750 -0.084041 -0.102404 +v 0.437501 -0.059210 -0.110774 +v 0.468750 -0.062448 -0.116832 +v 0.437501 -0.036461 -0.120197 +v 0.468750 -0.038455 -0.126770 +v 0.437501 -0.012311 -0.125001 +v 0.468750 -0.012985 -0.131836 +v 0.468750 0.038455 -0.126770 +v 0.468750 0.012985 -0.131837 +v 0.437501 0.012311 -0.125001 +v 0.437501 0.036461 -0.120197 +v 0.468750 0.084041 -0.102404 +v 0.468750 0.062448 -0.116832 +v 0.437501 0.059210 -0.110774 +v 0.437501 0.079683 -0.097094 +v 0.468750 0.102404 -0.084041 +v 0.437501 0.097094 -0.079683 +v 0.036461 -0.036461 0.120197 +v 0.012312 -0.012312 0.125000 +v 0.059210 -0.059210 0.110774 +v 0.079683 -0.079683 0.097094 +v -0.468750 0.012985 0.131836 +v -0.437501 0.012312 0.125001 +v -0.437501 0.036461 0.120197 +v -0.468750 0.038455 0.126770 +v -0.468750 -0.012985 0.131836 +v -0.437501 -0.012311 0.125000 +v -0.468750 -0.038455 0.126770 +v -0.437501 -0.036461 0.120197 +v 0.097094 -0.097094 0.079683 +v 0.079683 -0.437501 0.097094 +v 0.097094 -0.437501 0.079683 +v -0.437501 0.059210 0.110774 +v -0.468750 0.062448 0.116832 +v -0.468750 -0.062448 0.116832 +v -0.437501 -0.059210 0.110774 +v -0.110774 -0.110774 0.059210 +v -0.097094 -0.097094 0.079683 +v -0.437501 -0.097094 0.079683 +v -0.437501 -0.110774 0.059210 +v -0.468750 0.084041 0.102404 +v -0.437501 0.079683 0.097094 +v -0.468750 -0.084041 0.102404 +v -0.437501 -0.079683 0.097094 +v -0.120197 -0.120197 0.036461 +v -0.437501 -0.120197 0.036461 +v -0.468750 0.102404 0.084041 +v -0.437501 0.097094 0.079683 +v -0.468750 -0.102404 0.084041 +v -0.468750 0.116832 0.062448 +v -0.437501 0.110774 0.059210 +v -0.468750 -0.116832 0.062448 +v -0.125000 -0.125000 -0.012311 +v -0.125000 -0.125001 0.012311 +v -0.437501 -0.125001 0.012311 +v -0.437501 -0.125001 -0.012311 +v -0.468750 0.126770 0.038455 +v -0.437501 0.120197 0.036461 +v -0.468750 -0.126770 0.038455 +v -0.468750 0.131836 0.012985 +v -0.437501 0.125000 0.012311 +v -0.468750 -0.131837 0.012985 +v -0.110774 -0.110774 -0.059210 +v -0.120197 -0.120197 -0.036461 +v -0.437501 -0.120197 -0.036461 +v -0.437501 -0.110774 -0.059210 +v -0.012312 0.125000 -0.012311 +v -0.036461 0.120197 -0.036461 +v -0.437501 0.120197 -0.036461 +v -0.437501 0.125000 -0.012312 +v -0.468750 0.131836 -0.012985 +v -0.468750 -0.131837 -0.012985 +v -0.097094 -0.097094 -0.079683 +v -0.437501 -0.097094 -0.079683 +v -0.059210 0.110774 -0.059210 +v -0.437501 0.110774 -0.059210 +v -0.468750 0.126770 -0.038455 +v -0.468750 -0.126770 -0.038455 +v -0.468750 0.116832 -0.062448 +v -0.468750 -0.116832 -0.062448 +v -0.468750 0.102404 -0.084041 +v -0.437501 0.097094 -0.079683 +v -0.468750 -0.102404 -0.084041 +v -0.120197 -0.036461 -0.120197 +v -0.110774 -0.059210 -0.110774 +v -0.437501 -0.059210 -0.110774 +v -0.437501 -0.036461 -0.120197 +v -0.120197 0.036461 -0.120197 +v -0.125001 0.012311 -0.125000 +v -0.437501 0.012311 -0.125000 +v -0.437501 0.036461 -0.120197 +v -0.468750 0.084041 -0.102404 +v -0.437501 0.079683 -0.097094 +v -0.468750 -0.084041 -0.102404 +v -0.437501 -0.079683 -0.097094 +v -0.125000 -0.012311 -0.125000 +v -0.437501 -0.012311 -0.125000 +v -0.468750 0.062448 -0.116832 +v -0.437501 0.059210 -0.110774 +v -0.468750 -0.062448 -0.116832 +v -0.468750 0.038455 -0.126770 +v -0.468750 -0.038455 -0.126770 +v -0.468750 0.012985 -0.131837 +v -0.468750 -0.012985 -0.131836 +v -0.468749 0.130078 -0.063644 +v -0.468749 0.139022 -0.062467 +v -0.468749 0.124587 -0.056487 +v -0.468749 0.142474 -0.054132 +v -0.468749 0.136982 -0.046976 +v -0.468749 0.128039 -0.048153 +v 0.468751 0.136982 -0.046976 +v 0.468751 0.142474 -0.054133 +v 0.468751 0.128039 -0.048153 +v 0.468751 0.139022 -0.062467 +v 0.468751 0.130078 -0.063644 +v 0.468751 0.124587 -0.056488 +v -0.468749 0.046976 -0.136982 +v -0.468749 0.054133 -0.142474 +v -0.468749 0.048154 -0.128039 +v -0.468749 0.062467 -0.139022 +v -0.468749 0.063644 -0.130078 +v -0.468749 0.056488 -0.124587 +v 0.468751 0.063644 -0.130078 +v 0.468751 0.062467 -0.139022 +v 0.468751 0.056487 -0.124587 +v 0.468751 0.054133 -0.142474 +v 0.468751 0.046976 -0.136982 +v 0.468751 0.048153 -0.128039 +v -0.468749 -0.063644 -0.130078 +v -0.468749 -0.062467 -0.139022 +v -0.468749 -0.056487 -0.124587 +v -0.468749 -0.054132 -0.142474 +v -0.468749 -0.046976 -0.136982 +v -0.468749 -0.048153 -0.128039 +v 0.468751 -0.046976 -0.136982 +v 0.468751 -0.054133 -0.142474 +v 0.468751 -0.048153 -0.128039 +v 0.468751 -0.062467 -0.139022 +v 0.468751 -0.063644 -0.130078 +v 0.468751 -0.056488 -0.124587 +v -0.468749 -0.136982 -0.046976 +v -0.468749 -0.142474 -0.054133 +v -0.468749 -0.128039 -0.048153 +v -0.468749 -0.139022 -0.062467 +v -0.468749 -0.130078 -0.063644 +v -0.468749 -0.124587 -0.056488 +v 0.468751 -0.130078 -0.063644 +v 0.468751 -0.139022 -0.062467 +v 0.468751 -0.124587 -0.056487 +v 0.468751 -0.142474 -0.054133 +v 0.468751 -0.136982 -0.046976 +v 0.468751 -0.128039 -0.048153 +v -0.468749 -0.130078 0.063644 +v -0.468749 -0.139022 0.062467 +v -0.468749 -0.124587 0.056487 +v -0.468749 -0.142474 0.054132 +v -0.468749 -0.136982 0.046976 +v -0.468749 -0.128039 0.048153 +v 0.468751 -0.136982 0.046976 +v 0.468751 -0.142474 0.054133 +v 0.468751 -0.128039 0.048153 +v 0.468751 -0.139022 0.062467 +v 0.468751 -0.130078 0.063644 +v 0.468751 -0.124587 0.056487 +v -0.468749 -0.046976 0.136982 +v -0.468749 -0.054133 0.142474 +v -0.468749 -0.048153 0.128039 +v -0.468749 -0.062467 0.139022 +v -0.468749 -0.063644 0.130078 +v -0.468749 -0.056488 0.124587 +v 0.468751 -0.063644 0.130078 +v 0.468751 -0.062467 0.139022 +v 0.468751 -0.056487 0.124587 +v 0.468751 -0.054132 0.142474 +v 0.468751 -0.046976 0.136982 +v 0.468751 -0.048153 0.128039 +v -0.468749 0.063644 0.130078 +v -0.468749 0.062467 0.139022 +v -0.468749 0.056487 0.124587 +v -0.468749 0.054132 0.142474 +v -0.468749 0.046976 0.136982 +v -0.468749 0.048153 0.128039 +v 0.468751 0.046976 0.136982 +v 0.468751 0.054133 0.142474 +v 0.468751 0.048153 0.128039 +v 0.468751 0.062467 0.139022 +v 0.468751 0.063644 0.130078 +v 0.468751 0.056487 0.124587 +v -0.468749 0.136982 0.046976 +v -0.468749 0.142474 0.054133 +v -0.468749 0.128039 0.048153 +v -0.468749 0.139022 0.062467 +v -0.468749 0.130078 0.063644 +v -0.468749 0.124587 0.056488 +v 0.468751 0.130078 0.063644 +v 0.468751 0.139022 0.062467 +v 0.468751 0.124587 0.056487 +v 0.468751 0.142474 0.054133 +v 0.468751 0.136982 0.046976 +v 0.468751 0.128039 0.048153 +v -0.059210 -0.059210 0.110774 +v -0.036461 -0.036461 0.120197 +v -0.079683 -0.079683 0.097094 +v -0.012312 -0.012312 0.125000 +v -0.079683 0.097094 -0.079683 +v -0.097094 0.079683 -0.097094 +v 0.059210 0.110774 -0.059210 +v 0.036461 0.120197 -0.036461 +v 0.079683 0.097094 -0.079683 +v 0.012311 0.125000 -0.012312 +v 0.097094 0.079683 -0.097094 +v 0.059210 -0.437501 0.110774 +v 0.110774 -0.110774 0.059210 +v 0.120197 -0.120197 0.036461 +v 0.125000 -0.125000 0.012311 +v 0.125000 -0.125000 -0.012311 +v 0.120197 -0.120197 -0.036461 +v 0.110774 -0.110774 -0.059210 +v 0.097094 -0.097094 -0.079683 +v 0.088389 -0.088389 -0.088389 +v 0.097094 -0.079683 -0.097094 +v 0.110774 -0.059210 -0.110774 +v 0.120197 -0.036461 -0.120197 +v 0.125000 -0.012311 -0.125000 +v 0.125000 0.012311 -0.125000 +v 0.120197 0.036461 -0.120197 +v 0.110774 0.059210 -0.110774 +v -0.097094 -0.079683 -0.097094 +v -0.088389 -0.088389 -0.088389 +v -0.110774 0.059210 -0.110774 +v -0.468749 0.095821 -0.108578 +v -0.468749 0.104534 -0.110913 +v -0.468749 0.093486 -0.099865 +v -0.468749 0.110913 -0.104534 +v -0.468749 0.108578 -0.095821 +v -0.468749 0.099865 -0.093486 +v 0.468751 0.108578 -0.095821 +v 0.468751 0.110913 -0.104534 +v 0.468751 0.099865 -0.093486 +v 0.468751 0.104534 -0.110913 +v 0.468751 0.095821 -0.108578 +v 0.468751 0.093486 -0.099865 +v -0.468749 -0.009021 -0.144532 +v -0.468749 -0.004510 -0.152344 +v -0.468749 -0.004510 -0.136720 +v -0.468749 0.004510 -0.152344 +v -0.468749 0.009021 -0.144532 +v -0.468749 0.004510 -0.136720 +v 0.468751 0.009021 -0.144532 +v 0.468751 0.004510 -0.152344 +v 0.468751 0.004510 -0.136720 +v 0.468751 -0.004510 -0.152344 +v 0.468751 -0.009021 -0.144532 +v 0.468751 -0.004510 -0.136720 +v -0.468749 -0.108578 -0.095821 +v -0.468749 -0.110913 -0.104534 +v -0.468749 -0.099865 -0.093486 +v -0.468749 -0.104534 -0.110913 +v -0.468749 -0.095821 -0.108578 +v -0.468749 -0.093486 -0.099865 +v 0.468751 -0.095821 -0.108578 +v 0.468751 -0.104534 -0.110913 +v 0.468751 -0.093486 -0.099865 +v 0.468751 -0.110913 -0.104534 +v 0.468751 -0.108578 -0.095821 +v 0.468751 -0.099865 -0.093486 +v -0.468749 -0.144532 0.009021 +v -0.468749 -0.152344 0.004510 +v -0.468749 -0.136720 0.004510 +v -0.468749 -0.152344 -0.004511 +v -0.468749 -0.144532 -0.009021 +v -0.468749 -0.136720 -0.004510 +v 0.468751 -0.144532 -0.009021 +v 0.468751 -0.152344 -0.004510 +v 0.468751 -0.136720 -0.004510 +v 0.468751 -0.152344 0.004510 +v 0.468751 -0.144532 0.009021 +v 0.468751 -0.136720 0.004510 +v -0.468749 -0.095821 0.108578 +v -0.468749 -0.104534 0.110913 +v -0.468749 -0.093486 0.099865 +v -0.468749 -0.110913 0.104534 +v -0.468749 -0.108578 0.095821 +v -0.468749 -0.099865 0.093486 +v 0.468751 -0.108578 0.095821 +v 0.468751 -0.110913 0.104534 +v 0.468751 -0.099865 0.093486 +v 0.468751 -0.104534 0.110913 +v 0.468751 -0.095821 0.108578 +v 0.468751 -0.093486 0.099865 +v -0.468749 0.009021 0.144532 +v -0.468749 0.004510 0.152344 +v -0.468749 0.004510 0.136720 +v -0.468749 -0.004510 0.152344 +v -0.468749 -0.009021 0.144532 +v -0.468749 -0.004510 0.136720 +v 0.468751 -0.009021 0.144532 +v 0.468751 -0.004510 0.152344 +v 0.468751 -0.004510 0.136720 +v 0.468751 0.004510 0.152344 +v 0.468751 0.009021 0.144532 +v 0.468751 0.004510 0.136720 +v -0.468749 0.108578 0.095821 +v -0.468749 0.110913 0.104534 +v -0.468749 0.099865 0.093486 +v -0.468749 0.104534 0.110913 +v -0.468749 0.095821 0.108578 +v -0.468749 0.093486 0.099865 +v 0.468751 0.095821 0.108578 +v 0.468751 0.104534 0.110913 +v 0.468751 0.093486 0.099865 +v 0.468751 0.110913 0.104534 +v 0.468751 0.108578 0.095821 +v 0.468751 0.099865 0.093486 +v -0.468749 0.144532 -0.009021 +v -0.468749 0.152344 -0.004510 +v -0.468749 0.136720 -0.004510 +v -0.468749 0.152344 0.004510 +v -0.468749 0.144532 0.009021 +v -0.468749 0.136720 0.004510 +v 0.468751 0.144532 0.009021 +v 0.468751 0.152344 0.004510 +v 0.468751 0.136720 0.004510 +v 0.468751 0.152344 -0.004510 +v 0.468751 0.144532 -0.009021 +v 0.468751 0.136720 -0.004510 +v 0.116832 -0.468750 -0.062448 +v 0.110774 -0.437501 -0.059210 +v 0.120197 -0.437501 -0.036462 +v 0.126770 -0.468750 -0.038456 +v 0.131837 -0.468750 -0.012985 +v 0.125001 -0.437501 -0.012312 +v 0.131837 -0.468750 0.012984 +v 0.125001 -0.437501 0.012311 +v 0.126770 -0.468750 0.038455 +v 0.120197 -0.437501 0.036461 +v 0.116832 -0.468750 0.062448 +v 0.110774 -0.437501 0.059210 +v 0.102404 -0.468750 0.084041 +v 0.084041 -0.468750 0.102404 +v 0.062448 -0.468750 0.116832 +v 0.038455 -0.468750 0.126770 +v 0.036461 -0.437501 0.120197 +v 0.012985 -0.468750 0.131836 +v 0.012312 -0.437501 0.125000 +v -0.012311 -0.437501 0.125000 +v -0.012985 -0.468750 0.131836 +v -0.036461 -0.437501 0.120197 +v -0.038455 -0.468750 0.126770 +v -0.062448 -0.468750 0.116832 +v -0.059210 -0.437501 0.110774 +v -0.079683 -0.437501 0.097094 +v -0.084041 -0.468750 0.102404 +v -0.097094 -0.437501 0.079683 +v -0.102404 -0.468750 0.084041 +v -0.116832 -0.468750 0.062448 +v -0.110774 -0.437501 0.059210 +v -0.120197 -0.437501 0.036461 +v -0.126770 -0.468750 0.038455 +v -0.131836 -0.468750 0.012985 +v -0.125000 -0.437501 0.012311 +v -0.125000 -0.437501 -0.012312 +v -0.131836 -0.468750 -0.012985 +v -0.126770 -0.468750 -0.038455 +v -0.120197 -0.437501 -0.036461 +v -0.110774 -0.437501 -0.059210 +v -0.116832 -0.468750 -0.062448 +v -0.097094 -0.437501 -0.079683 +v -0.102404 -0.468750 -0.084041 +v -0.079683 -0.437501 -0.097094 +v -0.084041 -0.468750 -0.102404 +v -0.059210 -0.437501 -0.110774 +v -0.062448 -0.468750 -0.116832 +v -0.036461 -0.437501 -0.120197 +v -0.038455 -0.468750 -0.126770 +v -0.012311 -0.437501 -0.125001 +v -0.012985 -0.468750 -0.131837 +v 0.038455 -0.468750 -0.126770 +v 0.012985 -0.468750 -0.131837 +v 0.012311 -0.437501 -0.125001 +v 0.036461 -0.437501 -0.120197 +v 0.084041 -0.468750 -0.102404 +v 0.062448 -0.468750 -0.116832 +v 0.059210 -0.437501 -0.110774 +v 0.079683 -0.437501 -0.097094 +v 0.102404 -0.468750 -0.084041 +v 0.097094 -0.437501 -0.079683 +v 0.136982 -0.468751 -0.046976 +v 0.142474 -0.468751 -0.054133 +v 0.128039 -0.468751 -0.048154 +v 0.139022 -0.468751 -0.062467 +v 0.130078 -0.468751 -0.063644 +v 0.124587 -0.468751 -0.056488 +v 0.063644 -0.468751 -0.130078 +v 0.062467 -0.468751 -0.139022 +v 0.056487 -0.468751 -0.124587 +v 0.054133 -0.468751 -0.142474 +v 0.046976 -0.468751 -0.136982 +v 0.048153 -0.468751 -0.128039 +v -0.046976 -0.468751 -0.136982 +v -0.054133 -0.468751 -0.142474 +v -0.048153 -0.468751 -0.128039 +v -0.062467 -0.468751 -0.139022 +v -0.063644 -0.468751 -0.130078 +v -0.056487 -0.468751 -0.124587 +v -0.130078 -0.468751 -0.063644 +v -0.139022 -0.468751 -0.062467 +v -0.124587 -0.468751 -0.056488 +v -0.142474 -0.468751 -0.054133 +v -0.136982 -0.468751 -0.046976 +v -0.128039 -0.468751 -0.048153 +v -0.136982 -0.468751 0.046976 +v -0.142474 -0.468751 0.054133 +v -0.128039 -0.468751 0.048153 +v -0.139022 -0.468751 0.062467 +v -0.130078 -0.468751 0.063644 +v -0.124587 -0.468751 0.056487 +v -0.063644 -0.468751 0.130078 +v -0.062467 -0.468751 0.139022 +v -0.056487 -0.468751 0.124587 +v -0.054132 -0.468751 0.142474 +v -0.046976 -0.468751 0.136982 +v -0.048153 -0.468751 0.128039 +v 0.046976 -0.468751 0.136982 +v 0.054133 -0.468751 0.142474 +v 0.048153 -0.468751 0.128039 +v 0.062467 -0.468751 0.139022 +v 0.063644 -0.468751 0.130078 +v 0.056488 -0.468751 0.124587 +v 0.130078 -0.468751 0.063644 +v 0.139022 -0.468751 0.062467 +v 0.124587 -0.468751 0.056487 +v 0.142474 -0.468751 0.054132 +v 0.136982 -0.468751 0.046976 +v 0.128039 -0.468751 0.048153 +v -0.079683 0.097094 -0.437501 +v -0.097094 0.079683 -0.437501 +v 0.012311 0.125001 -0.437501 +v -0.012311 0.125001 -0.437501 +v -0.079683 -0.097094 -0.097094 +v -0.059210 -0.110774 -0.110774 +v -0.036461 -0.120197 -0.120197 +v -0.012312 -0.125000 -0.125001 +v 0.012311 -0.125000 -0.125001 +v 0.036461 -0.120197 -0.120197 +v 0.059210 -0.110774 -0.110774 +v 0.079683 -0.097094 -0.097094 +v 0.108578 -0.468751 -0.095821 +v 0.110913 -0.468751 -0.104534 +v 0.099865 -0.468751 -0.093486 +v 0.104534 -0.468751 -0.110913 +v 0.095821 -0.468751 -0.108578 +v 0.093486 -0.468751 -0.099865 +v 0.009021 -0.468751 -0.144532 +v 0.004510 -0.468751 -0.152344 +v 0.004510 -0.468751 -0.136720 +v -0.004510 -0.468751 -0.152344 +v -0.009021 -0.468751 -0.144532 +v -0.004510 -0.468751 -0.136720 +v -0.095821 -0.468751 -0.108578 +v -0.104534 -0.468751 -0.110913 +v -0.093486 -0.468751 -0.099865 +v -0.110913 -0.468751 -0.104534 +v -0.108578 -0.468751 -0.095821 +v -0.099865 -0.468751 -0.093486 +v -0.144532 -0.468751 -0.009021 +v -0.152344 -0.468751 -0.004510 +v -0.136720 -0.468751 -0.004510 +v -0.152344 -0.468751 0.004510 +v -0.144532 -0.468751 0.009021 +v -0.136720 -0.468751 0.004510 +v -0.108578 -0.468751 0.095821 +v -0.110913 -0.468751 0.104534 +v -0.099865 -0.468751 0.093486 +v -0.104534 -0.468751 0.110913 +v -0.095821 -0.468751 0.108578 +v -0.093486 -0.468751 0.099865 +v -0.009021 -0.468751 0.144532 +v -0.004510 -0.468751 0.152344 +v -0.004510 -0.468751 0.136720 +v 0.004510 -0.468751 0.152344 +v 0.009021 -0.468751 0.144532 +v 0.004510 -0.468751 0.136720 +v 0.095821 -0.468751 0.108578 +v 0.104534 -0.468751 0.110913 +v 0.093486 -0.468751 0.099865 +v 0.110913 -0.468751 0.104534 +v 0.108578 -0.468751 0.095821 +v 0.099865 -0.468751 0.093486 +v 0.144532 -0.468751 0.009021 +v 0.152344 -0.468751 0.004510 +v 0.136720 -0.468751 0.004510 +v 0.152344 -0.468751 -0.004511 +v 0.144532 -0.468751 -0.009021 +v 0.136720 -0.468751 -0.004510 +v 0.116832 0.062448 -0.468750 +v 0.110774 0.059210 -0.437501 +v 0.120197 0.036461 -0.437501 +v 0.126770 0.038455 -0.468750 +v 0.131837 0.012985 -0.468750 +v 0.125001 0.012312 -0.437501 +v 0.131837 -0.012984 -0.468750 +v 0.125001 -0.012311 -0.437501 +v 0.126770 -0.038455 -0.468750 +v 0.120197 -0.036461 -0.437501 +v 0.116832 -0.062448 -0.468750 +v 0.110774 -0.059210 -0.437501 +v 0.102404 -0.084041 -0.468750 +v 0.097094 -0.079683 -0.437501 +v 0.079683 -0.097094 -0.437501 +v 0.084041 -0.102404 -0.468750 +v 0.062448 -0.116832 -0.468750 +v 0.059210 -0.110774 -0.437501 +v 0.038455 -0.126770 -0.468750 +v 0.036461 -0.120197 -0.437501 +v 0.012985 -0.131836 -0.468750 +v 0.012312 -0.125000 -0.437501 +v -0.012311 -0.125000 -0.437501 +v -0.012985 -0.131836 -0.468750 +v -0.036461 -0.120197 -0.437501 +v -0.038455 -0.126770 -0.468750 +v -0.062448 -0.116832 -0.468750 +v -0.059210 -0.110774 -0.437501 +v -0.079683 -0.097094 -0.437501 +v -0.084041 -0.102404 -0.468750 +v -0.097094 -0.079683 -0.437501 +v -0.102404 -0.084041 -0.468750 +v -0.116832 -0.062448 -0.468750 +v -0.110774 -0.059210 -0.437501 +v -0.120197 -0.036461 -0.437501 +v -0.126770 -0.038455 -0.468750 +v -0.131836 -0.012985 -0.468750 +v -0.125000 -0.012311 -0.437501 +v -0.125000 0.012311 -0.437501 +v -0.131836 0.012985 -0.468750 +v -0.126770 0.038455 -0.468750 +v -0.120197 0.036461 -0.437501 +v -0.110774 0.059210 -0.437501 +v -0.116832 0.062448 -0.468750 +v -0.102404 0.084041 -0.468750 +v -0.084041 0.102404 -0.468750 +v -0.059210 0.110774 -0.437501 +v -0.062448 0.116832 -0.468750 +v -0.036461 0.120197 -0.437501 +v -0.038455 0.126770 -0.468750 +v -0.012985 0.131837 -0.468750 +v 0.038455 0.126770 -0.468750 +v 0.012985 0.131837 -0.468750 +v 0.036461 0.120197 -0.437501 +v 0.084041 0.102404 -0.468750 +v 0.062448 0.116832 -0.468750 +v 0.059210 0.110774 -0.437501 +v 0.079683 0.097094 -0.437501 +v 0.102404 0.084041 -0.468750 +v 0.097094 0.079683 -0.437501 +v 0.136982 0.046976 -0.468751 +v 0.142474 0.054133 -0.468751 +v 0.128039 0.048154 -0.468751 +v 0.139022 0.062467 -0.468751 +v 0.130078 0.063644 -0.468751 +v 0.124587 0.056488 -0.468751 +v 0.063644 0.130078 -0.468751 +v 0.062467 0.139022 -0.468751 +v 0.056487 0.124587 -0.468751 +v 0.054133 0.142474 -0.468751 +v 0.046976 0.136982 -0.468751 +v 0.048153 0.128039 -0.468751 +v -0.046976 0.136982 -0.468751 +v -0.054133 0.142474 -0.468751 +v -0.048153 0.128039 -0.468751 +v -0.062467 0.139022 -0.468751 +v -0.063644 0.130078 -0.468751 +v -0.056487 0.124587 -0.468751 +v -0.130078 0.063644 -0.468751 +v -0.139022 0.062467 -0.468751 +v -0.124587 0.056488 -0.468751 +v -0.142474 0.054133 -0.468751 +v -0.136982 0.046976 -0.468751 +v -0.128039 0.048153 -0.468751 +v -0.136982 -0.046976 -0.468751 +v -0.142474 -0.054133 -0.468751 +v -0.128039 -0.048153 -0.468751 +v -0.139022 -0.062467 -0.468751 +v -0.130078 -0.063644 -0.468751 +v -0.124587 -0.056487 -0.468751 +v -0.063644 -0.130078 -0.468751 +v -0.062467 -0.139022 -0.468751 +v -0.056487 -0.124587 -0.468751 +v -0.054132 -0.142474 -0.468751 +v -0.046976 -0.136982 -0.468751 +v -0.048153 -0.128039 -0.468751 +v 0.046976 -0.136982 -0.468751 +v 0.054133 -0.142474 -0.468751 +v 0.048153 -0.128039 -0.468751 +v 0.062467 -0.139022 -0.468751 +v 0.063644 -0.130078 -0.468751 +v 0.056488 -0.124587 -0.468751 +v 0.130078 -0.063644 -0.468751 +v 0.139022 -0.062467 -0.468751 +v 0.124587 -0.056487 -0.468751 +v 0.142474 -0.054132 -0.468751 +v 0.136982 -0.046976 -0.468751 +v 0.128039 -0.048153 -0.468751 +v 0.108578 0.095821 -0.468751 +v 0.110913 0.104534 -0.468751 +v 0.099865 0.093486 -0.468751 +v 0.104534 0.110913 -0.468751 +v 0.095821 0.108578 -0.468751 +v 0.093486 0.099865 -0.468751 +v 0.009021 0.144532 -0.468751 +v 0.004510 0.152344 -0.468751 +v 0.004510 0.136720 -0.468751 +v -0.004510 0.152344 -0.468751 +v -0.009021 0.144532 -0.468751 +v -0.004510 0.136720 -0.468751 +v -0.095821 0.108578 -0.468751 +v -0.104534 0.110913 -0.468751 +v -0.093486 0.099865 -0.468751 +v -0.110913 0.104534 -0.468751 +v -0.108578 0.095821 -0.468751 +v -0.099865 0.093486 -0.468751 +v -0.144532 0.009021 -0.468751 +v -0.152344 0.004510 -0.468751 +v -0.136720 0.004510 -0.468751 +v -0.152344 -0.004510 -0.468751 +v -0.144532 -0.009021 -0.468751 +v -0.136720 -0.004510 -0.468751 +v -0.108578 -0.095821 -0.468751 +v -0.110913 -0.104534 -0.468751 +v -0.099865 -0.093486 -0.468751 +v -0.104534 -0.110913 -0.468751 +v -0.095821 -0.108578 -0.468751 +v -0.093486 -0.099865 -0.468751 +v -0.009021 -0.144532 -0.468751 +v -0.004510 -0.152344 -0.468751 +v -0.004510 -0.136720 -0.468751 +v 0.004510 -0.152344 -0.468751 +v 0.009021 -0.144532 -0.468751 +v 0.004510 -0.136720 -0.468751 +v 0.095821 -0.108578 -0.468751 +v 0.104534 -0.110913 -0.468751 +v 0.093486 -0.099865 -0.468751 +v 0.110913 -0.104534 -0.468751 +v 0.108578 -0.095821 -0.468751 +v 0.099865 -0.093486 -0.468751 +v 0.144532 -0.009021 -0.468751 +v 0.152344 -0.004510 -0.468751 +v 0.136720 -0.004510 -0.468751 +v 0.152344 0.004510 -0.468751 +v 0.144532 0.009021 -0.468751 +v 0.136720 0.004510 -0.468751 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.4412 0.9276 +vt 0.4630 0.9493 +vt 0.4886 0.9664 +vt 0.5170 0.9782 +vt 0.5472 0.9842 +vt 0.5780 0.9842 +vt 0.6082 0.9782 +vt 0.6366 0.9664 +vt 0.6622 0.9493 +vt 0.6840 0.9276 +vt 0.7011 0.9020 +vt 0.7129 0.8735 +vt 0.7189 0.8434 +vt 0.7189 0.8126 +vt 0.7129 0.7824 +vt 0.7011 0.7539 +vt 0.6840 0.7283 +vt 0.6622 0.7066 +vt 0.6366 0.6895 +vt 0.6082 0.6777 +vt 0.5780 0.6717 +vt 0.5472 0.6717 +vt 0.5170 0.6777 +vt 0.4886 0.6895 +vt 0.4630 0.7066 +vt 0.4412 0.7283 +vt 0.4241 0.7539 +vt 0.4124 0.7824 +vt 0.4063 0.8126 +vt 0.4063 0.8434 +vt 0.4124 0.8735 +vt 0.4241 0.9020 +vt 0.2332 0.6777 +vt 0.2616 0.6895 +vt 0.2872 0.7066 +vt 0.3090 0.7283 +vt 0.3261 0.7539 +vt 0.3379 0.7824 +vt 0.3439 0.8126 +vt 0.3439 0.8434 +vt 0.3379 0.8735 +vt 0.3261 0.9020 +vt 0.3090 0.9276 +vt 0.2872 0.9493 +vt 0.2616 0.9664 +vt 0.2332 0.9782 +vt 0.2030 0.9842 +vt 0.1722 0.9842 +vt 0.1420 0.9782 +vt 0.1136 0.9664 +vt 0.0880 0.9493 +vt 0.0662 0.9276 +vt 0.0491 0.9020 +vt 0.0374 0.8735 +vt 0.0313 0.8434 +vt 0.0313 0.8126 +vt 0.0374 0.7824 +vt 0.0491 0.7539 +vt 0.0662 0.7283 +vt 0.0880 0.7066 +vt 0.1136 0.6895 +vt 0.1420 0.6777 +vt 0.1722 0.6717 +vt 0.2030 0.6717 +vt 0.5780 0.6717 +vt 0.6082 0.6777 +vt 0.6366 0.6895 +vt 0.6622 0.7066 +vt 0.6840 0.7283 +vt 0.7011 0.7539 +vt 0.7129 0.7824 +vt 0.7189 0.8126 +vt 0.7189 0.8434 +vt 0.7129 0.8735 +vt 0.7011 0.9020 +vt 0.6840 0.9276 +vt 0.6622 0.9493 +vt 0.6366 0.9664 +vt 0.6082 0.9782 +vt 0.5780 0.9842 +vt 0.5472 0.9842 +vt 0.5170 0.9782 +vt 0.4886 0.9664 +vt 0.4630 0.9493 +vt 0.4412 0.9276 +vt 0.4241 0.9020 +vt 0.4124 0.8735 +vt 0.4063 0.8434 +vt 0.4063 0.8126 +vt 0.4124 0.7824 +vt 0.4241 0.7539 +vt 0.4412 0.7283 +vt 0.4630 0.7066 +vt 0.4886 0.6895 +vt 0.5170 0.6777 +vt 0.5472 0.6717 +vt 0.1136 0.6895 +vt 0.0880 0.7066 +vt 0.0662 0.7283 +vt 0.0491 0.7539 +vt 0.0374 0.7824 +vt 0.0313 0.8126 +vt 0.0313 0.8434 +vt 0.0374 0.8735 +vt 0.0491 0.9020 +vt 0.0662 0.9276 +vt 0.0880 0.9493 +vt 0.1136 0.9664 +vt 0.1420 0.9782 +vt 0.1722 0.9842 +vt 0.2030 0.9842 +vt 0.2332 0.9782 +vt 0.2616 0.9664 +vt 0.2872 0.9493 +vt 0.3090 0.9276 +vt 0.3261 0.9020 +vt 0.3379 0.8735 +vt 0.3439 0.8434 +vt 0.3439 0.8126 +vt 0.3379 0.7824 +vt 0.3261 0.7539 +vt 0.3090 0.7283 +vt 0.2872 0.7066 +vt 0.2616 0.6895 +vt 0.2332 0.6777 +vt 0.2030 0.6717 +vt 0.1722 0.6717 +vt 0.1420 0.6777 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.4412 0.9276 +vt 0.4630 0.9493 +vt 0.4886 0.9664 +vt 0.5170 0.9782 +vt 0.5472 0.9842 +vt 0.5780 0.9842 +vt 0.6082 0.9782 +vt 0.6366 0.9664 +vt 0.6622 0.9493 +vt 0.6840 0.9276 +vt 0.7011 0.9020 +vt 0.7129 0.8735 +vt 0.7189 0.8434 +vt 0.7189 0.8126 +vt 0.7129 0.7824 +vt 0.7011 0.7539 +vt 0.6840 0.7283 +vt 0.6622 0.7066 +vt 0.6366 0.6895 +vt 0.6082 0.6777 +vt 0.5780 0.6717 +vt 0.5472 0.6717 +vt 0.5170 0.6777 +vt 0.4886 0.6895 +vt 0.4630 0.7066 +vt 0.4412 0.7283 +vt 0.4241 0.7539 +vt 0.4124 0.7824 +vt 0.4063 0.8126 +vt 0.4063 0.8434 +vt 0.4124 0.8735 +vt 0.4241 0.9020 +vt 0.2332 0.6777 +vt 0.2616 0.6895 +vt 0.2872 0.7066 +vt 0.3090 0.7283 +vt 0.3261 0.7539 +vt 0.3379 0.7824 +vt 0.3439 0.8126 +vt 0.3439 0.8434 +vt 0.3379 0.8735 +vt 0.3261 0.9020 +vt 0.3090 0.9276 +vt 0.2872 0.9493 +vt 0.2616 0.9664 +vt 0.2332 0.9782 +vt 0.2030 0.9842 +vt 0.1722 0.9842 +vt 0.1420 0.9782 +vt 0.1136 0.9664 +vt 0.0880 0.9493 +vt 0.0662 0.9276 +vt 0.0491 0.9020 +vt 0.0374 0.8735 +vt 0.0313 0.8434 +vt 0.0313 0.8126 +vt 0.0374 0.7824 +vt 0.0491 0.7539 +vt 0.0662 0.7283 +vt 0.0880 0.7066 +vt 0.1136 0.6895 +vt 0.1420 0.6777 +vt 0.1722 0.6717 +vt 0.2030 0.6717 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.4412 0.9276 +vt 0.4630 0.9493 +vt 0.4886 0.9664 +vt 0.5170 0.9782 +vt 0.5472 0.9842 +vt 0.5780 0.9842 +vt 0.6082 0.9782 +vt 0.6366 0.9664 +vt 0.6622 0.9493 +vt 0.6840 0.9276 +vt 0.7011 0.9020 +vt 0.7129 0.8735 +vt 0.7189 0.8434 +vt 0.7189 0.8126 +vt 0.7129 0.7824 +vt 0.7011 0.7539 +vt 0.6840 0.7283 +vt 0.6622 0.7066 +vt 0.6366 0.6895 +vt 0.6082 0.6777 +vt 0.5780 0.6717 +vt 0.5472 0.6717 +vt 0.5170 0.6777 +vt 0.4886 0.6895 +vt 0.4630 0.7066 +vt 0.4412 0.7283 +vt 0.4241 0.7539 +vt 0.4124 0.7824 +vt 0.4063 0.8126 +vt 0.4063 0.8434 +vt 0.4124 0.8735 +vt 0.4241 0.9020 +vt 0.2332 0.6777 +vt 0.2616 0.6895 +vt 0.2872 0.7066 +vt 0.3090 0.7283 +vt 0.3261 0.7539 +vt 0.3379 0.7824 +vt 0.3439 0.8126 +vt 0.3439 0.8434 +vt 0.3379 0.8735 +vt 0.3261 0.9020 +vt 0.3090 0.9276 +vt 0.2872 0.9493 +vt 0.2616 0.9664 +vt 0.2332 0.9782 +vt 0.2030 0.9842 +vt 0.1722 0.9842 +vt 0.1420 0.9782 +vt 0.1136 0.9664 +vt 0.0880 0.9493 +vt 0.0662 0.9276 +vt 0.0491 0.9020 +vt 0.0374 0.8735 +vt 0.0313 0.8434 +vt 0.0313 0.8126 +vt 0.0374 0.7824 +vt 0.0491 0.7539 +vt 0.0662 0.7283 +vt 0.0880 0.7066 +vt 0.1136 0.6895 +vt 0.1420 0.6777 +vt 0.1722 0.6717 +vt 0.2030 0.6717 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.4688 0.5898 +vt 0.4688 0.5664 +vt 0.5000 0.5664 +vt 0.5000 0.5898 +vt 0.4375 0.5898 +vt 0.4375 0.5664 +vt 0.4062 0.5898 +vt 0.4062 0.5664 +vt 0.3750 0.5898 +vt 0.3750 0.5664 +vt 0.3438 0.5898 +vt 0.3438 0.5664 +vt 0.3125 0.5898 +vt 0.3125 0.5664 +vt 0.2812 0.5898 +vt 0.2812 0.5664 +vt 0.2500 0.5898 +vt 0.2500 0.5664 +vt 0.2188 0.5898 +vt 0.2188 0.5664 +vt 0.1875 0.5898 +vt 0.1875 0.5664 +vt 0.1562 0.5898 +vt 0.1562 0.5664 +vt 0.1250 0.5898 +vt 0.1250 0.5664 +vt 0.0938 0.5898 +vt 0.0938 0.5664 +vt 0.0625 0.5898 +vt 0.0625 0.5664 +vt 0.0937 0.5664 +vt 0.0312 0.5898 +vt 0.0312 0.5664 +vt 0.0000 0.5898 +vt 0.0000 0.5664 +vt 0.9688 0.5898 +vt 0.9688 0.5664 +vt 1.0000 0.5664 +vt 1.0000 0.5898 +vt 0.9375 0.5898 +vt 0.9375 0.5664 +vt 0.9062 0.5898 +vt 0.9062 0.5664 +vt 0.8750 0.5898 +vt 0.8750 0.5664 +vt 0.8125 0.5898 +vt 0.8125 0.5664 +vt 0.8438 0.5664 +vt 0.8438 0.5898 +vt 0.7812 0.5898 +vt 0.7812 0.5664 +vt 0.7500 0.5898 +vt 0.7500 0.5664 +vt 0.7188 0.5898 +vt 0.7188 0.5664 +vt 0.6875 0.5898 +vt 0.6875 0.5664 +vt 0.6250 0.5898 +vt 0.6250 0.5664 +vt 0.6562 0.5664 +vt 0.6562 0.5898 +vt 0.5938 0.5898 +vt 0.5938 0.5664 +vt 0.5625 0.5898 +vt 0.5625 0.5664 +vt 0.6340 0.5124 +vt 0.6340 0.4980 +vt 0.6649 0.4980 +vt 0.6649 0.5123 +vt 0.6959 0.5124 +vt 0.6959 0.4980 +vt 0.7268 0.5123 +vt 0.7268 0.4980 +vt 0.7577 0.5123 +vt 0.7578 0.4980 +vt 0.7886 0.5124 +vt 0.7887 0.4980 +vt 0.8196 0.5125 +vt 0.8196 0.4980 +vt 0.8506 0.4981 +vt 0.8505 0.5124 +vt 0.8814 0.5125 +vt 0.8815 0.4981 +vt 0.9123 0.5126 +vt 0.9125 0.4982 +vt 0.9434 0.5128 +vt 0.9436 0.4983 +vt 0.9747 0.4983 +vt 0.9745 0.5128 +vt 1.0057 0.4984 +vt 1.0055 0.5128 +vt 1.0366 0.5128 +vt 1.0367 0.4984 +vt 1.0677 0.4984 +vt 1.0677 0.5129 +vt 1.0988 0.4984 +vt 1.0988 0.5128 +vt 1.1301 0.5129 +vt 1.1297 0.4983 +vt 1.1607 0.4982 +vt 1.1617 0.5126 +vt 1.1934 0.5121 +vt 1.1912 0.4978 +vt 0.1983 0.5120 +vt 0.2004 0.4977 +vt 0.2310 0.4981 +vt 0.2300 0.5126 +vt 0.2617 0.5129 +vt 0.2621 0.4982 +vt 0.2933 0.4983 +vt 0.2932 0.5129 +vt 0.3244 0.4982 +vt 0.3245 0.5127 +vt 0.3553 0.4982 +vt 0.3554 0.5126 +vt 0.3863 0.4982 +vt 0.3864 0.5126 +vt 0.4172 0.4981 +vt 0.4173 0.5125 +vt 0.4481 0.4981 +vt 0.4482 0.5124 +vt 0.5101 0.5125 +vt 0.4791 0.5124 +vt 0.4790 0.4981 +vt 0.5100 0.4980 +vt 0.5720 0.5124 +vt 0.5410 0.5124 +vt 0.5410 0.4980 +vt 0.5719 0.4980 +vt 0.6030 0.5125 +vt 0.6030 0.4980 +vt 1.0081 0.2851 +vt 0.9769 0.2723 +vt 1.0393 0.2971 +vt 1.0706 0.3080 +vt 0.9459 0.0196 +vt 0.9458 0.0339 +vt 0.9151 0.0339 +vt 0.9151 0.0196 +vt 0.9767 0.0195 +vt 0.9767 0.0339 +vt 1.0076 0.0195 +vt 1.0075 0.0339 +vt 0.8209 0.3169 +vt 0.8521 0.3078 +vt 0.8506 0.4981 +vt 0.8196 0.4980 +vt 0.8843 0.0339 +vt 0.8844 0.0196 +vt 1.0385 0.0195 +vt 1.0383 0.0339 +vt 1.1328 0.2072 +vt 1.1017 0.2145 +vt 1.0999 0.0340 +vt 1.1306 0.0342 +vt 0.8537 0.0195 +vt 0.8536 0.0338 +vt 1.0694 0.0196 +vt 1.0691 0.0339 +vt 1.1640 0.2021 +vt 1.1610 0.0344 +vt 0.8229 0.0194 +vt 0.8228 0.0338 +vt 0.6875 0.5898 +vt 0.6875 0.5664 +vt 0.7188 0.5664 +vt 0.7188 0.5898 +vt 0.7812 0.5898 +vt 0.7812 0.5664 +vt 0.8125 0.5664 +vt 0.8125 0.5898 +vt 1.1004 0.0197 +vt 0.6562 0.5898 +vt 0.6562 0.5664 +vt 0.7921 0.0194 +vt 0.7920 0.0337 +vt 0.8438 0.5664 +vt 0.8438 0.5898 +vt 1.1314 0.0198 +vt 0.6250 0.5898 +vt 0.6250 0.5664 +vt 0.2280 0.1990 +vt 0.1969 0.1988 +vt 0.2015 0.0321 +vt 0.2327 0.0318 +vt 0.7613 0.0193 +vt 0.7611 0.0336 +vt 0.5938 0.5898 +vt 0.5938 0.5664 +vt 1.1624 0.0202 +vt 0.5312 0.5898 +vt 0.5312 0.5664 +vt 0.5625 0.5664 +vt 0.5625 0.5898 +vt 0.7304 0.0192 +vt 0.7302 0.0335 +vt 0.8750 0.5664 +vt 0.8750 0.5898 +vt 1.1934 0.0209 +vt 1.1908 0.0349 +vt 0.5000 0.5898 +vt 0.5000 0.5664 +vt 0.2906 0.2066 +vt 0.2593 0.2016 +vt 0.2642 0.0317 +vt 0.2956 0.0317 +vt 0.6964 0.2592 +vt 0.6653 0.2464 +vt 0.6685 0.0333 +vt 0.6994 0.0334 +vt 0.6995 0.0191 +vt 0.9062 0.5664 +vt 0.9062 0.5898 +vt 0.2320 0.0171 +vt 0.1997 0.0175 +vt 0.5312 0.5664 +vt 0.5312 0.5898 +vt 0.4688 0.5898 +vt 0.4688 0.5664 +vt 0.3218 0.2139 +vt 0.3268 0.0318 +vt 0.6342 0.2344 +vt 0.6375 0.0332 +vt 0.6686 0.0189 +vt 0.9375 0.5664 +vt 0.9375 0.5898 +vt 0.2641 0.0170 +vt 0.4375 0.5898 +vt 0.4375 0.5664 +vt 0.6377 0.0188 +vt 0.9688 0.5664 +vt 0.9688 0.5898 +vt 0.2958 0.0171 +vt 0.4062 0.5898 +vt 0.4062 0.5664 +vt 0.6068 0.0187 +vt 0.6066 0.0331 +vt 0.0000 0.5898 +vt 0.0000 0.5664 +vt 0.0312 0.5664 +vt 0.0312 0.5898 +vt 0.3271 0.0173 +vt 1.0000 0.5664 +vt 1.0000 0.5898 +vt 0.4160 0.2019 +vt 0.3846 0.2068 +vt 0.3892 0.0320 +vt 0.4204 0.0322 +vt 0.5097 0.2021 +vt 0.4786 0.1994 +vt 0.4827 0.0325 +vt 0.5137 0.0327 +vt 0.5759 0.0186 +vt 0.5757 0.0330 +vt 0.0625 0.5664 +vt 0.0625 0.5898 +vt 0.7500 0.5664 +vt 0.7500 0.5898 +vt 0.3583 0.0174 +vt 0.3580 0.0320 +vt 0.3750 0.5898 +vt 0.3750 0.5664 +vt 0.4473 0.1994 +vt 0.4516 0.0324 +vt 0.5450 0.0184 +vt 0.5447 0.0328 +vt 0.0937 0.5664 +vt 0.0938 0.5898 +vt 0.3895 0.0175 +vt 0.3438 0.5898 +vt 0.3438 0.5664 +vt 0.5140 0.0183 +vt 0.0938 0.5664 +vt 0.1250 0.5664 +vt 0.1250 0.5898 +vt 0.4208 0.0177 +vt 0.3125 0.5898 +vt 0.3125 0.5664 +vt 0.4830 0.0181 +vt 0.1562 0.5664 +vt 0.1562 0.5898 +vt 0.4519 0.0179 +vt 0.2812 0.5898 +vt 0.2812 0.5664 +vt 0.2500 0.5898 +vt 0.2500 0.5664 +vt 0.1875 0.5664 +vt 0.1875 0.5898 +vt 0.2188 0.5898 +vt 0.2188 0.5664 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 1.0394 0.2346 +vt 1.0082 0.2466 +vt 1.0706 0.2237 +vt 1.1018 0.3172 +vt 0.9770 0.2593 +vt 0.6031 0.2236 +vt 0.5719 0.2143 +vt 0.6339 0.2969 +vt 0.6652 0.2849 +vt 0.6027 0.3076 +vt 0.6964 0.2722 +vt 0.5715 0.3168 +vt 0.8815 0.4981 +vt 0.8833 0.2970 +vt 1.1329 0.3245 +vt 1.1642 0.3296 +vt 1.1955 0.3322 +vt 0.1964 0.3319 +vt 0.2277 0.3318 +vt 0.2591 0.3292 +vt 0.2903 0.3241 +vt 0.3215 0.3169 +vt 0.3372 0.3122 +vt 0.3528 0.3168 +vt 0.3842 0.3241 +vt 0.4155 0.3290 +vt 0.4467 0.3316 +vt 0.4779 0.3315 +vt 0.5091 0.3290 +vt 0.5403 0.3240 +vt 1.1952 0.1995 +vt 0.3531 0.2140 +vt 0.3374 0.2186 +vt 0.5409 0.2071 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.4688 0.5898 +vt 0.4688 0.5664 +vt 0.5000 0.5664 +vt 0.5000 0.5898 +vt 0.4375 0.5898 +vt 0.4375 0.5664 +vt 0.4062 0.5898 +vt 0.4062 0.5664 +vt 0.3750 0.5898 +vt 0.3750 0.5664 +vt 0.3438 0.5898 +vt 0.3438 0.5664 +vt 0.3125 0.5898 +vt 0.3125 0.5664 +vt 0.2812 0.5898 +vt 0.2812 0.5664 +vt 0.2500 0.5898 +vt 0.2500 0.5664 +vt 0.2188 0.5898 +vt 0.2188 0.5664 +vt 0.1875 0.5898 +vt 0.1875 0.5664 +vt 0.1562 0.5898 +vt 0.1562 0.5664 +vt 0.1250 0.5898 +vt 0.1250 0.5664 +vt 0.0938 0.5898 +vt 0.0938 0.5664 +vt 0.0625 0.5898 +vt 0.0625 0.5664 +vt 0.0937 0.5664 +vt 0.0312 0.5898 +vt 0.0312 0.5664 +vt 0.0000 0.5898 +vt 0.0000 0.5664 +vt 0.9688 0.5898 +vt 0.9688 0.5664 +vt 1.0000 0.5664 +vt 1.0000 0.5898 +vt 0.9375 0.5898 +vt 0.9375 0.5664 +vt 0.9062 0.5898 +vt 0.9062 0.5664 +vt 0.8750 0.5898 +vt 0.8750 0.5664 +vt 0.8125 0.5898 +vt 0.8125 0.5664 +vt 0.8438 0.5664 +vt 0.8438 0.5898 +vt 0.7812 0.5898 +vt 0.7812 0.5664 +vt 0.7500 0.5898 +vt 0.7500 0.5664 +vt 0.7188 0.5898 +vt 0.7188 0.5664 +vt 0.6875 0.5898 +vt 0.6875 0.5664 +vt 0.6250 0.5898 +vt 0.6250 0.5664 +vt 0.6562 0.5664 +vt 0.6562 0.5898 +vt 0.5938 0.5898 +vt 0.5938 0.5664 +vt 0.5625 0.5898 +vt 0.5625 0.5664 +vt 0.6340 0.5124 +vt 0.6340 0.4980 +vt 0.6649 0.4980 +vt 0.6649 0.5123 +vt 0.6959 0.5124 +vt 0.6959 0.4980 +vt 0.7268 0.5123 +vt 0.7268 0.4980 +vt 0.7577 0.5123 +vt 0.7578 0.4980 +vt 0.7886 0.5124 +vt 0.7887 0.4980 +vt 0.8196 0.5125 +vt 0.8505 0.5124 +vt 0.8814 0.5125 +vt 0.9123 0.5126 +vt 0.9125 0.4982 +vt 0.9434 0.5128 +vt 0.9436 0.4983 +vt 0.9747 0.4983 +vt 0.9745 0.5128 +vt 1.0057 0.4984 +vt 1.0055 0.5128 +vt 1.0366 0.5128 +vt 1.0367 0.4984 +vt 1.0677 0.4984 +vt 1.0677 0.5129 +vt 1.0988 0.4984 +vt 1.0988 0.5128 +vt 1.1301 0.5129 +vt 1.1297 0.4983 +vt 1.1607 0.4982 +vt 1.1617 0.5126 +vt 1.1934 0.5121 +vt 1.1912 0.4978 +vt 0.1983 0.5120 +vt 0.2004 0.4977 +vt 0.2310 0.4981 +vt 0.2300 0.5126 +vt 0.2617 0.5129 +vt 0.2621 0.4982 +vt 0.2933 0.4983 +vt 0.2932 0.5129 +vt 0.3244 0.4982 +vt 0.3245 0.5127 +vt 0.3553 0.4982 +vt 0.3554 0.5126 +vt 0.3863 0.4982 +vt 0.3864 0.5126 +vt 0.4172 0.4981 +vt 0.4173 0.5125 +vt 0.4481 0.4981 +vt 0.4482 0.5124 +vt 0.5101 0.5125 +vt 0.4791 0.5124 +vt 0.4790 0.4981 +vt 0.5100 0.4980 +vt 0.5720 0.5124 +vt 0.5410 0.5124 +vt 0.5410 0.4980 +vt 0.5719 0.4980 +vt 0.6030 0.5125 +vt 0.6030 0.4980 +vt 0.5312 0.5664 +vt 0.5312 0.5898 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.9145 0.2850 +vt 0.9457 0.2723 +vt 1.0393 0.2971 +vt 1.0081 0.2851 +vt 1.0706 0.3080 +vt 0.3215 0.3169 +vt 0.3528 0.3076 +vt 0.3553 0.4982 +vt 0.3244 0.4982 +vt 0.4780 0.2720 +vt 0.4790 0.4981 +vt 0.4481 0.4981 +vt 0.4467 0.2720 +vt 0.9769 0.2723 +vt 1.1018 0.3172 +vt 0.6339 0.3241 +vt 0.6650 0.3290 +vt 0.6962 0.3316 +vt 0.7273 0.3316 +vt 0.7585 0.3291 +vt 0.7897 0.3241 +vt 1.1329 0.3245 +vt 1.1642 0.3296 +vt 1.1955 0.3322 +vt 0.1964 0.3319 +vt 0.2277 0.3318 +vt 0.2591 0.3292 +vt 0.2903 0.3241 +vt 0.3215 0.3169 +vt 0.3372 0.3122 +vt 0.3528 0.3168 +vt 0.3842 0.3241 +vt 0.4155 0.3290 +vt 0.4467 0.3316 +vt 0.4779 0.3315 +vt 0.5091 0.3290 +vt 0.5403 0.3240 +vt 0.5715 0.3168 +vt 0.5871 0.3122 +vt 0.6027 0.3168 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.4688 0.5898 +vt 0.4688 0.5664 +vt 0.5000 0.5664 +vt 0.5000 0.5898 +vt 0.4375 0.5898 +vt 0.4375 0.5664 +vt 0.4062 0.5898 +vt 0.4062 0.5664 +vt 0.3750 0.5898 +vt 0.3750 0.5664 +vt 0.3438 0.5898 +vt 0.3438 0.5664 +vt 0.3125 0.5898 +vt 0.3125 0.5664 +vt 0.2812 0.5898 +vt 0.2812 0.5664 +vt 0.2500 0.5898 +vt 0.2500 0.5664 +vt 0.2188 0.5898 +vt 0.2188 0.5664 +vt 0.1875 0.5898 +vt 0.1875 0.5664 +vt 0.1562 0.5898 +vt 0.1562 0.5664 +vt 0.1250 0.5898 +vt 0.1250 0.5664 +vt 0.0938 0.5898 +vt 0.0938 0.5664 +vt 0.0625 0.5898 +vt 0.0625 0.5664 +vt 0.0937 0.5664 +vt 0.0312 0.5898 +vt 0.0312 0.5664 +vt 0.0000 0.5898 +vt 0.0000 0.5664 +vt 0.9688 0.5898 +vt 0.9688 0.5664 +vt 1.0000 0.5664 +vt 1.0000 0.5898 +vt 0.9375 0.5898 +vt 0.9375 0.5664 +vt 0.9062 0.5898 +vt 0.9062 0.5664 +vt 0.8750 0.5898 +vt 0.8750 0.5664 +vt 0.8125 0.5898 +vt 0.8125 0.5664 +vt 0.8438 0.5664 +vt 0.8438 0.5898 +vt 0.7812 0.5898 +vt 0.7812 0.5664 +vt 0.7500 0.5898 +vt 0.7500 0.5664 +vt 0.7188 0.5898 +vt 0.7188 0.5664 +vt 0.6875 0.5898 +vt 0.6875 0.5664 +vt 0.6250 0.5898 +vt 0.6250 0.5664 +vt 0.6562 0.5664 +vt 0.6562 0.5898 +vt 0.5938 0.5898 +vt 0.5938 0.5664 +vt 0.5625 0.5898 +vt 0.5625 0.5664 +vt 0.6340 0.5124 +vt 0.6340 0.4980 +vt 0.6649 0.4980 +vt 0.6649 0.5123 +vt 0.6959 0.5124 +vt 0.6959 0.4980 +vt 0.7268 0.5123 +vt 0.7268 0.4980 +vt 0.7577 0.5123 +vt 0.7578 0.4980 +vt 0.7886 0.5124 +vt 0.7887 0.4980 +vt 0.8196 0.5125 +vt 0.8196 0.4980 +vt 0.8506 0.4981 +vt 0.8505 0.5124 +vt 0.8814 0.5125 +vt 0.8815 0.4981 +vt 0.9123 0.5126 +vt 0.9125 0.4982 +vt 0.9434 0.5128 +vt 0.9436 0.4983 +vt 0.9747 0.4983 +vt 0.9745 0.5128 +vt 1.0057 0.4984 +vt 1.0055 0.5128 +vt 1.0366 0.5128 +vt 1.0367 0.4984 +vt 1.0677 0.4984 +vt 1.0677 0.5129 +vt 1.0988 0.4984 +vt 1.0988 0.5128 +vt 1.1301 0.5129 +vt 1.1297 0.4983 +vt 1.1607 0.4982 +vt 1.1617 0.5126 +vt 1.1934 0.5121 +vt 1.1912 0.4978 +vt 0.1983 0.5120 +vt 0.2004 0.4977 +vt 0.2310 0.4981 +vt 0.2300 0.5126 +vt 0.2617 0.5129 +vt 0.2621 0.4982 +vt 0.2933 0.4983 +vt 0.2932 0.5129 +vt 0.3245 0.5127 +vt 0.3554 0.5126 +vt 0.3863 0.4982 +vt 0.3864 0.5126 +vt 0.4172 0.4981 +vt 0.4173 0.5125 +vt 0.4482 0.5124 +vt 0.5101 0.5125 +vt 0.4791 0.5124 +vt 0.5100 0.4980 +vt 0.5720 0.5124 +vt 0.5410 0.5124 +vt 0.5410 0.4980 +vt 0.5719 0.4980 +vt 0.6030 0.5125 +vt 0.6030 0.4980 +vt 0.5312 0.5664 +vt 0.5312 0.5898 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6027 0.3168 +vt 0.5715 0.3076 +vt 0.4154 0.2848 +vt 0.3842 0.2968 +vt 0.5092 0.2848 +vt 0.5403 0.2968 +vt 0.6339 0.3241 +vt 0.6650 0.3290 +vt 0.6962 0.3316 +vt 0.7273 0.3316 +vt 0.7585 0.3291 +vt 0.7897 0.3241 +vt 0.8209 0.3169 +vt 0.8365 0.3124 +vt 0.8521 0.3170 +vt 0.8832 0.3242 +vt 0.9143 0.3292 +vt 0.9455 0.3318 +vt 0.9767 0.3318 +vt 1.0079 0.3293 +vt 1.0391 0.3244 +vt 1.0705 0.3172 +vt 1.0862 0.3126 +vt 1.1018 0.3172 +vt 1.1329 0.3245 +vt 1.1642 0.3296 +vt 1.1955 0.3322 +vt 0.1964 0.3319 +vt 0.2277 0.3318 +vt 0.2591 0.3292 +vt 0.2903 0.3241 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vn 1.0000 0.0000 0.0000 +vn -1.0000 0.0000 0.0000 +vn 0.0000 1.0000 -0.0000 +vn 0.0000 -1.0000 -0.0000 +vn 0.0000 0.0000 1.0000 +vn -0.0000 0.0000 -1.0000 +vn -0.6857 0.2114 0.6965 +vn 0.6857 0.2113 0.6965 +vn 0.6857 0.3431 0.6419 +vn -0.6857 0.3431 0.6419 +vn -0.6857 0.0713 0.7244 +vn 0.6857 0.0713 0.7244 +vn -0.6857 -0.0713 0.7244 +vn 0.6857 -0.0713 0.7244 +vn -0.6857 -0.2113 0.6965 +vn 0.6857 -0.2113 0.6965 +vn -0.6857 -0.3430 0.6420 +vn 0.6857 -0.3432 0.6419 +vn -0.6857 -0.4616 0.5627 +vn 0.6857 -0.4618 0.5626 +vn -0.6857 -0.5627 0.4617 +vn 0.6857 -0.5627 0.4617 +vn -0.6857 -0.6420 0.3431 +vn 0.6857 -0.6419 0.3432 +vn -0.6857 -0.6965 0.2113 +vn 0.6857 -0.6965 0.2113 +vn -0.6857 -0.7244 0.0713 +vn 0.6857 -0.7244 0.0713 +vn -0.6857 -0.7244 -0.0713 +vn 0.6857 -0.7244 -0.0713 +vn -0.6857 -0.6966 -0.2112 +vn 0.6857 -0.6965 -0.2114 +vn -0.6857 -0.6419 -0.3432 +vn 0.6857 -0.6420 -0.3430 +vn -0.6857 -0.5626 -0.4617 +vn 0.6857 -0.5626 -0.4617 +vn -0.6857 -0.4617 -0.5626 +vn 0.6857 -0.4617 -0.5626 +vn -0.6857 -0.3431 -0.6419 +vn 0.6857 -0.3431 -0.6419 +vn -0.6857 -0.2113 -0.6965 +vn 0.6857 -0.2113 -0.6965 +vn -0.6857 -0.0713 -0.7244 +vn 0.6857 -0.0713 -0.7244 +vn -0.6857 0.0713 -0.7244 +vn 0.6857 0.0713 -0.7244 +vn -0.6857 0.2113 -0.6965 +vn 0.6857 0.2113 -0.6965 +vn -0.6857 0.4616 -0.5627 +vn 0.6857 0.4618 -0.5626 +vn 0.6857 0.3432 -0.6419 +vn -0.6857 0.3430 -0.6420 +vn -0.6857 0.5626 -0.4617 +vn 0.6857 0.5626 -0.4617 +vn -0.6857 0.6420 -0.3430 +vn 0.6857 0.6419 -0.3432 +vn -0.6857 0.6965 -0.2113 +vn 0.6857 0.6965 -0.2113 +vn -0.6857 0.7244 -0.0713 +vn 0.6857 0.7244 -0.0713 +vn -0.6857 0.6966 0.2112 +vn 0.6857 0.6965 0.2114 +vn 0.6857 0.7244 0.0713 +vn -0.6857 0.7244 0.0713 +vn -0.6857 0.6419 0.3432 +vn 0.6857 0.6420 0.3430 +vn -0.6857 0.5626 0.4617 +vn 0.6857 0.5626 0.4617 +vn -0.2147 0.8614 -0.4604 +vn -0.1087 0.8767 -0.4686 +vn -0.1087 0.9513 -0.2886 +vn -0.2147 0.9346 -0.2835 +vn -0.2147 0.9720 -0.0957 +vn -0.1087 0.9893 -0.0974 +vn -0.2147 0.9720 0.0957 +vn -0.1087 0.9893 0.0974 +vn -0.2147 0.9346 0.2835 +vn -0.1087 0.9513 0.2886 +vn -0.2147 0.8614 0.4604 +vn -0.1087 0.8767 0.4686 +vn -0.2147 0.7550 0.6196 +vn -0.1087 0.7684 0.6306 +vn -0.1087 0.6306 0.7684 +vn -0.2147 0.6196 0.7550 +vn -0.2147 0.4604 0.8614 +vn -0.1087 0.4686 0.8767 +vn -0.2147 0.2835 0.9346 +vn -0.1087 0.2886 0.9513 +vn -0.2147 0.0957 0.9720 +vn -0.1087 0.0974 0.9893 +vn -0.1087 -0.0974 0.9893 +vn -0.2147 -0.0957 0.9720 +vn -0.1087 -0.2886 0.9513 +vn -0.2147 -0.2835 0.9346 +vn -0.2147 -0.4604 0.8614 +vn -0.1087 -0.4686 0.8767 +vn -0.1087 -0.6306 0.7684 +vn -0.2147 -0.6196 0.7550 +vn -0.1087 -0.7684 0.6306 +vn -0.2147 -0.7550 0.6196 +vn -0.2147 -0.8614 0.4604 +vn -0.1087 -0.8767 0.4686 +vn -0.1087 -0.9513 0.2886 +vn -0.2147 -0.9346 0.2835 +vn -0.2147 -0.9720 0.0957 +vn -0.1087 -0.9893 0.0974 +vn -0.1087 -0.9893 -0.0974 +vn -0.2147 -0.9720 -0.0957 +vn -0.2147 -0.9346 -0.2835 +vn -0.1087 -0.9513 -0.2886 +vn -0.1087 -0.8767 -0.4686 +vn -0.2147 -0.8614 -0.4604 +vn -0.1087 -0.7684 -0.6306 +vn -0.2147 -0.7550 -0.6196 +vn -0.1087 -0.6306 -0.7684 +vn -0.2147 -0.6196 -0.7550 +vn -0.1087 -0.4686 -0.8767 +vn -0.2147 -0.4604 -0.8614 +vn -0.1087 -0.2886 -0.9513 +vn -0.2147 -0.2835 -0.9346 +vn -0.1087 -0.0974 -0.9893 +vn -0.2147 -0.0957 -0.9720 +vn -0.2147 0.2835 -0.9346 +vn -0.2147 0.0957 -0.9720 +vn -0.1087 0.0974 -0.9893 +vn -0.1087 0.2886 -0.9513 +vn -0.2147 0.6196 -0.7550 +vn -0.2147 0.4604 -0.8614 +vn -0.1087 0.4686 -0.8767 +vn -0.1087 0.6306 -0.7684 +vn -0.2147 0.7550 -0.6196 +vn -0.1087 0.7684 -0.6306 +vn 0.1243 -0.1243 0.9844 +vn 0.0247 -0.0247 0.9994 +vn 0.2267 -0.2267 0.9472 +vn 0.3333 -0.3333 0.8819 +vn 0.2147 0.0957 0.9720 +vn 0.1087 0.0974 0.9893 +vn 0.1087 0.2886 0.9513 +vn 0.2147 0.2835 0.9346 +vn 0.2147 -0.0957 0.9720 +vn 0.1087 -0.0974 0.9893 +vn 0.2147 -0.2835 0.9346 +vn 0.1087 -0.2886 0.9513 +vn 0.4431 -0.4431 0.7793 +vn 0.6306 0.1087 0.7684 +vn 0.7684 0.1087 0.6306 +vn 0.1087 0.4686 0.8767 +vn 0.2147 0.4604 0.8614 +vn 0.2147 -0.4604 0.8614 +vn 0.1087 -0.4686 0.8767 +vn -0.5510 -0.5510 0.6267 +vn -0.4431 -0.4431 0.7793 +vn 0.1087 -0.7684 0.6306 +vn 0.1087 -0.8767 0.4686 +vn 0.2147 0.6196 0.7550 +vn 0.1087 0.6306 0.7684 +vn 0.2147 -0.6196 0.7550 +vn 0.1087 -0.6306 0.7684 +vn -0.6437 -0.6437 0.4139 +vn 0.1087 -0.9513 0.2886 +vn 0.2147 0.7550 0.6196 +vn 0.1087 0.7684 0.6306 +vn 0.6858 -0.5627 0.4617 +vn -0.6857 -0.5626 0.4617 +vn -0.6857 -0.6419 0.3431 +vn 0.6857 -0.6419 0.3431 +vn 0.2147 -0.7550 0.6196 +vn 0.2147 0.8614 0.4604 +vn 0.1087 0.8767 0.4686 +vn 0.2147 -0.8614 0.4604 +vn -0.6995 -0.6996 -0.1458 +vn -0.6996 -0.6995 0.1458 +vn 0.1087 -0.9893 0.0974 +vn 0.1087 -0.9893 -0.0974 +vn 0.2147 0.9346 0.2835 +vn 0.1087 0.9513 0.2886 +vn 0.2147 -0.9346 0.2835 +vn 0.2147 0.9720 0.0957 +vn 0.1087 0.9893 0.0974 +vn 0.2147 -0.9720 0.0957 +vn -0.6857 0.2113 0.6965 +vn -0.5510 -0.5510 -0.6267 +vn -0.6437 -0.6437 -0.4139 +vn 0.1087 -0.9513 -0.2886 +vn 0.1087 -0.8767 -0.4686 +vn -0.0247 0.9994 -0.0247 +vn -0.1243 0.9844 -0.1243 +vn 0.1087 0.9513 -0.2886 +vn 0.1087 0.9893 -0.0974 +vn 0.2147 0.9720 -0.0957 +vn 0.2147 -0.9720 -0.0957 +vn 0.6857 0.4617 0.5626 +vn -0.6857 0.4617 0.5626 +vn -0.4431 -0.4431 -0.7793 +vn 0.1087 -0.7684 -0.6306 +vn -0.2267 0.9472 -0.2267 +vn 0.1087 0.8767 -0.4686 +vn 0.2147 0.9346 -0.2835 +vn 0.2147 -0.9346 -0.2835 +vn 0.2147 0.8614 -0.4604 +vn 0.2147 -0.8614 -0.4604 +vn 0.6857 0.5627 0.4617 +vn -0.6857 0.5627 0.4617 +vn 0.2147 0.7550 -0.6196 +vn 0.1087 0.7684 -0.6306 +vn 0.2147 -0.7550 -0.6196 +vn -0.6437 -0.4139 -0.6437 +vn -0.5510 -0.6267 -0.5510 +vn 0.1087 -0.4686 -0.8767 +vn 0.1087 -0.2886 -0.9513 +vn -0.6437 0.4139 -0.6437 +vn -0.6995 0.1458 -0.6996 +vn 0.1087 0.0974 -0.9893 +vn 0.1087 0.2886 -0.9513 +vn 0.2147 0.6196 -0.7550 +vn 0.1087 0.6306 -0.7684 +vn 0.2147 -0.6196 -0.7550 +vn 0.1087 -0.6306 -0.7684 +vn -0.6857 0.6419 0.3433 +vn -0.6996 -0.1458 -0.6995 +vn 0.1087 -0.0974 -0.9893 +vn 0.2147 0.4604 -0.8614 +vn 0.1087 0.4686 -0.8767 +vn 0.2147 -0.4604 -0.8614 +vn 0.6857 0.6965 0.2113 +vn -0.6857 0.6965 0.2113 +vn 0.2147 0.2835 -0.9346 +vn 0.2147 -0.2835 -0.9346 +vn 0.6857 0.7244 0.0714 +vn -0.6857 0.7244 0.0712 +vn 0.2147 0.0957 -0.9720 +vn 0.2147 -0.0957 -0.9720 +vn 0.6100 -0.3032 -0.7321 +vn 0.0000 -0.3827 -0.9239 +vn 0.0000 0.6088 -0.7934 +vn 0.6100 0.4824 -0.6287 +vn 0.6100 -0.7856 -0.1034 +vn 0.0000 -0.9914 -0.1305 +vn 0.0000 0.9914 0.1306 +vn 0.6100 0.7856 0.1034 +vn 0.0000 0.3827 0.9239 +vn 0.6100 0.3032 0.7321 +vn 0.0000 -0.6087 0.7934 +vn 0.6100 -0.4824 0.6287 +vn -0.6100 0.3032 0.7321 +vn 0.0000 0.9914 0.1305 +vn -0.6100 0.7856 0.1034 +vn -0.6100 -0.4824 0.6287 +vn 0.0000 -0.6088 0.7934 +vn 0.0000 0.6087 -0.7934 +vn -0.6100 0.4824 -0.6287 +vn -0.6100 -0.3032 -0.7321 +vn -0.6100 -0.7856 -0.1034 +vn 0.6100 -0.7321 -0.3032 +vn 0.0000 -0.9239 -0.3826 +vn 0.0000 -0.1305 -0.9914 +vn 0.6100 -0.1034 -0.7856 +vn 0.6100 -0.6288 0.4823 +vn 0.0000 -0.7933 0.6088 +vn 0.0000 0.7934 -0.6087 +vn 0.6100 0.6287 -0.4824 +vn 0.0000 0.9239 0.3827 +vn 0.6100 0.7321 0.3032 +vn 0.0000 0.1305 0.9914 +vn 0.6100 0.1035 0.7856 +vn -0.6100 0.7320 0.3034 +vn -0.6100 0.6287 -0.4824 +vn -0.6100 0.1034 0.7856 +vn -0.6100 -0.1034 -0.7856 +vn 0.0000 -0.9239 -0.3827 +vn -0.6100 -0.7321 -0.3032 +vn 0.0000 -0.7934 0.6087 +vn -0.6100 -0.6288 0.4823 +vn 0.6100 -0.7321 0.3032 +vn 0.0000 -0.9239 0.3827 +vn 0.0000 -0.7934 -0.6088 +vn 0.6100 -0.6287 -0.4824 +vn 0.6100 -0.1035 0.7856 +vn 0.0000 -0.1305 0.9914 +vn 0.0000 0.1306 -0.9914 +vn 0.6100 0.1034 -0.7856 +vn 0.0000 0.9239 -0.3827 +vn 0.6100 0.7321 -0.3032 +vn 0.0000 0.7934 0.6087 +vn 0.6100 0.6287 0.4824 +vn -0.6100 0.7321 -0.3032 +vn 0.0000 0.1305 -0.9914 +vn -0.6100 0.1034 -0.7856 +vn -0.6100 0.6287 0.4824 +vn 0.0000 0.7934 0.6088 +vn 0.0000 -0.7934 -0.6087 +vn -0.6100 -0.6287 -0.4824 +vn -0.6100 -0.7321 0.3032 +vn 0.0000 -0.1306 0.9914 +vn -0.6100 -0.1034 0.7856 +vn 0.6100 -0.3032 0.7321 +vn 0.0000 -0.3827 0.9239 +vn 0.0000 -0.9914 0.1305 +vn 0.6100 -0.7856 0.1034 +vn 0.6100 0.4824 0.6287 +vn 0.0000 0.6088 0.7934 +vn 0.0000 -0.6087 -0.7934 +vn 0.6100 -0.4824 -0.6287 +vn 0.0000 0.3827 -0.9239 +vn 0.6100 0.3032 -0.7321 +vn 0.0000 0.9914 -0.1306 +vn 0.6100 0.7856 -0.1035 +vn -0.6100 0.3031 -0.7321 +vn -0.6100 -0.4824 -0.6287 +vn -0.6100 0.7856 -0.1034 +vn 0.0000 0.9914 -0.1305 +vn -0.6100 -0.7856 0.1034 +vn -0.6100 -0.3032 0.7321 +vn 0.0000 0.6087 0.7934 +vn -0.6100 0.4824 0.6286 +vn 0.0000 -0.9914 -0.1306 +vn -0.6100 0.3033 0.7320 +vn 0.6100 0.1034 0.7856 +vn 0.0000 0.7934 -0.6088 +vn 0.6100 -0.6287 0.4824 +vn 0.0000 -0.1306 -0.9914 +vn 0.6100 -0.1033 -0.7856 +vn -0.6100 -0.7320 -0.3034 +vn 0.0000 -0.7934 0.6088 +vn -0.6100 -0.6287 0.4824 +vn 0.0000 0.1306 0.9914 +vn -0.6100 0.7321 0.3032 +vn -0.6100 0.6288 -0.4823 +vn 0.6100 0.1035 -0.7856 +vn 0.6100 -0.1034 0.7856 +vn -0.6100 -0.6286 -0.4825 +vn -0.6100 0.7322 -0.3030 +vn -0.6100 0.1033 -0.7856 +vn 0.6100 0.7856 -0.1034 +vn 0.0000 -0.6088 -0.7934 +vn 0.0000 -0.9914 0.1306 +vn 0.6100 -0.7856 0.1035 +vn -0.6100 -0.3031 0.7321 +vn -0.6100 0.4824 0.6287 +vn -0.6100 0.3032 -0.7321 +vn -0.6100 -0.4824 -0.6286 +vn -0.2267 -0.2267 0.9472 +vn -0.1243 -0.1243 0.9844 +vn -0.3333 -0.3333 0.8819 +vn -0.0247 -0.0247 0.9994 +vn -0.3333 0.8819 -0.3333 +vn -0.4431 0.7793 -0.4431 +vn 0.2267 0.9472 -0.2267 +vn 0.1243 0.9844 -0.1243 +vn 0.3333 0.8819 -0.3333 +vn 0.0247 0.9994 -0.0247 +vn 0.4431 0.7793 -0.4431 +vn 0.4686 0.1087 0.8767 +vn 0.5510 -0.5510 0.6267 +vn 0.6437 -0.6437 0.4139 +vn 0.6995 -0.6995 0.1458 +vn 0.6995 -0.6995 -0.1458 +vn 0.6437 -0.6437 -0.4139 +vn 0.5510 -0.5510 -0.6267 +vn 0.4431 -0.4431 -0.7793 +vn 0.5774 -0.5774 -0.5774 +vn 0.4431 -0.7793 -0.4431 +vn 0.5510 -0.6267 -0.5510 +vn 0.6437 -0.4139 -0.6437 +vn 0.6995 -0.1458 -0.6995 +vn 0.6995 0.1458 -0.6995 +vn 0.6437 0.4139 -0.6437 +vn 0.5510 0.6267 -0.5510 +vn -0.4431 -0.7793 -0.4431 +vn -0.5774 -0.5774 -0.5774 +vn -0.5510 0.6267 -0.5510 +vn 0.6100 -0.5603 -0.5603 +vn 0.0000 -0.7071 -0.7071 +vn 0.0000 0.2588 -0.9659 +vn 0.6100 0.2051 -0.7654 +vn 0.6100 -0.7654 0.2051 +vn 0.0000 -0.9659 0.2588 +vn 0.0000 0.9659 -0.2588 +vn 0.6100 0.7654 -0.2051 +vn 0.0000 0.7071 0.7071 +vn 0.6100 0.5603 0.5603 +vn 0.0000 -0.2588 0.9659 +vn 0.6100 -0.2051 0.7654 +vn -0.6100 0.5603 0.5603 +vn -0.6100 0.7654 -0.2051 +vn -0.6100 -0.2051 0.7654 +vn -0.6100 0.2051 -0.7654 +vn -0.6100 -0.5603 -0.5603 +vn -0.6100 -0.7654 0.2051 +vn 0.6100 -0.7924 -0.0000 +vn 0.0000 -0.5000 -0.8660 +vn 0.6100 -0.3962 -0.6862 +vn 0.6100 -0.3963 0.6861 +vn 0.0000 -0.5000 0.8660 +vn 0.0000 0.5000 -0.8660 +vn 0.6100 0.3962 -0.6862 +vn 0.6100 0.7924 0.0000 +vn 0.0000 0.5000 0.8660 +vn 0.6100 0.3962 0.6862 +vn -0.6100 0.7924 -0.0000 +vn -0.6100 0.3962 -0.6862 +vn -0.6100 0.3961 0.6863 +vn -0.6100 -0.3962 -0.6862 +vn -0.6100 -0.7924 0.0000 +vn -0.6100 -0.3962 0.6862 +vn 0.6100 -0.5603 0.5603 +vn 0.0000 -0.7071 0.7071 +vn 0.0000 -0.9659 -0.2588 +vn 0.6100 -0.7654 -0.2051 +vn 0.6100 0.2051 0.7654 +vn 0.0000 0.2588 0.9659 +vn 0.0000 -0.2588 -0.9659 +vn 0.6100 -0.2051 -0.7654 +vn 0.0000 0.7071 -0.7071 +vn 0.6100 0.5603 -0.5603 +vn 0.0000 0.9659 0.2588 +vn 0.6100 0.7654 0.2051 +vn -0.6100 0.5603 -0.5603 +vn -0.6100 -0.2051 -0.7654 +vn -0.6100 0.7654 0.2051 +vn -0.6100 -0.7654 -0.2051 +vn -0.6100 -0.5603 0.5603 +vn -0.6100 0.2051 0.7654 +vn 0.6100 0.0001 0.7924 +vn 0.0000 -0.8660 0.5000 +vn 0.6100 -0.6862 0.3962 +vn 0.6100 0.6861 0.3963 +vn 0.0000 0.8660 0.5000 +vn 0.0000 -0.8660 -0.5000 +vn 0.6100 -0.6862 -0.3962 +vn 0.6100 0.0000 -0.7924 +vn 0.0000 0.8660 -0.5000 +vn 0.6100 0.6863 -0.3961 +vn -0.6100 -0.0000 -0.7924 +vn -0.6100 -0.6862 -0.3962 +vn -0.6100 0.6861 -0.3963 +vn -0.6100 -0.6862 0.3962 +vn -0.6100 0.0000 0.7924 +vn -0.6100 0.6862 0.3962 +vn 0.6100 0.3963 -0.6861 +vn 0.6100 -0.3962 0.6862 +vn -0.6100 -0.3961 -0.6863 +vn -0.6100 0.3962 0.6862 +vn 0.6100 -0.0001 -0.7924 +vn 0.6100 0.6862 -0.3962 +vn 0.6100 -0.6861 -0.3963 +vn 0.6100 0.6862 0.3962 +vn 0.6100 -0.0000 0.7924 +vn 0.6100 -0.6863 0.3961 +vn -0.6100 -0.6861 0.3963 +vn -0.6100 0.6862 -0.3962 +vn 0.2113 0.6857 0.6965 +vn 0.2113 -0.6857 0.6965 +vn 0.3431 -0.6857 0.6419 +vn 0.3431 0.6857 0.6419 +vn 0.0712 0.6857 0.7244 +vn 0.0713 -0.6857 0.7244 +vn -0.0714 0.6857 0.7244 +vn -0.0713 -0.6857 0.7244 +vn -0.2112 0.6857 0.6965 +vn -0.2113 -0.6857 0.6965 +vn -0.3432 0.6857 0.6419 +vn -0.3430 -0.6857 0.6420 +vn -0.4617 0.6857 0.5626 +vn -0.4617 -0.6857 0.5626 +vn -0.5627 0.6857 0.4617 +vn -0.5627 -0.6857 0.4617 +vn -0.6419 0.6857 0.3431 +vn -0.6419 -0.6857 0.3431 +vn -0.6965 0.6857 0.2113 +vn -0.6965 -0.6857 0.2113 +vn -0.7244 0.6857 0.0713 +vn -0.7244 -0.6857 0.0716 +vn -0.7244 0.6857 -0.0716 +vn -0.7244 -0.6857 -0.0713 +vn -0.6965 0.6857 -0.2113 +vn -0.6965 -0.6857 -0.2113 +vn -0.6419 0.6857 -0.3431 +vn -0.6419 -0.6857 -0.3431 +vn -0.5626 0.6857 -0.4617 +vn -0.5626 -0.6857 -0.4617 +vn -0.4617 0.6857 -0.5626 +vn -0.4617 -0.6857 -0.5626 +vn -0.3430 0.6857 -0.6420 +vn -0.3432 -0.6857 -0.6419 +vn -0.2113 0.6857 -0.6965 +vn -0.2113 -0.6857 -0.6965 +vn -0.0713 0.6857 -0.7244 +vn -0.0713 -0.6857 -0.7244 +vn 0.0713 0.6857 -0.7244 +vn 0.0713 -0.6857 -0.7244 +vn 0.2113 0.6857 -0.6965 +vn 0.2113 -0.6857 -0.6965 +vn 0.4617 0.6857 -0.5626 +vn 0.4617 -0.6857 -0.5626 +vn 0.3430 -0.6857 -0.6420 +vn 0.3432 0.6857 -0.6419 +vn 0.5626 0.6857 -0.4617 +vn 0.5626 -0.6857 -0.4617 +vn 0.6419 0.6857 -0.3431 +vn 0.6419 -0.6857 -0.3431 +vn 0.6966 0.6857 -0.2112 +vn 0.6965 -0.6857 -0.2113 +vn 0.7244 0.6857 -0.0713 +vn 0.7244 -0.6857 -0.0713 +vn 0.6965 0.6857 0.2113 +vn 0.6965 -0.6857 0.2113 +vn 0.7244 -0.6857 0.0713 +vn 0.7244 0.6857 0.0713 +vn 0.6419 0.6857 0.3431 +vn 0.6419 -0.6857 0.3431 +vn 0.5626 0.6857 0.4617 +vn 0.5626 -0.6857 0.4617 +vn 0.8614 0.2147 -0.4604 +vn 0.8767 0.1087 -0.4686 +vn 0.9513 0.1087 -0.2886 +vn 0.9346 0.2147 -0.2835 +vn 0.9720 0.2147 -0.0957 +vn 0.9893 0.1087 -0.0974 +vn 0.9720 0.2147 0.0957 +vn 0.9893 0.1087 0.0974 +vn 0.9346 0.2147 0.2835 +vn 0.9513 0.1087 0.2886 +vn 0.8614 0.2147 0.4604 +vn 0.8767 0.1087 0.4686 +vn 0.7550 0.2147 0.6196 +vn 0.6196 0.2147 0.7550 +vn 0.4604 0.2147 0.8614 +vn 0.2835 0.2147 0.9346 +vn 0.2886 0.1087 0.9513 +vn 0.0957 0.2147 0.9720 +vn 0.0974 0.1087 0.9893 +vn -0.0974 0.1087 0.9893 +vn -0.0957 0.2147 0.9720 +vn -0.2886 0.1087 0.9513 +vn -0.2835 0.2147 0.9346 +vn -0.4604 0.2147 0.8614 +vn -0.4686 0.1087 0.8767 +vn -0.6306 0.1087 0.7684 +vn -0.6196 0.2147 0.7550 +vn -0.7684 0.1087 0.6306 +vn -0.7550 0.2147 0.6196 +vn -0.8614 0.2147 0.4604 +vn -0.8767 0.1087 0.4686 +vn -0.9513 0.1087 0.2886 +vn -0.9346 0.2147 0.2835 +vn -0.9720 0.2147 0.0957 +vn -0.9893 0.1087 0.0974 +vn -0.9893 0.1087 -0.0974 +vn -0.9720 0.2147 -0.0957 +vn -0.9346 0.2147 -0.2835 +vn -0.9513 0.1087 -0.2886 +vn -0.8767 0.1087 -0.4686 +vn -0.8614 0.2147 -0.4604 +vn -0.7684 0.1087 -0.6306 +vn -0.7550 0.2147 -0.6196 +vn -0.6306 0.1087 -0.7684 +vn -0.6196 0.2147 -0.7550 +vn -0.4686 0.1087 -0.8767 +vn -0.4604 0.2147 -0.8614 +vn -0.2886 0.1087 -0.9513 +vn -0.2835 0.2147 -0.9346 +vn -0.0974 0.1087 -0.9893 +vn -0.0957 0.2147 -0.9720 +vn 0.2835 0.2147 -0.9346 +vn 0.0957 0.2147 -0.9720 +vn 0.0974 0.1087 -0.9893 +vn 0.2886 0.1087 -0.9513 +vn 0.6196 0.2147 -0.7550 +vn 0.4604 0.2147 -0.8614 +vn 0.4686 0.1087 -0.8767 +vn 0.6306 0.1087 -0.7684 +vn 0.7550 0.2147 -0.6196 +vn 0.7684 0.1087 -0.6306 +vn 0.4617 -0.6858 0.5626 +vn 0.4617 0.6857 0.5627 +vn 0.3032 0.6100 0.7321 +vn 0.3826 0.0000 0.9239 +vn 0.9914 0.0000 0.1305 +vn 0.7856 0.6100 0.1035 +vn -0.4824 0.6100 0.6287 +vn -0.6088 0.0000 0.7933 +vn 0.6087 -0.0000 -0.7934 +vn 0.4824 0.6100 -0.6287 +vn -0.3827 -0.0000 -0.9239 +vn -0.3032 0.6100 -0.7321 +vn -0.9914 -0.0000 -0.1305 +vn -0.7856 0.6100 -0.1035 +vn 0.7321 0.6100 0.3032 +vn 0.9239 0.0000 0.3827 +vn 0.7934 0.0000 -0.6087 +vn 0.6287 0.6100 -0.4824 +vn 0.1034 0.6100 0.7856 +vn 0.1305 0.0000 0.9914 +vn -0.1305 0.0000 -0.9914 +vn -0.1034 0.6100 -0.7856 +vn -0.9239 0.0000 -0.3827 +vn -0.7321 0.6100 -0.3032 +vn -0.7934 0.0000 0.6087 +vn -0.6286 0.6100 0.4824 +vn 0.7321 0.6100 -0.3032 +vn 0.9239 0.0000 -0.3827 +vn 0.1305 0.0000 -0.9914 +vn 0.1034 0.6100 -0.7856 +vn 0.6287 0.6100 0.4823 +vn 0.7934 0.0000 0.6087 +vn -0.7934 0.0000 -0.6087 +vn -0.6287 0.6100 -0.4824 +vn -0.9239 0.0000 0.3827 +vn -0.7321 0.6100 0.3032 +vn -0.1305 0.0000 0.9914 +vn -0.1034 0.6100 0.7856 +vn 0.3032 0.6100 -0.7321 +vn 0.3827 -0.0000 -0.9239 +vn -0.6087 -0.0000 -0.7934 +vn -0.4824 0.6100 -0.6287 +vn 0.7856 0.6100 -0.1034 +vn 0.9914 -0.0000 -0.1306 +vn -0.9914 0.0000 0.1305 +vn -0.7856 0.6100 0.1033 +vn -0.3827 0.0000 0.9239 +vn -0.3032 0.6100 0.7321 +vn 0.6088 0.0000 0.7934 +vn 0.4824 0.6100 0.6287 +vn -0.7856 0.6100 -0.1034 +vn 0.4825 0.6100 -0.6286 +vn -0.6087 0.0000 0.7934 +vn -0.4824 0.6100 0.6286 +vn 0.3827 0.0000 0.9239 +vn 0.3030 0.6100 0.7322 +vn 0.7856 0.6100 0.1034 +vn -0.7321 0.6100 -0.3031 +vn -0.7934 0.0000 0.6088 +vn -0.1035 0.6100 -0.7856 +vn 0.1306 0.0000 0.9914 +vn 0.6286 0.6100 -0.4824 +vn -0.7934 0.0000 -0.6088 +vn 0.6287 0.6100 0.4824 +vn 0.1306 0.0000 -0.9914 +vn -0.3034 0.6100 0.7320 +vn -0.7856 0.6100 0.1034 +vn -0.4823 0.6100 -0.6288 +vn -0.6306 0.7684 0.1087 +vn -0.7684 0.6306 0.1087 +vn 0.0974 0.9893 0.1087 +vn -0.0974 0.9893 0.1087 +vn -0.7793 -0.4431 -0.4431 +vn -0.6267 -0.5510 -0.5510 +vn -0.4139 -0.6437 -0.6437 +vn -0.1458 -0.6996 -0.6995 +vn 0.1458 -0.6996 -0.6995 +vn 0.4139 -0.6437 -0.6437 +vn 0.6267 -0.5510 -0.5510 +vn 0.7793 -0.4431 -0.4431 +vn 0.5603 0.6100 0.5603 +vn 0.7071 0.0000 0.7071 +vn 0.9659 0.0000 -0.2588 +vn 0.7654 0.6100 -0.2051 +vn -0.2051 0.6100 0.7654 +vn -0.2588 0.0000 0.9659 +vn 0.2588 0.0000 -0.9659 +vn 0.2051 0.6100 -0.7654 +vn -0.7071 0.0000 -0.7071 +vn -0.5603 0.6100 -0.5603 +vn -0.9659 0.0000 0.2588 +vn -0.7654 0.6100 0.2051 +vn 0.7924 0.6100 -0.0000 +vn 0.5000 0.0000 -0.8660 +vn 0.3962 0.6100 -0.6862 +vn 0.3962 0.6100 0.6862 +vn 0.5000 0.0000 0.8660 +vn -0.5000 0.0000 -0.8660 +vn -0.3962 0.6100 -0.6862 +vn -0.7924 0.6100 0.0000 +vn -0.5000 0.0000 0.8660 +vn -0.3962 0.6100 0.6862 +vn 0.5603 0.6100 -0.5603 +vn 0.7071 0.0000 -0.7071 +vn -0.2588 0.0000 -0.9659 +vn -0.2051 0.6100 -0.7654 +vn 0.7654 0.6100 0.2051 +vn 0.9659 0.0000 0.2588 +vn -0.9659 0.0000 -0.2588 +vn -0.7654 0.6100 -0.2051 +vn -0.7071 0.0000 0.7071 +vn -0.5603 0.6100 0.5603 +vn 0.2588 0.0000 0.9659 +vn 0.2051 0.6100 0.7654 +vn -0.0000 0.6100 -0.7924 +vn -0.8660 0.0000 -0.5000 +vn -0.6861 0.6100 -0.3963 +vn 0.6863 0.6100 -0.3961 +vn 0.8660 0.0000 -0.5000 +vn -0.8660 0.0000 0.5000 +vn -0.6862 0.6100 0.3962 +vn 0.0000 0.6100 0.7924 +vn 0.8660 0.0000 0.5000 +vn 0.6861 0.6100 0.3963 +vn 0.6862 0.6100 0.3962 +vn -0.6863 0.6100 0.3961 +vn 0.6862 0.6100 -0.3962 +vn 0.0003 0.6100 -0.7924 +vn 0.2113 -0.6965 0.6857 +vn 0.2113 -0.6965 -0.6857 +vn 0.3431 -0.6419 -0.6857 +vn 0.3432 -0.6419 0.6857 +vn 0.0713 -0.7244 0.6857 +vn 0.0713 -0.7244 -0.6857 +vn -0.0713 -0.7244 0.6857 +vn -0.0713 -0.7244 -0.6857 +vn -0.2113 -0.6965 0.6857 +vn -0.2113 -0.6965 -0.6857 +vn -0.3430 -0.6420 0.6857 +vn -0.3432 -0.6419 -0.6857 +vn -0.4616 -0.5627 0.6857 +vn -0.4618 -0.5626 -0.6857 +vn -0.5627 -0.4617 0.6857 +vn -0.5627 -0.4617 -0.6857 +vn -0.6419 -0.3431 0.6857 +vn -0.6419 -0.3431 -0.6857 +vn -0.6965 -0.2113 0.6857 +vn -0.6965 -0.2113 -0.6857 +vn -0.7244 -0.0713 0.6857 +vn -0.7244 -0.0713 -0.6857 +vn -0.7244 0.0713 0.6857 +vn -0.7244 0.0713 -0.6857 +vn -0.6965 0.2113 0.6857 +vn -0.6965 0.2113 -0.6857 +vn -0.6419 0.3431 0.6857 +vn -0.6419 0.3431 -0.6857 +vn -0.5626 0.4617 0.6857 +vn -0.5626 0.4617 -0.6857 +vn -0.4617 0.5626 0.6857 +vn -0.4617 0.5626 -0.6857 +vn -0.3431 0.6419 0.6857 +vn -0.3431 0.6419 -0.6857 +vn -0.2113 0.6965 0.6857 +vn -0.2113 0.6965 -0.6857 +vn -0.0713 0.7244 0.6857 +vn -0.0713 0.7244 -0.6857 +vn 0.0713 0.7244 0.6857 +vn 0.0713 0.7244 -0.6857 +vn 0.2113 0.6965 0.6857 +vn 0.2113 0.6965 -0.6857 +vn 0.4617 0.5626 0.6857 +vn 0.4617 0.5626 -0.6857 +vn 0.3431 0.6419 -0.6857 +vn 0.3431 0.6419 0.6857 +vn 0.5626 0.4617 0.6857 +vn 0.5626 0.4617 -0.6857 +vn 0.6419 0.3431 0.6857 +vn 0.6419 0.3431 -0.6857 +vn 0.6965 0.2115 0.6857 +vn 0.6966 0.2112 -0.6857 +vn 0.7244 0.0713 0.6857 +vn 0.7244 0.0713 -0.6857 +vn 0.6966 -0.2112 0.6857 +vn 0.6965 -0.2114 -0.6857 +vn 0.7244 -0.0713 -0.6857 +vn 0.7244 -0.0713 0.6857 +vn 0.6419 -0.3431 0.6857 +vn 0.6419 -0.3431 -0.6857 +vn 0.5626 -0.4617 0.6857 +vn 0.5626 -0.4617 -0.6857 +vn 0.8614 0.4604 0.2147 +vn 0.8767 0.4686 0.1087 +vn 0.9513 0.2886 0.1087 +vn 0.9346 0.2835 0.2147 +vn 0.9720 0.0957 0.2147 +vn 0.9893 0.0974 0.1087 +vn 0.9720 -0.0957 0.2147 +vn 0.9893 -0.0974 0.1087 +vn 0.9346 -0.2835 0.2147 +vn 0.9513 -0.2886 0.1087 +vn 0.8614 -0.4604 0.2147 +vn 0.8767 -0.4686 0.1087 +vn 0.7550 -0.6196 0.2147 +vn 0.7684 -0.6306 0.1087 +vn 0.6306 -0.7684 0.1087 +vn 0.6196 -0.7550 0.2147 +vn 0.4604 -0.8614 0.2147 +vn 0.4686 -0.8767 0.1087 +vn 0.2835 -0.9346 0.2147 +vn 0.2886 -0.9513 0.1087 +vn 0.0957 -0.9720 0.2147 +vn 0.0974 -0.9893 0.1087 +vn -0.0974 -0.9893 0.1087 +vn -0.0957 -0.9720 0.2147 +vn -0.2886 -0.9513 0.1087 +vn -0.2835 -0.9346 0.2147 +vn -0.4604 -0.8614 0.2147 +vn -0.4686 -0.8767 0.1087 +vn -0.6306 -0.7684 0.1087 +vn -0.6196 -0.7550 0.2147 +vn -0.7684 -0.6306 0.1087 +vn -0.7550 -0.6196 0.2147 +vn -0.8614 -0.4604 0.2147 +vn -0.8767 -0.4686 0.1087 +vn -0.9513 -0.2886 0.1087 +vn -0.9346 -0.2835 0.2147 +vn -0.9720 -0.0957 0.2147 +vn -0.9893 -0.0974 0.1087 +vn -0.9893 0.0974 0.1087 +vn -0.9720 0.0957 0.2147 +vn -0.9346 0.2835 0.2147 +vn -0.9513 0.2886 0.1087 +vn -0.8767 0.4686 0.1087 +vn -0.8614 0.4604 0.2147 +vn -0.7550 0.6196 0.2147 +vn -0.6196 0.7550 0.2147 +vn -0.4686 0.8767 0.1087 +vn -0.4604 0.8614 0.2147 +vn -0.2886 0.9513 0.1087 +vn -0.2835 0.9346 0.2147 +vn -0.0957 0.9720 0.2147 +vn 0.2835 0.9346 0.2147 +vn 0.0957 0.9720 0.2147 +vn 0.2886 0.9513 0.1087 +vn 0.6196 0.7550 0.2147 +vn 0.4604 0.8614 0.2147 +vn 0.4686 0.8767 0.1087 +vn 0.6306 0.7684 0.1087 +vn 0.7550 0.6196 0.2147 +vn 0.7684 0.6306 0.1087 +vn 0.4617 -0.5626 -0.6858 +vn 0.4617 -0.5626 0.6857 +vn 0.3032 -0.7321 0.6100 +vn 0.3826 -0.9239 0.0000 +vn 0.9914 -0.1305 0.0000 +vn 0.7856 -0.1036 0.6100 +vn -0.4825 -0.6286 0.6100 +vn -0.6088 -0.7933 0.0000 +vn 0.6087 0.7934 0.0000 +vn 0.4824 0.6286 0.6100 +vn -0.3827 0.9239 0.0000 +vn -0.3032 0.7321 0.6100 +vn -0.9914 0.1305 0.0000 +vn -0.7856 0.1033 0.6100 +vn 0.7321 -0.3033 0.6100 +vn 0.9239 -0.3827 0.0000 +vn 0.7934 0.6087 0.0000 +vn 0.6287 0.4824 0.6100 +vn 0.1034 -0.7856 0.6100 +vn 0.1305 -0.9914 0.0000 +vn -0.1305 0.9914 0.0000 +vn -0.1034 0.7856 0.6100 +vn -0.9239 0.3827 0.0000 +vn -0.7321 0.3032 0.6100 +vn -0.7934 -0.6087 0.0000 +vn -0.6288 -0.4823 0.6100 +vn 0.7321 0.3032 0.6100 +vn 0.9239 0.3827 0.0000 +vn 0.1305 0.9914 0.0000 +vn 0.1034 0.7856 0.6100 +vn 0.6286 -0.4825 0.6100 +vn 0.7934 -0.6087 0.0000 +vn -0.7934 0.6087 0.0000 +vn -0.6287 0.4824 0.6100 +vn -0.9239 -0.3827 0.0000 +vn -0.7321 -0.3031 0.6100 +vn -0.1305 -0.9914 0.0000 +vn -0.1034 -0.7856 0.6100 +vn 0.3032 0.7321 0.6100 +vn 0.3827 0.9239 0.0000 +vn -0.6087 0.7934 0.0000 +vn -0.4823 0.6287 0.6100 +vn 0.7856 0.1033 0.6100 +vn 0.9914 0.1306 0.0000 +vn -0.9914 -0.1305 0.0000 +vn -0.7856 -0.1033 0.6100 +vn -0.3827 -0.9239 0.0000 +vn -0.3032 -0.7321 0.6100 +vn 0.6088 -0.7934 -0.0000 +vn 0.4824 -0.6286 0.6100 +vn -0.3033 0.7321 0.6100 +vn -0.7856 0.1034 0.6100 +vn 0.4824 0.6287 0.6100 +vn -0.6087 -0.7934 0.0000 +vn 0.3827 -0.9239 0.0000 +vn 0.3033 -0.7321 0.6100 +vn 0.7856 -0.1034 0.6100 +vn -0.7321 0.3033 0.6100 +vn -0.7934 -0.6088 0.0000 +vn -0.6287 -0.4824 0.6100 +vn -0.1035 0.7856 0.6100 +vn 0.1306 -0.9914 0.0000 +vn 0.7321 -0.3032 0.6100 +vn 0.6287 0.4823 0.6100 +vn -0.7321 -0.3032 0.6100 +vn -0.7934 0.6088 0.0000 +vn 0.6287 -0.4824 0.6100 +vn 0.7321 0.3033 0.6100 +vn 0.1306 0.9914 0.0000 +vn -0.3031 -0.7322 0.6100 +vn 0.4823 -0.6287 0.6100 +vn -0.7856 -0.1034 0.6100 +vn 0.7856 0.1034 0.6100 +vn -0.4824 0.6287 0.6100 +vn 0.5603 -0.5603 0.6100 +vn 0.7071 -0.7071 0.0000 +vn 0.9659 0.2588 0.0000 +vn 0.7654 0.2051 0.6100 +vn -0.2051 -0.7654 0.6100 +vn -0.2588 -0.9659 0.0000 +vn 0.2588 0.9659 0.0000 +vn 0.2051 0.7654 0.6100 +vn -0.7071 0.7071 0.0000 +vn -0.5603 0.5603 0.6100 +vn -0.9659 -0.2588 0.0000 +vn -0.7654 -0.2051 0.6100 +vn 0.7924 0.0000 0.6100 +vn 0.5000 0.8660 0.0000 +vn 0.3962 0.6862 0.6100 +vn 0.3962 -0.6862 0.6100 +vn 0.5000 -0.8660 0.0000 +vn -0.5000 0.8660 0.0000 +vn -0.3962 0.6862 0.6100 +vn -0.7924 -0.0000 0.6100 +vn -0.5000 -0.8660 0.0000 +vn -0.3962 -0.6862 0.6100 +vn 0.5603 0.5603 0.6100 +vn 0.7071 0.7071 0.0000 +vn -0.2588 0.9659 0.0000 +vn -0.2051 0.7654 0.6100 +vn 0.7654 -0.2051 0.6100 +vn 0.9659 -0.2588 0.0000 +vn -0.9659 0.2588 0.0000 +vn -0.7654 0.2051 0.6100 +vn -0.7071 -0.7071 0.0000 +vn -0.5603 -0.5603 0.6100 +vn 0.2588 -0.9659 0.0000 +vn 0.2051 -0.7654 0.6100 +vn 0.0001 0.7924 0.6100 +vn -0.8660 0.5000 -0.0000 +vn -0.6862 0.3962 0.6100 +vn 0.6862 0.3963 0.6100 +vn 0.8660 0.5000 -0.0000 +vn -0.8660 -0.5000 0.0000 +vn -0.6863 -0.3961 0.6100 +vn -0.0001 -0.7924 0.6100 +vn 0.8660 -0.5000 0.0000 +vn 0.6862 -0.3962 0.6100 +vn 0.0000 -0.7924 0.6100 +vn 0.6862 -0.3963 0.6100 +vn -0.6861 -0.3963 0.6100 +vn 0.6862 0.3962 0.6100 +vn -0.0000 0.7924 0.6100 +vn -0.6863 0.3961 0.6100 +g Pipe_Cylinder.002_None.004_Pipe_Cylinder.002_None.004_None +s off +f 1/1/1 2/2/1 3/3/1 4/4/1 5/5/1 6/6/1 +f 7/7/2 8/8/2 9/9/2 10/10/2 11/11/2 12/12/2 +f 13/13/1 14/14/1 15/15/1 16/16/1 17/17/1 18/18/1 +f 19/19/2 20/20/2 21/21/2 22/22/2 23/23/2 24/24/2 +f 25/25/1 26/26/1 27/27/1 28/28/1 29/29/1 30/30/1 +f 31/31/2 32/32/2 33/33/2 34/34/2 35/35/2 36/36/2 +f 37/37/1 38/38/1 39/39/1 40/40/1 41/41/1 42/42/1 +f 43/43/2 44/44/2 45/45/2 46/46/2 47/47/2 48/48/2 +f 49/49/1 50/50/1 51/51/1 52/52/1 53/53/1 54/54/1 +f 55/55/2 56/56/2 57/57/2 58/58/2 59/59/2 60/60/2 +f 61/61/1 62/62/1 63/63/1 64/64/1 65/65/1 66/66/1 +f 67/67/2 68/68/2 69/69/2 70/70/2 71/71/2 72/72/2 +f 73/73/1 74/74/1 75/75/1 76/76/1 77/77/1 78/78/1 +f 79/79/2 80/80/2 81/81/2 82/82/2 83/83/2 84/84/2 +f 85/85/1 86/86/1 87/87/1 88/88/1 89/89/1 90/90/1 +f 91/91/2 92/92/2 93/93/2 94/94/2 95/95/2 96/96/2 +f 97/97/2 98/98/2 99/99/2 100/100/2 101/101/2 102/102/2 103/103/2 104/104/2 105/105/2 106/106/2 107/107/2 108/108/2 109/109/2 110/110/2 111/111/2 112/112/2 113/113/2 114/114/2 115/115/2 116/116/2 117/117/2 118/118/2 119/119/2 120/120/2 121/121/2 122/122/2 123/123/2 124/124/2 125/125/2 126/126/2 127/127/2 128/128/2 +f 129/129/1 130/130/1 131/131/1 132/132/1 133/133/1 134/134/1 135/135/1 136/136/1 137/137/1 138/138/1 139/139/1 140/140/1 141/141/1 142/142/1 143/143/1 144/144/1 145/145/1 146/146/1 147/147/1 148/148/1 149/149/1 150/150/1 151/151/1 152/152/1 153/153/1 154/154/1 155/155/1 156/156/1 157/157/1 158/158/1 159/159/1 160/160/1 +f 161/161/1 162/162/1 163/163/1 164/164/1 165/165/1 166/166/1 167/167/1 168/168/1 169/169/1 170/170/1 171/171/1 172/172/1 173/173/1 174/174/1 175/175/1 176/176/1 177/177/1 178/178/1 179/179/1 180/180/1 181/181/1 182/182/1 183/183/1 184/184/1 185/185/1 186/186/1 187/187/1 188/188/1 189/189/1 190/190/1 191/191/1 192/192/1 +f 193/193/2 194/194/2 195/195/2 196/196/2 197/197/2 198/198/2 199/199/2 200/200/2 201/201/2 202/202/2 203/203/2 204/204/2 205/205/2 206/206/2 207/207/2 208/208/2 209/209/2 210/210/2 211/211/2 212/212/2 213/213/2 214/214/2 215/215/2 216/216/2 217/217/2 218/218/2 219/219/2 220/220/2 221/221/2 222/222/2 223/223/2 224/224/2 +f 225/225/1 226/226/1 227/227/1 228/228/1 229/229/1 230/230/1 +f 231/231/2 232/232/2 233/233/2 234/234/2 235/235/2 236/236/2 +f 237/237/1 238/238/1 239/239/1 240/240/1 241/241/1 242/242/1 +f 243/243/2 244/244/2 245/245/2 246/246/2 247/247/2 248/248/2 +f 249/249/1 250/250/1 251/251/1 252/252/1 253/253/1 254/254/1 +f 255/255/2 256/256/2 257/257/2 258/258/2 259/259/2 260/260/2 +f 261/261/1 262/262/1 263/263/1 264/264/1 265/265/1 266/266/1 +f 267/267/2 268/268/2 269/269/2 270/270/2 271/271/2 272/272/2 +f 273/273/1 274/274/1 275/275/1 276/276/1 277/277/1 278/278/1 +f 279/279/2 280/280/2 281/281/2 282/282/2 283/283/2 284/284/2 +f 285/285/1 286/286/1 287/287/1 288/288/1 289/289/1 290/290/1 +f 291/291/2 292/292/2 293/293/2 294/294/2 295/295/2 296/296/2 +f 297/297/1 298/298/1 299/299/1 300/300/1 301/301/1 302/302/1 +f 303/303/2 304/304/2 305/305/2 306/306/2 307/307/2 308/308/2 +f 309/309/1 310/310/1 311/311/1 312/312/1 313/313/1 314/314/1 +f 315/315/2 316/316/2 317/317/2 318/318/2 319/319/2 320/320/2 +f 321/321/3 322/322/3 323/323/3 324/324/3 325/325/3 326/326/3 +f 327/327/3 328/328/3 329/329/3 330/330/3 331/331/3 332/332/3 +f 333/333/3 334/334/3 335/335/3 336/336/3 337/337/3 338/338/3 +f 339/339/3 340/340/3 341/341/3 342/342/3 343/343/3 344/344/3 +f 345/345/3 346/346/3 347/347/3 348/348/3 349/349/3 350/350/3 +f 351/351/3 352/352/3 353/353/3 354/354/3 355/355/3 356/356/3 +f 357/357/3 358/358/3 359/359/3 360/360/3 361/361/3 362/362/3 +f 363/363/3 364/364/3 365/365/3 366/366/3 367/367/3 368/368/3 +f 369/369/3 370/370/3 371/371/3 372/372/3 373/373/3 374/374/3 375/375/3 376/376/3 377/377/3 378/378/3 379/379/3 380/380/3 381/381/3 382/382/3 383/383/3 384/384/3 385/385/3 386/386/3 387/387/3 388/388/3 389/389/3 390/390/3 391/391/3 392/392/3 393/393/3 394/394/3 395/395/3 396/396/3 397/397/3 398/398/3 399/399/3 400/400/3 +f 401/401/4 402/402/4 403/403/4 404/404/4 405/405/4 406/406/4 407/407/4 408/408/4 409/409/4 410/410/4 411/411/4 412/412/4 413/413/4 414/414/4 415/415/4 416/416/4 417/417/4 418/418/4 419/419/4 420/420/4 421/421/4 422/422/4 423/423/4 424/424/4 425/425/4 426/426/4 427/427/4 428/428/4 429/429/4 430/430/4 431/431/4 432/432/4 +f 433/433/3 434/434/3 435/435/3 436/436/3 437/437/3 438/438/3 +f 439/439/3 440/440/3 441/441/3 442/442/3 443/443/3 444/444/3 +f 445/445/3 446/446/3 447/447/3 448/448/3 449/449/3 450/450/3 +f 451/451/3 452/452/3 453/453/3 454/454/3 455/455/3 456/456/3 +f 457/457/3 458/458/3 459/459/3 460/460/3 461/461/3 462/462/3 +f 463/463/3 464/464/3 465/465/3 466/466/3 467/467/3 468/468/3 +f 469/469/3 470/470/3 471/471/3 472/472/3 473/473/3 474/474/3 +f 475/475/3 476/476/3 477/477/3 478/478/3 479/479/3 480/480/3 +f 481/481/5 482/482/5 483/483/5 484/484/5 485/485/5 486/486/5 +f 487/487/5 488/488/5 489/489/5 490/490/5 491/491/5 492/492/5 +f 493/493/5 494/494/5 495/495/5 496/496/5 497/497/5 498/498/5 +f 499/499/5 500/500/5 501/501/5 502/502/5 503/503/5 504/504/5 +f 505/505/5 506/506/5 507/507/5 508/508/5 509/509/5 510/510/5 +f 511/511/5 512/512/5 513/513/5 514/514/5 515/515/5 516/516/5 +f 517/517/5 518/518/5 519/519/5 520/520/5 521/521/5 522/522/5 +f 523/523/5 524/524/5 525/525/5 526/526/5 527/527/5 528/528/5 +f 529/529/5 530/530/5 531/531/5 532/532/5 533/533/5 534/534/5 535/535/5 536/536/5 537/537/5 538/538/5 539/539/5 540/540/5 541/541/5 542/542/5 543/543/5 544/544/5 545/545/5 546/546/5 547/547/5 548/548/5 549/549/5 550/550/5 551/551/5 552/552/5 553/553/5 554/554/5 555/555/5 556/556/5 557/557/5 558/558/5 559/559/5 560/560/5 +f 561/561/6 562/562/6 563/563/6 564/564/6 565/565/6 566/566/6 567/567/6 568/568/6 569/569/6 570/570/6 571/571/6 572/572/6 573/573/6 574/574/6 575/575/6 576/576/6 577/577/6 578/578/6 579/579/6 580/580/6 581/581/6 582/582/6 583/583/6 584/584/6 585/585/6 586/586/6 587/587/6 588/588/6 589/589/6 590/590/6 591/591/6 592/592/6 +f 593/593/5 594/594/5 595/595/5 596/596/5 597/597/5 598/598/5 +f 599/599/5 600/600/5 601/601/5 602/602/5 603/603/5 604/604/5 +f 605/605/5 606/606/5 607/607/5 608/608/5 609/609/5 610/610/5 +f 611/611/5 612/612/5 613/613/5 614/614/5 615/615/5 616/616/5 +f 617/617/5 618/618/5 619/619/5 620/620/5 621/621/5 622/622/5 +f 623/623/5 624/624/5 625/625/5 626/626/5 627/627/5 628/628/5 +f 629/629/5 630/630/5 631/631/5 632/632/5 633/633/5 634/634/5 +f 635/635/5 636/636/5 637/637/5 638/638/5 639/639/5 640/640/5 +s 1 +f 127/641/7 150/642/8 149/643/9 128/644/10 +f 126/645/11 151/646/12 150/642/8 127/641/7 +f 125/647/13 152/648/14 151/646/12 126/645/11 +f 124/649/15 153/650/16 152/648/14 125/647/13 +f 123/651/17 154/652/18 153/650/16 124/649/15 +f 122/653/19 155/654/20 154/652/18 123/651/17 +f 121/655/21 156/656/22 155/654/20 122/653/19 +f 120/657/23 157/658/24 156/656/22 121/655/21 +f 119/659/25 158/660/26 157/658/24 120/657/23 +f 118/661/27 159/662/28 158/660/26 119/659/25 +f 117/663/29 160/664/30 159/662/28 118/661/27 +f 116/665/31 129/666/32 160/664/30 117/663/29 +f 115/667/33 130/668/34 129/666/32 116/665/31 +f 114/669/35 131/670/36 130/671/34 115/667/33 +f 113/672/37 132/673/38 131/670/36 114/669/35 +f 112/674/39 133/675/40 132/673/38 113/672/37 +f 111/676/41 134/677/42 133/678/40 112/679/39 +f 110/680/43 135/681/44 134/677/42 111/676/41 +f 109/682/45 136/683/46 135/681/44 110/680/43 +f 108/684/47 137/685/48 136/683/46 109/682/45 +f 106/686/49 139/687/50 138/688/51 107/689/52 +f 107/689/52 138/688/51 137/685/48 108/684/47 +f 105/690/53 140/691/54 139/687/50 106/686/49 +f 104/692/55 141/693/56 140/691/54 105/690/53 +f 103/694/57 142/695/58 141/693/56 104/692/55 +f 102/696/59 143/697/60 142/695/58 103/694/57 +f 100/698/61 145/699/62 144/700/63 101/701/64 +f 101/701/64 144/700/63 143/697/60 102/696/59 +f 99/702/65 146/703/66 145/699/62 100/698/61 +f 98/704/67 147/705/68 146/703/66 99/702/65 +f 641/706/69 642/707/70 643/708/71 644/709/72 +f 645/710/73 644/709/72 643/708/71 646/711/74 +f 647/712/75 645/710/73 646/711/74 648/713/76 +f 649/714/77 647/712/75 648/713/76 650/715/78 +f 651/716/79 649/714/77 650/715/78 652/717/80 +f 653/718/81 651/716/79 652/717/80 654/719/82 +f 653/718/81 654/719/82 655/720/83 656/721/84 +f 657/722/85 656/721/84 655/720/83 658/723/86 +f 659/724/87 657/722/85 658/723/86 660/725/88 +f 661/726/89 659/724/87 660/725/88 662/727/90 +f 661/726/89 662/727/90 663/728/91 664/729/92 +f 664/729/92 663/728/91 665/730/93 666/731/94 +f 667/732/95 668/733/96 669/734/97 670/735/98 +f 666/731/94 665/730/93 668/733/96 667/732/95 +f 670/735/98 669/734/97 671/736/99 672/737/100 +f 673/738/101 672/737/100 671/736/99 674/739/102 +f 673/738/101 674/739/102 675/740/103 676/741/104 +f 677/742/105 676/741/104 675/740/103 678/743/106 +f 677/744/105 678/745/106 679/746/107 680/747/108 +f 681/748/109 680/747/108 679/746/107 682/749/110 +f 681/748/109 682/749/110 683/750/111 684/751/112 +f 684/751/112 683/750/111 685/752/113 686/753/114 +f 686/753/114 685/752/113 687/754/115 688/755/116 +f 688/755/116 687/754/115 689/756/117 690/757/118 +f 690/757/118 689/756/117 691/758/119 692/759/120 +f 692/759/120 691/758/119 693/760/121 694/761/122 +f 695/762/123 696/763/124 697/764/125 698/765/126 +f 696/763/124 694/761/122 693/760/121 697/764/125 +f 699/766/127 700/767/128 701/768/129 702/769/130 +f 695/762/123 698/765/126 701/768/129 700/767/128 +f 703/770/131 699/766/127 702/769/130 704/771/132 +f 703/770/131 704/771/132 642/707/70 641/706/69 +f 705/772/133 665/730/93 663/728/91 706/773/134 +f 707/774/135 668/733/96 665/730/93 705/772/133 +f 708/775/136 669/734/97 668/733/96 707/774/135 +f 709/776/137 710/777/138 711/778/139 712/779/140 +f 713/780/141 714/781/142 710/777/138 709/776/137 +f 715/782/143 716/783/144 714/781/142 713/780/141 +f 717/784/145 708/785/136 718/786/146 719/787/147 +f 712/779/140 711/778/139 720/788/148 721/789/149 +f 722/790/150 723/791/151 716/783/144 715/782/143 +f 724/792/152 725/793/153 726/794/154 727/795/155 +f 728/796/156 721/789/149 720/788/148 729/797/157 +f 730/798/158 731/799/159 723/791/151 722/790/150 +f 732/800/160 724/792/152 727/795/155 733/801/161 +f 734/802/162 728/796/156 729/797/157 735/803/163 +f 189/804/164 194/805/165 193/806/166 190/807/167 +f 192/808/28 223/809/27 222/810/29 161/811/30 +f 736/812/168 726/794/154 731/799/159 730/798/158 +f 188/813/20 195/814/19 194/805/165 189/804/164 +f 737/815/169 734/802/162 735/803/163 738/816/170 +f 161/811/30 222/810/29 221/817/31 162/818/32 +f 739/819/171 727/795/155 726/794/154 736/812/168 +f 187/820/18 196/821/17 195/814/19 188/813/20 +f 740/822/172 741/823/173 742/824/174 743/825/175 +f 744/826/176 737/815/169 738/816/170 745/827/177 +f 186/828/16 197/829/15 196/821/17 187/820/18 +f 746/830/178 733/801/161 727/795/155 739/819/171 +f 184/831/12 199/832/11 198/833/13 185/834/14 +f 747/835/179 744/826/176 745/827/177 748/836/180 +f 162/818/32 221/817/31 220/837/33 163/838/34 +f 749/839/181 742/840/174 733/801/161 746/830/178 +f 183/841/8 200/842/182 199/832/11 184/831/12 +f 750/843/183 751/844/184 752/845/185 753/846/186 +f 754/847/187 755/848/188 756/849/189 757/850/190 +f 758/851/191 747/835/179 748/836/180 757/850/190 +f 163/838/34 220/837/33 219/852/35 164/853/36 +f 759/854/192 743/825/175 742/824/174 749/855/181 +f 128/644/10 149/643/9 148/856/193 97/857/194 +f 182/858/9 201/859/10 200/842/182 183/841/8 +f 760/860/195 750/843/183 753/846/186 761/861/196 +f 762/862/197 763/863/198 756/849/189 755/848/188 +f 764/864/199 758/851/191 757/850/190 756/849/189 +f 164/853/36 219/852/35 218/865/37 165/866/38 +f 765/867/200 752/845/185 743/825/175 759/854/192 +f 181/868/193 202/869/194 201/859/10 182/858/9 +f 766/870/201 764/864/199 756/849/189 763/863/198 +f 165/866/38 218/865/37 217/871/39 166/872/40 +f 767/873/202 753/846/186 752/845/185 765/867/200 +f 180/874/203 203/875/204 202/869/194 181/868/193 +f 768/876/205 766/870/201 763/863/198 769/877/206 +f 167/878/42 216/879/41 215/880/43 168/881/44 +f 767/873/202 770/882/207 761/861/196 753/846/186 +f 166/872/40 217/871/39 216/883/41 167/884/42 +f 771/885/208 772/886/209 773/887/210 774/888/211 +f 775/889/212 776/890/213 777/891/214 778/892/215 +f 779/893/216 768/876/205 769/877/206 780/894/217 +f 168/881/44 215/880/43 214/895/45 169/896/46 +f 190/807/167 193/806/166 224/897/25 191/898/26 +f 781/899/218 782/900/219 761/861/196 770/882/207 +f 179/901/66 204/902/220 203/875/204 180/874/203 +f 783/903/221 771/885/208 774/888/211 784/904/222 +f 777/891/214 776/890/213 783/903/221 784/904/222 +f 785/905/223 779/893/216 780/894/217 786/906/224 +f 169/896/46 214/895/45 213/907/47 170/908/48 +f 781/899/218 787/909/225 773/887/210 782/900/219 +f 178/910/226 205/911/227 204/902/220 179/901/66 +f 788/912/228 785/905/223 786/906/224 778/892/215 +f 170/908/48 213/913/47 212/914/52 171/915/51 +f 787/909/225 789/916/229 774/888/211 773/887/210 +f 177/917/230 206/918/231 205/911/227 178/910/226 +f 185/834/14 198/833/13 197/829/15 186/828/16 +f 790/919/232 788/912/228 778/892/215 777/891/214 +f 171/915/51 212/914/52 211/920/49 172/921/50 +f 789/916/229 791/922/233 784/904/222 774/888/211 +f 176/923/60 207/924/59 206/918/231 177/917/230 +f 791/922/233 790/919/232 777/891/214 784/904/222 +f 191/898/26 224/897/25 223/809/27 192/808/28 +f 175/925/58 208/926/57 207/924/59 176/923/60 +f 172/921/50 211/920/49 210/927/53 173/928/54 +f 174/929/56 209/930/55 208/926/57 175/925/58 +f 173/928/54 210/927/53 209/930/55 174/929/56 +f 1/931/234 792/932/235 793/933/236 2/934/237 +f 6/935/238 794/936/239 792/932/235 1/931/234 +f 2/934/237 793/933/236 795/937/240 3/938/241 +f 3/938/241 795/937/240 796/939/242 4/940/243 +f 4/941/243 796/942/242 797/943/244 5/944/245 +f 5/944/245 797/943/244 794/936/239 6/935/238 +f 7/945/246 798/946/242 799/947/247 8/948/248 +f 12/949/249 800/950/250 798/946/242 7/945/246 +f 8/948/248 799/947/247 801/951/251 9/952/252 +f 9/952/252 801/951/251 802/953/235 10/954/253 +f 10/955/253 802/956/235 803/957/239 11/958/254 +f 11/958/254 803/957/239 800/950/250 12/949/249 +f 13/959/255 804/960/256 805/961/257 14/962/258 +f 18/963/259 806/964/260 804/960/256 13/959/255 +f 14/962/258 805/961/257 807/965/261 15/966/262 +f 15/966/262 807/965/261 808/967/263 16/968/264 +f 16/969/264 808/970/263 809/971/265 17/972/266 +f 17/972/266 809/971/265 806/964/260 18/963/259 +f 19/973/267 810/974/263 811/975/261 20/976/268 +f 24/977/269 812/978/265 810/974/263 19/973/267 +f 20/976/268 811/975/261 813/979/257 21/980/270 +f 21/980/270 813/979/257 814/981/271 22/982/272 +f 22/983/272 814/984/271 815/985/273 23/986/274 +f 23/986/274 815/985/273 812/978/265 24/977/269 +f 25/987/275 816/988/276 817/989/277 26/990/278 +f 30/991/279 818/992/280 816/988/276 25/987/275 +f 26/990/278 817/989/277 819/993/281 27/994/282 +f 27/994/282 819/993/281 820/995/283 28/996/284 +f 28/997/284 820/998/283 821/999/285 29/1000/286 +f 29/1000/286 821/999/285 818/992/280 30/991/279 +f 31/1001/287 822/1002/283 823/1003/288 32/1004/289 +f 36/1005/290 824/1006/291 822/1002/283 31/1001/287 +f 32/1004/289 823/1003/288 825/1007/292 33/1008/293 +f 33/1008/293 825/1007/292 826/1009/276 34/1010/294 +f 34/1011/294 826/1012/276 827/1013/295 35/1014/296 +f 35/1014/296 827/1013/295 824/1006/291 36/1005/290 +f 37/1015/297 828/1016/298 829/1017/299 38/1018/300 +f 42/1019/301 830/1020/302 828/1016/298 37/1015/297 +f 38/1018/300 829/1017/299 831/1021/303 39/1022/304 +f 39/1022/304 831/1021/303 832/1023/305 40/1024/306 +f 40/1025/306 832/1026/305 833/1027/307 41/1028/308 +f 41/1028/308 833/1027/307 830/1020/302 42/1019/301 +f 43/1029/309 834/1030/305 835/1031/303 44/1032/310 +f 48/1033/311 836/1034/312 834/1030/305 43/1029/309 +f 44/1032/310 835/1031/303 837/1035/299 45/1036/313 +f 45/1036/313 837/1035/299 838/1037/298 46/1038/314 +f 46/1039/314 838/1040/298 839/1041/315 47/1042/316 +f 47/1042/316 839/1041/315 836/1034/312 48/1033/311 +f 49/1043/243 840/1044/242 841/1045/250 50/1046/245 +f 54/1047/241 842/1048/247 840/1044/242 49/1043/243 +f 50/1046/245 841/1045/250 843/1049/317 51/1050/238 +f 51/1050/238 843/1049/317 844/1051/235 52/1052/234 +f 52/1053/234 844/1054/235 845/1055/251 53/1056/237 +f 53/1056/237 845/1055/251 842/1048/247 54/1047/241 +f 55/1057/253 846/1058/235 847/1059/239 56/1060/254 +f 60/1061/252 848/1062/251 846/1058/235 55/1057/253 +f 56/1060/254 847/1059/239 849/1063/244 57/1064/249 +f 57/1064/249 849/1063/244 850/1065/242 58/1066/318 +f 58/1067/318 850/1068/242 851/1069/247 59/1070/248 +f 59/1070/248 851/1069/247 848/1062/251 60/1061/252 +f 61/1071/264 852/1072/263 853/1073/265 62/1074/319 +f 66/1075/262 854/1076/320 852/1072/263 61/1071/264 +f 62/1074/319 853/1073/265 855/1077/273 63/1078/321 +f 63/1078/321 855/1077/273 856/1079/271 64/1080/255 +f 64/1081/255 856/1082/271 857/1083/322 65/1084/323 +f 65/1084/323 857/1083/322 854/1076/320 66/1075/262 +f 67/1085/324 858/1086/271 859/1087/325 68/1088/326 +f 72/1089/270 860/1090/257 858/1086/271 67/1085/324 +f 68/1088/326 859/1087/325 861/1091/327 69/1092/269 +f 69/1092/269 861/1091/327 862/1093/263 70/1094/328 +f 70/1095/328 862/1096/263 863/1097/261 71/1098/329 +f 71/1098/329 863/1097/261 860/1090/257 72/1089/270 +f 73/1099/284 864/1100/283 865/1101/291 74/1102/286 +f 78/1103/330 866/1104/288 864/1100/283 73/1099/284 +f 74/1102/286 865/1101/291 867/1105/295 75/1106/331 +f 75/1106/331 867/1105/295 868/1107/276 76/1108/275 +f 76/1109/275 868/1110/276 869/1111/292 77/1112/278 +f 77/1112/278 869/1111/292 866/1104/288 78/1103/330 +f 79/1113/294 870/1114/276 871/1115/280 80/1116/296 +f 84/1117/332 872/1118/292 870/1114/276 79/1113/294 +f 80/1116/296 871/1115/280 873/1119/285 81/1120/290 +f 81/1120/290 873/1119/285 874/1121/283 82/1122/333 +f 82/1123/333 874/1124/283 875/1125/288 83/1126/334 +f 83/1126/334 875/1125/288 872/1118/292 84/1117/332 +f 85/1127/306 876/1128/305 877/1129/312 86/1130/335 +f 90/1131/304 878/1132/336 876/1128/305 85/1127/306 +f 86/1130/335 877/1129/312 879/1133/315 87/1134/301 +f 87/1134/301 879/1133/315 880/1135/298 88/1136/297 +f 88/1137/297 880/1138/298 881/1139/337 89/1140/338 +f 89/1140/338 881/1139/337 878/1132/336 90/1131/304 +f 91/1141/339 882/1142/298 883/1143/315 92/1144/340 +f 96/1145/313 884/1146/299 882/1142/298 91/1141/339 +f 92/1144/340 883/1143/315 885/1147/312 93/1148/311 +f 93/1148/311 885/1147/312 886/1149/305 94/1150/341 +f 94/1151/341 886/1152/305 887/1153/303 95/1154/342 +f 95/1154/342 887/1153/303 884/1146/299 96/1145/313 +f 723/791/151 888/1155/343 889/1156/344 716/783/144 +f 731/799/159 890/1157/345 888/1155/343 723/791/151 +f 708/775/136 717/1158/145 671/736/99 669/734/97 +f 654/719/82 735/803/163 729/797/157 655/720/83 +f 891/1159/346 706/773/134 663/728/91 662/727/90 710/777/138 714/781/142 +f 892/1160/347 893/1161/348 780/894/217 769/877/206 +f 643/708/71 642/707/70 894/1162/349 895/1163/350 +f 762/862/197 892/1160/347 769/877/206 763/863/198 +f 711/778/139 660/725/88 658/723/86 720/788/148 +f 652/717/80 650/715/78 745/827/177 738/816/170 +f 704/771/132 896/1164/351 894/1162/349 642/707/70 +f 646/711/74 643/708/71 895/1163/350 897/1165/352 +f 648/713/76 748/836/180 745/827/177 650/715/78 +f 97/857/194 148/856/193 147/705/68 98/704/67 +f 898/1166/353 896/1164/351 704/771/132 702/769/130 +f 662/727/90 660/725/88 711/778/139 710/777/138 +f 899/1167/354 718/786/146 708/785/136 707/1168/135 +f 716/783/144 889/1156/344 891/1159/346 714/781/142 +f 717/1158/145 900/1169/355 674/739/102 671/736/99 +f 900/1169/355 901/1170/356 675/740/103 674/739/102 +f 901/1170/356 902/1171/357 678/743/106 675/740/103 +f 902/1172/357 903/1173/358 679/746/107 678/745/106 +f 903/1173/358 904/1174/359 682/749/110 679/746/107 +f 904/1174/359 905/1175/360 683/750/111 682/749/110 +f 905/1175/360 906/1176/361 685/752/113 683/750/111 +f 906/1176/361 907/1177/362 908/1178/363 687/754/115 685/752/113 +f 908/1178/363 909/1179/364 689/756/117 687/754/115 +f 909/1179/364 910/1180/365 691/758/119 689/756/117 +f 910/1180/365 911/1181/366 693/760/121 691/758/119 +f 912/1182/367 913/1183/368 698/765/126 697/764/125 +f 911/1181/366 912/1182/367 697/764/125 693/760/121 +f 914/1184/369 898/1166/353 702/769/130 701/768/129 +f 913/1183/368 914/1184/369 701/768/129 698/765/126 +f 741/1185/173 732/800/160 733/801/161 742/840/174 +f 751/844/184 740/822/172 743/825/175 752/845/185 +f 915/1186/370 916/1187/371 760/860/195 761/861/196 782/900/219 +f 893/1161/348 917/1188/372 786/906/224 780/894/217 +f 772/886/209 915/1186/370 782/900/219 773/887/210 +f 917/1188/372 775/889/212 778/892/215 786/906/224 +f 225/1189/373 918/1190/374 919/1191/375 226/1192/376 +f 230/1193/377 920/1194/378 918/1190/374 225/1189/373 +f 226/1192/376 919/1191/375 921/1195/379 227/1196/380 +f 227/1196/380 921/1195/379 922/1197/381 228/1198/382 +f 228/1199/382 922/1200/381 923/1201/383 229/1202/384 +f 229/1202/384 923/1201/383 920/1194/378 230/1193/377 +f 231/1203/385 924/1204/381 925/1205/379 232/1206/386 +f 236/1207/387 926/1208/383 924/1204/381 231/1203/385 +f 232/1206/386 925/1205/379 927/1209/375 233/1210/388 +f 233/1210/388 927/1209/375 928/1211/374 234/1212/389 +f 234/1213/389 928/1214/374 929/1215/378 235/1216/390 +f 235/1216/390 929/1215/378 926/1208/383 236/1207/387 +f 237/1217/391 930/1218/4 931/1219/392 238/1220/393 +f 242/1221/394 932/1222/395 930/1218/4 237/1217/391 +f 238/1220/393 931/1219/392 933/1223/396 239/1224/397 +f 239/1224/397 933/1223/396 934/1225/3 240/1226/398 +f 240/1227/398 934/1228/3 935/1229/399 241/1230/400 +f 241/1230/400 935/1229/399 932/1222/395 242/1221/394 +f 243/1231/401 936/1232/3 937/1233/396 244/1234/402 +f 248/1235/403 938/1236/399 936/1232/3 243/1231/401 +f 244/1234/402 937/1233/396 939/1237/392 245/1238/404 +f 245/1238/404 939/1237/392 940/1239/4 246/1240/405 +f 246/1241/405 940/1242/4 941/1243/395 247/1244/406 +f 247/1244/406 941/1243/395 938/1236/399 248/1235/403 +f 249/1245/407 942/1246/408 943/1247/409 250/1248/410 +f 254/1249/411 944/1250/412 942/1246/408 249/1245/407 +f 250/1248/410 943/1247/409 945/1251/413 251/1252/414 +f 251/1252/414 945/1251/413 946/1253/415 252/1254/416 +f 252/1255/416 946/1256/415 947/1257/417 253/1258/418 +f 253/1258/418 947/1257/417 944/1250/412 254/1249/411 +f 255/1259/419 948/1260/415 949/1261/413 256/1262/420 +f 260/1263/421 950/1264/417 948/1260/415 255/1259/419 +f 256/1262/420 949/1261/413 951/1265/409 257/1266/422 +f 257/1266/422 951/1265/409 952/1267/408 258/1268/423 +f 258/1269/423 952/1270/408 953/1271/412 259/1272/424 +f 259/1272/424 953/1271/412 950/1264/417 260/1263/421 +f 261/1273/425 954/1274/5 955/1275/426 262/1276/427 +f 266/1277/428 956/1278/429 954/1274/5 261/1273/425 +f 262/1276/427 955/1275/426 957/1279/430 263/1280/431 +f 263/1280/431 957/1279/430 958/1281/6 264/1282/432 +f 264/1283/432 958/1284/6 959/1285/433 265/1286/434 +f 265/1286/434 959/1285/433 956/1278/429 266/1277/428 +f 267/1287/435 960/1288/6 961/1289/430 268/1290/436 +f 272/1291/437 962/1292/433 960/1288/6 267/1287/435 +f 268/1290/436 961/1289/430 963/1293/426 269/1294/438 +f 269/1294/438 963/1293/426 964/1295/5 270/1296/439 +f 270/1297/439 964/1298/5 965/1299/429 271/1300/440 +f 271/1300/440 965/1299/429 962/1292/433 272/1291/437 +f 273/1301/382 966/1302/381 967/1303/383 274/1304/384 +f 278/1305/380 968/1306/379 966/1302/381 273/1301/382 +f 274/1304/384 967/1303/383 969/1307/378 275/1308/377 +f 275/1308/377 969/1307/378 970/1309/374 276/1310/373 +f 276/1311/373 970/1312/374 971/1313/375 277/1314/376 +f 277/1314/376 971/1313/375 968/1306/379 278/1305/380 +f 279/1315/389 972/1316/374 973/1317/378 280/1318/390 +f 284/1319/388 974/1320/375 972/1316/374 279/1315/389 +f 280/1318/390 973/1317/378 975/1321/383 281/1322/387 +f 281/1322/387 975/1321/383 976/1323/381 282/1324/385 +f 282/1325/385 976/1326/381 977/1327/379 283/1328/386 +f 283/1328/386 977/1327/379 974/1320/375 284/1319/388 +f 285/1329/398 978/1330/3 979/1331/399 286/1332/400 +f 290/1333/441 980/1334/396 978/1330/3 285/1329/398 +f 286/1332/400 979/1331/399 981/1335/395 287/1336/442 +f 287/1336/442 981/1335/395 982/1337/4 288/1338/391 +f 288/1339/391 982/1340/4 983/1341/392 289/1342/393 +f 289/1342/393 983/1341/392 980/1334/396 290/1333/441 +f 291/1343/405 984/1344/4 985/1345/395 292/1346/406 +f 296/1347/443 986/1348/392 984/1344/4 291/1343/405 +f 292/1346/406 985/1345/395 987/1349/399 293/1350/444 +f 293/1350/444 987/1349/399 988/1351/3 294/1352/401 +f 294/1353/401 988/1354/3 989/1355/396 295/1356/402 +f 295/1356/402 989/1355/396 986/1348/392 296/1347/443 +f 297/1357/416 990/1358/415 991/1359/417 298/1360/418 +f 302/1361/414 992/1362/413 990/1358/415 297/1357/416 +f 298/1360/418 991/1359/417 993/1363/412 299/1364/411 +f 299/1364/411 993/1363/412 994/1365/408 300/1366/407 +f 300/1367/407 994/1368/408 995/1369/409 301/1370/410 +f 301/1370/410 995/1369/409 992/1362/413 302/1361/414 +f 303/1371/423 996/1372/408 997/1373/412 304/1374/424 +f 308/1375/422 998/1376/409 996/1372/408 303/1371/423 +f 304/1374/424 997/1373/412 999/1377/417 305/1378/421 +f 305/1378/421 999/1377/417 1000/1379/415 306/1380/419 +f 306/1381/419 1000/1382/415 1001/1383/413 307/1384/420 +f 307/1384/420 1001/1383/413 998/1376/409 308/1375/422 +f 309/1385/445 1002/1386/6 1003/1387/433 310/1388/446 +f 314/1389/447 1004/1390/430 1002/1386/6 309/1385/445 +f 310/1388/446 1003/1387/433 1005/1391/429 311/1392/448 +f 311/1392/448 1005/1391/429 1006/1393/5 312/1394/449 +f 312/1395/449 1006/1396/5 1007/1397/426 313/1398/450 +f 313/1398/450 1007/1397/426 1004/1390/430 314/1389/447 +f 315/1399/439 1008/1400/5 1009/1401/429 316/1402/440 +f 320/1403/451 1010/1404/426 1008/1400/5 315/1399/439 +f 316/1402/440 1009/1401/429 1011/1405/433 317/1406/452 +f 317/1406/452 1011/1405/433 1012/1407/6 318/1408/435 +f 318/1409/435 1012/1410/6 1013/1411/430 319/1412/436 +f 319/1412/436 1013/1411/430 1010/1404/426 320/1403/451 +f 652/717/80 738/816/170 735/803/163 654/719/82 +f 720/788/148 658/723/86 655/720/83 729/797/157 +f 648/713/76 646/711/74 897/1165/352 754/847/187 757/850/190 748/836/180 +f 399/1413/453 422/1414/454 421/1415/455 400/1416/456 +f 398/1417/457 423/1418/458 422/1414/454 399/1413/453 +f 397/1419/459 424/1420/460 423/1418/458 398/1417/457 +f 396/1421/461 425/1422/462 424/1420/460 397/1419/459 +f 395/1423/463 426/1424/464 425/1422/462 396/1421/461 +f 394/1425/465 427/1426/466 426/1424/464 395/1423/463 +f 393/1427/467 428/1428/468 427/1426/466 394/1425/465 +f 392/1429/469 429/1430/470 428/1428/468 393/1427/467 +f 391/1431/471 430/1432/472 429/1430/470 392/1429/469 +f 390/1433/473 431/1434/474 430/1432/472 391/1431/471 +f 389/1435/475 432/1436/476 431/1434/474 390/1433/473 +f 388/1437/477 401/1438/478 432/1436/476 389/1435/475 +f 387/1439/479 402/1440/480 401/1438/478 388/1437/477 +f 386/1441/481 403/1442/482 402/1443/480 387/1439/479 +f 385/1444/483 404/1445/484 403/1442/482 386/1441/481 +f 384/1446/485 405/1447/486 404/1445/484 385/1444/483 +f 383/1448/487 406/1449/488 405/1450/486 384/1451/485 +f 382/1452/489 407/1453/490 406/1449/488 383/1448/487 +f 381/1454/491 408/1455/492 407/1453/490 382/1452/489 +f 380/1456/493 409/1457/494 408/1455/492 381/1454/491 +f 378/1458/495 411/1459/496 410/1460/497 379/1461/498 +f 379/1461/498 410/1460/497 409/1457/494 380/1456/493 +f 377/1462/499 412/1463/500 411/1459/496 378/1458/495 +f 376/1464/501 413/1465/502 412/1463/500 377/1462/499 +f 375/1466/503 414/1467/504 413/1465/502 376/1464/501 +f 374/1468/505 415/1469/506 414/1467/504 375/1466/503 +f 372/1470/507 417/1471/508 416/1472/509 373/1473/510 +f 373/1473/510 416/1472/509 415/1469/506 374/1468/505 +f 371/1474/511 418/1475/512 417/1471/508 372/1470/507 +f 370/1476/513 419/1477/514 418/1475/512 371/1474/511 +f 1014/1478/515 1015/1479/516 1016/1480/517 1017/1481/518 +f 1018/1482/519 1017/1481/518 1016/1480/517 1019/1483/520 +f 1020/1484/521 1018/1482/519 1019/1483/520 1021/1485/522 +f 1022/1486/523 1020/1484/521 1021/1485/522 1023/1487/524 +f 1024/1488/525 1022/1486/523 1023/1487/524 1025/1489/526 +f 1026/1490/527 1024/1488/525 1025/1489/526 719/787/147 +f 1026/1490/527 719/787/147 718/786/146 1027/1491/528 +f 1028/1492/529 1027/1491/528 718/786/146 899/1167/354 +f 1029/1493/530 1028/1492/529 899/1167/354 1030/1494/531 +f 1031/1495/532 1029/1493/530 1030/1494/531 1032/1496/533 +f 1031/1495/532 1032/1496/533 1033/1497/534 1034/1498/535 +f 1034/1498/535 1033/1497/534 1035/1499/536 1036/1500/537 +f 1037/1501/538 1038/1502/539 1039/1503/540 1040/1504/541 +f 1036/1500/537 1035/1499/536 1038/1502/539 1037/1501/538 +f 1040/1504/541 1039/1503/540 1041/1505/542 1042/1506/543 +f 1043/1507/544 1042/1506/543 1041/1505/542 1044/1508/545 +f 1043/1507/544 1044/1508/545 1045/1509/546 1046/1510/547 +f 1047/1511/548 1046/1510/547 1045/1509/546 1048/1512/549 +f 1047/1513/548 1048/1514/549 1049/1515/550 1050/1516/551 +f 1051/1517/552 1050/1516/551 1049/1515/550 1052/1518/553 +f 1051/1517/552 1052/1518/553 1053/1519/554 1054/1520/555 +f 1054/1520/555 1053/1519/554 1055/1521/556 1056/1522/557 +f 1056/1522/557 1055/1521/556 1057/1523/558 1058/1524/559 +f 1058/1524/559 1057/1523/558 1059/1525/560 1060/1526/561 +f 1060/1526/561 1059/1525/560 1061/1527/562 1062/1528/563 +f 1062/1528/563 1061/1527/562 1063/1529/564 1064/1530/565 +f 1065/1531/566 1066/1532/567 1067/1533/568 1068/1534/569 +f 1066/1532/567 1064/1530/565 1063/1529/564 1067/1533/568 +f 1069/1535/570 1070/1536/571 1071/1537/572 1072/1538/573 +f 1065/1531/566 1068/1534/569 1071/1537/572 1070/1536/571 +f 1073/1539/574 1069/1535/570 1072/1538/573 1074/1540/575 +f 1073/1539/574 1074/1540/575 1015/1479/516 1014/1478/515 +f 400/1416/456 421/1415/455 420/1541/576 369/1542/577 +f 321/1543/578 1075/1544/579 1076/1545/580 322/1546/581 +f 326/1547/582 1077/1548/583 1075/1544/579 321/1543/578 +f 322/1546/581 1076/1545/580 1078/1549/584 323/1550/585 +f 323/1550/585 1078/1549/584 1079/1551/586 324/1552/587 +f 324/1553/587 1079/1554/586 1080/1555/588 325/1556/589 +f 325/1556/589 1080/1555/588 1077/1548/583 326/1547/582 +f 327/1557/590 1081/1558/591 1082/1559/592 328/1560/593 +f 332/1561/594 1083/1562/595 1081/1558/591 327/1557/590 +f 328/1560/593 1082/1559/592 1084/1563/596 329/1564/597 +f 329/1564/597 1084/1563/596 1085/1565/598 330/1566/599 +f 330/1567/599 1085/1568/598 1086/1569/600 331/1570/601 +f 331/1570/601 1086/1569/600 1083/1562/595 332/1561/594 +f 333/1571/602 1087/1572/603 1088/1573/604 334/1574/605 +f 338/1575/606 1089/1576/607 1087/1572/603 333/1571/602 +f 334/1574/605 1088/1573/604 1090/1577/608 335/1578/609 +f 335/1578/609 1090/1577/608 1091/1579/610 336/1580/611 +f 336/1581/611 1091/1582/610 1092/1583/612 337/1584/613 +f 337/1584/613 1092/1583/612 1089/1576/607 338/1575/606 +f 339/1585/614 1093/1586/615 1094/1587/616 340/1588/617 +f 344/1589/618 1095/1590/619 1093/1586/615 339/1585/614 +f 340/1588/617 1094/1587/616 1096/1591/620 341/1592/621 +f 341/1592/621 1096/1591/620 1097/1593/622 342/1594/623 +f 342/1595/623 1097/1596/622 1098/1597/624 343/1598/625 +f 343/1598/625 1098/1597/624 1095/1590/619 344/1589/618 +f 345/1599/587 1099/1600/586 1100/1601/588 346/1602/626 +f 350/1603/627 1101/1604/584 1099/1600/586 345/1599/587 +f 346/1602/626 1100/1601/588 1102/1605/628 347/1606/629 +f 347/1606/629 1102/1605/628 1103/1607/630 348/1608/631 +f 348/1609/631 1103/1610/630 1104/1611/580 349/1612/632 +f 349/1612/632 1104/1611/580 1101/1604/584 350/1603/627 +f 351/1613/633 1105/1614/598 1106/1615/634 352/1616/601 +f 356/1617/635 1107/1618/596 1105/1614/598 351/1613/633 +f 352/1616/601 1106/1615/634 1108/1619/636 353/1620/594 +f 353/1620/594 1108/1619/636 1109/1621/591 354/1622/590 +f 354/1623/590 1109/1624/591 1110/1625/592 355/1626/637 +f 355/1626/637 1110/1625/592 1107/1618/596 356/1617/635 +f 357/1627/611 1111/1628/610 1112/1629/612 358/1630/613 +f 362/1631/609 1113/1632/638 1111/1628/610 357/1627/611 +f 358/1630/613 1112/1629/612 1114/1633/607 359/1634/639 +f 359/1634/639 1114/1633/607 1115/1635/603 360/1636/602 +f 360/1637/602 1115/1638/603 1116/1639/640 361/1640/605 +f 361/1640/605 1116/1639/640 1113/1632/638 362/1631/609 +f 363/1641/641 1117/1642/622 1118/1643/624 364/1644/625 +f 368/1645/642 1119/1646/620 1117/1642/622 363/1641/641 +f 364/1644/625 1118/1643/624 1120/1647/619 365/1648/618 +f 365/1648/618 1120/1647/619 1121/1649/615 366/1650/614 +f 366/1651/614 1121/1652/615 1122/1653/616 367/1654/643 +f 367/1654/643 1122/1653/616 1119/1646/620 368/1645/642 +f 1032/1496/533 1030/1494/531 705/1655/133 706/1656/134 +f 888/1657/343 1038/1502/539 1035/1499/536 889/1658/344 +f 890/1659/345 1039/1503/540 1038/1502/539 888/1657/343 +f 1030/1494/531 899/1167/354 707/1168/135 705/1655/133 +f 893/1660/348 892/1661/347 1123/1662/644 1124/1663/645 +f 897/1664/352 1125/1665/646 1126/1666/647 754/1667/187 +f 891/1668/346 1033/1497/534 1032/1496/533 706/1656/134 +f 889/1658/344 1035/1499/536 1033/1497/534 891/1668/346 +f 890/1659/345 725/1669/153 1041/1505/542 1039/1503/540 +f 369/1542/577 420/1541/576 419/1477/514 370/1476/513 +f 905/1670/360 904/1671/359 1016/1480/517 1015/1479/516 +f 904/1671/359 903/1672/358 1019/1483/520 1016/1480/517 +f 903/1672/358 902/1673/357 1021/1485/522 1019/1483/520 +f 902/1673/357 901/1674/356 1023/1487/524 1021/1485/522 +f 901/1674/356 900/1675/355 1025/1489/526 1023/1487/524 +f 900/1675/355 717/784/145 719/787/147 1025/1489/526 +f 725/1669/153 724/1676/152 1044/1508/545 1041/1505/542 +f 724/1676/152 732/1677/160 1045/1509/546 1044/1508/545 +f 732/1677/160 741/1678/173 1048/1512/549 1045/1509/546 +f 741/1679/173 740/1680/172 1049/1515/550 1048/1514/549 +f 740/1680/172 751/1681/184 1052/1518/553 1049/1515/550 +f 751/1681/184 750/1682/183 1053/1519/554 1052/1518/553 +f 750/1682/183 760/1683/195 1055/1521/556 1053/1519/554 +f 760/1683/195 916/1684/371 1127/1685/648 1057/1523/558 1055/1521/556 +f 1127/1685/648 1128/1686/649 1059/1525/560 1057/1523/558 +f 1128/1686/649 1129/1687/650 1061/1527/562 1059/1525/560 +f 1129/1687/650 1130/1688/651 1063/1529/564 1061/1527/562 +f 1131/1689/652 1132/1690/653 1068/1534/569 1067/1533/568 +f 1130/1688/651 1131/1689/652 1067/1533/568 1063/1529/564 +f 1133/1691/654 1134/1692/655 1072/1538/573 1071/1537/572 +f 1132/1690/653 1133/1691/654 1071/1537/572 1068/1534/569 +f 1134/1692/655 907/1693/362 906/1694/361 1074/1540/575 1072/1538/573 +f 1074/1540/575 906/1694/361 905/1670/360 1015/1479/516 +f 433/1695/656 1135/1696/657 1136/1697/658 434/1698/659 +f 438/1699/660 1137/1700/661 1135/1696/657 433/1695/656 +f 434/1698/659 1136/1697/658 1138/1701/662 435/1702/663 +f 435/1702/663 1138/1701/662 1139/1703/664 436/1704/665 +f 436/1705/665 1139/1706/664 1140/1707/666 437/1708/667 +f 437/1708/667 1140/1707/666 1137/1700/661 438/1699/660 +f 439/1709/668 1141/1710/1 1142/1711/669 440/1712/670 +f 444/1713/671 1143/1714/672 1141/1710/1 439/1709/668 +f 440/1712/670 1142/1711/669 1144/1715/673 441/1716/674 +f 441/1716/674 1144/1715/673 1145/1717/2 442/1718/675 +f 442/1719/675 1145/1720/2 1146/1721/676 443/1722/677 +f 443/1722/677 1146/1721/676 1143/1714/672 444/1713/671 +f 445/1723/678 1147/1724/679 1148/1725/680 446/1726/681 +f 450/1727/682 1149/1728/683 1147/1724/679 445/1723/678 +f 446/1726/681 1148/1725/680 1150/1729/684 447/1730/685 +f 447/1730/685 1150/1729/684 1151/1731/686 448/1732/687 +f 448/1733/687 1151/1734/686 1152/1735/688 449/1736/689 +f 449/1736/689 1152/1735/688 1149/1728/683 450/1727/682 +f 451/1737/690 1153/1738/6 1154/1739/691 452/1740/692 +f 456/1741/693 1155/1742/694 1153/1738/6 451/1737/690 +f 452/1740/692 1154/1739/691 1156/1743/695 453/1744/696 +f 453/1744/696 1156/1743/695 1157/1745/5 454/1746/697 +f 454/1747/697 1157/1748/5 1158/1749/698 455/1750/699 +f 455/1750/699 1158/1749/698 1155/1742/694 456/1741/693 +f 457/1751/665 1159/1752/664 1160/1753/666 458/1754/667 +f 462/1755/663 1161/1756/662 1159/1752/664 457/1751/665 +f 458/1754/667 1160/1753/666 1162/1757/661 459/1758/660 +f 459/1758/660 1162/1757/661 1163/1759/657 460/1760/656 +f 460/1761/656 1163/1762/657 1164/1763/658 461/1764/659 +f 461/1764/659 1164/1763/658 1161/1756/662 462/1755/663 +f 463/1765/675 1165/1766/2 1166/1767/676 464/1768/677 +f 468/1769/674 1167/1770/673 1165/1766/2 463/1765/675 +f 464/1768/677 1166/1767/676 1168/1771/672 465/1772/671 +f 465/1772/671 1168/1771/672 1169/1773/1 466/1774/668 +f 466/1775/668 1169/1776/1 1170/1777/669 467/1778/670 +f 467/1778/670 1170/1777/669 1167/1770/673 468/1769/674 +f 469/1779/687 1171/1780/686 1172/1781/688 470/1782/689 +f 474/1783/685 1173/1784/684 1171/1780/686 469/1779/687 +f 470/1782/689 1172/1781/688 1174/1785/683 471/1786/682 +f 471/1786/682 1174/1785/683 1175/1787/679 472/1788/678 +f 472/1789/678 1175/1790/679 1176/1791/680 473/1792/681 +f 473/1792/681 1176/1791/680 1173/1784/684 474/1783/685 +f 475/1793/697 1177/1794/5 1178/1795/698 476/1796/700 +f 480/1797/701 1179/1798/695 1177/1794/5 475/1793/697 +f 476/1796/700 1178/1795/698 1180/1799/694 477/1800/702 +f 477/1800/702 1180/1799/694 1181/1801/6 478/1802/703 +f 478/1803/703 1181/1804/6 1182/1805/691 479/1806/692 +f 479/1806/692 1182/1805/691 1179/1798/695 480/1797/701 +f 559/1807/704 582/1808/705 581/1809/706 560/1810/707 +f 558/1811/708 583/1812/709 582/1808/705 559/1807/704 +f 557/1813/710 584/1814/711 583/1812/709 558/1811/708 +f 556/1815/712 585/1816/713 584/1814/711 557/1813/710 +f 555/1817/714 586/1818/715 585/1816/713 556/1815/712 +f 554/1819/716 587/1820/717 586/1818/715 555/1817/714 +f 553/1821/718 588/1822/719 587/1820/717 554/1819/716 +f 552/1823/720 589/1824/721 588/1822/719 553/1821/718 +f 551/1825/722 590/1826/723 589/1824/721 552/1823/720 +f 550/1827/724 591/1828/725 590/1826/723 551/1825/722 +f 549/1829/726 592/1830/727 591/1828/725 550/1827/724 +f 548/1831/728 561/1832/729 592/1830/727 549/1829/726 +f 547/1833/730 562/1834/731 561/1832/729 548/1831/728 +f 546/1835/732 563/1836/733 562/1837/731 547/1833/730 +f 545/1838/734 564/1839/735 563/1836/733 546/1835/732 +f 544/1840/736 565/1841/737 564/1839/735 545/1838/734 +f 543/1842/738 566/1843/739 565/1844/737 544/1845/736 +f 542/1846/740 567/1847/741 566/1843/739 543/1842/738 +f 541/1848/742 568/1849/743 567/1847/741 542/1846/740 +f 540/1850/744 569/1851/745 568/1849/743 541/1848/742 +f 538/1852/746 571/1853/747 570/1854/748 539/1855/749 +f 539/1855/749 570/1854/748 569/1851/745 540/1850/744 +f 537/1856/750 572/1857/751 571/1853/747 538/1852/746 +f 536/1858/752 573/1859/753 572/1857/751 537/1856/750 +f 535/1860/754 574/1861/755 573/1859/753 536/1858/752 +f 534/1862/756 575/1863/757 574/1861/755 535/1860/754 +f 532/1864/758 577/1865/759 576/1866/760 533/1867/761 +f 533/1867/761 576/1866/760 575/1863/757 534/1862/756 +f 531/1868/762 578/1869/763 577/1865/759 532/1864/758 +f 530/1870/764 579/1871/765 578/1869/763 531/1868/762 +f 1183/1872/766 1184/1873/767 1185/1874/768 1186/1875/769 +f 1187/1876/770 1186/1875/769 1185/1874/768 1188/1877/771 +f 1189/1878/772 1187/1876/770 1188/1877/771 1190/1879/773 +f 1191/1880/774 1189/1878/772 1190/1879/773 1192/1881/775 +f 1193/1882/776 1191/1880/774 1192/1881/775 1194/1883/777 +f 1195/1884/778 1193/1882/776 1194/1883/777 1196/1885/779 +f 1195/1884/778 1196/1885/779 1197/1886/780 1198/1887/781 +f 1199/1888/782 1198/1887/781 1197/1886/780 1200/1889/783 +f 1201/1890/784 1199/1888/782 1200/1889/783 1202/1891/785 +f 1203/1892/786 1201/1890/784 1202/1891/785 1204/1893/787 +f 1203/1892/786 1204/1893/787 1205/1894/788 1206/1895/789 +f 1206/1895/789 1205/1894/788 1207/1896/790 1208/1897/791 +f 1209/1898/792 1210/1899/793 1211/1900/794 1212/1901/795 +f 1208/1897/791 1207/1896/790 1210/1899/793 1209/1898/792 +f 1212/1901/795 1211/1900/794 1213/1902/796 1214/1903/797 +f 1215/1904/798 1214/1903/797 1213/1902/796 1216/1905/799 +f 1215/1904/798 1216/1905/799 1217/1906/800 1218/1907/801 +f 1219/1908/802 1218/1907/801 1217/1906/800 1220/1909/803 +f 1219/1910/802 1220/1911/803 1221/1912/804 1222/1913/805 +f 1223/1914/806 1222/1913/805 1221/1912/804 1224/1915/807 +f 1223/1914/806 1224/1915/807 1225/1916/808 1226/1917/809 +f 1226/1917/809 1225/1916/808 1124/1663/645 1227/1918/810 +f 1227/1918/810 1124/1663/645 1123/1662/644 1228/1919/811 +f 1228/1919/811 1123/1662/644 1229/1920/812 1230/1921/813 +f 1230/1921/813 1229/1920/812 1231/1922/814 1232/1923/815 +f 1232/1923/815 1231/1922/814 1126/1666/647 1233/1924/816 +f 1234/1925/817 1235/1926/818 1125/1665/646 1236/1927/819 +f 1235/1926/818 1233/1924/816 1126/1666/647 1125/1665/646 +f 1237/1928/820 1238/1929/821 1239/1930/822 1240/1931/823 +f 1234/1925/817 1236/1927/819 1239/1930/822 1238/1929/821 +f 1241/1932/824 1237/1928/820 1240/1931/823 1242/1933/825 +f 1241/1932/824 1242/1933/825 1184/1873/767 1183/1872/766 +f 560/1810/707 581/1809/706 580/1934/826 529/1935/827 +f 481/1936/828 1243/1937/829 1244/1938/830 482/1939/831 +f 486/1940/832 1245/1941/833 1243/1937/829 481/1936/828 +f 482/1939/831 1244/1938/830 1246/1942/834 483/1943/835 +f 483/1943/835 1246/1942/834 1247/1944/836 484/1945/837 +f 484/1946/837 1247/1947/836 1248/1948/838 485/1949/839 +f 485/1949/839 1248/1948/838 1245/1941/833 486/1940/832 +f 487/1950/840 1249/1951/841 1250/1952/842 488/1953/843 +f 492/1954/844 1251/1955/845 1249/1951/841 487/1950/840 +f 488/1953/843 1250/1952/842 1252/1956/846 489/1957/847 +f 489/1957/847 1252/1956/846 1253/1958/848 490/1959/849 +f 490/1960/849 1253/1961/848 1254/1962/850 491/1963/851 +f 491/1963/851 1254/1962/850 1251/1955/845 492/1954/844 +f 493/1964/852 1255/1965/853 1256/1966/854 494/1967/855 +f 498/1968/856 1257/1969/857 1255/1965/853 493/1964/852 +f 494/1967/855 1256/1966/854 1258/1970/858 495/1971/859 +f 495/1971/859 1258/1970/858 1259/1972/860 496/1973/861 +f 496/1974/861 1259/1975/860 1260/1976/862 497/1977/863 +f 497/1977/863 1260/1976/862 1257/1969/857 498/1968/856 +f 499/1978/864 1261/1979/865 1262/1980/866 500/1981/867 +f 504/1982/868 1263/1983/869 1261/1979/865 499/1978/864 +f 500/1981/867 1262/1980/866 1264/1984/870 501/1985/871 +f 501/1985/871 1264/1984/870 1265/1986/872 502/1987/873 +f 502/1988/873 1265/1989/872 1266/1990/874 503/1991/875 +f 503/1991/875 1266/1990/874 1263/1983/869 504/1982/868 +f 505/1992/876 1267/1993/836 1268/1994/838 506/1995/877 +f 510/1996/878 1269/1997/834 1267/1993/836 505/1992/876 +f 506/1995/877 1268/1994/838 1270/1998/879 507/1999/832 +f 507/1999/832 1270/1998/879 1271/2000/880 508/2001/881 +f 508/2002/881 1271/2003/880 1272/2004/830 509/2005/882 +f 509/2005/882 1272/2004/830 1269/1997/834 510/1996/878 +f 511/2006/883 1273/2007/848 1274/2008/884 512/2009/885 +f 516/2010/886 1275/2011/846 1273/2007/848 511/2006/883 +f 512/2009/885 1274/2008/884 1276/2012/887 513/2013/844 +f 513/2013/844 1276/2012/887 1277/2014/841 514/2015/888 +f 514/2016/888 1277/2017/841 1278/2018/842 515/2019/889 +f 515/2019/889 1278/2018/842 1275/2011/846 516/2010/886 +f 517/2020/890 1279/2021/860 1280/2022/862 518/2023/863 +f 522/2024/859 1281/2025/891 1279/2021/860 517/2020/890 +f 518/2023/863 1280/2022/862 1282/2026/857 519/2027/892 +f 519/2027/892 1282/2026/857 1283/2028/853 520/2029/893 +f 520/2030/893 1283/2031/853 1284/2032/894 521/2033/855 +f 521/2033/855 1284/2032/894 1281/2025/891 522/2024/859 +f 523/2034/895 1285/2035/872 1286/2036/874 524/2037/896 +f 528/2038/897 1287/2039/870 1285/2035/872 523/2034/895 +f 524/2037/896 1286/2036/874 1288/2040/869 525/2041/898 +f 525/2041/898 1288/2040/869 1289/2042/865 526/2043/864 +f 526/2044/864 1289/2045/865 1290/2046/866 527/2047/899 +f 527/2047/899 1290/2046/866 1287/2039/870 528/2038/897 +f 898/2048/353 1242/1933/825 1240/1931/823 896/2049/351 +f 1126/1666/647 1231/1922/814 755/2050/188 754/1667/187 +f 1229/1920/812 1123/1662/644 892/1661/347 762/2051/197 +f 895/2052/350 1236/1927/819 1125/1665/646 897/1664/352 +f 1239/1930/822 1236/1927/819 895/2052/350 894/2053/349 +f 896/2049/351 1240/1931/823 1239/1930/822 894/2053/349 +f 1231/1922/814 1229/1920/812 762/2051/197 755/2050/188 +f 890/1157/345 731/799/159 726/794/154 725/793/153 +f 529/1935/827 580/1934/826 579/1871/765 530/1870/764 +f 914/2054/369 913/2055/368 1185/1874/768 1184/1873/767 +f 913/2055/368 912/2056/367 1188/1877/771 1185/1874/768 +f 912/2056/367 911/2057/366 1190/1879/773 1188/1877/771 +f 911/2057/366 910/2058/365 1192/1881/775 1190/1879/773 +f 910/2058/365 909/2059/364 1194/1883/777 1192/1881/775 +f 909/2059/364 908/2060/363 1196/1885/779 1194/1883/777 +f 908/2060/363 907/2061/362 1134/2062/655 1197/1886/780 1196/1885/779 +f 1134/2062/655 1133/2063/654 1200/1889/783 1197/1886/780 +f 1133/2063/654 1132/2064/653 1202/1891/785 1200/1889/783 +f 1132/2064/653 1131/2065/652 1204/1893/787 1202/1891/785 +f 1131/2065/652 1130/2066/651 1205/1894/788 1204/1893/787 +f 1130/2066/651 1129/2067/650 1207/1896/790 1205/1894/788 +f 1128/2068/649 1127/2069/648 1211/1900/794 1210/1899/793 +f 1129/2067/650 1128/2068/649 1210/1899/793 1207/1896/790 +f 1127/2069/648 916/2070/371 915/2071/370 1213/1902/796 1211/1900/794 +f 915/2071/370 772/2072/209 1216/1905/799 1213/1902/796 +f 772/2072/209 771/2073/208 1217/1906/800 1216/1905/799 +f 771/2073/208 783/2074/221 1220/1909/803 1217/1906/800 +f 783/2075/221 776/2076/213 1221/1912/804 1220/1911/803 +f 776/2076/213 775/2077/212 1224/1915/807 1221/1912/804 +f 775/2077/212 917/2078/372 1225/1916/808 1224/1915/807 +f 917/2078/372 893/1660/348 1124/1663/645 1225/1916/808 +f 1242/1933/825 898/2048/353 914/2054/369 1184/1873/767 +f 593/2079/900 1291/2080/901 1292/2081/902 594/2082/903 +f 598/2083/904 1293/2084/905 1291/2080/901 593/2079/900 +f 594/2082/903 1292/2081/902 1294/2085/906 595/2086/907 +f 595/2086/907 1294/2085/906 1295/2087/908 596/2088/909 +f 596/2089/909 1295/2090/908 1296/2091/910 597/2092/911 +f 597/2092/911 1296/2091/910 1293/2084/905 598/2083/904 +f 599/2093/912 1297/2094/1 1298/2095/913 600/2096/914 +f 604/2097/915 1299/2098/916 1297/2094/1 599/2093/912 +f 600/2096/914 1298/2095/913 1300/2099/917 601/2100/918 +f 601/2100/918 1300/2099/917 1301/2101/2 602/2102/919 +f 602/2103/919 1301/2104/2 1302/2105/920 603/2106/921 +f 603/2106/921 1302/2105/920 1299/2098/916 604/2097/915 +f 605/2107/922 1303/2108/923 1304/2109/924 606/2110/925 +f 610/2111/926 1305/2112/927 1303/2108/923 605/2107/922 +f 606/2110/925 1304/2109/924 1306/2113/928 607/2114/929 +f 607/2114/929 1306/2113/928 1307/2115/930 608/2116/931 +f 608/2117/931 1307/2118/930 1308/2119/932 609/2120/933 +f 609/2120/933 1308/2119/932 1305/2112/927 610/2111/926 +f 611/2121/934 1309/2122/3 1310/2123/935 612/2124/936 +f 616/2125/937 1311/2126/938 1309/2122/3 611/2121/934 +f 612/2124/936 1310/2123/935 1312/2127/939 613/2128/940 +f 613/2128/940 1312/2127/939 1313/2129/4 614/2130/941 +f 614/2131/941 1313/2132/4 1314/2133/942 615/2134/943 +f 615/2134/943 1314/2133/942 1311/2126/938 616/2125/937 +f 617/2135/909 1315/2136/908 1316/2137/910 618/2138/911 +f 622/2139/907 1317/2140/906 1315/2136/908 617/2135/909 +f 618/2138/911 1316/2137/910 1318/2141/905 619/2142/904 +f 619/2142/904 1318/2141/905 1319/2143/901 620/2144/900 +f 620/2145/900 1319/2146/901 1320/2147/902 621/2148/903 +f 621/2148/903 1320/2147/902 1317/2140/906 622/2139/907 +f 623/2149/919 1321/2150/2 1322/2151/920 624/2152/921 +f 628/2153/918 1323/2154/917 1321/2150/2 623/2149/919 +f 624/2152/921 1322/2151/920 1324/2155/916 625/2156/915 +f 625/2156/915 1324/2155/916 1325/2157/1 626/2158/912 +f 626/2159/912 1325/2160/1 1326/2161/913 627/2162/914 +f 627/2162/914 1326/2161/913 1323/2154/917 628/2153/918 +f 629/2163/931 1327/2164/930 1328/2165/932 630/2166/933 +f 634/2167/929 1329/2168/928 1327/2164/930 629/2163/931 +f 630/2166/933 1328/2165/932 1330/2169/927 631/2170/926 +f 631/2170/926 1330/2169/927 1331/2171/923 632/2172/922 +f 632/2173/922 1331/2174/923 1332/2175/924 633/2176/925 +f 633/2176/925 1332/2175/924 1329/2168/928 634/2167/929 +f 635/2177/944 1333/2178/4 1334/2179/942 636/2180/945 +f 640/2181/946 1335/2182/939 1333/2178/4 635/2177/944 +f 636/2180/945 1334/2179/942 1336/2183/938 637/2184/947 +f 637/2184/947 1336/2183/938 1337/2185/3 638/2186/948 +f 638/2187/948 1337/2188/3 1338/2189/935 639/2190/949 +f 639/2190/949 1338/2189/935 1335/2182/939 640/2181/946 diff --git a/mods/pipeworks/models/pipeworks_pipe_7_lowpoly.obj b/mods/pipeworks/models/pipeworks_pipe_7_lowpoly.obj new file mode 100644 index 00000000..4b2dd4c4 --- /dev/null +++ b/mods/pipeworks/models/pipeworks_pipe_7_lowpoly.obj @@ -0,0 +1,535 @@ +# Blender v2.78 (sub 0) OBJ File: 'pipe-master-lowpoly.blend' +# www.blender.org +o Cylinder.002_Cylinder.006_None.002 +v -0.468750 -0.156250 -0.064721 +v -0.468750 -0.064721 -0.156250 +v -0.468750 0.064721 -0.156250 +v -0.468750 0.156250 -0.064721 +v -0.468750 0.156250 0.064721 +v -0.468750 0.064721 0.156250 +v -0.468750 -0.064721 0.156250 +v -0.468750 -0.156250 0.064721 +v -0.500000 -0.064721 -0.156250 +v -0.500000 -0.156250 -0.064721 +v -0.500000 -0.156250 0.064721 +v -0.500000 -0.064721 0.156250 +v -0.500000 0.064721 0.156250 +v -0.500000 0.156250 0.064721 +v -0.500000 0.156250 -0.064721 +v -0.500000 0.064721 -0.156250 +v 0.500000 -0.156250 -0.064721 +v 0.500000 -0.064721 -0.156250 +v 0.500000 0.064721 -0.156250 +v 0.500000 0.156250 -0.064721 +v 0.500000 0.156250 0.064721 +v 0.500000 0.064721 0.156250 +v 0.500000 -0.064721 0.156250 +v 0.500000 -0.156250 0.064721 +v 0.468750 -0.064721 -0.156250 +v 0.468750 -0.156250 -0.064721 +v 0.468750 -0.156250 0.064721 +v 0.468750 -0.064721 0.156250 +v 0.468750 0.064721 0.156250 +v 0.468750 0.156250 0.064721 +v 0.468750 0.156250 -0.064721 +v 0.468750 0.064721 -0.156250 +v 0.064721 -0.156250 -0.468750 +v 0.156250 -0.064721 -0.468750 +v 0.156250 0.064721 -0.468750 +v 0.064721 0.156250 -0.468750 +v -0.064721 0.156250 -0.468750 +v -0.156250 0.064721 -0.468750 +v -0.156250 -0.064721 -0.468750 +v -0.064721 -0.156250 -0.468750 +v 0.156250 -0.064721 -0.500000 +v 0.064721 -0.156250 -0.500000 +v -0.064721 -0.156250 -0.500000 +v -0.156250 -0.064721 -0.500000 +v -0.156250 0.064721 -0.500000 +v -0.064721 0.156250 -0.500000 +v 0.064721 0.156250 -0.500000 +v 0.156250 0.064721 -0.500000 +v 0.064721 -0.468750 0.156250 +v 0.156250 -0.468750 0.064721 +v 0.156250 -0.468750 -0.064721 +v 0.064721 -0.468750 -0.156250 +v -0.064721 -0.468750 -0.156250 +v -0.156250 -0.468750 -0.064721 +v -0.156250 -0.468750 0.064721 +v -0.064721 -0.468750 0.156250 +v 0.156250 -0.500000 0.064721 +v 0.064721 -0.500000 0.156250 +v -0.064721 -0.500000 0.156250 +v -0.156250 -0.500000 0.064721 +v -0.156250 -0.500000 -0.064721 +v -0.064721 -0.500000 -0.156250 +v 0.064721 -0.500000 -0.156250 +v 0.156250 -0.500000 -0.064721 +v -0.468750 -0.051777 -0.125000 +v -0.468750 -0.125000 -0.051777 +v -0.468750 -0.125000 0.051777 +v -0.468750 -0.051777 0.125000 +v -0.468750 0.051777 0.125000 +v -0.468750 0.125000 0.051777 +v -0.468750 0.125000 -0.051777 +v -0.468750 0.051777 -0.125000 +v 0.468750 -0.125000 -0.051777 +v 0.468750 -0.051777 -0.125000 +v 0.468750 0.051777 -0.125000 +v 0.468750 0.125000 -0.051777 +v 0.468750 0.125000 0.051777 +v 0.468750 0.051777 0.125000 +v 0.468750 -0.051777 0.125000 +v 0.468750 -0.125000 0.051777 +v -0.051777 0.125000 -0.468750 +v -0.051777 0.125000 -0.051777 +v 0.051777 0.125000 -0.051777 +v 0.051777 0.125000 -0.468750 +v -0.051777 -0.468750 0.125000 +v -0.051777 -0.051777 0.125000 +v -0.125000 -0.125000 0.051777 +v -0.125000 -0.468750 0.051777 +v 0.051777 -0.468750 0.125000 +v 0.125000 -0.468750 0.051777 +v 0.125000 -0.125000 0.051777 +v 0.051777 -0.051777 0.125000 +v 0.125000 0.051777 -0.125000 +v 0.125000 -0.125000 -0.051777 +v 0.088388 -0.088388 -0.088388 +v 0.125000 -0.051777 -0.125000 +v 0.125000 0.051777 -0.468750 +v -0.125000 0.051777 -0.125000 +v -0.125000 -0.051777 -0.125000 +v -0.088388 -0.088388 -0.088388 +v -0.125000 -0.125000 -0.051777 +v 0.125000 -0.051777 -0.468750 +v 0.051777 -0.125000 -0.468750 +v -0.051777 -0.125000 -0.468750 +v -0.125000 -0.051777 -0.468750 +v -0.125000 0.051777 -0.468750 +v -0.051777 -0.125000 -0.125000 +v 0.051777 -0.125000 -0.125000 +v -0.125000 -0.468750 -0.051777 +v -0.051777 -0.468750 -0.125000 +v 0.051777 -0.468750 -0.125000 +v 0.125000 -0.468750 -0.051777 +vt 0.7188 0.8906 +vt 0.6250 0.9844 +vt 0.5000 0.9844 +vt 0.4062 0.8906 +vt 0.4062 0.7656 +vt 0.5000 0.6719 +vt 0.6250 0.6719 +vt 0.7188 0.7656 +vt 0.2500 0.9844 +vt 0.3438 0.8906 +vt 0.3438 0.7656 +vt 0.2500 0.6719 +vt 0.1250 0.6719 +vt 0.0312 0.7656 +vt 0.0312 0.8906 +vt 0.1250 0.9844 +vt 0.3438 0.8906 +vt 0.2500 0.9844 +vt 0.1250 0.9844 +vt 0.0312 0.8906 +vt 0.0312 0.7656 +vt 0.1250 0.6719 +vt 0.2500 0.6719 +vt 0.3438 0.7656 +vt 0.6250 0.9844 +vt 0.7188 0.8906 +vt 0.7188 0.7656 +vt 0.6250 0.6719 +vt 0.5000 0.6719 +vt 0.4062 0.7656 +vt 0.4062 0.8906 +vt 0.5000 0.9844 +vt 0.7188 0.8906 +vt 0.6250 0.9844 +vt 0.5000 0.9844 +vt 0.4062 0.8906 +vt 0.4062 0.7656 +vt 0.5000 0.6719 +vt 0.6250 0.6719 +vt 0.7188 0.7656 +vt 0.2500 0.9844 +vt 0.3438 0.8906 +vt 0.3438 0.7656 +vt 0.2500 0.6719 +vt 0.1250 0.6719 +vt 0.0312 0.7656 +vt 0.0312 0.8906 +vt 0.1250 0.9844 +vt 0.7188 0.8906 +vt 0.6250 0.9844 +vt 0.5000 0.9844 +vt 0.4062 0.8906 +vt 0.4062 0.7656 +vt 0.5000 0.6719 +vt 0.6250 0.6719 +vt 0.7188 0.7656 +vt 0.2500 0.9844 +vt 0.3438 0.8906 +vt 0.3438 0.7656 +vt 0.2500 0.6719 +vt 0.1250 0.6719 +vt 0.0312 0.7656 +vt 0.0312 0.8906 +vt 0.1250 0.9844 +vt 0.8125 0.5938 +vt 0.8125 0.5625 +vt 0.8750 0.5625 +vt 0.8750 0.5938 +vt 0.9375 0.5625 +vt 0.9375 0.5938 +vt 1.0000 0.5625 +vt 1.0000 0.5938 +vt 0.5000 0.5938 +vt 0.5000 0.5625 +vt 0.5625 0.5625 +vt 0.5625 0.5938 +vt 0.6250 0.5625 +vt 0.6250 0.5938 +vt 0.6875 0.5625 +vt 0.6875 0.5938 +vt 0.7500 0.5625 +vt 0.7500 0.5938 +vt 0.3750 0.5938 +vt 0.3750 0.5625 +vt 0.4375 0.5625 +vt 0.4375 0.5938 +vt 0.3125 0.5938 +vt 0.3125 0.5625 +vt 0.5000 0.5625 +vt 0.5000 0.5938 +vt 0.0000 0.5938 +vt 0.0000 0.5625 +vt 0.0625 0.5625 +vt 0.0625 0.5938 +vt 0.1250 0.5625 +vt 0.1250 0.5938 +vt 0.1875 0.5625 +vt 0.1875 0.5938 +vt 0.2500 0.5625 +vt 0.2500 0.5938 +vt 0.0000 1.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 1.0000 0.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 0.6250 0.0156 +vt 0.6250 0.2344 +vt 0.5000 0.2344 +vt 0.5000 0.0156 +vt 0.6250 0.5156 +vt 0.6250 0.0156 +vt 0.7500 0.0156 +vt 0.7500 0.5156 +vt 1.0000 0.0156 +vt 1.0000 0.2344 +vt 0.8750 0.1875 +vt 0.8750 0.0156 +vt 0.1250 0.0156 +vt 0.2500 0.0156 +vt 0.2500 0.1875 +vt 0.1250 0.2344 +vt 0.5000 0.2969 +vt 0.5000 0.5156 +vt 0.3750 0.5156 +vt 0.3750 0.3281 +vt -0.0000 0.2344 +vt -0.0000 0.0156 +vt 0.1250 0.5156 +vt -0.0000 0.5156 +vt -0.0000 0.3281 +vt 0.1250 0.3281 +vt 0.1875 0.3125 +vt 0.2500 0.3281 +vt 0.2500 0.5156 +vt 0.5000 0.2344 +vt 0.5000 0.0156 +vt 0.3750 0.1875 +vt 0.3750 0.0156 +vt 0.2500 0.0156 +vt 0.3750 0.0156 +vt 0.3750 0.1875 +vt 0.2500 0.1875 +vt 0.1250 0.0156 +vt 0.1875 0.2188 +vt 0.1250 0.1875 +vt -0.0000 0.1875 +vt -0.0000 0.0156 +vt 0.8125 0.5938 +vt 0.8125 0.5625 +vt 0.8750 0.5625 +vt 0.8750 0.5938 +vt 0.9375 0.5625 +vt 0.9375 0.5938 +vt 1.0000 0.5625 +vt 1.0000 0.5938 +vt 0.5000 0.5938 +vt 0.5000 0.5625 +vt 0.5625 0.5625 +vt 0.5625 0.5938 +vt 0.6250 0.5625 +vt 0.6250 0.5938 +vt 0.6875 0.5625 +vt 0.6875 0.5938 +vt 0.7500 0.5625 +vt 0.7500 0.5938 +vt 0.0000 1.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 1.0000 0.0156 +vt 1.0000 0.1875 +vt 0.9375 0.2188 +vt 0.8750 0.1875 +vt 0.8750 0.0156 +vt 0.7500 0.1875 +vt 0.7500 0.0156 +vt 0.2500 0.0156 +vt 0.2500 0.1875 +vt 0.1250 0.0156 +vt 0.1875 0.2188 +vt 0.1250 0.1875 +vt -0.0000 0.1875 +vt -0.0000 0.0156 +vt 0.8125 0.5938 +vt 0.8125 0.5625 +vt 0.8750 0.5625 +vt 0.8750 0.5938 +vt 0.9375 0.5625 +vt 0.9375 0.5938 +vt 1.0000 0.5625 +vt 1.0000 0.5938 +vt 0.5000 0.5938 +vt 0.5000 0.5625 +vt 0.5625 0.5625 +vt 0.5625 0.5938 +vt 0.6250 0.5625 +vt 0.6250 0.5938 +vt 0.6875 0.5625 +vt 0.6875 0.5938 +vt 0.7500 0.5625 +vt 0.7500 0.5938 +vt 0.0000 1.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 1.0000 0.5156 +vt 0.8750 0.5156 +vt 0.8750 0.2969 +vt 1.0000 0.3281 +vt 1.0000 0.0156 +vt 1.0000 0.1875 +vt 0.8750 0.2344 +vt 0.8750 0.0156 +vt 0.7500 0.1875 +vt 0.7500 0.0156 +vt 0.6250 0.0156 +vt 0.6875 0.2188 +vt 0.6250 0.1875 +vt 0.5000 0.1875 +vt 0.5000 0.0156 +vt 0.4375 0.2188 +vt 0.3750 0.1875 +vt 0.3750 0.0156 +vn 1.0000 0.0000 0.0000 +vn -1.0000 -0.0000 0.0000 +vn 0.0000 0.0000 1.0000 +vn 0.0000 0.0000 -1.0000 +vn 0.0000 1.0000 0.0000 +vn 0.0000 -1.0000 0.0000 +vn -0.6302 -0.2971 -0.7173 +vn 0.6302 -0.2971 -0.7173 +vn 0.6302 -0.7173 -0.2971 +vn -0.6302 -0.7173 -0.2971 +vn 0.6302 -0.7173 0.2971 +vn -0.6302 -0.7173 0.2971 +vn 0.6302 -0.2971 0.7173 +vn -0.6302 -0.2971 0.7173 +vn 0.6302 0.2971 0.7173 +vn -0.6302 0.2971 0.7173 +vn 0.6302 0.7173 0.2971 +vn -0.6302 0.7173 0.2971 +vn 0.6302 0.7173 -0.2971 +vn -0.6302 0.7173 -0.2971 +vn 0.6302 0.2971 -0.7173 +vn -0.6302 0.2971 -0.7173 +vn -0.6303 -0.2971 -0.7173 +vn -0.6303 -0.7173 -0.2971 +vn -0.6303 -0.7173 0.2971 +vn -0.6303 -0.2971 0.7173 +vn -0.6303 0.2971 0.7173 +vn -0.6303 0.7173 0.2971 +vn -0.6303 0.7173 -0.2971 +vn -0.6303 0.2971 -0.7173 +vn 0.6303 -0.7173 -0.2971 +vn 0.6303 -0.2971 -0.7173 +vn 0.6303 0.2971 -0.7173 +vn 0.6303 0.7173 -0.2971 +vn 0.6303 0.7173 0.2971 +vn 0.6303 0.2971 0.7173 +vn 0.6303 -0.2971 0.7173 +vn 0.6303 -0.7173 0.2971 +vn -0.2971 0.7173 -0.6303 +vn -0.1101 0.9878 -0.1101 +vn 0.1101 0.9878 -0.1101 +vn 0.2971 0.7173 -0.6303 +vn -0.2971 -0.6303 0.7173 +vn -0.1101 -0.1101 0.9878 +vn -0.5789 -0.5789 0.5743 +vn -0.7173 -0.6303 0.2971 +vn 0.2971 -0.6303 0.7173 +vn 0.7173 -0.6303 0.2971 +vn 0.5789 -0.5789 0.5743 +vn 0.1101 -0.1101 0.9878 +vn 0.5789 0.5743 -0.5789 +vn 0.5789 -0.5789 -0.5743 +vn 0.5774 -0.5774 -0.5774 +vn 0.5789 -0.5743 -0.5789 +vn 0.7173 0.2971 -0.6303 +vn -0.5789 0.5743 -0.5789 +vn -0.5789 -0.5743 -0.5789 +vn -0.5774 -0.5774 -0.5774 +vn -0.5789 -0.5789 -0.5743 +vn 0.7173 -0.2971 -0.6302 +vn 0.7173 -0.2971 0.6302 +vn 0.2971 -0.7173 0.6302 +vn 0.2971 -0.7173 -0.6302 +vn -0.2971 -0.7173 0.6302 +vn -0.2971 -0.7173 -0.6302 +vn -0.7173 -0.2971 0.6302 +vn -0.7173 -0.2971 -0.6302 +vn -0.7173 0.2971 0.6302 +vn -0.7173 0.2971 -0.6302 +vn -0.2971 0.7173 0.6302 +vn -0.2971 0.7173 -0.6302 +vn 0.2971 0.7173 0.6302 +vn 0.2971 0.7173 -0.6302 +vn 0.7173 0.2971 0.6302 +vn 0.7173 0.2971 -0.6302 +vn 0.7173 -0.2971 -0.6303 +vn 0.2971 -0.7173 -0.6303 +vn -0.2971 -0.7173 -0.6303 +vn -0.7173 -0.2971 -0.6303 +vn -0.7173 0.2971 -0.6303 +vn -0.5743 -0.5789 -0.5789 +vn 0.5743 -0.5789 -0.5789 +vn 0.7173 -0.6302 0.2971 +vn 0.7173 0.6302 0.2971 +vn 0.2971 0.6302 0.7173 +vn 0.2971 -0.6302 0.7173 +vn -0.2971 0.6302 0.7173 +vn -0.2971 -0.6302 0.7173 +vn -0.7173 0.6302 0.2971 +vn -0.7173 -0.6302 0.2971 +vn -0.7173 0.6302 -0.2971 +vn -0.7173 -0.6302 -0.2971 +vn -0.2971 0.6302 -0.7173 +vn -0.2971 -0.6302 -0.7173 +vn 0.2971 0.6302 -0.7173 +vn 0.2971 -0.6302 -0.7173 +vn 0.7173 0.6302 -0.2971 +vn 0.7173 -0.6302 -0.2971 +vn -0.7173 -0.6303 -0.2971 +vn -0.2971 -0.6303 -0.7173 +vn 0.2971 -0.6303 -0.7173 +vn 0.7173 -0.6303 -0.2971 +g Cylinder.002_Cylinder.006_None.002_Cylinder.002_Cylinder.006_None.002_None +s off +f 1/1/1 2/2/1 3/3/1 4/4/1 5/5/1 6/6/1 7/7/1 8/8/1 +f 9/9/2 10/10/2 11/11/2 12/12/2 13/13/2 14/14/2 15/15/2 16/16/2 +f 17/17/1 18/18/1 19/19/1 20/20/1 21/21/1 22/22/1 23/23/1 24/24/1 +f 25/25/2 26/26/2 27/27/2 28/28/2 29/29/2 30/30/2 31/31/2 32/32/2 +f 33/33/3 34/34/3 35/35/3 36/36/3 37/37/3 38/38/3 39/39/3 40/40/3 +f 41/41/4 42/42/4 43/43/4 44/44/4 45/45/4 46/46/4 47/47/4 48/48/4 +f 49/49/5 50/50/5 51/51/5 52/52/5 53/53/5 54/54/5 55/55/5 56/56/5 +f 57/57/6 58/58/6 59/59/6 60/60/6 61/61/6 62/62/6 63/63/6 64/64/6 +s 1 +f 9/65/7 2/66/8 1/67/9 10/68/10 +f 10/68/10 1/67/9 8/69/11 11/70/12 +f 11/70/12 8/69/11 7/71/13 12/72/14 +f 12/73/14 7/74/13 6/75/15 13/76/16 +f 13/76/16 6/75/15 5/77/17 14/78/18 +f 14/78/18 5/77/17 4/79/19 15/80/20 +f 15/80/20 4/79/19 3/81/21 16/82/22 +f 16/82/22 3/81/21 2/66/8 9/65/7 +f 26/83/10 17/84/9 24/85/11 27/86/12 +f 25/87/7 18/88/8 17/84/9 26/83/10 +f 27/86/12 24/85/11 23/89/13 28/90/14 +f 28/91/14 23/92/13 22/93/15 29/94/16 +f 29/94/16 22/93/15 21/95/17 30/96/18 +f 30/96/18 21/95/17 20/97/19 31/98/20 +f 31/98/20 20/97/19 19/99/21 32/100/22 +f 32/100/22 19/99/21 18/88/8 25/87/7 +f 65/101/23 66/102/24 67/103/25 68/104/26 69/105/27 70/106/28 71/107/29 72/108/30 +f 73/109/31 74/110/32 75/111/33 76/112/34 77/113/35 78/114/36 79/115/37 80/116/38 +f 81/117/39 82/118/40 83/119/41 84/120/42 +f 77/121/35 70/122/28 69/123/27 78/124/36 +f 85/125/43 86/126/44 87/127/45 88/128/46 +f 89/129/47 90/130/48 91/131/49 92/132/50 +f 83/133/41 76/134/34 75/135/33 93/136/51 +f 89/129/47 92/132/50 86/137/44 85/138/43 +f 73/139/31 80/140/38 91/141/49 94/142/52 +f 73/139/31 94/142/52 95/143/53 96/144/54 74/145/32 +f 74/145/32 96/144/54 93/136/51 75/135/33 +f 77/121/35 76/134/34 83/133/41 82/146/40 71/147/29 70/122/28 +f 83/119/41 93/148/51 97/149/55 84/120/42 +f 65/150/23 72/151/30 98/152/56 99/153/57 +f 66/154/24 65/150/23 99/153/57 100/155/58 101/156/59 +f 66/154/24 101/156/59 87/157/45 67/158/25 +f 41/159/60 34/160/61 33/161/62 42/162/63 +f 42/162/63 33/161/62 40/163/64 43/164/65 +f 43/164/65 40/163/64 39/165/66 44/166/67 +f 44/167/67 39/168/66 38/169/68 45/170/69 +f 45/170/69 38/169/68 37/171/70 46/172/71 +f 46/172/71 37/171/70 36/173/72 47/174/73 +f 47/174/73 36/173/72 35/175/74 48/176/75 +f 48/176/75 35/175/74 34/160/61 41/159/60 +f 102/177/76 103/178/77 104/179/78 105/180/79 106/181/80 81/182/39 84/183/42 97/184/55 +f 104/185/78 107/186/81 100/187/58 99/188/57 105/189/79 +f 105/189/79 99/188/57 98/190/56 106/191/80 +f 82/118/40 81/117/39 106/191/80 98/190/56 +f 102/192/76 97/149/55 93/148/51 96/193/54 +f 103/194/77 102/192/76 96/193/54 95/195/53 108/196/82 +f 103/194/77 108/196/82 107/197/81 104/198/78 +f 57/199/83 50/200/84 49/201/85 58/202/86 +f 58/202/86 49/201/85 56/203/87 59/204/88 +f 59/204/88 56/203/87 55/205/89 60/206/90 +f 60/207/90 55/208/89 54/209/91 61/210/92 +f 61/210/92 54/209/91 53/211/93 62/212/94 +f 62/212/94 53/211/93 52/213/95 63/214/96 +f 63/214/96 52/213/95 51/215/97 64/216/98 +f 64/216/98 51/215/97 50/200/84 57/199/83 +f 90/217/48 89/218/47 85/219/43 88/220/46 109/221/99 110/222/100 111/223/101 112/224/102 +f 82/146/40 98/152/56 72/151/30 71/147/29 +f 80/225/38 79/226/37 92/227/50 91/228/49 +f 67/229/25 87/230/45 86/231/44 68/232/26 +f 86/231/44 92/227/50 79/226/37 78/124/36 69/123/27 68/232/26 +f 88/128/46 87/127/45 101/233/59 109/234/99 +f 110/235/100 109/234/99 101/233/59 100/236/58 107/237/81 +f 110/235/100 107/237/81 108/238/82 111/239/101 +f 111/239/101 108/238/82 95/240/53 94/241/52 112/242/102 +f 90/130/48 112/242/102 94/241/52 91/131/49 diff --git a/mods/pipeworks/models/pipeworks_pipe_8.obj b/mods/pipeworks/models/pipeworks_pipe_8.obj new file mode 100644 index 00000000..21c68761 --- /dev/null +++ b/mods/pipeworks/models/pipeworks_pipe_8.obj @@ -0,0 +1,5122 @@ +# Blender v2.78 (sub 0) OBJ File: 'pipe-master-highpoly.blend' +# www.blender.org +o Pipe_Cylinder.002 +v -0.468750 0.126770 0.038455 +v -0.468750 0.131837 0.012985 +v -0.468750 0.131837 -0.012984 +v -0.468750 0.126770 -0.038455 +v -0.468750 0.116832 -0.062448 +v -0.468750 0.102404 -0.084041 +v -0.468750 0.084041 -0.102404 +v -0.468750 0.062448 -0.116832 +v -0.468750 0.038455 -0.126770 +v -0.468750 0.012985 -0.131836 +v -0.468750 -0.012985 -0.131836 +v -0.468750 -0.062448 -0.116832 +v -0.468750 -0.084041 -0.102404 +v -0.468750 -0.102404 -0.084041 +v -0.468750 -0.116832 -0.062448 +v -0.468750 -0.126770 -0.038455 +v -0.468750 -0.131836 -0.012985 +v -0.468750 -0.131836 0.012985 +v -0.468750 -0.126770 0.038455 +v -0.468750 -0.116832 0.062448 +v -0.468750 -0.084041 0.102404 +v -0.468750 -0.102404 0.084041 +v -0.468750 -0.062448 0.116832 +v -0.468750 -0.038455 0.126770 +v -0.468750 0.012985 0.131837 +v -0.468750 0.062448 0.116832 +v -0.468750 0.038455 0.126770 +v -0.468750 0.084041 0.102404 +v -0.468750 0.102404 0.084041 +v -0.468750 0.116832 0.062448 +v -0.468750 -0.038455 -0.126770 +v -0.468750 -0.012985 0.131836 +v -0.437501 0.110774 0.059210 +v -0.437501 0.120197 0.036461 +v -0.437501 0.125000 0.012312 +v -0.437501 0.125001 -0.012311 +v -0.437501 0.120197 -0.036461 +v -0.437501 0.110774 -0.059210 +v -0.437501 0.097094 -0.079683 +v -0.437501 0.079683 -0.097094 +v -0.437501 0.059210 -0.110774 +v -0.437501 0.036461 -0.120197 +v -0.437501 0.012312 -0.125000 +v -0.437501 -0.012311 -0.125000 +v -0.437501 -0.036461 -0.120197 +v -0.437501 -0.059210 -0.110774 +v -0.437501 -0.079683 -0.097094 +v -0.437501 -0.097094 -0.079683 +v -0.437501 -0.110774 -0.059210 +v -0.437501 -0.120197 -0.036461 +v -0.437501 -0.125000 -0.012311 +v -0.437501 -0.125000 0.012311 +v -0.437501 -0.120197 0.036461 +v -0.437501 -0.110774 0.059210 +v -0.437501 -0.097094 0.079683 +v -0.437501 -0.079683 0.097094 +v -0.437501 -0.059210 0.110774 +v -0.437501 -0.036461 0.120197 +v -0.437501 -0.012311 0.125001 +v -0.437501 0.012311 0.125001 +v -0.437501 0.036461 0.120197 +v -0.437501 0.059210 0.110774 +v -0.437501 0.079683 0.097094 +v -0.437501 0.097094 0.079683 +v 0.437501 0.036461 -0.120197 +v 0.437501 0.012312 -0.125001 +v 0.437501 -0.012311 -0.125000 +v 0.437501 -0.036461 -0.120197 +v 0.437501 0.059210 -0.110774 +v 0.468750 0.012985 -0.131836 +v 0.468750 0.038455 -0.126770 +v 0.468750 -0.012985 -0.131836 +v 0.437501 -0.059210 -0.110774 +v 0.468750 -0.038455 -0.126770 +v 0.437501 0.079683 -0.097094 +v 0.468750 0.062448 -0.116832 +v 0.437501 -0.079683 -0.097094 +v 0.468750 -0.062448 -0.116832 +v 0.437501 0.097094 -0.079683 +v 0.468750 0.084041 -0.102404 +v 0.437501 -0.097094 -0.079683 +v 0.468750 -0.084041 -0.102404 +v 0.437501 0.110774 -0.059210 +v 0.468750 0.102404 -0.084041 +v 0.437501 -0.110774 -0.059210 +v 0.468750 -0.102404 -0.084041 +v 0.437501 0.120197 -0.036461 +v 0.468750 0.116832 -0.062448 +v 0.437501 -0.120197 -0.036461 +v 0.468750 -0.116832 -0.062448 +v 0.437501 0.125000 -0.012311 +v 0.468750 0.126770 -0.038455 +v 0.437501 -0.125001 -0.012311 +v 0.468750 -0.126770 -0.038455 +v 0.437501 0.125000 0.012312 +v 0.468750 0.131836 -0.012985 +v 0.437501 -0.125001 0.012311 +v 0.468750 -0.131837 -0.012985 +v 0.437501 0.120197 0.036461 +v 0.468750 0.131836 0.012985 +v 0.437501 -0.120197 0.036461 +v 0.468750 -0.131837 0.012985 +v 0.437501 0.110774 0.059210 +v 0.468750 0.126770 0.038455 +v 0.437501 -0.110774 0.059210 +v 0.468750 -0.126770 0.038455 +v 0.437501 0.097094 0.079683 +v 0.468750 0.116832 0.062448 +v 0.437501 -0.097094 0.079683 +v 0.468750 -0.116832 0.062448 +v 0.437501 0.079683 0.097094 +v 0.468750 0.102404 0.084041 +v 0.437501 -0.079683 0.097094 +v 0.468750 -0.102404 0.084041 +v 0.437501 0.059210 0.110774 +v 0.468750 0.084041 0.102404 +v 0.437501 -0.059210 0.110774 +v 0.468750 -0.084041 0.102404 +v 0.437501 0.036461 0.120197 +v 0.468750 0.062448 0.116832 +v 0.437501 -0.036461 0.120197 +v 0.468750 -0.062448 0.116832 +v 0.437501 0.012311 0.125000 +v 0.468750 0.038455 0.126770 +v 0.437501 -0.012311 0.125000 +v 0.468750 -0.038455 0.126770 +v 0.468750 0.012985 0.131837 +v 0.468750 -0.012985 0.131836 +v 0.460912 0.130078 0.063644 +v 0.468749 0.130078 0.063644 +v 0.468749 0.139022 0.062467 +v 0.460912 0.139022 0.062467 +v 0.460912 0.142474 0.054132 +v 0.460912 0.136982 0.046976 +v 0.460912 0.128039 0.048153 +v 0.460912 0.124587 0.056487 +v 0.468749 0.124587 0.056487 +v 0.468749 0.142474 0.054132 +v 0.468749 0.136982 0.046976 +v 0.468749 0.128039 0.048153 +v -0.460914 0.136982 0.046976 +v -0.468751 0.136982 0.046976 +v -0.468751 0.142474 0.054133 +v -0.460914 0.142474 0.054133 +v -0.460914 0.139022 0.062467 +v -0.460914 0.130078 0.063644 +v -0.460914 0.124587 0.056488 +v -0.460914 0.128039 0.048153 +v -0.468751 0.128039 0.048153 +v -0.468751 0.139022 0.062467 +v -0.468751 0.130078 0.063644 +v -0.468751 0.124587 0.056488 +v 0.460912 0.046976 0.136982 +v 0.468749 0.046976 0.136982 +v 0.468749 0.054133 0.142474 +v 0.460912 0.054133 0.142474 +v 0.460912 0.062467 0.139022 +v 0.460912 0.063644 0.130078 +v 0.460912 0.056488 0.124587 +v 0.460912 0.048154 0.128039 +v 0.468749 0.048154 0.128039 +v 0.468749 0.062467 0.139022 +v 0.468749 0.063644 0.130078 +v 0.468749 0.056488 0.124587 +v -0.460914 0.063644 0.130078 +v -0.468751 0.063644 0.130078 +v -0.468751 0.062467 0.139022 +v -0.460914 0.062467 0.139022 +v -0.460914 0.054133 0.142474 +v -0.460914 0.046976 0.136982 +v -0.460914 0.048153 0.128039 +v -0.460914 0.056487 0.124587 +v -0.468751 0.056487 0.124587 +v -0.468751 0.054133 0.142474 +v -0.468751 0.046976 0.136982 +v -0.468751 0.048153 0.128039 +v 0.460912 -0.063644 0.130078 +v 0.468749 -0.063644 0.130078 +v 0.468749 -0.062467 0.139022 +v 0.460912 -0.062467 0.139022 +v 0.460912 -0.054132 0.142474 +v 0.460912 -0.046976 0.136982 +v 0.460912 -0.048153 0.128039 +v 0.460912 -0.056487 0.124587 +v 0.468749 -0.056487 0.124587 +v 0.468749 -0.054132 0.142474 +v 0.468749 -0.046976 0.136982 +v 0.468749 -0.048153 0.128039 +v -0.460914 -0.046976 0.136982 +v -0.468751 -0.046976 0.136982 +v -0.468751 -0.054133 0.142474 +v -0.460914 -0.054133 0.142474 +v -0.460914 -0.062467 0.139022 +v -0.460914 -0.063644 0.130078 +v -0.460914 -0.056488 0.124587 +v -0.460914 -0.048153 0.128039 +v -0.468751 -0.048153 0.128039 +v -0.468751 -0.062467 0.139022 +v -0.468751 -0.063644 0.130078 +v -0.468751 -0.056488 0.124587 +v 0.460912 -0.136982 0.046976 +v 0.468749 -0.136982 0.046976 +v 0.468749 -0.142474 0.054133 +v 0.460912 -0.142474 0.054133 +v 0.460912 -0.139022 0.062467 +v 0.460912 -0.130078 0.063644 +v 0.460912 -0.124587 0.056488 +v 0.460912 -0.128039 0.048153 +v 0.468749 -0.128039 0.048153 +v 0.468749 -0.139022 0.062467 +v 0.468749 -0.130078 0.063644 +v 0.468749 -0.124587 0.056488 +v -0.460914 -0.130078 0.063644 +v -0.468751 -0.130078 0.063644 +v -0.468751 -0.139022 0.062467 +v -0.460914 -0.139022 0.062467 +v -0.460914 -0.142474 0.054133 +v -0.460914 -0.136982 0.046976 +v -0.460914 -0.128039 0.048153 +v -0.460914 -0.124587 0.056487 +v -0.468751 -0.124587 0.056487 +v -0.468751 -0.142474 0.054133 +v -0.468751 -0.136982 0.046976 +v -0.468751 -0.128039 0.048153 +v 0.460912 -0.130078 -0.063644 +v 0.468749 -0.130078 -0.063644 +v 0.468749 -0.139022 -0.062467 +v 0.460912 -0.139022 -0.062467 +v 0.460912 -0.142474 -0.054132 +v 0.460912 -0.136982 -0.046976 +v 0.460912 -0.128039 -0.048153 +v 0.460912 -0.124587 -0.056487 +v 0.468749 -0.124587 -0.056487 +v 0.468749 -0.142474 -0.054132 +v 0.468749 -0.136982 -0.046976 +v 0.468749 -0.128039 -0.048153 +v -0.460914 -0.136982 -0.046976 +v -0.468751 -0.136982 -0.046976 +v -0.468751 -0.142474 -0.054133 +v -0.460914 -0.142474 -0.054133 +v -0.460914 -0.139022 -0.062467 +v -0.460914 -0.130078 -0.063644 +v -0.460914 -0.124587 -0.056487 +v -0.460914 -0.128039 -0.048153 +v -0.468751 -0.128039 -0.048153 +v -0.468751 -0.139022 -0.062467 +v -0.468751 -0.130078 -0.063644 +v -0.468751 -0.124587 -0.056487 +v 0.460912 -0.046976 -0.136982 +v 0.468749 -0.046976 -0.136982 +v 0.468749 -0.054133 -0.142474 +v 0.460912 -0.054133 -0.142474 +v 0.460912 -0.062467 -0.139022 +v 0.460912 -0.063644 -0.130078 +v 0.460912 -0.056488 -0.124587 +v 0.460912 -0.048153 -0.128039 +v 0.468749 -0.048153 -0.128039 +v 0.468749 -0.062467 -0.139022 +v 0.468749 -0.063644 -0.130078 +v 0.468749 -0.056488 -0.124587 +v -0.460914 -0.063644 -0.130078 +v -0.468751 -0.063644 -0.130078 +v -0.468751 -0.062467 -0.139022 +v -0.460914 -0.062467 -0.139022 +v -0.460914 -0.054132 -0.142474 +v -0.460914 -0.046976 -0.136982 +v -0.460914 -0.048153 -0.128039 +v -0.460914 -0.056487 -0.124587 +v -0.468751 -0.056487 -0.124587 +v -0.468751 -0.054132 -0.142474 +v -0.468751 -0.046976 -0.136982 +v -0.468751 -0.048153 -0.128039 +v 0.460912 0.063644 -0.130078 +v 0.468749 0.063644 -0.130078 +v 0.468749 0.062467 -0.139022 +v 0.460912 0.062467 -0.139022 +v 0.460912 0.054132 -0.142474 +v 0.460912 0.046976 -0.136982 +v 0.460912 0.048153 -0.128039 +v 0.460912 0.056487 -0.124587 +v 0.468749 0.056487 -0.124587 +v 0.468749 0.054132 -0.142474 +v 0.468749 0.046976 -0.136982 +v 0.468749 0.048153 -0.128039 +v -0.460914 0.046976 -0.136982 +v -0.468751 0.046976 -0.136982 +v -0.468751 0.054133 -0.142474 +v -0.460914 0.054133 -0.142474 +v -0.460914 0.062467 -0.139022 +v -0.460914 0.063644 -0.130078 +v -0.460914 0.056487 -0.124587 +v -0.460914 0.048153 -0.128039 +v -0.468751 0.048153 -0.128039 +v -0.468751 0.062467 -0.139022 +v -0.468751 0.063644 -0.130078 +v -0.468751 0.056487 -0.124587 +v 0.460912 0.136982 -0.046976 +v 0.468749 0.136982 -0.046976 +v 0.468749 0.142474 -0.054133 +v 0.460912 0.142474 -0.054133 +v 0.460912 0.139022 -0.062467 +v 0.460912 0.130078 -0.063644 +v 0.460912 0.124587 -0.056488 +v 0.460912 0.128039 -0.048153 +v 0.468749 0.128039 -0.048153 +v 0.468749 0.139022 -0.062467 +v 0.468749 0.130078 -0.063644 +v 0.468749 0.124587 -0.056488 +v -0.460914 0.130078 -0.063644 +v -0.468751 0.130078 -0.063644 +v -0.468751 0.139022 -0.062467 +v -0.460914 0.139022 -0.062467 +v -0.460914 0.142474 -0.054133 +v -0.460914 0.136982 -0.046976 +v -0.460914 0.128039 -0.048153 +v -0.460914 0.124587 -0.056487 +v -0.468751 0.124587 -0.056487 +v -0.468751 0.142474 -0.054133 +v -0.468751 0.136982 -0.046976 +v -0.468751 0.128039 -0.048153 +v -0.012312 -0.012312 -0.125000 +v -0.036461 -0.036461 -0.120197 +v -0.079683 -0.079683 -0.097094 +v -0.097094 -0.097094 -0.079683 +v -0.120197 -0.120197 -0.036461 +v 0.110774 0.110774 -0.059210 +v 0.120197 0.120197 -0.036461 +v 0.125000 -0.125001 -0.012311 +v 0.110774 -0.110774 0.059210 +v 0.097094 -0.097094 0.079683 +v 0.079683 -0.079683 0.097094 +v 0.036461 -0.036461 0.120197 +v 0.012312 -0.012312 -0.125000 +v 0.110774 -0.110774 -0.059210 +v 0.125001 0.125001 -0.012311 +v -0.120197 0.120197 0.036461 +v 0.110774 0.110774 0.059210 +v 0.079683 0.079683 0.097094 +v 0.012312 0.012312 0.125000 +v -0.500000 0.099603 -0.121367 +v -0.500000 0.074012 -0.138467 +v -0.500000 0.045577 -0.150245 +v -0.500000 0.015390 -0.156250 +v -0.500000 -0.015389 -0.156250 +v -0.500000 -0.045576 -0.150245 +v -0.500000 -0.074012 -0.138467 +v -0.500000 -0.099603 -0.121367 +v -0.500000 -0.121367 -0.099603 +v -0.500000 -0.150245 -0.045576 +v -0.500000 -0.156250 0.015389 +v -0.500000 -0.150245 0.045576 +v -0.500000 -0.121367 0.099603 +v -0.500000 -0.099603 0.121367 +v -0.500000 -0.074012 0.138467 +v -0.500000 -0.045576 0.150245 +v -0.500000 -0.015389 0.156250 +v -0.500000 0.045576 0.150245 +v -0.500000 0.074012 0.138467 +v -0.500000 0.099603 0.121367 +v -0.500000 0.138467 0.074012 +v -0.500000 0.156250 0.015389 +v -0.500000 0.156250 -0.015389 +v -0.500000 0.150245 -0.045576 +v -0.500000 0.138467 -0.074012 +v -0.500000 0.121367 -0.099603 +v -0.500000 -0.138466 -0.074012 +v -0.500000 -0.156250 -0.015389 +v -0.500000 -0.138467 0.074012 +v -0.500000 0.015389 0.156250 +v -0.500000 0.121367 0.099603 +v -0.500000 0.150245 0.045576 +v -0.468750 0.099603 -0.121367 +v -0.468750 0.121367 -0.099603 +v -0.468750 0.074012 -0.138467 +v -0.468750 0.045577 -0.150245 +v -0.468750 0.015390 -0.156250 +v -0.468750 -0.015389 -0.156250 +v -0.468750 -0.045576 -0.150245 +v -0.468750 -0.074012 -0.138467 +v -0.468750 -0.099603 -0.121367 +v -0.468750 -0.121367 -0.099603 +v -0.468750 -0.138466 -0.074012 +v -0.468750 -0.150245 -0.045576 +v -0.468750 -0.156250 -0.015389 +v -0.468750 -0.156250 0.015389 +v -0.468750 -0.150245 0.045576 +v -0.468750 -0.138467 0.074012 +v -0.468750 -0.121367 0.099603 +v -0.468750 -0.099603 0.121367 +v -0.468750 -0.074012 0.138467 +v -0.468750 -0.045576 0.150245 +v -0.468750 -0.015389 0.156250 +v -0.468750 0.015389 0.156250 +v -0.468750 0.074012 0.138467 +v -0.468750 0.045576 0.150245 +v -0.468750 0.099603 0.121367 +v -0.468750 0.121367 0.099603 +v -0.468750 0.138467 0.074012 +v -0.468750 0.150245 0.045576 +v -0.468750 0.156250 -0.015389 +v -0.468750 0.156250 0.015389 +v -0.468750 0.150245 -0.045576 +v -0.468750 0.138467 -0.074012 +v 0.468750 -0.138466 -0.074012 +v 0.468750 -0.150245 -0.045576 +v 0.468750 -0.156250 -0.015389 +v 0.468750 -0.121367 -0.099603 +v 0.468750 -0.156250 0.015389 +v 0.468750 -0.074012 -0.138467 +v 0.468750 -0.099603 -0.121367 +v 0.500000 -0.121367 -0.099603 +v 0.500000 -0.138467 -0.074012 +v 0.500000 -0.150245 -0.045576 +v 0.500000 -0.156250 -0.015389 +v 0.500000 -0.156250 0.015389 +v 0.468750 -0.045576 -0.150245 +v 0.500000 -0.099603 -0.121367 +v 0.468750 -0.150245 0.045576 +v 0.500000 -0.150245 0.045576 +v 0.468750 -0.015389 -0.156250 +v 0.500000 -0.045576 -0.150245 +v 0.500000 -0.074012 -0.138467 +v 0.468750 -0.138467 0.074012 +v 0.500000 -0.138467 0.074012 +v 0.468750 0.015389 -0.156250 +v 0.500000 -0.015389 -0.156250 +v 0.468750 -0.121367 0.099603 +v 0.500000 -0.121367 0.099603 +v 0.468750 0.045576 -0.150245 +v 0.500000 0.015389 -0.156250 +v 0.468750 -0.099603 0.121367 +v 0.500000 -0.099603 0.121367 +v 0.468750 0.074012 -0.138467 +v 0.500000 0.045576 -0.150245 +v 0.468750 -0.045576 0.150245 +v 0.468750 -0.074012 0.138467 +v 0.500000 -0.074012 0.138467 +v 0.468750 0.099603 -0.121367 +v 0.500000 0.074012 -0.138467 +v 0.468750 -0.015389 0.156250 +v 0.500000 -0.045576 0.150245 +v 0.468750 0.121367 -0.099603 +v 0.500000 0.099603 -0.121367 +v 0.468750 0.015389 0.156250 +v 0.500000 -0.015389 0.156250 +v 0.468750 0.138466 -0.074012 +v 0.500000 0.121367 -0.099603 +v 0.468750 0.045576 0.150245 +v 0.500000 0.015389 0.156250 +v 0.468750 0.150245 -0.045577 +v 0.500000 0.138466 -0.074012 +v 0.468750 0.074012 0.138467 +v 0.500000 0.045576 0.150245 +v 0.468750 0.156249 -0.015389 +v 0.500000 0.150245 -0.045577 +v 0.500000 0.156250 0.015389 +v 0.468750 0.099603 0.121367 +v 0.500000 0.074012 0.138467 +v 0.468750 0.156250 0.015389 +v 0.500000 0.156250 -0.015389 +v 0.500000 0.138467 0.074012 +v 0.500000 0.150245 0.045576 +v 0.500000 0.121367 0.099603 +v 0.500000 0.099603 0.121367 +v 0.468750 0.150245 0.045576 +v 0.468750 0.121367 0.099603 +v 0.468750 0.138467 0.074012 +v 0.460912 0.095821 0.108578 +v 0.468749 0.095821 0.108578 +v 0.468749 0.104534 0.110913 +v 0.460912 0.104534 0.110913 +v 0.460912 0.110913 0.104534 +v 0.460912 0.108578 0.095821 +v 0.460912 0.099865 0.093486 +v 0.460912 0.093486 0.099865 +v 0.468749 0.093486 0.099865 +v 0.468749 0.110913 0.104534 +v 0.468749 0.108578 0.095821 +v 0.468749 0.099865 0.093486 +v -0.460914 0.108578 0.095821 +v -0.468751 0.108578 0.095821 +v -0.468751 0.110913 0.104534 +v -0.460914 0.110913 0.104534 +v -0.460914 0.104534 0.110913 +v -0.460914 0.095821 0.108578 +v -0.460914 0.093486 0.099865 +v -0.460914 0.099865 0.093486 +v -0.468751 0.099865 0.093486 +v -0.468751 0.104534 0.110913 +v -0.468751 0.095821 0.108578 +v -0.468751 0.093486 0.099865 +v 0.460912 -0.009021 0.144532 +v 0.468749 -0.009021 0.144532 +v 0.468749 -0.004510 0.152344 +v 0.460912 -0.004510 0.152344 +v 0.460912 0.004510 0.152344 +v 0.460912 0.009021 0.144532 +v 0.460912 0.004510 0.136720 +v 0.460912 -0.004510 0.136720 +v 0.468749 -0.004510 0.136720 +v 0.468749 0.004510 0.152344 +v 0.468749 0.009021 0.144532 +v 0.468749 0.004510 0.136720 +v -0.460914 0.009021 0.144532 +v -0.468751 0.009021 0.144532 +v -0.468751 0.004510 0.152344 +v -0.460914 0.004510 0.152344 +v -0.460914 -0.004510 0.152344 +v -0.460914 -0.009021 0.144532 +v -0.460914 -0.004510 0.136720 +v -0.460914 0.004510 0.136720 +v -0.468751 0.004510 0.136720 +v -0.468751 -0.004510 0.152344 +v -0.468751 -0.009021 0.144532 +v -0.468751 -0.004510 0.136720 +v 0.460912 -0.108578 0.095821 +v 0.468749 -0.108578 0.095821 +v 0.468749 -0.110913 0.104534 +v 0.460912 -0.110913 0.104534 +v 0.460912 -0.104534 0.110913 +v 0.460912 -0.095821 0.108578 +v 0.460912 -0.093486 0.099865 +v 0.460912 -0.099865 0.093486 +v 0.468749 -0.099865 0.093486 +v 0.468749 -0.104534 0.110913 +v 0.468749 -0.095821 0.108578 +v 0.468749 -0.093486 0.099865 +v -0.460914 -0.095821 0.108578 +v -0.468751 -0.095821 0.108578 +v -0.468751 -0.104534 0.110913 +v -0.460914 -0.104534 0.110913 +v -0.460914 -0.110913 0.104534 +v -0.460914 -0.108578 0.095821 +v -0.460914 -0.099865 0.093486 +v -0.460914 -0.093486 0.099865 +v -0.468751 -0.093486 0.099865 +v -0.468751 -0.110913 0.104534 +v -0.468751 -0.108578 0.095821 +v -0.468751 -0.099865 0.093486 +v 0.460912 -0.144532 -0.009021 +v 0.468749 -0.144532 -0.009021 +v 0.468749 -0.152344 -0.004510 +v 0.460912 -0.152344 -0.004510 +v 0.460912 -0.152344 0.004511 +v 0.460912 -0.144532 0.009021 +v 0.460912 -0.136720 0.004510 +v 0.460912 -0.136720 -0.004510 +v 0.468749 -0.136720 -0.004510 +v 0.468749 -0.152344 0.004511 +v 0.468749 -0.144532 0.009021 +v 0.468749 -0.136720 0.004510 +v -0.460914 -0.144532 0.009021 +v -0.468751 -0.144532 0.009021 +v -0.468751 -0.152344 0.004510 +v -0.460914 -0.152344 0.004510 +v -0.460914 -0.152344 -0.004510 +v -0.460914 -0.144532 -0.009021 +v -0.460914 -0.136720 -0.004510 +v -0.460914 -0.136720 0.004510 +v -0.468751 -0.136720 0.004510 +v -0.468751 -0.152344 -0.004510 +v -0.468751 -0.144532 -0.009021 +v -0.468751 -0.136720 -0.004510 +v 0.460912 -0.095821 -0.108578 +v 0.468749 -0.095821 -0.108578 +v 0.468749 -0.104534 -0.110913 +v 0.460912 -0.104534 -0.110913 +v 0.460912 -0.110913 -0.104534 +v 0.460912 -0.108578 -0.095821 +v 0.460912 -0.099865 -0.093486 +v 0.460912 -0.093486 -0.099865 +v 0.468749 -0.093486 -0.099865 +v 0.468749 -0.110913 -0.104534 +v 0.468749 -0.108578 -0.095821 +v 0.468749 -0.099865 -0.093486 +v -0.460914 -0.108578 -0.095821 +v -0.468751 -0.108578 -0.095821 +v -0.468751 -0.110913 -0.104534 +v -0.460914 -0.110913 -0.104534 +v -0.460914 -0.104534 -0.110913 +v -0.460914 -0.095821 -0.108578 +v -0.460914 -0.093486 -0.099865 +v -0.460914 -0.099865 -0.093486 +v -0.468751 -0.099865 -0.093486 +v -0.468751 -0.104534 -0.110913 +v -0.468751 -0.095821 -0.108578 +v -0.468751 -0.093486 -0.099865 +v 0.460912 0.009021 -0.144532 +v 0.468749 0.009021 -0.144532 +v 0.468749 0.004510 -0.152344 +v 0.460912 0.004510 -0.152344 +v 0.460912 -0.004510 -0.152344 +v 0.460912 -0.009021 -0.144532 +v 0.460912 -0.004510 -0.136720 +v 0.460912 0.004510 -0.136720 +v 0.468749 0.004510 -0.136720 +v 0.468749 -0.004510 -0.152344 +v 0.468749 -0.009021 -0.144532 +v 0.468749 -0.004510 -0.136720 +v -0.460914 -0.009021 -0.144532 +v -0.468751 -0.009021 -0.144532 +v -0.468751 -0.004510 -0.152344 +v -0.460914 -0.004510 -0.152344 +v -0.460914 0.004510 -0.152344 +v -0.460914 0.009021 -0.144532 +v -0.460914 0.004510 -0.136720 +v -0.460914 -0.004510 -0.136720 +v -0.468751 -0.004510 -0.136720 +v -0.468751 0.004510 -0.152344 +v -0.468751 0.009021 -0.144532 +v -0.468751 0.004510 -0.136720 +v 0.460912 0.108578 -0.095821 +v 0.468749 0.108578 -0.095821 +v 0.468749 0.110913 -0.104534 +v 0.460912 0.110913 -0.104534 +v 0.460912 0.104534 -0.110913 +v 0.460912 0.095821 -0.108578 +v 0.460912 0.093486 -0.099865 +v 0.460912 0.099865 -0.093486 +v 0.468749 0.099865 -0.093486 +v 0.468749 0.104534 -0.110913 +v 0.468749 0.095821 -0.108578 +v 0.468749 0.093486 -0.099865 +v -0.460914 0.095821 -0.108578 +v -0.468751 0.095821 -0.108578 +v -0.468751 0.104534 -0.110913 +v -0.460914 0.104534 -0.110913 +v -0.460914 0.110913 -0.104534 +v -0.460914 0.108578 -0.095821 +v -0.460914 0.099865 -0.093486 +v -0.460914 0.093486 -0.099865 +v -0.468751 0.093486 -0.099865 +v -0.468751 0.110913 -0.104534 +v -0.468751 0.108578 -0.095821 +v -0.468751 0.099865 -0.093486 +v 0.460912 0.144532 0.009021 +v 0.468749 0.144532 0.009021 +v 0.468749 0.152344 0.004510 +v 0.460912 0.152344 0.004510 +v 0.460912 0.152344 -0.004510 +v 0.460912 0.144532 -0.009021 +v 0.460912 0.136720 -0.004510 +v 0.460912 0.136720 0.004510 +v 0.468749 0.136720 0.004510 +v 0.468749 0.152344 -0.004510 +v 0.468749 0.144532 -0.009021 +v 0.468749 0.136720 -0.004510 +v -0.460914 0.144532 -0.009021 +v -0.468751 0.144532 -0.009021 +v -0.468751 0.152344 -0.004510 +v -0.460914 0.152344 -0.004510 +v -0.460914 0.152344 0.004510 +v -0.460914 0.144532 0.009021 +v -0.460914 0.136720 0.004510 +v -0.460914 0.136720 -0.004510 +v -0.468751 0.136720 -0.004510 +v -0.468751 0.152344 0.004510 +v -0.468751 0.144532 0.009021 +v -0.468751 0.136720 0.004510 +v 0.126770 0.468750 0.038455 +v 0.131837 0.468750 0.012985 +v 0.131837 0.468750 -0.012984 +v 0.126770 0.468750 -0.038455 +v 0.116832 0.468750 -0.062448 +v 0.102404 0.468750 -0.084041 +v 0.084041 0.468750 -0.102404 +v 0.062448 0.468750 -0.116832 +v 0.038455 0.468750 -0.126770 +v 0.012985 0.468750 -0.131837 +v -0.012985 0.468750 -0.131837 +v -0.062448 0.468750 -0.116832 +v -0.084041 0.468750 -0.102404 +v -0.102404 0.468750 -0.084041 +v -0.116832 0.468750 -0.062448 +v -0.126770 0.468750 -0.038455 +v -0.131837 0.468750 -0.012985 +v -0.131837 0.468750 0.012985 +v -0.126770 0.468750 0.038455 +v -0.116832 0.468750 0.062448 +v -0.084041 0.468750 0.102404 +v -0.102404 0.468750 0.084041 +v -0.062448 0.468750 0.116832 +v -0.038455 0.468750 0.126770 +v 0.012985 0.468750 0.131836 +v 0.062448 0.468750 0.116832 +v 0.038455 0.468750 0.126770 +v 0.084041 0.468750 0.102404 +v 0.102404 0.468750 0.084041 +v 0.116832 0.468750 0.062448 +v -0.038455 0.468750 -0.126770 +v -0.012985 0.468750 0.131836 +v 0.110774 0.437501 0.059210 +v 0.120197 0.437501 0.036461 +v 0.125000 0.437501 0.012312 +v 0.125000 0.437501 -0.012311 +v 0.120197 0.437501 -0.036461 +v 0.110774 0.437501 -0.059210 +v 0.097094 0.437501 -0.079683 +v 0.079683 0.437501 -0.097094 +v 0.059210 0.437501 -0.110774 +v 0.036461 0.437501 -0.120197 +v 0.012311 0.437501 -0.125001 +v -0.012311 0.437501 -0.125001 +v -0.036461 0.437501 -0.120197 +v -0.059210 0.437501 -0.110774 +v -0.079683 0.437501 -0.097094 +v -0.097094 0.437501 -0.079683 +v -0.110774 0.437501 -0.059210 +v -0.120197 0.437501 -0.036461 +v -0.125000 0.437501 -0.012312 +v -0.125001 0.437501 0.012311 +v -0.120197 0.437501 0.036461 +v -0.110774 0.437501 0.059210 +v -0.097094 0.437501 0.079683 +v -0.079683 0.437501 0.097094 +v -0.059210 0.437501 0.110774 +v -0.036461 0.437501 0.120197 +v -0.012312 0.437501 0.125000 +v 0.012311 0.437501 0.125000 +v 0.036461 0.437501 0.120197 +v 0.059210 0.437501 0.110774 +v 0.079683 0.437501 0.097094 +v 0.097094 0.437501 0.079683 +v 0.036461 -0.437501 -0.120197 +v 0.012312 -0.437501 -0.125000 +v -0.012311 -0.437501 -0.125000 +v -0.036461 -0.437501 -0.120197 +v 0.059210 -0.437501 -0.110774 +v 0.012985 -0.468750 -0.131836 +v 0.038455 -0.468750 -0.126770 +v -0.012985 -0.468750 -0.131836 +v -0.059210 -0.437501 -0.110774 +v -0.038455 -0.468750 -0.126770 +v 0.079683 -0.437501 -0.097094 +v 0.062448 -0.468750 -0.116832 +v -0.079683 -0.437501 -0.097094 +v -0.062448 -0.468750 -0.116832 +v 0.097094 -0.437501 -0.079683 +v 0.084041 -0.468750 -0.102404 +v -0.097094 -0.437501 -0.079683 +v -0.084041 -0.468750 -0.102404 +v 0.110774 -0.437501 -0.059210 +v 0.102404 -0.468750 -0.084041 +v -0.110774 -0.437501 -0.059210 +v -0.102404 -0.468750 -0.084041 +v 0.120197 -0.437501 -0.036461 +v 0.116832 -0.468750 -0.062448 +v -0.120197 -0.437501 -0.036461 +v -0.116832 -0.468750 -0.062448 +v 0.125001 -0.437501 -0.012311 +v 0.126770 -0.468750 -0.038455 +v -0.125000 -0.437501 -0.012311 +v -0.126770 -0.468750 -0.038455 +v 0.125000 -0.437501 0.012312 +v 0.131837 -0.468750 -0.012985 +v -0.125000 -0.437501 0.012312 +v -0.131836 -0.468750 -0.012985 +v 0.120197 -0.437501 0.036461 +v 0.131836 -0.468750 0.012985 +v -0.120197 -0.437501 0.036461 +v -0.131836 -0.468750 0.012985 +v 0.110774 -0.437501 0.059210 +v 0.126770 -0.468750 0.038455 +v -0.110774 -0.437501 0.059210 +v -0.126770 -0.468750 0.038455 +v 0.097094 -0.437501 0.079683 +v 0.116832 -0.468750 0.062448 +v -0.097094 -0.437501 0.079683 +v -0.116832 -0.468750 0.062448 +v 0.079683 -0.437501 0.097094 +v 0.102404 -0.468750 0.084041 +v -0.079683 -0.437501 0.097094 +v -0.102404 -0.468750 0.084041 +v 0.059210 -0.437501 0.110774 +v 0.084041 -0.468750 0.102404 +v -0.059210 -0.437501 0.110774 +v -0.084041 -0.468750 0.102404 +v 0.036461 -0.437501 0.120197 +v 0.062448 -0.468750 0.116832 +v -0.036461 -0.437501 0.120197 +v -0.062448 -0.468750 0.116832 +v 0.012311 -0.437501 0.125001 +v 0.038455 -0.468750 0.126770 +v -0.012311 -0.437501 0.125001 +v -0.038455 -0.468750 0.126770 +v 0.012985 -0.468750 0.131837 +v -0.012985 -0.468750 0.131837 +v 0.130078 -0.460912 0.063644 +v 0.130078 -0.468749 0.063644 +v 0.139022 -0.468749 0.062467 +v 0.139022 -0.460912 0.062467 +v 0.142474 -0.460912 0.054133 +v 0.136982 -0.460912 0.046976 +v 0.128039 -0.460912 0.048153 +v 0.124587 -0.460912 0.056487 +v 0.124587 -0.468749 0.056487 +v 0.142474 -0.468749 0.054133 +v 0.136982 -0.468749 0.046976 +v 0.128039 -0.468749 0.048153 +v 0.136982 0.460914 0.046976 +v 0.136982 0.468751 0.046976 +v 0.142474 0.468751 0.054133 +v 0.142474 0.460914 0.054133 +v 0.139022 0.460914 0.062467 +v 0.130078 0.460914 0.063644 +v 0.124587 0.460914 0.056487 +v 0.128039 0.460914 0.048153 +v 0.128039 0.468751 0.048153 +v 0.139022 0.468751 0.062467 +v 0.130078 0.468751 0.063644 +v 0.124587 0.468751 0.056487 +v 0.046976 -0.460912 0.136982 +v 0.046976 -0.468749 0.136982 +v 0.054133 -0.468749 0.142474 +v 0.054133 -0.460912 0.142474 +v 0.062467 -0.460912 0.139022 +v 0.063644 -0.460912 0.130078 +v 0.056488 -0.460912 0.124587 +v 0.048154 -0.460912 0.128039 +v 0.048154 -0.468749 0.128039 +v 0.062467 -0.468749 0.139022 +v 0.063644 -0.468749 0.130078 +v 0.056488 -0.468749 0.124587 +v 0.063644 0.460914 0.130078 +v 0.063644 0.468751 0.130078 +v 0.062467 0.468751 0.139022 +v 0.062467 0.460914 0.139022 +v 0.054132 0.460914 0.142474 +v 0.046976 0.460914 0.136982 +v 0.048153 0.460914 0.128039 +v 0.056487 0.460914 0.124587 +v 0.056487 0.468751 0.124587 +v 0.054132 0.468751 0.142474 +v 0.046976 0.468751 0.136982 +v 0.048153 0.468751 0.128039 +v -0.063644 -0.460912 0.130078 +v -0.063644 -0.468749 0.130078 +v -0.062467 -0.468749 0.139022 +v -0.062467 -0.460912 0.139022 +v -0.054132 -0.460912 0.142474 +v -0.046976 -0.460912 0.136982 +v -0.048153 -0.460912 0.128039 +v -0.056487 -0.460912 0.124587 +v -0.056487 -0.468749 0.124587 +v -0.054132 -0.468749 0.142474 +v -0.046976 -0.468749 0.136982 +v -0.048153 -0.468749 0.128039 +v -0.046976 0.460914 0.136982 +v -0.046976 0.468751 0.136982 +v -0.054133 0.468751 0.142474 +v -0.054133 0.460914 0.142474 +v -0.062467 0.460914 0.139022 +v -0.063644 0.460914 0.130078 +v -0.056488 0.460914 0.124587 +v -0.048153 0.460914 0.128039 +v -0.048153 0.468751 0.128039 +v -0.062467 0.468751 0.139022 +v -0.063644 0.468751 0.130078 +v -0.056488 0.468751 0.124587 +v -0.136982 -0.460912 0.046976 +v -0.136982 -0.468749 0.046976 +v -0.142474 -0.468749 0.054133 +v -0.142474 -0.460912 0.054133 +v -0.139022 -0.460912 0.062467 +v -0.130078 -0.460912 0.063644 +v -0.124587 -0.460912 0.056488 +v -0.128039 -0.460912 0.048154 +v -0.128039 -0.468749 0.048154 +v -0.139022 -0.468749 0.062467 +v -0.130078 -0.468749 0.063644 +v -0.124587 -0.468749 0.056488 +v -0.130078 0.460914 0.063644 +v -0.130078 0.468751 0.063644 +v -0.139022 0.468751 0.062467 +v -0.139022 0.460914 0.062467 +v -0.142474 0.460914 0.054132 +v -0.136982 0.460914 0.046976 +v -0.128039 0.460914 0.048153 +v -0.124587 0.460914 0.056487 +v -0.124587 0.468751 0.056487 +v -0.142474 0.468751 0.054132 +v -0.136982 0.468751 0.046976 +v -0.128039 0.468751 0.048153 +v -0.130078 -0.460912 -0.063644 +v -0.130078 -0.468749 -0.063644 +v -0.139022 -0.468749 -0.062466 +v -0.139022 -0.460912 -0.062467 +v -0.142474 -0.460912 -0.054132 +v -0.136982 -0.460912 -0.046976 +v -0.128039 -0.460912 -0.048153 +v -0.124587 -0.460912 -0.056487 +v -0.124587 -0.468749 -0.056487 +v -0.142474 -0.468749 -0.054132 +v -0.136982 -0.468749 -0.046976 +v -0.128039 -0.468749 -0.048153 +v -0.136982 0.460914 -0.046976 +v -0.136982 0.468751 -0.046976 +v -0.142474 0.468751 -0.054133 +v -0.142474 0.460914 -0.054133 +v -0.139022 0.460914 -0.062467 +v -0.130078 0.460914 -0.063644 +v -0.124587 0.460914 -0.056488 +v -0.128039 0.460914 -0.048153 +v -0.128039 0.468751 -0.048153 +v -0.139022 0.468751 -0.062467 +v -0.130078 0.468751 -0.063644 +v -0.124587 0.468751 -0.056488 +v -0.046976 -0.460912 -0.136982 +v -0.046976 -0.468749 -0.136982 +v -0.054133 -0.468749 -0.142474 +v -0.054133 -0.460912 -0.142474 +v -0.062467 -0.460912 -0.139022 +v -0.063644 -0.460912 -0.130078 +v -0.056488 -0.460912 -0.124587 +v -0.048153 -0.460912 -0.128039 +v -0.048153 -0.468749 -0.128039 +v -0.062467 -0.468749 -0.139022 +v -0.063644 -0.468749 -0.130078 +v -0.056488 -0.468749 -0.124587 +v -0.063644 0.460914 -0.130078 +v -0.063644 0.468751 -0.130078 +v -0.062467 0.468751 -0.139022 +v -0.062467 0.460914 -0.139022 +v -0.054133 0.460914 -0.142474 +v -0.046976 0.460914 -0.136982 +v -0.048153 0.460914 -0.128039 +v -0.056487 0.460914 -0.124587 +v -0.056487 0.468751 -0.124587 +v -0.054133 0.468751 -0.142474 +v -0.046976 0.468751 -0.136982 +v -0.048153 0.468751 -0.128039 +v 0.063644 -0.460912 -0.130078 +v 0.063644 -0.468749 -0.130078 +v 0.062467 -0.468749 -0.139022 +v 0.062467 -0.460912 -0.139022 +v 0.054132 -0.460912 -0.142474 +v 0.046976 -0.460912 -0.136982 +v 0.048153 -0.460912 -0.128039 +v 0.056487 -0.460912 -0.124587 +v 0.056487 -0.468749 -0.124587 +v 0.054132 -0.468749 -0.142474 +v 0.046976 -0.468749 -0.136982 +v 0.048153 -0.468749 -0.128039 +v 0.046976 0.460914 -0.136982 +v 0.046976 0.468751 -0.136982 +v 0.054133 0.468751 -0.142474 +v 0.054133 0.460914 -0.142474 +v 0.062467 0.460914 -0.139022 +v 0.063644 0.460914 -0.130078 +v 0.056487 0.460914 -0.124587 +v 0.048153 0.460914 -0.128039 +v 0.048153 0.468751 -0.128039 +v 0.062467 0.468751 -0.139022 +v 0.063644 0.468751 -0.130078 +v 0.056487 0.468751 -0.124587 +v 0.136982 -0.460912 -0.046976 +v 0.136982 -0.468749 -0.046976 +v 0.142474 -0.468749 -0.054133 +v 0.142474 -0.460912 -0.054133 +v 0.139022 -0.460912 -0.062467 +v 0.130078 -0.460912 -0.063644 +v 0.124587 -0.460912 -0.056488 +v 0.128039 -0.460912 -0.048153 +v 0.128039 -0.468749 -0.048153 +v 0.139022 -0.468749 -0.062467 +v 0.130078 -0.468749 -0.063644 +v 0.124587 -0.468749 -0.056487 +v 0.130078 0.460914 -0.063644 +v 0.130078 0.468751 -0.063644 +v 0.139022 0.468751 -0.062467 +v 0.139022 0.460914 -0.062467 +v 0.142474 0.460914 -0.054133 +v 0.136982 0.460914 -0.046976 +v 0.128039 0.460914 -0.048153 +v 0.124587 0.460914 -0.056487 +v 0.124587 0.468751 -0.056487 +v 0.142474 0.468751 -0.054133 +v 0.136982 0.468751 -0.046976 +v 0.128039 0.468751 -0.048153 +v 0.097094 0.097094 -0.079683 +v 0.079683 0.079683 -0.097094 +v 0.059210 0.059210 -0.110774 +v 0.036461 0.036461 -0.120197 +v 0.012312 0.012311 -0.125000 +v 0.036461 -0.036461 -0.120197 +v -0.012312 0.012311 -0.125000 +v -0.036461 0.036461 -0.120197 +v -0.059210 0.059210 -0.110774 +v -0.079683 0.079683 -0.097094 +v -0.097094 0.097094 -0.079683 +v -0.110774 0.110774 -0.059210 +v -0.120197 0.120197 -0.036461 +v -0.125000 0.125000 -0.012311 +v -0.125001 0.125000 0.012311 +v -0.110774 0.110774 0.059210 +v -0.097094 0.097094 0.079683 +v -0.079683 0.079683 0.097094 +v -0.036461 0.036461 0.120197 +v 0.059210 -0.059210 -0.110774 +v 0.079683 -0.079683 -0.097094 +v 0.097094 -0.097094 -0.079683 +v 0.120197 -0.120197 -0.036461 +v -0.125001 -0.125001 -0.012311 +v 0.120197 -0.120197 0.036461 +v -0.110774 -0.110774 0.059210 +v -0.097094 -0.097094 0.079683 +v -0.079683 -0.079683 0.097094 +v 0.059210 -0.059210 0.110774 +v -0.036461 -0.036461 0.120197 +v -0.059210 -0.059210 -0.110774 +v -0.110774 -0.110774 -0.059210 +v -0.125000 -0.125000 0.012311 +v -0.120197 -0.120197 0.036461 +v -0.059210 -0.059210 0.110774 +v -0.012311 -0.012311 0.125000 +v -0.012311 0.012311 0.125000 +v -0.059210 0.059210 0.110774 +v 0.125000 0.125000 0.012311 +v 0.125001 -0.125000 0.012311 +v 0.120197 0.120197 0.036461 +v 0.097094 0.097094 0.079683 +v 0.059210 0.059210 0.110774 +v 0.036461 0.036461 0.120197 +v 0.012311 -0.012312 0.125000 +v 0.099603 0.500000 -0.121367 +v 0.074012 0.500000 -0.138467 +v 0.045577 0.500000 -0.150245 +v 0.015390 0.500000 -0.156250 +v -0.015389 0.500000 -0.156250 +v -0.045576 0.500000 -0.150245 +v -0.074012 0.500000 -0.138467 +v -0.099603 0.500000 -0.121367 +v -0.121367 0.500000 -0.099603 +v -0.150245 0.500000 -0.045576 +v -0.156250 0.500000 0.015389 +v -0.150245 0.500000 0.045576 +v -0.121367 0.500000 0.099603 +v -0.099603 0.500000 0.121367 +v -0.074012 0.500000 0.138467 +v -0.045576 0.500000 0.150245 +v -0.015389 0.500000 0.156250 +v 0.045576 0.500000 0.150245 +v 0.074012 0.500000 0.138467 +v 0.099603 0.500000 0.121367 +v 0.138467 0.500000 0.074012 +v 0.156250 0.500000 0.015389 +v 0.156250 0.500000 -0.015389 +v 0.150245 0.500000 -0.045576 +v 0.138467 0.500000 -0.074012 +v 0.121367 0.500000 -0.099603 +v -0.138466 0.500000 -0.074012 +v -0.156250 0.500000 -0.015389 +v -0.138467 0.500000 0.074012 +v 0.015389 0.500000 0.156250 +v 0.121367 0.500000 0.099603 +v 0.150245 0.500000 0.045576 +v 0.099603 0.468750 -0.121367 +v 0.121367 0.468750 -0.099603 +v 0.074012 0.468750 -0.138467 +v 0.045577 0.468750 -0.150245 +v 0.015390 0.468750 -0.156250 +v -0.015389 0.468750 -0.156250 +v -0.045576 0.468750 -0.150245 +v -0.074012 0.468750 -0.138467 +v -0.099603 0.468750 -0.121367 +v -0.121367 0.468750 -0.099603 +v -0.138466 0.468750 -0.074012 +v -0.150245 0.468750 -0.045576 +v -0.156250 0.468750 -0.015389 +v -0.156250 0.468750 0.015389 +v -0.150245 0.468750 0.045576 +v -0.138467 0.468750 0.074012 +v -0.121367 0.468750 0.099603 +v -0.099603 0.468750 0.121367 +v -0.074012 0.468750 0.138467 +v -0.045576 0.468750 0.150245 +v -0.015389 0.468750 0.156250 +v 0.015389 0.468750 0.156250 +v 0.074012 0.468750 0.138467 +v 0.045576 0.468750 0.150245 +v 0.099603 0.468750 0.121367 +v 0.121367 0.468750 0.099603 +v 0.138467 0.468750 0.074012 +v 0.150245 0.468750 0.045576 +v 0.156250 0.468750 -0.015389 +v 0.156250 0.468750 0.015389 +v 0.150245 0.468750 -0.045576 +v 0.138467 0.468750 -0.074012 +v -0.138466 -0.468750 -0.074012 +v -0.150245 -0.468750 -0.045576 +v -0.156249 -0.468750 -0.015389 +v -0.121367 -0.468750 -0.099603 +v -0.156249 -0.468750 0.015389 +v -0.074012 -0.468750 -0.138467 +v -0.099603 -0.468750 -0.121367 +v -0.121367 -0.500000 -0.099603 +v -0.138467 -0.500000 -0.074012 +v -0.150245 -0.500000 -0.045576 +v -0.156249 -0.500000 -0.015389 +v -0.156250 -0.500000 0.015389 +v -0.045576 -0.468750 -0.150245 +v -0.099603 -0.500000 -0.121367 +v -0.150245 -0.468750 0.045576 +v -0.150245 -0.500000 0.045576 +v -0.015389 -0.468750 -0.156250 +v -0.045576 -0.500000 -0.150245 +v -0.074012 -0.500000 -0.138467 +v -0.138467 -0.468750 0.074012 +v -0.138467 -0.500000 0.074012 +v 0.015389 -0.468750 -0.156250 +v -0.015389 -0.500000 -0.156250 +v -0.121367 -0.468750 0.099603 +v -0.121367 -0.500000 0.099603 +v 0.045576 -0.468750 -0.150245 +v 0.015389 -0.500000 -0.156250 +v -0.099603 -0.468750 0.121367 +v -0.099603 -0.500000 0.121367 +v 0.074012 -0.468750 -0.138467 +v 0.045576 -0.500000 -0.150245 +v -0.045576 -0.468750 0.150245 +v -0.074012 -0.468750 0.138467 +v -0.074012 -0.500000 0.138467 +v 0.099603 -0.468750 -0.121367 +v 0.074012 -0.500000 -0.138467 +v -0.015389 -0.468750 0.156250 +v -0.045576 -0.500000 0.150245 +v 0.121367 -0.468750 -0.099603 +v 0.099603 -0.500000 -0.121367 +v 0.015389 -0.468750 0.156250 +v -0.015389 -0.500000 0.156250 +v 0.138466 -0.468750 -0.074012 +v 0.121367 -0.500000 -0.099603 +v 0.045576 -0.468750 0.150245 +v 0.015389 -0.500000 0.156250 +v 0.150245 -0.468750 -0.045576 +v 0.138466 -0.500000 -0.074012 +v 0.074012 -0.468750 0.138467 +v 0.045576 -0.500000 0.150245 +v 0.156250 -0.468750 -0.015389 +v 0.150245 -0.500000 -0.045576 +v 0.156250 -0.500000 0.015389 +v 0.099603 -0.468750 0.121367 +v 0.074012 -0.500000 0.138467 +v 0.156250 -0.468750 0.015389 +v 0.156250 -0.500000 -0.015389 +v 0.138467 -0.500000 0.074012 +v 0.150245 -0.500000 0.045576 +v 0.121367 -0.500000 0.099603 +v 0.099603 -0.500000 0.121367 +v 0.150245 -0.468750 0.045576 +v 0.121367 -0.468750 0.099603 +v 0.138467 -0.468750 0.074012 +v 0.095821 -0.460912 0.108578 +v 0.095821 -0.468749 0.108578 +v 0.104534 -0.468749 0.110913 +v 0.104534 -0.460912 0.110913 +v 0.110913 -0.460912 0.104534 +v 0.108578 -0.460912 0.095821 +v 0.099865 -0.460912 0.093486 +v 0.093486 -0.460912 0.099865 +v 0.093486 -0.468749 0.099865 +v 0.110913 -0.468749 0.104534 +v 0.108578 -0.468749 0.095821 +v 0.099865 -0.468749 0.093486 +v 0.108578 0.460914 0.095821 +v 0.108578 0.468751 0.095821 +v 0.110913 0.468751 0.104534 +v 0.110913 0.460914 0.104534 +v 0.104534 0.460914 0.110913 +v 0.095821 0.460914 0.108578 +v 0.093486 0.460914 0.099865 +v 0.099865 0.460914 0.093486 +v 0.099865 0.468751 0.093486 +v 0.104534 0.468751 0.110913 +v 0.095821 0.468751 0.108578 +v 0.093486 0.468751 0.099865 +v -0.009021 -0.460912 0.144532 +v -0.009021 -0.468749 0.144532 +v -0.004510 -0.468749 0.152344 +v -0.004510 -0.460912 0.152344 +v 0.004511 -0.460912 0.152344 +v 0.009021 -0.460912 0.144532 +v 0.004510 -0.460912 0.136720 +v -0.004510 -0.460912 0.136720 +v -0.004510 -0.468749 0.136720 +v 0.004511 -0.468749 0.152344 +v 0.009021 -0.468749 0.144532 +v 0.004510 -0.468749 0.136720 +v 0.009021 0.460914 0.144532 +v 0.009021 0.468751 0.144532 +v 0.004510 0.468751 0.152344 +v 0.004510 0.460914 0.152344 +v -0.004510 0.460914 0.152344 +v -0.009021 0.460914 0.144532 +v -0.004510 0.460914 0.136720 +v 0.004510 0.460914 0.136720 +v 0.004510 0.468751 0.136720 +v -0.004510 0.468751 0.152344 +v -0.009021 0.468751 0.144532 +v -0.004510 0.468751 0.136720 +v -0.108578 -0.460912 0.095821 +v -0.108578 -0.468749 0.095821 +v -0.110913 -0.468749 0.104535 +v -0.110913 -0.460912 0.104534 +v -0.104534 -0.460912 0.110913 +v -0.095821 -0.460912 0.108578 +v -0.093486 -0.460912 0.099865 +v -0.099865 -0.460912 0.093486 +v -0.099865 -0.468749 0.093486 +v -0.104534 -0.468749 0.110913 +v -0.095821 -0.468749 0.108578 +v -0.093486 -0.468749 0.099865 +v -0.095821 0.460914 0.108578 +v -0.095821 0.468751 0.108578 +v -0.104534 0.468751 0.110913 +v -0.104534 0.460914 0.110913 +v -0.110913 0.460914 0.104534 +v -0.108578 0.460914 0.095821 +v -0.099865 0.460914 0.093486 +v -0.093486 0.460914 0.099865 +v -0.093486 0.468751 0.099865 +v -0.110913 0.468751 0.104534 +v -0.108578 0.468751 0.095821 +v -0.099865 0.468751 0.093486 +v -0.144532 -0.460912 -0.009021 +v -0.144532 -0.468749 -0.009021 +v -0.152344 -0.468749 -0.004510 +v -0.152344 -0.460912 -0.004510 +v -0.152344 -0.460912 0.004511 +v -0.144532 -0.460912 0.009021 +v -0.136720 -0.460912 0.004511 +v -0.136720 -0.460912 -0.004510 +v -0.136720 -0.468749 -0.004510 +v -0.152344 -0.468749 0.004511 +v -0.144532 -0.468749 0.009021 +v -0.136720 -0.468749 0.004511 +v -0.144532 0.460914 0.009021 +v -0.144532 0.468751 0.009021 +v -0.152344 0.468751 0.004510 +v -0.152344 0.460914 0.004510 +v -0.152344 0.460914 -0.004511 +v -0.144532 0.460914 -0.009021 +v -0.136720 0.460914 -0.004510 +v -0.136720 0.460914 0.004510 +v -0.136720 0.468751 0.004510 +v -0.152344 0.468751 -0.004511 +v -0.144532 0.468751 -0.009021 +v -0.136720 0.468751 -0.004510 +v -0.095821 -0.460912 -0.108578 +v -0.095821 -0.468749 -0.108578 +v -0.104534 -0.468749 -0.110913 +v -0.104534 -0.460912 -0.110913 +v -0.110913 -0.460912 -0.104534 +v -0.108578 -0.460912 -0.095821 +v -0.099865 -0.460912 -0.093486 +v -0.093486 -0.460912 -0.099865 +v -0.093486 -0.468749 -0.099865 +v -0.110913 -0.468749 -0.104534 +v -0.108578 -0.468749 -0.095821 +v -0.099865 -0.468749 -0.093486 +v -0.108578 0.460914 -0.095821 +v -0.108578 0.468751 -0.095821 +v -0.110913 0.468751 -0.104534 +v -0.110913 0.460914 -0.104534 +v -0.104534 0.460914 -0.110913 +v -0.095821 0.460914 -0.108578 +v -0.093486 0.460914 -0.099865 +v -0.099865 0.460914 -0.093486 +v -0.099865 0.468751 -0.093486 +v -0.104534 0.468751 -0.110913 +v -0.095821 0.468751 -0.108578 +v -0.093486 0.468751 -0.099865 +v 0.009021 -0.460912 -0.144532 +v 0.009021 -0.468749 -0.144532 +v 0.004510 -0.468749 -0.152344 +v 0.004510 -0.460912 -0.152344 +v -0.004510 -0.460912 -0.152344 +v -0.009021 -0.460912 -0.144532 +v -0.004510 -0.460912 -0.136720 +v 0.004510 -0.460912 -0.136720 +v 0.004510 -0.468749 -0.136720 +v -0.004510 -0.468749 -0.152344 +v -0.009021 -0.468749 -0.144532 +v -0.004510 -0.468749 -0.136720 +v -0.009021 0.460914 -0.144532 +v -0.009021 0.468751 -0.144532 +v -0.004510 0.468751 -0.152344 +v -0.004510 0.460914 -0.152344 +v 0.004510 0.460914 -0.152344 +v 0.009021 0.460914 -0.144532 +v 0.004510 0.460914 -0.136720 +v -0.004510 0.460914 -0.136720 +v -0.004510 0.468751 -0.136720 +v 0.004510 0.468751 -0.152344 +v 0.009021 0.468751 -0.144532 +v 0.004510 0.468751 -0.136720 +v 0.108578 -0.460912 -0.095821 +v 0.108578 -0.468749 -0.095821 +v 0.110913 -0.468749 -0.104534 +v 0.110913 -0.460912 -0.104534 +v 0.104534 -0.460912 -0.110913 +v 0.095821 -0.460912 -0.108578 +v 0.093486 -0.460912 -0.099865 +v 0.099865 -0.460912 -0.093486 +v 0.099865 -0.468749 -0.093486 +v 0.104534 -0.468749 -0.110913 +v 0.095821 -0.468749 -0.108578 +v 0.093486 -0.468749 -0.099865 +v 0.095821 0.460914 -0.108578 +v 0.095821 0.468751 -0.108578 +v 0.104534 0.468751 -0.110913 +v 0.104534 0.460914 -0.110913 +v 0.110913 0.460914 -0.104534 +v 0.108578 0.460914 -0.095821 +v 0.099865 0.460914 -0.093486 +v 0.093486 0.460914 -0.099865 +v 0.093486 0.468751 -0.099865 +v 0.110913 0.468751 -0.104534 +v 0.108578 0.468751 -0.095821 +v 0.099865 0.468751 -0.093486 +v 0.144532 -0.460912 0.009021 +v 0.144532 -0.468749 0.009021 +v 0.152344 -0.468749 0.004510 +v 0.152344 -0.460912 0.004510 +v 0.152344 -0.460912 -0.004510 +v 0.144532 -0.460912 -0.009021 +v 0.136720 -0.460912 -0.004510 +v 0.136720 -0.460912 0.004510 +v 0.136720 -0.468749 0.004510 +v 0.152344 -0.468749 -0.004510 +v 0.144532 -0.468749 -0.009021 +v 0.136720 -0.468749 -0.004510 +v 0.144532 0.460914 -0.009021 +v 0.144532 0.468751 -0.009021 +v 0.152344 0.468751 -0.004510 +v 0.152344 0.460914 -0.004510 +v 0.152344 0.460914 0.004510 +v 0.144532 0.460914 0.009021 +v 0.136720 0.460914 0.004510 +v 0.136720 0.460914 -0.004510 +v 0.136720 0.468751 -0.004510 +v 0.152344 0.468751 0.004510 +v 0.144532 0.468751 0.009021 +v 0.136720 0.468751 0.004510 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.4412 0.9276 +vt 0.4630 0.9493 +vt 0.4886 0.9664 +vt 0.5170 0.9782 +vt 0.5472 0.9842 +vt 0.5780 0.9842 +vt 0.6082 0.9782 +vt 0.6366 0.9664 +vt 0.6622 0.9493 +vt 0.6840 0.9276 +vt 0.7011 0.9020 +vt 0.7129 0.8735 +vt 0.7189 0.8434 +vt 0.7189 0.8126 +vt 0.7129 0.7824 +vt 0.7011 0.7539 +vt 0.6840 0.7283 +vt 0.6622 0.7066 +vt 0.6366 0.6895 +vt 0.6082 0.6777 +vt 0.5780 0.6717 +vt 0.5472 0.6717 +vt 0.5170 0.6777 +vt 0.4886 0.6895 +vt 0.4630 0.7066 +vt 0.4412 0.7283 +vt 0.4241 0.7539 +vt 0.4124 0.7824 +vt 0.4063 0.8126 +vt 0.4063 0.8434 +vt 0.4124 0.8735 +vt 0.4241 0.9020 +vt 0.2332 0.6777 +vt 0.2616 0.6895 +vt 0.2872 0.7066 +vt 0.3090 0.7283 +vt 0.3261 0.7539 +vt 0.3379 0.7824 +vt 0.3439 0.8126 +vt 0.3439 0.8434 +vt 0.3379 0.8735 +vt 0.3261 0.9020 +vt 0.3090 0.9276 +vt 0.2872 0.9493 +vt 0.2616 0.9664 +vt 0.2332 0.9782 +vt 0.2030 0.9842 +vt 0.1722 0.9842 +vt 0.1420 0.9782 +vt 0.1136 0.9664 +vt 0.0880 0.9493 +vt 0.0662 0.9276 +vt 0.0491 0.9020 +vt 0.0374 0.8735 +vt 0.0313 0.8434 +vt 0.0313 0.8126 +vt 0.0374 0.7824 +vt 0.0491 0.7539 +vt 0.0662 0.7283 +vt 0.0880 0.7066 +vt 0.1136 0.6895 +vt 0.1420 0.6777 +vt 0.1722 0.6717 +vt 0.2030 0.6717 +vt 0.5780 0.6717 +vt 0.6082 0.6777 +vt 0.6366 0.6895 +vt 0.6622 0.7066 +vt 0.6840 0.7283 +vt 0.7011 0.7539 +vt 0.7129 0.7824 +vt 0.7189 0.8126 +vt 0.7189 0.8434 +vt 0.7129 0.8735 +vt 0.7011 0.9020 +vt 0.6840 0.9276 +vt 0.6622 0.9493 +vt 0.6366 0.9664 +vt 0.6082 0.9782 +vt 0.5780 0.9842 +vt 0.5472 0.9842 +vt 0.5170 0.9782 +vt 0.4886 0.9664 +vt 0.4630 0.9493 +vt 0.4412 0.9276 +vt 0.4241 0.9020 +vt 0.4124 0.8735 +vt 0.4063 0.8434 +vt 0.4063 0.8126 +vt 0.4124 0.7824 +vt 0.4241 0.7539 +vt 0.4412 0.7283 +vt 0.4630 0.7066 +vt 0.4886 0.6895 +vt 0.5170 0.6777 +vt 0.5472 0.6717 +vt 0.1136 0.6895 +vt 0.0880 0.7066 +vt 0.0662 0.7283 +vt 0.0491 0.7539 +vt 0.0374 0.7824 +vt 0.0313 0.8126 +vt 0.0313 0.8434 +vt 0.0374 0.8735 +vt 0.0491 0.9020 +vt 0.0662 0.9276 +vt 0.0880 0.9493 +vt 0.1136 0.9664 +vt 0.1420 0.9782 +vt 0.1722 0.9842 +vt 0.2030 0.9842 +vt 0.2332 0.9782 +vt 0.2616 0.9664 +vt 0.2872 0.9493 +vt 0.3090 0.9276 +vt 0.3261 0.9020 +vt 0.3379 0.8735 +vt 0.3439 0.8434 +vt 0.3439 0.8126 +vt 0.3379 0.7824 +vt 0.3261 0.7539 +vt 0.3090 0.7283 +vt 0.2872 0.7066 +vt 0.2616 0.6895 +vt 0.2332 0.6777 +vt 0.2030 0.6717 +vt 0.1722 0.6717 +vt 0.1420 0.6777 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.4412 0.9276 +vt 0.4630 0.9493 +vt 0.4886 0.9664 +vt 0.5170 0.9782 +vt 0.5472 0.9842 +vt 0.5780 0.9842 +vt 0.6082 0.9782 +vt 0.6366 0.9664 +vt 0.6622 0.9493 +vt 0.6840 0.9276 +vt 0.7011 0.9020 +vt 0.7129 0.8735 +vt 0.7189 0.8434 +vt 0.7189 0.8126 +vt 0.7129 0.7824 +vt 0.7011 0.7539 +vt 0.6840 0.7283 +vt 0.6622 0.7066 +vt 0.6366 0.6895 +vt 0.6082 0.6777 +vt 0.5780 0.6717 +vt 0.5472 0.6717 +vt 0.5170 0.6777 +vt 0.4886 0.6895 +vt 0.4630 0.7066 +vt 0.4412 0.7283 +vt 0.4241 0.7539 +vt 0.4124 0.7824 +vt 0.4063 0.8126 +vt 0.4063 0.8434 +vt 0.4124 0.8735 +vt 0.4241 0.9020 +vt 0.2332 0.6777 +vt 0.2616 0.6895 +vt 0.2872 0.7066 +vt 0.3090 0.7283 +vt 0.3261 0.7539 +vt 0.3379 0.7824 +vt 0.3439 0.8126 +vt 0.3439 0.8434 +vt 0.3379 0.8735 +vt 0.3261 0.9020 +vt 0.3090 0.9276 +vt 0.2872 0.9493 +vt 0.2616 0.9664 +vt 0.2332 0.9782 +vt 0.2030 0.9842 +vt 0.1722 0.9842 +vt 0.1420 0.9782 +vt 0.1136 0.9664 +vt 0.0880 0.9493 +vt 0.0662 0.9276 +vt 0.0491 0.9020 +vt 0.0374 0.8735 +vt 0.0313 0.8434 +vt 0.0313 0.8126 +vt 0.0374 0.7824 +vt 0.0491 0.7539 +vt 0.0662 0.7283 +vt 0.0880 0.7066 +vt 0.1136 0.6895 +vt 0.1420 0.6777 +vt 0.1722 0.6717 +vt 0.2030 0.6717 +vt 0.5780 0.6717 +vt 0.6082 0.6777 +vt 0.6366 0.6895 +vt 0.6622 0.7066 +vt 0.6840 0.7283 +vt 0.7011 0.7539 +vt 0.7129 0.7824 +vt 0.7189 0.8126 +vt 0.7189 0.8434 +vt 0.7129 0.8735 +vt 0.7011 0.9020 +vt 0.6840 0.9276 +vt 0.6622 0.9493 +vt 0.6366 0.9664 +vt 0.6082 0.9782 +vt 0.5780 0.9842 +vt 0.5472 0.9842 +vt 0.5170 0.9782 +vt 0.4886 0.9664 +vt 0.4630 0.9493 +vt 0.4412 0.9276 +vt 0.4241 0.9020 +vt 0.4124 0.8735 +vt 0.4063 0.8434 +vt 0.4063 0.8126 +vt 0.4124 0.7824 +vt 0.4241 0.7539 +vt 0.4412 0.7283 +vt 0.4630 0.7066 +vt 0.4886 0.6895 +vt 0.5170 0.6777 +vt 0.5472 0.6717 +vt 0.1136 0.6895 +vt 0.0880 0.7066 +vt 0.0662 0.7283 +vt 0.0491 0.7539 +vt 0.0374 0.7824 +vt 0.0313 0.8126 +vt 0.0313 0.8434 +vt 0.0374 0.8735 +vt 0.0491 0.9020 +vt 0.0662 0.9276 +vt 0.0880 0.9493 +vt 0.1136 0.9664 +vt 0.1420 0.9782 +vt 0.1722 0.9842 +vt 0.2030 0.9842 +vt 0.2332 0.9782 +vt 0.2616 0.9664 +vt 0.2872 0.9493 +vt 0.3090 0.9276 +vt 0.3261 0.9020 +vt 0.3379 0.8735 +vt 0.3439 0.8434 +vt 0.3439 0.8126 +vt 0.3379 0.7824 +vt 0.3261 0.7539 +vt 0.3090 0.7283 +vt 0.2872 0.7066 +vt 0.2616 0.6895 +vt 0.2332 0.6777 +vt 0.2030 0.6717 +vt 0.1722 0.6717 +vt 0.1420 0.6777 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.4688 0.5898 +vt 0.4688 0.5664 +vt 0.5000 0.5664 +vt 0.5000 0.5898 +vt 0.4375 0.5898 +vt 0.4375 0.5664 +vt 0.4062 0.5898 +vt 0.4062 0.5664 +vt 0.3750 0.5898 +vt 0.3750 0.5664 +vt 0.3438 0.5898 +vt 0.3438 0.5664 +vt 0.3125 0.5898 +vt 0.3125 0.5664 +vt 0.2812 0.5898 +vt 0.2812 0.5664 +vt 0.2500 0.5898 +vt 0.2500 0.5664 +vt 0.2188 0.5898 +vt 0.2188 0.5664 +vt 0.1875 0.5898 +vt 0.1875 0.5664 +vt 0.1562 0.5898 +vt 0.1562 0.5664 +vt 0.1250 0.5898 +vt 0.1250 0.5664 +vt 0.0938 0.5898 +vt 0.0938 0.5664 +vt 0.0625 0.5898 +vt 0.0625 0.5664 +vt 0.0937 0.5664 +vt 0.0312 0.5898 +vt 0.0312 0.5664 +vt 0.0000 0.5898 +vt 0.0000 0.5664 +vt 0.9688 0.5898 +vt 0.9688 0.5664 +vt 1.0000 0.5664 +vt 1.0000 0.5898 +vt 0.9375 0.5898 +vt 0.9375 0.5664 +vt 0.9062 0.5898 +vt 0.9062 0.5664 +vt 0.8750 0.5898 +vt 0.8750 0.5664 +vt 0.8125 0.5898 +vt 0.8125 0.5664 +vt 0.8438 0.5664 +vt 0.8438 0.5898 +vt 0.7812 0.5898 +vt 0.7812 0.5664 +vt 0.7500 0.5898 +vt 0.7500 0.5664 +vt 0.7188 0.5898 +vt 0.7188 0.5664 +vt 0.6875 0.5898 +vt 0.6875 0.5664 +vt 0.6250 0.5898 +vt 0.6250 0.5664 +vt 0.6562 0.5664 +vt 0.6562 0.5898 +vt 0.5938 0.5898 +vt 0.5938 0.5664 +vt 0.5625 0.5898 +vt 0.5625 0.5664 +vt 0.6340 0.5124 +vt 0.6340 0.4980 +vt 0.6649 0.4980 +vt 0.6649 0.5123 +vt 0.6959 0.5124 +vt 0.6959 0.4980 +vt 0.7268 0.5123 +vt 0.7268 0.4980 +vt 0.7577 0.5123 +vt 0.7578 0.4980 +vt 0.7886 0.5124 +vt 0.7887 0.4980 +vt 0.8196 0.5125 +vt 0.8196 0.4980 +vt 0.8506 0.4981 +vt 0.8505 0.5124 +vt 0.8814 0.5125 +vt 0.8815 0.4981 +vt 0.9123 0.5126 +vt 0.9125 0.4982 +vt 0.9434 0.5128 +vt 0.9436 0.4983 +vt 0.9747 0.4983 +vt 0.9745 0.5128 +vt 1.0057 0.4984 +vt 1.0055 0.5128 +vt 1.0366 0.5128 +vt 1.0367 0.4984 +vt 1.0677 0.4984 +vt 1.0677 0.5129 +vt 1.0988 0.4984 +vt 1.0988 0.5128 +vt 1.1301 0.5129 +vt 1.1297 0.4983 +vt 1.1607 0.4982 +vt 1.1617 0.5126 +vt 1.1934 0.5121 +vt 1.1912 0.4978 +vt 0.1983 0.5120 +vt 0.2004 0.4977 +vt 0.2310 0.4981 +vt 0.2300 0.5126 +vt 0.2617 0.5129 +vt 0.2621 0.4982 +vt 0.2933 0.4983 +vt 0.2932 0.5129 +vt 0.3244 0.4982 +vt 0.3245 0.5127 +vt 0.3553 0.4982 +vt 0.3554 0.5126 +vt 0.3863 0.4982 +vt 0.3864 0.5126 +vt 0.4172 0.4981 +vt 0.4173 0.5125 +vt 0.4481 0.4981 +vt 0.4482 0.5124 +vt 0.5101 0.5125 +vt 0.4791 0.5124 +vt 0.4790 0.4981 +vt 0.5100 0.4980 +vt 0.5720 0.5124 +vt 0.5410 0.5124 +vt 0.5410 0.4980 +vt 0.5719 0.4980 +vt 0.6030 0.5125 +vt 0.6030 0.4980 +vt 0.9145 0.2850 +vt 0.9457 0.2723 +vt 1.0081 0.2851 +vt 0.9769 0.2723 +vt 0.8833 0.2970 +vt 1.0393 0.2971 +vt 0.8521 0.3078 +vt 1.0706 0.3080 +vt 0.6027 0.3168 +vt 0.5715 0.3076 +vt 0.9459 0.0196 +vt 0.9458 0.0339 +vt 0.9151 0.0339 +vt 0.9151 0.0196 +vt 0.9767 0.0195 +vt 0.9767 0.0339 +vt 1.0076 0.0195 +vt 1.0075 0.0339 +vt 0.3215 0.3169 +vt 0.3528 0.3076 +vt 0.8228 0.0338 +vt 0.8212 0.2146 +vt 0.7902 0.2074 +vt 0.7920 0.0337 +vt 0.8843 0.0339 +vt 0.8844 0.0196 +vt 1.0385 0.0195 +vt 1.0383 0.0339 +vt 1.1328 0.2072 +vt 1.1017 0.2145 +vt 1.0999 0.0340 +vt 1.1306 0.0342 +vt 0.7591 0.2024 +vt 0.7611 0.0336 +vt 0.8537 0.0195 +vt 0.8536 0.0338 +vt 1.0694 0.0196 +vt 1.0691 0.0339 +vt 1.1640 0.2021 +vt 1.1610 0.0344 +vt 0.7280 0.1998 +vt 0.7302 0.0335 +vt 0.8229 0.0194 +vt 0.6875 0.5898 +vt 0.6875 0.5664 +vt 0.7188 0.5664 +vt 0.7188 0.5898 +vt 0.7812 0.5898 +vt 0.7812 0.5664 +vt 0.8125 0.5664 +vt 0.8125 0.5898 +vt 1.1004 0.0197 +vt 0.6562 0.5898 +vt 0.6562 0.5664 +vt 0.7921 0.0194 +vt 0.8438 0.5664 +vt 0.8438 0.5898 +vt 1.1314 0.0198 +vt 0.6250 0.5898 +vt 0.6250 0.5664 +vt 0.2280 0.1990 +vt 0.1969 0.1988 +vt 0.2015 0.0321 +vt 0.2327 0.0318 +vt 0.6968 0.1998 +vt 0.6656 0.2023 +vt 0.6685 0.0333 +vt 0.6994 0.0334 +vt 0.7613 0.0193 +vt 0.5938 0.5898 +vt 0.5938 0.5664 +vt 1.1624 0.0202 +vt 0.5312 0.5898 +vt 0.5312 0.5664 +vt 0.5625 0.5664 +vt 0.5625 0.5898 +vt 0.7304 0.0192 +vt 0.8750 0.5664 +vt 0.8750 0.5898 +vt 1.1934 0.0209 +vt 1.1908 0.0349 +vt 0.5000 0.5898 +vt 0.5000 0.5664 +vt 0.2906 0.2066 +vt 0.2593 0.2016 +vt 0.2642 0.0317 +vt 0.2956 0.0317 +vt 0.6344 0.2072 +vt 0.6031 0.2144 +vt 0.6066 0.0331 +vt 0.6375 0.0332 +vt 0.6995 0.0191 +vt 0.9062 0.5664 +vt 0.9062 0.5898 +vt 0.2320 0.0171 +vt 0.1997 0.0175 +vt 0.5312 0.5664 +vt 0.5312 0.5898 +vt 0.4688 0.5898 +vt 0.4688 0.5664 +vt 0.3218 0.2139 +vt 0.3268 0.0318 +vt 1.1018 0.3172 +vt 0.6686 0.0189 +vt 0.9375 0.5664 +vt 0.9375 0.5898 +vt 0.2641 0.0170 +vt 0.4375 0.5898 +vt 0.4375 0.5664 +vt 0.6377 0.0188 +vt 0.9688 0.5664 +vt 0.9688 0.5898 +vt 0.2958 0.0171 +vt 0.4062 0.5898 +vt 0.4062 0.5664 +vt 0.6068 0.0187 +vt 0.0000 0.5898 +vt 0.0000 0.5664 +vt 0.0312 0.5664 +vt 0.0312 0.5898 +vt 0.3271 0.0173 +vt 1.0000 0.5664 +vt 1.0000 0.5898 +vt 0.4154 0.2848 +vt 0.4467 0.2720 +vt 0.4780 0.2720 +vt 0.5092 0.2848 +vt 0.5759 0.0186 +vt 0.5757 0.0330 +vt 0.0625 0.5664 +vt 0.0625 0.5898 +vt 0.7500 0.5664 +vt 0.7500 0.5898 +vt 0.3583 0.0174 +vt 0.3580 0.0320 +vt 0.3750 0.5898 +vt 0.3750 0.5664 +vt 0.3842 0.2968 +vt 0.4780 0.2590 +vt 0.4827 0.0325 +vt 0.5137 0.0327 +vt 0.5093 0.2463 +vt 0.5450 0.0184 +vt 0.5447 0.0328 +vt 0.0937 0.5664 +vt 0.0938 0.5898 +vt 0.3895 0.0175 +vt 0.3892 0.0320 +vt 0.3438 0.5898 +vt 0.3438 0.5664 +vt 0.5140 0.0183 +vt 0.0938 0.5664 +vt 0.1250 0.5664 +vt 0.1250 0.5898 +vt 0.4208 0.0177 +vt 0.4204 0.0322 +vt 0.3125 0.5898 +vt 0.3125 0.5664 +vt 0.4830 0.0181 +vt 0.1562 0.5664 +vt 0.1562 0.5898 +vt 0.4519 0.0179 +vt 0.4516 0.0324 +vt 0.2812 0.5898 +vt 0.2812 0.5664 +vt 0.2500 0.5898 +vt 0.2500 0.5664 +vt 0.1875 0.5664 +vt 0.1875 0.5898 +vt 0.2188 0.5898 +vt 0.2188 0.5664 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.9146 0.2466 +vt 0.9458 0.2593 +vt 1.0394 0.2346 +vt 1.0082 0.2466 +vt 1.0706 0.2237 +vt 0.8835 0.2346 +vt 1.0706 0.2237 +vt 1.0691 0.0339 +vt 1.0999 0.0340 +vt 1.1017 0.2145 +vt 0.4790 0.4981 +vt 0.4481 0.4981 +vt 0.4467 0.2720 +vt 0.4780 0.2720 +vt 0.9770 0.2593 +vt 0.5719 0.2235 +vt 0.3530 0.2232 +vt 0.4156 0.2462 +vt 0.3843 0.2341 +vt 0.5403 0.2968 +vt 0.5406 0.2343 +vt 0.4468 0.2590 +vt 0.8524 0.2238 +vt 0.8209 0.3169 +vt 0.6339 0.3241 +vt 0.6650 0.3290 +vt 0.6962 0.3316 +vt 0.7273 0.3316 +vt 0.7585 0.3291 +vt 0.7897 0.3241 +vt 1.1329 0.3245 +vt 1.1642 0.3296 +vt 1.1955 0.3322 +vt 0.1964 0.3319 +vt 0.2277 0.3318 +vt 0.2591 0.3292 +vt 0.2903 0.3241 +vt 1.1952 0.1995 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.4468 0.2590 +vt 0.9769 0.2723 +vt 0.4688 0.5898 +vt 0.4688 0.5664 +vt 0.5000 0.5664 +vt 0.5000 0.5898 +vt 0.4375 0.5898 +vt 0.4375 0.5664 +vt 0.4062 0.5898 +vt 0.4062 0.5664 +vt 0.3750 0.5898 +vt 0.3750 0.5664 +vt 0.3438 0.5898 +vt 0.3438 0.5664 +vt 0.3125 0.5898 +vt 0.3125 0.5664 +vt 0.2812 0.5898 +vt 0.2812 0.5664 +vt 0.2500 0.5898 +vt 0.2500 0.5664 +vt 0.2188 0.5898 +vt 0.2188 0.5664 +vt 0.1875 0.5898 +vt 0.1875 0.5664 +vt 0.1562 0.5898 +vt 0.1562 0.5664 +vt 0.1250 0.5898 +vt 0.1250 0.5664 +vt 0.0938 0.5898 +vt 0.0938 0.5664 +vt 0.0625 0.5898 +vt 0.0625 0.5664 +vt 0.0937 0.5664 +vt 0.0312 0.5898 +vt 0.0312 0.5664 +vt 0.0000 0.5898 +vt 0.0000 0.5664 +vt 0.9688 0.5898 +vt 0.9688 0.5664 +vt 1.0000 0.5664 +vt 1.0000 0.5898 +vt 0.9375 0.5898 +vt 0.9375 0.5664 +vt 0.9062 0.5898 +vt 0.9062 0.5664 +vt 0.8750 0.5898 +vt 0.8750 0.5664 +vt 0.8125 0.5898 +vt 0.8125 0.5664 +vt 0.8438 0.5664 +vt 0.8438 0.5898 +vt 0.7812 0.5898 +vt 0.7812 0.5664 +vt 0.7500 0.5898 +vt 0.7500 0.5664 +vt 0.7188 0.5898 +vt 0.7188 0.5664 +vt 0.6875 0.5898 +vt 0.6875 0.5664 +vt 0.6250 0.5898 +vt 0.6250 0.5664 +vt 0.6562 0.5664 +vt 0.6562 0.5898 +vt 0.5938 0.5898 +vt 0.5938 0.5664 +vt 0.5625 0.5898 +vt 0.5625 0.5664 +vt 0.6340 0.5124 +vt 0.6340 0.4980 +vt 0.6649 0.4980 +vt 0.6649 0.5123 +vt 0.6959 0.5124 +vt 0.6959 0.4980 +vt 0.7268 0.5123 +vt 0.7268 0.4980 +vt 0.7577 0.5123 +vt 0.7578 0.4980 +vt 0.7886 0.5124 +vt 0.7887 0.4980 +vt 0.8196 0.5125 +vt 0.8196 0.4980 +vt 0.8506 0.4981 +vt 0.8505 0.5124 +vt 0.8814 0.5125 +vt 0.8815 0.4981 +vt 0.9123 0.5126 +vt 0.9125 0.4982 +vt 0.9434 0.5128 +vt 0.9436 0.4983 +vt 0.9747 0.4983 +vt 0.9745 0.5128 +vt 1.0057 0.4984 +vt 1.0055 0.5128 +vt 1.0366 0.5128 +vt 1.0367 0.4984 +vt 1.0677 0.4984 +vt 1.0677 0.5129 +vt 1.0988 0.4984 +vt 1.0988 0.5128 +vt 1.1301 0.5129 +vt 1.1297 0.4983 +vt 1.1607 0.4982 +vt 1.1617 0.5126 +vt 1.1934 0.5121 +vt 1.1912 0.4978 +vt 0.1983 0.5120 +vt 0.2004 0.4977 +vt 0.2310 0.4981 +vt 0.2300 0.5126 +vt 0.2617 0.5129 +vt 0.2621 0.4982 +vt 0.2933 0.4983 +vt 0.2932 0.5129 +vt 0.3244 0.4982 +vt 0.3245 0.5127 +vt 0.3553 0.4982 +vt 0.3554 0.5126 +vt 0.3863 0.4982 +vt 0.3864 0.5126 +vt 0.4172 0.4981 +vt 0.4173 0.5125 +vt 0.4482 0.5124 +vt 0.5101 0.5125 +vt 0.4791 0.5124 +vt 0.5100 0.4980 +vt 0.5720 0.5124 +vt 0.5410 0.5124 +vt 0.5410 0.4980 +vt 0.5719 0.4980 +vt 0.6030 0.5125 +vt 0.6030 0.4980 +vt 0.9457 0.2723 +vt 0.9145 0.2850 +vt 1.0081 0.2851 +vt 0.8833 0.2970 +vt 1.0393 0.2971 +vt 0.8521 0.3078 +vt 1.0706 0.3080 +vt 0.8209 0.3169 +vt 0.9459 0.0196 +vt 0.9458 0.0339 +vt 0.9151 0.0339 +vt 0.9151 0.0196 +vt 0.9767 0.0195 +vt 0.9767 0.0339 +vt 1.0076 0.0195 +vt 1.0075 0.0339 +vt 0.5715 0.3076 +vt 0.6027 0.3168 +vt 0.8228 0.0338 +vt 0.8212 0.2146 +vt 0.7902 0.2074 +vt 0.7920 0.0337 +vt 0.8843 0.0339 +vt 0.8844 0.0196 +vt 1.0385 0.0195 +vt 1.0383 0.0339 +vt 1.1328 0.2072 +vt 1.1306 0.0342 +vt 0.7591 0.2024 +vt 0.7611 0.0336 +vt 0.8537 0.0195 +vt 0.8536 0.0338 +vt 1.0694 0.0196 +vt 1.1640 0.2021 +vt 1.1610 0.0344 +vt 0.7280 0.1998 +vt 0.7302 0.0335 +vt 0.8229 0.0194 +vt 0.6875 0.5898 +vt 0.6875 0.5664 +vt 0.7188 0.5664 +vt 0.7188 0.5898 +vt 0.7812 0.5898 +vt 0.7812 0.5664 +vt 0.8125 0.5664 +vt 0.8125 0.5898 +vt 1.1004 0.0197 +vt 0.6562 0.5898 +vt 0.6562 0.5664 +vt 0.7921 0.0194 +vt 0.8438 0.5664 +vt 0.8438 0.5898 +vt 1.1314 0.0198 +vt 0.6250 0.5898 +vt 0.6250 0.5664 +vt 0.2280 0.1990 +vt 0.1969 0.1988 +vt 0.2015 0.0321 +vt 0.2327 0.0318 +vt 0.6968 0.1998 +vt 0.6656 0.2023 +vt 0.6685 0.0333 +vt 0.6994 0.0334 +vt 0.7613 0.0193 +vt 0.5938 0.5898 +vt 0.5938 0.5664 +vt 1.1624 0.0202 +vt 0.5312 0.5898 +vt 0.5312 0.5664 +vt 0.5625 0.5664 +vt 0.5625 0.5898 +vt 0.7304 0.0192 +vt 0.8750 0.5664 +vt 0.8750 0.5898 +vt 1.1934 0.0209 +vt 1.1908 0.0349 +vt 0.5000 0.5898 +vt 0.5000 0.5664 +vt 0.2906 0.2066 +vt 0.2593 0.2016 +vt 0.2642 0.0317 +vt 0.2956 0.0317 +vt 0.6344 0.2072 +vt 0.6031 0.2144 +vt 0.6066 0.0331 +vt 0.6375 0.0332 +vt 0.6995 0.0191 +vt 0.9062 0.5664 +vt 0.9062 0.5898 +vt 0.2320 0.0171 +vt 0.1997 0.0175 +vt 0.5312 0.5664 +vt 0.5312 0.5898 +vt 0.4688 0.5898 +vt 0.4688 0.5664 +vt 0.3218 0.2139 +vt 0.3268 0.0318 +vt 0.3215 0.3169 +vt 0.3528 0.3076 +vt 0.6686 0.0189 +vt 0.9375 0.5664 +vt 0.9375 0.5898 +vt 0.2641 0.0170 +vt 0.4375 0.5898 +vt 0.4375 0.5664 +vt 0.6377 0.0188 +vt 0.9688 0.5664 +vt 0.9688 0.5898 +vt 0.2958 0.0171 +vt 0.4062 0.5898 +vt 0.4062 0.5664 +vt 0.6068 0.0187 +vt 0.0000 0.5898 +vt 0.0000 0.5664 +vt 0.0312 0.5664 +vt 0.0312 0.5898 +vt 0.3271 0.0173 +vt 1.0000 0.5664 +vt 1.0000 0.5898 +vt 0.4154 0.2848 +vt 0.5092 0.2848 +vt 0.5759 0.0186 +vt 0.5757 0.0330 +vt 0.0625 0.5664 +vt 0.0625 0.5898 +vt 0.7500 0.5664 +vt 0.7500 0.5898 +vt 0.3583 0.0174 +vt 0.3580 0.0320 +vt 0.3750 0.5898 +vt 0.3750 0.5664 +vt 0.3842 0.2968 +vt 0.4780 0.2590 +vt 0.4827 0.0325 +vt 0.5137 0.0327 +vt 0.5093 0.2463 +vt 0.5450 0.0184 +vt 0.5447 0.0328 +vt 0.0937 0.5664 +vt 0.0938 0.5898 +vt 0.3895 0.0175 +vt 0.3892 0.0320 +vt 0.3438 0.5898 +vt 0.3438 0.5664 +vt 0.5140 0.0183 +vt 0.0938 0.5664 +vt 0.1250 0.5664 +vt 0.1250 0.5898 +vt 0.4208 0.0177 +vt 0.4204 0.0322 +vt 0.3125 0.5898 +vt 0.3125 0.5664 +vt 0.4830 0.0181 +vt 0.1562 0.5664 +vt 0.1562 0.5898 +vt 0.4519 0.0179 +vt 0.4516 0.0324 +vt 0.2812 0.5898 +vt 0.2812 0.5664 +vt 0.2500 0.5898 +vt 0.2500 0.5664 +vt 0.1875 0.5664 +vt 0.1875 0.5898 +vt 0.2188 0.5898 +vt 0.2188 0.5664 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.9146 0.2466 +vt 0.9458 0.2593 +vt 1.0394 0.2346 +vt 1.0082 0.2466 +vt 0.8835 0.2346 +vt 1.1018 0.3172 +vt 0.9770 0.2593 +vt 0.5719 0.2235 +vt 0.3530 0.2232 +vt 0.4156 0.2462 +vt 0.3843 0.2341 +vt 0.5403 0.2968 +vt 0.5406 0.2343 +vt 0.8524 0.2238 +vt 0.6339 0.3241 +vt 0.6650 0.3290 +vt 0.6962 0.3316 +vt 0.7273 0.3316 +vt 0.7585 0.3291 +vt 0.7897 0.3241 +vt 1.1329 0.3245 +vt 1.1642 0.3296 +vt 1.1955 0.3322 +vt 0.1964 0.3319 +vt 0.2277 0.3318 +vt 0.2591 0.3292 +vt 0.2903 0.3241 +vt 1.1952 0.1995 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vn -1.0000 -0.0000 0.0000 +vn 1.0000 -0.0000 0.0000 +vn 0.0000 1.0000 0.0000 +vn 0.0000 -1.0000 -0.0000 +vn 0.6857 0.2113 -0.6965 +vn -0.6857 0.2113 -0.6965 +vn -0.6857 0.3431 -0.6419 +vn 0.6857 0.3431 -0.6419 +vn 0.6857 0.0713 -0.7244 +vn -0.6857 0.0713 -0.7244 +vn 0.6857 -0.0713 -0.7244 +vn -0.6857 -0.0713 -0.7244 +vn 0.6857 -0.2113 -0.6965 +vn -0.6857 -0.2113 -0.6965 +vn 0.6857 -0.3431 -0.6419 +vn -0.6857 -0.3431 -0.6419 +vn 0.6857 -0.4617 -0.5626 +vn -0.6857 -0.4617 -0.5626 +vn 0.6857 -0.5626 -0.4617 +vn -0.6857 -0.5626 -0.4617 +vn 0.6857 -0.6419 -0.3431 +vn -0.6857 -0.6419 -0.3431 +vn 0.6857 -0.6965 -0.2113 +vn -0.6857 -0.6965 -0.2113 +vn 0.6857 -0.7244 -0.0713 +vn -0.6857 -0.7244 -0.0713 +vn 0.6857 -0.7244 0.0713 +vn -0.6857 -0.7244 0.0713 +vn 0.6857 -0.6965 0.2113 +vn -0.6857 -0.6965 0.2113 +vn 0.6857 -0.6419 0.3431 +vn -0.6857 -0.6419 0.3431 +vn 0.6857 -0.5626 0.4617 +vn -0.6857 -0.5626 0.4617 +vn 0.6857 -0.4617 0.5626 +vn -0.6857 -0.4617 0.5626 +vn 0.6857 -0.3431 0.6419 +vn -0.6857 -0.3431 0.6419 +vn 0.6857 -0.2113 0.6965 +vn -0.6857 -0.2113 0.6965 +vn 0.6857 -0.0713 0.7244 +vn -0.6857 -0.0713 0.7244 +vn 0.6857 0.0713 0.7244 +vn -0.6857 0.0713 0.7244 +vn 0.6857 0.2113 0.6965 +vn -0.6857 0.2113 0.6965 +vn 0.6857 0.4617 0.5626 +vn -0.6857 0.4617 0.5626 +vn -0.6857 0.3431 0.6419 +vn 0.6857 0.3431 0.6419 +vn 0.6857 0.5626 0.4617 +vn -0.6857 0.5626 0.4617 +vn 0.6857 0.6419 0.3431 +vn -0.6857 0.6419 0.3431 +vn 0.6857 0.6965 0.2113 +vn -0.6857 0.6965 0.2113 +vn 0.6857 0.7244 0.0713 +vn -0.6857 0.7244 0.0713 +vn 0.6857 0.6965 -0.2113 +vn -0.6857 0.6965 -0.2113 +vn -0.6857 0.7244 -0.0713 +vn 0.6857 0.7244 -0.0713 +vn 0.6857 0.6419 -0.3431 +vn -0.6857 0.6419 -0.3431 +vn 0.6857 0.5626 -0.4617 +vn -0.6857 0.5626 -0.4617 +vn 0.2147 0.8614 0.4604 +vn 0.1087 0.8767 0.4686 +vn 0.1087 0.9513 0.2886 +vn 0.2147 0.9346 0.2835 +vn 0.2147 0.9720 0.0957 +vn 0.1087 0.9893 0.0974 +vn 0.2147 0.9720 -0.0957 +vn 0.1087 0.9893 -0.0974 +vn 0.2147 0.9346 -0.2835 +vn 0.1087 0.9513 -0.2886 +vn 0.2147 0.8614 -0.4604 +vn 0.1087 0.8767 -0.4686 +vn 0.2147 0.7550 -0.6196 +vn 0.1087 0.7684 -0.6306 +vn 0.1087 0.6306 -0.7684 +vn 0.2147 0.6196 -0.7550 +vn 0.2147 0.4604 -0.8614 +vn 0.1087 0.4686 -0.8767 +vn 0.2147 0.2835 -0.9346 +vn 0.1087 0.2886 -0.9513 +vn 0.2147 0.0957 -0.9720 +vn 0.1087 0.0974 -0.9893 +vn 0.1087 -0.0974 -0.9893 +vn 0.2147 -0.0957 -0.9720 +vn 0.1087 -0.2886 -0.9513 +vn 0.2147 -0.2835 -0.9346 +vn 0.2147 -0.4604 -0.8614 +vn 0.1087 -0.4686 -0.8767 +vn 0.1087 -0.6306 -0.7684 +vn 0.2147 -0.6196 -0.7550 +vn 0.1087 -0.7684 -0.6306 +vn 0.2147 -0.7550 -0.6196 +vn 0.2147 -0.8614 -0.4604 +vn 0.1087 -0.8767 -0.4686 +vn 0.1087 -0.9513 -0.2886 +vn 0.2147 -0.9346 -0.2835 +vn 0.2147 -0.9720 -0.0957 +vn 0.1087 -0.9893 -0.0974 +vn 0.1087 -0.9893 0.0974 +vn 0.2147 -0.9720 0.0957 +vn 0.2147 -0.9346 0.2835 +vn 0.1087 -0.9513 0.2886 +vn 0.1087 -0.8767 0.4686 +vn 0.2147 -0.8614 0.4604 +vn 0.1087 -0.7684 0.6306 +vn 0.2147 -0.7550 0.6196 +vn 0.1087 -0.6306 0.7684 +vn 0.2147 -0.6196 0.7550 +vn 0.1087 -0.4686 0.8767 +vn 0.2147 -0.4604 0.8614 +vn 0.1087 -0.2886 0.9513 +vn 0.2147 -0.2835 0.9346 +vn 0.1087 -0.0974 0.9893 +vn 0.2147 -0.0957 0.9720 +vn 0.2147 0.2835 0.9346 +vn 0.2147 0.0957 0.9720 +vn 0.1087 0.0974 0.9893 +vn 0.1087 0.2886 0.9513 +vn 0.2147 0.6196 0.7550 +vn 0.2147 0.4604 0.8614 +vn 0.1087 0.4686 0.8767 +vn 0.1087 0.6306 0.7684 +vn 0.2147 0.7550 0.6196 +vn 0.1087 0.7684 0.6306 +vn -0.1243 0.1243 -0.9844 +vn -0.0247 0.0247 -0.9994 +vn -0.1243 -0.1243 -0.9844 +vn -0.0247 -0.0247 -0.9994 +vn -0.2267 0.2267 -0.9472 +vn -0.2267 -0.2267 -0.9472 +vn -0.3333 0.3333 -0.8819 +vn -0.3333 -0.3333 -0.8819 +vn -0.4431 0.4431 0.7793 +vn -0.3333 0.3333 0.8819 +vn -0.2147 0.0957 -0.9720 +vn -0.1087 0.0974 -0.9893 +vn -0.1087 0.2886 -0.9513 +vn -0.2147 0.2835 -0.9346 +vn -0.2147 -0.0957 -0.9720 +vn -0.1087 -0.0974 -0.9893 +vn -0.2147 -0.2835 -0.9346 +vn -0.1087 -0.2886 -0.9513 +vn -0.4431 -0.4431 0.7793 +vn -0.3333 -0.3333 0.8819 +vn -0.1087 0.7684 -0.6306 +vn 0.4431 0.4431 -0.7793 +vn 0.5510 0.5510 -0.6267 +vn -0.1087 0.8767 -0.4686 +vn -0.1087 0.4686 -0.8767 +vn -0.2147 0.4604 -0.8614 +vn -0.2147 -0.4604 -0.8614 +vn -0.1087 -0.4686 -0.8767 +vn 0.5510 -0.5510 -0.6267 +vn 0.4431 -0.4431 -0.7793 +vn -0.1087 -0.7684 -0.6306 +vn -0.1087 -0.8767 -0.4686 +vn 0.6437 0.6437 -0.4139 +vn -0.1087 0.9513 -0.2886 +vn -0.2147 0.6196 -0.7550 +vn -0.1087 0.6306 -0.7684 +vn -0.2147 -0.6196 -0.7550 +vn -0.1087 -0.6306 -0.7684 +vn 0.6437 -0.6437 -0.4139 +vn -0.1087 -0.9513 -0.2886 +vn 0.6995 0.6995 -0.1458 +vn -0.1087 0.9893 -0.0974 +vn -0.2147 0.7550 -0.6196 +vn -0.2147 -0.7550 -0.6196 +vn -0.2147 0.8614 -0.4604 +vn -0.2147 -0.8614 -0.4604 +vn 0.6995 -0.6995 0.1458 +vn 0.6995 -0.6995 -0.1458 +vn -0.1087 -0.9893 -0.0974 +vn -0.1087 -0.9893 0.0974 +vn 0.6995 0.6995 0.1458 +vn 0.6437 0.6437 0.4139 +vn -0.1087 0.9513 0.2886 +vn -0.1087 0.9893 0.0974 +vn -0.2147 0.9346 -0.2835 +vn -0.2147 -0.9346 -0.2835 +vn -0.2147 0.9720 -0.0957 +vn -0.2147 -0.9720 -0.0957 +vn 0.5510 -0.5510 0.6267 +vn 0.6437 -0.6437 0.4139 +vn -0.1087 -0.9513 0.2886 +vn -0.1087 -0.8767 0.4686 +vn 0.5510 0.5510 0.6267 +vn 0.4431 0.4431 0.7793 +vn -0.1087 0.7684 0.6306 +vn -0.1087 0.8767 0.4686 +vn -0.2147 0.9720 0.0957 +vn -0.2147 -0.9720 0.0957 +vn -0.6857 0.4617 -0.5626 +vn 0.6857 0.4617 -0.5626 +vn 0.4431 -0.4431 0.7793 +vn -0.1087 -0.7684 0.6306 +vn -0.4431 -0.4431 -0.7793 +vn -0.2147 0.9346 0.2835 +vn -0.2147 -0.9346 0.2835 +vn -0.2147 0.8614 0.4604 +vn -0.2147 -0.8614 0.4604 +vn -0.2147 0.7550 0.6196 +vn -0.2147 -0.7550 0.6196 +vn -0.1243 -0.1243 0.9844 +vn -0.0247 -0.0247 0.9994 +vn -0.0247 0.0247 0.9994 +vn -0.1243 0.1243 0.9844 +vn -0.2147 0.6196 0.7550 +vn -0.1087 0.6306 0.7684 +vn -0.2147 -0.6196 0.7550 +vn -0.1087 -0.6306 0.7684 +vn -0.2267 -0.2267 0.9472 +vn 0.0247 0.0247 0.9994 +vn -0.1087 0.0974 0.9893 +vn -0.1087 0.2886 0.9513 +vn 0.1243 0.1243 0.9844 +vn -0.2147 0.4604 0.8614 +vn -0.1087 0.4686 0.8767 +vn -0.2147 -0.4604 0.8614 +vn -0.1087 -0.4686 0.8767 +vn -0.2147 0.2835 0.9346 +vn -0.2147 -0.2835 0.9346 +vn -0.1087 -0.2886 0.9513 +vn -0.2147 0.0957 0.9720 +vn -0.2147 -0.0957 0.9720 +vn -0.1087 -0.0974 0.9893 +vn -0.6100 -0.3032 0.7321 +vn 0.0000 -0.3827 0.9239 +vn 0.0000 0.6088 0.7933 +vn -0.6100 0.4824 0.6287 +vn -0.6100 -0.7856 0.1034 +vn 0.0000 -0.9914 0.1305 +vn 0.0000 0.9914 -0.1305 +vn -0.6100 0.7856 -0.1034 +vn 0.0000 0.3827 -0.9239 +vn -0.6100 0.3032 -0.7321 +vn 0.0000 -0.6088 -0.7933 +vn -0.6100 -0.4824 -0.6287 +vn 0.6100 0.3032 -0.7321 +vn 0.6100 0.7856 -0.1034 +vn 0.6100 -0.4824 -0.6287 +vn 0.6100 0.4824 0.6287 +vn 0.6100 -0.3032 0.7321 +vn 0.6100 -0.7856 0.1034 +vn -0.6100 -0.7321 0.3032 +vn 0.0000 -0.9239 0.3827 +vn 0.0000 -0.1305 0.9914 +vn -0.6100 -0.1034 0.7856 +vn -0.6100 -0.6287 -0.4824 +vn 0.0000 -0.7933 -0.6088 +vn 0.0000 0.7933 0.6088 +vn -0.6100 0.6287 0.4824 +vn 0.0000 0.9239 -0.3827 +vn -0.6100 0.7321 -0.3032 +vn 0.0000 0.1305 -0.9914 +vn -0.6100 0.1034 -0.7856 +vn 0.6100 0.7321 -0.3032 +vn 0.6100 0.6287 0.4824 +vn 0.6100 0.1034 -0.7856 +vn 0.6100 -0.1034 0.7856 +vn 0.6100 -0.7321 0.3032 +vn 0.6100 -0.6287 -0.4824 +vn -0.6100 -0.7321 -0.3032 +vn 0.0000 -0.9239 -0.3827 +vn 0.0000 -0.7933 0.6088 +vn -0.6100 -0.6287 0.4824 +vn -0.6100 -0.1034 -0.7856 +vn 0.0000 -0.1305 -0.9914 +vn 0.0000 0.1305 0.9914 +vn -0.6100 0.1034 0.7856 +vn 0.0000 0.9239 0.3827 +vn -0.6100 0.7321 0.3032 +vn 0.0000 0.7933 -0.6088 +vn -0.6100 0.6287 -0.4824 +vn 0.6100 0.7321 0.3032 +vn 0.6100 0.1034 0.7856 +vn 0.6100 0.6287 -0.4824 +vn 0.6100 -0.6287 0.4824 +vn 0.6100 -0.7321 -0.3032 +vn 0.6100 -0.1034 -0.7856 +vn -0.6100 -0.3032 -0.7321 +vn 0.0000 -0.3827 -0.9239 +vn 0.0000 -0.9914 -0.1305 +vn -0.6100 -0.7856 -0.1034 +vn -0.6100 0.4824 -0.6287 +vn 0.0000 0.6088 -0.7933 +vn 0.0000 -0.6088 0.7933 +vn -0.6100 -0.4824 0.6287 +vn 0.0000 0.3827 0.9239 +vn -0.6100 0.3032 0.7321 +vn 0.0000 0.9914 0.1305 +vn -0.6100 0.7856 0.1034 +vn 0.6100 0.3032 0.7321 +vn 0.6100 -0.4824 0.6287 +vn 0.6100 0.7856 0.1034 +vn 0.6100 -0.7856 -0.1034 +vn 0.6100 -0.3032 -0.7321 +vn 0.6100 0.4824 -0.6287 +vn 0.1243 0.1243 -0.9844 +vn 0.0247 0.0247 -0.9994 +vn 0.2267 -0.2267 -0.9472 +vn 0.1243 -0.1243 -0.9844 +vn 0.3333 -0.3333 -0.8819 +vn 0.2267 0.2267 -0.9472 +vn -0.6306 0.1087 -0.7684 +vn -0.7684 0.1087 -0.6306 +vn 0.0974 -0.1087 0.9893 +vn -0.0974 -0.1087 0.9893 +vn 0.0247 -0.0247 -0.9994 +vn 0.3333 0.3333 0.8819 +vn 0.3333 -0.3333 0.8819 +vn 0.1243 -0.1243 0.9844 +vn 0.2267 -0.2267 0.9472 +vn -0.2267 0.2267 0.9472 +vn 0.2267 0.2267 0.9472 +vn 0.0247 -0.0247 0.9994 +vn 0.3333 0.3333 -0.8819 +vn -0.4431 0.4431 -0.7793 +vn -0.5510 0.5510 0.6267 +vn -0.6437 0.6437 0.4139 +vn -0.6995 0.6995 0.1458 +vn -0.6995 0.6995 -0.1458 +vn -0.6437 0.6437 -0.4139 +vn -0.5510 0.5510 -0.6267 +vn -0.5510 -0.5510 -0.6267 +vn -0.6437 -0.6437 -0.4139 +vn -0.6995 -0.6995 -0.1458 +vn -0.6995 -0.6995 0.1458 +vn -0.6437 -0.6437 0.4139 +vn -0.5510 -0.5510 0.6267 +vn -0.6100 -0.5603 0.5603 +vn 0.0000 -0.7071 0.7071 +vn 0.0000 0.2588 0.9659 +vn -0.6100 0.2051 0.7654 +vn -0.6100 -0.7654 -0.2051 +vn 0.0000 -0.9659 -0.2588 +vn 0.0000 0.9659 0.2588 +vn -0.6100 0.7654 0.2051 +vn 0.0000 0.7071 -0.7071 +vn -0.6100 0.5603 -0.5603 +vn 0.0000 -0.2588 -0.9659 +vn -0.6100 -0.2051 -0.7654 +vn 0.6100 0.5603 -0.5603 +vn 0.6100 0.7654 0.2051 +vn 0.6100 -0.2051 -0.7654 +vn 0.6100 0.2051 0.7654 +vn 0.6100 -0.5603 0.5603 +vn 0.6100 -0.7654 -0.2051 +vn -0.6100 -0.7924 0.0000 +vn 0.0000 -0.5000 0.8660 +vn -0.6100 -0.3962 0.6862 +vn -0.6100 -0.3962 -0.6862 +vn 0.0000 -0.5000 -0.8660 +vn 0.0000 0.5000 0.8660 +vn -0.6100 0.3962 0.6862 +vn -0.6100 0.7924 0.0000 +vn 0.0000 0.5000 -0.8660 +vn -0.6100 0.3962 -0.6862 +vn 0.6100 0.7924 0.0000 +vn 0.6100 0.3962 0.6862 +vn 0.6100 0.3962 -0.6862 +vn 0.6100 -0.3962 0.6862 +vn 0.6100 -0.7924 0.0000 +vn 0.6100 -0.3962 -0.6862 +vn -0.6100 -0.5603 -0.5603 +vn 0.0000 -0.7071 -0.7071 +vn 0.0000 -0.9659 0.2588 +vn -0.6100 -0.7654 0.2051 +vn -0.6100 0.2051 -0.7654 +vn 0.0000 0.2588 -0.9659 +vn 0.0000 -0.2588 0.9659 +vn -0.6100 -0.2051 0.7654 +vn 0.0000 0.7071 0.7071 +vn -0.6100 0.5603 0.5603 +vn 0.0000 0.9659 -0.2588 +vn -0.6100 0.7654 -0.2051 +vn 0.6100 0.5603 0.5603 +vn 0.6100 -0.2051 0.7654 +vn 0.6100 0.7654 -0.2051 +vn 0.6100 -0.7654 0.2051 +vn 0.6100 -0.5603 -0.5603 +vn 0.6100 0.2051 -0.7654 +vn -0.6100 0.0000 -0.7924 +vn 0.0000 0.0000 -1.0000 +vn 0.0000 -0.8660 -0.5000 +vn -0.6100 -0.6862 -0.3962 +vn -0.6100 0.6862 -0.3962 +vn 0.0000 0.8660 -0.5000 +vn 0.0000 -0.8660 0.5000 +vn -0.6100 -0.6862 0.3962 +vn 0.0000 0.0000 1.0000 +vn -0.6100 0.0000 0.7924 +vn 0.0000 0.8660 0.5000 +vn -0.6100 0.6862 0.3962 +vn 0.6100 0.0000 0.7924 +vn 0.6100 -0.6862 0.3962 +vn 0.6100 0.6862 0.3962 +vn 0.6100 -0.6862 -0.3962 +vn 0.6100 0.0000 -0.7924 +vn 0.6100 0.6862 -0.3962 +vn 0.2113 -0.6857 -0.6965 +vn 0.2113 0.6857 -0.6965 +vn 0.3431 0.6857 -0.6419 +vn 0.3431 -0.6857 -0.6419 +vn 0.0713 -0.6857 -0.7244 +vn 0.0713 0.6857 -0.7244 +vn -0.0713 -0.6857 -0.7244 +vn -0.0713 0.6857 -0.7244 +vn -0.2113 -0.6857 -0.6965 +vn -0.2113 0.6857 -0.6965 +vn -0.3431 -0.6857 -0.6419 +vn -0.3431 0.6857 -0.6419 +vn -0.4617 -0.6857 -0.5626 +vn -0.4617 0.6857 -0.5626 +vn -0.5626 -0.6857 -0.4617 +vn -0.5626 0.6857 -0.4617 +vn -0.6419 -0.6857 -0.3431 +vn -0.6419 0.6857 -0.3431 +vn -0.6965 -0.6857 -0.2113 +vn -0.6965 0.6857 -0.2113 +vn -0.7244 -0.6857 -0.0713 +vn -0.7244 0.6857 -0.0713 +vn -0.7244 -0.6857 0.0713 +vn -0.7244 0.6857 0.0713 +vn -0.6965 -0.6857 0.2113 +vn -0.6965 0.6857 0.2113 +vn -0.6419 -0.6857 0.3431 +vn -0.6419 0.6857 0.3431 +vn -0.5626 -0.6857 0.4617 +vn -0.5626 0.6857 0.4617 +vn -0.4617 -0.6857 0.5626 +vn -0.4617 0.6857 0.5626 +vn -0.3431 -0.6857 0.6419 +vn -0.3431 0.6857 0.6419 +vn -0.2113 -0.6857 0.6965 +vn -0.2113 0.6857 0.6965 +vn -0.0713 -0.6857 0.7244 +vn -0.0713 0.6857 0.7244 +vn 0.0713 -0.6857 0.7244 +vn 0.0713 0.6857 0.7244 +vn 0.2113 -0.6857 0.6965 +vn 0.2113 0.6857 0.6965 +vn 0.4617 -0.6857 0.5626 +vn 0.4617 0.6857 0.5626 +vn 0.3431 0.6857 0.6419 +vn 0.3431 -0.6857 0.6419 +vn 0.5626 -0.6857 0.4617 +vn 0.5626 0.6857 0.4617 +vn 0.6419 -0.6857 0.3431 +vn 0.6419 0.6857 0.3431 +vn 0.6965 -0.6857 0.2113 +vn 0.6965 0.6857 0.2113 +vn 0.7244 -0.6857 0.0713 +vn 0.7244 0.6857 0.0713 +vn 0.6965 -0.6857 -0.2113 +vn 0.6965 0.6857 -0.2113 +vn 0.7244 0.6857 -0.0713 +vn 0.7244 -0.6857 -0.0713 +vn 0.6419 -0.6857 -0.3431 +vn 0.6419 0.6857 -0.3431 +vn 0.5626 -0.6857 -0.4617 +vn 0.5626 0.6857 -0.4617 +vn 0.8614 -0.2147 0.4604 +vn 0.8767 -0.1087 0.4686 +vn 0.9513 -0.1087 0.2886 +vn 0.9346 -0.2147 0.2835 +vn 0.9720 -0.2147 0.0957 +vn 0.9893 -0.1087 0.0974 +vn 0.9720 -0.2147 -0.0957 +vn 0.9893 -0.1087 -0.0974 +vn 0.9346 -0.2147 -0.2835 +vn 0.9513 -0.1087 -0.2886 +vn 0.8614 -0.2147 -0.4604 +vn 0.8767 -0.1087 -0.4686 +vn 0.7550 -0.2147 -0.6196 +vn 0.7684 -0.1087 -0.6306 +vn 0.6306 -0.1087 -0.7684 +vn 0.6196 -0.2147 -0.7550 +vn 0.4604 -0.2147 -0.8614 +vn 0.4686 -0.1087 -0.8767 +vn 0.2835 -0.2147 -0.9346 +vn 0.2886 -0.1087 -0.9513 +vn 0.0957 -0.2147 -0.9720 +vn 0.0974 -0.1087 -0.9893 +vn -0.0974 -0.1087 -0.9893 +vn -0.0957 -0.2147 -0.9720 +vn -0.2886 -0.1087 -0.9513 +vn -0.2835 -0.2147 -0.9346 +vn -0.4604 -0.2147 -0.8614 +vn -0.4686 -0.1087 -0.8767 +vn -0.6306 -0.1087 -0.7684 +vn -0.6196 -0.2147 -0.7550 +vn -0.7684 -0.1087 -0.6306 +vn -0.7550 -0.2147 -0.6196 +vn -0.8614 -0.2147 -0.4604 +vn -0.8767 -0.1087 -0.4686 +vn -0.9513 -0.1087 -0.2886 +vn -0.9346 -0.2147 -0.2835 +vn -0.9720 -0.2147 -0.0957 +vn -0.9893 -0.1087 -0.0974 +vn -0.9893 -0.1087 0.0974 +vn -0.9720 -0.2147 0.0957 +vn -0.9346 -0.2147 0.2835 +vn -0.9513 -0.1087 0.2886 +vn -0.8767 -0.1087 0.4686 +vn -0.8614 -0.2147 0.4604 +vn -0.7684 -0.1087 0.6306 +vn -0.7550 -0.2147 0.6196 +vn -0.6306 -0.1087 0.7684 +vn -0.6196 -0.2147 0.7550 +vn -0.4686 -0.1087 0.8767 +vn -0.4604 -0.2147 0.8614 +vn -0.2886 -0.1087 0.9513 +vn -0.2835 -0.2147 0.9346 +vn -0.0957 -0.2147 0.9720 +vn 0.2835 -0.2147 0.9346 +vn 0.0957 -0.2147 0.9720 +vn 0.2886 -0.1087 0.9513 +vn 0.6196 -0.2147 0.7550 +vn 0.4604 -0.2147 0.8614 +vn 0.4686 -0.1087 0.8767 +vn 0.6306 -0.1087 0.7684 +vn 0.7550 -0.2147 0.6196 +vn 0.7684 -0.1087 0.6306 +vn 0.0957 0.2147 -0.9720 +vn 0.0974 0.1087 -0.9893 +vn 0.2886 0.1087 -0.9513 +vn 0.2835 0.2147 -0.9346 +vn -0.0957 0.2147 -0.9720 +vn -0.0974 0.1087 -0.9893 +vn -0.2835 0.2147 -0.9346 +vn -0.2886 0.1087 -0.9513 +vn 0.7684 0.1087 -0.6306 +vn 0.8767 0.1087 -0.4686 +vn 0.4686 0.1087 -0.8767 +vn 0.4604 0.2147 -0.8614 +vn -0.4604 0.2147 -0.8614 +vn -0.4686 0.1087 -0.8767 +vn -0.8767 0.1087 -0.4686 +vn 0.9513 0.1087 -0.2886 +vn 0.6196 0.2147 -0.7550 +vn 0.6306 0.1087 -0.7684 +vn -0.6196 0.2147 -0.7550 +vn -0.9513 0.1087 -0.2886 +vn 0.9893 0.1087 -0.0974 +vn 0.7550 0.2147 -0.6196 +vn -0.7550 0.2147 -0.6196 +vn 0.8614 0.2147 -0.4604 +vn -0.8614 0.2147 -0.4604 +vn -0.9893 0.1087 -0.0974 +vn -0.9893 0.1087 0.0974 +vn 0.9513 0.1087 0.2886 +vn 0.9893 0.1087 0.0974 +vn 0.9346 0.2147 -0.2835 +vn -0.9346 0.2147 -0.2835 +vn 0.9720 0.2147 -0.0957 +vn -0.9720 0.2147 -0.0957 +vn -0.9513 0.1087 0.2886 +vn -0.8767 0.1087 0.4686 +vn 0.7684 0.1087 0.6306 +vn 0.8767 0.1087 0.4686 +vn 0.9720 0.2147 0.0957 +vn -0.9720 0.2147 0.0957 +vn 0.4617 0.6857 -0.5626 +vn 0.4617 -0.6857 -0.5626 +vn -0.7684 0.1087 0.6306 +vn 0.9346 0.2147 0.2835 +vn -0.9346 0.2147 0.2835 +vn 0.8614 0.2147 0.4604 +vn -0.8614 0.2147 0.4604 +vn 0.7550 0.2147 0.6196 +vn -0.7550 0.2147 0.6196 +vn 0.6196 0.2147 0.7550 +vn 0.6306 0.1087 0.7684 +vn -0.6196 0.2147 0.7550 +vn -0.6306 0.1087 0.7684 +vn 0.0974 0.1087 0.9893 +vn 0.2886 0.1087 0.9513 +vn 0.4604 0.2147 0.8614 +vn 0.4686 0.1087 0.8767 +vn -0.4604 0.2147 0.8614 +vn -0.4686 0.1087 0.8767 +vn 0.2835 0.2147 0.9346 +vn -0.2835 0.2147 0.9346 +vn -0.2886 0.1087 0.9513 +vn 0.0957 0.2147 0.9720 +vn -0.0957 0.2147 0.9720 +vn -0.0974 0.1087 0.9893 +vn -0.3032 0.6100 0.7321 +vn -0.3827 0.0000 0.9239 +vn 0.6088 0.0000 0.7933 +vn 0.4824 0.6100 0.6287 +vn -0.7856 0.6100 0.1034 +vn -0.9914 0.0000 0.1305 +vn 0.9914 0.0000 -0.1305 +vn 0.7856 0.6100 -0.1034 +vn 0.3827 0.0000 -0.9239 +vn 0.3032 0.6100 -0.7321 +vn -0.6088 0.0000 -0.7933 +vn -0.4824 0.6100 -0.6287 +vn 0.3032 -0.6100 -0.7321 +vn 0.7856 -0.6100 -0.1034 +vn -0.4824 -0.6100 -0.6287 +vn 0.4824 -0.6100 0.6287 +vn -0.3032 -0.6100 0.7321 +vn -0.7856 -0.6100 0.1034 +vn -0.7321 0.6100 0.3032 +vn -0.9239 0.0000 0.3827 +vn -0.1305 0.0000 0.9914 +vn -0.1034 0.6100 0.7856 +vn -0.6287 0.6100 -0.4824 +vn -0.7933 0.0000 -0.6088 +vn 0.7933 0.0000 0.6088 +vn 0.6287 0.6100 0.4824 +vn 0.9239 0.0000 -0.3827 +vn 0.7321 0.6100 -0.3032 +vn 0.1305 0.0000 -0.9914 +vn 0.1034 0.6100 -0.7856 +vn 0.7321 -0.6100 -0.3032 +vn 0.6287 -0.6100 0.4824 +vn 0.1034 -0.6100 -0.7856 +vn -0.1034 -0.6100 0.7856 +vn -0.7321 -0.6100 0.3032 +vn -0.6287 -0.6100 -0.4824 +vn -0.7321 0.6100 -0.3032 +vn -0.9239 0.0000 -0.3827 +vn -0.7933 0.0000 0.6088 +vn -0.6287 0.6100 0.4824 +vn -0.1034 0.6100 -0.7856 +vn -0.1305 0.0000 -0.9914 +vn 0.1305 0.0000 0.9914 +vn 0.1034 0.6100 0.7856 +vn 0.9239 0.0000 0.3827 +vn 0.7321 0.6100 0.3032 +vn 0.7933 0.0000 -0.6088 +vn 0.6287 0.6100 -0.4824 +vn 0.7321 -0.6100 0.3032 +vn 0.1034 -0.6100 0.7856 +vn 0.6287 -0.6100 -0.4824 +vn -0.6287 -0.6100 0.4824 +vn -0.7321 -0.6100 -0.3032 +vn -0.1034 -0.6100 -0.7856 +vn -0.3032 0.6100 -0.7321 +vn -0.3827 0.0000 -0.9239 +vn -0.9914 0.0000 -0.1305 +vn -0.7856 0.6100 -0.1034 +vn 0.4824 0.6100 -0.6287 +vn 0.6088 0.0000 -0.7933 +vn -0.6088 0.0000 0.7933 +vn -0.4824 0.6100 0.6287 +vn 0.3827 0.0000 0.9239 +vn 0.3032 0.6100 0.7321 +vn 0.9914 0.0000 0.1305 +vn 0.7856 0.6100 0.1034 +vn 0.3032 -0.6100 0.7321 +vn -0.4824 -0.6100 0.6287 +vn 0.7856 -0.6100 0.1034 +vn -0.7856 -0.6100 -0.1034 +vn -0.3032 -0.6100 -0.7321 +vn 0.4824 -0.6100 -0.6287 +vn -0.5603 0.6100 0.5603 +vn -0.7071 0.0000 0.7071 +vn 0.2588 0.0000 0.9659 +vn 0.2051 0.6100 0.7654 +vn -0.7654 0.6100 -0.2051 +vn -0.9659 0.0000 -0.2588 +vn 0.9659 0.0000 0.2588 +vn 0.7654 0.6100 0.2051 +vn 0.7071 0.0000 -0.7071 +vn 0.5603 0.6100 -0.5603 +vn -0.2588 0.0000 -0.9659 +vn -0.2051 0.6100 -0.7654 +vn 0.5603 -0.6100 -0.5603 +vn 0.7654 -0.6100 0.2051 +vn -0.2051 -0.6100 -0.7654 +vn 0.2051 -0.6100 0.7654 +vn -0.5603 -0.6100 0.5603 +vn -0.7654 -0.6100 -0.2051 +vn -0.7924 0.6100 0.0000 +vn -0.5000 0.0000 0.8660 +vn -0.3962 0.6100 0.6862 +vn -0.3962 0.6100 -0.6862 +vn -0.5000 0.0000 -0.8660 +vn 0.5000 0.0000 0.8660 +vn 0.3962 0.6100 0.6862 +vn 0.7924 0.6100 0.0000 +vn 0.5000 0.0000 -0.8660 +vn 0.3962 0.6100 -0.6862 +vn 0.7924 -0.6100 0.0000 +vn 0.3962 -0.6100 0.6862 +vn 0.3962 -0.6100 -0.6862 +vn -0.3962 -0.6100 0.6862 +vn -0.7924 -0.6100 0.0000 +vn -0.3962 -0.6100 -0.6862 +vn -0.5603 0.6100 -0.5603 +vn -0.7071 0.0000 -0.7071 +vn -0.9659 0.0000 0.2588 +vn -0.7654 0.6100 0.2051 +vn 0.2051 0.6100 -0.7654 +vn 0.2588 0.0000 -0.9659 +vn -0.2588 0.0000 0.9659 +vn -0.2051 0.6100 0.7654 +vn 0.7071 0.0000 0.7071 +vn 0.5603 0.6100 0.5603 +vn 0.9659 0.0000 -0.2588 +vn 0.7654 0.6100 -0.2051 +vn 0.5603 -0.6100 0.5603 +vn -0.2051 -0.6100 0.7654 +vn 0.7654 -0.6100 -0.2051 +vn -0.7654 -0.6100 0.2051 +vn -0.5603 -0.6100 -0.5603 +vn 0.2051 -0.6100 -0.7654 +vn 0.0000 0.6100 -0.7924 +vn -0.8660 0.0000 -0.5000 +vn -0.6862 0.6100 -0.3962 +vn 0.6862 0.6100 -0.3962 +vn 0.8660 0.0000 -0.5000 +vn -0.8660 0.0000 0.5000 +vn -0.6862 0.6100 0.3962 +vn 0.0000 0.6100 0.7924 +vn 0.8660 0.0000 0.5000 +vn 0.6862 0.6100 0.3962 +vn 0.0000 -0.6100 0.7924 +vn -0.6862 -0.6100 0.3962 +vn 0.6862 -0.6100 0.3962 +vn -0.6862 -0.6100 -0.3962 +vn 0.0000 -0.6100 -0.7924 +vn 0.6862 -0.6100 -0.3962 +g Pipe_Cylinder.002_None +s off +f 129/1/1 132/2/1 133/3/1 134/4/1 135/5/1 136/6/1 +f 141/7/2 144/8/2 145/9/2 146/10/2 147/11/2 148/12/2 +f 153/13/1 156/14/1 157/15/1 158/16/1 159/17/1 160/18/1 +f 165/19/2 168/20/2 169/21/2 170/22/2 171/23/2 172/24/2 +f 177/25/1 180/26/1 181/27/1 182/28/1 183/29/1 184/30/1 +f 189/31/2 192/32/2 193/33/2 194/34/2 195/35/2 196/36/2 +f 201/37/1 204/38/1 205/39/1 206/40/1 207/41/1 208/42/1 +f 213/43/2 216/44/2 217/45/2 218/46/2 219/47/2 220/48/2 +f 225/49/1 228/50/1 229/51/1 230/52/1 231/53/1 232/54/1 +f 237/55/2 240/56/2 241/57/2 242/58/2 243/59/2 244/60/2 +f 249/61/1 252/62/1 253/63/1 254/64/1 255/65/1 256/66/1 +f 261/67/2 264/68/2 265/69/2 266/70/2 267/71/2 268/72/2 +f 273/73/1 276/74/1 277/75/1 278/76/1 279/77/1 280/78/1 +f 285/79/2 288/80/2 289/81/2 290/82/2 291/83/2 292/84/2 +f 297/85/1 300/86/1 301/87/1 302/88/1 303/89/1 304/90/1 +f 309/91/2 312/92/2 313/93/2 314/94/2 315/95/2 316/96/2 +f 372/97/2 373/98/2 403/99/2 402/100/2 400/101/2 401/102/2 399/103/2 398/104/2 397/105/2 396/106/2 394/107/2 395/108/2 393/109/2 392/110/2 391/111/2 390/112/2 389/113/2 388/114/2 387/115/2 386/116/2 385/117/2 384/118/2 383/119/2 382/120/2 381/121/2 380/122/2 379/123/2 378/124/2 377/125/2 376/126/2 375/127/2 374/128/2 +f 351/129/1 368/130/1 352/131/1 353/132/1 354/133/1 355/134/1 356/135/1 369/136/1 357/137/1 358/138/1 359/139/1 370/140/1 360/141/1 371/142/1 361/143/1 362/144/1 363/145/1 364/146/1 365/147/1 340/148/1 341/149/1 342/150/1 343/151/1 344/152/1 345/153/1 346/154/1 347/155/1 348/156/1 366/157/1 349/158/1 367/159/1 350/160/1 +f 408/161/1 418/162/1 423/163/1 427/164/1 431/165/1 436/166/1 435/167/1 440/168/1 444/169/1 448/170/1 452/171/1 457/172/1 466/173/1 467/174/1 465/175/1 459/176/1 454/177/1 450/178/1 446/179/1 442/180/1 438/181/1 433/182/1 429/183/1 425/184/1 420/185/1 416/186/1 409/187/1 410/188/1 407/189/1 404/190/1 405/191/1 406/192/1 +f 412/193/2 411/194/2 417/195/2 422/196/2 421/197/2 426/198/2 430/199/2 434/200/2 439/201/2 443/202/2 447/203/2 451/204/2 455/205/2 460/206/2 456/207/2 462/208/2 461/209/2 463/210/2 464/211/2 458/212/2 453/213/2 449/214/2 445/215/2 441/216/2 437/217/2 432/218/2 428/219/2 424/220/2 419/221/2 415/222/2 414/223/2 413/224/2 +f 468/225/1 471/226/1 472/227/1 473/228/1 474/229/1 475/230/1 +f 480/231/2 483/232/2 484/233/2 485/234/2 486/235/2 487/236/2 +f 492/237/1 495/238/1 496/239/1 497/240/1 498/241/1 499/242/1 +f 504/243/2 507/244/2 508/245/2 509/246/2 510/247/2 511/248/2 +f 516/249/1 519/250/1 520/251/1 521/252/1 522/253/1 523/254/1 +f 528/255/2 531/256/2 532/257/2 533/258/2 534/259/2 535/260/2 +f 540/261/1 543/262/1 544/263/1 545/264/1 546/265/1 547/266/1 +f 552/267/2 555/268/2 556/269/2 557/270/2 558/271/2 559/272/2 +f 564/273/1 567/274/1 568/275/1 569/276/1 570/277/1 571/278/1 +f 576/279/2 579/280/2 580/281/2 581/282/2 582/283/2 583/284/2 +f 588/285/1 591/286/1 592/287/1 593/288/1 594/289/1 595/290/1 +f 600/291/2 603/292/2 604/293/2 605/294/2 606/295/2 607/296/2 +f 612/297/1 615/298/1 616/299/1 617/300/1 618/301/1 619/302/1 +f 624/303/2 627/304/2 628/305/2 629/306/2 630/307/2 631/308/2 +f 636/309/1 639/310/1 640/311/1 641/312/1 642/313/1 643/314/1 +f 648/315/2 651/316/2 652/317/2 653/318/2 654/319/2 655/320/2 +f 788/321/3 791/322/3 792/323/3 793/324/3 794/325/3 795/326/3 +f 800/327/4 803/328/4 804/329/4 805/330/4 806/331/4 807/332/4 +f 812/333/3 815/334/3 816/335/3 817/336/3 818/337/3 819/338/3 +f 824/339/4 827/340/4 828/341/4 829/342/4 830/343/4 831/344/4 +f 836/345/3 839/346/3 840/347/3 841/348/3 842/349/3 843/350/3 +f 848/351/4 851/352/4 852/353/4 853/354/4 854/355/4 855/356/4 +f 860/357/3 863/358/3 864/359/3 865/360/3 866/361/3 867/362/3 +f 872/363/4 875/364/4 876/365/4 877/366/4 878/367/4 879/368/4 +f 884/369/3 887/370/3 888/371/3 889/372/3 890/373/3 891/374/3 +f 896/375/4 899/376/4 900/377/4 901/378/4 902/379/4 903/380/4 +f 908/381/3 911/382/3 912/383/3 913/384/3 914/385/3 915/386/3 +f 920/387/4 923/388/4 924/389/4 925/390/4 926/391/4 927/392/4 +f 932/393/3 935/394/3 936/395/3 937/396/3 938/397/3 939/398/3 +f 944/399/4 947/400/4 948/401/4 949/402/4 950/403/4 951/404/4 +f 956/405/3 959/406/3 960/407/3 961/408/3 962/409/3 963/410/3 +f 968/411/4 971/412/4 972/413/4 973/414/4 974/415/4 975/416/4 +f 1057/417/4 1058/418/4 1088/419/4 1087/420/4 1085/421/4 1086/422/4 1084/423/4 1083/424/4 1082/425/4 1081/426/4 1079/427/4 1080/428/4 1078/429/4 1077/430/4 1076/431/4 1075/432/4 1074/433/4 1073/434/4 1072/435/4 1071/436/4 1070/437/4 1069/438/4 1068/439/4 1067/440/4 1066/441/4 1065/442/4 1064/443/4 1063/444/4 1062/445/4 1061/446/4 1060/447/4 1059/448/4 +f 1036/449/3 1053/450/3 1037/451/3 1038/452/3 1039/453/3 1040/454/3 1041/455/3 1054/456/3 1042/457/3 1043/458/3 1044/459/3 1055/460/3 1045/461/3 1056/462/3 1046/463/3 1047/464/3 1048/465/3 1049/466/3 1050/467/3 1025/468/3 1026/469/3 1027/470/3 1028/471/3 1029/472/3 1030/473/3 1031/474/3 1032/475/3 1033/476/3 1051/477/3 1034/478/3 1052/479/3 1035/480/3 +f 1093/481/3 1103/482/3 1108/483/3 1112/484/3 1116/485/3 1121/486/3 1120/487/3 1125/488/3 1129/489/3 1133/490/3 1137/491/3 1142/492/3 1151/493/3 1152/494/3 1150/495/3 1144/496/3 1139/497/3 1135/498/3 1131/499/3 1127/500/3 1123/501/3 1118/502/3 1114/503/3 1110/504/3 1105/505/3 1101/506/3 1094/507/3 1095/508/3 1092/509/3 1089/510/3 1090/511/3 1091/512/3 +f 1097/513/4 1096/514/4 1102/515/4 1107/516/4 1106/517/4 1111/518/4 1115/519/4 1119/520/4 1124/521/4 1128/522/4 1132/523/4 1136/524/4 1140/525/4 1145/526/4 1141/527/4 1147/528/4 1146/529/4 1148/530/4 1149/531/4 1143/532/4 1138/533/4 1134/534/4 1130/535/4 1126/536/4 1122/537/4 1117/538/4 1113/539/4 1109/540/4 1104/541/4 1100/542/4 1099/543/4 1098/544/4 +f 1153/545/3 1156/546/3 1157/547/3 1158/548/3 1159/549/3 1160/550/3 +f 1165/551/4 1168/552/4 1169/553/4 1170/554/4 1171/555/4 1172/556/4 +f 1177/557/3 1180/558/3 1181/559/3 1182/560/3 1183/561/3 1184/562/3 +f 1189/563/4 1192/564/4 1193/565/4 1194/566/4 1195/567/4 1196/568/4 +f 1201/569/3 1204/570/3 1205/571/3 1206/572/3 1207/573/3 1208/574/3 +f 1213/575/4 1216/576/4 1217/577/4 1218/578/4 1219/579/4 1220/580/4 +f 1225/581/3 1228/582/3 1229/583/3 1230/584/3 1231/585/3 1232/586/3 +f 1237/587/4 1240/588/4 1241/589/4 1242/590/4 1243/591/4 1244/592/4 +f 1249/593/3 1252/594/3 1253/595/3 1254/596/3 1255/597/3 1256/598/3 +f 1261/599/4 1264/600/4 1265/601/4 1266/602/4 1267/603/4 1268/604/4 +f 1273/605/3 1276/606/3 1277/607/3 1278/608/3 1279/609/3 1280/610/3 +f 1285/611/4 1288/612/4 1289/613/4 1290/614/4 1291/615/4 1292/616/4 +f 1297/617/3 1300/618/3 1301/619/3 1302/620/3 1303/621/3 1304/622/3 +f 1309/623/4 1312/624/4 1313/625/4 1314/626/4 1315/627/4 1316/628/4 +f 1321/629/3 1324/630/3 1325/631/3 1326/632/3 1327/633/3 1328/634/3 +f 1333/635/4 1336/636/4 1337/637/4 1338/638/4 1339/639/4 1340/640/4 +s 1 +f 375/641/5 342/642/6 341/643/7 374/644/8 +f 376/645/9 343/646/10 342/642/6 375/641/5 +f 377/647/11 344/648/12 343/646/10 376/645/9 +f 378/649/13 345/650/14 344/648/12 377/647/11 +f 379/651/15 346/652/16 345/650/14 378/649/13 +f 380/653/17 347/654/18 346/652/16 379/651/15 +f 381/655/19 348/656/20 347/654/18 380/653/17 +f 382/657/21 366/658/22 348/656/20 381/655/19 +f 383/659/23 349/660/24 366/658/22 382/657/21 +f 384/661/25 367/662/26 349/660/24 383/659/23 +f 385/663/27 350/664/28 367/662/26 384/661/25 +f 386/665/29 351/666/30 350/664/28 385/663/27 +f 387/667/31 368/668/32 351/666/30 386/665/29 +f 388/669/33 352/670/34 368/671/32 387/667/31 +f 389/672/35 353/673/36 352/670/34 388/669/33 +f 390/674/37 354/675/38 353/673/36 389/672/35 +f 391/676/39 355/677/40 354/678/38 390/679/37 +f 392/680/41 356/681/42 355/677/40 391/676/39 +f 393/682/43 369/683/44 356/681/42 392/680/41 +f 395/684/45 357/685/46 369/683/44 393/682/43 +f 396/686/47 359/687/48 358/688/49 394/689/50 +f 394/689/50 358/688/49 357/685/46 395/684/45 +f 397/690/51 370/691/52 359/687/48 396/686/47 +f 398/692/53 360/693/54 370/691/52 397/690/51 +f 399/694/55 371/695/56 360/693/54 398/692/53 +f 401/696/57 361/697/58 371/695/56 399/694/55 +f 402/698/59 363/699/60 362/700/61 400/701/62 +f 400/701/62 362/700/61 361/697/58 401/696/57 +f 403/702/63 364/703/64 363/699/60 402/698/59 +f 373/704/65 365/705/66 364/703/64 403/702/63 +f 30/706/67 33/707/68 34/708/69 1/709/70 +f 2/710/71 1/709/70 34/708/69 35/711/72 +f 3/712/73 2/710/71 35/711/72 36/713/74 +f 4/714/75 3/712/73 36/713/74 37/715/76 +f 5/716/77 4/714/75 37/715/76 38/717/78 +f 6/718/79 5/716/77 38/717/78 39/719/80 +f 6/718/79 39/719/80 40/720/81 7/721/82 +f 8/722/83 7/721/82 40/720/81 41/723/84 +f 9/724/85 8/722/83 41/723/84 42/725/86 +f 10/726/87 9/724/85 42/725/86 43/727/88 +f 10/726/87 43/727/88 44/728/89 11/729/90 +f 11/729/90 44/728/89 45/730/91 31/731/92 +f 12/732/93 46/733/94 47/734/95 13/735/96 +f 31/731/92 45/730/91 46/733/94 12/732/93 +f 13/735/96 47/734/95 48/736/97 14/737/98 +f 15/738/99 14/737/98 48/736/97 49/739/100 +f 15/738/99 49/739/100 50/740/101 16/741/102 +f 17/742/103 16/741/102 50/740/101 51/743/104 +f 17/744/103 51/745/104 52/746/105 18/747/106 +f 19/748/107 18/747/106 52/746/105 53/749/108 +f 19/748/107 53/749/108 54/750/109 20/751/110 +f 20/751/110 54/750/109 55/752/111 22/753/112 +f 22/753/112 55/752/111 56/754/113 21/755/114 +f 21/755/114 56/754/113 57/756/115 23/757/116 +f 23/757/116 57/756/115 58/758/117 24/759/118 +f 24/759/118 58/758/117 59/760/119 32/761/120 +f 27/762/121 25/763/122 60/764/123 61/765/124 +f 25/763/122 32/761/120 59/760/119 60/764/123 +f 28/766/125 26/767/126 62/768/127 63/769/128 +f 27/762/121 61/765/124 62/768/127 26/767/126 +f 29/770/129 28/766/125 63/769/128 64/771/130 +f 29/770/129 64/771/130 33/707/68 30/706/67 +f 43/727/88 42/725/86 987/772/131 986/773/132 +f 322/774/133 45/730/91 44/728/89 321/775/134 +f 42/725/86 41/723/84 988/776/135 987/772/131 +f 46/733/94 45/730/91 322/774/133 1010/777/136 +f 41/723/84 40/720/81 989/778/137 988/776/135 +f 323/779/138 47/734/95 46/733/94 1010/777/136 +f 996/780/139 64/771/130 63/769/128 997/781/140 +f 70/782/141 66/783/142 65/784/143 71/785/144 +f 72/786/145 67/787/146 66/783/142 70/782/141 +f 74/788/147 68/789/148 67/787/146 72/786/145 +f 1006/790/149 1007/791/150 56/754/113 55/752/111 +f 79/792/151 980/793/152 326/794/153 83/795/154 +f 71/785/144 65/784/143 69/796/155 76/797/156 +f 78/798/157 73/799/158 68/789/148 74/788/147 +f 334/800/159 1001/801/160 81/802/161 85/803/162 +f 83/795/154 326/794/153 327/804/163 87/805/164 +f 80/806/165 76/797/156 69/796/155 75/807/166 +f 82/808/167 77/809/168 73/799/158 78/798/157 +f 1002/810/169 334/800/159 85/803/162 89/811/170 +f 87/805/164 327/804/163 335/812/171 91/813/172 +f 84/814/173 80/806/165 75/807/166 79/792/151 +f 407/815/20 411/816/19 412/817/21 404/818/22 +f 406/819/26 414/820/25 415/821/27 408/822/28 +f 86/823/174 81/802/161 77/809/168 82/808/167 +f 410/824/18 417/825/17 411/816/19 407/815/20 +f 88/826/175 84/814/173 79/792/151 83/795/154 +f 408/822/28 415/821/27 419/827/29 418/828/30 +f 90/829/176 85/803/162 81/802/161 86/823/174 +f 409/830/16 422/831/15 417/825/17 410/824/18 +f 1019/832/177 328/833/178 93/834/179 97/835/180 +f 1018/836/181 1020/837/182 99/838/183 95/839/184 +f 92/840/185 88/826/175 83/795/154 87/805/164 +f 416/841/14 421/842/13 422/831/15 409/830/16 +f 94/843/186 89/811/170 85/803/162 90/829/176 +f 425/844/10 430/845/9 426/846/11 420/847/12 +f 96/848/187 92/840/185 87/805/164 91/813/172 +f 418/828/30 419/827/29 424/849/31 423/850/32 +f 98/851/188 93/852/179 89/811/170 94/843/186 +f 429/853/6 434/854/5 430/845/9 425/844/10 +f 329/855/189 1004/856/190 101/857/191 105/858/192 +f 337/859/193 1021/860/194 107/861/195 103/862/196 +f 100/863/197 96/848/187 91/813/172 95/839/184 +f 423/850/32 424/849/31 428/864/33 427/865/34 +f 102/866/198 97/835/180 93/834/179 98/867/188 +f 374/644/8 341/643/7 340/868/199 372/869/200 +f 433/870/7 439/871/8 434/854/5 429/853/6 +f 330/872/201 329/855/189 105/858/192 109/873/202 +f 323/779/138 324/874/203 48/736/97 47/734/95 +f 104/875/204 100/863/197 95/839/184 99/838/183 +f 427/865/34 428/864/33 432/876/35 431/877/36 +f 106/878/205 101/857/191 97/835/180 102/866/198 +f 438/879/199 443/880/200 439/871/8 433/870/7 +f 108/881/206 104/875/204 99/838/183 103/862/196 +f 431/877/36 432/876/35 437/882/37 436/883/38 +f 110/884/207 105/858/192 101/857/191 106/878/205 +f 442/885/66 447/886/65 443/880/200 438/879/199 +f 112/887/208 108/881/206 103/862/196 107/861/195 +f 435/888/40 441/889/39 445/890/41 440/891/42 +f 110/884/207 114/892/209 109/873/202 105/858/192 +f 436/883/38 437/882/37 441/893/39 435/894/40 +f 59/760/119 58/758/117 1009/895/210 1015/896/211 +f 61/765/124 60/764/123 1016/897/212 998/898/213 +f 116/899/214 112/887/208 107/861/195 111/900/215 +f 440/891/42 445/890/41 449/901/43 444/902/44 +f 404/818/22 412/817/21 413/903/23 405/904/24 +f 118/905/216 113/906/217 109/873/202 114/892/209 +f 446/907/64 451/908/63 447/886/65 442/885/66 +f 58/758/117 57/756/115 1014/909/218 1009/895/210 +f 339/910/219 123/911/220 119/912/221 1023/913/222 +f 120/914/223 116/899/214 111/900/215 115/915/224 +f 444/902/44 449/901/43 453/916/45 448/917/46 +f 118/905/216 122/918/225 117/919/226 113/906/217 +f 450/920/60 455/921/59 451/908/63 446/907/64 +f 124/922/227 120/914/223 115/915/224 119/912/221 +f 448/917/46 453/923/45 458/924/50 452/925/49 +f 122/918/225 126/926/228 121/927/229 117/919/226 +f 454/928/61 460/929/62 455/921/59 450/920/60 +f 420/847/12 426/846/11 421/842/13 416/841/14 +f 127/930/230 124/922/227 119/912/221 123/911/220 +f 452/925/49 458/924/50 464/931/47 457/932/48 +f 126/926/228 128/933/231 125/934/232 121/927/229 +f 459/935/58 456/936/57 460/929/62 454/928/61 +f 128/933/231 127/930/230 123/911/220 125/934/232 +f 405/904/24 413/903/23 414/820/25 406/819/26 +f 465/937/56 462/938/55 456/936/57 459/935/58 +f 457/932/48 464/931/47 463/939/51 466/940/52 +f 467/941/54 461/942/53 462/938/55 465/937/56 +f 466/940/52 463/939/51 461/942/53 467/941/54 +f 129/943/233 130/944/234 131/945/235 132/946/236 +f 136/947/237 137/948/238 130/944/234 129/943/233 +f 132/946/236 131/945/235 138/949/239 133/950/240 +f 133/950/240 138/949/239 139/951/241 134/952/242 +f 134/953/242 139/954/241 140/955/243 135/956/244 +f 135/956/244 140/955/243 137/948/238 136/947/237 +f 141/957/245 142/958/241 143/959/239 144/960/246 +f 148/961/247 149/962/243 142/958/241 141/957/245 +f 144/960/246 143/959/239 150/963/235 145/964/248 +f 145/964/248 150/963/235 151/965/234 146/966/249 +f 146/967/249 151/968/234 152/969/238 147/970/250 +f 147/970/250 152/969/238 149/962/243 148/961/247 +f 153/971/251 154/972/252 155/973/253 156/974/254 +f 160/975/255 161/976/256 154/972/252 153/971/251 +f 156/974/254 155/973/253 162/977/257 157/978/258 +f 157/978/258 162/977/257 163/979/259 158/980/260 +f 158/981/260 163/982/259 164/983/261 159/984/262 +f 159/984/262 164/983/261 161/976/256 160/975/255 +f 165/985/263 166/986/259 167/987/257 168/988/264 +f 172/989/265 173/990/261 166/986/259 165/985/263 +f 168/988/264 167/987/257 174/991/253 169/992/266 +f 169/992/266 174/991/253 175/993/252 170/994/267 +f 170/995/267 175/996/252 176/997/256 171/998/268 +f 171/998/268 176/997/256 173/990/261 172/989/265 +f 177/999/269 178/1000/270 179/1001/271 180/1002/272 +f 184/1003/273 185/1004/274 178/1000/270 177/999/269 +f 180/1002/272 179/1001/271 186/1005/275 181/1006/276 +f 181/1006/276 186/1005/275 187/1007/277 182/1008/278 +f 182/1009/278 187/1010/277 188/1011/279 183/1012/280 +f 183/1012/280 188/1011/279 185/1004/274 184/1003/273 +f 189/1013/281 190/1014/277 191/1015/275 192/1016/282 +f 196/1017/283 197/1018/279 190/1014/277 189/1013/281 +f 192/1016/282 191/1015/275 198/1019/271 193/1020/284 +f 193/1020/284 198/1019/271 199/1021/270 194/1022/285 +f 194/1023/285 199/1024/270 200/1025/274 195/1026/286 +f 195/1026/286 200/1025/274 197/1018/279 196/1017/283 +f 201/1027/287 202/1028/288 203/1029/289 204/1030/290 +f 208/1031/291 209/1032/292 202/1028/288 201/1027/287 +f 204/1030/290 203/1029/289 210/1033/293 205/1034/294 +f 205/1034/294 210/1033/293 211/1035/295 206/1036/296 +f 206/1037/296 211/1038/295 212/1039/297 207/1040/298 +f 207/1040/298 212/1039/297 209/1032/292 208/1031/291 +f 213/1041/299 214/1042/295 215/1043/293 216/1044/300 +f 220/1045/301 221/1046/297 214/1042/295 213/1041/299 +f 216/1044/300 215/1043/293 222/1047/289 217/1048/302 +f 217/1048/302 222/1047/289 223/1049/288 218/1050/303 +f 218/1051/303 223/1052/288 224/1053/292 219/1054/304 +f 219/1054/304 224/1053/292 221/1046/297 220/1045/301 +f 225/1055/242 226/1056/241 227/1057/243 228/1058/244 +f 232/1059/240 233/1060/239 226/1056/241 225/1055/242 +f 228/1058/244 227/1057/243 234/1061/238 229/1062/237 +f 229/1062/237 234/1061/238 235/1063/234 230/1064/233 +f 230/1065/233 235/1066/234 236/1067/235 231/1068/236 +f 231/1068/236 236/1067/235 233/1060/239 232/1059/240 +f 237/1069/249 238/1070/234 239/1071/238 240/1072/250 +f 244/1073/248 245/1074/235 238/1070/234 237/1069/249 +f 240/1072/250 239/1071/238 246/1075/243 241/1076/247 +f 241/1076/247 246/1075/243 247/1077/241 242/1078/245 +f 242/1079/245 247/1080/241 248/1081/239 243/1082/246 +f 243/1082/246 248/1081/239 245/1074/235 244/1073/248 +f 249/1083/260 250/1084/259 251/1085/261 252/1086/262 +f 256/1087/258 257/1088/257 250/1084/259 249/1083/260 +f 252/1086/262 251/1085/261 258/1089/256 253/1090/255 +f 253/1090/255 258/1089/256 259/1091/252 254/1092/251 +f 254/1093/251 259/1094/252 260/1095/253 255/1096/254 +f 255/1096/254 260/1095/253 257/1088/257 256/1087/258 +f 261/1097/267 262/1098/252 263/1099/256 264/1100/268 +f 268/1101/266 269/1102/253 262/1098/252 261/1097/267 +f 264/1100/268 263/1099/256 270/1103/261 265/1104/265 +f 265/1104/265 270/1103/261 271/1105/259 266/1106/263 +f 266/1107/263 271/1108/259 272/1109/257 267/1110/264 +f 267/1110/264 272/1109/257 269/1102/253 268/1101/266 +f 273/1111/278 274/1112/277 275/1113/279 276/1114/280 +f 280/1115/276 281/1116/275 274/1112/277 273/1111/278 +f 276/1114/280 275/1113/279 282/1117/274 277/1118/273 +f 277/1118/273 282/1117/274 283/1119/270 278/1120/269 +f 278/1121/269 283/1122/270 284/1123/271 279/1124/272 +f 279/1124/272 284/1123/271 281/1116/275 280/1115/276 +f 285/1125/285 286/1126/270 287/1127/274 288/1128/286 +f 292/1129/284 293/1130/271 286/1126/270 285/1125/285 +f 288/1128/286 287/1127/274 294/1131/279 289/1132/283 +f 289/1132/283 294/1131/279 295/1133/277 290/1134/281 +f 290/1135/281 295/1136/277 296/1137/275 291/1138/282 +f 291/1138/282 296/1137/275 293/1130/271 292/1129/284 +f 297/1139/296 298/1140/295 299/1141/297 300/1142/298 +f 304/1143/294 305/1144/293 298/1140/295 297/1139/296 +f 300/1142/298 299/1141/297 306/1145/292 301/1146/291 +f 301/1146/291 306/1145/292 307/1147/288 302/1148/287 +f 302/1149/287 307/1150/288 308/1151/289 303/1152/290 +f 303/1152/290 308/1151/289 305/1144/293 304/1143/294 +f 309/1153/303 310/1154/288 311/1155/292 312/1156/304 +f 316/1157/302 317/1158/289 310/1154/288 309/1153/303 +f 312/1156/304 311/1155/292 318/1159/297 313/1160/301 +f 313/1160/301 318/1159/297 319/1161/295 314/1162/299 +f 314/1163/299 319/1164/295 320/1165/293 315/1166/300 +f 315/1166/300 320/1165/293 317/1158/289 316/1157/302 +f 983/1167/305 65/784/143 66/783/142 984/1168/306 +f 73/799/158 999/1169/307 985/1170/308 68/789/148 +f 77/809/168 1000/1171/309 999/1169/307 73/799/158 +f 982/1172/310 69/796/155 65/784/143 983/1167/305 +f 323/1173/138 736/1174/311 740/1175/312 324/1176/203 +f 719/1177/313 718/1178/314 1016/1179/212 339/1180/219 +f 68/789/148 985/1170/308 333/1181/315 67/787/146 +f 338/1182/316 111/900/215 107/861/195 1021/860/194 +f 331/1183/317 330/872/201 109/873/202 113/906/217 +f 332/1184/318 1008/1185/319 117/919/226 121/927/229 +f 331/1183/317 113/906/217 117/919/226 1008/1185/319 +f 62/768/127 61/765/124 998/898/213 1017/1186/320 +f 119/912/221 115/915/224 1022/1187/321 1023/913/222 +f 125/934/232 1024/1188/322 332/1184/318 121/927/229 +f 981/1189/323 75/807/166 69/796/155 982/1172/310 +f 990/1190/324 989/778/137 40/720/81 39/719/80 +f 63/769/128 62/768/127 1017/1186/320 997/781/140 +f 115/915/224 111/900/215 338/1182/316 1022/1187/321 +f 57/756/115 56/754/113 1007/791/150 1014/909/218 +f 75/807/166 981/1189/323 980/793/152 79/792/151 +f 372/869/200 340/868/199 365/705/66 373/704/65 +f 995/1191/325 336/1192/326 34/708/69 33/707/68 +f 336/1192/326 994/1193/327 35/711/72 34/708/69 +f 994/1193/327 993/1194/328 36/713/74 35/711/72 +f 993/1194/328 992/1195/329 37/715/76 36/713/74 +f 992/1195/329 991/1196/330 38/717/78 37/715/76 +f 991/1196/330 990/1190/324 39/719/80 38/717/78 +f 324/874/203 1011/1197/331 49/739/100 48/736/97 +f 1011/1197/331 325/1198/332 50/740/101 49/739/100 +f 325/1198/332 1003/1199/333 51/743/104 50/740/101 +f 1003/1200/333 1012/1201/334 52/746/105 51/745/104 +f 1012/1201/334 1013/1202/335 53/749/108 52/746/105 +f 1013/1202/335 1005/1203/336 54/750/109 53/749/108 +f 1005/1203/336 1006/790/149 55/752/111 54/750/109 +f 64/771/130 996/780/139 995/1191/325 33/707/68 +f 328/1204/178 1002/810/169 89/811/170 93/852/179 +f 335/812/171 1018/836/181 95/839/184 91/813/172 +f 1004/856/190 1019/832/177 97/835/180 101/857/191 +f 1020/837/182 337/859/193 103/862/196 99/838/183 +f 468/1205/337 469/1206/338 470/1207/339 471/1208/340 +f 475/1209/341 476/1210/342 469/1206/338 468/1205/337 +f 471/1208/340 470/1207/339 477/1211/343 472/1212/344 +f 472/1212/344 477/1211/343 478/1213/345 473/1214/346 +f 473/1215/346 478/1216/345 479/1217/347 474/1218/348 +f 474/1218/348 479/1217/347 476/1210/342 475/1209/341 +f 480/1219/349 481/1220/345 482/1221/343 483/1222/350 +f 487/1223/351 488/1224/347 481/1220/345 480/1219/349 +f 483/1222/350 482/1221/343 489/1225/339 484/1226/352 +f 484/1226/352 489/1225/339 490/1227/338 485/1228/353 +f 485/1229/353 490/1230/338 491/1231/342 486/1232/354 +f 486/1232/354 491/1231/342 488/1224/347 487/1223/351 +f 492/1233/355 493/1234/4 494/1235/356 495/1236/357 +f 499/1237/358 500/1238/359 493/1234/4 492/1233/355 +f 495/1236/357 494/1235/356 501/1239/360 496/1240/361 +f 496/1240/361 501/1239/360 502/1241/3 497/1242/362 +f 497/1243/362 502/1244/3 503/1245/363 498/1246/364 +f 498/1246/364 503/1245/363 500/1238/359 499/1237/358 +f 504/1247/365 505/1248/3 506/1249/360 507/1250/366 +f 511/1251/367 512/1252/363 505/1248/3 504/1247/365 +f 507/1250/366 506/1249/360 513/1253/356 508/1254/368 +f 508/1254/368 513/1253/356 514/1255/4 509/1256/369 +f 509/1257/369 514/1258/4 515/1259/359 510/1260/370 +f 510/1260/370 515/1259/359 512/1252/363 511/1251/367 +f 516/1261/371 517/1262/372 518/1263/373 519/1264/374 +f 523/1265/375 524/1266/376 517/1262/372 516/1261/371 +f 519/1264/374 518/1263/373 525/1267/377 520/1268/378 +f 520/1268/378 525/1267/377 526/1269/379 521/1270/380 +f 521/1271/380 526/1272/379 527/1273/381 522/1274/382 +f 522/1274/382 527/1273/381 524/1266/376 523/1265/375 +f 528/1275/383 529/1276/379 530/1277/377 531/1278/384 +f 535/1279/385 536/1280/381 529/1276/379 528/1275/383 +f 531/1278/384 530/1277/377 537/1281/373 532/1282/386 +f 532/1282/386 537/1281/373 538/1283/372 533/1284/387 +f 533/1285/387 538/1286/372 539/1287/376 534/1288/388 +f 534/1288/388 539/1287/376 536/1280/381 535/1279/385 +f 540/1289/389 541/1290/390 542/1291/391 543/1292/392 +f 547/1293/393 548/1294/394 541/1290/390 540/1289/389 +f 543/1292/392 542/1291/391 549/1295/395 544/1296/396 +f 544/1296/396 549/1295/395 550/1297/397 545/1298/398 +f 545/1299/398 550/1300/397 551/1301/399 546/1302/400 +f 546/1302/400 551/1301/399 548/1294/394 547/1293/393 +f 552/1303/401 553/1304/397 554/1305/395 555/1306/402 +f 559/1307/403 560/1308/399 553/1304/397 552/1303/401 +f 555/1306/402 554/1305/395 561/1309/391 556/1310/404 +f 556/1310/404 561/1309/391 562/1311/390 557/1312/405 +f 557/1313/405 562/1314/390 563/1315/394 558/1316/406 +f 558/1316/406 563/1315/394 560/1308/399 559/1307/403 +f 564/1317/346 565/1318/345 566/1319/347 567/1320/348 +f 571/1321/344 572/1322/343 565/1318/345 564/1317/346 +f 567/1320/348 566/1319/347 573/1323/342 568/1324/341 +f 568/1324/341 573/1323/342 574/1325/338 569/1326/337 +f 569/1327/337 574/1328/338 575/1329/339 570/1330/340 +f 570/1330/340 575/1329/339 572/1322/343 571/1321/344 +f 576/1331/353 577/1332/338 578/1333/342 579/1334/354 +f 583/1335/352 584/1336/339 577/1332/338 576/1331/353 +f 579/1334/354 578/1333/342 585/1337/347 580/1338/351 +f 580/1338/351 585/1337/347 586/1339/345 581/1340/349 +f 581/1341/349 586/1342/345 587/1343/343 582/1344/350 +f 582/1344/350 587/1343/343 584/1336/339 583/1335/352 +f 588/1345/362 589/1346/3 590/1347/363 591/1348/364 +f 595/1349/361 596/1350/360 589/1346/3 588/1345/362 +f 591/1348/364 590/1347/363 597/1351/359 592/1352/358 +f 592/1352/358 597/1351/359 598/1353/4 593/1354/355 +f 593/1355/355 598/1356/4 599/1357/356 594/1358/357 +f 594/1358/357 599/1357/356 596/1350/360 595/1349/361 +f 600/1359/369 601/1360/4 602/1361/359 603/1362/370 +f 607/1363/368 608/1364/356 601/1360/4 600/1359/369 +f 603/1362/370 602/1361/359 609/1365/363 604/1366/367 +f 604/1366/367 609/1365/363 610/1367/3 605/1368/365 +f 605/1369/365 610/1370/3 611/1371/360 606/1372/366 +f 606/1372/366 611/1371/360 608/1364/356 607/1363/368 +f 612/1373/380 613/1374/379 614/1375/381 615/1376/382 +f 619/1377/378 620/1378/377 613/1374/379 612/1373/380 +f 615/1376/382 614/1375/381 621/1379/376 616/1380/375 +f 616/1380/375 621/1379/376 622/1381/372 617/1382/371 +f 617/1383/371 622/1384/372 623/1385/373 618/1386/374 +f 618/1386/374 623/1385/373 620/1378/377 619/1377/378 +f 624/1387/387 625/1388/372 626/1389/376 627/1390/388 +f 631/1391/386 632/1392/373 625/1388/372 624/1387/387 +f 627/1390/388 626/1389/376 633/1393/381 628/1394/385 +f 628/1394/385 633/1393/381 634/1395/379 629/1396/383 +f 629/1397/383 634/1398/379 635/1399/377 630/1400/384 +f 630/1400/384 635/1399/377 632/1392/373 631/1391/386 +f 636/1401/398 637/1402/397 638/1403/399 639/1404/400 +f 643/1405/396 644/1406/395 637/1402/397 636/1401/398 +f 639/1404/400 638/1403/399 645/1407/394 640/1408/393 +f 640/1408/393 645/1407/394 646/1409/390 641/1410/389 +f 641/1411/389 646/1412/390 647/1413/391 642/1414/392 +f 642/1414/392 647/1413/391 644/1406/395 643/1405/396 +f 648/1415/405 649/1416/390 650/1417/394 651/1418/406 +f 655/1419/404 656/1420/391 649/1416/390 648/1415/405 +f 651/1418/406 650/1417/394 657/1421/399 652/1422/403 +f 652/1422/403 657/1421/399 658/1423/397 653/1424/401 +f 653/1425/401 658/1426/397 659/1427/395 654/1428/402 +f 654/1428/402 659/1427/395 656/1420/391 655/1419/404 +f 1024/1188/322 125/934/232 123/911/220 339/910/219 1016/897/212 60/764/123 59/760/119 1015/1429/211 +f 984/1168/306 66/783/142 67/787/146 333/1181/315 321/775/134 44/728/89 43/727/88 986/1430/132 +f 1060/1431/407 1027/1432/408 1026/1433/409 1059/1434/410 +f 1061/1435/411 1028/1436/412 1027/1432/408 1060/1431/407 +f 1062/1437/413 1029/1438/414 1028/1436/412 1061/1435/411 +f 1063/1439/415 1030/1440/416 1029/1438/414 1062/1437/413 +f 1064/1441/417 1031/1442/418 1030/1440/416 1063/1439/415 +f 1065/1443/419 1032/1444/420 1031/1442/418 1064/1441/417 +f 1066/1445/421 1033/1446/422 1032/1444/420 1065/1443/419 +f 1067/1447/423 1051/1448/424 1033/1446/422 1066/1445/421 +f 1068/1449/425 1034/1450/426 1051/1448/424 1067/1447/423 +f 1069/1451/427 1052/1452/428 1034/1450/426 1068/1449/425 +f 1070/1453/429 1035/1454/430 1052/1452/428 1069/1451/427 +f 1071/1455/431 1036/1456/432 1035/1454/430 1070/1453/429 +f 1072/1457/433 1053/1458/434 1036/1456/432 1071/1455/431 +f 1073/1459/435 1037/1460/436 1053/1461/434 1072/1457/433 +f 1074/1462/437 1038/1463/438 1037/1460/436 1073/1459/435 +f 1075/1464/439 1039/1465/440 1038/1463/438 1074/1462/437 +f 1076/1466/441 1040/1467/442 1039/1468/440 1075/1469/439 +f 1077/1470/443 1041/1471/444 1040/1467/442 1076/1466/441 +f 1078/1472/445 1054/1473/446 1041/1471/444 1077/1470/443 +f 1080/1474/447 1042/1475/448 1054/1473/446 1078/1472/445 +f 1081/1476/449 1044/1477/450 1043/1478/451 1079/1479/452 +f 1079/1479/452 1043/1478/451 1042/1475/448 1080/1474/447 +f 1082/1480/453 1055/1481/454 1044/1477/450 1081/1476/449 +f 1083/1482/455 1045/1483/456 1055/1481/454 1082/1480/453 +f 1084/1484/457 1056/1485/458 1045/1483/456 1083/1482/455 +f 1086/1486/459 1046/1487/460 1056/1485/458 1084/1484/457 +f 1087/1488/461 1048/1489/462 1047/1490/463 1085/1491/464 +f 1085/1491/464 1047/1490/463 1046/1487/460 1086/1486/459 +f 1088/1492/465 1049/1493/466 1048/1489/462 1087/1488/461 +f 1058/1494/467 1050/1495/468 1049/1493/466 1088/1492/465 +f 689/1496/469 692/1497/470 693/1498/471 660/1499/472 +f 661/1500/473 660/1499/472 693/1498/471 694/1501/474 +f 662/1502/475 661/1500/473 694/1501/474 695/1503/476 +f 663/1504/477 662/1502/475 695/1503/476 696/1505/478 +f 664/1506/479 663/1504/477 696/1505/478 697/1507/480 +f 665/1508/481 664/1506/479 697/1507/480 698/1509/482 +f 665/1508/481 698/1509/482 699/1510/483 666/1511/484 +f 667/1512/485 666/1511/484 699/1510/483 700/1513/486 +f 668/1514/487 667/1512/485 700/1513/486 701/1515/488 +f 669/1516/489 668/1514/487 701/1515/488 702/1517/490 +f 669/1516/489 702/1517/490 703/1518/491 670/1519/492 +f 670/1519/492 703/1518/491 704/1520/493 690/1521/494 +f 671/1522/495 705/1523/496 706/1524/497 672/1525/498 +f 690/1521/494 704/1520/493 705/1523/496 671/1522/495 +f 672/1525/498 706/1524/497 707/1526/499 673/1527/500 +f 674/1528/501 673/1527/500 707/1526/499 708/1529/502 +f 674/1528/501 708/1529/502 709/1530/503 675/1531/504 +f 676/1532/505 675/1531/504 709/1530/503 710/1533/506 +f 676/1534/505 710/1535/506 711/1536/507 677/1537/508 +f 678/1538/509 677/1537/508 711/1536/507 712/1539/510 +f 678/1538/509 712/1539/510 713/1540/511 679/1541/512 +f 679/1541/512 713/1540/511 714/1542/513 681/1543/514 +f 681/1543/514 714/1542/513 715/1544/515 680/1545/516 +f 680/1545/516 715/1544/515 716/1546/517 682/1547/518 +f 682/1547/518 716/1546/517 717/1548/519 683/1549/520 +f 683/1549/520 717/1548/519 718/1178/314 691/1550/521 +f 686/1551/522 684/1552/523 719/1177/313 720/1553/524 +f 684/1552/523 691/1550/521 718/1178/314 719/1177/313 +f 687/1554/525 685/1555/526 721/1556/527 722/1557/528 +f 686/1551/522 720/1553/524 721/1556/527 685/1555/526 +f 688/1558/529 687/1554/525 722/1557/528 723/1559/530 +f 688/1558/529 723/1559/530 692/1497/470 689/1496/469 +f 984/1560/306 702/1517/490 701/1515/488 983/1561/305 +f 986/1430/132 703/1518/491 702/1517/490 984/1560/306 +f 987/1562/131 704/1520/493 703/1518/491 986/1430/132 +f 983/1561/305 701/1515/488 700/1513/486 982/1563/310 +f 988/1564/135 705/1523/496 704/1520/493 987/1562/131 +f 982/1563/310 700/1513/486 699/1510/483 981/1565/323 +f 989/1566/137 706/1524/497 705/1523/496 988/1564/135 +f 980/1567/152 981/1565/323 699/1510/483 698/1509/482 +f 729/1568/531 725/1569/532 724/1570/533 730/1571/534 +f 731/1572/535 726/1573/536 725/1569/532 729/1568/531 +f 733/1574/537 727/1575/538 726/1573/536 731/1572/535 +f 338/1576/316 1021/1577/194 723/1559/530 722/1557/528 +f 738/1578/539 1001/1579/160 334/1580/159 742/1581/540 +f 730/1571/534 724/1570/533 728/1582/541 735/1583/542 +f 737/1584/543 732/1585/544 727/1575/538 733/1574/537 +f 1011/1586/331 324/1176/203 740/1175/312 744/1587/545 +f 742/1581/540 334/1580/159 1002/1588/169 746/1589/546 +f 739/1590/547 735/1583/542 728/1582/541 734/1591/548 +f 741/1592/549 736/1174/311 732/1585/544 737/1584/543 +f 325/1593/332 1011/1586/331 744/1587/545 748/1594/550 +f 746/1589/546 1002/1588/169 328/1595/178 750/1596/551 +f 743/1597/552 739/1590/547 734/1591/548 738/1578/539 +f 1092/1598/422 1096/1599/421 1097/1600/423 1089/1601/424 +f 1091/1602/428 1099/1603/427 1100/1604/429 1093/1605/430 +f 745/1606/553 740/1175/312 736/1174/311 741/1592/549 +f 1095/1607/420 1102/1608/419 1096/1599/421 1092/1598/422 +f 747/1609/554 743/1597/552 738/1578/539 742/1581/540 +f 1093/1605/430 1100/1604/429 1104/1610/431 1103/1611/432 +f 749/1612/555 744/1587/545 740/1175/312 745/1606/553 +f 1094/1613/418 1107/1614/417 1102/1608/419 1095/1607/420 +f 1012/1615/334 1003/1616/333 752/1617/556 756/1618/557 +f 1019/1619/177 1004/1620/190 758/1621/558 754/1622/559 +f 751/1623/560 747/1609/554 742/1581/540 746/1589/546 +f 1101/1624/416 1106/1625/415 1107/1614/417 1094/1613/418 +f 753/1626/561 748/1594/550 744/1587/545 749/1612/555 +f 1110/1627/412 1115/1628/411 1111/1629/413 1105/1630/414 +f 755/1631/562 751/1623/560 746/1589/546 750/1596/551 +f 1103/1611/432 1104/1610/431 1109/1632/433 1108/1633/434 +f 757/1634/563 752/1635/556 748/1594/550 753/1626/561 +f 1114/1636/408 1119/1637/407 1115/1628/411 1110/1627/412 +f 1005/1638/336 1013/1639/335 760/1640/564 764/1641/565 +f 329/1642/189 330/1643/201 766/1644/566 762/1645/567 +f 759/1646/568 755/1631/562 750/1596/551 754/1622/559 +f 1108/1633/434 1109/1632/433 1113/1647/435 1112/1648/436 +f 761/1649/569 756/1618/557 752/1617/556 757/1650/563 +f 1059/1434/410 1026/1433/409 1025/1651/570 1057/1652/571 +f 1118/1653/409 1124/1654/410 1119/1637/407 1114/1636/408 +f 1006/1655/149 1005/1638/336 764/1641/565 768/1656/572 +f 996/1657/139 997/1658/140 715/1544/515 714/1542/513 +f 763/1659/573 759/1646/568 754/1622/559 758/1621/558 +f 1112/1648/436 1113/1647/435 1117/1660/437 1116/1661/438 +f 765/1662/574 760/1640/564 756/1618/557 761/1649/569 +f 1123/1663/570 1128/1664/571 1124/1654/410 1118/1653/409 +f 767/1665/575 763/1659/573 758/1621/558 762/1645/567 +f 1116/1661/438 1117/1660/437 1122/1666/439 1121/1667/440 +f 769/1668/576 764/1641/565 760/1640/564 765/1662/574 +f 1127/1669/468 1132/1670/467 1128/1664/571 1123/1663/570 +f 771/1671/577 767/1665/575 762/1645/567 766/1644/566 +f 1120/1672/442 1126/1673/441 1130/1674/443 1125/1675/444 +f 769/1668/576 773/1676/578 768/1656/572 764/1641/565 +f 1121/1667/440 1122/1666/439 1126/1677/441 1120/1678/442 +f 1016/1179/212 718/1178/314 717/1548/519 998/1679/213 +f 1023/1680/222 720/1553/524 719/1177/313 339/1180/219 +f 775/1681/579 771/1671/577 766/1644/566 770/1682/580 +f 1125/1675/444 1130/1674/443 1134/1683/445 1129/1684/446 +f 1089/1601/424 1097/1600/423 1098/1685/425 1090/1686/426 +f 777/1687/581 772/1688/582 768/1656/572 773/1676/578 +f 1131/1689/466 1136/1690/465 1132/1670/467 1127/1669/468 +f 998/1679/213 717/1548/519 716/1546/517 1017/1691/320 +f 1024/1692/322 782/1693/583 778/1694/584 332/1695/318 +f 779/1696/585 775/1681/579 770/1682/580 774/1697/586 +f 1129/1684/446 1134/1683/445 1138/1698/447 1133/1699/448 +f 777/1687/581 781/1700/587 776/1701/588 772/1688/582 +f 1135/1702/462 1140/1703/461 1136/1690/465 1131/1689/466 +f 783/1704/589 779/1696/585 774/1697/586 778/1694/584 +f 1133/1699/448 1138/1705/447 1143/1706/452 1137/1707/451 +f 781/1700/587 785/1708/590 780/1709/591 776/1701/588 +f 1139/1710/463 1145/1711/464 1140/1703/461 1135/1702/462 +f 1105/1630/414 1111/1629/413 1106/1625/415 1101/1624/416 +f 786/1712/592 783/1704/589 778/1694/584 782/1693/583 +f 1137/1707/451 1143/1706/452 1149/1713/449 1142/1714/450 +f 785/1708/590 787/1715/593 784/1716/594 780/1709/591 +f 1144/1717/460 1141/1718/459 1145/1711/464 1139/1710/463 +f 787/1715/593 786/1712/592 782/1693/583 784/1716/594 +f 1090/1686/426 1098/1685/425 1099/1603/427 1091/1602/428 +f 1150/1719/458 1147/1720/457 1141/1718/459 1144/1717/460 +f 1142/1714/450 1149/1713/449 1148/1721/453 1151/1722/454 +f 1152/1723/456 1146/1724/455 1147/1720/457 1150/1719/458 +f 1151/1722/454 1148/1721/453 1146/1724/455 1152/1723/456 +f 788/1725/595 789/1726/596 790/1727/597 791/1728/598 +f 795/1729/599 796/1730/600 789/1726/596 788/1725/595 +f 791/1728/598 790/1727/597 797/1731/601 792/1732/602 +f 792/1732/602 797/1731/601 798/1733/603 793/1734/604 +f 793/1735/604 798/1736/603 799/1737/605 794/1738/606 +f 794/1738/606 799/1737/605 796/1730/600 795/1729/599 +f 800/1739/607 801/1740/603 802/1741/601 803/1742/608 +f 807/1743/609 808/1744/605 801/1740/603 800/1739/607 +f 803/1742/608 802/1741/601 809/1745/597 804/1746/610 +f 804/1746/610 809/1745/597 810/1747/596 805/1748/611 +f 805/1749/611 810/1750/596 811/1751/600 806/1752/612 +f 806/1752/612 811/1751/600 808/1744/605 807/1743/609 +f 812/1753/613 813/1754/614 814/1755/615 815/1756/616 +f 819/1757/617 820/1758/618 813/1754/614 812/1753/613 +f 815/1756/616 814/1755/615 821/1759/619 816/1760/620 +f 816/1760/620 821/1759/619 822/1761/621 817/1762/622 +f 817/1763/622 822/1764/621 823/1765/623 818/1766/624 +f 818/1766/624 823/1765/623 820/1758/618 819/1757/617 +f 824/1767/625 825/1768/621 826/1769/619 827/1770/626 +f 831/1771/627 832/1772/623 825/1768/621 824/1767/625 +f 827/1770/626 826/1769/619 833/1773/615 828/1774/628 +f 828/1774/628 833/1773/615 834/1775/614 829/1776/629 +f 829/1777/629 834/1778/614 835/1779/618 830/1780/630 +f 830/1780/630 835/1779/618 832/1772/623 831/1771/627 +f 836/1781/631 837/1782/632 838/1783/633 839/1784/634 +f 843/1785/635 844/1786/636 837/1782/632 836/1781/631 +f 839/1784/634 838/1783/633 845/1787/637 840/1788/638 +f 840/1788/638 845/1787/637 846/1789/639 841/1790/640 +f 841/1791/640 846/1792/639 847/1793/641 842/1794/642 +f 842/1794/642 847/1793/641 844/1786/636 843/1785/635 +f 848/1795/643 849/1796/639 850/1797/637 851/1798/644 +f 855/1799/645 856/1800/641 849/1796/639 848/1795/643 +f 851/1798/644 850/1797/637 857/1801/633 852/1802/646 +f 852/1802/646 857/1801/633 858/1803/632 853/1804/647 +f 853/1805/647 858/1806/632 859/1807/636 854/1808/648 +f 854/1808/648 859/1807/636 856/1800/641 855/1799/645 +f 860/1809/649 861/1810/650 862/1811/651 863/1812/652 +f 867/1813/653 868/1814/654 861/1810/650 860/1809/649 +f 863/1812/652 862/1811/651 869/1815/655 864/1816/656 +f 864/1816/656 869/1815/655 870/1817/657 865/1818/658 +f 865/1819/658 870/1820/657 871/1821/659 866/1822/660 +f 866/1822/660 871/1821/659 868/1814/654 867/1813/653 +f 872/1823/661 873/1824/657 874/1825/655 875/1826/662 +f 879/1827/663 880/1828/659 873/1824/657 872/1823/661 +f 875/1826/662 874/1825/655 881/1829/651 876/1830/664 +f 876/1830/664 881/1829/651 882/1831/650 877/1832/665 +f 877/1833/665 882/1834/650 883/1835/654 878/1836/666 +f 878/1836/666 883/1835/654 880/1828/659 879/1827/663 +f 884/1837/604 885/1838/603 886/1839/605 887/1840/606 +f 891/1841/602 892/1842/601 885/1838/603 884/1837/604 +f 887/1840/606 886/1839/605 893/1843/600 888/1844/599 +f 888/1844/599 893/1843/600 894/1845/596 889/1846/595 +f 889/1847/595 894/1848/596 895/1849/597 890/1850/598 +f 890/1850/598 895/1849/597 892/1842/601 891/1841/602 +f 896/1851/611 897/1852/596 898/1853/600 899/1854/612 +f 903/1855/610 904/1856/597 897/1852/596 896/1851/611 +f 899/1854/612 898/1853/600 905/1857/605 900/1858/609 +f 900/1858/609 905/1857/605 906/1859/603 901/1860/607 +f 901/1861/607 906/1862/603 907/1863/601 902/1864/608 +f 902/1864/608 907/1863/601 904/1856/597 903/1855/610 +f 908/1865/622 909/1866/621 910/1867/623 911/1868/624 +f 915/1869/620 916/1870/619 909/1866/621 908/1865/622 +f 911/1868/624 910/1867/623 917/1871/618 912/1872/617 +f 912/1872/617 917/1871/618 918/1873/614 913/1874/613 +f 913/1875/613 918/1876/614 919/1877/615 914/1878/616 +f 914/1878/616 919/1877/615 916/1870/619 915/1869/620 +f 920/1879/629 921/1880/614 922/1881/618 923/1882/630 +f 927/1883/628 928/1884/615 921/1880/614 920/1879/629 +f 923/1882/630 922/1881/618 929/1885/623 924/1886/627 +f 924/1886/627 929/1885/623 930/1887/621 925/1888/625 +f 925/1889/625 930/1890/621 931/1891/619 926/1892/626 +f 926/1892/626 931/1891/619 928/1884/615 927/1883/628 +f 932/1893/640 933/1894/639 934/1895/641 935/1896/642 +f 939/1897/638 940/1898/637 933/1894/639 932/1893/640 +f 935/1896/642 934/1895/641 941/1899/636 936/1900/635 +f 936/1900/635 941/1899/636 942/1901/632 937/1902/631 +f 937/1903/631 942/1904/632 943/1905/633 938/1906/634 +f 938/1906/634 943/1905/633 940/1898/637 939/1897/638 +f 944/1907/647 945/1908/632 946/1909/636 947/1910/648 +f 951/1911/646 952/1912/633 945/1908/632 944/1907/647 +f 947/1910/648 946/1909/636 953/1913/641 948/1914/645 +f 948/1914/645 953/1913/641 954/1915/639 949/1916/643 +f 949/1917/643 954/1918/639 955/1919/637 950/1920/644 +f 950/1920/644 955/1919/637 952/1912/633 951/1911/646 +f 956/1921/658 957/1922/657 958/1923/659 959/1924/660 +f 963/1925/656 964/1926/655 957/1922/657 956/1921/658 +f 959/1924/660 958/1923/659 965/1927/654 960/1928/653 +f 960/1928/653 965/1927/654 966/1929/650 961/1930/649 +f 961/1931/649 966/1932/650 967/1933/651 962/1934/652 +f 962/1934/652 967/1933/651 964/1926/655 963/1925/656 +f 968/1935/665 969/1936/650 970/1937/654 971/1938/666 +f 975/1939/664 976/1940/651 969/1936/650 968/1935/665 +f 971/1938/666 970/1937/654 977/1941/659 972/1942/663 +f 972/1942/663 977/1941/659 978/1943/657 973/1944/661 +f 973/1945/661 978/1946/657 979/1947/655 974/1948/662 +f 974/1948/662 979/1947/655 976/1940/651 975/1939/664 +f 985/1949/308 724/1570/533 725/1569/532 333/1950/315 +f 1010/1951/136 322/1952/133 727/1575/538 732/1585/544 +f 736/1174/311 323/1173/138 1010/1951/136 732/1585/544 +f 999/1953/307 728/1582/541 724/1570/533 985/1949/308 +f 989/1566/137 990/1954/324 707/1526/499 706/1524/497 +f 1000/1171/309 77/809/168 81/802/161 1001/801/160 +f 726/1573/536 321/1955/134 333/1950/315 725/1569/532 +f 727/1575/538 322/1952/133 321/1955/134 726/1573/536 +f 331/1956/317 770/1682/580 766/1644/566 330/1643/201 +f 1007/1957/150 1006/1655/149 768/1656/572 772/1688/582 +f 1009/1958/210 1014/1959/218 776/1701/588 780/1709/591 +f 1007/1957/150 772/1688/582 776/1701/588 1014/1959/218 +f 1015/1429/211 784/1716/594 782/1693/583 1024/1692/322 +f 1022/1960/321 721/1556/527 720/1553/524 1023/1680/222 +f 778/1694/584 774/1697/586 1008/1961/319 332/1695/318 +f 1015/1429/211 1009/1958/210 780/1709/591 784/1716/594 +f 1000/1962/309 734/1591/548 728/1582/541 999/1953/307 +f 722/1557/528 721/1556/527 1022/1960/321 338/1576/316 +f 1008/1961/319 774/1697/586 770/1682/580 331/1956/317 +f 1017/1691/320 716/1546/517 715/1544/515 997/1658/140 +f 1000/1962/309 1001/1579/160 738/1578/539 734/1591/548 +f 1057/1652/571 1025/1651/570 1050/1495/468 1058/1494/467 +f 337/1963/193 1020/1964/182 693/1498/471 692/1497/470 +f 1020/1964/182 1018/1965/181 694/1501/474 693/1498/471 +f 1018/1965/181 335/1966/171 695/1503/476 694/1501/474 +f 335/1966/171 327/1967/163 696/1505/478 695/1503/476 +f 327/1967/163 326/1968/153 697/1507/480 696/1505/478 +f 326/1968/153 980/1567/152 698/1509/482 697/1507/480 +f 990/1954/324 991/1969/330 708/1529/502 707/1526/499 +f 991/1969/330 992/1970/329 709/1530/503 708/1529/502 +f 992/1970/329 993/1971/328 710/1533/506 709/1530/503 +f 993/1972/328 994/1973/327 711/1536/507 710/1535/506 +f 994/1973/327 336/1974/326 712/1539/510 711/1536/507 +f 336/1974/326 995/1975/325 713/1540/511 712/1539/510 +f 995/1975/325 996/1657/139 714/1542/513 713/1540/511 +f 723/1559/530 1021/1577/194 337/1963/193 692/1497/470 +f 1003/1976/333 325/1593/332 748/1594/550 752/1635/556 +f 328/1595/178 1019/1619/177 754/1622/559 750/1596/551 +f 1013/1639/335 1012/1615/334 756/1618/557 760/1640/564 +f 1004/1620/190 329/1642/189 762/1645/567 758/1621/558 +f 1153/1977/667 1154/1978/668 1155/1979/669 1156/1980/670 +f 1160/1981/671 1161/1982/672 1154/1978/668 1153/1977/667 +f 1156/1980/670 1155/1979/669 1162/1983/673 1157/1984/674 +f 1157/1984/674 1162/1983/673 1163/1985/675 1158/1986/676 +f 1158/1987/676 1163/1988/675 1164/1989/677 1159/1990/678 +f 1159/1990/678 1164/1989/677 1161/1982/672 1160/1981/671 +f 1165/1991/679 1166/1992/675 1167/1993/673 1168/1994/680 +f 1172/1995/681 1173/1996/677 1166/1992/675 1165/1991/679 +f 1168/1994/680 1167/1993/673 1174/1997/669 1169/1998/682 +f 1169/1998/682 1174/1997/669 1175/1999/668 1170/2000/683 +f 1170/2001/683 1175/2002/668 1176/2003/672 1171/2004/684 +f 1171/2004/684 1176/2003/672 1173/1996/677 1172/1995/681 +f 1177/2005/685 1178/2006/1 1179/2007/686 1180/2008/687 +f 1184/2009/688 1185/2010/689 1178/2006/1 1177/2005/685 +f 1180/2008/687 1179/2007/686 1186/2011/690 1181/2012/691 +f 1181/2012/691 1186/2011/690 1187/2013/2 1182/2014/692 +f 1182/2015/692 1187/2016/2 1188/2017/693 1183/2018/694 +f 1183/2018/694 1188/2017/693 1185/2010/689 1184/2009/688 +f 1189/2019/695 1190/2020/2 1191/2021/690 1192/2022/696 +f 1196/2023/697 1197/2024/693 1190/2020/2 1189/2019/695 +f 1192/2022/696 1191/2021/690 1198/2025/686 1193/2026/698 +f 1193/2026/698 1198/2025/686 1199/2027/1 1194/2028/699 +f 1194/2029/699 1199/2030/1 1200/2031/689 1195/2032/700 +f 1195/2032/700 1200/2031/689 1197/2024/693 1196/2023/697 +f 1201/2033/701 1202/2034/702 1203/2035/703 1204/2036/704 +f 1208/2037/705 1209/2038/706 1202/2034/702 1201/2033/701 +f 1204/2036/704 1203/2035/703 1210/2039/707 1205/2040/708 +f 1205/2040/708 1210/2039/707 1211/2041/709 1206/2042/710 +f 1206/2043/710 1211/2044/709 1212/2045/711 1207/2046/712 +f 1207/2046/712 1212/2045/711 1209/2038/706 1208/2037/705 +f 1213/2047/713 1214/2048/709 1215/2049/707 1216/2050/714 +f 1220/2051/715 1221/2052/711 1214/2048/709 1213/2047/713 +f 1216/2050/714 1215/2049/707 1222/2053/703 1217/2054/716 +f 1217/2054/716 1222/2053/703 1223/2055/702 1218/2056/717 +f 1218/2057/717 1223/2058/702 1224/2059/706 1219/2060/718 +f 1219/2060/718 1224/2059/706 1221/2052/711 1220/2051/715 +f 1225/2061/719 1226/2062/390 1227/2063/720 1228/2064/721 +f 1232/2065/722 1233/2066/723 1226/2062/390 1225/2061/719 +f 1228/2064/721 1227/2063/720 1234/2067/724 1229/2068/725 +f 1229/2068/725 1234/2067/724 1235/2069/397 1230/2070/726 +f 1230/2071/726 1235/2072/397 1236/2073/727 1231/2074/728 +f 1231/2074/728 1236/2073/727 1233/2066/723 1232/2065/722 +f 1237/2075/729 1238/2076/397 1239/2077/724 1240/2078/730 +f 1244/2079/731 1245/2080/727 1238/2076/397 1237/2075/729 +f 1240/2078/730 1239/2077/724 1246/2081/720 1241/2082/732 +f 1241/2082/732 1246/2081/720 1247/2083/390 1242/2084/733 +f 1242/2085/733 1247/2086/390 1248/2087/723 1243/2088/734 +f 1243/2088/734 1248/2087/723 1245/2080/727 1244/2079/731 +f 1249/2089/676 1250/2090/675 1251/2091/677 1252/2092/678 +f 1256/2093/674 1257/2094/673 1250/2090/675 1249/2089/676 +f 1252/2092/678 1251/2091/677 1258/2095/672 1253/2096/671 +f 1253/2096/671 1258/2095/672 1259/2097/668 1254/2098/667 +f 1254/2099/667 1259/2100/668 1260/2101/669 1255/2102/670 +f 1255/2102/670 1260/2101/669 1257/2094/673 1256/2093/674 +f 1261/2103/683 1262/2104/668 1263/2105/672 1264/2106/684 +f 1268/2107/682 1269/2108/669 1262/2104/668 1261/2103/683 +f 1264/2106/684 1263/2105/672 1270/2109/677 1265/2110/681 +f 1265/2110/681 1270/2109/677 1271/2111/675 1266/2112/679 +f 1266/2113/679 1271/2114/675 1272/2115/673 1267/2116/680 +f 1267/2116/680 1272/2115/673 1269/2108/669 1268/2107/682 +f 1273/2117/692 1274/2118/2 1275/2119/693 1276/2120/694 +f 1280/2121/691 1281/2122/690 1274/2118/2 1273/2117/692 +f 1276/2120/694 1275/2119/693 1282/2123/689 1277/2124/688 +f 1277/2124/688 1282/2123/689 1283/2125/1 1278/2126/685 +f 1278/2127/685 1283/2128/1 1284/2129/686 1279/2130/687 +f 1279/2130/687 1284/2129/686 1281/2122/690 1280/2121/691 +f 1285/2131/699 1286/2132/1 1287/2133/689 1288/2134/700 +f 1292/2135/698 1293/2136/686 1286/2132/1 1285/2131/699 +f 1288/2134/700 1287/2133/689 1294/2137/693 1289/2138/697 +f 1289/2138/697 1294/2137/693 1295/2139/2 1290/2140/695 +f 1290/2141/695 1295/2142/2 1296/2143/690 1291/2144/696 +f 1291/2144/696 1296/2143/690 1293/2136/686 1292/2135/698 +f 1297/2145/710 1298/2146/709 1299/2147/711 1300/2148/712 +f 1304/2149/708 1305/2150/707 1298/2146/709 1297/2145/710 +f 1300/2148/712 1299/2147/711 1306/2151/706 1301/2152/705 +f 1301/2152/705 1306/2151/706 1307/2153/702 1302/2154/701 +f 1302/2155/701 1307/2156/702 1308/2157/703 1303/2158/704 +f 1303/2158/704 1308/2157/703 1305/2150/707 1304/2149/708 +f 1309/2159/717 1310/2160/702 1311/2161/706 1312/2162/718 +f 1316/2163/716 1317/2164/703 1310/2160/702 1309/2159/717 +f 1312/2162/718 1311/2161/706 1318/2165/711 1313/2166/715 +f 1313/2166/715 1318/2165/711 1319/2167/709 1314/2168/713 +f 1314/2169/713 1319/2170/709 1320/2171/707 1315/2172/714 +f 1315/2172/714 1320/2171/707 1317/2164/703 1316/2163/716 +f 1321/2173/726 1322/2174/397 1323/2175/727 1324/2176/728 +f 1328/2177/725 1329/2178/724 1322/2174/397 1321/2173/726 +f 1324/2176/728 1323/2175/727 1330/2179/723 1325/2180/722 +f 1325/2180/722 1330/2179/723 1331/2181/390 1326/2182/719 +f 1326/2183/719 1331/2184/390 1332/2185/720 1327/2186/721 +f 1327/2186/721 1332/2185/720 1329/2178/724 1328/2177/725 +f 1333/2187/733 1334/2188/390 1335/2189/723 1336/2190/734 +f 1340/2191/732 1341/2192/720 1334/2188/390 1333/2187/733 +f 1336/2190/734 1335/2189/723 1342/2193/727 1337/2194/731 +f 1337/2194/731 1342/2193/727 1343/2195/397 1338/2196/729 +f 1338/2197/729 1343/2198/397 1344/2199/724 1339/2200/730 +f 1339/2200/730 1344/2199/724 1341/2192/720 1340/2191/732 diff --git a/mods/pipeworks/models/pipeworks_pipe_8_lowpoly.obj b/mods/pipeworks/models/pipeworks_pipe_8_lowpoly.obj new file mode 100644 index 00000000..12d01297 --- /dev/null +++ b/mods/pipeworks/models/pipeworks_pipe_8_lowpoly.obj @@ -0,0 +1,520 @@ +# Blender v2.78 (sub 0) OBJ File: '' +# www.blender.org +o Cylinder.002_Cylinder.006_None.003_Cylinder.002_Cylinder.00.000 +v 0.468750 -0.156250 0.064721 +v 0.468750 -0.064721 0.156250 +v 0.468750 0.064721 0.156250 +v 0.468750 0.156250 0.064721 +v 0.468750 0.156250 -0.064721 +v 0.468750 0.064721 -0.156250 +v 0.468750 -0.064721 -0.156250 +v 0.468750 -0.156250 -0.064721 +v 0.500000 -0.064721 0.156250 +v 0.500000 -0.156250 0.064721 +v 0.500000 -0.156250 -0.064721 +v 0.500000 -0.064721 -0.156250 +v 0.500000 0.064721 -0.156250 +v 0.500000 0.156250 -0.064721 +v 0.500000 0.156250 0.064721 +v 0.500000 0.064721 0.156250 +v -0.500000 -0.156250 0.064721 +v -0.500000 -0.064721 0.156250 +v -0.500000 0.064721 0.156250 +v -0.500000 0.156250 0.064721 +v -0.500000 0.156250 -0.064721 +v -0.500000 0.064721 -0.156250 +v -0.500000 -0.064721 -0.156250 +v -0.500000 -0.156250 -0.064721 +v -0.468750 -0.064721 0.156250 +v -0.468750 -0.156250 0.064721 +v -0.468750 -0.156250 -0.064721 +v -0.468750 -0.064721 -0.156250 +v -0.468750 0.064721 -0.156250 +v -0.468750 0.156250 -0.064721 +v -0.468750 0.156250 0.064721 +v -0.468750 0.064721 0.156250 +v 0.156250 0.468750 0.064721 +v 0.064721 0.468750 0.156250 +v -0.064721 0.468750 0.156250 +v -0.156250 0.468750 0.064721 +v -0.156250 0.468750 -0.064721 +v -0.064721 0.468750 -0.156250 +v 0.064721 0.468750 -0.156250 +v 0.156250 0.468750 -0.064721 +v 0.064721 0.500000 0.156250 +v 0.156250 0.500000 0.064721 +v 0.156250 0.500000 -0.064721 +v 0.064721 0.500000 -0.156250 +v -0.064721 0.500000 -0.156250 +v -0.156250 0.500000 -0.064721 +v -0.156250 0.500000 0.064721 +v -0.064721 0.500000 0.156250 +v 0.156250 -0.500000 0.064721 +v 0.064721 -0.500000 0.156250 +v -0.064721 -0.500000 0.156250 +v -0.156250 -0.500000 0.064721 +v -0.156250 -0.500000 -0.064721 +v -0.064721 -0.500000 -0.156250 +v 0.064721 -0.500000 -0.156250 +v 0.156250 -0.500000 -0.064721 +v 0.064721 -0.468750 0.156250 +v 0.156250 -0.468750 0.064721 +v 0.156250 -0.468750 -0.064721 +v 0.064721 -0.468750 -0.156250 +v -0.064721 -0.468750 -0.156250 +v -0.156250 -0.468750 -0.064721 +v -0.156250 -0.468750 0.064721 +v -0.064721 -0.468750 0.156250 +v 0.468750 -0.051777 0.125000 +v 0.468750 -0.125000 0.051777 +v 0.468750 -0.125000 -0.051777 +v 0.468750 -0.051777 -0.125000 +v 0.468750 0.051777 -0.125000 +v 0.468750 0.125000 -0.051777 +v 0.468750 0.125000 0.051777 +v 0.468750 0.051777 0.125000 +v -0.468750 -0.125000 0.051777 +v -0.468750 -0.051777 0.125000 +v -0.468750 0.051777 0.125000 +v -0.468750 0.125000 0.051777 +v -0.468750 0.125000 -0.051777 +v -0.468750 0.051777 -0.125000 +v -0.468750 -0.051777 -0.125000 +v -0.468750 -0.125000 -0.051777 +v 0.125000 0.125000 0.051777 +v 0.051777 0.051777 0.125000 +v 0.051777 -0.051777 0.125000 +v 0.125000 -0.125000 0.051777 +v 0.051777 0.051777 -0.125000 +v 0.125000 0.125000 -0.051777 +v -0.051777 -0.051777 -0.125000 +v -0.125000 -0.125000 -0.051777 +v -0.125000 -0.125000 0.051777 +v -0.051777 -0.051777 0.125000 +v -0.125000 0.125000 -0.051777 +v -0.051777 0.051777 -0.125000 +v -0.125000 0.125000 0.051777 +v 0.125000 -0.125000 -0.051777 +v 0.051777 0.468750 0.125000 +v 0.125000 0.468750 0.051777 +v 0.125000 0.468750 -0.051777 +v 0.051777 0.468750 -0.125000 +v -0.051777 0.468750 -0.125000 +v -0.125000 0.468750 -0.051777 +v -0.125000 0.468750 0.051777 +v -0.051777 0.468750 0.125000 +v 0.125000 -0.468750 0.051777 +v 0.051777 -0.468750 0.125000 +v -0.051777 -0.468750 0.125000 +v -0.125000 -0.468750 0.051777 +v -0.125000 -0.468750 -0.051777 +v -0.051777 -0.468750 -0.125000 +v 0.051777 -0.468750 -0.125000 +v 0.125000 -0.468750 -0.051777 +v -0.051777 0.051777 0.125000 +v 0.051777 -0.051777 -0.125000 +vt 0.7188 0.8906 +vt 0.6250 0.9844 +vt 0.5000 0.9844 +vt 0.4062 0.8906 +vt 0.4062 0.7656 +vt 0.5000 0.6719 +vt 0.6250 0.6719 +vt 0.7188 0.7656 +vt 0.2500 0.9844 +vt 0.3438 0.8906 +vt 0.3438 0.7656 +vt 0.2500 0.6719 +vt 0.1250 0.6719 +vt 0.0312 0.7656 +vt 0.0312 0.8906 +vt 0.1250 0.9844 +vt 0.3438 0.8906 +vt 0.2500 0.9844 +vt 0.1250 0.9844 +vt 0.0312 0.8906 +vt 0.0312 0.7656 +vt 0.1250 0.6719 +vt 0.2500 0.6719 +vt 0.3438 0.7656 +vt 0.6250 0.9844 +vt 0.7188 0.8906 +vt 0.7188 0.7656 +vt 0.6250 0.6719 +vt 0.5000 0.6719 +vt 0.4062 0.7656 +vt 0.4062 0.8906 +vt 0.5000 0.9844 +vt 0.7188 0.8906 +vt 0.6250 0.9844 +vt 0.5000 0.9844 +vt 0.4062 0.8906 +vt 0.4062 0.7656 +vt 0.5000 0.6719 +vt 0.6250 0.6719 +vt 0.7188 0.7656 +vt 0.2500 0.9844 +vt 0.3438 0.8906 +vt 0.3438 0.7656 +vt 0.2500 0.6719 +vt 0.1250 0.6719 +vt 0.0312 0.7656 +vt 0.0312 0.8906 +vt 0.1250 0.9844 +vt 0.3438 0.8906 +vt 0.2500 0.9844 +vt 0.1250 0.9844 +vt 0.0312 0.8906 +vt 0.0312 0.7656 +vt 0.1250 0.6719 +vt 0.2500 0.6719 +vt 0.3438 0.7656 +vt 0.6250 0.9844 +vt 0.7188 0.8906 +vt 0.7188 0.7656 +vt 0.6250 0.6719 +vt 0.5000 0.6719 +vt 0.4062 0.7656 +vt 0.4062 0.8906 +vt 0.5000 0.9844 +vt 0.8125 0.5938 +vt 0.8125 0.5625 +vt 0.8750 0.5625 +vt 0.8750 0.5938 +vt 0.9375 0.5625 +vt 0.9375 0.5938 +vt 1.0000 0.5625 +vt 1.0000 0.5938 +vt 0.5000 0.5938 +vt 0.5000 0.5625 +vt 0.5625 0.5625 +vt 0.5625 0.5938 +vt 0.6250 0.5625 +vt 0.6250 0.5938 +vt 0.6875 0.5625 +vt 0.6875 0.5938 +vt 0.7500 0.5625 +vt 0.7500 0.5938 +vt 0.3750 0.5938 +vt 0.3750 0.5625 +vt 0.4375 0.5625 +vt 0.4375 0.5938 +vt 0.3125 0.5938 +vt 0.3125 0.5625 +vt 0.5000 0.5625 +vt 0.5000 0.5938 +vt 0.0000 0.5938 +vt 0.0000 0.5625 +vt 0.0625 0.5625 +vt 0.0625 0.5938 +vt 0.1250 0.5625 +vt 0.1250 0.5938 +vt 0.1875 0.5625 +vt 0.1875 0.5938 +vt 0.2500 0.5625 +vt 0.2500 0.5938 +vt 0.0000 1.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 1.0000 0.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 0.5000 0.0156 +vt 0.5000 0.2031 +vt 0.3750 0.2344 +vt 0.3750 0.0156 +vt 0.1250 0.0156 +vt 0.2500 0.0156 +vt 0.2500 0.2344 +vt 0.1250 0.2031 +vt 0.6250 0.0156 +vt 0.7500 0.0156 +vt 0.7500 0.2344 +vt 0.6250 0.2031 +vt 1.0000 0.5156 +vt 0.8750 0.5156 +vt 0.8750 0.2969 +vt 1.0000 0.3281 +vt 0.1250 0.5156 +vt 0.1250 0.3281 +vt 0.2500 0.2969 +vt 0.2500 0.5156 +vt 0.6250 0.5156 +vt 0.6250 0.3281 +vt 0.7500 0.2969 +vt 0.7500 0.5156 +vt 0.5000 0.5156 +vt 0.5000 0.3281 +vt -0.0000 0.5156 +vt -0.0000 0.3281 +vt -0.0000 0.2031 +vt -0.0000 0.0156 +vt 0.8125 0.5938 +vt 0.8125 0.5625 +vt 0.8750 0.5625 +vt 0.8750 0.5938 +vt 0.9375 0.5625 +vt 0.9375 0.5938 +vt 1.0000 0.5625 +vt 1.0000 0.5938 +vt 0.5000 0.5938 +vt 0.5000 0.5625 +vt 0.5625 0.5625 +vt 0.5625 0.5938 +vt 0.6250 0.5625 +vt 0.6250 0.5938 +vt 0.6875 0.5625 +vt 0.6875 0.5938 +vt 0.7500 0.5625 +vt 0.7500 0.5938 +vt 0.3750 0.5938 +vt 0.3750 0.5625 +vt 0.4375 0.5625 +vt 0.4375 0.5938 +vt 0.3125 0.5938 +vt 0.3125 0.5625 +vt 0.5000 0.5625 +vt 0.5000 0.5938 +vt 0.0000 0.5938 +vt 0.0000 0.5625 +vt 0.0625 0.5625 +vt 0.0625 0.5938 +vt 0.1250 0.5625 +vt 0.1250 0.5938 +vt 0.1875 0.5625 +vt 0.1875 0.5938 +vt 0.2500 0.5625 +vt 0.2500 0.5938 +vt 0.0000 1.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 1.0000 0.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 0.5000 0.0156 +vt 0.5000 0.2031 +vt 0.3750 0.2344 +vt 0.3750 0.0156 +vt 0.1250 0.0156 +vt 0.2500 0.0156 +vt 0.2500 0.2344 +vt 0.1250 0.2031 +vt 0.6250 0.0156 +vt 0.7500 0.0156 +vt 0.7500 0.2344 +vt 0.6250 0.2031 +vt 1.0000 0.0156 +vt 1.0000 0.2031 +vt 0.8750 0.2344 +vt 0.8750 0.0156 +vt 1.0000 0.5156 +vt 0.8750 0.5156 +vt 0.8750 0.2969 +vt 1.0000 0.3281 +vt 0.1250 0.5156 +vt 0.1250 0.3281 +vt 0.2500 0.2969 +vt 0.2500 0.5156 +vt 1.0000 0.0156 +vt 1.0000 0.2031 +vt 0.8750 0.2344 +vt 0.8750 0.0156 +vt 0.6250 0.5156 +vt 0.5000 0.5156 +vt 0.5000 0.3281 +vt 0.6250 0.3281 +vt -0.0000 0.5156 +vt -0.0000 0.3281 +vt 0.3750 0.5156 +vt 0.3750 0.2969 +vt 0.7500 0.2969 +vt 0.7500 0.5156 +vt -0.0000 0.2031 +vt -0.0000 0.0156 +vt 0.3750 0.5156 +vt 0.3750 0.2969 +vn -1.0000 0.0000 0.0000 +vn 1.0000 0.0000 0.0000 +vn 0.0000 -1.0000 0.0000 +vn 0.0000 1.0000 0.0000 +vn 0.6302 -0.2971 0.7173 +vn -0.6302 -0.2971 0.7173 +vn -0.6302 -0.7173 0.2971 +vn 0.6302 -0.7173 0.2971 +vn -0.6302 -0.7173 -0.2971 +vn 0.6302 -0.7173 -0.2971 +vn -0.6302 -0.2971 -0.7173 +vn 0.6302 -0.2971 -0.7173 +vn -0.6302 0.2971 -0.7173 +vn 0.6302 0.2971 -0.7173 +vn -0.6302 0.7173 -0.2971 +vn 0.6302 0.7173 -0.2971 +vn -0.6302 0.7173 0.2971 +vn 0.6302 0.7173 0.2971 +vn -0.6302 0.2971 0.7173 +vn 0.6302 0.2971 0.7173 +vn 0.6303 -0.2971 0.7173 +vn 0.6303 -0.7173 0.2971 +vn 0.6303 -0.7173 -0.2971 +vn 0.6303 -0.2971 -0.7173 +vn 0.6303 0.2971 -0.7173 +vn 0.6303 0.7173 -0.2971 +vn 0.6303 0.7173 0.2971 +vn 0.6303 0.2971 0.7173 +vn -0.6303 -0.7173 0.2971 +vn -0.6303 -0.2971 0.7173 +vn -0.6303 0.2971 0.7173 +vn -0.6303 0.7173 0.2971 +vn -0.6303 0.7173 -0.2971 +vn -0.6303 0.2971 -0.7173 +vn -0.6303 -0.2971 -0.7173 +vn -0.6303 -0.7173 -0.2971 +vn 0.5789 0.5789 0.5743 +vn 0.1101 0.1101 0.9878 +vn 0.1101 -0.1101 0.9878 +vn 0.5789 -0.5789 0.5743 +vn 0.1101 0.1101 -0.9878 +vn 0.5789 0.5789 -0.5743 +vn -0.1101 -0.1101 -0.9878 +vn -0.5789 -0.5789 -0.5743 +vn -0.5789 -0.5789 0.5743 +vn -0.1101 -0.1101 0.9878 +vn -0.5789 0.5789 -0.5743 +vn -0.1101 0.1101 -0.9878 +vn -0.5789 0.5789 0.5743 +vn 0.5789 -0.5789 -0.5743 +vn 0.2971 0.6302 0.7173 +vn 0.2971 -0.6302 0.7173 +vn 0.7173 -0.6302 0.2971 +vn 0.7173 0.6302 0.2971 +vn 0.7173 -0.6302 -0.2971 +vn 0.7173 0.6302 -0.2971 +vn 0.2971 -0.6302 -0.7173 +vn 0.2971 0.6302 -0.7173 +vn -0.2971 -0.6302 -0.7173 +vn -0.2971 0.6302 -0.7173 +vn -0.7173 -0.6302 -0.2971 +vn -0.7173 0.6302 -0.2971 +vn -0.7173 -0.6302 0.2971 +vn -0.7173 0.6302 0.2971 +vn -0.2971 -0.6302 0.7173 +vn -0.2971 0.6302 0.7173 +vn 0.2971 0.6303 0.7173 +vn 0.7173 0.6303 0.2971 +vn 0.7173 0.6303 -0.2971 +vn 0.2971 0.6303 -0.7173 +vn -0.2971 0.6303 -0.7173 +vn -0.7173 0.6303 -0.2971 +vn -0.7173 0.6303 0.2971 +vn -0.2971 0.6303 0.7173 +vn 0.7173 -0.6303 0.2971 +vn 0.2971 -0.6303 0.7173 +vn -0.2971 -0.6303 0.7173 +vn -0.7173 -0.6303 0.2971 +vn -0.7173 -0.6303 -0.2971 +vn -0.2971 -0.6303 -0.7173 +vn 0.2971 -0.6303 -0.7173 +vn 0.7173 -0.6303 -0.2971 +vn -0.1101 0.1101 0.9878 +vn 0.1101 -0.1101 -0.9878 +g Cylinder.002_Cylinder.006_None.003_Cylinder.002_Cylinder.00.000_Cylinder.002_Cylinder.006_None.003_Cylinder.002_Cylinder.00.000_None +s off +f 1/1/1 2/2/1 3/3/1 4/4/1 5/5/1 6/6/1 7/7/1 8/8/1 +f 9/9/2 10/10/2 11/11/2 12/12/2 13/13/2 14/14/2 15/15/2 16/16/2 +f 17/17/1 18/18/1 19/19/1 20/20/1 21/21/1 22/22/1 23/23/1 24/24/1 +f 25/25/2 26/26/2 27/27/2 28/28/2 29/29/2 30/30/2 31/31/2 32/32/2 +f 33/33/3 34/34/3 35/35/3 36/36/3 37/37/3 38/38/3 39/39/3 40/40/3 +f 41/41/4 42/42/4 43/43/4 44/44/4 45/45/4 46/46/4 47/47/4 48/48/4 +f 49/49/3 50/50/3 51/51/3 52/52/3 53/53/3 54/54/3 55/55/3 56/56/3 +f 57/57/4 58/58/4 59/59/4 60/60/4 61/61/4 62/62/4 63/63/4 64/64/4 +s 1 +f 9/65/5 2/66/6 1/67/7 10/68/8 +f 10/68/8 1/67/7 8/69/9 11/70/10 +f 11/70/10 8/69/9 7/71/11 12/72/12 +f 12/73/12 7/74/11 6/75/13 13/76/14 +f 13/76/14 6/75/13 5/77/15 14/78/16 +f 14/78/16 5/77/15 4/79/17 15/80/18 +f 15/80/18 4/79/17 3/81/19 16/82/20 +f 16/82/20 3/81/19 2/66/6 9/65/5 +f 26/83/8 17/84/7 24/85/9 27/86/10 +f 25/87/5 18/88/6 17/84/7 26/83/8 +f 27/86/10 24/85/9 23/89/11 28/90/12 +f 28/91/12 23/92/11 22/93/13 29/94/14 +f 29/94/14 22/93/13 21/95/15 30/96/16 +f 30/96/16 21/95/15 20/97/17 31/98/18 +f 31/98/18 20/97/17 19/99/19 32/100/20 +f 32/100/20 19/99/19 18/88/6 25/87/5 +f 65/101/21 66/102/22 67/103/23 68/104/24 69/105/25 70/106/26 71/107/27 72/108/28 +f 73/109/29 74/110/30 75/111/31 76/112/32 77/113/33 78/114/34 79/115/35 80/116/36 +f 71/117/27 81/118/37 82/119/38 72/120/28 +f 66/121/22 65/122/21 83/123/39 84/124/40 +f 70/125/26 69/126/25 85/127/41 86/128/42 +f 80/129/36 79/130/35 87/131/43 88/132/44 +f 73/133/29 89/134/45 90/135/46 74/136/30 +f 77/137/33 91/138/47 92/139/48 78/140/34 +f 77/137/33 76/141/32 93/142/49 91/138/47 +f 73/133/29 80/143/36 88/144/44 89/134/45 +f 70/125/26 86/128/42 81/118/37 71/117/27 +f 66/121/22 84/124/40 94/145/50 67/146/23 +f 41/147/51 34/148/52 33/149/53 42/150/54 +f 42/150/54 33/149/53 40/151/55 43/152/56 +f 43/152/56 40/151/55 39/153/57 44/154/58 +f 44/155/58 39/156/57 38/157/59 45/158/60 +f 45/158/60 38/157/59 37/159/61 46/160/62 +f 46/160/62 37/159/61 36/161/63 47/162/64 +f 47/162/64 36/161/63 35/163/65 48/164/66 +f 48/164/66 35/163/65 34/148/52 41/147/51 +f 58/165/54 49/166/53 56/167/55 59/168/56 +f 57/169/51 50/170/52 49/166/53 58/165/54 +f 59/168/56 56/167/55 55/171/57 60/172/58 +f 60/173/58 55/174/57 54/175/59 61/176/60 +f 61/176/60 54/175/59 53/177/61 62/178/62 +f 62/178/62 53/177/61 52/179/63 63/180/64 +f 63/180/64 52/179/63 51/181/65 64/182/66 +f 64/182/66 51/181/65 50/170/52 57/169/51 +f 95/183/67 96/184/68 97/185/69 98/186/70 99/187/71 100/188/72 101/189/73 102/190/74 +f 103/191/75 104/192/76 105/193/77 106/194/78 107/195/79 108/196/80 109/197/81 110/198/82 +f 101/199/73 93/200/49 111/201/83 102/202/74 +f 96/203/68 95/204/67 82/205/38 81/206/37 +f 100/207/72 99/208/71 92/209/48 91/210/47 +f 97/211/69 86/212/42 85/213/41 98/214/70 +f 110/215/82 109/216/81 112/217/84 94/218/50 +f 103/219/75 84/220/40 83/221/39 104/222/76 +f 67/223/23 94/224/50 112/225/84 68/226/24 +f 107/227/79 106/228/78 89/229/45 88/230/44 +f 103/219/75 110/231/82 94/232/50 84/220/40 +f 105/233/77 90/234/46 89/229/45 106/228/78 +f 107/227/79 88/230/44 87/235/43 108/236/80 +f 100/207/72 91/210/47 93/200/49 101/199/73 +f 96/203/68 81/206/37 86/237/42 97/238/69 +f 75/239/31 111/240/83 93/142/49 76/141/32 +f 68/226/24 112/217/84 85/127/41 69/126/25 +f 108/236/80 87/131/43 112/217/84 109/216/81 +f 87/131/43 79/130/35 78/140/34 92/209/48 +f 112/217/84 87/131/43 92/209/48 85/127/41 +f 104/222/76 83/123/39 90/234/46 105/233/77 +f 72/120/28 82/205/38 83/123/39 65/122/21 +f 82/205/38 95/204/67 102/202/74 111/240/83 +f 83/123/39 82/205/38 111/240/83 90/234/46 +f 92/209/48 99/208/71 98/214/70 85/127/41 +f 111/240/83 75/239/31 74/136/30 90/234/46 diff --git a/mods/pipeworks/models/pipeworks_pipe_9.obj b/mods/pipeworks/models/pipeworks_pipe_9.obj new file mode 100644 index 00000000..23c46632 --- /dev/null +++ b/mods/pipeworks/models/pipeworks_pipe_9.obj @@ -0,0 +1,6721 @@ +# Blender v2.78 (sub 0) OBJ File: '' +# www.blender.org +o Pipe_Cylinder.002_None +v -0.460912 0.130078 -0.063644 +v -0.460912 0.139022 -0.062467 +v -0.460912 0.142474 -0.054132 +v -0.460912 0.136982 -0.046976 +v -0.460912 0.128039 -0.048153 +v -0.460912 0.124587 -0.056487 +v 0.460914 0.136982 -0.046976 +v 0.460914 0.142474 -0.054133 +v 0.460914 0.139022 -0.062467 +v 0.460914 0.130078 -0.063644 +v 0.460914 0.124587 -0.056488 +v 0.460914 0.128039 -0.048153 +v -0.460912 0.046976 -0.136982 +v -0.460912 0.054133 -0.142474 +v -0.460912 0.062467 -0.139022 +v -0.460912 0.063644 -0.130078 +v -0.460912 0.056488 -0.124587 +v -0.460912 0.048154 -0.128039 +v 0.460914 0.063644 -0.130078 +v 0.460914 0.062467 -0.139022 +v 0.460914 0.054133 -0.142474 +v 0.460914 0.046976 -0.136982 +v 0.460914 0.048153 -0.128039 +v 0.460914 0.056487 -0.124587 +v -0.460912 -0.063644 -0.130078 +v -0.460912 -0.062467 -0.139022 +v -0.460912 -0.054132 -0.142474 +v -0.460912 -0.046976 -0.136982 +v -0.460912 -0.048153 -0.128039 +v -0.460912 -0.056487 -0.124587 +v 0.460914 -0.046976 -0.136982 +v 0.460914 -0.054133 -0.142474 +v 0.460914 -0.062467 -0.139022 +v 0.460914 -0.063644 -0.130078 +v 0.460914 -0.056488 -0.124587 +v 0.460914 -0.048153 -0.128039 +v -0.460912 -0.136982 -0.046976 +v -0.460912 -0.142474 -0.054133 +v -0.460912 -0.139022 -0.062467 +v -0.460912 -0.130078 -0.063644 +v -0.460912 -0.124587 -0.056488 +v -0.460912 -0.128039 -0.048153 +v 0.460914 -0.130078 -0.063644 +v 0.460914 -0.139022 -0.062467 +v 0.460914 -0.142474 -0.054133 +v 0.460914 -0.136982 -0.046976 +v 0.460914 -0.128039 -0.048153 +v 0.460914 -0.124587 -0.056487 +v -0.460912 -0.130078 0.063644 +v -0.460912 -0.139022 0.062467 +v -0.460912 -0.142474 0.054132 +v -0.460912 -0.136982 0.046976 +v -0.460912 -0.128039 0.048153 +v -0.460912 -0.124587 0.056487 +v 0.460914 -0.136982 0.046976 +v 0.460914 -0.142474 0.054133 +v 0.460914 -0.139022 0.062467 +v 0.460914 -0.130078 0.063644 +v 0.460914 -0.124587 0.056487 +v 0.460914 -0.128039 0.048153 +v -0.460912 -0.046976 0.136982 +v -0.460912 -0.054133 0.142474 +v -0.460912 -0.062467 0.139022 +v -0.460912 -0.063644 0.130078 +v -0.460912 -0.056488 0.124587 +v -0.460912 -0.048153 0.128039 +v 0.460914 -0.063644 0.130078 +v 0.460914 -0.062467 0.139022 +v 0.460914 -0.054132 0.142474 +v 0.460914 -0.046976 0.136982 +v 0.460914 -0.048153 0.128039 +v 0.460914 -0.056487 0.124587 +v -0.460912 0.063644 0.130078 +v -0.460912 0.062467 0.139022 +v -0.460912 0.054132 0.142474 +v -0.460912 0.046976 0.136982 +v -0.460912 0.048153 0.128039 +v -0.460912 0.056487 0.124587 +v 0.460914 0.046976 0.136982 +v 0.460914 0.054133 0.142474 +v 0.460914 0.062467 0.139022 +v 0.460914 0.063644 0.130078 +v 0.460914 0.056487 0.124587 +v 0.460914 0.048153 0.128039 +v -0.460912 0.136982 0.046976 +v -0.460912 0.142474 0.054133 +v -0.460912 0.139022 0.062467 +v -0.460912 0.130078 0.063644 +v -0.460912 0.124587 0.056488 +v -0.460912 0.128039 0.048153 +v 0.460914 0.130078 0.063644 +v 0.460914 0.139022 0.062467 +v 0.460914 0.142474 0.054133 +v 0.460914 0.136982 0.046976 +v 0.460914 0.128039 0.048153 +v 0.460914 0.124587 0.056487 +v 0.468750 0.099603 0.121367 +v 0.468750 0.121367 0.099603 +v 0.468750 0.138467 0.074012 +v 0.468750 0.150245 0.045576 +v 0.468750 0.156250 0.015389 +v 0.468750 0.156250 -0.015389 +v 0.468750 0.150245 -0.045576 +v 0.468750 0.138467 -0.074012 +v 0.468750 0.121367 -0.099603 +v 0.468750 0.099603 -0.121367 +v 0.468750 0.074012 -0.138467 +v 0.468750 0.045576 -0.150245 +v 0.468750 0.015389 -0.156250 +v 0.468750 -0.015389 -0.156250 +v 0.468750 -0.045576 -0.150245 +v 0.468750 -0.074012 -0.138467 +v 0.468750 -0.099603 -0.121367 +v 0.468750 -0.121367 -0.099603 +v 0.468750 -0.138467 -0.074012 +v 0.468750 -0.150245 -0.045576 +v 0.468750 -0.156250 -0.015389 +v 0.468750 -0.156250 0.015389 +v 0.468750 -0.150245 0.045576 +v 0.468750 -0.138466 0.074012 +v 0.468750 -0.121367 0.099603 +v 0.468750 -0.099603 0.121367 +v 0.468750 -0.074012 0.138467 +v 0.468750 -0.045576 0.150245 +v 0.468750 -0.015389 0.156250 +v 0.468750 0.015390 0.156250 +v 0.468750 0.045577 0.150245 +v 0.468750 0.074012 0.138467 +v 0.500000 -0.150245 -0.045576 +v 0.500000 -0.138467 -0.074012 +v 0.500000 -0.121367 -0.099603 +v 0.500000 -0.099603 -0.121367 +v 0.500000 -0.074012 -0.138467 +v 0.500000 -0.045576 -0.150245 +v 0.500000 -0.015389 -0.156250 +v 0.500000 0.015389 -0.156250 +v 0.500000 0.045576 -0.150245 +v 0.500000 0.074012 -0.138467 +v 0.500000 0.099603 -0.121367 +v 0.500000 0.121367 -0.099603 +v 0.500000 0.138467 -0.074012 +v 0.500000 0.150245 -0.045576 +v 0.500000 0.156250 -0.015389 +v 0.500000 0.156250 0.015389 +v 0.500000 0.150245 0.045576 +v 0.500000 0.138467 0.074012 +v 0.500000 0.121367 0.099603 +v 0.500000 0.099603 0.121367 +v 0.500000 0.074012 0.138467 +v 0.500000 0.045577 0.150245 +v 0.500000 0.015390 0.156250 +v 0.500000 -0.015389 0.156250 +v 0.500000 -0.045576 0.150245 +v 0.500000 -0.074012 0.138467 +v 0.500000 -0.099603 0.121367 +v 0.500000 -0.121367 0.099603 +v 0.500000 -0.138466 0.074012 +v 0.500000 -0.150245 0.045576 +v 0.500000 -0.156250 0.015389 +v 0.500000 -0.156250 -0.015389 +v -0.468750 -0.156250 -0.015389 +v -0.468750 -0.150245 -0.045576 +v -0.468750 -0.138467 -0.074012 +v -0.468750 -0.121367 -0.099603 +v -0.468750 -0.099603 -0.121367 +v -0.468750 -0.074012 -0.138467 +v -0.468750 -0.045576 -0.150245 +v -0.468750 -0.015389 -0.156250 +v -0.468750 0.015389 -0.156250 +v -0.468750 0.045576 -0.150245 +v -0.468750 0.074012 -0.138467 +v -0.468750 0.099603 -0.121367 +v -0.468750 0.121367 -0.099603 +v -0.468750 0.138467 -0.074012 +v -0.468750 0.150245 -0.045576 +v -0.468750 0.156250 -0.015389 +v -0.468750 0.156249 0.015389 +v -0.468750 0.150245 0.045577 +v -0.468750 0.138466 0.074012 +v -0.468750 0.121367 0.099603 +v -0.468750 0.099603 0.121367 +v -0.468750 0.074012 0.138467 +v -0.468750 0.045576 0.150245 +v -0.468750 0.015389 0.156250 +v -0.468750 -0.015389 0.156250 +v -0.468750 -0.045576 0.150245 +v -0.468750 -0.074012 0.138467 +v -0.468750 -0.099603 0.121367 +v -0.468750 -0.121367 0.099603 +v -0.468750 -0.138466 0.074012 +v -0.468750 -0.150245 0.045576 +v -0.468750 -0.156250 0.015389 +v -0.500000 -0.138467 0.074012 +v -0.500000 -0.121367 0.099603 +v -0.500000 -0.099603 0.121367 +v -0.500000 -0.074012 0.138467 +v -0.500000 -0.045576 0.150245 +v -0.500000 -0.015389 0.156250 +v -0.500000 0.015389 0.156250 +v -0.500000 0.045576 0.150245 +v -0.500000 0.074012 0.138467 +v -0.500000 0.099603 0.121367 +v -0.500000 0.121367 0.099603 +v -0.500000 0.138466 0.074012 +v -0.500000 0.150245 0.045577 +v -0.500000 0.156250 0.015389 +v -0.500000 0.156250 -0.015389 +v -0.500000 0.150245 -0.045576 +v -0.500000 0.138467 -0.074012 +v -0.500000 0.121367 -0.099603 +v -0.500000 0.099603 -0.121367 +v -0.500000 0.074012 -0.138467 +v -0.500000 0.045576 -0.150245 +v -0.500000 0.015389 -0.156250 +v -0.500000 -0.015389 -0.156250 +v -0.500000 -0.045576 -0.150245 +v -0.500000 -0.074012 -0.138467 +v -0.500000 -0.099603 -0.121367 +v -0.500000 -0.121367 -0.099603 +v -0.500000 -0.138467 -0.074012 +v -0.500000 -0.150245 -0.045576 +v -0.500000 -0.156250 -0.015389 +v -0.500000 -0.156250 0.015389 +v -0.500000 -0.150245 0.045576 +v -0.460912 0.095821 -0.108578 +v -0.460912 0.104534 -0.110913 +v -0.460912 0.110913 -0.104534 +v -0.460912 0.108578 -0.095821 +v -0.460912 0.099865 -0.093486 +v -0.460912 0.093486 -0.099865 +v 0.460914 0.108578 -0.095821 +v 0.460914 0.110913 -0.104534 +v 0.460914 0.104534 -0.110913 +v 0.460914 0.095821 -0.108578 +v 0.460914 0.093486 -0.099865 +v 0.460914 0.099865 -0.093486 +v -0.460912 -0.009021 -0.144532 +v -0.460912 -0.004510 -0.152344 +v -0.460912 0.004510 -0.152344 +v -0.460912 0.009021 -0.144532 +v -0.460912 0.004510 -0.136720 +v -0.460912 -0.004510 -0.136720 +v 0.460914 0.009021 -0.144532 +v 0.460914 0.004510 -0.152344 +v 0.460914 -0.004510 -0.152344 +v 0.460914 -0.009021 -0.144532 +v 0.460914 -0.004510 -0.136720 +v 0.460914 0.004510 -0.136720 +v -0.460912 -0.108578 -0.095821 +v -0.460912 -0.110913 -0.104534 +v -0.460912 -0.104534 -0.110913 +v -0.460912 -0.095821 -0.108578 +v -0.460912 -0.093486 -0.099865 +v -0.460912 -0.099865 -0.093486 +v 0.460914 -0.095821 -0.108578 +v 0.460914 -0.104534 -0.110913 +v 0.460914 -0.110913 -0.104534 +v 0.460914 -0.108578 -0.095821 +v 0.460914 -0.099865 -0.093486 +v 0.460914 -0.093486 -0.099865 +v -0.460912 -0.144532 0.009021 +v -0.460912 -0.152344 0.004510 +v -0.460912 -0.152344 -0.004511 +v -0.460912 -0.144532 -0.009021 +v -0.460912 -0.136720 -0.004510 +v -0.460912 -0.136720 0.004510 +v 0.460914 -0.144532 -0.009021 +v 0.460914 -0.152344 -0.004510 +v 0.460914 -0.152344 0.004510 +v 0.460914 -0.144532 0.009021 +v 0.460914 -0.136720 0.004510 +v 0.460914 -0.136720 -0.004510 +v -0.460912 -0.095821 0.108578 +v -0.460912 -0.104534 0.110913 +v -0.460912 -0.110913 0.104534 +v -0.460912 -0.108578 0.095821 +v -0.460912 -0.099865 0.093486 +v -0.460912 -0.093486 0.099865 +v 0.460914 -0.108578 0.095821 +v 0.460914 -0.110913 0.104534 +v 0.460914 -0.104534 0.110913 +v 0.460914 -0.095821 0.108578 +v 0.460914 -0.093486 0.099865 +v 0.460914 -0.099865 0.093486 +v -0.460912 0.009021 0.144532 +v -0.460912 0.004510 0.152344 +v -0.460912 -0.004510 0.152344 +v -0.460912 -0.009021 0.144532 +v -0.460912 -0.004510 0.136720 +v -0.460912 0.004510 0.136720 +v 0.460914 -0.009021 0.144532 +v 0.460914 -0.004510 0.152344 +v 0.460914 0.004510 0.152344 +v 0.460914 0.009021 0.144532 +v 0.460914 0.004510 0.136720 +v 0.460914 -0.004510 0.136720 +v -0.460912 0.108578 0.095821 +v -0.460912 0.110913 0.104534 +v -0.460912 0.104534 0.110913 +v -0.460912 0.095821 0.108578 +v -0.460912 0.093486 0.099865 +v -0.460912 0.099865 0.093486 +v 0.460914 0.095821 0.108578 +v 0.460914 0.104534 0.110913 +v 0.460914 0.110913 0.104534 +v 0.460914 0.108578 0.095821 +v 0.460914 0.099865 0.093486 +v 0.460914 0.093486 0.099865 +v -0.460912 0.144532 -0.009021 +v -0.460912 0.152344 -0.004510 +v -0.460912 0.152344 0.004510 +v -0.460912 0.144532 0.009021 +v -0.460912 0.136720 0.004510 +v -0.460912 0.136720 -0.004510 +v 0.460914 0.144532 0.009021 +v 0.460914 0.152344 0.004510 +v 0.460914 0.152344 -0.004510 +v 0.460914 0.144532 -0.009021 +v 0.460914 0.136720 -0.004510 +v 0.460914 0.136720 0.004510 +v 0.130078 0.460912 -0.063644 +v 0.139022 0.460912 -0.062467 +v 0.142474 0.460912 -0.054132 +v 0.136982 0.460912 -0.046976 +v 0.128039 0.460912 -0.048153 +v 0.124587 0.460912 -0.056487 +v 0.136982 -0.460914 -0.046976 +v 0.142474 -0.460914 -0.054133 +v 0.139022 -0.460914 -0.062467 +v 0.130078 -0.460914 -0.063644 +v 0.124587 -0.460914 -0.056488 +v 0.128039 -0.460914 -0.048154 +v 0.046976 0.460912 -0.136982 +v 0.054133 0.460912 -0.142474 +v 0.062467 0.460912 -0.139022 +v 0.063644 0.460912 -0.130078 +v 0.056488 0.460912 -0.124587 +v 0.048153 0.460912 -0.128039 +v 0.063644 -0.460914 -0.130078 +v 0.062467 -0.460914 -0.139022 +v 0.054133 -0.460914 -0.142474 +v 0.046976 -0.460914 -0.136982 +v 0.048153 -0.460914 -0.128039 +v 0.056487 -0.460914 -0.124587 +v -0.063644 0.460912 -0.130078 +v -0.062467 0.460912 -0.139022 +v -0.054132 0.460912 -0.142474 +v -0.046976 0.460912 -0.136982 +v -0.048153 0.460912 -0.128039 +v -0.056487 0.460912 -0.124587 +v -0.046976 -0.460914 -0.136982 +v -0.054133 -0.460914 -0.142474 +v -0.062467 -0.460914 -0.139022 +v -0.063644 -0.460914 -0.130078 +v -0.056487 -0.460914 -0.124587 +v -0.048153 -0.460914 -0.128039 +v -0.136982 0.460912 -0.046976 +v -0.142474 0.460912 -0.054133 +v -0.139022 0.460912 -0.062467 +v -0.130078 0.460912 -0.063644 +v -0.124587 0.460912 -0.056487 +v -0.128039 0.460912 -0.048153 +v -0.130078 -0.460914 -0.063644 +v -0.139022 -0.460914 -0.062467 +v -0.142474 -0.460914 -0.054133 +v -0.136982 -0.460914 -0.046976 +v -0.128039 -0.460914 -0.048153 +v -0.124587 -0.460914 -0.056488 +v -0.130078 0.460912 0.063644 +v -0.139022 0.460912 0.062467 +v -0.142474 0.460912 0.054133 +v -0.136982 0.460912 0.046976 +v -0.128039 0.460912 0.048153 +v -0.124587 0.460912 0.056487 +v -0.136982 -0.460914 0.046976 +v -0.142474 -0.460914 0.054133 +v -0.139022 -0.460914 0.062467 +v -0.130078 -0.460914 0.063644 +v -0.124587 -0.460914 0.056487 +v -0.128039 -0.460914 0.048153 +v -0.046976 0.460912 0.136982 +v -0.054133 0.460912 0.142474 +v -0.062467 0.460912 0.139022 +v -0.063644 0.460912 0.130078 +v -0.056488 0.460912 0.124587 +v -0.048153 0.460912 0.128039 +v -0.063644 -0.460914 0.130078 +v -0.062467 -0.460914 0.139022 +v -0.054132 -0.460914 0.142474 +v -0.046976 -0.460914 0.136982 +v -0.048153 -0.460914 0.128039 +v -0.056487 -0.460914 0.124587 +v 0.063644 0.460912 0.130078 +v 0.062467 0.460912 0.139022 +v 0.054132 0.460912 0.142474 +v 0.046976 0.460912 0.136982 +v 0.048153 0.460912 0.128039 +v 0.056487 0.460912 0.124587 +v 0.046976 -0.460914 0.136982 +v 0.054133 -0.460914 0.142474 +v 0.062467 -0.460914 0.139022 +v 0.063644 -0.460914 0.130078 +v 0.056488 -0.460914 0.124587 +v 0.048153 -0.460914 0.128039 +v 0.136982 0.460912 0.046976 +v 0.142474 0.460912 0.054133 +v 0.139022 0.460912 0.062467 +v 0.130078 0.460912 0.063644 +v 0.124587 0.460912 0.056488 +v 0.128039 0.460912 0.048154 +v 0.130078 -0.460914 0.063644 +v 0.139022 -0.460914 0.062467 +v 0.142474 -0.460914 0.054132 +v 0.136982 -0.460914 0.046976 +v 0.128039 -0.460914 0.048153 +v 0.124587 -0.460914 0.056487 +v 0.099604 -0.468750 0.121367 +v 0.121367 -0.468750 0.099603 +v 0.138467 -0.468750 0.074012 +v 0.150245 -0.468750 0.045576 +v 0.156250 -0.468750 0.015389 +v 0.156250 -0.468750 -0.015389 +v 0.150245 -0.468750 -0.045576 +v 0.138467 -0.468750 -0.074012 +v 0.121367 -0.468750 -0.099603 +v 0.099603 -0.468750 -0.121367 +v 0.074012 -0.468750 -0.138467 +v 0.045576 -0.468750 -0.150245 +v 0.015389 -0.468750 -0.156250 +v -0.015389 -0.468750 -0.156250 +v -0.045576 -0.468750 -0.150245 +v -0.074012 -0.468750 -0.138467 +v -0.099603 -0.468750 -0.121367 +v -0.121367 -0.468750 -0.099603 +v -0.138467 -0.468750 -0.074012 +v -0.150245 -0.468750 -0.045576 +v -0.156249 -0.468750 -0.015389 +v -0.156249 -0.468750 0.015389 +v -0.150245 -0.468750 0.045576 +v -0.138466 -0.468750 0.074012 +v -0.121367 -0.468750 0.099603 +v -0.099603 -0.468750 0.121367 +v -0.074012 -0.468750 0.138467 +v -0.045576 -0.468750 0.150245 +v -0.015389 -0.468750 0.156250 +v 0.015390 -0.468750 0.156250 +v 0.045577 -0.468750 0.150245 +v 0.074012 -0.468750 0.138466 +v -0.150245 -0.500000 -0.045576 +v -0.138467 -0.500000 -0.074012 +v -0.121367 -0.500000 -0.099603 +v -0.099603 -0.500000 -0.121367 +v -0.074012 -0.500000 -0.138467 +v -0.045576 -0.500000 -0.150245 +v -0.015389 -0.500000 -0.156250 +v 0.015389 -0.500000 -0.156250 +v 0.045576 -0.500000 -0.150245 +v 0.074012 -0.500000 -0.138467 +v 0.099603 -0.500000 -0.121367 +v 0.121367 -0.500000 -0.099603 +v 0.138467 -0.500000 -0.074012 +v 0.150245 -0.500000 -0.045576 +v 0.156250 -0.500000 -0.015389 +v 0.156250 -0.500000 0.015389 +v 0.150245 -0.500000 0.045576 +v 0.138467 -0.500000 0.074012 +v 0.121367 -0.500000 0.099603 +v 0.099603 -0.500000 0.121367 +v 0.074012 -0.500000 0.138466 +v 0.045577 -0.500000 0.150245 +v 0.015390 -0.500000 0.156249 +v -0.015389 -0.500000 0.156249 +v -0.045576 -0.500000 0.150245 +v -0.074012 -0.500000 0.138467 +v -0.099603 -0.500000 0.121367 +v -0.121367 -0.500000 0.099603 +v -0.138466 -0.500000 0.074012 +v -0.150245 -0.500000 0.045576 +v -0.156249 -0.500000 0.015389 +v -0.156249 -0.500000 -0.015389 +v -0.156250 0.468750 -0.015389 +v -0.150245 0.468750 -0.045576 +v -0.138467 0.468750 -0.074012 +v -0.121367 0.468750 -0.099603 +v -0.099603 0.468750 -0.121367 +v -0.074012 0.468750 -0.138467 +v -0.045576 0.468750 -0.150245 +v -0.015389 0.468750 -0.156250 +v 0.015389 0.468750 -0.156250 +v 0.045576 0.468750 -0.150245 +v 0.074012 0.468750 -0.138467 +v 0.099603 0.468750 -0.121367 +v 0.121367 0.468750 -0.099603 +v 0.138467 0.468750 -0.074012 +v 0.150245 0.468750 -0.045576 +v 0.156249 0.468750 -0.015389 +v 0.156249 0.468750 0.015389 +v 0.150245 0.468750 0.045577 +v 0.138466 0.468750 0.074012 +v 0.121367 0.468750 0.099604 +v 0.099603 0.468750 0.121367 +v 0.074012 0.468750 0.138467 +v 0.045576 0.468750 0.150245 +v 0.015389 0.468750 0.156250 +v -0.015389 0.468750 0.156250 +v -0.045576 0.468750 0.150245 +v -0.074012 0.468750 0.138467 +v -0.099603 0.468750 0.121367 +v -0.121367 0.468750 0.099603 +v -0.138467 0.468750 0.074012 +v -0.150245 0.468750 0.045576 +v -0.156250 0.468750 0.015389 +v -0.138467 0.500000 0.074012 +v -0.121367 0.500000 0.099603 +v -0.099603 0.500000 0.121367 +v -0.074012 0.500000 0.138467 +v -0.045576 0.500000 0.150245 +v -0.015389 0.500000 0.156250 +v 0.015389 0.500000 0.156250 +v 0.045576 0.500000 0.150245 +v 0.074012 0.500000 0.138467 +v 0.099603 0.500000 0.121367 +v 0.121367 0.500000 0.099604 +v 0.138466 0.500000 0.074012 +v 0.150245 0.500000 0.045577 +v 0.156249 0.500000 0.015389 +v 0.156250 0.500000 -0.015389 +v 0.150245 0.500000 -0.045576 +v 0.138467 0.500000 -0.074012 +v 0.121367 0.500000 -0.099603 +v 0.099603 0.500000 -0.121367 +v 0.074012 0.500000 -0.138467 +v 0.045576 0.500000 -0.150245 +v 0.015389 0.500000 -0.156250 +v -0.015389 0.500000 -0.156250 +v -0.045576 0.500000 -0.150245 +v -0.074012 0.500000 -0.138467 +v -0.099603 0.500000 -0.121367 +v -0.121367 0.500000 -0.099603 +v -0.138467 0.500000 -0.074012 +v -0.150245 0.500000 -0.045576 +v -0.156250 0.500000 -0.015389 +v -0.156250 0.500000 0.015389 +v -0.150245 0.500000 0.045576 +v 0.095821 0.460912 -0.108578 +v 0.104534 0.460912 -0.110913 +v 0.110913 0.460912 -0.104534 +v 0.108578 0.460912 -0.095821 +v 0.099865 0.460912 -0.093486 +v 0.093486 0.460912 -0.099865 +v 0.108578 -0.460914 -0.095821 +v 0.110913 -0.460914 -0.104534 +v 0.104534 -0.460914 -0.110913 +v 0.095821 -0.460914 -0.108578 +v 0.093486 -0.460914 -0.099865 +v 0.099865 -0.460914 -0.093486 +v -0.009021 0.460912 -0.144532 +v -0.004510 0.460912 -0.152344 +v 0.004510 0.460912 -0.152344 +v 0.009021 0.460912 -0.144532 +v 0.004510 0.460912 -0.136720 +v -0.004510 0.460912 -0.136720 +v 0.009021 -0.460914 -0.144532 +v 0.004510 -0.460914 -0.152344 +v -0.004510 -0.460914 -0.152344 +v -0.009021 -0.460914 -0.144532 +v -0.004510 -0.460914 -0.136720 +v 0.004510 -0.460914 -0.136720 +v -0.108578 0.460912 -0.095821 +v -0.110913 0.460912 -0.104534 +v -0.104534 0.460912 -0.110913 +v -0.095821 0.460912 -0.108578 +v -0.093486 0.460912 -0.099865 +v -0.099865 0.460912 -0.093486 +v -0.095821 -0.460914 -0.108578 +v -0.104534 -0.460914 -0.110913 +v -0.110913 -0.460914 -0.104534 +v -0.108578 -0.460914 -0.095821 +v -0.099865 -0.460914 -0.093486 +v -0.093486 -0.460914 -0.099865 +v -0.144532 0.460912 0.009021 +v -0.152344 0.460912 0.004510 +v -0.152344 0.460912 -0.004510 +v -0.144532 0.460912 -0.009021 +v -0.136720 0.460912 -0.004510 +v -0.136720 0.460912 0.004510 +v -0.144532 -0.460914 -0.009021 +v -0.152344 -0.460914 -0.004510 +v -0.152344 -0.460914 0.004510 +v -0.144532 -0.460914 0.009021 +v -0.136720 -0.460914 0.004510 +v -0.136720 -0.460914 -0.004510 +v -0.095821 0.460912 0.108578 +v -0.104534 0.460912 0.110913 +v -0.110913 0.460912 0.104534 +v -0.108578 0.460912 0.095821 +v -0.099865 0.460912 0.093486 +v -0.093486 0.460912 0.099865 +v -0.108578 -0.460914 0.095821 +v -0.110913 -0.460914 0.104534 +v -0.104534 -0.460914 0.110913 +v -0.095821 -0.460914 0.108578 +v -0.093486 -0.460914 0.099865 +v -0.099865 -0.460914 0.093486 +v 0.009021 0.460912 0.144532 +v 0.004510 0.460912 0.152344 +v -0.004510 0.460912 0.152344 +v -0.009021 0.460912 0.144532 +v -0.004510 0.460912 0.136720 +v 0.004510 0.460912 0.136720 +v -0.009021 -0.460914 0.144532 +v -0.004510 -0.460914 0.152344 +v 0.004510 -0.460914 0.152344 +v 0.009021 -0.460914 0.144532 +v 0.004510 -0.460914 0.136720 +v -0.004510 -0.460914 0.136720 +v 0.108578 0.460912 0.095821 +v 0.110913 0.460912 0.104534 +v 0.104534 0.460912 0.110913 +v 0.095821 0.460912 0.108578 +v 0.093486 0.460912 0.099865 +v 0.099865 0.460912 0.093486 +v 0.095821 -0.460914 0.108578 +v 0.104534 -0.460914 0.110913 +v 0.110913 -0.460914 0.104534 +v 0.108578 -0.460914 0.095821 +v 0.099865 -0.460914 0.093486 +v 0.093486 -0.460914 0.099865 +v 0.144532 0.460912 -0.009021 +v 0.152344 0.460912 -0.004510 +v 0.152344 0.460912 0.004511 +v 0.144532 0.460912 0.009021 +v 0.136720 0.460912 0.004511 +v 0.136720 0.460912 -0.004510 +v 0.144532 -0.460914 0.009021 +v 0.152344 -0.460914 0.004510 +v 0.152344 -0.460914 -0.004511 +v 0.144532 -0.460914 -0.009021 +v 0.136720 -0.460914 -0.004510 +v 0.136720 -0.460914 0.004510 +v 0.136982 0.046976 -0.460914 +v 0.142474 0.054133 -0.460914 +v 0.139022 0.062467 -0.460914 +v 0.130078 0.063644 -0.460914 +v 0.124587 0.056488 -0.460914 +v 0.128039 0.048154 -0.460914 +v 0.063644 0.130078 -0.460914 +v 0.062467 0.139022 -0.460914 +v 0.054133 0.142474 -0.460914 +v 0.046976 0.136982 -0.460914 +v 0.048153 0.128039 -0.460914 +v 0.056487 0.124587 -0.460914 +v -0.046976 0.136982 -0.460914 +v -0.054133 0.142474 -0.460914 +v -0.062467 0.139022 -0.460914 +v -0.063644 0.130078 -0.460914 +v -0.056487 0.124587 -0.460914 +v -0.048153 0.128039 -0.460914 +v -0.130078 0.063644 -0.460914 +v -0.139022 0.062467 -0.460914 +v -0.142474 0.054133 -0.460914 +v -0.136982 0.046976 -0.460914 +v -0.128039 0.048153 -0.460914 +v -0.124587 0.056487 -0.460914 +v -0.136982 -0.046976 -0.460914 +v -0.142474 -0.054133 -0.460914 +v -0.139022 -0.062467 -0.460914 +v -0.130078 -0.063644 -0.460914 +v -0.124587 -0.056487 -0.460914 +v -0.128039 -0.048153 -0.460914 +v -0.063644 -0.130078 -0.460914 +v -0.062467 -0.139022 -0.460914 +v -0.054132 -0.142474 -0.460914 +v -0.046976 -0.136982 -0.460914 +v -0.048153 -0.128039 -0.460914 +v -0.056487 -0.124587 -0.460914 +v 0.046976 -0.136982 -0.460914 +v 0.054133 -0.142474 -0.460914 +v 0.062467 -0.139022 -0.460914 +v 0.063644 -0.130078 -0.460914 +v 0.056488 -0.124587 -0.460914 +v 0.048153 -0.128039 -0.460914 +v 0.130078 -0.063644 -0.460914 +v 0.139022 -0.062467 -0.460914 +v 0.142474 -0.054132 -0.460914 +v 0.136982 -0.046976 -0.460914 +v 0.128039 -0.048153 -0.460914 +v 0.124587 -0.056487 -0.460914 +v 0.099604 -0.121367 -0.468750 +v 0.121367 -0.099603 -0.468750 +v 0.138467 -0.074012 -0.468750 +v 0.150245 -0.045576 -0.468750 +v 0.156250 -0.015389 -0.468750 +v 0.156250 0.015389 -0.468750 +v 0.150245 0.045576 -0.468750 +v 0.138467 0.074012 -0.468750 +v 0.121367 0.099603 -0.468750 +v 0.099603 0.121367 -0.468750 +v 0.074012 0.138467 -0.468750 +v 0.045576 0.150245 -0.468750 +v 0.015389 0.156250 -0.468750 +v -0.015389 0.156250 -0.468750 +v -0.045576 0.150245 -0.468750 +v -0.074012 0.138467 -0.468750 +v -0.099603 0.121367 -0.468750 +v -0.121367 0.099603 -0.468750 +v -0.138467 0.074012 -0.468750 +v -0.150245 0.045576 -0.468750 +v -0.156249 0.015389 -0.468750 +v -0.156249 -0.015389 -0.468750 +v -0.150245 -0.045576 -0.468750 +v -0.138466 -0.074012 -0.468750 +v -0.121367 -0.099603 -0.468750 +v -0.099603 -0.121367 -0.468750 +v -0.074012 -0.138467 -0.468750 +v -0.045576 -0.150245 -0.468750 +v -0.015389 -0.156250 -0.468750 +v 0.015390 -0.156250 -0.468750 +v 0.045577 -0.150245 -0.468750 +v 0.074012 -0.138467 -0.468750 +v -0.150245 0.045576 -0.500000 +v -0.138467 0.074012 -0.500000 +v -0.121367 0.099603 -0.500000 +v -0.099603 0.121367 -0.500000 +v -0.074012 0.138467 -0.500000 +v -0.045576 0.150245 -0.500000 +v -0.015389 0.156250 -0.500000 +v 0.015389 0.156250 -0.500000 +v 0.045576 0.150245 -0.500000 +v 0.074012 0.138467 -0.500000 +v 0.099603 0.121367 -0.500000 +v 0.121367 0.099603 -0.500000 +v 0.138467 0.074012 -0.500000 +v 0.150245 0.045576 -0.500000 +v 0.156250 0.015389 -0.500000 +v 0.156250 -0.015389 -0.500000 +v 0.150245 -0.045576 -0.500000 +v 0.138467 -0.074012 -0.500000 +v 0.121367 -0.099603 -0.500000 +v 0.099603 -0.121367 -0.500000 +v 0.074012 -0.138467 -0.500000 +v 0.045577 -0.150245 -0.500000 +v 0.015390 -0.156250 -0.500000 +v -0.015389 -0.156250 -0.500000 +v -0.045576 -0.150245 -0.500000 +v -0.074012 -0.138467 -0.500000 +v -0.099603 -0.121367 -0.500000 +v -0.121367 -0.099603 -0.500000 +v -0.138466 -0.074012 -0.500000 +v -0.150245 -0.045576 -0.500000 +v -0.156249 -0.015389 -0.500000 +v -0.156249 0.015389 -0.500000 +v 0.108578 0.095821 -0.460914 +v 0.110913 0.104534 -0.460914 +v 0.104534 0.110913 -0.460914 +v 0.095821 0.108578 -0.460914 +v 0.093486 0.099865 -0.460914 +v 0.099865 0.093486 -0.460914 +v 0.009021 0.144532 -0.460914 +v 0.004510 0.152344 -0.460914 +v -0.004510 0.152344 -0.460914 +v -0.009021 0.144532 -0.460914 +v -0.004510 0.136720 -0.460914 +v 0.004510 0.136720 -0.460914 +v -0.095821 0.108578 -0.460914 +v -0.104534 0.110913 -0.460914 +v -0.110913 0.104534 -0.460914 +v -0.108578 0.095821 -0.460914 +v -0.099865 0.093486 -0.460914 +v -0.093486 0.099865 -0.460914 +v -0.144532 0.009021 -0.460914 +v -0.152344 0.004510 -0.460914 +v -0.152344 -0.004510 -0.460914 +v -0.144532 -0.009021 -0.460914 +v -0.136720 -0.004510 -0.460914 +v -0.136720 0.004510 -0.460914 +v -0.108578 -0.095821 -0.460914 +v -0.110913 -0.104534 -0.460914 +v -0.104534 -0.110913 -0.460914 +v -0.095821 -0.108578 -0.460914 +v -0.093486 -0.099865 -0.460914 +v -0.099865 -0.093486 -0.460914 +v -0.009021 -0.144532 -0.460914 +v -0.004510 -0.152344 -0.460914 +v 0.004510 -0.152344 -0.460914 +v 0.009021 -0.144532 -0.460914 +v 0.004510 -0.136720 -0.460914 +v -0.004510 -0.136720 -0.460914 +v 0.095821 -0.108578 -0.460914 +v 0.104534 -0.110913 -0.460914 +v 0.110913 -0.104534 -0.460914 +v 0.108578 -0.095821 -0.460914 +v 0.099865 -0.093486 -0.460914 +v 0.093486 -0.099865 -0.460914 +v 0.144532 -0.009021 -0.460914 +v 0.152344 -0.004510 -0.460914 +v 0.152344 0.004510 -0.460914 +v 0.144532 0.009021 -0.460914 +v 0.136720 0.004510 -0.460914 +v 0.136720 -0.004510 -0.460914 +v 0.468750 0.116832 -0.062448 +v 0.437501 0.110774 -0.059210 +v 0.437501 0.120197 -0.036461 +v 0.468750 0.126770 -0.038455 +v 0.468750 0.131837 -0.012985 +v 0.437501 0.125000 -0.012312 +v 0.468750 0.131837 0.012984 +v 0.437501 0.125001 0.012311 +v 0.468750 0.126770 0.038455 +v 0.437501 0.120197 0.036461 +v 0.468750 0.116832 0.062448 +v 0.437501 0.110774 0.059210 +v 0.468750 0.102404 0.084041 +v 0.437501 0.097094 0.079683 +v 0.437501 0.079683 0.097094 +v 0.468750 0.084041 0.102404 +v 0.468750 0.062448 0.116832 +v 0.437501 0.059210 0.110774 +v 0.468750 0.038455 0.126770 +v 0.437501 0.036461 0.120197 +v 0.468750 0.012985 0.131836 +v 0.437501 0.012312 0.125000 +v 0.437501 -0.012311 0.125000 +v 0.468750 -0.012985 0.131836 +v 0.437501 -0.036461 0.120197 +v 0.468750 -0.038455 0.126770 +v 0.468750 -0.062448 0.116832 +v 0.437501 -0.059210 0.110774 +v 0.437501 -0.079683 0.097094 +v 0.468750 -0.084041 0.102404 +v 0.437501 -0.097094 0.079683 +v 0.468750 -0.102404 0.084041 +v 0.468750 -0.116832 0.062448 +v 0.437501 -0.110774 0.059210 +v 0.437501 -0.120197 0.036461 +v 0.468750 -0.126770 0.038455 +v 0.468750 -0.131836 0.012985 +v 0.437501 -0.125000 0.012311 +v 0.437501 -0.125000 -0.012311 +v 0.468750 -0.131836 -0.012985 +v 0.468750 -0.126770 -0.038455 +v 0.437501 -0.120197 -0.036461 +v 0.437501 -0.110774 -0.059210 +v 0.468750 -0.116832 -0.062448 +v 0.437501 -0.097094 -0.079683 +v 0.468750 -0.102404 -0.084041 +v 0.437501 -0.079683 -0.097094 +v 0.468750 -0.084041 -0.102404 +v 0.437501 -0.059210 -0.110774 +v 0.468750 -0.062448 -0.116832 +v 0.437501 -0.036461 -0.120197 +v 0.468750 -0.038455 -0.126770 +v 0.437501 -0.012311 -0.125001 +v 0.468750 -0.012985 -0.131836 +v 0.468750 0.038455 -0.126770 +v 0.468750 0.012985 -0.131837 +v 0.437501 0.012311 -0.125001 +v 0.437501 0.036461 -0.120197 +v 0.468750 0.084041 -0.102404 +v 0.468750 0.062448 -0.116832 +v 0.437501 0.059210 -0.110774 +v 0.437501 0.079683 -0.097094 +v 0.468750 0.102404 -0.084041 +v 0.437501 0.097094 -0.079683 +v 0.012312 0.012311 0.125000 +v 0.036461 0.036461 0.120197 +v 0.036461 -0.036461 0.120197 +v 0.012312 -0.012312 0.125000 +v 0.059210 0.059210 0.110774 +v 0.059210 -0.059210 0.110774 +v 0.079683 0.079683 0.097094 +v 0.079683 -0.079683 0.097094 +v 0.097094 0.097094 0.079683 +v -0.468750 0.012985 0.131836 +v -0.437501 0.012312 0.125001 +v -0.437501 0.036461 0.120197 +v -0.468750 0.038455 0.126770 +v -0.468750 -0.012985 0.131836 +v -0.437501 -0.012311 0.125000 +v -0.468750 -0.038455 0.126770 +v -0.437501 -0.036461 0.120197 +v -0.437501 0.079683 0.097094 +v -0.079683 0.079683 0.097094 +v -0.097094 0.097094 0.079683 +v -0.437501 0.097094 0.079683 +v -0.110774 0.110774 0.059210 +v -0.437501 0.110774 0.059210 +v -0.437501 0.059210 0.110774 +v -0.468750 0.062448 0.116832 +v -0.468750 -0.062448 0.116832 +v -0.437501 -0.059210 0.110774 +v -0.110774 -0.110774 0.059210 +v -0.097094 -0.097094 0.079683 +v -0.437501 -0.097094 0.079683 +v -0.437501 -0.110774 0.059210 +v -0.120197 0.120197 0.036461 +v -0.437501 0.120197 0.036461 +v -0.468750 0.084041 0.102404 +v -0.468750 -0.084041 0.102404 +v -0.437501 -0.079683 0.097094 +v -0.120197 -0.120197 0.036461 +v -0.437501 -0.120197 0.036461 +v -0.125001 0.125000 0.012311 +v -0.437501 0.125000 0.012311 +v -0.468750 0.102404 0.084041 +v -0.468750 -0.102404 0.084041 +v -0.468750 0.116832 0.062448 +v -0.468750 -0.116832 0.062448 +v -0.125000 -0.125000 -0.012311 +v -0.125000 -0.125001 0.012311 +v -0.437501 -0.125001 0.012311 +v -0.437501 -0.125001 -0.012311 +v -0.125000 0.125000 -0.012311 +v -0.120197 0.120197 -0.036461 +v -0.437501 0.120197 -0.036461 +v -0.437501 0.125000 -0.012312 +v -0.468750 0.126770 0.038455 +v -0.468750 -0.126770 0.038455 +v -0.468750 0.131836 0.012985 +v -0.468750 -0.131837 0.012985 +v -0.110774 -0.110774 -0.059210 +v -0.120197 -0.120197 -0.036461 +v -0.437501 -0.120197 -0.036461 +v -0.437501 -0.110774 -0.059210 +v -0.110774 0.110774 -0.059210 +v -0.097094 0.097094 -0.079683 +v -0.437501 0.097094 -0.079683 +v -0.437501 0.110774 -0.059210 +v -0.468750 0.131836 -0.012985 +v -0.468750 -0.131837 -0.012985 +v -0.097094 -0.097094 -0.079683 +v -0.437501 -0.097094 -0.079683 +v -0.088389 0.088389 -0.088389 +v -0.097094 0.079683 -0.097094 +v -0.437501 0.079683 -0.097094 +v -0.468750 0.126770 -0.038455 +v -0.468750 -0.126770 -0.038455 +v -0.468750 0.116832 -0.062448 +v -0.468750 -0.116832 -0.062448 +v -0.468750 0.102404 -0.084041 +v -0.468750 -0.102404 -0.084041 +v -0.120197 -0.036461 -0.120197 +v -0.110774 -0.059210 -0.110774 +v -0.437501 -0.059210 -0.110774 +v -0.437501 -0.036461 -0.120197 +v -0.120197 0.036461 -0.120197 +v -0.125001 0.012311 -0.125000 +v -0.437501 0.012311 -0.125000 +v -0.437501 0.036461 -0.120197 +v -0.468750 0.084041 -0.102404 +v -0.468750 -0.084041 -0.102404 +v -0.437501 -0.079683 -0.097094 +v -0.125000 -0.012311 -0.125000 +v -0.437501 -0.012311 -0.125000 +v -0.468750 0.062448 -0.116832 +v -0.437501 0.059210 -0.110774 +v -0.468750 -0.062448 -0.116832 +v -0.468750 0.038455 -0.126770 +v -0.468750 -0.038455 -0.126770 +v -0.468750 0.012985 -0.131837 +v -0.468750 -0.012985 -0.131836 +v -0.468749 0.130078 -0.063644 +v -0.468749 0.139022 -0.062467 +v -0.468749 0.124587 -0.056487 +v -0.468749 0.142474 -0.054132 +v -0.468749 0.136982 -0.046976 +v -0.468749 0.128039 -0.048153 +v 0.468751 0.136982 -0.046976 +v 0.468751 0.142474 -0.054133 +v 0.468751 0.128039 -0.048153 +v 0.468751 0.139022 -0.062467 +v 0.468751 0.130078 -0.063644 +v 0.468751 0.124587 -0.056488 +v -0.468749 0.046976 -0.136982 +v -0.468749 0.054133 -0.142474 +v -0.468749 0.048154 -0.128039 +v -0.468749 0.062467 -0.139022 +v -0.468749 0.063644 -0.130078 +v -0.468749 0.056488 -0.124587 +v 0.468751 0.063644 -0.130078 +v 0.468751 0.062467 -0.139022 +v 0.468751 0.056487 -0.124587 +v 0.468751 0.054133 -0.142474 +v 0.468751 0.046976 -0.136982 +v 0.468751 0.048153 -0.128039 +v -0.468749 -0.063644 -0.130078 +v -0.468749 -0.062467 -0.139022 +v -0.468749 -0.056487 -0.124587 +v -0.468749 -0.054132 -0.142474 +v -0.468749 -0.046976 -0.136982 +v -0.468749 -0.048153 -0.128039 +v 0.468751 -0.046976 -0.136982 +v 0.468751 -0.054133 -0.142474 +v 0.468751 -0.048153 -0.128039 +v 0.468751 -0.062467 -0.139022 +v 0.468751 -0.063644 -0.130078 +v 0.468751 -0.056488 -0.124587 +v -0.468749 -0.136982 -0.046976 +v -0.468749 -0.142474 -0.054133 +v -0.468749 -0.128039 -0.048153 +v -0.468749 -0.139022 -0.062467 +v -0.468749 -0.130078 -0.063644 +v -0.468749 -0.124587 -0.056488 +v 0.468751 -0.130078 -0.063644 +v 0.468751 -0.139022 -0.062467 +v 0.468751 -0.124587 -0.056487 +v 0.468751 -0.142474 -0.054133 +v 0.468751 -0.136982 -0.046976 +v 0.468751 -0.128039 -0.048153 +v -0.468749 -0.130078 0.063644 +v -0.468749 -0.139022 0.062467 +v -0.468749 -0.124587 0.056487 +v -0.468749 -0.142474 0.054132 +v -0.468749 -0.136982 0.046976 +v -0.468749 -0.128039 0.048153 +v 0.468751 -0.136982 0.046976 +v 0.468751 -0.142474 0.054133 +v 0.468751 -0.128039 0.048153 +v 0.468751 -0.139022 0.062467 +v 0.468751 -0.130078 0.063644 +v 0.468751 -0.124587 0.056487 +v -0.468749 -0.046976 0.136982 +v -0.468749 -0.054133 0.142474 +v -0.468749 -0.048153 0.128039 +v -0.468749 -0.062467 0.139022 +v -0.468749 -0.063644 0.130078 +v -0.468749 -0.056488 0.124587 +v 0.468751 -0.063644 0.130078 +v 0.468751 -0.062467 0.139022 +v 0.468751 -0.056487 0.124587 +v 0.468751 -0.054132 0.142474 +v 0.468751 -0.046976 0.136982 +v 0.468751 -0.048153 0.128039 +v -0.468749 0.063644 0.130078 +v -0.468749 0.062467 0.139022 +v -0.468749 0.056487 0.124587 +v -0.468749 0.054132 0.142474 +v -0.468749 0.046976 0.136982 +v -0.468749 0.048153 0.128039 +v 0.468751 0.046976 0.136982 +v 0.468751 0.054133 0.142474 +v 0.468751 0.048153 0.128039 +v 0.468751 0.062467 0.139022 +v 0.468751 0.063644 0.130078 +v 0.468751 0.056487 0.124587 +v -0.468749 0.136982 0.046976 +v -0.468749 0.142474 0.054133 +v -0.468749 0.128039 0.048153 +v -0.468749 0.139022 0.062467 +v -0.468749 0.130078 0.063644 +v -0.468749 0.124587 0.056488 +v 0.468751 0.130078 0.063644 +v 0.468751 0.139022 0.062467 +v 0.468751 0.124587 0.056487 +v 0.468751 0.142474 0.054133 +v 0.468751 0.136982 0.046976 +v 0.468751 0.128039 0.048153 +v -0.059210 -0.059210 0.110774 +v -0.036461 -0.036461 0.120197 +v -0.079683 -0.079683 0.097094 +v 0.097094 -0.097094 0.079683 +v 0.079683 -0.437501 0.097094 +v 0.097094 -0.437501 0.079683 +v 0.079683 0.437501 0.097094 +v 0.059210 0.437501 0.110774 +v -0.012312 -0.012312 0.125000 +v -0.012312 0.012312 0.125000 +v 0.110774 0.110774 -0.059210 +v 0.120197 0.120197 -0.036461 +v 0.125000 0.125001 -0.012311 +v 0.125000 0.125000 0.012311 +v 0.120197 0.120197 0.036461 +v 0.110774 0.110774 0.059210 +v -0.059210 0.059210 0.110774 +v -0.036461 0.036461 0.120197 +v 0.110774 -0.110774 0.059210 +v 0.120197 -0.120197 0.036461 +v 0.125000 -0.125000 0.012311 +v 0.125000 -0.125000 -0.012311 +v 0.120197 -0.120197 -0.036461 +v 0.110774 -0.110774 -0.059210 +v 0.097094 -0.097094 -0.079683 +v 0.088389 -0.088389 -0.088389 +v 0.097094 -0.079683 -0.097094 +v 0.110774 -0.059210 -0.110774 +v 0.120197 -0.036461 -0.120197 +v 0.125000 -0.012311 -0.125000 +v 0.125000 0.012311 -0.125000 +v 0.120197 0.036461 -0.120197 +v 0.110774 0.059210 -0.110774 +v 0.097094 0.079683 -0.097094 +v 0.088389 0.088389 -0.088389 +v 0.097094 0.097094 -0.079683 +v -0.097094 -0.079683 -0.097094 +v -0.088389 -0.088389 -0.088389 +v -0.110774 0.059210 -0.110774 +v -0.468749 0.095821 -0.108578 +v -0.468749 0.104534 -0.110913 +v -0.468749 0.093486 -0.099865 +v -0.468749 0.110913 -0.104534 +v -0.468749 0.108578 -0.095821 +v -0.468749 0.099865 -0.093486 +v 0.468751 0.108578 -0.095821 +v 0.468751 0.110913 -0.104534 +v 0.468751 0.099865 -0.093486 +v 0.468751 0.104534 -0.110913 +v 0.468751 0.095821 -0.108578 +v 0.468751 0.093486 -0.099865 +v -0.468749 -0.009021 -0.144532 +v -0.468749 -0.004510 -0.152344 +v -0.468749 -0.004510 -0.136720 +v -0.468749 0.004510 -0.152344 +v -0.468749 0.009021 -0.144532 +v -0.468749 0.004510 -0.136720 +v 0.468751 0.009021 -0.144532 +v 0.468751 0.004510 -0.152344 +v 0.468751 0.004510 -0.136720 +v 0.468751 -0.004510 -0.152344 +v 0.468751 -0.009021 -0.144532 +v 0.468751 -0.004510 -0.136720 +v -0.468749 -0.108578 -0.095821 +v -0.468749 -0.110913 -0.104534 +v -0.468749 -0.099865 -0.093486 +v -0.468749 -0.104534 -0.110913 +v -0.468749 -0.095821 -0.108578 +v -0.468749 -0.093486 -0.099865 +v 0.468751 -0.095821 -0.108578 +v 0.468751 -0.104534 -0.110913 +v 0.468751 -0.093486 -0.099865 +v 0.468751 -0.110913 -0.104534 +v 0.468751 -0.108578 -0.095821 +v 0.468751 -0.099865 -0.093486 +v -0.468749 -0.144532 0.009021 +v -0.468749 -0.152344 0.004510 +v -0.468749 -0.136720 0.004510 +v -0.468749 -0.152344 -0.004511 +v -0.468749 -0.144532 -0.009021 +v -0.468749 -0.136720 -0.004510 +v 0.468751 -0.144532 -0.009021 +v 0.468751 -0.152344 -0.004510 +v 0.468751 -0.136720 -0.004510 +v 0.468751 -0.152344 0.004510 +v 0.468751 -0.144532 0.009021 +v 0.468751 -0.136720 0.004510 +v -0.468749 -0.095821 0.108578 +v -0.468749 -0.104534 0.110913 +v -0.468749 -0.093486 0.099865 +v -0.468749 -0.110913 0.104534 +v -0.468749 -0.108578 0.095821 +v -0.468749 -0.099865 0.093486 +v 0.468751 -0.108578 0.095821 +v 0.468751 -0.110913 0.104534 +v 0.468751 -0.099865 0.093486 +v 0.468751 -0.104534 0.110913 +v 0.468751 -0.095821 0.108578 +v 0.468751 -0.093486 0.099865 +v -0.468749 0.009021 0.144532 +v -0.468749 0.004510 0.152344 +v -0.468749 0.004510 0.136720 +v -0.468749 -0.004510 0.152344 +v -0.468749 -0.009021 0.144532 +v -0.468749 -0.004510 0.136720 +v 0.468751 -0.009021 0.144532 +v 0.468751 -0.004510 0.152344 +v 0.468751 -0.004510 0.136720 +v 0.468751 0.004510 0.152344 +v 0.468751 0.009021 0.144532 +v 0.468751 0.004510 0.136720 +v -0.468749 0.108578 0.095821 +v -0.468749 0.110913 0.104534 +v -0.468749 0.099865 0.093486 +v -0.468749 0.104534 0.110913 +v -0.468749 0.095821 0.108578 +v -0.468749 0.093486 0.099865 +v 0.468751 0.095821 0.108578 +v 0.468751 0.104534 0.110913 +v 0.468751 0.093486 0.099865 +v 0.468751 0.110913 0.104534 +v 0.468751 0.108578 0.095821 +v 0.468751 0.099865 0.093486 +v -0.468749 0.144532 -0.009021 +v -0.468749 0.152344 -0.004510 +v -0.468749 0.136720 -0.004510 +v -0.468749 0.152344 0.004510 +v -0.468749 0.144532 0.009021 +v -0.468749 0.136720 0.004510 +v 0.468751 0.144532 0.009021 +v 0.468751 0.152344 0.004510 +v 0.468751 0.136720 0.004510 +v 0.468751 0.152344 -0.004510 +v 0.468751 0.144532 -0.009021 +v 0.468751 0.136720 -0.004510 +v 0.116832 -0.468750 -0.062448 +v 0.110774 -0.437501 -0.059210 +v 0.120197 -0.437501 -0.036462 +v 0.126770 -0.468750 -0.038456 +v 0.131837 -0.468750 -0.012985 +v 0.125001 -0.437501 -0.012312 +v 0.131837 -0.468750 0.012984 +v 0.125001 -0.437501 0.012311 +v 0.126770 -0.468750 0.038455 +v 0.120197 -0.437501 0.036461 +v 0.116832 -0.468750 0.062448 +v 0.110774 -0.437501 0.059210 +v 0.102404 -0.468750 0.084041 +v 0.084041 -0.468750 0.102404 +v 0.062448 -0.468750 0.116832 +v 0.059210 -0.437501 0.110774 +v 0.038455 -0.468750 0.126770 +v 0.036461 -0.437501 0.120197 +v 0.012985 -0.468750 0.131836 +v 0.012312 -0.437501 0.125000 +v -0.012311 -0.437501 0.125000 +v -0.012985 -0.468750 0.131836 +v -0.036461 -0.437501 0.120197 +v -0.038455 -0.468750 0.126770 +v -0.062448 -0.468750 0.116832 +v -0.059210 -0.437501 0.110774 +v -0.079683 -0.437501 0.097094 +v -0.084041 -0.468750 0.102404 +v -0.097094 -0.437501 0.079683 +v -0.102404 -0.468750 0.084041 +v -0.116832 -0.468750 0.062448 +v -0.110774 -0.437501 0.059210 +v -0.120197 -0.437501 0.036461 +v -0.126770 -0.468750 0.038455 +v -0.131836 -0.468750 0.012985 +v -0.125000 -0.437501 0.012311 +v -0.125000 -0.437501 -0.012312 +v -0.131836 -0.468750 -0.012985 +v -0.126770 -0.468750 -0.038455 +v -0.120197 -0.437501 -0.036461 +v -0.110774 -0.437501 -0.059210 +v -0.116832 -0.468750 -0.062448 +v -0.097094 -0.437501 -0.079683 +v -0.102404 -0.468750 -0.084041 +v -0.079683 -0.437501 -0.097094 +v -0.084041 -0.468750 -0.102404 +v -0.059210 -0.437501 -0.110774 +v -0.062448 -0.468750 -0.116832 +v -0.036461 -0.437501 -0.120197 +v -0.038455 -0.468750 -0.126770 +v -0.012311 -0.437501 -0.125001 +v -0.012985 -0.468750 -0.131837 +v 0.038455 -0.468750 -0.126770 +v 0.012985 -0.468750 -0.131837 +v 0.012311 -0.437501 -0.125001 +v 0.036461 -0.437501 -0.120197 +v 0.084041 -0.468750 -0.102404 +v 0.062448 -0.468750 -0.116832 +v 0.059210 -0.437501 -0.110774 +v 0.079683 -0.437501 -0.097094 +v 0.102404 -0.468750 -0.084041 +v 0.097094 -0.437501 -0.079683 +v 0.012985 0.468750 0.131837 +v 0.012311 0.437501 0.125001 +v 0.036461 0.437501 0.120197 +v 0.038455 0.468750 0.126770 +v -0.012985 0.468750 0.131837 +v -0.012311 0.437501 0.125001 +v -0.038455 0.468750 0.126770 +v -0.036461 0.437501 0.120197 +v 0.097094 0.437501 0.079683 +v 0.110774 0.437501 0.059210 +v 0.062448 0.468750 0.116832 +v -0.062448 0.468750 0.116832 +v -0.059210 0.437501 0.110774 +v -0.097094 0.437501 0.079683 +v -0.110774 0.437501 0.059210 +v 0.120197 0.437501 0.036461 +v 0.084041 0.468750 0.102404 +v -0.084041 0.468750 0.102404 +v -0.079683 0.437501 0.097094 +v -0.120197 0.437501 0.036461 +v 0.125000 0.437501 0.012311 +v 0.102404 0.468750 0.084041 +v -0.102404 0.468750 0.084041 +v 0.116832 0.468750 0.062448 +v -0.116832 0.468750 0.062448 +v -0.125001 0.437501 0.012312 +v -0.125001 0.437501 -0.012311 +v 0.120197 0.437501 -0.036461 +v 0.125000 0.437501 -0.012312 +v 0.126770 0.468750 0.038455 +v -0.126770 0.468750 0.038455 +v 0.131836 0.468750 0.012985 +v -0.131837 0.468750 0.012985 +v -0.120197 0.437501 -0.036461 +v -0.110774 0.437501 -0.059210 +v 0.097094 0.437501 -0.079683 +v 0.110774 0.437501 -0.059210 +v 0.131836 0.468750 -0.012985 +v -0.131837 0.468750 -0.012985 +v -0.097094 0.437501 -0.079683 +v 0.079683 0.097094 -0.097094 +v 0.079683 0.437501 -0.097094 +v 0.126770 0.468750 -0.038455 +v -0.126770 0.468750 -0.038455 +v 0.116832 0.468750 -0.062448 +v -0.116832 0.468750 -0.062448 +v 0.102404 0.468750 -0.084041 +v -0.102404 0.468750 -0.084041 +v -0.036461 0.120197 -0.120197 +v -0.059210 0.110774 -0.110774 +v -0.059210 0.437501 -0.110774 +v -0.036461 0.437501 -0.120197 +v 0.036461 0.120197 -0.120197 +v 0.012311 0.125000 -0.125000 +v 0.012311 0.437501 -0.125000 +v 0.036461 0.437501 -0.120197 +v 0.084041 0.468750 -0.102404 +v -0.084041 0.468750 -0.102404 +v -0.079683 0.437501 -0.097094 +v -0.012311 0.125000 -0.125000 +v -0.012312 0.437501 -0.125000 +v 0.062448 0.468750 -0.116832 +v 0.059210 0.437501 -0.110774 +v -0.062448 0.468750 -0.116832 +v 0.038455 0.468750 -0.126770 +v -0.038455 0.468750 -0.126770 +v 0.012985 0.468750 -0.131836 +v -0.012985 0.468750 -0.131836 +v 0.130078 0.468749 -0.063644 +v 0.139022 0.468749 -0.062467 +v 0.124587 0.468749 -0.056487 +v 0.142474 0.468749 -0.054132 +v 0.136982 0.468749 -0.046976 +v 0.128039 0.468749 -0.048153 +v 0.136982 -0.468751 -0.046976 +v 0.142474 -0.468751 -0.054133 +v 0.128039 -0.468751 -0.048154 +v 0.139022 -0.468751 -0.062467 +v 0.130078 -0.468751 -0.063644 +v 0.124587 -0.468751 -0.056488 +v 0.046976 0.468749 -0.136982 +v 0.054133 0.468749 -0.142474 +v 0.048153 0.468749 -0.128039 +v 0.062467 0.468749 -0.139022 +v 0.063644 0.468749 -0.130078 +v 0.056488 0.468749 -0.124587 +v 0.063644 -0.468751 -0.130078 +v 0.062467 -0.468751 -0.139022 +v 0.056487 -0.468751 -0.124587 +v 0.054133 -0.468751 -0.142474 +v 0.046976 -0.468751 -0.136982 +v 0.048153 -0.468751 -0.128039 +v -0.063644 0.468749 -0.130078 +v -0.062467 0.468749 -0.139022 +v -0.056487 0.468749 -0.124587 +v -0.054133 0.468749 -0.142474 +v -0.046976 0.468749 -0.136982 +v -0.048153 0.468749 -0.128039 +v -0.046976 -0.468751 -0.136982 +v -0.054133 -0.468751 -0.142474 +v -0.048153 -0.468751 -0.128039 +v -0.062467 -0.468751 -0.139022 +v -0.063644 -0.468751 -0.130078 +v -0.056487 -0.468751 -0.124587 +v -0.136982 0.468749 -0.046976 +v -0.142474 0.468749 -0.054133 +v -0.128039 0.468749 -0.048153 +v -0.139022 0.468749 -0.062467 +v -0.130078 0.468749 -0.063644 +v -0.124587 0.468749 -0.056487 +v -0.130078 -0.468751 -0.063644 +v -0.139022 -0.468751 -0.062467 +v -0.124587 -0.468751 -0.056488 +v -0.142474 -0.468751 -0.054133 +v -0.136982 -0.468751 -0.046976 +v -0.128039 -0.468751 -0.048153 +v -0.130078 0.468749 0.063644 +v -0.139022 0.468749 0.062467 +v -0.124587 0.468749 0.056487 +v -0.142474 0.468749 0.054133 +v -0.136982 0.468749 0.046976 +v -0.128039 0.468749 0.048153 +v -0.136982 -0.468751 0.046976 +v -0.142474 -0.468751 0.054133 +v -0.128039 -0.468751 0.048153 +v -0.139022 -0.468751 0.062467 +v -0.130078 -0.468751 0.063644 +v -0.124587 -0.468751 0.056487 +v -0.046976 0.468749 0.136982 +v -0.054133 0.468749 0.142474 +v -0.048153 0.468749 0.128039 +v -0.062467 0.468749 0.139022 +v -0.063644 0.468749 0.130078 +v -0.056488 0.468749 0.124587 +v -0.063644 -0.468751 0.130078 +v -0.062467 -0.468751 0.139022 +v -0.056487 -0.468751 0.124587 +v -0.054132 -0.468751 0.142474 +v -0.046976 -0.468751 0.136982 +v -0.048153 -0.468751 0.128039 +v 0.063644 0.468749 0.130078 +v 0.062466 0.468749 0.139022 +v 0.056487 0.468749 0.124587 +v 0.054132 0.468749 0.142474 +v 0.046976 0.468749 0.136982 +v 0.048153 0.468749 0.128039 +v 0.046976 -0.468751 0.136982 +v 0.054133 -0.468751 0.142474 +v 0.048153 -0.468751 0.128039 +v 0.062467 -0.468751 0.139022 +v 0.063644 -0.468751 0.130078 +v 0.056488 -0.468751 0.124587 +v 0.136982 0.468749 0.046976 +v 0.142474 0.468749 0.054133 +v 0.128039 0.468749 0.048154 +v 0.139022 0.468749 0.062467 +v 0.130078 0.468749 0.063644 +v 0.124587 0.468749 0.056488 +v 0.130078 -0.468751 0.063644 +v 0.139022 -0.468751 0.062467 +v 0.124587 -0.468751 0.056487 +v 0.142474 -0.468751 0.054132 +v 0.136982 -0.468751 0.046976 +v 0.128039 -0.468751 0.048153 +v -0.079683 -0.097094 -0.097094 +v -0.059210 -0.110774 -0.110774 +v -0.036461 -0.120197 -0.120197 +v -0.012312 -0.125000 -0.125001 +v 0.012311 -0.125000 -0.125001 +v 0.036461 -0.120197 -0.120197 +v 0.059210 -0.110774 -0.110774 +v 0.079683 -0.097094 -0.097094 +v -0.079683 0.097094 -0.097094 +v 0.059210 0.110774 -0.110774 +v 0.095821 0.468749 -0.108578 +v 0.104534 0.468749 -0.110913 +v 0.093486 0.468749 -0.099865 +v 0.110913 0.468749 -0.104534 +v 0.108578 0.468749 -0.095821 +v 0.099865 0.468749 -0.093486 +v 0.108578 -0.468751 -0.095821 +v 0.110913 -0.468751 -0.104534 +v 0.099865 -0.468751 -0.093486 +v 0.104534 -0.468751 -0.110913 +v 0.095821 -0.468751 -0.108578 +v 0.093486 -0.468751 -0.099865 +v -0.009021 0.468749 -0.144532 +v -0.004510 0.468749 -0.152344 +v -0.004510 0.468749 -0.136720 +v 0.004510 0.468749 -0.152344 +v 0.009021 0.468749 -0.144532 +v 0.004510 0.468749 -0.136720 +v 0.009021 -0.468751 -0.144532 +v 0.004510 -0.468751 -0.152344 +v 0.004510 -0.468751 -0.136720 +v -0.004510 -0.468751 -0.152344 +v -0.009021 -0.468751 -0.144532 +v -0.004510 -0.468751 -0.136720 +v -0.108578 0.468749 -0.095821 +v -0.110913 0.468749 -0.104534 +v -0.099865 0.468749 -0.093486 +v -0.104534 0.468749 -0.110913 +v -0.095821 0.468749 -0.108578 +v -0.093486 0.468749 -0.099865 +v -0.095821 -0.468751 -0.108578 +v -0.104534 -0.468751 -0.110913 +v -0.093486 -0.468751 -0.099865 +v -0.110913 -0.468751 -0.104534 +v -0.108578 -0.468751 -0.095821 +v -0.099865 -0.468751 -0.093486 +v -0.144532 0.468749 0.009021 +v -0.152344 0.468749 0.004510 +v -0.136720 0.468749 0.004510 +v -0.152344 0.468749 -0.004510 +v -0.144532 0.468749 -0.009021 +v -0.136720 0.468749 -0.004510 +v -0.144532 -0.468751 -0.009021 +v -0.152344 -0.468751 -0.004510 +v -0.136720 -0.468751 -0.004510 +v -0.152344 -0.468751 0.004510 +v -0.144532 -0.468751 0.009021 +v -0.136720 -0.468751 0.004510 +v -0.095821 0.468749 0.108578 +v -0.104534 0.468749 0.110913 +v -0.093486 0.468749 0.099865 +v -0.110913 0.468749 0.104534 +v -0.108578 0.468749 0.095821 +v -0.099865 0.468749 0.093486 +v -0.108578 -0.468751 0.095821 +v -0.110913 -0.468751 0.104534 +v -0.099865 -0.468751 0.093486 +v -0.104534 -0.468751 0.110913 +v -0.095821 -0.468751 0.108578 +v -0.093486 -0.468751 0.099865 +v 0.009021 0.468749 0.144532 +v 0.004510 0.468749 0.152344 +v 0.004510 0.468749 0.136720 +v -0.004510 0.468749 0.152344 +v -0.009021 0.468749 0.144532 +v -0.004510 0.468749 0.136720 +v -0.009021 -0.468751 0.144532 +v -0.004510 -0.468751 0.152344 +v -0.004510 -0.468751 0.136720 +v 0.004510 -0.468751 0.152344 +v 0.009021 -0.468751 0.144532 +v 0.004510 -0.468751 0.136720 +v 0.108578 0.468749 0.095821 +v 0.110913 0.468749 0.104534 +v 0.099865 0.468749 0.093486 +v 0.104534 0.468749 0.110913 +v 0.095821 0.468749 0.108578 +v 0.093486 0.468749 0.099865 +v 0.095821 -0.468751 0.108578 +v 0.104534 -0.468751 0.110913 +v 0.093486 -0.468751 0.099865 +v 0.110913 -0.468751 0.104534 +v 0.108578 -0.468751 0.095821 +v 0.099865 -0.468751 0.093486 +v 0.144532 0.468749 -0.009021 +v 0.152344 0.468749 -0.004510 +v 0.136720 0.468749 -0.004510 +v 0.152344 0.468749 0.004511 +v 0.144532 0.468749 0.009021 +v 0.136720 0.468749 0.004511 +v 0.144532 -0.468751 0.009021 +v 0.152344 -0.468751 0.004510 +v 0.136720 -0.468751 0.004510 +v 0.152344 -0.468751 -0.004511 +v 0.144532 -0.468751 -0.009021 +v 0.136720 -0.468751 -0.004510 +v 0.116832 0.062448 -0.468750 +v 0.110774 0.059210 -0.437501 +v 0.120197 0.036461 -0.437501 +v 0.126770 0.038455 -0.468750 +v 0.131837 0.012985 -0.468750 +v 0.125001 0.012312 -0.437501 +v 0.131837 -0.012984 -0.468750 +v 0.125001 -0.012311 -0.437501 +v 0.126770 -0.038455 -0.468750 +v 0.120197 -0.036461 -0.437501 +v 0.116832 -0.062448 -0.468750 +v 0.110774 -0.059210 -0.437501 +v 0.102404 -0.084041 -0.468750 +v 0.097094 -0.079683 -0.437501 +v 0.079683 -0.097094 -0.437501 +v 0.084041 -0.102404 -0.468750 +v 0.062448 -0.116832 -0.468750 +v 0.059210 -0.110774 -0.437501 +v 0.038455 -0.126770 -0.468750 +v 0.036461 -0.120197 -0.437501 +v 0.012985 -0.131836 -0.468750 +v 0.012312 -0.125000 -0.437501 +v -0.012311 -0.125000 -0.437501 +v -0.012985 -0.131836 -0.468750 +v -0.036461 -0.120197 -0.437501 +v -0.038455 -0.126770 -0.468750 +v -0.062448 -0.116832 -0.468750 +v -0.059210 -0.110774 -0.437501 +v -0.079683 -0.097094 -0.437501 +v -0.084041 -0.102404 -0.468750 +v -0.097094 -0.079683 -0.437501 +v -0.102404 -0.084041 -0.468750 +v -0.116832 -0.062448 -0.468750 +v -0.110774 -0.059210 -0.437501 +v -0.120197 -0.036461 -0.437501 +v -0.126770 -0.038455 -0.468750 +v -0.131836 -0.012985 -0.468750 +v -0.125000 -0.012311 -0.437501 +v -0.125000 0.012311 -0.437501 +v -0.131836 0.012985 -0.468750 +v -0.126770 0.038455 -0.468750 +v -0.120197 0.036461 -0.437501 +v -0.110774 0.059210 -0.437501 +v -0.116832 0.062448 -0.468750 +v -0.097094 0.079683 -0.437501 +v -0.102404 0.084041 -0.468750 +v -0.079683 0.097094 -0.437501 +v -0.084041 0.102404 -0.468750 +v -0.059210 0.110774 -0.437501 +v -0.062448 0.116832 -0.468750 +v -0.036461 0.120197 -0.437501 +v -0.038455 0.126770 -0.468750 +v -0.012311 0.125001 -0.437501 +v -0.012985 0.131837 -0.468750 +v 0.038455 0.126770 -0.468750 +v 0.012985 0.131837 -0.468750 +v 0.012311 0.125001 -0.437501 +v 0.036461 0.120197 -0.437501 +v 0.084041 0.102404 -0.468750 +v 0.062448 0.116832 -0.468750 +v 0.059210 0.110774 -0.437501 +v 0.079683 0.097094 -0.437501 +v 0.102404 0.084041 -0.468750 +v 0.097094 0.079683 -0.437501 +v 0.136982 0.046976 -0.468751 +v 0.142474 0.054133 -0.468751 +v 0.128039 0.048154 -0.468751 +v 0.139022 0.062467 -0.468751 +v 0.130078 0.063644 -0.468751 +v 0.124587 0.056488 -0.468751 +v 0.063644 0.130078 -0.468751 +v 0.062467 0.139022 -0.468751 +v 0.056487 0.124587 -0.468751 +v 0.054133 0.142474 -0.468751 +v 0.046976 0.136982 -0.468751 +v 0.048153 0.128039 -0.468751 +v -0.046976 0.136982 -0.468751 +v -0.054133 0.142474 -0.468751 +v -0.048153 0.128039 -0.468751 +v -0.062467 0.139022 -0.468751 +v -0.063644 0.130078 -0.468751 +v -0.056487 0.124587 -0.468751 +v -0.130078 0.063644 -0.468751 +v -0.139022 0.062467 -0.468751 +v -0.124587 0.056488 -0.468751 +v -0.142474 0.054133 -0.468751 +v -0.136982 0.046976 -0.468751 +v -0.128039 0.048153 -0.468751 +v -0.136982 -0.046976 -0.468751 +v -0.142474 -0.054133 -0.468751 +v -0.128039 -0.048153 -0.468751 +v -0.139022 -0.062467 -0.468751 +v -0.130078 -0.063644 -0.468751 +v -0.124587 -0.056487 -0.468751 +v -0.063644 -0.130078 -0.468751 +v -0.062467 -0.139022 -0.468751 +v -0.056487 -0.124587 -0.468751 +v -0.054132 -0.142474 -0.468751 +v -0.046976 -0.136982 -0.468751 +v -0.048153 -0.128039 -0.468751 +v 0.046976 -0.136982 -0.468751 +v 0.054133 -0.142474 -0.468751 +v 0.048153 -0.128039 -0.468751 +v 0.062467 -0.139022 -0.468751 +v 0.063644 -0.130078 -0.468751 +v 0.056488 -0.124587 -0.468751 +v 0.130078 -0.063644 -0.468751 +v 0.139022 -0.062467 -0.468751 +v 0.124587 -0.056487 -0.468751 +v 0.142474 -0.054132 -0.468751 +v 0.136982 -0.046976 -0.468751 +v 0.128039 -0.048153 -0.468751 +v 0.108578 0.095821 -0.468751 +v 0.110913 0.104534 -0.468751 +v 0.099865 0.093486 -0.468751 +v 0.104534 0.110913 -0.468751 +v 0.095821 0.108578 -0.468751 +v 0.093486 0.099865 -0.468751 +v 0.009021 0.144532 -0.468751 +v 0.004510 0.152344 -0.468751 +v 0.004510 0.136720 -0.468751 +v -0.004510 0.152344 -0.468751 +v -0.009021 0.144532 -0.468751 +v -0.004510 0.136720 -0.468751 +v -0.095821 0.108578 -0.468751 +v -0.104534 0.110913 -0.468751 +v -0.093486 0.099865 -0.468751 +v -0.110913 0.104534 -0.468751 +v -0.108578 0.095821 -0.468751 +v -0.099865 0.093486 -0.468751 +v -0.144532 0.009021 -0.468751 +v -0.152344 0.004510 -0.468751 +v -0.136720 0.004510 -0.468751 +v -0.152344 -0.004510 -0.468751 +v -0.144532 -0.009021 -0.468751 +v -0.136720 -0.004510 -0.468751 +v -0.108578 -0.095821 -0.468751 +v -0.110913 -0.104534 -0.468751 +v -0.099865 -0.093486 -0.468751 +v -0.104534 -0.110913 -0.468751 +v -0.095821 -0.108578 -0.468751 +v -0.093486 -0.099865 -0.468751 +v -0.009021 -0.144532 -0.468751 +v -0.004510 -0.152344 -0.468751 +v -0.004510 -0.136720 -0.468751 +v 0.004510 -0.152344 -0.468751 +v 0.009021 -0.144532 -0.468751 +v 0.004510 -0.136720 -0.468751 +v 0.095821 -0.108578 -0.468751 +v 0.104534 -0.110913 -0.468751 +v 0.093486 -0.099865 -0.468751 +v 0.110913 -0.104534 -0.468751 +v 0.108578 -0.095821 -0.468751 +v 0.099865 -0.093486 -0.468751 +v 0.144532 -0.009021 -0.468751 +v 0.152344 -0.004510 -0.468751 +v 0.136720 -0.004510 -0.468751 +v 0.152344 0.004510 -0.468751 +v 0.144532 0.009021 -0.468751 +v 0.136720 0.004510 -0.468751 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.4412 0.9276 +vt 0.4630 0.9493 +vt 0.4886 0.9664 +vt 0.5170 0.9782 +vt 0.5472 0.9842 +vt 0.5780 0.9842 +vt 0.6082 0.9782 +vt 0.6366 0.9664 +vt 0.6622 0.9493 +vt 0.6840 0.9276 +vt 0.7011 0.9020 +vt 0.7129 0.8735 +vt 0.7189 0.8434 +vt 0.7189 0.8126 +vt 0.7129 0.7824 +vt 0.7011 0.7539 +vt 0.6840 0.7283 +vt 0.6622 0.7066 +vt 0.6366 0.6895 +vt 0.6082 0.6777 +vt 0.5780 0.6717 +vt 0.5472 0.6717 +vt 0.5170 0.6777 +vt 0.4886 0.6895 +vt 0.4630 0.7066 +vt 0.4412 0.7283 +vt 0.4241 0.7539 +vt 0.4124 0.7824 +vt 0.4063 0.8126 +vt 0.4063 0.8434 +vt 0.4124 0.8735 +vt 0.4241 0.9020 +vt 0.2332 0.6777 +vt 0.2616 0.6895 +vt 0.2872 0.7066 +vt 0.3090 0.7283 +vt 0.3261 0.7539 +vt 0.3379 0.7824 +vt 0.3439 0.8126 +vt 0.3439 0.8434 +vt 0.3379 0.8735 +vt 0.3261 0.9020 +vt 0.3090 0.9276 +vt 0.2872 0.9493 +vt 0.2616 0.9664 +vt 0.2332 0.9782 +vt 0.2030 0.9842 +vt 0.1722 0.9842 +vt 0.1420 0.9782 +vt 0.1136 0.9664 +vt 0.0880 0.9493 +vt 0.0662 0.9276 +vt 0.0491 0.9020 +vt 0.0374 0.8735 +vt 0.0313 0.8434 +vt 0.0313 0.8126 +vt 0.0374 0.7824 +vt 0.0491 0.7539 +vt 0.0662 0.7283 +vt 0.0880 0.7066 +vt 0.1136 0.6895 +vt 0.1420 0.6777 +vt 0.1722 0.6717 +vt 0.2030 0.6717 +vt 0.5780 0.6717 +vt 0.6082 0.6777 +vt 0.6366 0.6895 +vt 0.6622 0.7066 +vt 0.6840 0.7283 +vt 0.7011 0.7539 +vt 0.7129 0.7824 +vt 0.7189 0.8126 +vt 0.7189 0.8434 +vt 0.7129 0.8735 +vt 0.7011 0.9020 +vt 0.6840 0.9276 +vt 0.6622 0.9493 +vt 0.6366 0.9664 +vt 0.6082 0.9782 +vt 0.5780 0.9842 +vt 0.5472 0.9842 +vt 0.5170 0.9782 +vt 0.4886 0.9664 +vt 0.4630 0.9493 +vt 0.4412 0.9276 +vt 0.4241 0.9020 +vt 0.4124 0.8735 +vt 0.4063 0.8434 +vt 0.4063 0.8126 +vt 0.4124 0.7824 +vt 0.4241 0.7539 +vt 0.4412 0.7283 +vt 0.4630 0.7066 +vt 0.4886 0.6895 +vt 0.5170 0.6777 +vt 0.5472 0.6717 +vt 0.1136 0.6895 +vt 0.0880 0.7066 +vt 0.0662 0.7283 +vt 0.0491 0.7539 +vt 0.0374 0.7824 +vt 0.0313 0.8126 +vt 0.0313 0.8434 +vt 0.0374 0.8735 +vt 0.0491 0.9020 +vt 0.0662 0.9276 +vt 0.0880 0.9493 +vt 0.1136 0.9664 +vt 0.1420 0.9782 +vt 0.1722 0.9842 +vt 0.2030 0.9842 +vt 0.2332 0.9782 +vt 0.2616 0.9664 +vt 0.2872 0.9493 +vt 0.3090 0.9276 +vt 0.3261 0.9020 +vt 0.3379 0.8735 +vt 0.3439 0.8434 +vt 0.3439 0.8126 +vt 0.3379 0.7824 +vt 0.3261 0.7539 +vt 0.3090 0.7283 +vt 0.2872 0.7066 +vt 0.2616 0.6895 +vt 0.2332 0.6777 +vt 0.2030 0.6717 +vt 0.1722 0.6717 +vt 0.1420 0.6777 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.4412 0.9276 +vt 0.4630 0.9493 +vt 0.4886 0.9664 +vt 0.5170 0.9782 +vt 0.5472 0.9842 +vt 0.5780 0.9842 +vt 0.6082 0.9782 +vt 0.6366 0.9664 +vt 0.6622 0.9493 +vt 0.6840 0.9276 +vt 0.7011 0.9020 +vt 0.7129 0.8735 +vt 0.7189 0.8434 +vt 0.7189 0.8126 +vt 0.7129 0.7824 +vt 0.7011 0.7539 +vt 0.6840 0.7283 +vt 0.6622 0.7066 +vt 0.6366 0.6895 +vt 0.6082 0.6777 +vt 0.5780 0.6717 +vt 0.5472 0.6717 +vt 0.5170 0.6777 +vt 0.4886 0.6895 +vt 0.4630 0.7066 +vt 0.4412 0.7283 +vt 0.4241 0.7539 +vt 0.4124 0.7824 +vt 0.4063 0.8126 +vt 0.4063 0.8434 +vt 0.4124 0.8735 +vt 0.4241 0.9020 +vt 0.2332 0.6777 +vt 0.2616 0.6895 +vt 0.2872 0.7066 +vt 0.3090 0.7283 +vt 0.3261 0.7539 +vt 0.3379 0.7824 +vt 0.3439 0.8126 +vt 0.3439 0.8434 +vt 0.3379 0.8735 +vt 0.3261 0.9020 +vt 0.3090 0.9276 +vt 0.2872 0.9493 +vt 0.2616 0.9664 +vt 0.2332 0.9782 +vt 0.2030 0.9842 +vt 0.1722 0.9842 +vt 0.1420 0.9782 +vt 0.1136 0.9664 +vt 0.0880 0.9493 +vt 0.0662 0.9276 +vt 0.0491 0.9020 +vt 0.0374 0.8735 +vt 0.0313 0.8434 +vt 0.0313 0.8126 +vt 0.0374 0.7824 +vt 0.0491 0.7539 +vt 0.0662 0.7283 +vt 0.0880 0.7066 +vt 0.1136 0.6895 +vt 0.1420 0.6777 +vt 0.1722 0.6717 +vt 0.2030 0.6717 +vt 0.5780 0.6717 +vt 0.6082 0.6777 +vt 0.6366 0.6895 +vt 0.6622 0.7066 +vt 0.6840 0.7283 +vt 0.7011 0.7539 +vt 0.7129 0.7824 +vt 0.7189 0.8126 +vt 0.7189 0.8434 +vt 0.7129 0.8735 +vt 0.7011 0.9020 +vt 0.6840 0.9276 +vt 0.6622 0.9493 +vt 0.6366 0.9664 +vt 0.6082 0.9782 +vt 0.5780 0.9842 +vt 0.5472 0.9842 +vt 0.5170 0.9782 +vt 0.4886 0.9664 +vt 0.4630 0.9493 +vt 0.4412 0.9276 +vt 0.4241 0.9020 +vt 0.4124 0.8735 +vt 0.4063 0.8434 +vt 0.4063 0.8126 +vt 0.4124 0.7824 +vt 0.4241 0.7539 +vt 0.4412 0.7283 +vt 0.4630 0.7066 +vt 0.4886 0.6895 +vt 0.5170 0.6777 +vt 0.5472 0.6717 +vt 0.1136 0.6895 +vt 0.0880 0.7066 +vt 0.0662 0.7283 +vt 0.0491 0.7539 +vt 0.0374 0.7824 +vt 0.0313 0.8126 +vt 0.0313 0.8434 +vt 0.0374 0.8735 +vt 0.0491 0.9020 +vt 0.0662 0.9276 +vt 0.0880 0.9493 +vt 0.1136 0.9664 +vt 0.1420 0.9782 +vt 0.1722 0.9842 +vt 0.2030 0.9842 +vt 0.2332 0.9782 +vt 0.2616 0.9664 +vt 0.2872 0.9493 +vt 0.3090 0.9276 +vt 0.3261 0.9020 +vt 0.3379 0.8735 +vt 0.3439 0.8434 +vt 0.3439 0.8126 +vt 0.3379 0.7824 +vt 0.3261 0.7539 +vt 0.3090 0.7283 +vt 0.2872 0.7066 +vt 0.2616 0.6895 +vt 0.2332 0.6777 +vt 0.2030 0.6717 +vt 0.1722 0.6717 +vt 0.1420 0.6777 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.4412 0.9276 +vt 0.4630 0.9493 +vt 0.4886 0.9664 +vt 0.5170 0.9782 +vt 0.5472 0.9842 +vt 0.5780 0.9842 +vt 0.6082 0.9782 +vt 0.6366 0.9664 +vt 0.6622 0.9493 +vt 0.6840 0.9276 +vt 0.7011 0.9020 +vt 0.7129 0.8735 +vt 0.7189 0.8434 +vt 0.7189 0.8126 +vt 0.7129 0.7824 +vt 0.7011 0.7539 +vt 0.6840 0.7283 +vt 0.6622 0.7066 +vt 0.6366 0.6895 +vt 0.6082 0.6777 +vt 0.5780 0.6717 +vt 0.5472 0.6717 +vt 0.5170 0.6777 +vt 0.4886 0.6895 +vt 0.4630 0.7066 +vt 0.4412 0.7283 +vt 0.4241 0.7539 +vt 0.4124 0.7824 +vt 0.4063 0.8126 +vt 0.4063 0.8434 +vt 0.4124 0.8735 +vt 0.4241 0.9020 +vt 0.2332 0.6777 +vt 0.2616 0.6895 +vt 0.2872 0.7066 +vt 0.3090 0.7283 +vt 0.3261 0.7539 +vt 0.3379 0.7824 +vt 0.3439 0.8126 +vt 0.3439 0.8434 +vt 0.3379 0.8735 +vt 0.3261 0.9020 +vt 0.3090 0.9276 +vt 0.2872 0.9493 +vt 0.2616 0.9664 +vt 0.2332 0.9782 +vt 0.2030 0.9842 +vt 0.1722 0.9842 +vt 0.1420 0.9782 +vt 0.1136 0.9664 +vt 0.0880 0.9493 +vt 0.0662 0.9276 +vt 0.0491 0.9020 +vt 0.0374 0.8735 +vt 0.0313 0.8434 +vt 0.0313 0.8126 +vt 0.0374 0.7824 +vt 0.0491 0.7539 +vt 0.0662 0.7283 +vt 0.0880 0.7066 +vt 0.1136 0.6895 +vt 0.1420 0.6777 +vt 0.1722 0.6717 +vt 0.2030 0.6717 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.4688 0.5898 +vt 0.4688 0.5664 +vt 0.5000 0.5664 +vt 0.5000 0.5898 +vt 0.4375 0.5898 +vt 0.4375 0.5664 +vt 0.4062 0.5898 +vt 0.4062 0.5664 +vt 0.3750 0.5898 +vt 0.3750 0.5664 +vt 0.3438 0.5898 +vt 0.3438 0.5664 +vt 0.3125 0.5898 +vt 0.3125 0.5664 +vt 0.2812 0.5898 +vt 0.2812 0.5664 +vt 0.2500 0.5898 +vt 0.2500 0.5664 +vt 0.2188 0.5898 +vt 0.2188 0.5664 +vt 0.1875 0.5898 +vt 0.1875 0.5664 +vt 0.1562 0.5898 +vt 0.1562 0.5664 +vt 0.1250 0.5898 +vt 0.1250 0.5664 +vt 0.0938 0.5898 +vt 0.0938 0.5664 +vt 0.0625 0.5898 +vt 0.0625 0.5664 +vt 0.0937 0.5664 +vt 0.0312 0.5898 +vt 0.0312 0.5664 +vt 0.0000 0.5898 +vt 0.0000 0.5664 +vt 0.9688 0.5898 +vt 0.9688 0.5664 +vt 1.0000 0.5664 +vt 1.0000 0.5898 +vt 0.9375 0.5898 +vt 0.9375 0.5664 +vt 0.9062 0.5898 +vt 0.9062 0.5664 +vt 0.8750 0.5898 +vt 0.8750 0.5664 +vt 0.8125 0.5898 +vt 0.8125 0.5664 +vt 0.8438 0.5664 +vt 0.8438 0.5898 +vt 0.7812 0.5898 +vt 0.7812 0.5664 +vt 0.7500 0.5898 +vt 0.7500 0.5664 +vt 0.7188 0.5898 +vt 0.7188 0.5664 +vt 0.6875 0.5898 +vt 0.6875 0.5664 +vt 0.6250 0.5898 +vt 0.6250 0.5664 +vt 0.6562 0.5664 +vt 0.6562 0.5898 +vt 0.5938 0.5898 +vt 0.5938 0.5664 +vt 0.5625 0.5898 +vt 0.5625 0.5664 +vt 0.6340 0.5124 +vt 0.6340 0.4980 +vt 0.6649 0.4980 +vt 0.6649 0.5123 +vt 0.6959 0.5124 +vt 0.6959 0.4980 +vt 0.7268 0.5123 +vt 0.7268 0.4980 +vt 0.7577 0.5123 +vt 0.7578 0.4980 +vt 0.7886 0.5124 +vt 0.7887 0.4980 +vt 0.8196 0.5125 +vt 0.8196 0.4980 +vt 0.8506 0.4981 +vt 0.8505 0.5124 +vt 0.8814 0.5125 +vt 0.8815 0.4981 +vt 0.9123 0.5126 +vt 0.9125 0.4982 +vt 0.9434 0.5128 +vt 0.9436 0.4983 +vt 0.9747 0.4983 +vt 0.9745 0.5128 +vt 1.0057 0.4984 +vt 1.0055 0.5128 +vt 1.0366 0.5128 +vt 1.0367 0.4984 +vt 1.0677 0.4984 +vt 1.0677 0.5129 +vt 1.0988 0.4984 +vt 1.0988 0.5128 +vt 1.1301 0.5129 +vt 1.1297 0.4983 +vt 1.1607 0.4982 +vt 1.1617 0.5126 +vt 1.1934 0.5121 +vt 1.1912 0.4978 +vt 0.1983 0.5120 +vt 0.2004 0.4977 +vt 0.2310 0.4981 +vt 0.2300 0.5126 +vt 0.2617 0.5129 +vt 0.2621 0.4982 +vt 0.2933 0.4983 +vt 0.2932 0.5129 +vt 0.3244 0.4982 +vt 0.3245 0.5127 +vt 0.3553 0.4982 +vt 0.3554 0.5126 +vt 0.3863 0.4982 +vt 0.3864 0.5126 +vt 0.4172 0.4981 +vt 0.4173 0.5125 +vt 0.4481 0.4981 +vt 0.4482 0.5124 +vt 0.5101 0.5125 +vt 0.4791 0.5124 +vt 0.4790 0.4981 +vt 0.5100 0.4980 +vt 0.5720 0.5124 +vt 0.5410 0.5124 +vt 0.5410 0.4980 +vt 0.5719 0.4980 +vt 0.6030 0.5125 +vt 0.6030 0.4980 +vt 0.9457 0.2723 +vt 0.9145 0.2850 +vt 1.0081 0.2851 +vt 0.9769 0.2723 +vt 0.8833 0.2970 +vt 1.0393 0.2971 +vt 0.8521 0.3078 +vt 1.0706 0.3080 +vt 0.8209 0.3169 +vt 0.9459 0.0196 +vt 0.9458 0.0339 +vt 0.9151 0.0339 +vt 0.9151 0.0196 +vt 0.9767 0.0195 +vt 0.9767 0.0339 +vt 1.0076 0.0195 +vt 1.0075 0.0339 +vt 0.8536 0.0338 +vt 0.8524 0.2238 +vt 0.8212 0.2146 +vt 0.8228 0.0338 +vt 0.7902 0.2074 +vt 0.7920 0.0337 +vt 0.8843 0.0339 +vt 0.8844 0.0196 +vt 1.0385 0.0195 +vt 1.0383 0.0339 +vt 1.1328 0.2072 +vt 1.1017 0.2145 +vt 1.0999 0.0340 +vt 1.1306 0.0342 +vt 0.7591 0.2024 +vt 0.7611 0.0336 +vt 0.8537 0.0195 +vt 1.0694 0.0196 +vt 1.0691 0.0339 +vt 1.1640 0.2021 +vt 1.1610 0.0344 +vt 0.7280 0.1998 +vt 0.7302 0.0335 +vt 0.8229 0.0194 +vt 0.6875 0.5898 +vt 0.6875 0.5664 +vt 0.7188 0.5664 +vt 0.7188 0.5898 +vt 0.7812 0.5898 +vt 0.7812 0.5664 +vt 0.8125 0.5664 +vt 0.8125 0.5898 +vt 1.1004 0.0197 +vt 0.6562 0.5898 +vt 0.6562 0.5664 +vt 0.7921 0.0194 +vt 0.8438 0.5664 +vt 0.8438 0.5898 +vt 1.1314 0.0198 +vt 0.6250 0.5898 +vt 0.6250 0.5664 +vt 0.2280 0.1990 +vt 0.1969 0.1988 +vt 0.2015 0.0321 +vt 0.2327 0.0318 +vt 0.6968 0.1998 +vt 0.6656 0.2023 +vt 0.6685 0.0333 +vt 0.6994 0.0334 +vt 0.7613 0.0193 +vt 0.5938 0.5898 +vt 0.5938 0.5664 +vt 1.1624 0.0202 +vt 0.5312 0.5898 +vt 0.5312 0.5664 +vt 0.5625 0.5664 +vt 0.5625 0.5898 +vt 0.7304 0.0192 +vt 0.8750 0.5664 +vt 0.8750 0.5898 +vt 1.1934 0.0209 +vt 1.1908 0.0349 +vt 0.5000 0.5898 +vt 0.5000 0.5664 +vt 0.2906 0.2066 +vt 0.2593 0.2016 +vt 0.2642 0.0317 +vt 0.2956 0.0317 +vt 0.6344 0.2072 +vt 0.6031 0.2144 +vt 0.6066 0.0331 +vt 0.6375 0.0332 +vt 0.6995 0.0191 +vt 0.9062 0.5664 +vt 0.9062 0.5898 +vt 0.2320 0.0171 +vt 0.1997 0.0175 +vt 0.5312 0.5664 +vt 0.5312 0.5898 +vt 0.4688 0.5898 +vt 0.4688 0.5664 +vt 0.3218 0.2139 +vt 0.3268 0.0318 +vt 0.5875 0.2190 +vt 0.5719 0.2143 +vt 0.5757 0.0330 +vt 0.6686 0.0189 +vt 0.9375 0.5664 +vt 0.9375 0.5898 +vt 0.2641 0.0170 +vt 0.4375 0.5898 +vt 0.4375 0.5664 +vt 0.6377 0.0188 +vt 0.9688 0.5664 +vt 0.9688 0.5898 +vt 0.2958 0.0171 +vt 0.4062 0.5898 +vt 0.4062 0.5664 +vt 0.6068 0.0187 +vt 0.0000 0.5898 +vt 0.0000 0.5664 +vt 0.0312 0.5664 +vt 0.0312 0.5898 +vt 0.3271 0.0173 +vt 1.0000 0.5664 +vt 1.0000 0.5898 +vt 0.4160 0.2019 +vt 0.3846 0.2068 +vt 0.3892 0.0320 +vt 0.4204 0.0322 +vt 0.5097 0.2021 +vt 0.4786 0.1994 +vt 0.4827 0.0325 +vt 0.5137 0.0327 +vt 0.5759 0.0186 +vt 0.0625 0.5664 +vt 0.0625 0.5898 +vt 0.7500 0.5664 +vt 0.7500 0.5898 +vt 0.3583 0.0174 +vt 0.3580 0.0320 +vt 0.3750 0.5898 +vt 0.3750 0.5664 +vt 0.4473 0.1994 +vt 0.4516 0.0324 +vt 0.5450 0.0184 +vt 0.5447 0.0328 +vt 0.0937 0.5664 +vt 0.0938 0.5898 +vt 0.3895 0.0175 +vt 0.3438 0.5898 +vt 0.3438 0.5664 +vt 0.5140 0.0183 +vt 0.0938 0.5664 +vt 0.1250 0.5664 +vt 0.1250 0.5898 +vt 0.4208 0.0177 +vt 0.3125 0.5898 +vt 0.3125 0.5664 +vt 0.4830 0.0181 +vt 0.1562 0.5664 +vt 0.1562 0.5898 +vt 0.4519 0.0179 +vt 0.2812 0.5898 +vt 0.2812 0.5664 +vt 0.2500 0.5898 +vt 0.2500 0.5664 +vt 0.1875 0.5664 +vt 0.1875 0.5898 +vt 0.2188 0.5898 +vt 0.2188 0.5664 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 1.0394 0.2346 +vt 1.0082 0.2466 +vt 1.0706 0.2237 +vt 0.8209 0.3169 +vt 0.8521 0.3078 +vt 0.8506 0.4981 +vt 0.8196 0.4980 +vt 0.8524 0.2238 +vt 0.8536 0.0338 +vt 0.8843 0.0339 +vt 0.8835 0.2346 +vt 0.9770 0.2593 +vt 0.9458 0.2593 +vt 1.1018 0.3172 +vt 0.6339 0.3241 +vt 0.6650 0.3290 +vt 0.6962 0.3316 +vt 0.7273 0.3316 +vt 0.7585 0.3291 +vt 0.7897 0.3241 +vt 0.8835 0.2346 +vt 0.9146 0.2466 +vt 1.1329 0.3245 +vt 1.1642 0.3296 +vt 1.1955 0.3322 +vt 0.1964 0.3319 +vt 0.2277 0.3318 +vt 0.2591 0.3292 +vt 0.2903 0.3241 +vt 0.3215 0.3169 +vt 0.3372 0.3122 +vt 0.3528 0.3168 +vt 0.3842 0.3241 +vt 0.4155 0.3290 +vt 0.4467 0.3316 +vt 0.4779 0.3315 +vt 0.5091 0.3290 +vt 0.5403 0.3240 +vt 0.5715 0.3168 +vt 0.5871 0.3122 +vt 0.6027 0.3168 +vt 1.1952 0.1995 +vt 0.3531 0.2140 +vt 0.3374 0.2186 +vt 0.5409 0.2071 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.4688 0.5898 +vt 0.4688 0.5664 +vt 0.5000 0.5664 +vt 0.5000 0.5898 +vt 0.4375 0.5898 +vt 0.4375 0.5664 +vt 0.4062 0.5898 +vt 0.4062 0.5664 +vt 0.3750 0.5898 +vt 0.3750 0.5664 +vt 0.3438 0.5898 +vt 0.3438 0.5664 +vt 0.3125 0.5898 +vt 0.3125 0.5664 +vt 0.2812 0.5898 +vt 0.2812 0.5664 +vt 0.2500 0.5898 +vt 0.2500 0.5664 +vt 0.2188 0.5898 +vt 0.2188 0.5664 +vt 0.1875 0.5898 +vt 0.1875 0.5664 +vt 0.1562 0.5898 +vt 0.1562 0.5664 +vt 0.1250 0.5898 +vt 0.1250 0.5664 +vt 0.0938 0.5898 +vt 0.0938 0.5664 +vt 0.0625 0.5898 +vt 0.0625 0.5664 +vt 0.0937 0.5664 +vt 0.0312 0.5898 +vt 0.0312 0.5664 +vt 0.0000 0.5898 +vt 0.0000 0.5664 +vt 0.9688 0.5898 +vt 0.9688 0.5664 +vt 1.0000 0.5664 +vt 1.0000 0.5898 +vt 0.9375 0.5898 +vt 0.9375 0.5664 +vt 0.9062 0.5898 +vt 0.9062 0.5664 +vt 0.8750 0.5898 +vt 0.8750 0.5664 +vt 0.8125 0.5898 +vt 0.8125 0.5664 +vt 0.8438 0.5664 +vt 0.8438 0.5898 +vt 0.7812 0.5898 +vt 0.7812 0.5664 +vt 0.7500 0.5898 +vt 0.7500 0.5664 +vt 0.7188 0.5898 +vt 0.7188 0.5664 +vt 0.6875 0.5898 +vt 0.6875 0.5664 +vt 0.6250 0.5898 +vt 0.6250 0.5664 +vt 0.6562 0.5664 +vt 0.6562 0.5898 +vt 0.5938 0.5898 +vt 0.5938 0.5664 +vt 0.5625 0.5898 +vt 0.5625 0.5664 +vt 0.6340 0.5124 +vt 0.6340 0.4980 +vt 0.6649 0.4980 +vt 0.6649 0.5123 +vt 0.6959 0.5124 +vt 0.6959 0.4980 +vt 0.7268 0.5123 +vt 0.7268 0.4980 +vt 0.7577 0.5123 +vt 0.7578 0.4980 +vt 0.7886 0.5124 +vt 0.7887 0.4980 +vt 0.8196 0.5125 +vt 0.8505 0.5124 +vt 0.8814 0.5125 +vt 0.8815 0.4981 +vt 0.9123 0.5126 +vt 0.9125 0.4982 +vt 0.9434 0.5128 +vt 0.9436 0.4983 +vt 0.9747 0.4983 +vt 0.9745 0.5128 +vt 1.0057 0.4984 +vt 1.0055 0.5128 +vt 1.0366 0.5128 +vt 1.0367 0.4984 +vt 1.0677 0.4984 +vt 1.0677 0.5129 +vt 1.0988 0.4984 +vt 1.0988 0.5128 +vt 1.1301 0.5129 +vt 1.1297 0.4983 +vt 1.1607 0.4982 +vt 1.1617 0.5126 +vt 1.1934 0.5121 +vt 1.1912 0.4978 +vt 0.1983 0.5120 +vt 0.2004 0.4977 +vt 0.2310 0.4981 +vt 0.2300 0.5126 +vt 0.2617 0.5129 +vt 0.2621 0.4982 +vt 0.2933 0.4983 +vt 0.2932 0.5129 +vt 0.3244 0.4982 +vt 0.3245 0.5127 +vt 0.3553 0.4982 +vt 0.3554 0.5126 +vt 0.3863 0.4982 +vt 0.3864 0.5126 +vt 0.4172 0.4981 +vt 0.4173 0.5125 +vt 0.4481 0.4981 +vt 0.4482 0.5124 +vt 0.5101 0.5125 +vt 0.4791 0.5124 +vt 0.4790 0.4981 +vt 0.5100 0.4980 +vt 0.5720 0.5124 +vt 0.5410 0.5124 +vt 0.5410 0.4980 +vt 0.5719 0.4980 +vt 0.6030 0.5125 +vt 0.6030 0.4980 +vt 0.9457 0.2723 +vt 0.9145 0.2850 +vt 0.9769 0.2723 +vt 1.0081 0.2851 +vt 0.8833 0.2970 +vt 1.0393 0.2971 +vt 1.0706 0.3080 +vt 1.1018 0.3172 +vt 0.9459 0.0196 +vt 0.9458 0.0339 +vt 0.9151 0.0339 +vt 0.9151 0.0196 +vt 0.9767 0.0195 +vt 0.9767 0.0339 +vt 1.0076 0.0195 +vt 1.0075 0.0339 +vt 0.8212 0.2146 +vt 0.8228 0.0338 +vt 0.7902 0.2074 +vt 0.7920 0.0337 +vt 0.8844 0.0196 +vt 1.0385 0.0195 +vt 1.0383 0.0339 +vt 1.1328 0.2072 +vt 1.1017 0.2145 +vt 1.0999 0.0340 +vt 1.1306 0.0342 +vt 0.7591 0.2024 +vt 0.7611 0.0336 +vt 0.8537 0.0195 +vt 1.0694 0.0196 +vt 1.0691 0.0339 +vt 1.1640 0.2021 +vt 1.1610 0.0344 +vt 0.7280 0.1998 +vt 0.7302 0.0335 +vt 0.8229 0.0194 +vt 0.6875 0.5898 +vt 0.6875 0.5664 +vt 0.7188 0.5664 +vt 0.7188 0.5898 +vt 0.7812 0.5898 +vt 0.7812 0.5664 +vt 0.8125 0.5664 +vt 0.8125 0.5898 +vt 1.1004 0.0197 +vt 0.6562 0.5898 +vt 0.6562 0.5664 +vt 0.7921 0.0194 +vt 0.8438 0.5664 +vt 0.8438 0.5898 +vt 1.1314 0.0198 +vt 0.6250 0.5898 +vt 0.6250 0.5664 +vt 0.2280 0.1990 +vt 0.1969 0.1988 +vt 0.2015 0.0321 +vt 0.2327 0.0318 +vt 0.6968 0.1998 +vt 0.6656 0.2023 +vt 0.6685 0.0333 +vt 0.6994 0.0334 +vt 0.7613 0.0193 +vt 0.5938 0.5898 +vt 0.5938 0.5664 +vt 1.1624 0.0202 +vt 0.5312 0.5898 +vt 0.5312 0.5664 +vt 0.5625 0.5664 +vt 0.5625 0.5898 +vt 0.7304 0.0192 +vt 0.8750 0.5664 +vt 0.8750 0.5898 +vt 1.1934 0.0209 +vt 1.1908 0.0349 +vt 0.5000 0.5898 +vt 0.5000 0.5664 +vt 0.2906 0.2066 +vt 0.2593 0.2016 +vt 0.2642 0.0317 +vt 0.2956 0.0317 +vt 0.6344 0.2072 +vt 0.6031 0.2144 +vt 0.6066 0.0331 +vt 0.6375 0.0332 +vt 0.6995 0.0191 +vt 0.9062 0.5664 +vt 0.9062 0.5898 +vt 0.2320 0.0171 +vt 0.1997 0.0175 +vt 0.5312 0.5664 +vt 0.5312 0.5898 +vt 0.4688 0.5898 +vt 0.4688 0.5664 +vt 0.3218 0.2139 +vt 0.3268 0.0318 +vt 0.5875 0.2190 +vt 0.5719 0.2143 +vt 0.5757 0.0330 +vt 0.6686 0.0189 +vt 0.9375 0.5664 +vt 0.9375 0.5898 +vt 0.2641 0.0170 +vt 0.4375 0.5898 +vt 0.4375 0.5664 +vt 0.6377 0.0188 +vt 0.9688 0.5664 +vt 0.9688 0.5898 +vt 0.2958 0.0171 +vt 0.4062 0.5898 +vt 0.4062 0.5664 +vt 0.6068 0.0187 +vt 0.0000 0.5898 +vt 0.0000 0.5664 +vt 0.0312 0.5664 +vt 0.0312 0.5898 +vt 0.3271 0.0173 +vt 1.0000 0.5664 +vt 1.0000 0.5898 +vt 0.4160 0.2019 +vt 0.3846 0.2068 +vt 0.3892 0.0320 +vt 0.4204 0.0322 +vt 0.5097 0.2021 +vt 0.4786 0.1994 +vt 0.4827 0.0325 +vt 0.5137 0.0327 +vt 0.5759 0.0186 +vt 0.0625 0.5664 +vt 0.0625 0.5898 +vt 0.7500 0.5664 +vt 0.7500 0.5898 +vt 0.3583 0.0174 +vt 0.3580 0.0320 +vt 0.3750 0.5898 +vt 0.3750 0.5664 +vt 0.4473 0.1994 +vt 0.4516 0.0324 +vt 0.5450 0.0184 +vt 0.5447 0.0328 +vt 0.0937 0.5664 +vt 0.0938 0.5898 +vt 0.3895 0.0175 +vt 0.3438 0.5898 +vt 0.3438 0.5664 +vt 0.5140 0.0183 +vt 0.0938 0.5664 +vt 0.1250 0.5664 +vt 0.1250 0.5898 +vt 0.4208 0.0177 +vt 0.3125 0.5898 +vt 0.3125 0.5664 +vt 0.4830 0.0181 +vt 0.1562 0.5664 +vt 0.1562 0.5898 +vt 0.4519 0.0179 +vt 0.2812 0.5898 +vt 0.2812 0.5664 +vt 0.2500 0.5898 +vt 0.2500 0.5664 +vt 0.1875 0.5664 +vt 0.1875 0.5898 +vt 0.2188 0.5898 +vt 0.2188 0.5664 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 1.0394 0.2346 +vt 1.0082 0.2466 +vt 1.0706 0.2237 +vt 0.6339 0.3241 +vt 0.6650 0.3290 +vt 0.6962 0.3316 +vt 0.7273 0.3316 +vt 0.7585 0.3291 +vt 0.7897 0.3241 +vt 0.9146 0.2466 +vt 0.9458 0.2593 +vt 0.9770 0.2593 +vt 1.1329 0.3245 +vt 1.1642 0.3296 +vt 1.1955 0.3322 +vt 0.1964 0.3319 +vt 0.2277 0.3318 +vt 0.2591 0.3292 +vt 0.2903 0.3241 +vt 0.3215 0.3169 +vt 0.3372 0.3122 +vt 0.3528 0.3168 +vt 0.3842 0.3241 +vt 0.4155 0.3290 +vt 0.4467 0.3316 +vt 0.4779 0.3315 +vt 0.5091 0.3290 +vt 0.5403 0.3240 +vt 0.5715 0.3168 +vt 0.5871 0.3122 +vt 0.6027 0.3168 +vt 1.1952 0.1995 +vt 0.3531 0.2140 +vt 0.3374 0.2186 +vt 0.5409 0.2071 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.4688 0.5898 +vt 0.4688 0.5664 +vt 0.5000 0.5664 +vt 0.5000 0.5898 +vt 0.4375 0.5898 +vt 0.4375 0.5664 +vt 0.4062 0.5898 +vt 0.4062 0.5664 +vt 0.3750 0.5898 +vt 0.3750 0.5664 +vt 0.3438 0.5898 +vt 0.3438 0.5664 +vt 0.3125 0.5898 +vt 0.3125 0.5664 +vt 0.2812 0.5898 +vt 0.2812 0.5664 +vt 0.2500 0.5898 +vt 0.2500 0.5664 +vt 0.2188 0.5898 +vt 0.2188 0.5664 +vt 0.1875 0.5898 +vt 0.1875 0.5664 +vt 0.1562 0.5898 +vt 0.1562 0.5664 +vt 0.1250 0.5898 +vt 0.1250 0.5664 +vt 0.0938 0.5898 +vt 0.0938 0.5664 +vt 0.0625 0.5898 +vt 0.0625 0.5664 +vt 0.0937 0.5664 +vt 0.0312 0.5898 +vt 0.0312 0.5664 +vt 0.0000 0.5898 +vt 0.0000 0.5664 +vt 0.9688 0.5898 +vt 0.9688 0.5664 +vt 1.0000 0.5664 +vt 1.0000 0.5898 +vt 0.9375 0.5898 +vt 0.9375 0.5664 +vt 0.9062 0.5898 +vt 0.9062 0.5664 +vt 0.8750 0.5898 +vt 0.8750 0.5664 +vt 0.8125 0.5898 +vt 0.8125 0.5664 +vt 0.8438 0.5664 +vt 0.8438 0.5898 +vt 0.7812 0.5898 +vt 0.7812 0.5664 +vt 0.7500 0.5898 +vt 0.7500 0.5664 +vt 0.7188 0.5898 +vt 0.7188 0.5664 +vt 0.6875 0.5898 +vt 0.6875 0.5664 +vt 0.6250 0.5898 +vt 0.6250 0.5664 +vt 0.6562 0.5664 +vt 0.6562 0.5898 +vt 0.5938 0.5898 +vt 0.5938 0.5664 +vt 0.5625 0.5898 +vt 0.5625 0.5664 +vt 0.6340 0.5124 +vt 0.6340 0.4980 +vt 0.6649 0.4980 +vt 0.6649 0.5123 +vt 0.6959 0.5124 +vt 0.6959 0.4980 +vt 0.7268 0.5123 +vt 0.7268 0.4980 +vt 0.7577 0.5123 +vt 0.7578 0.4980 +vt 0.7886 0.5124 +vt 0.7887 0.4980 +vt 0.8196 0.5125 +vt 0.8196 0.4980 +vt 0.8506 0.4981 +vt 0.8505 0.5124 +vt 0.8814 0.5125 +vt 0.8815 0.4981 +vt 0.9123 0.5126 +vt 0.9125 0.4982 +vt 0.9434 0.5128 +vt 0.9436 0.4983 +vt 0.9747 0.4983 +vt 0.9745 0.5128 +vt 1.0057 0.4984 +vt 1.0055 0.5128 +vt 1.0366 0.5128 +vt 1.0367 0.4984 +vt 1.0677 0.4984 +vt 1.0677 0.5129 +vt 1.0988 0.4984 +vt 1.0988 0.5128 +vt 1.1301 0.5129 +vt 1.1297 0.4983 +vt 1.1607 0.4982 +vt 1.1617 0.5126 +vt 1.1934 0.5121 +vt 1.1912 0.4978 +vt 0.1983 0.5120 +vt 0.2004 0.4977 +vt 0.2310 0.4981 +vt 0.2300 0.5126 +vt 0.2617 0.5129 +vt 0.2621 0.4982 +vt 0.2933 0.4983 +vt 0.2932 0.5129 +vt 0.3244 0.4982 +vt 0.3245 0.5127 +vt 0.3553 0.4982 +vt 0.3554 0.5126 +vt 0.3863 0.4982 +vt 0.3864 0.5126 +vt 0.4172 0.4981 +vt 0.4173 0.5125 +vt 0.4481 0.4981 +vt 0.4482 0.5124 +vt 0.5101 0.5125 +vt 0.4791 0.5124 +vt 0.4790 0.4981 +vt 0.5100 0.4980 +vt 0.5720 0.5124 +vt 0.5410 0.5124 +vt 0.5410 0.4980 +vt 0.5719 0.4980 +vt 0.6030 0.5125 +vt 0.6030 0.4980 +vt 0.5312 0.5664 +vt 0.5312 0.5898 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6339 0.3241 +vt 0.6650 0.3290 +vt 0.6962 0.3316 +vt 0.7273 0.3316 +vt 0.7585 0.3291 +vt 0.7897 0.3241 +vt 0.8209 0.3169 +vt 0.8365 0.3124 +vt 0.8521 0.3170 +vt 0.8832 0.3242 +vt 0.9143 0.3292 +vt 0.9455 0.3318 +vt 0.9767 0.3318 +vt 1.0079 0.3293 +vt 1.0391 0.3244 +vt 1.0705 0.3172 +vt 1.0862 0.3126 +vt 1.1018 0.3172 +vt 1.1329 0.3245 +vt 1.1642 0.3296 +vt 1.1955 0.3322 +vt 0.1964 0.3319 +vt 0.2277 0.3318 +vt 0.2591 0.3292 +vt 0.2903 0.3241 +vt 0.3215 0.3169 +vt 0.3372 0.3122 +vt 0.3528 0.3168 +vt 0.3842 0.3241 +vt 0.4155 0.3290 +vt 0.4467 0.3316 +vt 0.4779 0.3315 +vt 0.5091 0.3290 +vt 0.5403 0.3240 +vt 0.5715 0.3168 +vt 0.6027 0.3168 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vn 1.0000 0.0000 0.0000 +vn -1.0000 0.0000 0.0000 +vn 0.0000 -1.0000 -0.0000 +vn 0.0000 1.0000 -0.0000 +vn -0.0000 0.0000 1.0000 +vn -0.0000 -0.0000 -1.0000 +vn -0.6857 0.2113 0.6965 +vn 0.6857 0.2113 0.6965 +vn 0.6857 0.3431 0.6419 +vn -0.6857 0.3431 0.6419 +vn -0.6857 0.0713 0.7244 +vn 0.6857 0.0713 0.7244 +vn -0.6857 -0.0713 0.7244 +vn 0.6857 -0.0713 0.7244 +vn -0.6857 -0.2113 0.6965 +vn 0.6857 -0.2113 0.6965 +vn -0.6857 -0.3431 0.6419 +vn 0.6857 -0.3431 0.6419 +vn -0.6857 -0.4617 0.5626 +vn 0.6857 -0.4616 0.5628 +vn -0.6857 -0.5627 0.4617 +vn 0.6857 -0.5627 0.4617 +vn -0.6857 -0.6421 0.3427 +vn 0.6857 -0.6419 0.3431 +vn -0.6857 -0.6966 0.2112 +vn 0.6857 -0.6965 0.2114 +vn -0.6857 -0.7244 0.0713 +vn 0.6857 -0.7244 0.0713 +vn -0.6857 -0.7244 -0.0713 +vn 0.6857 -0.7244 -0.0713 +vn -0.6857 -0.6965 -0.2113 +vn 0.6857 -0.6965 -0.2113 +vn -0.6857 -0.6419 -0.3432 +vn 0.6857 -0.6420 -0.3430 +vn -0.6857 -0.5625 -0.4618 +vn 0.6857 -0.5625 -0.4619 +vn -0.6857 -0.4617 -0.5626 +vn 0.6857 -0.4617 -0.5626 +vn -0.6857 -0.3431 -0.6419 +vn 0.6857 -0.3431 -0.6419 +vn -0.6857 -0.2113 -0.6965 +vn 0.6857 -0.2113 -0.6965 +vn -0.6857 -0.0713 -0.7244 +vn 0.6857 -0.0713 -0.7244 +vn -0.6857 0.0713 -0.7244 +vn 0.6857 0.0713 -0.7244 +vn -0.6857 0.2114 -0.6965 +vn 0.6857 0.2114 -0.6965 +vn -0.6857 0.4617 -0.5626 +vn 0.6857 0.4616 -0.5627 +vn 0.6857 0.3431 -0.6419 +vn -0.6857 0.3432 -0.6419 +vn -0.6857 0.5626 -0.4617 +vn 0.6857 0.5628 -0.4616 +vn -0.6857 0.6420 -0.3430 +vn 0.6857 0.6419 -0.3432 +vn -0.6857 0.6966 -0.2112 +vn 0.6857 0.6966 -0.2112 +vn -0.6857 0.7244 -0.0713 +vn 0.6857 0.7244 -0.0713 +vn -0.6857 0.6965 0.2113 +vn 0.6857 0.6965 0.2113 +vn 0.6857 0.7244 0.0713 +vn -0.6857 0.7244 0.0713 +vn -0.6857 0.6418 0.3433 +vn 0.6857 0.6420 0.3430 +vn -0.6857 0.5626 0.4617 +vn 0.6857 0.5628 0.4616 +vn -0.2147 0.8614 -0.4604 +vn -0.1087 0.8767 -0.4686 +vn -0.1087 0.9513 -0.2886 +vn -0.2147 0.9346 -0.2835 +vn -0.2147 0.9720 -0.0957 +vn -0.1087 0.9893 -0.0974 +vn -0.2147 0.9720 0.0957 +vn -0.1087 0.9893 0.0974 +vn -0.2147 0.9346 0.2835 +vn -0.1087 0.9513 0.2886 +vn -0.2147 0.8614 0.4604 +vn -0.1087 0.8767 0.4686 +vn -0.2147 0.7550 0.6196 +vn -0.1087 0.7684 0.6306 +vn -0.1087 0.6306 0.7684 +vn -0.2147 0.6196 0.7550 +vn -0.2147 0.4604 0.8614 +vn -0.1087 0.4686 0.8767 +vn -0.2147 0.2835 0.9346 +vn -0.1087 0.2886 0.9513 +vn -0.2147 0.0957 0.9720 +vn -0.1087 0.0974 0.9893 +vn -0.1087 -0.0974 0.9893 +vn -0.2147 -0.0957 0.9720 +vn -0.1087 -0.2886 0.9513 +vn -0.2147 -0.2835 0.9346 +vn -0.2147 -0.4604 0.8614 +vn -0.1087 -0.4686 0.8767 +vn -0.1087 -0.6306 0.7684 +vn -0.2147 -0.6196 0.7550 +vn -0.1087 -0.7684 0.6306 +vn -0.2147 -0.7550 0.6196 +vn -0.2147 -0.8614 0.4604 +vn -0.1087 -0.8767 0.4686 +vn -0.1087 -0.9513 0.2886 +vn -0.2147 -0.9346 0.2835 +vn -0.2147 -0.9720 0.0957 +vn -0.1087 -0.9893 0.0974 +vn -0.1087 -0.9893 -0.0974 +vn -0.2147 -0.9720 -0.0957 +vn -0.2147 -0.9346 -0.2835 +vn -0.1087 -0.9513 -0.2886 +vn -0.1087 -0.8767 -0.4686 +vn -0.2147 -0.8614 -0.4604 +vn -0.1087 -0.7684 -0.6306 +vn -0.2147 -0.7550 -0.6196 +vn -0.1087 -0.6306 -0.7684 +vn -0.2147 -0.6196 -0.7550 +vn -0.1087 -0.4686 -0.8767 +vn -0.2147 -0.4604 -0.8614 +vn -0.1087 -0.2886 -0.9513 +vn -0.2147 -0.2835 -0.9346 +vn -0.1087 -0.0974 -0.9893 +vn -0.2147 -0.0957 -0.9720 +vn -0.2147 0.2835 -0.9346 +vn -0.2147 0.0957 -0.9720 +vn -0.1087 0.0974 -0.9893 +vn -0.1087 0.2886 -0.9513 +vn -0.2147 0.6196 -0.7550 +vn -0.2147 0.4604 -0.8614 +vn -0.1087 0.4686 -0.8767 +vn -0.1087 0.6306 -0.7684 +vn -0.2147 0.7550 -0.6196 +vn -0.1087 0.7684 -0.6306 +vn 0.0247 0.0247 0.9994 +vn 0.1243 0.1243 0.9844 +vn 0.1243 -0.1243 0.9844 +vn 0.0247 -0.0247 0.9994 +vn 0.2267 0.2267 0.9472 +vn 0.2267 -0.2267 0.9472 +vn 0.3333 0.3333 0.8819 +vn 0.3333 -0.3333 0.8819 +vn 0.4431 0.4431 0.7793 +vn 0.2147 0.0957 0.9720 +vn 0.1087 0.0974 0.9893 +vn 0.1087 0.2886 0.9513 +vn 0.2147 0.2835 0.9346 +vn 0.2147 -0.0957 0.9720 +vn 0.1087 -0.0974 0.9893 +vn 0.2147 -0.2835 0.9346 +vn 0.1087 -0.2886 0.9513 +vn 0.1087 0.6306 0.7684 +vn -0.3333 0.3333 0.8819 +vn -0.4431 0.4431 0.7793 +vn 0.1087 0.7684 0.6306 +vn -0.5510 0.5510 0.6267 +vn 0.1087 0.8767 0.4686 +vn 0.1087 0.4686 0.8767 +vn 0.2147 0.4604 0.8614 +vn 0.2147 -0.4604 0.8614 +vn 0.1087 -0.4686 0.8767 +vn -0.5510 -0.5510 0.6267 +vn -0.4431 -0.4431 0.7793 +vn 0.1087 -0.7684 0.6306 +vn 0.1087 -0.8767 0.4686 +vn -0.6437 0.6437 0.4139 +vn 0.1087 0.9513 0.2886 +vn 0.2147 0.6196 0.7550 +vn 0.2147 -0.6196 0.7550 +vn 0.1087 -0.6306 0.7684 +vn -0.6437 -0.6437 0.4139 +vn 0.1087 -0.9513 0.2886 +vn -0.6995 0.6996 0.1458 +vn 0.1087 0.9893 0.0974 +vn 0.2147 0.7550 0.6196 +vn 0.6858 -0.5627 0.4617 +vn -0.6857 -0.5626 0.4617 +vn -0.6857 -0.6419 0.3431 +vn 0.2147 -0.7550 0.6196 +vn 0.6857 -0.4617 0.5626 +vn 0.2147 0.8614 0.4604 +vn 0.2147 -0.8614 0.4604 +vn 0.6857 -0.3429 0.6420 +vn -0.6995 -0.6996 -0.1458 +vn -0.6996 -0.6995 0.1458 +vn 0.1087 -0.9893 0.0974 +vn 0.1087 -0.9893 -0.0974 +vn -0.6996 0.6995 -0.1458 +vn -0.6437 0.6437 -0.4139 +vn 0.1087 0.9513 -0.2886 +vn 0.1087 0.9893 -0.0974 +vn 0.2147 0.9346 0.2835 +vn 0.2147 -0.9346 0.2835 +vn 0.2147 0.9720 0.0957 +vn 0.2147 -0.9720 0.0957 +vn -0.5510 -0.5510 -0.6267 +vn -0.6437 -0.6437 -0.4139 +vn 0.1087 -0.9513 -0.2886 +vn 0.1087 -0.8767 -0.4686 +vn -0.5510 0.5510 -0.6267 +vn -0.4431 0.4431 -0.7793 +vn 0.1087 0.7684 -0.6306 +vn 0.1087 0.8767 -0.4686 +vn 0.2147 0.9720 -0.0957 +vn -0.6857 -0.5626 -0.4618 +vn 0.6857 -0.5626 -0.4618 +vn 0.2147 -0.9720 -0.0957 +vn 0.6857 0.4618 0.5625 +vn -0.6857 0.4616 0.5628 +vn 0.6857 0.3432 0.6419 +vn -0.6857 0.3432 0.6419 +vn -0.4431 -0.4431 -0.7793 +vn 0.1087 -0.7684 -0.6306 +vn -0.5774 0.5774 -0.5774 +vn -0.4431 0.7793 -0.4431 +vn 0.1087 0.6306 -0.7684 +vn 0.2147 0.9346 -0.2835 +vn 0.2147 -0.9346 -0.2835 +vn 0.6857 0.4616 0.5628 +vn 0.2147 0.8614 -0.4604 +vn -0.6857 -0.3432 -0.6419 +vn 0.2147 -0.8614 -0.4604 +vn 0.6857 0.5627 0.4617 +vn -0.6857 0.5627 0.4617 +vn 0.2147 0.7550 -0.6196 +vn 0.2147 -0.7550 -0.6196 +vn -0.6437 -0.4139 -0.6437 +vn -0.5510 -0.6267 -0.5510 +vn 0.1087 -0.4686 -0.8767 +vn 0.1087 -0.2886 -0.9513 +vn -0.6437 0.4139 -0.6437 +vn -0.6995 0.1458 -0.6996 +vn 0.1087 0.0974 -0.9893 +vn 0.1087 0.2886 -0.9513 +vn 0.2147 0.6196 -0.7550 +vn -0.6857 -0.6965 0.2114 +vn 0.6857 -0.6965 0.2113 +vn 0.2147 -0.6196 -0.7550 +vn 0.1087 -0.6306 -0.7684 +vn 0.6857 0.6420 0.3431 +vn -0.6857 0.6418 0.3434 +vn -0.6996 -0.1458 -0.6995 +vn 0.1087 -0.0974 -0.9893 +vn 0.2147 0.4604 -0.8614 +vn 0.1087 0.4686 -0.8767 +vn -0.6857 0.2113 -0.6965 +vn 0.6857 0.2113 -0.6965 +vn 0.2147 -0.4604 -0.8614 +vn 0.2147 0.2835 -0.9346 +vn -0.6857 0.3431 -0.6419 +vn 0.2147 -0.2835 -0.9346 +vn 0.6857 0.7244 0.0714 +vn 0.2147 0.0957 -0.9720 +vn -0.6857 0.4618 -0.5625 +vn 0.6857 0.4616 -0.5628 +vn 0.2147 -0.0957 -0.9720 +vn 0.6857 0.6965 -0.2113 +vn -0.6857 0.6965 -0.2113 +vn 0.6857 0.5626 -0.4617 +vn 0.6100 -0.3032 -0.7321 +vn 0.0000 -0.3827 -0.9239 +vn -0.0000 0.6088 -0.7934 +vn 0.6100 0.4824 -0.6287 +vn 0.6100 -0.7856 -0.1033 +vn 0.0000 -0.9914 -0.1305 +vn 0.0000 0.9914 0.1306 +vn 0.6100 0.7856 0.1033 +vn 0.0000 0.3827 0.9239 +vn 0.6100 0.3032 0.7321 +vn 0.0000 -0.6087 0.7934 +vn 0.6100 -0.4824 0.6287 +vn -0.6100 0.3032 0.7321 +vn -0.0000 0.9914 0.1305 +vn -0.6100 0.7856 0.1036 +vn -0.6100 -0.4824 0.6287 +vn 0.0000 -0.6088 0.7934 +vn -0.0000 0.6087 -0.7934 +vn -0.6100 0.4824 -0.6286 +vn -0.6100 -0.3031 -0.7322 +vn -0.0000 -0.9914 -0.1306 +vn -0.6100 -0.7856 -0.1034 +vn 0.6100 -0.7321 -0.3032 +vn 0.0000 -0.9239 -0.3826 +vn 0.0000 -0.1305 -0.9914 +vn 0.6100 -0.1034 -0.7856 +vn 0.6100 -0.6287 0.4824 +vn 0.0000 -0.7933 0.6088 +vn 0.0000 0.7934 -0.6087 +vn 0.6100 0.6287 -0.4823 +vn 0.0000 0.9239 0.3827 +vn 0.6100 0.7322 0.3030 +vn 0.0000 0.1305 0.9914 +vn 0.6100 0.1037 0.7856 +vn -0.6100 0.7321 0.3033 +vn -0.6100 0.6287 -0.4823 +vn -0.6100 0.1034 0.7856 +vn -0.6100 -0.1033 -0.7856 +vn 0.0000 -0.9239 -0.3827 +vn -0.6100 -0.7322 -0.3031 +vn 0.0000 -0.7934 0.6087 +vn -0.6100 -0.6288 0.4823 +vn 0.6100 -0.7321 0.3032 +vn -0.0000 -0.9239 0.3827 +vn -0.0000 -0.7934 -0.6088 +vn 0.6100 -0.6287 -0.4824 +vn 0.6100 -0.1034 0.7856 +vn 0.0000 -0.1305 0.9914 +vn -0.0000 0.1306 -0.9914 +vn 0.6100 0.1035 -0.7856 +vn -0.0000 0.9239 -0.3827 +vn 0.6100 0.7321 -0.3032 +vn 0.0000 0.7934 0.6087 +vn 0.6100 0.6287 0.4824 +vn -0.6100 0.7321 -0.3032 +vn 0.0000 0.1305 -0.9914 +vn -0.6100 0.1034 -0.7856 +vn -0.6100 0.6287 0.4824 +vn 0.0000 0.7934 0.6088 +vn 0.0000 -0.7934 -0.6087 +vn -0.6100 -0.6286 -0.4824 +vn -0.6100 -0.7321 0.3032 +vn 0.0000 -0.1306 0.9914 +vn -0.6100 -0.1033 0.7856 +vn 0.6100 -0.3032 0.7321 +vn 0.0000 -0.3827 0.9239 +vn 0.0000 -0.9914 0.1305 +vn 0.6100 -0.7856 0.1036 +vn 0.6100 0.4824 0.6287 +vn 0.0000 0.6088 0.7934 +vn -0.0000 -0.6087 -0.7934 +vn 0.6100 -0.4824 -0.6287 +vn -0.0000 0.3827 -0.9239 +vn 0.6100 0.3032 -0.7321 +vn -0.0000 0.9914 -0.1306 +vn 0.6100 0.7856 -0.1034 +vn -0.6100 0.3032 -0.7321 +vn -0.6100 -0.4823 -0.6287 +vn -0.6100 0.7856 -0.1034 +vn 0.0000 0.9914 -0.1305 +vn -0.6100 -0.7856 0.1033 +vn -0.6100 -0.3031 0.7322 +vn 0.0000 0.6087 0.7934 +vn -0.6100 0.4824 0.6287 +vn 0.6100 -0.4822 0.6288 +vn 0.6100 -0.7856 -0.1034 +vn 0.6100 -0.3031 -0.7322 +vn -0.6100 -0.3032 -0.7321 +vn -0.6100 -0.7856 -0.1036 +vn -0.6100 0.4825 -0.6286 +vn -0.6100 0.3033 0.7321 +vn -0.6100 0.7856 0.1034 +vn 0.6100 0.7322 0.3031 +vn 0.6100 0.1034 0.7856 +vn 0.6100 0.6287 -0.4824 +vn -0.0000 0.7934 -0.6088 +vn -0.0000 -0.1306 -0.9914 +vn -0.6100 -0.7320 -0.3034 +vn 0.0000 -0.7934 0.6088 +vn -0.6100 -0.6286 0.4824 +vn 0.0000 0.1306 0.9914 +vn -0.6100 0.7321 0.3032 +vn -0.6100 0.6288 -0.4823 +vn 0.6100 0.1034 -0.7856 +vn -0.6100 -0.7320 0.3034 +vn -0.6100 -0.1034 0.7856 +vn -0.6100 -0.6286 -0.4825 +vn -0.6100 0.6286 0.4824 +vn 0.6100 -0.4823 -0.6287 +vn -0.0000 -0.6088 -0.7934 +vn -0.0000 -0.9914 0.1306 +vn 0.6100 -0.7856 0.1034 +vn -0.6100 -0.3032 0.7321 +vn -0.6100 0.4823 0.6287 +vn -0.6100 -0.7856 0.1034 +vn -0.6100 0.7856 -0.1033 +vn -0.6100 0.3033 -0.7321 +vn -0.6100 -0.4824 -0.6287 +vn -0.2267 -0.2267 0.9472 +vn -0.1243 -0.1243 0.9844 +vn -0.3333 -0.3333 0.8819 +vn 0.4431 -0.4431 0.7793 +vn 0.6306 0.1087 0.7684 +vn 0.7684 0.1087 0.6306 +vn 0.6306 -0.1087 0.7684 +vn 0.4686 -0.1087 0.8767 +vn -0.0247 -0.0247 0.9994 +vn -0.0247 0.0247 0.9994 +vn 0.5510 0.5510 -0.6267 +vn 0.6437 0.6437 -0.4139 +vn 0.6996 0.6995 -0.1458 +vn 0.6995 0.6996 0.1458 +vn 0.6437 0.6437 0.4139 +vn 0.5510 0.5510 0.6267 +vn -0.2267 0.2267 0.9472 +vn -0.1243 0.1243 0.9844 +vn 0.5510 -0.5510 0.6267 +vn 0.6437 -0.6437 0.4139 +vn 0.6995 -0.6995 0.1458 +vn 0.6995 -0.6995 -0.1458 +vn 0.6437 -0.6437 -0.4139 +vn 0.5510 -0.5510 -0.6267 +vn 0.4431 -0.4431 -0.7793 +vn 0.5773 -0.5774 -0.5774 +vn 0.4431 -0.7793 -0.4431 +vn 0.5510 -0.6267 -0.5510 +vn 0.6437 -0.4139 -0.6437 +vn 0.6995 -0.1458 -0.6995 +vn 0.6995 0.1458 -0.6995 +vn 0.6437 0.4139 -0.6437 +vn 0.5510 0.6267 -0.5510 +vn 0.4431 0.7793 -0.4431 +vn 0.5773 0.5774 -0.5774 +vn 0.4431 0.4431 -0.7793 +vn -0.4431 -0.7793 -0.4431 +vn -0.5774 -0.5774 -0.5773 +vn -0.5510 0.6267 -0.5510 +vn 0.6100 -0.5603 -0.5603 +vn 0.0000 -0.7071 -0.7071 +vn 0.0000 0.2588 -0.9659 +vn 0.6100 0.2051 -0.7654 +vn 0.6100 -0.7654 0.2051 +vn 0.0000 -0.9659 0.2588 +vn 0.0000 0.9659 -0.2588 +vn 0.6100 0.7654 -0.2051 +vn 0.0000 0.7071 0.7071 +vn 0.6100 0.5604 0.5602 +vn 0.0000 -0.2588 0.9659 +vn 0.6100 -0.2051 0.7654 +vn -0.6100 0.5602 0.5604 +vn -0.6100 0.7654 -0.2051 +vn -0.6100 -0.2051 0.7654 +vn -0.6100 0.2052 -0.7654 +vn -0.6100 -0.5603 -0.5603 +vn -0.6100 -0.7654 0.2051 +vn 0.6100 -0.7924 -0.0001 +vn -0.0000 -0.5000 -0.8660 +vn 0.6100 -0.3961 -0.6863 +vn 0.6100 -0.3961 0.6863 +vn 0.0000 -0.5000 0.8660 +vn -0.0000 0.5000 -0.8660 +vn 0.6100 0.3963 -0.6862 +vn 0.6100 0.7924 0.0000 +vn 0.0000 0.5000 0.8660 +vn 0.6100 0.3962 0.6862 +vn -0.6100 0.7924 -0.0001 +vn -0.6100 0.3963 -0.6861 +vn -0.6100 0.3962 0.6862 +vn -0.6100 -0.3962 -0.6862 +vn -0.6100 -0.7924 0.0000 +vn -0.6100 -0.3962 0.6862 +vn 0.6100 -0.5602 0.5604 +vn 0.0000 -0.7071 0.7071 +vn 0.0000 -0.9659 -0.2588 +vn 0.6100 -0.7654 -0.2050 +vn 0.6100 0.2051 0.7654 +vn 0.0000 0.2588 0.9659 +vn 0.0000 -0.2588 -0.9659 +vn 0.6100 -0.2051 -0.7654 +vn -0.0000 0.7071 -0.7071 +vn 0.6100 0.5602 -0.5604 +vn 0.0000 0.9659 0.2588 +vn 0.6100 0.7655 0.2049 +vn -0.6100 0.5603 -0.5603 +vn -0.6100 -0.2051 -0.7654 +vn -0.6100 0.7654 0.2051 +vn -0.6100 -0.7654 -0.2051 +vn -0.6100 -0.5603 0.5603 +vn -0.6100 0.2052 0.7654 +vn 0.6100 0.0002 0.7924 +vn 0.0000 -0.8660 0.5000 +vn 0.6100 -0.6861 0.3964 +vn 0.6100 0.6863 0.3961 +vn 0.0000 0.8660 0.5000 +vn -0.0000 -0.8660 -0.5000 +vn 0.6100 -0.6863 -0.3961 +vn 0.6100 0.0002 -0.7924 +vn -0.0000 0.8660 -0.5000 +vn 0.6100 0.6862 -0.3962 +vn -0.6100 0.0001 -0.7924 +vn -0.6100 -0.6861 -0.3964 +vn -0.6100 0.6862 -0.3962 +vn -0.6100 -0.6863 0.3961 +vn -0.6100 -0.0001 0.7924 +vn -0.6100 0.6863 0.3961 +vn 0.6100 -0.7654 0.2052 +vn 0.6100 0.2052 -0.7654 +vn -0.6100 -0.5602 -0.5604 +vn -0.6100 0.2050 -0.7654 +vn -0.6100 -0.2052 0.7654 +vn -0.6100 0.5603 0.5603 +vn 0.6100 0.3963 -0.6861 +vn 0.6100 -0.3962 -0.6862 +vn -0.6100 -0.3961 0.6863 +vn -0.6100 -0.3961 -0.6863 +vn -0.6100 0.3963 0.6862 +vn -0.6100 0.3964 -0.6861 +vn 0.6100 0.7654 0.2051 +vn 0.6100 0.2050 0.7654 +vn 0.6100 -0.7654 -0.2053 +vn -0.6100 0.2050 0.7654 +vn -0.6100 0.5604 -0.5602 +vn 0.6100 0.0000 -0.7924 +vn 0.6100 0.6862 -0.3963 +vn 0.6100 -0.6861 -0.3963 +vn 0.6100 -0.6862 0.3962 +vn -0.6100 0.0000 0.7924 +vn -0.6100 0.6862 0.3963 +vn -0.6100 -0.6862 0.3962 +vn -0.6100 0.6863 -0.3961 +vn -0.6100 0.0002 -0.7924 +vn -0.6100 -0.6862 -0.3962 +vn 0.2114 0.6857 0.6965 +vn 0.2113 -0.6857 0.6965 +vn 0.3431 -0.6857 0.6419 +vn 0.3431 0.6857 0.6419 +vn 0.0712 0.6857 0.7244 +vn 0.0715 -0.6857 0.7244 +vn -0.0714 0.6857 0.7244 +vn -0.0712 -0.6857 0.7244 +vn -0.2114 0.6857 0.6965 +vn -0.2114 -0.6857 0.6965 +vn -0.3432 0.6857 0.6419 +vn -0.3430 -0.6857 0.6420 +vn -0.4617 0.6857 0.5626 +vn -0.4617 -0.6857 0.5626 +vn -0.5627 0.6857 0.4617 +vn -0.5627 -0.6857 0.4617 +vn -0.6421 0.6857 0.3428 +vn -0.6419 -0.6857 0.3431 +vn -0.6965 0.6857 0.2113 +vn -0.6965 -0.6857 0.2113 +vn -0.7244 0.6857 0.0710 +vn -0.7244 -0.6857 0.0713 +vn -0.7244 0.6857 -0.0714 +vn -0.7244 -0.6857 -0.0713 +vn -0.6965 0.6857 -0.2113 +vn -0.6965 -0.6857 -0.2113 +vn -0.6419 0.6857 -0.3431 +vn -0.6419 -0.6857 -0.3431 +vn -0.5628 0.6857 -0.4616 +vn -0.5628 -0.6857 -0.4616 +vn -0.4617 0.6857 -0.5626 +vn -0.4617 -0.6857 -0.5626 +vn -0.3430 0.6857 -0.6420 +vn -0.3432 -0.6857 -0.6419 +vn -0.2113 0.6857 -0.6965 +vn -0.2113 -0.6857 -0.6965 +vn -0.0713 0.6857 -0.7244 +vn -0.0713 -0.6857 -0.7244 +vn 0.0713 0.6857 -0.7244 +vn 0.0713 -0.6857 -0.7244 +vn 0.2112 0.6857 -0.6966 +vn 0.2114 -0.6857 -0.6965 +vn 0.4616 0.6857 -0.5628 +vn 0.4618 -0.6857 -0.5625 +vn 0.3431 -0.6857 -0.6419 +vn 0.3431 0.6857 -0.6419 +vn 0.5626 0.6857 -0.4617 +vn 0.5626 -0.6857 -0.4617 +vn 0.6419 0.6857 -0.3431 +vn 0.6419 -0.6857 -0.3431 +vn 0.6965 0.6857 -0.2113 +vn 0.6965 -0.6857 -0.2113 +vn 0.7244 0.6857 -0.0713 +vn 0.7244 -0.6857 -0.0713 +vn 0.6965 0.6857 0.2113 +vn 0.6966 -0.6857 0.2112 +vn 0.7244 -0.6857 0.0713 +vn 0.7244 0.6857 0.0713 +vn 0.6419 0.6857 0.3431 +vn 0.6419 -0.6857 0.3431 +vn 0.5627 0.6857 0.4617 +vn 0.5628 -0.6857 0.4616 +vn 0.8614 0.2147 -0.4604 +vn 0.8767 0.1087 -0.4686 +vn 0.9513 0.1087 -0.2886 +vn 0.9346 0.2147 -0.2835 +vn 0.9720 0.2147 -0.0957 +vn 0.9893 0.1087 -0.0974 +vn 0.9720 0.2147 0.0957 +vn 0.9893 0.1087 0.0974 +vn 0.9346 0.2147 0.2835 +vn 0.9513 0.1087 0.2886 +vn 0.8614 0.2147 0.4604 +vn 0.8767 0.1087 0.4686 +vn 0.7550 0.2147 0.6196 +vn 0.6196 0.2147 0.7550 +vn 0.4604 0.2147 0.8614 +vn 0.4686 0.1087 0.8767 +vn 0.2835 0.2147 0.9346 +vn 0.2886 0.1087 0.9513 +vn 0.0957 0.2147 0.9720 +vn 0.0974 0.1087 0.9893 +vn -0.0974 0.1087 0.9893 +vn -0.0957 0.2147 0.9720 +vn -0.2886 0.1087 0.9513 +vn -0.2835 0.2147 0.9346 +vn -0.4604 0.2147 0.8614 +vn -0.4686 0.1087 0.8767 +vn -0.6306 0.1087 0.7684 +vn -0.6196 0.2147 0.7550 +vn -0.7684 0.1087 0.6306 +vn -0.7550 0.2147 0.6196 +vn -0.8614 0.2147 0.4604 +vn -0.8767 0.1087 0.4686 +vn -0.9513 0.1087 0.2886 +vn -0.9346 0.2147 0.2835 +vn -0.9720 0.2147 0.0957 +vn -0.9893 0.1087 0.0974 +vn -0.9893 0.1087 -0.0974 +vn -0.9720 0.2147 -0.0957 +vn -0.9346 0.2147 -0.2835 +vn -0.9513 0.1087 -0.2886 +vn -0.8767 0.1087 -0.4686 +vn -0.8614 0.2147 -0.4604 +vn -0.7684 0.1087 -0.6306 +vn -0.7550 0.2147 -0.6196 +vn -0.6306 0.1087 -0.7684 +vn -0.6196 0.2147 -0.7550 +vn -0.4686 0.1087 -0.8767 +vn -0.4604 0.2147 -0.8614 +vn -0.2886 0.1087 -0.9513 +vn -0.2835 0.2147 -0.9346 +vn -0.0974 0.1087 -0.9893 +vn -0.0957 0.2147 -0.9720 +vn 0.2835 0.2147 -0.9346 +vn 0.0957 0.2147 -0.9720 +vn 0.0974 0.1087 -0.9893 +vn 0.2886 0.1087 -0.9513 +vn 0.6196 0.2147 -0.7550 +vn 0.4604 0.2147 -0.8614 +vn 0.4686 0.1087 -0.8767 +vn 0.6306 0.1087 -0.7684 +vn 0.7550 0.2147 -0.6196 +vn 0.7684 0.1087 -0.6306 +vn 0.0957 -0.2147 0.9720 +vn 0.0974 -0.1087 0.9893 +vn 0.2886 -0.1087 0.9513 +vn 0.2835 -0.2147 0.9346 +vn -0.0957 -0.2147 0.9720 +vn -0.0974 -0.1087 0.9893 +vn -0.2835 -0.2147 0.9346 +vn -0.2886 -0.1087 0.9513 +vn 0.7684 -0.1087 0.6306 +vn 0.8767 -0.1087 0.4686 +vn 0.4604 -0.2147 0.8614 +vn -0.4604 -0.2147 0.8614 +vn -0.4686 -0.1087 0.8767 +vn -0.7684 -0.1087 0.6306 +vn -0.8767 -0.1087 0.4686 +vn 0.9513 -0.1087 0.2886 +vn 0.6196 -0.2147 0.7550 +vn -0.6196 -0.2147 0.7550 +vn -0.6306 -0.1087 0.7684 +vn -0.9513 -0.1087 0.2886 +vn 0.9893 -0.1087 0.0974 +vn 0.7550 -0.2147 0.6196 +vn -0.5626 -0.6857 0.4617 +vn -0.5626 0.6857 0.4617 +vn -0.6419 0.6857 0.3431 +vn -0.7244 0.6857 0.0713 +vn -0.7244 0.6857 -0.0713 +vn -0.7550 -0.2147 0.6196 +vn -0.4618 -0.6857 0.5625 +vn -0.4616 0.6857 0.5628 +vn 0.8614 -0.2147 0.4604 +vn -0.6965 0.6857 -0.2114 +vn -0.8614 -0.2147 0.4604 +vn -0.3431 -0.6857 0.6419 +vn -0.3431 0.6857 0.6419 +vn -0.9893 -0.1087 0.0974 +vn -0.9893 -0.1087 -0.0974 +vn 0.9513 -0.1087 -0.2886 +vn 0.9893 -0.1087 -0.0974 +vn 0.9346 -0.2147 0.2835 +vn -0.2112 0.6857 0.6966 +vn -0.9346 -0.2147 0.2835 +vn 0.0713 -0.6857 0.7244 +vn 0.0713 0.6857 0.7244 +vn -0.0713 0.6857 0.7244 +vn -0.0713 -0.6857 0.7244 +vn 0.9720 -0.2147 0.0957 +vn -0.9720 -0.2147 0.0957 +vn 0.2113 0.6857 0.6965 +vn -0.9513 -0.1087 -0.2886 +vn -0.8767 -0.1087 -0.4686 +vn 0.7684 -0.1087 -0.6306 +vn 0.8767 -0.1087 -0.4686 +vn 0.9720 -0.2147 -0.0957 +vn -0.5625 -0.6857 -0.4618 +vn -0.9720 -0.2147 -0.0957 +vn 0.4616 -0.6858 0.5627 +vn 0.4617 0.6857 0.5627 +vn 0.3432 -0.6857 0.6419 +vn 0.3430 0.6857 0.6420 +vn -0.7684 -0.1087 -0.6306 +vn 0.7793 0.4431 -0.4431 +vn 0.6306 -0.1087 -0.7684 +vn 0.9346 -0.2147 -0.2835 +vn -0.9346 -0.2147 -0.2835 +vn 0.4616 -0.6857 0.5628 +vn 0.4616 0.6857 0.5628 +vn 0.8614 -0.2147 -0.4604 +vn -0.8614 -0.2147 -0.4604 +vn 0.5626 -0.6858 0.4617 +vn 0.5626 0.6858 0.4617 +vn 0.7550 -0.2147 -0.6196 +vn -0.2112 -0.6857 -0.6966 +vn -0.2114 0.6857 -0.6965 +vn -0.7550 -0.2147 -0.6196 +vn -0.4139 0.6437 -0.6437 +vn -0.6267 0.5510 -0.5510 +vn -0.4686 -0.1087 -0.8767 +vn -0.2886 -0.1087 -0.9513 +vn 0.4139 0.6437 -0.6437 +vn 0.1458 0.6995 -0.6995 +vn 0.0974 -0.1087 -0.9893 +vn 0.2886 -0.1087 -0.9513 +vn 0.6196 -0.2147 -0.7550 +vn -0.6196 -0.2147 -0.7550 +vn -0.6306 -0.1087 -0.7684 +vn -0.1458 0.6995 -0.6995 +vn -0.0974 -0.1087 -0.9893 +vn 0.4604 -0.2147 -0.8614 +vn 0.4686 -0.1087 -0.8767 +vn 0.2115 -0.6857 -0.6965 +vn -0.4604 -0.2147 -0.8614 +vn 0.6966 -0.6857 0.2111 +vn 0.6964 0.6857 0.2116 +vn 0.2835 -0.2147 -0.9346 +vn 0.3432 0.6857 -0.6419 +vn 0.3430 -0.6857 -0.6420 +vn -0.2835 -0.2147 -0.9346 +vn 0.0957 -0.2147 -0.9720 +vn 0.4617 0.6857 -0.5626 +vn 0.4617 -0.6857 -0.5626 +vn -0.0957 -0.2147 -0.9720 +vn 0.5625 0.6857 -0.4618 +vn 0.5626 -0.6857 -0.4618 +vn -0.3032 -0.6100 -0.7321 +vn -0.3827 0.0000 -0.9239 +vn 0.6088 0.0000 -0.7934 +vn 0.4824 -0.6100 -0.6287 +vn -0.7856 -0.6100 -0.1034 +vn -0.9914 0.0000 -0.1305 +vn 0.9914 0.0000 0.1306 +vn 0.7856 -0.6100 0.1035 +vn 0.3827 0.0000 0.9239 +vn 0.3032 -0.6100 0.7321 +vn -0.6087 0.0000 0.7934 +vn -0.4825 -0.6100 0.6286 +vn 0.3032 0.6100 0.7321 +vn 0.3826 0.0000 0.9239 +vn 0.9914 -0.0000 0.1305 +vn 0.7856 0.6100 0.1034 +vn -0.4824 0.6100 0.6287 +vn -0.6088 0.0000 0.7933 +vn 0.6087 -0.0000 -0.7934 +vn 0.4824 0.6100 -0.6286 +vn -0.3032 0.6100 -0.7321 +vn -0.7856 0.6100 -0.1034 +vn -0.7321 -0.6100 -0.3032 +vn -0.9239 0.0000 -0.3827 +vn -0.1305 0.0000 -0.9914 +vn -0.1034 -0.6100 -0.7856 +vn -0.6287 -0.6100 0.4824 +vn -0.7934 0.0000 0.6088 +vn 0.7934 0.0000 -0.6087 +vn 0.6287 -0.6100 -0.4824 +vn 0.9239 0.0000 0.3827 +vn 0.7321 -0.6100 0.3032 +vn 0.1306 0.0000 0.9914 +vn 0.1035 -0.6100 0.7856 +vn 0.7321 0.6100 0.3031 +vn 0.6287 0.6100 -0.4823 +vn 0.1034 0.6100 0.7856 +vn 0.1305 0.0000 0.9914 +vn -0.1034 0.6100 -0.7856 +vn -0.7321 0.6100 -0.3032 +vn -0.7934 0.0000 0.6087 +vn -0.6286 0.6100 0.4825 +vn -0.7321 -0.6100 0.3032 +vn -0.9239 0.0000 0.3827 +vn -0.7934 -0.0000 -0.6088 +vn -0.6287 -0.6100 -0.4824 +vn -0.1034 -0.6100 0.7856 +vn -0.1305 0.0000 0.9914 +vn 0.1305 0.0000 -0.9914 +vn 0.1034 -0.6100 -0.7856 +vn 0.9239 0.0000 -0.3827 +vn 0.7320 -0.6100 -0.3033 +vn 0.7934 0.0000 0.6087 +vn 0.6286 -0.6100 0.4824 +vn 0.7321 0.6100 -0.3032 +vn 0.1033 0.6100 -0.7856 +vn 0.6287 0.6100 0.4824 +vn -0.7934 0.0000 -0.6087 +vn -0.6286 0.6100 -0.4824 +vn -0.7321 0.6100 0.3032 +vn -0.1033 0.6100 0.7856 +vn -0.3031 -0.6100 0.7322 +vn -0.3827 0.0000 0.9239 +vn -0.9914 -0.0000 0.1305 +vn -0.7856 -0.6100 0.1034 +vn 0.4824 -0.6100 0.6287 +vn 0.6087 0.0000 0.7934 +vn -0.6087 -0.0000 -0.7934 +vn -0.4824 -0.6100 -0.6287 +vn 0.3827 0.0000 -0.9239 +vn 0.3032 -0.6100 -0.7321 +vn 0.9914 0.0000 -0.1305 +vn 0.7856 -0.6100 -0.1034 +vn 0.3032 0.6100 -0.7321 +vn -0.4823 0.6100 -0.6287 +vn 0.7856 0.6100 -0.1034 +vn 0.9914 0.0000 -0.1306 +vn -0.7856 0.6100 0.1034 +vn -0.3032 0.6100 0.7321 +vn 0.6088 0.0000 0.7934 +vn 0.4825 0.6100 0.6286 +vn -0.4824 -0.6100 0.6287 +vn 0.7856 -0.6100 0.1034 +vn -0.7857 -0.6100 -0.1033 +vn -0.3033 -0.6100 -0.7321 +vn 0.4825 0.6100 -0.6286 +vn -0.4824 0.6100 0.6286 +vn 0.3030 0.6100 0.7322 +vn 0.1033 -0.6100 0.7856 +vn 0.7934 0.0000 -0.6088 +vn -0.1306 0.0000 -0.9914 +vn -0.7321 0.6100 -0.3031 +vn -0.6287 0.6100 0.4823 +vn 0.1035 0.6100 0.7856 +vn 0.7321 0.6100 0.3032 +vn 0.6287 0.6100 -0.4824 +vn 0.7321 -0.6100 -0.3032 +vn 0.7933 0.0001 0.6088 +vn 0.6287 -0.6100 0.4823 +vn 0.1033 -0.6100 -0.7856 +vn -0.1306 0.0000 0.9914 +vn -0.1034 0.6100 0.7856 +vn -0.6288 0.6100 -0.4822 +vn 0.6286 0.6100 0.4824 +vn 0.7321 0.6100 -0.3033 +vn 0.1306 0.0000 -0.9914 +vn 0.1034 0.6100 -0.7856 +vn 0.3826 0.0000 -0.9239 +vn -0.4823 -0.6100 -0.6288 +vn -0.6088 0.0000 -0.7933 +vn -0.3031 -0.6100 0.7321 +vn -0.7856 -0.6100 0.1035 +vn -0.3034 0.6100 0.7320 +vn 0.4824 0.6100 0.6287 +vn -0.7793 -0.4431 -0.4431 +vn -0.6267 -0.5510 -0.5510 +vn -0.4140 -0.6437 -0.6437 +vn -0.1458 -0.6996 -0.6995 +vn 0.1458 -0.6996 -0.6995 +vn 0.4139 -0.6437 -0.6437 +vn 0.6267 -0.5510 -0.5510 +vn 0.7793 -0.4431 -0.4431 +vn -0.7793 0.4431 -0.4431 +vn 0.6267 0.5510 -0.5510 +vn -0.5604 -0.6100 -0.5602 +vn -0.7071 0.0000 -0.7071 +vn 0.2588 0.0000 -0.9659 +vn 0.2051 -0.6100 -0.7654 +vn -0.7654 -0.6100 0.2051 +vn -0.9659 0.0000 0.2588 +vn 0.9659 0.0000 -0.2588 +vn 0.7654 -0.6100 -0.2050 +vn 0.7071 0.0000 0.7071 +vn 0.5604 -0.6100 0.5602 +vn -0.2588 0.0000 0.9659 +vn -0.2052 -0.6100 0.7654 +vn 0.5604 0.6100 0.5602 +vn 0.7654 0.6100 -0.2049 +vn -0.2051 0.6100 0.7654 +vn 0.2051 0.6100 -0.7654 +vn -0.5603 0.6100 -0.5603 +vn -0.7654 0.6100 0.2051 +vn -0.7924 -0.6100 0.0001 +vn -0.5000 0.0000 -0.8660 +vn -0.3963 -0.6100 -0.6862 +vn -0.3962 -0.6100 0.6862 +vn -0.5000 0.0000 0.8660 +vn 0.5000 0.0000 -0.8660 +vn 0.3961 -0.6100 -0.6863 +vn 0.7924 -0.6100 -0.0001 +vn 0.5000 0.0000 0.8660 +vn 0.3962 -0.6100 0.6862 +vn 0.7924 0.6100 -0.0001 +vn 0.3962 0.6100 -0.6862 +vn 0.3963 0.6100 0.6861 +vn -0.3962 0.6100 -0.6862 +vn -0.7924 0.6100 -0.0001 +vn -0.3961 0.6100 0.6863 +vn -0.5602 -0.6100 0.5604 +vn -0.7071 0.0000 0.7071 +vn -0.9659 0.0000 -0.2588 +vn -0.7654 -0.6100 -0.2051 +vn 0.2051 -0.6100 0.7654 +vn 0.2588 0.0000 0.9659 +vn -0.2588 0.0000 -0.9659 +vn -0.2050 -0.6100 -0.7654 +vn 0.7071 0.0000 -0.7071 +vn 0.5602 -0.6100 -0.5604 +vn 0.9659 0.0000 0.2588 +vn 0.7654 -0.6100 0.2051 +vn 0.5604 0.6100 -0.5602 +vn -0.2051 0.6100 -0.7654 +vn 0.7654 0.6100 0.2050 +vn -0.7654 0.6100 -0.2051 +vn -0.5602 0.6100 0.5604 +vn 0.2051 0.6100 0.7654 +vn -0.0000 -0.6100 0.7924 +vn -0.8660 -0.0000 0.5000 +vn -0.6862 -0.6100 0.3962 +vn 0.6863 -0.6100 0.3961 +vn 0.8660 -0.0000 0.5000 +vn -0.8660 -0.0000 -0.5000 +vn -0.6862 -0.6100 -0.3962 +vn 0.0001 -0.6100 -0.7924 +vn 0.8660 -0.0000 -0.5000 +vn 0.6862 -0.6100 -0.3962 +vn -0.0000 0.6100 -0.7924 +vn -0.6862 0.6100 -0.3962 +vn 0.6863 0.6100 -0.3961 +vn -0.6862 0.6100 0.3962 +vn 0.0000 0.6100 0.7924 +vn 0.6862 0.6100 0.3963 +vn -0.2051 -0.6100 0.7654 +vn 0.2052 -0.6100 -0.7654 +vn -0.5604 0.6100 -0.5602 +vn -0.7654 0.6100 0.2049 +vn 0.5602 0.6100 0.5604 +vn 0.7654 0.6100 -0.2051 +vn 0.3963 -0.6100 0.6862 +vn 0.3962 -0.6100 -0.6862 +vn -0.3961 -0.6100 0.6863 +vn -0.3962 -0.6100 -0.6862 +vn -0.7924 0.6100 0.0001 +vn -0.3962 0.6100 0.6862 +vn -0.3963 0.6100 -0.6861 +vn 0.3962 0.6100 0.6862 +vn 0.7924 0.6100 0.0001 +vn 0.3961 0.6100 -0.6863 +vn 0.7654 -0.6100 0.2052 +vn -0.2051 -0.6100 -0.7654 +vn 0.2050 -0.6100 0.7654 +vn -0.7654 -0.6100 -0.2052 +vn 0.7654 0.6100 0.2051 +vn 0.5602 0.6100 -0.5604 +vn -0.2052 0.6100 -0.7654 +vn 0.0000 -0.6100 -0.7924 +vn -0.6862 -0.6100 -0.3963 +vn -0.0002 -0.6100 0.7924 +vn -0.6862 -0.6100 0.3963 +vn -0.0001 0.6100 0.7924 +vn 0.6862 0.6100 0.3962 +vn -0.6863 0.6100 0.3961 +vn 0.6862 0.6100 -0.3962 +vn 0.0003 0.6100 -0.7924 +vn 0.2110 -0.6966 0.6857 +vn 0.2116 -0.6964 -0.6857 +vn 0.3431 -0.6419 -0.6857 +vn 0.3432 -0.6419 0.6857 +vn 0.0713 -0.7244 0.6857 +vn 0.0713 -0.7244 -0.6857 +vn -0.0713 -0.7244 0.6857 +vn -0.0713 -0.7244 -0.6857 +vn -0.2114 -0.6965 0.6857 +vn -0.2114 -0.6965 -0.6857 +vn -0.3431 -0.6419 0.6857 +vn -0.3431 -0.6419 -0.6857 +vn -0.4618 -0.5625 0.6857 +vn -0.4618 -0.5625 -0.6857 +vn -0.5627 -0.4617 0.6857 +vn -0.5627 -0.4617 -0.6857 +vn -0.6421 -0.3428 0.6857 +vn -0.6419 -0.3432 -0.6857 +vn -0.6965 -0.2113 0.6857 +vn -0.6965 -0.2113 -0.6857 +vn -0.7244 -0.0711 0.6857 +vn -0.7244 -0.0713 -0.6857 +vn -0.7244 0.0716 0.6857 +vn -0.7244 0.0713 -0.6857 +vn -0.6965 0.2113 0.6857 +vn -0.6965 0.2113 -0.6857 +vn -0.6418 0.3433 0.6857 +vn -0.6419 0.3431 -0.6857 +vn -0.5628 0.4616 0.6857 +vn -0.5626 0.4617 -0.6857 +vn -0.4616 0.5628 0.6857 +vn -0.4617 0.5626 -0.6857 +vn -0.3431 0.6419 0.6857 +vn -0.3431 0.6419 -0.6857 +vn -0.2113 0.6965 0.6857 +vn -0.2114 0.6965 -0.6857 +vn -0.0713 0.7244 0.6857 +vn -0.0713 0.7244 -0.6857 +vn 0.0713 0.7244 0.6857 +vn 0.0713 0.7244 -0.6857 +vn 0.2112 0.6966 0.6857 +vn 0.2114 0.6965 -0.6857 +vn 0.4616 0.5628 0.6857 +vn 0.4617 0.5626 -0.6857 +vn 0.3431 0.6419 -0.6857 +vn 0.3431 0.6419 0.6857 +vn 0.5626 0.4617 0.6857 +vn 0.5626 0.4617 -0.6857 +vn 0.6420 0.3430 0.6857 +vn 0.6419 0.3431 -0.6857 +vn 0.6965 0.2114 0.6857 +vn 0.6965 0.2114 -0.6857 +vn 0.7244 0.0713 0.6857 +vn 0.7244 0.0713 -0.6857 +vn 0.6966 -0.2112 0.6857 +vn 0.6965 -0.2115 -0.6857 +vn 0.7244 -0.0713 -0.6857 +vn 0.7244 -0.0713 0.6857 +vn 0.6419 -0.3432 0.6857 +vn 0.6420 -0.3430 -0.6857 +vn 0.5627 -0.4617 0.6857 +vn 0.5628 -0.4616 -0.6857 +vn 0.8614 0.4604 0.2147 +vn 0.8767 0.4686 0.1087 +vn 0.9513 0.2886 0.1087 +vn 0.9346 0.2835 0.2147 +vn 0.9720 0.0957 0.2147 +vn 0.9893 0.0974 0.1087 +vn 0.9720 -0.0957 0.2147 +vn 0.9893 -0.0974 0.1087 +vn 0.9346 -0.2835 0.2147 +vn 0.9513 -0.2886 0.1087 +vn 0.8614 -0.4604 0.2147 +vn 0.8767 -0.4686 0.1087 +vn 0.7550 -0.6196 0.2147 +vn 0.7684 -0.6306 0.1087 +vn 0.6306 -0.7684 0.1087 +vn 0.6196 -0.7550 0.2147 +vn 0.4604 -0.8614 0.2147 +vn 0.4686 -0.8767 0.1087 +vn 0.2835 -0.9346 0.2147 +vn 0.2886 -0.9513 0.1087 +vn 0.0957 -0.9720 0.2147 +vn 0.0974 -0.9893 0.1087 +vn -0.0974 -0.9893 0.1087 +vn -0.0957 -0.9720 0.2147 +vn -0.2886 -0.9513 0.1087 +vn -0.2835 -0.9346 0.2147 +vn -0.4604 -0.8614 0.2147 +vn -0.4686 -0.8767 0.1087 +vn -0.6306 -0.7684 0.1087 +vn -0.6196 -0.7550 0.2147 +vn -0.7684 -0.6306 0.1087 +vn -0.7550 -0.6196 0.2147 +vn -0.8614 -0.4604 0.2147 +vn -0.8767 -0.4686 0.1087 +vn -0.9513 -0.2886 0.1087 +vn -0.9346 -0.2835 0.2147 +vn -0.9720 -0.0957 0.2147 +vn -0.9893 -0.0974 0.1087 +vn -0.9893 0.0974 0.1087 +vn -0.9720 0.0957 0.2147 +vn -0.9346 0.2835 0.2147 +vn -0.9513 0.2886 0.1087 +vn -0.8767 0.4686 0.1087 +vn -0.8614 0.4604 0.2147 +vn -0.7684 0.6306 0.1087 +vn -0.7550 0.6196 0.2147 +vn -0.6306 0.7684 0.1087 +vn -0.6196 0.7550 0.2147 +vn -0.4686 0.8767 0.1087 +vn -0.4604 0.8614 0.2147 +vn -0.2886 0.9513 0.1087 +vn -0.2835 0.9346 0.2147 +vn -0.0974 0.9893 0.1087 +vn -0.0957 0.9720 0.2147 +vn 0.2835 0.9346 0.2147 +vn 0.0957 0.9720 0.2147 +vn 0.0974 0.9893 0.1087 +vn 0.2886 0.9513 0.1087 +vn 0.6196 0.7550 0.2147 +vn 0.4604 0.8614 0.2147 +vn 0.4686 0.8767 0.1087 +vn 0.6306 0.7684 0.1087 +vn 0.7550 0.6196 0.2147 +vn 0.7684 0.6306 0.1087 +vn 0.4618 -0.5625 -0.6858 +vn 0.4617 -0.5626 0.6857 +vn 0.3030 -0.7322 0.6100 +vn 0.3826 -0.9239 0.0000 +vn 0.9914 -0.1305 -0.0000 +vn 0.7856 -0.1034 0.6100 +vn -0.4825 -0.6286 0.6100 +vn -0.6088 -0.7933 0.0000 +vn 0.6087 0.7934 -0.0000 +vn 0.4824 0.6287 0.6100 +vn -0.3827 0.9239 0.0000 +vn -0.3032 0.7321 0.6100 +vn -0.9914 0.1305 0.0000 +vn -0.7856 0.1034 0.6100 +vn 0.7320 -0.3034 0.6100 +vn 0.9239 -0.3827 -0.0000 +vn 0.7934 0.6087 -0.0000 +vn 0.6288 0.4822 0.6100 +vn 0.1035 -0.7856 0.6100 +vn 0.1305 -0.9914 -0.0000 +vn -0.1305 0.9914 0.0000 +vn -0.1035 0.7856 0.6100 +vn -0.9239 0.3827 0.0000 +vn -0.7321 0.3032 0.6100 +vn -0.7934 -0.6087 0.0000 +vn -0.6288 -0.4823 0.6100 +vn 0.7321 0.3032 0.6100 +vn 0.9239 0.3827 -0.0000 +vn 0.1305 0.9914 -0.0000 +vn 0.1033 0.7857 0.6100 +vn 0.6286 -0.4825 0.6100 +vn 0.7934 -0.6087 -0.0000 +vn -0.7934 0.6087 0.0000 +vn -0.6286 0.4824 0.6100 +vn -0.9239 -0.3827 0.0000 +vn -0.7322 -0.3030 0.6100 +vn -0.1305 -0.9914 0.0000 +vn -0.1034 -0.7856 0.6100 +vn 0.3032 0.7321 0.6100 +vn 0.3827 0.9239 0.0000 +vn -0.6087 0.7934 0.0000 +vn -0.4822 0.6288 0.6100 +vn 0.7856 0.1033 0.6100 +vn 0.9914 0.1306 0.0000 +vn -0.9914 -0.1305 0.0000 +vn -0.7856 -0.1034 0.6100 +vn -0.3827 -0.9239 0.0000 +vn -0.3033 -0.7321 0.6100 +vn 0.6088 -0.7934 -0.0000 +vn 0.4825 -0.6286 0.6100 +vn -0.3031 0.7321 0.6100 +vn -0.6087 -0.7934 0.0000 +vn -0.4824 -0.6286 0.6100 +vn 0.3827 -0.9239 -0.0000 +vn 0.3032 -0.7321 0.6100 +vn -0.7321 0.3033 0.6100 +vn -0.7934 -0.6088 0.0000 +vn -0.6287 -0.4824 0.6100 +vn -0.1034 0.7856 0.6100 +vn 0.1306 -0.9914 -0.0000 +vn 0.1033 -0.7856 0.6100 +vn 0.7321 -0.3033 0.6100 +vn 0.6288 0.4823 0.6100 +vn -0.7321 -0.3032 0.6100 +vn -0.6287 0.4824 0.6100 +vn -0.7934 0.6088 0.0000 +vn 0.6287 -0.4823 0.6100 +vn 0.1306 0.9914 0.0000 +vn 0.1035 0.7856 0.6100 +vn -0.3032 -0.7321 0.6100 +vn 0.4823 -0.6287 0.6100 +vn 0.7856 0.1034 0.6100 +vn 0.5602 -0.5604 0.6100 +vn 0.7071 -0.7071 -0.0000 +vn 0.9659 0.2588 -0.0000 +vn 0.7654 0.2051 0.6100 +vn -0.2051 -0.7654 0.6100 +vn -0.2588 -0.9659 0.0000 +vn 0.2588 0.9659 -0.0000 +vn 0.2052 0.7654 0.6100 +vn -0.7071 0.7071 0.0000 +vn -0.5603 0.5603 0.6100 +vn -0.9659 -0.2588 0.0000 +vn -0.7654 -0.2051 0.6100 +vn 0.7924 0.0000 0.6100 +vn 0.5000 0.8660 0.0000 +vn 0.3962 0.6862 0.6100 +vn 0.3961 -0.6863 0.6100 +vn 0.5000 -0.8660 -0.0000 +vn -0.5000 0.8660 0.0000 +vn -0.3962 0.6862 0.6100 +vn -0.7924 -0.0000 0.6100 +vn -0.5000 -0.8660 0.0000 +vn -0.3964 -0.6861 0.6100 +vn 0.5603 0.5603 0.6100 +vn 0.7071 0.7071 -0.0000 +vn -0.2588 0.9659 0.0000 +vn -0.2048 0.7655 0.6100 +vn 0.7654 -0.2051 0.6100 +vn 0.9659 -0.2588 -0.0000 +vn -0.9659 0.2588 0.0000 +vn -0.7654 0.2052 0.6100 +vn -0.7071 -0.7071 0.0000 +vn -0.5604 -0.5602 0.6100 +vn 0.2588 -0.9659 -0.0000 +vn 0.2051 -0.7654 0.6100 +vn -0.0000 0.7924 0.6100 +vn -0.8660 0.5000 0.0000 +vn -0.6862 0.3963 0.6100 +vn 0.6862 0.3962 0.6100 +vn 0.8660 0.5000 -0.0000 +vn -0.8660 -0.5000 0.0000 +vn -0.6863 -0.3960 0.6100 +vn -0.0002 -0.7924 0.6100 +vn 0.8660 -0.5000 -0.0000 +vn 0.6862 -0.3962 0.6100 +vn -0.5602 0.5604 0.6100 +vn 0.2051 0.7654 0.6100 +vn -0.2052 -0.7654 0.6100 +vn 0.5603 -0.5603 0.6100 +vn -0.3962 -0.6862 0.6100 +vn -0.3960 0.6863 0.6100 +vn 0.3962 -0.6862 0.6100 +vn 0.3963 0.6861 0.6100 +vn -0.5603 -0.5603 0.6100 +vn 0.2049 -0.7654 0.6100 +vn -0.7654 0.2051 0.6100 +vn 0.7654 -0.2050 0.6100 +vn 0.5604 0.5602 0.6100 +vn -0.2051 0.7654 0.6100 +vn 0.6862 -0.3963 0.6100 +vn -0.6863 -0.3961 0.6100 +vn 0.6863 0.3961 0.6100 +vn -0.6862 0.3962 0.6100 +g Pipe_Cylinder.002_None_Pipe_Cylinder.002_None_None +s off +f 1/1/1 2/2/1 3/3/1 4/4/1 5/5/1 6/6/1 +f 7/7/2 8/8/2 9/9/2 10/10/2 11/11/2 12/12/2 +f 13/13/1 14/14/1 15/15/1 16/16/1 17/17/1 18/18/1 +f 19/19/2 20/20/2 21/21/2 22/22/2 23/23/2 24/24/2 +f 25/25/1 26/26/1 27/27/1 28/28/1 29/29/1 30/30/1 +f 31/31/2 32/32/2 33/33/2 34/34/2 35/35/2 36/36/2 +f 37/37/1 38/38/1 39/39/1 40/40/1 41/41/1 42/42/1 +f 43/43/2 44/44/2 45/45/2 46/46/2 47/47/2 48/48/2 +f 49/49/1 50/50/1 51/51/1 52/52/1 53/53/1 54/54/1 +f 55/55/2 56/56/2 57/57/2 58/58/2 59/59/2 60/60/2 +f 61/61/1 62/62/1 63/63/1 64/64/1 65/65/1 66/66/1 +f 67/67/2 68/68/2 69/69/2 70/70/2 71/71/2 72/72/2 +f 73/73/1 74/74/1 75/75/1 76/76/1 77/77/1 78/78/1 +f 79/79/2 80/80/2 81/81/2 82/82/2 83/83/2 84/84/2 +f 85/85/1 86/86/1 87/87/1 88/88/1 89/89/1 90/90/1 +f 91/91/2 92/92/2 93/93/2 94/94/2 95/95/2 96/96/2 +f 97/97/2 98/98/2 99/99/2 100/100/2 101/101/2 102/102/2 103/103/2 104/104/2 105/105/2 106/106/2 107/107/2 108/108/2 109/109/2 110/110/2 111/111/2 112/112/2 113/113/2 114/114/2 115/115/2 116/116/2 117/117/2 118/118/2 119/119/2 120/120/2 121/121/2 122/122/2 123/123/2 124/124/2 125/125/2 126/126/2 127/127/2 128/128/2 +f 129/129/1 130/130/1 131/131/1 132/132/1 133/133/1 134/134/1 135/135/1 136/136/1 137/137/1 138/138/1 139/139/1 140/140/1 141/141/1 142/142/1 143/143/1 144/144/1 145/145/1 146/146/1 147/147/1 148/148/1 149/149/1 150/150/1 151/151/1 152/152/1 153/153/1 154/154/1 155/155/1 156/156/1 157/157/1 158/158/1 159/159/1 160/160/1 +f 161/161/1 162/162/1 163/163/1 164/164/1 165/165/1 166/166/1 167/167/1 168/168/1 169/169/1 170/170/1 171/171/1 172/172/1 173/173/1 174/174/1 175/175/1 176/176/1 177/177/1 178/178/1 179/179/1 180/180/1 181/181/1 182/182/1 183/183/1 184/184/1 185/185/1 186/186/1 187/187/1 188/188/1 189/189/1 190/190/1 191/191/1 192/192/1 +f 193/193/2 194/194/2 195/195/2 196/196/2 197/197/2 198/198/2 199/199/2 200/200/2 201/201/2 202/202/2 203/203/2 204/204/2 205/205/2 206/206/2 207/207/2 208/208/2 209/209/2 210/210/2 211/211/2 212/212/2 213/213/2 214/214/2 215/215/2 216/216/2 217/217/2 218/218/2 219/219/2 220/220/2 221/221/2 222/222/2 223/223/2 224/224/2 +f 225/225/1 226/226/1 227/227/1 228/228/1 229/229/1 230/230/1 +f 231/231/2 232/232/2 233/233/2 234/234/2 235/235/2 236/236/2 +f 237/237/1 238/238/1 239/239/1 240/240/1 241/241/1 242/242/1 +f 243/243/2 244/244/2 245/245/2 246/246/2 247/247/2 248/248/2 +f 249/249/1 250/250/1 251/251/1 252/252/1 253/253/1 254/254/1 +f 255/255/2 256/256/2 257/257/2 258/258/2 259/259/2 260/260/2 +f 261/261/1 262/262/1 263/263/1 264/264/1 265/265/1 266/266/1 +f 267/267/2 268/268/2 269/269/2 270/270/2 271/271/2 272/272/2 +f 273/273/1 274/274/1 275/275/1 276/276/1 277/277/1 278/278/1 +f 279/279/2 280/280/2 281/281/2 282/282/2 283/283/2 284/284/2 +f 285/285/1 286/286/1 287/287/1 288/288/1 289/289/1 290/290/1 +f 291/291/2 292/292/2 293/293/2 294/294/2 295/295/2 296/296/2 +f 297/297/1 298/298/1 299/299/1 300/300/1 301/301/1 302/302/1 +f 303/303/2 304/304/2 305/305/2 306/306/2 307/307/2 308/308/2 +f 309/309/1 310/310/1 311/311/1 312/312/1 313/313/1 314/314/1 +f 315/315/2 316/316/2 317/317/2 318/318/2 319/319/2 320/320/2 +f 321/321/3 322/322/3 323/323/3 324/324/3 325/325/3 326/326/3 +f 327/327/4 328/328/4 329/329/4 330/330/4 331/331/4 332/332/4 +f 333/333/3 334/334/3 335/335/3 336/336/3 337/337/3 338/338/3 +f 339/339/4 340/340/4 341/341/4 342/342/4 343/343/4 344/344/4 +f 345/345/3 346/346/3 347/347/3 348/348/3 349/349/3 350/350/3 +f 351/351/4 352/352/4 353/353/4 354/354/4 355/355/4 356/356/4 +f 357/357/3 358/358/3 359/359/3 360/360/3 361/361/3 362/362/3 +f 363/363/4 364/364/4 365/365/4 366/366/4 367/367/4 368/368/4 +f 369/369/3 370/370/3 371/371/3 372/372/3 373/373/3 374/374/3 +f 375/375/4 376/376/4 377/377/4 378/378/4 379/379/4 380/380/4 +f 381/381/3 382/382/3 383/383/3 384/384/3 385/385/3 386/386/3 +f 387/387/4 388/388/4 389/389/4 390/390/4 391/391/4 392/392/4 +f 393/393/3 394/394/3 395/395/3 396/396/3 397/397/3 398/398/3 +f 399/399/4 400/400/4 401/401/4 402/402/4 403/403/4 404/404/4 +f 405/405/3 406/406/3 407/407/3 408/408/3 409/409/3 410/410/3 +f 411/411/4 412/412/4 413/413/4 414/414/4 415/415/4 416/416/4 +f 417/417/4 418/418/4 419/419/4 420/420/4 421/421/4 422/422/4 423/423/4 424/424/4 425/425/4 426/426/4 427/427/4 428/428/4 429/429/4 430/430/4 431/431/4 432/432/4 433/433/4 434/434/4 435/435/4 436/436/4 437/437/4 438/438/4 439/439/4 440/440/4 441/441/4 442/442/4 443/443/4 444/444/4 445/445/4 446/446/4 447/447/4 448/448/4 +f 449/449/3 450/450/3 451/451/3 452/452/3 453/453/3 454/454/3 455/455/3 456/456/3 457/457/3 458/458/3 459/459/3 460/460/3 461/461/3 462/462/3 463/463/3 464/464/3 465/465/3 466/466/3 467/467/3 468/468/3 469/469/3 470/470/3 471/471/3 472/472/3 473/473/3 474/474/3 475/475/3 476/476/3 477/477/3 478/478/3 479/479/3 480/480/3 +f 481/481/3 482/482/3 483/483/3 484/484/3 485/485/3 486/486/3 487/487/3 488/488/3 489/489/3 490/490/3 491/491/3 492/492/3 493/493/3 494/494/3 495/495/3 496/496/3 497/497/3 498/498/3 499/499/3 500/500/3 501/501/3 502/502/3 503/503/3 504/504/3 505/505/3 506/506/3 507/507/3 508/508/3 509/509/3 510/510/3 511/511/3 512/512/3 +f 513/513/4 514/514/4 515/515/4 516/516/4 517/517/4 518/518/4 519/519/4 520/520/4 521/521/4 522/522/4 523/523/4 524/524/4 525/525/4 526/526/4 527/527/4 528/528/4 529/529/4 530/530/4 531/531/4 532/532/4 533/533/4 534/534/4 535/535/4 536/536/4 537/537/4 538/538/4 539/539/4 540/540/4 541/541/4 542/542/4 543/543/4 544/544/4 +f 545/545/3 546/546/3 547/547/3 548/548/3 549/549/3 550/550/3 +f 551/551/4 552/552/4 553/553/4 554/554/4 555/555/4 556/556/4 +f 557/557/3 558/558/3 559/559/3 560/560/3 561/561/3 562/562/3 +f 563/563/4 564/564/4 565/565/4 566/566/4 567/567/4 568/568/4 +f 569/569/3 570/570/3 571/571/3 572/572/3 573/573/3 574/574/3 +f 575/575/4 576/576/4 577/577/4 578/578/4 579/579/4 580/580/4 +f 581/581/3 582/582/3 583/583/3 584/584/3 585/585/3 586/586/3 +f 587/587/4 588/588/4 589/589/4 590/590/4 591/591/4 592/592/4 +f 593/593/3 594/594/3 595/595/3 596/596/3 597/597/3 598/598/3 +f 599/599/4 600/600/4 601/601/4 602/602/4 603/603/4 604/604/4 +f 605/605/3 606/606/3 607/607/3 608/608/3 609/609/3 610/610/3 +f 611/611/4 612/612/4 613/613/4 614/614/4 615/615/4 616/616/4 +f 617/617/3 618/618/3 619/619/3 620/620/3 621/621/3 622/622/3 +f 623/623/4 624/624/4 625/625/4 626/626/4 627/627/4 628/628/4 +f 629/629/3 630/630/3 631/631/3 632/632/3 633/633/3 634/634/3 +f 635/635/4 636/636/4 637/637/4 638/638/4 639/639/4 640/640/4 +f 641/641/5 642/642/5 643/643/5 644/644/5 645/645/5 646/646/5 +f 647/647/5 648/648/5 649/649/5 650/650/5 651/651/5 652/652/5 +f 653/653/5 654/654/5 655/655/5 656/656/5 657/657/5 658/658/5 +f 659/659/5 660/660/5 661/661/5 662/662/5 663/663/5 664/664/5 +f 665/665/5 666/666/5 667/667/5 668/668/5 669/669/5 670/670/5 +f 671/671/5 672/672/5 673/673/5 674/674/5 675/675/5 676/676/5 +f 677/677/5 678/678/5 679/679/5 680/680/5 681/681/5 682/682/5 +f 683/683/5 684/684/5 685/685/5 686/686/5 687/687/5 688/688/5 +f 689/689/5 690/690/5 691/691/5 692/692/5 693/693/5 694/694/5 695/695/5 696/696/5 697/697/5 698/698/5 699/699/5 700/700/5 701/701/5 702/702/5 703/703/5 704/704/5 705/705/5 706/706/5 707/707/5 708/708/5 709/709/5 710/710/5 711/711/5 712/712/5 713/713/5 714/714/5 715/715/5 716/716/5 717/717/5 718/718/5 719/719/5 720/720/5 +f 721/721/6 722/722/6 723/723/6 724/724/6 725/725/6 726/726/6 727/727/6 728/728/6 729/729/6 730/730/6 731/731/6 732/732/6 733/733/6 734/734/6 735/735/6 736/736/6 737/737/6 738/738/6 739/739/6 740/740/6 741/741/6 742/742/6 743/743/6 744/744/6 745/745/6 746/746/6 747/747/6 748/748/6 749/749/6 750/750/6 751/751/6 752/752/6 +f 753/753/5 754/754/5 755/755/5 756/756/5 757/757/5 758/758/5 +f 759/759/5 760/760/5 761/761/5 762/762/5 763/763/5 764/764/5 +f 765/765/5 766/766/5 767/767/5 768/768/5 769/769/5 770/770/5 +f 771/771/5 772/772/5 773/773/5 774/774/5 775/775/5 776/776/5 +f 777/777/5 778/778/5 779/779/5 780/780/5 781/781/5 782/782/5 +f 783/783/5 784/784/5 785/785/5 786/786/5 787/787/5 788/788/5 +f 789/789/5 790/790/5 791/791/5 792/792/5 793/793/5 794/794/5 +f 795/795/5 796/796/5 797/797/5 798/798/5 799/799/5 800/800/5 +s 1 +f 127/801/7 150/802/8 149/803/9 128/804/10 +f 126/805/11 151/806/12 150/802/8 127/801/7 +f 125/807/13 152/808/14 151/806/12 126/805/11 +f 124/809/15 153/810/16 152/808/14 125/807/13 +f 123/811/17 154/812/18 153/810/16 124/809/15 +f 122/813/19 155/814/20 154/812/18 123/811/17 +f 121/815/21 156/816/22 155/814/20 122/813/19 +f 120/817/23 157/818/24 156/816/22 121/815/21 +f 119/819/25 158/820/26 157/818/24 120/817/23 +f 118/821/27 159/822/28 158/820/26 119/819/25 +f 117/823/29 160/824/30 159/822/28 118/821/27 +f 116/825/31 129/826/32 160/824/30 117/823/29 +f 115/827/33 130/828/34 129/826/32 116/825/31 +f 114/829/35 131/830/36 130/831/34 115/827/33 +f 113/832/37 132/833/38 131/830/36 114/829/35 +f 112/834/39 133/835/40 132/833/38 113/832/37 +f 111/836/41 134/837/42 133/838/40 112/839/39 +f 110/840/43 135/841/44 134/837/42 111/836/41 +f 109/842/45 136/843/46 135/841/44 110/840/43 +f 108/844/47 137/845/48 136/843/46 109/842/45 +f 106/846/49 139/847/50 138/848/51 107/849/52 +f 107/849/52 138/848/51 137/845/48 108/844/47 +f 105/850/53 140/851/54 139/847/50 106/846/49 +f 104/852/55 141/853/56 140/851/54 105/850/53 +f 103/854/57 142/855/58 141/853/56 104/852/55 +f 102/856/59 143/857/60 142/855/58 103/854/57 +f 100/858/61 145/859/62 144/860/63 101/861/64 +f 101/861/64 144/860/63 143/857/60 102/856/59 +f 99/862/65 146/863/66 145/859/62 100/858/61 +f 98/864/67 147/865/68 146/863/66 99/862/65 +f 801/866/69 802/867/70 803/868/71 804/869/72 +f 805/870/73 804/869/72 803/868/71 806/871/74 +f 807/872/75 805/870/73 806/871/74 808/873/76 +f 809/874/77 807/872/75 808/873/76 810/875/78 +f 811/876/79 809/874/77 810/875/78 812/877/80 +f 813/878/81 811/876/79 812/877/80 814/879/82 +f 813/878/81 814/879/82 815/880/83 816/881/84 +f 817/882/85 816/881/84 815/880/83 818/883/86 +f 819/884/87 817/882/85 818/883/86 820/885/88 +f 821/886/89 819/884/87 820/885/88 822/887/90 +f 821/886/89 822/887/90 823/888/91 824/889/92 +f 824/889/92 823/888/91 825/890/93 826/891/94 +f 827/892/95 828/893/96 829/894/97 830/895/98 +f 826/891/94 825/890/93 828/893/96 827/892/95 +f 830/895/98 829/894/97 831/896/99 832/897/100 +f 833/898/101 832/897/100 831/896/99 834/899/102 +f 833/898/101 834/899/102 835/900/103 836/901/104 +f 837/902/105 836/901/104 835/900/103 838/903/106 +f 837/904/105 838/905/106 839/906/107 840/907/108 +f 841/908/109 840/907/108 839/906/107 842/909/110 +f 841/908/109 842/909/110 843/910/111 844/911/112 +f 844/911/112 843/910/111 845/912/113 846/913/114 +f 846/913/114 845/912/113 847/914/115 848/915/116 +f 848/915/116 847/914/115 849/916/117 850/917/118 +f 850/917/118 849/916/117 851/918/119 852/919/120 +f 852/919/120 851/918/119 853/920/121 854/921/122 +f 855/922/123 856/923/124 857/924/125 858/925/126 +f 856/923/124 854/921/122 853/920/121 857/924/125 +f 859/926/127 860/927/128 861/928/129 862/929/130 +f 855/922/123 858/925/126 861/928/129 860/927/128 +f 863/930/131 859/926/127 862/929/130 864/931/132 +f 863/930/131 864/931/132 802/867/70 801/866/69 +f 865/932/133 822/887/90 820/885/88 866/933/134 +f 867/934/135 825/890/93 823/888/91 868/935/136 +f 866/933/134 820/885/88 818/883/86 869/936/137 +f 870/937/138 828/893/96 825/890/93 867/934/135 +f 869/936/137 818/883/86 815/880/83 871/938/139 +f 872/939/140 829/894/97 828/893/96 870/937/138 +f 873/940/141 871/938/139 815/880/83 814/879/82 +f 874/941/142 875/942/143 876/943/144 877/944/145 +f 878/945/146 879/946/147 875/942/143 874/941/142 +f 880/947/148 881/948/149 879/946/147 878/945/146 +f 882/949/150 883/950/151 884/951/152 885/952/153 +f 885/952/153 884/951/152 886/953/154 887/954/155 +f 877/944/145 876/943/144 888/955/156 889/956/157 +f 890/957/158 891/958/159 881/948/149 880/947/148 +f 892/959/160 893/960/161 894/961/162 895/962/163 +f 887/954/155 886/953/154 896/963/164 897/964/165 +f 898/965/166 889/956/157 888/955/156 882/949/150 +f 899/966/167 900/967/168 891/958/159 890/957/158 +f 901/968/169 892/959/160 895/962/163 902/969/170 +f 897/964/165 896/963/164 903/970/171 904/971/172 +f 905/972/173 898/965/166 882/949/150 885/952/153 +f 189/973/174 194/974/175 193/975/176 190/976/24 +f 192/977/28 223/978/27 222/979/29 161/980/30 +f 906/981/177 894/961/162 900/967/168 899/966/167 +f 188/982/178 195/983/19 194/974/175 189/973/174 +f 907/984/179 905/972/173 885/952/153 887/954/155 +f 161/980/30 222/979/29 221/985/31 162/986/32 +f 908/987/180 895/962/163 894/961/162 906/981/177 +f 187/988/181 196/989/17 195/983/19 188/982/178 +f 909/990/182 910/991/183 911/992/184 912/993/185 +f 913/994/186 914/995/187 915/996/188 916/997/189 +f 917/998/190 907/984/179 887/954/155 897/964/165 +f 186/999/16 197/1000/15 196/989/17 187/988/181 +f 918/1001/191 902/969/170 895/962/163 908/987/180 +f 184/1002/12 199/1003/11 198/1004/13 185/1005/14 +f 919/1006/192 917/998/190 897/964/165 904/971/172 +f 162/986/32 221/985/31 220/1007/33 163/1008/34 +f 920/1009/193 911/1010/184 902/969/170 918/1001/191 +f 183/1011/8 200/1012/7 199/1003/11 184/1002/12 +f 921/1013/194 922/1014/195 923/1015/196 924/1016/197 +f 925/1017/198 926/1018/199 927/1019/200 928/1020/201 +f 929/1021/202 919/1006/192 904/971/172 916/997/189 +f 163/1008/34 220/1007/33 219/1022/203 164/1023/204 +f 930/1024/205 912/993/185 911/992/184 920/1025/193 +f 128/804/10 149/803/9 148/1026/206 97/1027/207 +f 182/1028/208 201/1029/209 200/1012/7 183/1011/8 +f 931/1030/210 921/1013/194 924/1016/197 932/1031/211 +f 927/1019/200 926/1018/199 933/1032/212 934/1033/213 935/1034/214 +f 936/1035/215 929/1021/202 916/997/189 915/996/188 +f 164/1023/204 219/1022/203 218/1036/37 165/1037/38 +f 937/1038/216 923/1015/196 912/993/185 930/1024/205 +f 181/1039/217 202/1040/207 201/1029/209 182/1028/208 +f 938/1041/218 936/1035/215 915/996/188 928/1020/201 +f 165/1037/38 218/1036/37 217/1042/219 166/1043/40 +f 939/1044/220 924/1016/197 923/1015/196 937/1038/216 +f 180/1045/221 203/1046/222 202/1040/207 181/1039/217 +f 940/1047/223 938/1041/218 928/1020/201 927/1019/200 +f 167/1048/42 216/1049/41 215/1050/43 168/1051/44 +f 939/1044/220 941/1052/224 932/1031/211 924/1016/197 +f 166/1043/40 217/1042/219 216/1053/41 167/1054/42 +f 942/1055/225 943/1056/226 944/1057/227 945/1058/228 +f 946/1059/229 947/1060/230 948/1061/231 949/1062/232 +f 950/1063/233 940/1047/223 927/1019/200 935/1034/214 +f 168/1051/44 215/1050/43 214/1064/45 169/1065/46 +f 190/976/24 193/975/176 224/1066/234 191/1067/235 +f 951/1068/236 952/1069/237 932/1031/211 941/1052/224 +f 179/1070/238 204/1071/239 203/1046/222 180/1045/221 +f 953/1072/240 942/1055/225 945/1058/228 954/1073/241 +f 948/1061/231 947/1060/230 953/1072/240 954/1073/241 +f 955/1074/242 950/1063/233 935/1034/214 956/1075/243 +f 169/1065/46 214/1064/45 213/1076/244 170/1077/245 +f 951/1068/236 957/1078/246 944/1057/227 952/1069/237 +f 178/1079/62 205/1080/61 204/1071/239 179/1070/238 +f 958/1081/247 955/1074/242 956/1075/243 949/1062/232 +f 170/1077/245 213/1082/244 212/1083/248 171/1084/51 +f 957/1078/246 959/1085/249 945/1058/228 944/1057/227 +f 177/1086/250 206/1087/64 205/1080/61 178/1079/62 +f 185/1005/14 198/1004/13 197/1000/15 186/999/16 +f 960/1088/251 958/1081/247 949/1062/232 948/1061/231 +f 171/1084/51 212/1083/248 211/1089/252 172/1090/253 +f 959/1085/249 961/1091/254 954/1073/241 945/1058/228 +f 176/1092/60 207/1093/59 206/1087/64 177/1086/250 +f 961/1091/254 960/1088/251 948/1061/231 954/1073/241 +f 191/1067/235 224/1066/234 223/978/27 192/977/28 +f 175/1094/255 208/1095/256 207/1093/59 176/1092/60 +f 172/1090/253 211/1089/252 210/1096/53 173/1097/257 +f 174/1098/56 209/1099/55 208/1095/256 175/1094/255 +f 173/1097/257 210/1096/53 209/1099/55 174/1098/56 +f 1/1100/258 962/1101/259 963/1102/260 2/1103/261 +f 6/1104/262 964/1105/263 962/1101/259 1/1100/258 +f 2/1103/261 963/1102/260 965/1106/264 3/1107/265 +f 3/1107/265 965/1106/264 966/1108/266 4/1109/267 +f 4/1110/267 966/1111/266 967/1112/268 5/1113/269 +f 5/1113/269 967/1112/268 964/1105/263 6/1104/262 +f 7/1114/270 968/1115/266 969/1116/271 8/1117/272 +f 12/1118/273 970/1119/274 968/1115/266 7/1114/270 +f 8/1117/272 969/1116/271 971/1120/275 9/1121/276 +f 9/1121/276 971/1120/275 972/1122/259 10/1123/277 +f 10/1124/277 972/1125/259 973/1126/278 11/1127/279 +f 11/1127/279 973/1126/278 970/1119/274 12/1118/273 +f 13/1128/280 974/1129/281 975/1130/282 14/1131/283 +f 18/1132/284 976/1133/285 974/1129/281 13/1128/280 +f 14/1131/283 975/1130/282 977/1134/286 15/1135/287 +f 15/1135/287 977/1134/286 978/1136/288 16/1137/289 +f 16/1138/289 978/1139/288 979/1140/290 17/1141/291 +f 17/1141/291 979/1140/290 976/1133/285 18/1132/284 +f 19/1142/292 980/1143/288 981/1144/286 20/1145/293 +f 24/1146/294 982/1147/290 980/1143/288 19/1142/292 +f 20/1145/293 981/1144/286 983/1148/282 21/1149/295 +f 21/1149/295 983/1148/282 984/1150/296 22/1151/297 +f 22/1152/297 984/1153/296 985/1154/298 23/1155/299 +f 23/1155/299 985/1154/298 982/1147/290 24/1146/294 +f 25/1156/300 986/1157/301 987/1158/302 26/1159/303 +f 30/1160/304 988/1161/305 986/1157/301 25/1156/300 +f 26/1159/303 987/1158/302 989/1162/306 27/1163/307 +f 27/1163/307 989/1162/306 990/1164/308 28/1165/309 +f 28/1166/309 990/1167/308 991/1168/310 29/1169/311 +f 29/1169/311 991/1168/310 988/1161/305 30/1160/304 +f 31/1170/312 992/1171/308 993/1172/313 32/1173/314 +f 36/1174/315 994/1175/316 992/1171/308 31/1170/312 +f 32/1173/314 993/1172/313 995/1176/317 33/1177/318 +f 33/1177/318 995/1176/317 996/1178/301 34/1179/319 +f 34/1180/319 996/1181/301 997/1182/320 35/1183/321 +f 35/1183/321 997/1182/320 994/1175/316 36/1174/315 +f 37/1184/322 998/1185/323 999/1186/324 38/1187/325 +f 42/1188/326 1000/1189/327 998/1185/323 37/1184/322 +f 38/1187/325 999/1186/324 1001/1190/328 39/1191/329 +f 39/1191/329 1001/1190/328 1002/1192/330 40/1193/331 +f 40/1194/331 1002/1195/330 1003/1196/332 41/1197/333 +f 41/1197/333 1003/1196/332 1000/1189/327 42/1188/326 +f 43/1198/334 1004/1199/330 1005/1200/328 44/1201/335 +f 48/1202/336 1006/1203/337 1004/1199/330 43/1198/334 +f 44/1201/335 1005/1200/328 1007/1204/324 45/1205/338 +f 45/1205/338 1007/1204/324 1008/1206/323 46/1207/339 +f 46/1208/339 1008/1209/323 1009/1210/340 47/1211/341 +f 47/1211/341 1009/1210/340 1006/1203/337 48/1202/336 +f 49/1212/267 1010/1213/266 1011/1214/274 50/1215/342 +f 54/1216/265 1012/1217/271 1010/1213/266 49/1212/267 +f 50/1215/342 1011/1214/274 1013/1218/278 51/1219/343 +f 51/1219/343 1013/1218/278 1014/1220/259 52/1221/344 +f 52/1222/344 1014/1223/259 1015/1224/275 53/1225/261 +f 53/1225/261 1015/1224/275 1012/1217/271 54/1216/265 +f 55/1226/345 1016/1227/259 1017/1228/263 56/1229/346 +f 60/1230/347 1018/1231/275 1016/1227/259 55/1226/345 +f 56/1229/346 1017/1228/263 1019/1232/268 57/1233/273 +f 57/1233/273 1019/1232/268 1020/1234/266 58/1235/348 +f 58/1236/348 1020/1237/266 1021/1238/271 59/1239/349 +f 59/1239/349 1021/1238/271 1018/1231/275 60/1230/347 +f 61/1240/350 1022/1241/288 1023/1242/290 62/1243/351 +f 66/1244/352 1024/1245/353 1022/1241/288 61/1240/350 +f 62/1243/351 1023/1242/290 1025/1246/298 63/1247/284 +f 63/1247/284 1025/1246/298 1026/1248/296 64/1249/280 +f 64/1250/280 1026/1251/296 1027/1252/354 65/1253/283 +f 65/1253/283 1027/1252/354 1024/1245/353 66/1244/352 +f 67/1254/355 1028/1255/296 1029/1256/356 68/1257/357 +f 72/1258/295 1030/1259/282 1028/1255/296 67/1254/355 +f 68/1257/357 1029/1256/356 1031/1260/358 69/1261/294 +f 69/1261/294 1031/1260/358 1032/1262/288 70/1263/359 +f 70/1264/359 1032/1265/288 1033/1266/286 71/1267/360 +f 71/1267/360 1033/1266/286 1030/1259/282 72/1258/295 +f 73/1268/309 1034/1269/308 1035/1270/316 74/1271/311 +f 78/1272/361 1036/1273/313 1034/1269/308 73/1268/309 +f 74/1271/311 1035/1270/316 1037/1274/320 75/1275/304 +f 75/1275/304 1037/1274/320 1038/1276/301 76/1277/300 +f 76/1278/300 1038/1279/301 1039/1280/317 77/1281/303 +f 77/1281/303 1039/1280/317 1036/1273/313 78/1272/361 +f 79/1282/362 1040/1283/301 1041/1284/305 80/1285/363 +f 84/1286/364 1042/1287/317 1040/1283/301 79/1282/362 +f 80/1285/363 1041/1284/305 1043/1288/310 81/1289/365 +f 81/1289/365 1043/1288/310 1044/1290/308 82/1291/312 +f 82/1292/312 1044/1293/308 1045/1294/313 83/1295/314 +f 83/1295/314 1045/1294/313 1042/1287/317 84/1286/364 +f 85/1296/331 1046/1297/330 1047/1298/337 86/1299/333 +f 90/1300/366 1048/1301/367 1046/1297/330 85/1296/331 +f 86/1299/333 1047/1298/337 1049/1302/340 87/1303/326 +f 87/1303/326 1049/1302/340 1050/1304/323 88/1305/322 +f 88/1306/322 1050/1307/323 1051/1308/368 89/1309/369 +f 89/1309/369 1051/1308/368 1048/1301/367 90/1300/366 +f 91/1310/370 1052/1311/323 1053/1312/340 92/1313/371 +f 96/1314/372 1054/1315/324 1052/1311/323 91/1310/370 +f 92/1313/371 1053/1312/340 1055/1316/337 93/1317/373 +f 93/1317/373 1055/1316/337 1056/1318/330 94/1319/374 +f 94/1320/374 1056/1321/330 1057/1322/328 95/1323/375 +f 95/1323/375 1057/1322/328 1054/1315/324 96/1314/372 +f 891/958/159 1058/1324/376 1059/1325/377 881/948/149 +f 900/967/168 1060/1326/378 1058/1324/376 891/958/159 +f 1061/1327/379 872/1328/140 1062/1329/380 1063/1330/381 +f 871/1331/139 1064/1332/382 1065/1333/383 869/1334/137 +f 879/946/147 1066/1335/384 868/935/136 823/888/91 822/887/90 865/932/133 1067/1336/385 875/942/143 +f 872/939/140 1061/1337/379 831/896/99 829/894/97 +f 97/1027/207 148/1026/206 147/865/68 98/864/67 +f 1068/1338/386 1069/1339/387 803/868/71 802/867/70 +f 1069/1339/387 1070/1340/388 806/871/74 803/868/71 +f 1070/1340/388 1071/1341/389 808/873/76 806/871/74 +f 1071/1341/389 1072/1342/390 810/875/78 808/873/76 +f 1072/1342/390 1073/1343/391 812/877/80 810/875/78 +f 1073/1343/391 873/940/141 814/879/82 812/877/80 +f 1074/1344/392 888/955/156 876/943/144 1075/1345/393 +f 1075/1345/393 876/943/144 875/942/143 1067/1336/385 +f 881/948/149 1059/1325/377 1066/1335/384 879/946/147 +f 1061/1337/379 1076/1346/394 834/899/102 831/896/99 +f 1076/1346/394 1077/1347/395 835/900/103 834/899/102 +f 1077/1347/395 1078/1348/396 838/903/106 835/900/103 +f 1078/1349/396 1079/1350/397 839/906/107 838/905/106 +f 1079/1350/397 1080/1351/398 842/909/110 839/906/107 +f 1080/1351/398 1081/1352/399 843/910/111 842/909/110 +f 1081/1352/399 1082/1353/400 845/912/113 843/910/111 +f 1082/1353/400 1083/1354/401 1084/1355/402 847/914/115 845/912/113 +f 1084/1355/402 1085/1356/403 849/916/117 847/914/115 +f 1085/1356/403 1086/1357/404 851/918/119 849/916/117 +f 1086/1357/404 1087/1358/405 853/920/121 851/918/119 +f 1088/1359/406 1089/1360/407 858/925/126 857/924/125 +f 1087/1358/405 1088/1359/406 857/924/125 853/920/121 +f 1090/1361/408 1091/1362/409 862/929/130 861/928/129 +f 1089/1360/407 1090/1361/408 861/928/129 858/925/126 +f 1091/1362/409 1092/1363/410 1093/1364/411 864/931/132 862/929/130 +f 864/931/132 1093/1364/411 1068/1338/386 802/867/70 +f 910/1365/183 901/968/169 902/969/170 911/1010/184 +f 903/970/171 913/994/186 916/997/189 904/971/172 +f 922/1014/195 909/990/182 912/993/185 923/1015/196 +f 914/995/187 925/1017/198 928/1020/201 915/996/188 +f 1094/1366/412 1095/1367/413 931/1030/210 932/1031/211 952/1069/237 +f 934/1033/213 1096/1368/414 956/1075/243 935/1034/214 +f 943/1056/226 1094/1366/412 952/1069/237 944/1057/227 +f 1096/1368/414 946/1059/229 949/1062/232 956/1075/243 +f 225/1369/415 1097/1370/416 1098/1371/417 226/1372/418 +f 230/1373/419 1099/1374/420 1097/1370/416 225/1369/415 +f 226/1372/418 1098/1371/417 1100/1375/421 227/1376/422 +f 227/1376/422 1100/1375/421 1101/1377/423 228/1378/424 +f 228/1379/424 1101/1380/423 1102/1381/425 229/1382/426 +f 229/1382/426 1102/1381/425 1099/1374/420 230/1373/419 +f 231/1383/427 1103/1384/423 1104/1385/421 232/1386/428 +f 236/1387/429 1105/1388/425 1103/1384/423 231/1383/427 +f 232/1386/428 1104/1385/421 1106/1389/417 233/1390/430 +f 233/1390/430 1106/1389/417 1107/1391/416 234/1392/431 +f 234/1393/431 1107/1394/416 1108/1395/420 235/1396/432 +f 235/1396/432 1108/1395/420 1105/1388/425 236/1387/429 +f 237/1397/433 1109/1398/3 1110/1399/434 238/1400/435 +f 242/1401/436 1111/1402/437 1109/1398/3 237/1397/433 +f 238/1400/435 1110/1399/434 1112/1403/438 239/1404/439 +f 239/1404/439 1112/1403/438 1113/1405/4 240/1406/440 +f 240/1407/440 1113/1408/4 1114/1409/441 241/1410/442 +f 241/1410/442 1114/1409/441 1111/1402/437 242/1401/436 +f 243/1411/443 1115/1412/4 1116/1413/438 244/1414/444 +f 248/1415/445 1117/1416/441 1115/1412/4 243/1411/443 +f 244/1414/444 1116/1413/438 1118/1417/434 245/1418/446 +f 245/1418/446 1118/1417/434 1119/1419/3 246/1420/447 +f 246/1421/447 1119/1422/3 1120/1423/437 247/1424/448 +f 247/1424/448 1120/1423/437 1117/1416/441 248/1415/445 +f 249/1425/449 1121/1426/450 1122/1427/451 250/1428/452 +f 254/1429/453 1123/1430/454 1121/1426/450 249/1425/449 +f 250/1428/452 1122/1427/451 1124/1431/455 251/1432/456 +f 251/1432/456 1124/1431/455 1125/1433/457 252/1434/458 +f 252/1435/458 1125/1436/457 1126/1437/459 253/1438/460 +f 253/1438/460 1126/1437/459 1123/1430/454 254/1429/453 +f 255/1439/461 1127/1440/457 1128/1441/455 256/1442/462 +f 260/1443/463 1129/1444/459 1127/1440/457 255/1439/461 +f 256/1442/462 1128/1441/455 1130/1445/451 257/1446/464 +f 257/1446/464 1130/1445/451 1131/1447/450 258/1448/465 +f 258/1449/465 1131/1450/450 1132/1451/454 259/1452/466 +f 259/1452/466 1132/1451/454 1129/1444/459 260/1443/463 +f 261/1453/467 1133/1454/5 1134/1455/468 262/1456/469 +f 266/1457/470 1135/1458/471 1133/1454/5 261/1453/467 +f 262/1456/469 1134/1455/468 1136/1459/472 263/1460/473 +f 263/1460/473 1136/1459/472 1137/1461/6 264/1462/474 +f 264/1463/474 1137/1464/6 1138/1465/475 265/1466/476 +f 265/1466/476 1138/1465/475 1135/1458/471 266/1457/470 +f 267/1467/477 1139/1468/6 1140/1469/472 268/1470/478 +f 272/1471/479 1141/1472/475 1139/1468/6 267/1467/477 +f 268/1470/478 1140/1469/472 1142/1473/468 269/1474/480 +f 269/1474/480 1142/1473/468 1143/1475/5 270/1476/481 +f 270/1477/481 1143/1478/5 1144/1479/471 271/1480/482 +f 271/1480/482 1144/1479/471 1141/1472/475 272/1471/479 +f 273/1481/424 1145/1482/423 1146/1483/425 274/1484/426 +f 278/1485/422 1147/1486/421 1145/1482/423 273/1481/424 +f 274/1484/426 1146/1483/425 1148/1487/420 275/1488/483 +f 275/1488/483 1148/1487/420 1149/1489/416 276/1490/415 +f 276/1491/415 1149/1492/416 1150/1493/417 277/1494/484 +f 277/1494/484 1150/1493/417 1147/1486/421 278/1485/422 +f 279/1495/485 1151/1496/416 1152/1497/420 280/1498/432 +f 284/1499/486 1153/1500/417 1151/1496/416 279/1495/485 +f 280/1498/432 1152/1497/420 1154/1501/425 281/1502/487 +f 281/1502/487 1154/1501/425 1155/1503/423 282/1504/488 +f 282/1505/488 1155/1506/423 1156/1507/421 283/1508/428 +f 283/1508/428 1156/1507/421 1153/1500/417 284/1499/486 +f 285/1509/440 1157/1510/4 1158/1511/441 286/1512/442 +f 290/1513/489 1159/1514/438 1157/1510/4 285/1509/440 +f 286/1512/442 1158/1511/441 1160/1515/437 287/1516/436 +f 287/1516/436 1160/1515/437 1161/1517/3 288/1518/433 +f 288/1519/433 1161/1520/3 1162/1521/434 289/1522/490 +f 289/1522/490 1162/1521/434 1159/1514/438 290/1513/489 +f 291/1523/447 1163/1524/3 1164/1525/437 292/1526/491 +f 296/1527/492 1165/1528/434 1163/1524/3 291/1523/447 +f 292/1526/491 1164/1525/437 1166/1529/441 293/1530/493 +f 293/1530/493 1166/1529/441 1167/1531/4 294/1532/443 +f 294/1533/443 1167/1534/4 1168/1535/438 295/1536/494 +f 295/1536/494 1168/1535/438 1165/1528/434 296/1527/492 +f 297/1537/458 1169/1538/457 1170/1539/459 298/1540/495 +f 302/1541/456 1171/1542/455 1169/1538/457 297/1537/458 +f 298/1540/495 1170/1539/459 1172/1543/454 299/1544/496 +f 299/1544/496 1172/1543/454 1173/1545/450 300/1546/449 +f 300/1547/449 1173/1548/450 1174/1549/451 301/1550/497 +f 301/1550/497 1174/1549/451 1171/1542/455 302/1541/456 +f 303/1551/465 1175/1552/450 1176/1553/454 304/1554/498 +f 308/1555/464 1177/1556/451 1175/1552/450 303/1551/465 +f 304/1554/498 1176/1553/454 1178/1557/459 305/1558/463 +f 305/1558/463 1178/1557/459 1179/1559/457 306/1560/499 +f 306/1561/499 1179/1562/457 1180/1563/455 307/1564/462 +f 307/1564/462 1180/1563/455 1177/1556/451 308/1555/464 +f 309/1565/500 1181/1566/6 1182/1567/475 310/1568/501 +f 314/1569/502 1183/1570/472 1181/1566/6 309/1565/500 +f 310/1568/501 1182/1567/475 1184/1571/471 311/1572/470 +f 311/1572/470 1184/1571/471 1185/1573/5 312/1574/467 +f 312/1575/467 1185/1576/5 1186/1577/468 313/1578/503 +f 313/1578/503 1186/1577/468 1183/1570/472 314/1569/502 +f 315/1579/504 1187/1580/5 1188/1581/471 316/1582/505 +f 320/1583/506 1189/1584/468 1187/1580/5 315/1579/504 +f 316/1582/505 1188/1581/471 1190/1585/475 317/1586/507 +f 317/1586/507 1190/1585/475 1191/1587/6 318/1588/508 +f 318/1589/508 1191/1590/6 1192/1591/472 319/1592/509 +f 319/1592/509 1192/1591/472 1189/1584/468 320/1583/506 +f 447/1593/510 470/1594/511 469/1595/512 448/1596/513 +f 446/1597/514 471/1598/515 470/1594/511 447/1593/510 +f 445/1599/516 472/1600/517 471/1598/515 446/1597/514 +f 444/1601/518 473/1602/519 472/1600/517 445/1599/516 +f 443/1603/520 474/1604/521 473/1602/519 444/1601/518 +f 442/1605/522 475/1606/523 474/1604/521 443/1603/520 +f 441/1607/524 476/1608/525 475/1606/523 442/1605/522 +f 440/1609/526 477/1610/527 476/1608/525 441/1607/524 +f 439/1611/528 478/1612/529 477/1610/527 440/1609/526 +f 438/1613/530 479/1614/531 478/1612/529 439/1611/528 +f 437/1615/532 480/1616/533 479/1614/531 438/1613/530 +f 436/1617/534 449/1618/535 480/1616/533 437/1615/532 +f 435/1619/536 450/1620/537 449/1618/535 436/1617/534 +f 434/1621/538 451/1622/539 450/1623/537 435/1619/536 +f 433/1624/540 452/1625/541 451/1622/539 434/1621/538 +f 432/1626/542 453/1627/543 452/1625/541 433/1624/540 +f 431/1628/544 454/1629/545 453/1630/543 432/1631/542 +f 430/1632/546 455/1633/547 454/1629/545 431/1628/544 +f 429/1634/548 456/1635/549 455/1633/547 430/1632/546 +f 428/1636/550 457/1637/551 456/1635/549 429/1634/548 +f 426/1638/552 459/1639/553 458/1640/554 427/1641/555 +f 427/1641/555 458/1640/554 457/1637/551 428/1636/550 +f 425/1642/556 460/1643/557 459/1639/553 426/1638/552 +f 424/1644/558 461/1645/559 460/1643/557 425/1642/556 +f 423/1646/560 462/1647/561 461/1645/559 424/1644/558 +f 422/1648/562 463/1649/563 462/1647/561 423/1646/560 +f 420/1650/564 465/1651/565 464/1652/566 421/1653/567 +f 421/1653/567 464/1652/566 463/1649/563 422/1648/562 +f 419/1654/568 466/1655/569 465/1651/565 420/1650/564 +f 418/1656/570 467/1657/571 466/1655/569 419/1654/568 +f 1193/1658/572 1194/1659/573 1195/1660/574 1196/1661/575 +f 1197/1662/576 1196/1661/575 1195/1660/574 1198/1663/577 +f 1199/1664/578 1197/1662/576 1198/1663/577 1200/1665/579 +f 1201/1666/580 1199/1664/578 1200/1665/579 1202/1667/581 +f 1203/1668/582 1201/1666/580 1202/1667/581 1204/1669/583 +f 1205/1670/584 1203/1668/582 1204/1669/583 1063/1330/381 +f 1205/1670/584 1063/1330/381 1062/1329/380 1206/1671/585 +f 1207/1672/586 1206/1671/585 1062/1329/380 1208/1673/587 +f 1209/1674/588 1207/1672/586 1208/1673/587 1210/1675/589 +f 1211/1676/590 1209/1674/588 1210/1675/589 1212/1677/591 +f 1211/1676/590 1212/1677/591 1213/1678/592 1214/1679/593 +f 1214/1679/593 1213/1678/592 1215/1680/594 1216/1681/595 +f 1217/1682/596 1218/1683/597 1219/1684/598 1220/1685/599 +f 1216/1681/595 1215/1680/594 1218/1683/597 1217/1682/596 +f 1220/1685/599 1219/1684/598 1221/1686/600 1222/1687/601 +f 1223/1688/602 1222/1687/601 1221/1686/600 1224/1689/603 +f 1223/1688/602 1224/1689/603 1225/1690/604 1226/1691/605 +f 1227/1692/606 1226/1691/605 1225/1690/604 1228/1693/607 +f 1227/1694/606 1228/1695/607 1229/1696/608 1230/1697/609 +f 1231/1698/610 1230/1697/609 1229/1696/608 1232/1699/611 +f 1231/1698/610 1232/1699/611 1233/1700/612 1234/1701/613 +f 1234/1701/613 1233/1700/612 1235/1702/614 1236/1703/615 +f 1236/1703/615 1235/1702/614 1237/1704/616 1238/1705/617 +f 1238/1705/617 1237/1704/616 1239/1706/618 1240/1707/619 +f 1240/1707/619 1239/1706/618 1241/1708/620 1242/1709/621 +f 1242/1709/621 1241/1708/620 1243/1710/622 1244/1711/623 +f 1245/1712/624 1246/1713/625 1247/1714/626 1248/1715/627 +f 1246/1713/625 1244/1711/623 1243/1710/622 1247/1714/626 +f 1249/1716/628 1250/1717/629 1251/1718/630 1252/1719/631 +f 1245/1712/624 1248/1715/627 1251/1718/630 1250/1717/629 +f 1253/1720/632 1249/1716/628 1252/1719/631 1254/1721/633 +f 1253/1720/632 1254/1721/633 1194/1659/573 1193/1658/572 +f 868/1722/136 1212/1677/591 1210/1675/589 867/1723/135 +f 1066/1724/384 1213/1678/592 1212/1677/591 868/1722/136 +f 1059/1725/377 1215/1680/594 1213/1678/592 1066/1724/384 +f 867/1723/135 1210/1675/589 1208/1673/587 870/1726/138 +f 1058/1727/376 1218/1683/597 1215/1680/594 1059/1725/377 +f 870/1726/138 1208/1673/587 1062/1329/380 872/1328/140 +f 1060/1728/378 1219/1684/598 1218/1683/597 1058/1727/376 +f 1060/1728/378 893/1729/161 1221/1686/600 1219/1684/598 +f 1255/1730/634 1256/1731/635 1257/1732/636 1258/1733/637 +f 1259/1734/638 1260/1735/639 1256/1731/635 1255/1730/634 +f 1261/1736/640 1262/1737/641 1260/1735/639 1259/1734/638 +f 871/1331/139 873/1738/141 1263/1739/642 1064/1332/382 +f 1263/1739/642 873/1738/141 1073/1740/391 1264/1741/643 +f 1258/1733/637 1257/1732/636 1065/1333/383 1265/1742/644 +f 1266/1743/645 1267/1744/646 1262/1737/641 1261/1736/640 +f 886/1745/154 884/1746/152 1268/1747/647 1269/1748/648 +f 1264/1741/643 1073/1740/391 1072/1749/390 1270/1750/649 +f 1271/1751/650 1265/1742/644 1065/1333/383 1064/1332/382 +f 1272/1752/651 1273/1753/652 1267/1744/646 1266/1743/645 +f 896/1754/164 886/1745/154 1269/1748/648 1274/1755/653 +f 1270/1750/649 1072/1749/390 1071/1756/389 1275/1757/654 +f 1276/1758/655 1271/1751/650 1064/1332/382 1263/1739/642 +f 509/1759/656 514/1760/657 513/1761/658 510/1762/527 +f 512/1763/531 543/1764/659 542/1765/660 481/1766/533 +f 1277/1767/661 1268/1747/647 1273/1753/652 1272/1752/651 +f 508/1768/662 515/1769/663 514/1760/657 509/1759/656 +f 1278/1770/664 1276/1758/655 1263/1739/642 1264/1741/643 +f 481/1766/533 542/1765/660 541/1771/665 482/1772/535 +f 1279/1773/666 1269/1748/648 1268/1747/647 1277/1767/661 +f 507/1774/667 516/1775/668 515/1769/663 508/1768/662 +f 913/1776/186 903/1777/171 1280/1778/669 1281/1779/670 +f 1070/1780/388 1069/1781/387 1282/1782/671 1283/1783/672 +f 1284/1784/673 1278/1770/664 1264/1741/643 1270/1750/649 +f 506/1785/519 517/1786/674 516/1775/668 507/1774/667 +f 1285/1787/675 1274/1755/653 1269/1748/648 1279/1773/666 +f 504/1788/676 519/1789/677 518/1790/678 505/1791/679 +f 1286/1792/680 1284/1784/673 1270/1750/649 1275/1757/654 +f 482/1772/535 541/1771/665 540/1793/536 483/1794/537 +f 1287/1795/681 1280/1796/669 1274/1755/653 1285/1787/675 +f 503/1797/511 520/1798/682 519/1789/677 504/1788/676 +f 925/1799/198 914/1800/187 1288/1801/683 1289/1802/684 +f 1068/1803/386 1093/1804/411 1290/1805/685 1291/1806/686 +f 1292/1807/687 1286/1792/680 1275/1757/654 1283/1783/672 +f 483/1794/537 540/1793/536 539/1808/538 484/1809/688 +f 1293/1810/689 1281/1779/670 1280/1778/669 1287/1811/681 +f 448/1596/513 469/1595/512 468/1812/690 417/1813/691 +f 502/1814/692 521/1815/693 520/1798/682 503/1797/511 +f 926/1816/199 925/1799/198 1289/1802/684 1294/1817/694 +f 1290/1805/685 1093/1804/411 1092/1818/410 1295/1819/695 1296/1820/696 +f 1297/1821/697 1292/1807/687 1283/1783/672 1282/1782/671 +f 484/1809/688 539/1808/538 538/1822/540 485/1823/541 +f 1298/1824/698 1288/1801/683 1281/1779/670 1293/1810/689 +f 501/1825/699 522/1826/700 521/1815/693 502/1814/692 +f 1299/1827/701 1297/1821/697 1282/1782/671 1291/1806/686 +f 485/1823/541 538/1822/540 537/1828/542 486/1829/543 +f 1300/1830/702 1289/1802/684 1288/1801/683 1298/1824/698 +f 500/1831/703 523/1832/704 522/1826/700 501/1825/699 +f 1301/1833/705 1299/1827/701 1291/1806/686 1290/1805/685 +f 487/1834/706 536/1835/707 535/1836/546 488/1837/547 +f 1300/1830/702 1302/1838/708 1294/1817/694 1289/1802/684 +f 486/1829/543 537/1828/542 536/1839/707 487/1840/706 +f 1303/1841/709 1304/1842/710 1305/1843/711 1306/1844/712 +f 1307/1845/713 1308/1846/714 1309/1847/715 1310/1848/716 +f 1311/1849/717 1301/1833/705 1290/1805/685 1296/1820/696 +f 488/1837/547 535/1836/546 534/1850/548 489/1851/549 +f 510/1762/527 513/1761/658 544/1852/528 511/1853/529 +f 1312/1854/718 1313/1855/719 1294/1817/694 1302/1838/708 +f 499/1856/569 524/1857/568 523/1832/704 500/1831/703 +f 1314/1858/720 1303/1841/709 1306/1844/712 1315/1859/721 +f 1309/1847/715 1308/1846/714 1314/1858/720 1315/1859/721 +f 1316/1860/722 1311/1849/717 1296/1820/696 1317/1861/723 +f 489/1851/549 534/1850/548 533/1862/550 490/1863/724 +f 1312/1854/718 1318/1864/725 1305/1843/711 1313/1855/719 +f 498/1865/726 525/1866/727 524/1857/568 499/1856/569 +f 1319/1867/728 1316/1860/722 1317/1861/723 1310/1848/716 +f 490/1863/724 533/1868/550 532/1869/729 491/1870/730 +f 1318/1864/725 1320/1871/731 1306/1844/712 1305/1843/711 +f 497/1872/566 526/1873/567 525/1866/727 498/1865/726 +f 505/1791/679 518/1790/678 517/1786/674 506/1785/519 +f 1321/1874/732 1319/1867/728 1310/1848/716 1309/1847/715 +f 491/1870/730 532/1869/729 531/1875/733 492/1876/734 +f 1320/1871/731 1322/1877/735 1315/1859/721 1306/1844/712 +f 496/1878/563 527/1879/562 526/1873/567 497/1872/566 +f 1322/1877/735 1321/1874/732 1309/1847/715 1315/1859/721 +f 511/1853/529 544/1852/528 543/1764/659 512/1763/531 +f 495/1880/561 528/1881/560 527/1879/562 496/1878/563 +f 492/1876/734 531/1875/733 530/1882/736 493/1883/737 +f 494/1884/559 529/1885/558 528/1881/560 495/1880/561 +f 493/1883/737 530/1882/736 529/1885/558 494/1884/559 +f 321/1886/738 1323/1887/739 1324/1888/740 322/1889/741 +f 326/1890/742 1325/1891/743 1323/1887/739 321/1886/738 +f 322/1889/741 1324/1888/740 1326/1892/744 323/1893/745 +f 323/1893/745 1326/1892/744 1327/1894/746 324/1895/747 +f 324/1896/747 1327/1897/746 1328/1898/748 325/1899/749 +f 325/1899/749 1328/1898/748 1325/1891/743 326/1890/742 +f 327/1900/750 1329/1901/751 1330/1902/752 328/1903/753 +f 332/1904/754 1331/1905/755 1329/1901/751 327/1900/750 +f 328/1903/753 1330/1902/752 1332/1906/756 329/1907/757 +f 329/1907/757 1332/1906/756 1333/1908/739 330/1909/758 +f 330/1910/758 1333/1911/739 1334/1912/743 331/1913/759 +f 331/1913/759 1334/1912/743 1331/1905/755 332/1904/754 +f 333/1914/760 1335/1915/761 1336/1916/762 334/1917/763 +f 338/1918/764 1337/1919/765 1335/1915/761 333/1914/760 +f 334/1917/763 1336/1916/762 1338/1920/766 335/1921/767 +f 335/1921/767 1338/1920/766 1339/1922/768 336/1923/769 +f 336/1924/769 1339/1925/768 1340/1926/770 337/1927/771 +f 337/1927/771 1340/1926/770 1337/1919/765 338/1918/764 +f 339/1928/772 1341/1929/768 1342/1930/766 340/1931/773 +f 344/1932/774 1343/1933/775 1341/1929/768 339/1928/772 +f 340/1931/773 1342/1930/766 1344/1934/762 341/1935/776 +f 341/1935/776 1344/1934/762 1345/1936/761 342/1937/777 +f 342/1938/777 1345/1939/761 1346/1940/778 343/1941/779 +f 343/1941/779 1346/1940/778 1343/1933/775 344/1932/774 +f 345/1942/780 1347/1943/781 1348/1944/782 346/1945/783 +f 350/1946/784 1349/1947/785 1347/1943/781 345/1942/780 +f 346/1945/783 1348/1944/782 1350/1948/786 347/1949/787 +f 347/1949/787 1350/1948/786 1351/1950/788 348/1951/789 +f 348/1952/789 1351/1953/788 1352/1954/790 349/1955/791 +f 349/1955/791 1352/1954/790 1349/1947/785 350/1946/784 +f 351/1956/792 1353/1957/788 1354/1958/786 352/1959/793 +f 356/1960/794 1355/1961/790 1353/1957/788 351/1956/792 +f 352/1959/793 1354/1958/786 1356/1962/795 353/1963/796 +f 353/1963/796 1356/1962/795 1357/1964/781 354/1965/797 +f 354/1966/797 1357/1967/781 1358/1968/785 355/1969/798 +f 355/1969/798 1358/1968/785 1355/1961/790 356/1960/794 +f 357/1970/799 1359/1971/800 1360/1972/801 358/1973/802 +f 362/1974/803 1361/1975/804 1359/1971/800 357/1970/799 +f 358/1973/802 1360/1972/801 1362/1976/805 359/1977/806 +f 359/1977/806 1362/1976/805 1363/1978/807 360/1979/808 +f 360/1980/808 1363/1981/807 1364/1982/809 361/1983/810 +f 361/1983/810 1364/1982/809 1361/1975/804 362/1974/803 +f 363/1984/811 1365/1985/807 1366/1986/805 364/1987/812 +f 368/1988/813 1367/1989/814 1365/1985/807 363/1984/811 +f 364/1987/812 1366/1986/805 1368/1990/801 365/1991/815 +f 365/1991/815 1368/1990/801 1369/1992/800 366/1993/816 +f 366/1994/816 1369/1995/800 1370/1996/817 367/1997/818 +f 367/1997/818 1370/1996/817 1367/1989/814 368/1988/813 +f 369/1998/747 1371/1999/746 1372/2000/748 370/2001/819 +f 374/2002/820 1373/2003/752 1371/1999/746 369/1998/747 +f 370/2001/819 1372/2000/748 1374/2004/743 371/2005/821 +f 371/2005/821 1374/2004/743 1375/2006/739 372/2007/822 +f 372/2008/822 1375/2009/739 1376/2010/756 373/2011/741 +f 373/2011/741 1376/2010/756 1373/2003/752 374/2002/820 +f 375/2012/758 1377/2013/739 1378/2014/743 376/2015/759 +f 380/2016/823 1379/2017/756 1377/2013/739 375/2012/758 +f 376/2015/759 1378/2014/743 1380/2018/748 377/2019/824 +f 377/2019/824 1380/2018/748 1381/2020/746 378/2021/825 +f 378/2022/825 1381/2023/746 1382/2024/752 379/2025/753 +f 379/2025/753 1382/2024/752 1379/2017/756 380/2016/823 +f 381/2026/769 1383/2027/768 1384/2028/775 382/2029/826 +f 386/2030/767 1385/2031/827 1383/2027/768 381/2026/769 +f 382/2029/826 1384/2028/775 1386/2032/778 383/2033/764 +f 383/2033/764 1386/2032/778 1387/2034/761 384/2035/760 +f 384/2036/760 1387/2037/761 1388/2038/828 385/2039/763 +f 385/2039/763 1388/2038/828 1385/2031/827 386/2030/767 +f 387/2040/829 1389/2041/761 1390/2042/765 388/2043/830 +f 392/2044/776 1391/2045/762 1389/2041/761 387/2040/829 +f 388/2043/830 1390/2042/765 1392/2046/770 389/2047/831 +f 389/2047/831 1392/2046/770 1393/2048/768 390/2049/832 +f 390/2050/832 1393/2051/768 1394/2052/766 391/2053/833 +f 391/2053/833 1394/2052/766 1391/2045/762 392/2044/776 +f 393/2054/834 1395/2055/788 1396/2056/835 394/2057/836 +f 398/2058/837 1397/2059/786 1395/2055/788 393/2054/834 +f 394/2057/836 1396/2056/835 1398/2060/838 395/2061/784 +f 395/2061/784 1398/2060/838 1399/2062/781 396/2063/780 +f 396/2064/780 1399/2065/781 1400/2066/795 397/2067/783 +f 397/2067/783 1400/2066/795 1397/2059/786 398/2058/837 +f 399/2068/797 1401/2069/781 1402/2070/785 400/2071/839 +f 404/2072/840 1403/2073/782 1401/2069/781 399/2068/797 +f 400/2071/839 1402/2070/785 1404/2074/790 401/2075/841 +f 401/2075/841 1404/2074/790 1405/2076/788 402/2077/842 +f 402/2078/842 1405/2079/788 1406/2080/843 403/2081/844 +f 403/2081/844 1406/2080/843 1403/2073/782 404/2072/840 +f 405/2082/808 1407/2083/845 1408/2084/809 406/2085/810 +f 410/2086/846 1409/2087/847 1407/2083/845 405/2082/808 +f 406/2085/810 1408/2084/809 1410/2088/804 407/2089/803 +f 407/2089/803 1410/2088/804 1411/2090/800 408/2091/848 +f 408/2092/848 1411/2093/800 1412/2094/801 409/2095/849 +f 409/2095/849 1412/2094/801 1409/2087/847 410/2086/846 +f 411/2096/850 1413/2097/800 1414/2098/817 412/2099/851 +f 416/2100/815 1415/2101/801 1413/2097/800 411/2096/850 +f 412/2099/851 1414/2098/817 1416/2102/814 413/2103/813 +f 413/2103/813 1416/2102/814 1417/2104/807 414/2105/811 +f 414/2106/811 1417/2107/807 1418/2108/805 415/2109/812 +f 415/2109/812 1418/2108/805 1415/2101/801 416/2100/815 +f 1267/1744/646 1074/2110/392 1075/2111/393 1262/1737/641 +f 883/2112/151 1074/2110/392 1267/1744/646 1273/1753/652 +f 1060/1326/378 900/967/168 894/961/162 893/960/161 +f 883/2112/151 1273/1753/652 1268/1747/647 884/1746/152 +f 417/1813/691 468/1812/690 467/1657/571 418/1656/570 +f 1081/2113/399 1080/2114/398 1195/1660/574 1194/1659/573 +f 1080/2114/398 1079/2115/397 1198/1663/577 1195/1660/574 +f 1079/2115/397 1078/2116/396 1200/1665/579 1198/1663/577 +f 1078/2116/396 1077/2117/395 1202/1667/581 1200/1665/579 +f 1077/2117/395 1076/2118/394 1204/1669/583 1202/1667/581 +f 1076/2118/394 1061/1327/379 1063/1330/381 1204/1669/583 +f 869/1334/137 1065/1333/383 1257/1732/636 866/2119/134 +f 866/2119/134 1257/1732/636 1256/1731/635 865/2120/133 +f 1067/2121/385 865/2120/133 1256/1731/635 1260/1735/639 +f 1262/1737/641 1075/2111/393 1067/2121/385 1260/1735/639 +f 893/1729/161 892/2122/160 1224/1689/603 1221/1686/600 +f 892/2122/160 901/2123/169 1225/1690/604 1224/1689/603 +f 901/2123/169 910/2124/183 1228/1693/607 1225/1690/604 +f 910/2125/183 909/2126/182 1229/1696/608 1228/1695/607 +f 909/2126/182 922/2127/195 1232/1699/611 1229/1696/608 +f 922/2127/195 921/2128/194 1233/1700/612 1232/1699/611 +f 921/2128/194 931/2129/210 1235/1702/614 1233/1700/612 +f 931/2129/210 1095/2130/413 1419/2131/852 1237/1704/616 1235/1702/614 +f 1419/2131/852 1420/2132/853 1239/1706/618 1237/1704/616 +f 1420/2132/853 1421/2133/854 1241/1708/620 1239/1706/618 +f 1421/2133/854 1422/2134/855 1243/1710/622 1241/1708/620 +f 1423/2135/856 1424/2136/857 1248/1715/627 1247/1714/626 +f 1422/2134/855 1423/2135/856 1247/1714/626 1243/1710/622 +f 1425/2137/858 1426/2138/859 1252/1719/631 1251/1718/630 +f 1424/2136/857 1425/2137/858 1251/1718/630 1248/1715/627 +f 1426/2138/859 1083/2139/401 1082/2140/400 1254/1721/633 1252/1719/631 +f 1254/1721/633 1082/2140/400 1081/2113/399 1194/1659/573 +f 903/2141/171 896/1754/164 1274/1755/653 1280/1796/669 +f 1071/1756/389 1070/1780/388 1283/1783/672 1275/1757/654 +f 914/1800/187 913/1776/186 1281/1779/670 1288/1801/683 +f 1069/1781/387 1068/1803/386 1291/1806/686 1282/1782/671 +f 1427/2142/860 933/2143/212 926/1816/199 1294/1817/694 1313/1855/719 +f 1295/1819/695 1428/2144/861 1317/1861/723 1296/1820/696 +f 1304/1842/710 1427/2142/860 1313/1855/719 1305/1843/711 +f 1428/2144/861 1307/1845/713 1310/1848/716 1317/1861/723 +f 545/2145/862 1429/2146/863 1430/2147/864 546/2148/865 +f 550/2149/866 1431/2150/867 1429/2146/863 545/2145/862 +f 546/2148/865 1430/2147/864 1432/2151/868 547/2152/869 +f 547/2152/869 1432/2151/868 1433/2153/870 548/2154/871 +f 548/2155/871 1433/2156/870 1434/2157/872 549/2158/873 +f 549/2158/873 1434/2157/872 1431/2150/867 550/2149/866 +f 551/2159/874 1435/2160/870 1436/2161/868 552/2162/875 +f 556/2163/876 1437/2164/872 1435/2160/870 551/2159/874 +f 552/2162/875 1436/2161/868 1438/2165/864 553/2166/877 +f 553/2166/877 1438/2165/864 1439/2167/863 554/2168/878 +f 554/2169/878 1439/2170/863 1440/2171/867 555/2172/879 +f 555/2172/879 1440/2171/867 1437/2164/872 556/2163/876 +f 557/2173/880 1441/2174/2 1442/2175/881 558/2176/882 +f 562/2177/883 1443/2178/884 1441/2174/2 557/2173/880 +f 558/2176/882 1442/2175/881 1444/2179/885 559/2180/886 +f 559/2180/886 1444/2179/885 1445/2181/1 560/2182/887 +f 560/2183/887 1445/2184/1 1446/2185/888 561/2186/889 +f 561/2186/889 1446/2185/888 1443/2178/884 562/2177/883 +f 563/2187/890 1447/2188/1 1448/2189/885 564/2190/891 +f 568/2191/892 1449/2192/888 1447/2188/1 563/2187/890 +f 564/2190/891 1448/2189/885 1450/2193/881 565/2194/893 +f 565/2194/893 1450/2193/881 1451/2195/2 566/2196/894 +f 566/2197/894 1451/2198/2 1452/2199/884 567/2200/895 +f 567/2200/895 1452/2199/884 1449/2192/888 568/2191/892 +f 569/2201/896 1453/2202/897 1454/2203/898 570/2204/899 +f 574/2205/900 1455/2206/901 1453/2202/897 569/2201/896 +f 570/2204/899 1454/2203/898 1456/2207/902 571/2208/903 +f 571/2208/903 1456/2207/902 1457/2209/904 572/2210/905 +f 572/2211/905 1457/2212/904 1458/2213/906 573/2214/907 +f 573/2214/907 1458/2213/906 1455/2206/901 574/2205/900 +f 575/2215/908 1459/2216/904 1460/2217/902 576/2218/909 +f 580/2219/910 1461/2220/906 1459/2216/904 575/2215/908 +f 576/2218/909 1460/2217/902 1462/2221/898 577/2222/911 +f 577/2222/911 1462/2221/898 1463/2223/897 578/2224/912 +f 578/2225/912 1463/2226/897 1464/2227/901 579/2228/913 +f 579/2228/913 1464/2227/901 1461/2220/906 580/2219/910 +f 581/2229/914 1465/2230/5 1466/2231/915 582/2232/916 +f 586/2233/917 1467/2234/918 1465/2230/5 581/2229/914 +f 582/2232/916 1466/2231/915 1468/2235/919 583/2236/920 +f 583/2236/920 1468/2235/919 1469/2237/6 584/2238/921 +f 584/2239/921 1469/2240/6 1470/2241/922 585/2242/923 +f 585/2242/923 1470/2241/922 1467/2234/918 586/2233/917 +f 587/2243/924 1471/2244/6 1472/2245/919 588/2246/925 +f 592/2247/926 1473/2248/922 1471/2244/6 587/2243/924 +f 588/2246/925 1472/2245/919 1474/2249/915 589/2250/927 +f 589/2250/927 1474/2249/915 1475/2251/5 590/2252/928 +f 590/2253/928 1475/2254/5 1476/2255/918 591/2256/929 +f 591/2256/929 1476/2255/918 1473/2248/922 592/2247/926 +f 593/2257/871 1477/2258/870 1478/2259/872 594/2260/930 +f 598/2261/869 1479/2262/868 1477/2258/870 593/2257/871 +f 594/2260/930 1478/2259/872 1480/2263/867 595/2264/866 +f 595/2264/866 1480/2263/867 1481/2265/863 596/2266/862 +f 596/2267/862 1481/2268/863 1482/2269/864 597/2270/931 +f 597/2270/931 1482/2269/864 1479/2262/868 598/2261/869 +f 599/2271/932 1483/2272/863 1484/2273/867 600/2274/933 +f 604/2275/877 1485/2276/864 1483/2272/863 599/2271/932 +f 600/2274/933 1484/2273/867 1486/2277/872 601/2278/876 +f 601/2278/876 1486/2277/872 1487/2279/870 602/2280/934 +f 602/2281/934 1487/2282/870 1488/2283/868 603/2284/935 +f 603/2284/935 1488/2283/868 1485/2276/864 604/2275/877 +f 605/2285/887 1489/2286/1 1490/2287/888 606/2288/936 +f 610/2289/937 1491/2290/885 1489/2286/1 605/2285/887 +f 606/2288/936 1490/2287/888 1492/2291/884 607/2292/938 +f 607/2292/938 1492/2291/884 1493/2293/2 608/2294/880 +f 608/2295/880 1493/2296/2 1494/2297/881 609/2298/939 +f 609/2298/939 1494/2297/881 1491/2290/885 610/2289/937 +f 611/2299/940 1495/2300/2 1496/2301/884 612/2302/941 +f 616/2303/942 1497/2304/881 1495/2300/2 611/2299/940 +f 612/2302/941 1496/2301/884 1498/2305/888 613/2306/943 +f 613/2306/943 1498/2305/888 1499/2307/1 614/2308/944 +f 614/2309/944 1499/2310/1 1500/2311/885 615/2312/945 +f 615/2312/945 1500/2311/885 1497/2304/881 616/2303/942 +f 617/2313/905 1501/2314/904 1502/2315/906 618/2316/946 +f 622/2317/947 1503/2318/902 1501/2314/904 617/2313/905 +f 618/2316/946 1502/2315/906 1504/2319/901 619/2320/948 +f 619/2320/948 1504/2319/901 1505/2321/897 620/2322/896 +f 620/2323/896 1505/2324/897 1506/2325/898 621/2326/949 +f 621/2326/949 1506/2325/898 1503/2318/902 622/2317/947 +f 623/2327/912 1507/2328/897 1508/2329/901 624/2330/913 +f 628/2331/911 1509/2332/898 1507/2328/897 623/2327/912 +f 624/2330/913 1508/2329/901 1510/2333/906 625/2334/950 +f 625/2334/950 1510/2333/906 1511/2335/904 626/2336/951 +f 626/2337/951 1511/2338/904 1512/2339/902 627/2340/952 +f 627/2340/952 1512/2339/902 1509/2332/898 628/2331/911 +f 629/2341/953 1513/2342/6 1514/2343/922 630/2344/923 +f 634/2345/954 1515/2346/919 1513/2342/6 629/2341/953 +f 630/2344/923 1514/2343/922 1516/2347/918 631/2348/917 +f 631/2348/917 1516/2347/918 1517/2349/5 632/2350/955 +f 632/2351/955 1517/2352/5 1518/2353/915 633/2354/956 +f 633/2354/956 1518/2353/915 1515/2346/919 634/2345/954 +f 635/2355/957 1519/2356/5 1520/2357/918 636/2358/958 +f 640/2359/959 1521/2360/915 1519/2356/5 635/2355/957 +f 636/2358/958 1520/2357/918 1522/2361/922 637/2362/960 +f 637/2362/960 1522/2361/922 1523/2363/6 638/2364/961 +f 638/2365/961 1523/2366/6 1524/2367/919 639/2368/925 +f 639/2368/925 1524/2367/919 1521/2360/915 640/2359/959 +f 719/2369/962 742/2370/963 741/2371/964 720/2372/965 +f 718/2373/966 743/2374/967 742/2370/963 719/2369/962 +f 717/2375/968 744/2376/969 743/2374/967 718/2373/966 +f 716/2377/970 745/2378/971 744/2376/969 717/2375/968 +f 715/2379/972 746/2380/973 745/2378/971 716/2377/970 +f 714/2381/974 747/2382/975 746/2380/973 715/2379/972 +f 713/2383/976 748/2384/977 747/2382/975 714/2381/974 +f 712/2385/978 749/2386/979 748/2384/977 713/2383/976 +f 711/2387/980 750/2388/981 749/2386/979 712/2385/978 +f 710/2389/982 751/2390/983 750/2388/981 711/2387/980 +f 709/2391/984 752/2392/985 751/2390/983 710/2389/982 +f 708/2393/986 721/2394/987 752/2392/985 709/2391/984 +f 707/2395/988 722/2396/989 721/2394/987 708/2393/986 +f 706/2397/990 723/2398/991 722/2399/989 707/2395/988 +f 705/2400/992 724/2401/993 723/2398/991 706/2397/990 +f 704/2402/994 725/2403/995 724/2401/993 705/2400/992 +f 703/2404/996 726/2405/997 725/2406/995 704/2407/994 +f 702/2408/998 727/2409/999 726/2405/997 703/2404/996 +f 701/2410/1000 728/2411/1001 727/2409/999 702/2408/998 +f 700/2412/1002 729/2413/1003 728/2411/1001 701/2410/1000 +f 698/2414/1004 731/2415/1005 730/2416/1006 699/2417/1007 +f 699/2417/1007 730/2416/1006 729/2413/1003 700/2412/1002 +f 697/2418/1008 732/2419/1009 731/2415/1005 698/2414/1004 +f 696/2420/1010 733/2421/1011 732/2419/1009 697/2418/1008 +f 695/2422/1012 734/2423/1013 733/2421/1011 696/2420/1010 +f 694/2424/1014 735/2425/1015 734/2423/1013 695/2422/1012 +f 692/2426/1016 737/2427/1017 736/2428/1018 693/2429/1019 +f 693/2429/1019 736/2428/1018 735/2425/1015 694/2424/1014 +f 691/2430/1020 738/2431/1021 737/2427/1017 692/2426/1016 +f 690/2432/1022 739/2433/1023 738/2431/1021 691/2430/1020 +f 1525/2434/1024 1526/2435/1025 1527/2436/1026 1528/2437/1027 +f 1529/2438/1028 1528/2437/1027 1527/2436/1026 1530/2439/1029 +f 1531/2440/1030 1529/2438/1028 1530/2439/1029 1532/2441/1031 +f 1533/2442/1032 1531/2440/1030 1532/2441/1031 1534/2443/1033 +f 1535/2444/1034 1533/2442/1032 1534/2443/1033 1536/2445/1035 +f 1537/2446/1036 1535/2444/1034 1536/2445/1035 1538/2447/1037 +f 1537/2446/1036 1538/2447/1037 1539/2448/1038 1540/2449/1039 +f 1541/2450/1040 1540/2449/1039 1539/2448/1038 1542/2451/1041 +f 1543/2452/1042 1541/2450/1040 1542/2451/1041 1544/2453/1043 +f 1545/2454/1044 1543/2452/1042 1544/2453/1043 1546/2455/1045 +f 1545/2454/1044 1546/2455/1045 1547/2456/1046 1548/2457/1047 +f 1548/2457/1047 1547/2456/1046 1549/2458/1048 1550/2459/1049 +f 1551/2460/1050 1552/2461/1051 1553/2462/1052 1554/2463/1053 +f 1550/2459/1049 1549/2458/1048 1552/2461/1051 1551/2460/1050 +f 1554/2463/1053 1553/2462/1052 1555/2464/1054 1556/2465/1055 +f 1557/2466/1056 1556/2465/1055 1555/2464/1054 1558/2467/1057 +f 1557/2466/1056 1558/2467/1057 1559/2468/1058 1560/2469/1059 +f 1561/2470/1060 1560/2469/1059 1559/2468/1058 1562/2471/1061 +f 1561/2472/1060 1562/2473/1061 1563/2474/1062 1564/2475/1063 +f 1565/2476/1064 1564/2475/1063 1563/2474/1062 1566/2477/1065 +f 1565/2476/1064 1566/2477/1065 1567/2478/1066 1568/2479/1067 +f 1568/2479/1067 1567/2478/1066 1569/2480/1068 1570/2481/1069 +f 1570/2481/1069 1569/2480/1068 1571/2482/1070 1572/2483/1071 +f 1572/2483/1071 1571/2482/1070 1573/2484/1072 1574/2485/1073 +f 1574/2485/1073 1573/2484/1072 1575/2486/1074 1576/2487/1075 +f 1576/2487/1075 1575/2486/1074 1577/2488/1076 1578/2489/1077 +f 1579/2490/1078 1580/2491/1079 1581/2492/1080 1582/2493/1081 +f 1580/2491/1079 1578/2489/1077 1577/2488/1076 1581/2492/1080 +f 1583/2494/1082 1584/2495/1083 1585/2496/1084 1586/2497/1085 +f 1579/2490/1078 1582/2493/1081 1585/2496/1084 1584/2495/1083 +f 1587/2498/1086 1583/2494/1082 1586/2497/1085 1588/2499/1087 +f 1587/2498/1086 1588/2499/1087 1526/2435/1025 1525/2434/1024 +f 720/2372/965 741/2371/964 740/2500/1088 689/2501/1089 +f 641/2502/1090 1589/2503/1091 1590/2504/1092 642/2505/1093 +f 646/2506/1094 1591/2507/1095 1589/2503/1091 641/2502/1090 +f 642/2505/1093 1590/2504/1092 1592/2508/1096 643/2509/1097 +f 643/2509/1097 1592/2508/1096 1593/2510/1098 644/2511/1099 +f 644/2512/1099 1593/2513/1098 1594/2514/1100 645/2515/1101 +f 645/2515/1101 1594/2514/1100 1591/2507/1095 646/2506/1094 +f 647/2516/1102 1595/2517/1103 1596/2518/1104 648/2519/1105 +f 652/2520/1106 1597/2521/1107 1595/2517/1103 647/2516/1102 +f 648/2519/1105 1596/2518/1104 1598/2522/1108 649/2523/1109 +f 649/2523/1109 1598/2522/1108 1599/2524/1110 650/2525/1111 +f 650/2526/1111 1599/2527/1110 1600/2528/1112 651/2529/1113 +f 651/2529/1113 1600/2528/1112 1597/2521/1107 652/2520/1106 +f 653/2530/1114 1601/2531/1115 1602/2532/1116 654/2533/1117 +f 658/2534/1118 1603/2535/1119 1601/2531/1115 653/2530/1114 +f 654/2533/1117 1602/2532/1116 1604/2536/1120 655/2537/1121 +f 655/2537/1121 1604/2536/1120 1605/2538/1122 656/2539/1123 +f 656/2540/1123 1605/2541/1122 1606/2542/1124 657/2543/1125 +f 657/2543/1125 1606/2542/1124 1603/2535/1119 658/2534/1118 +f 659/2544/1126 1607/2545/1127 1608/2546/1128 660/2547/1129 +f 664/2548/1130 1609/2549/1131 1607/2545/1127 659/2544/1126 +f 660/2547/1129 1608/2546/1128 1610/2550/1132 661/2551/1133 +f 661/2551/1133 1610/2550/1132 1611/2552/1134 662/2553/1135 +f 662/2554/1135 1611/2555/1134 1612/2556/1136 663/2557/1137 +f 663/2557/1137 1612/2556/1136 1609/2549/1131 664/2548/1130 +f 665/2558/1138 1613/2559/1098 1614/2560/1100 666/2561/1101 +f 670/2562/1097 1615/2563/1096 1613/2559/1098 665/2558/1138 +f 666/2561/1101 1614/2560/1100 1616/2564/1139 667/2565/1140 +f 667/2565/1140 1616/2564/1139 1617/2566/1141 668/2567/1142 +f 668/2568/1142 1617/2569/1141 1618/2570/1092 669/2571/1093 +f 669/2571/1093 1618/2570/1092 1615/2563/1096 670/2562/1097 +f 671/2572/1143 1619/2573/1110 1620/2574/1144 672/2575/1145 +f 676/2576/1146 1621/2577/1108 1619/2573/1110 671/2572/1143 +f 672/2575/1145 1620/2574/1144 1622/2578/1147 673/2579/1148 +f 673/2579/1148 1622/2578/1147 1623/2580/1103 674/2581/1149 +f 674/2582/1149 1623/2583/1103 1624/2584/1104 675/2585/1150 +f 675/2585/1150 1624/2584/1104 1621/2577/1108 676/2576/1146 +f 677/2586/1151 1625/2587/1122 1626/2588/1124 678/2589/1125 +f 682/2590/1152 1627/2591/1153 1625/2587/1122 677/2586/1151 +f 678/2589/1125 1626/2588/1124 1628/2592/1119 679/2593/1154 +f 679/2593/1154 1628/2592/1119 1629/2594/1115 680/2595/1114 +f 680/2596/1114 1629/2597/1115 1630/2598/1155 681/2599/1156 +f 681/2599/1156 1630/2598/1155 1627/2591/1153 682/2590/1152 +f 683/2600/1157 1631/2601/1134 1632/2602/1136 684/2603/1158 +f 688/2604/1133 1633/2605/1132 1631/2601/1134 683/2600/1157 +f 684/2603/1158 1632/2602/1136 1634/2606/1131 685/2607/1159 +f 685/2607/1159 1634/2606/1131 1635/2608/1127 686/2609/1126 +f 686/2610/1126 1635/2611/1127 1636/2612/1128 687/2613/1129 +f 687/2613/1129 1636/2612/1128 1633/2605/1132 688/2604/1133 +f 689/2501/1089 740/2500/1088 739/2433/1023 690/2432/1022 +f 1090/2614/408 1089/2615/407 1527/2436/1026 1526/2435/1025 +f 1089/2615/407 1088/2616/406 1530/2439/1029 1527/2436/1026 +f 1088/2616/406 1087/2617/405 1532/2441/1031 1530/2439/1029 +f 1087/2617/405 1086/2618/404 1534/2443/1033 1532/2441/1031 +f 1086/2618/404 1085/2619/403 1536/2445/1035 1534/2443/1033 +f 1085/2619/403 1084/2620/402 1538/2447/1037 1536/2445/1035 +f 1084/2620/402 1083/2621/401 1426/2622/859 1539/2448/1038 1538/2447/1037 +f 1426/2622/859 1425/2623/858 1542/2451/1041 1539/2448/1038 +f 1425/2623/858 1424/2624/857 1544/2453/1043 1542/2451/1041 +f 1424/2624/857 1423/2625/856 1546/2455/1045 1544/2453/1043 +f 1423/2625/856 1422/2626/855 1547/2456/1046 1546/2455/1045 +f 1422/2626/855 1421/2627/854 1549/2458/1048 1547/2456/1046 +f 1420/2628/853 1419/2629/852 1553/2462/1052 1552/2461/1051 +f 1421/2627/854 1420/2628/853 1552/2461/1051 1549/2458/1048 +f 1419/2629/852 1095/2630/413 1094/2631/412 1555/2464/1054 1553/2462/1052 +f 1094/2631/412 943/2632/226 1558/2467/1057 1555/2464/1054 +f 943/2632/226 942/2633/225 1559/2468/1058 1558/2467/1057 +f 942/2633/225 953/2634/240 1562/2471/1061 1559/2468/1058 +f 953/2635/240 947/2636/230 1563/2474/1062 1562/2473/1061 +f 947/2636/230 946/2637/229 1566/2477/1065 1563/2474/1062 +f 946/2637/229 1096/2638/414 1567/2478/1066 1566/2477/1065 +f 1096/2638/414 934/2639/213 1569/2480/1068 1567/2478/1066 +f 934/2639/213 933/2640/212 1427/2641/860 1571/2482/1070 1569/2480/1068 +f 1427/2641/860 1304/2642/710 1573/2484/1072 1571/2482/1070 +f 1304/2642/710 1303/2643/709 1575/2486/1074 1573/2484/1072 +f 1303/2643/709 1314/2644/720 1577/2488/1076 1575/2486/1074 +f 1308/2645/714 1307/2646/713 1582/2493/1081 1581/2492/1080 +f 1314/2644/720 1308/2645/714 1581/2492/1080 1577/2488/1076 +f 1428/2647/861 1295/2648/695 1586/2497/1085 1585/2496/1084 +f 1307/2646/713 1428/2647/861 1585/2496/1084 1582/2493/1081 +f 1295/2648/695 1092/1363/410 1091/2649/409 1588/2499/1087 1586/2497/1085 +f 1588/2499/1087 1091/2649/409 1090/2614/408 1526/2435/1025 +f 753/2650/1160 1637/2651/1161 1638/2652/1162 754/2653/1163 +f 758/2654/1164 1639/2655/1165 1637/2651/1161 753/2650/1160 +f 754/2653/1163 1638/2652/1162 1640/2656/1166 755/2657/1167 +f 755/2657/1167 1640/2656/1166 1641/2658/1168 756/2659/1169 +f 756/2660/1169 1641/2661/1168 1642/2662/1170 757/2663/1171 +f 757/2663/1171 1642/2662/1170 1639/2655/1165 758/2654/1164 +f 759/2664/1172 1643/2665/1 1644/2666/1173 760/2667/1174 +f 764/2668/1175 1645/2669/1176 1643/2665/1 759/2664/1172 +f 760/2667/1174 1644/2666/1173 1646/2670/1177 761/2671/1178 +f 761/2671/1178 1646/2670/1177 1647/2672/2 762/2673/1179 +f 762/2674/1179 1647/2675/2 1648/2676/1180 763/2677/1181 +f 763/2677/1181 1648/2676/1180 1645/2669/1176 764/2668/1175 +f 765/2678/1182 1649/2679/1183 1650/2680/1184 766/2681/1185 +f 770/2682/1186 1651/2683/1187 1649/2679/1183 765/2678/1182 +f 766/2681/1185 1650/2680/1184 1652/2684/1188 767/2685/1189 +f 767/2685/1189 1652/2684/1188 1653/2686/1190 768/2687/1191 +f 768/2688/1191 1653/2689/1190 1654/2690/1192 769/2691/1193 +f 769/2691/1193 1654/2690/1192 1651/2683/1187 770/2682/1186 +f 771/2692/1194 1655/2693/4 1656/2694/1195 772/2695/1196 +f 776/2696/1197 1657/2697/1198 1655/2693/4 771/2692/1194 +f 772/2695/1196 1656/2694/1195 1658/2698/1199 773/2699/1200 +f 773/2699/1200 1658/2698/1199 1659/2700/3 774/2701/1201 +f 774/2702/1201 1659/2703/3 1660/2704/1202 775/2705/1203 +f 775/2705/1203 1660/2704/1202 1657/2697/1198 776/2696/1197 +f 777/2706/1204 1661/2707/1168 1662/2708/1170 778/2709/1171 +f 782/2710/1205 1663/2711/1166 1661/2707/1168 777/2706/1204 +f 778/2709/1171 1662/2708/1170 1664/2712/1165 779/2713/1206 +f 779/2713/1206 1664/2712/1165 1665/2714/1161 780/2715/1207 +f 780/2716/1207 1665/2717/1161 1666/2718/1162 781/2719/1163 +f 781/2719/1163 1666/2718/1162 1663/2711/1166 782/2710/1205 +f 783/2720/1179 1667/2721/2 1668/2722/1180 784/2723/1208 +f 788/2724/1209 1669/2725/1177 1667/2721/2 783/2720/1179 +f 784/2723/1208 1668/2722/1180 1670/2726/1176 785/2727/1210 +f 785/2727/1210 1670/2726/1176 1671/2728/1 786/2729/1172 +f 786/2730/1172 1671/2731/1 1672/2732/1173 787/2733/1211 +f 787/2733/1211 1672/2732/1173 1669/2725/1177 788/2724/1209 +f 789/2734/1212 1673/2735/1190 1674/2736/1192 790/2737/1213 +f 794/2738/1214 1675/2739/1188 1673/2735/1190 789/2734/1212 +f 790/2737/1213 1674/2736/1192 1676/2740/1187 791/2741/1215 +f 791/2741/1215 1676/2740/1187 1677/2742/1183 792/2743/1216 +f 792/2744/1216 1677/2745/1183 1678/2746/1184 793/2747/1217 +f 793/2747/1217 1678/2746/1184 1675/2739/1188 794/2738/1214 +f 795/2748/1201 1679/2749/3 1680/2750/1202 796/2751/1218 +f 800/2752/1219 1681/2753/1199 1679/2749/3 795/2748/1201 +f 796/2751/1218 1680/2750/1202 1682/2754/1198 797/2755/1220 +f 797/2755/1220 1682/2754/1198 1683/2756/4 798/2757/1194 +f 798/2758/1194 1683/2759/4 1684/2760/1195 799/2761/1221 +f 799/2761/1221 1684/2760/1195 1681/2753/1199 800/2752/1219 +f 883/950/151 882/949/150 888/955/156 1074/1344/392 diff --git a/mods/pipeworks/models/pipeworks_pipe_9_lowpoly.obj b/mods/pipeworks/models/pipeworks_pipe_9_lowpoly.obj new file mode 100644 index 00000000..a136916f --- /dev/null +++ b/mods/pipeworks/models/pipeworks_pipe_9_lowpoly.obj @@ -0,0 +1,682 @@ +# Blender v2.78 (sub 0) OBJ File: '' +# www.blender.org +o Cylinder.002_Cylinder.006_None.004_Cylinder.002_Cylinder.006_No +v -0.468750 -0.156250 -0.064721 +v -0.468750 -0.064721 -0.156250 +v -0.468750 0.064721 -0.156250 +v -0.468750 0.156250 -0.064721 +v -0.468750 0.156250 0.064721 +v -0.468750 0.064721 0.156250 +v -0.468750 -0.064721 0.156250 +v -0.468750 -0.156250 0.064721 +v -0.500000 -0.064721 -0.156250 +v -0.500000 -0.156250 -0.064721 +v -0.500000 -0.156250 0.064721 +v -0.500000 -0.064721 0.156250 +v -0.500000 0.064721 0.156250 +v -0.500000 0.156250 0.064721 +v -0.500000 0.156250 -0.064721 +v -0.500000 0.064721 -0.156250 +v 0.500000 -0.156250 -0.064721 +v 0.500000 -0.064721 -0.156250 +v 0.500000 0.064721 -0.156250 +v 0.500000 0.156250 -0.064721 +v 0.500000 0.156250 0.064721 +v 0.500000 0.064721 0.156250 +v 0.500000 -0.064721 0.156250 +v 0.500000 -0.156250 0.064721 +v 0.468750 -0.064721 -0.156250 +v 0.468750 -0.156250 -0.064721 +v 0.468750 -0.156250 0.064721 +v 0.468750 -0.064721 0.156250 +v 0.468750 0.064721 0.156250 +v 0.468750 0.156250 0.064721 +v 0.468750 0.156250 -0.064721 +v 0.468750 0.064721 -0.156250 +v -0.156250 0.468750 -0.064721 +v -0.064721 0.468750 -0.156250 +v 0.064721 0.468750 -0.156250 +v 0.156250 0.468750 -0.064721 +v 0.156250 0.468750 0.064721 +v 0.064721 0.468750 0.156250 +v -0.064721 0.468750 0.156250 +v -0.156250 0.468750 0.064721 +v -0.064721 0.500000 -0.156250 +v -0.156250 0.500000 -0.064721 +v -0.156250 0.500000 0.064721 +v -0.064721 0.500000 0.156250 +v 0.064721 0.500000 0.156250 +v 0.156250 0.500000 0.064721 +v 0.156250 0.500000 -0.064721 +v 0.064721 0.500000 -0.156250 +v -0.156250 -0.500000 -0.064721 +v -0.064721 -0.500000 -0.156250 +v 0.064721 -0.500000 -0.156250 +v 0.156250 -0.500000 -0.064721 +v 0.156250 -0.500000 0.064721 +v 0.064721 -0.500000 0.156250 +v -0.064721 -0.500000 0.156250 +v -0.156250 -0.500000 0.064721 +v -0.064721 -0.468750 -0.156250 +v -0.156250 -0.468750 -0.064721 +v -0.156250 -0.468750 0.064721 +v -0.064721 -0.468750 0.156250 +v 0.064721 -0.468750 0.156250 +v 0.156250 -0.468750 0.064721 +v 0.156250 -0.468750 -0.064721 +v 0.064721 -0.468750 -0.156250 +v -0.156250 -0.064721 -0.468750 +v -0.064721 -0.156250 -0.468750 +v 0.064721 -0.156250 -0.468750 +v 0.156250 -0.064721 -0.468750 +v 0.156250 0.064721 -0.468750 +v 0.064721 0.156250 -0.468750 +v -0.064721 0.156250 -0.468750 +v -0.156250 0.064721 -0.468750 +v -0.064721 -0.156250 -0.500000 +v -0.156250 -0.064721 -0.500000 +v -0.156250 0.064721 -0.500000 +v -0.064721 0.156250 -0.500000 +v 0.064721 0.156250 -0.500000 +v 0.156250 0.064721 -0.500000 +v 0.156250 -0.064721 -0.500000 +v 0.064721 -0.156250 -0.500000 +v -0.468750 -0.051777 -0.125000 +v -0.468750 -0.125000 -0.051777 +v -0.468750 -0.125000 0.051777 +v -0.468750 -0.051777 0.125000 +v -0.468750 0.051777 0.125000 +v -0.468750 0.125000 0.051777 +v -0.468750 0.125000 -0.051777 +v -0.468750 0.051777 -0.125000 +v 0.468750 -0.125000 -0.051777 +v 0.468750 -0.051777 -0.125000 +v 0.468750 0.051777 -0.125000 +v 0.468750 0.125000 -0.051777 +v 0.468750 0.125000 0.051777 +v 0.468750 0.051777 0.125000 +v 0.468750 -0.051777 0.125000 +v 0.468750 -0.125000 0.051777 +v -0.051777 0.051777 0.125000 +v -0.125000 0.125000 0.051777 +v 0.125000 0.125000 -0.051777 +v 0.125000 0.125000 0.051777 +v -0.051777 -0.051777 0.125000 +v -0.125000 -0.125000 0.051777 +v 0.125000 -0.125000 0.051777 +v 0.125000 -0.125000 -0.051777 +v 0.088388 -0.088388 -0.088388 +v 0.125000 -0.051777 -0.125000 +v 0.125000 0.051777 -0.125000 +v 0.088388 0.088388 -0.088388 +v 0.051777 -0.051777 0.125000 +v 0.051777 -0.468750 0.125000 +v 0.125000 -0.468750 0.051777 +v -0.051777 0.468750 0.125000 +v -0.051777 -0.468750 0.125000 +v 0.051777 0.051777 0.125000 +v 0.051777 0.468750 0.125000 +v -0.125000 0.125000 -0.051777 +v -0.088388 0.088388 -0.088388 +v -0.125000 0.051777 -0.125000 +v -0.125000 -0.051777 -0.125000 +v -0.088388 -0.088388 -0.088388 +v -0.125000 -0.125000 -0.051777 +v -0.051777 0.468750 -0.125000 +v -0.125000 0.468750 -0.051777 +v -0.125000 0.468750 0.051777 +v 0.125000 0.468750 0.051777 +v 0.125000 0.468750 -0.051777 +v 0.051777 0.468750 -0.125000 +v -0.125000 -0.468750 -0.051777 +v -0.051777 -0.468750 -0.125000 +v 0.051777 -0.468750 -0.125000 +v 0.125000 -0.468750 -0.051777 +v -0.125000 -0.468750 0.051777 +v -0.051777 -0.125000 -0.125000 +v 0.051777 -0.125000 -0.125000 +v 0.051777 0.125000 -0.125000 +v -0.051777 0.125000 -0.125000 +v -0.051777 -0.125000 -0.468750 +v -0.125000 -0.051777 -0.468750 +v -0.125000 0.051777 -0.468750 +v -0.051777 0.125000 -0.468750 +v 0.051777 0.125000 -0.468750 +v 0.125000 0.051777 -0.468750 +v 0.125000 -0.051777 -0.468750 +v 0.051777 -0.125000 -0.468750 +vt 0.7188 0.8906 +vt 0.6250 0.9844 +vt 0.5000 0.9844 +vt 0.4062 0.8906 +vt 0.4062 0.7656 +vt 0.5000 0.6719 +vt 0.6250 0.6719 +vt 0.7188 0.7656 +vt 0.2500 0.9844 +vt 0.3438 0.8906 +vt 0.3438 0.7656 +vt 0.2500 0.6719 +vt 0.1250 0.6719 +vt 0.0312 0.7656 +vt 0.0312 0.8906 +vt 0.1250 0.9844 +vt 0.3438 0.8906 +vt 0.2500 0.9844 +vt 0.1250 0.9844 +vt 0.0312 0.8906 +vt 0.0312 0.7656 +vt 0.1250 0.6719 +vt 0.2500 0.6719 +vt 0.3438 0.7656 +vt 0.6250 0.9844 +vt 0.7188 0.8906 +vt 0.7188 0.7656 +vt 0.6250 0.6719 +vt 0.5000 0.6719 +vt 0.4062 0.7656 +vt 0.4062 0.8906 +vt 0.5000 0.9844 +vt 0.7188 0.8906 +vt 0.6250 0.9844 +vt 0.5000 0.9844 +vt 0.4062 0.8906 +vt 0.4062 0.7656 +vt 0.5000 0.6719 +vt 0.6250 0.6719 +vt 0.7188 0.7656 +vt 0.2500 0.9844 +vt 0.3438 0.8906 +vt 0.3438 0.7656 +vt 0.2500 0.6719 +vt 0.1250 0.6719 +vt 0.0312 0.7656 +vt 0.0312 0.8906 +vt 0.1250 0.9844 +vt 0.3438 0.8906 +vt 0.2500 0.9844 +vt 0.1250 0.9844 +vt 0.0312 0.8906 +vt 0.0312 0.7656 +vt 0.1250 0.6719 +vt 0.2500 0.6719 +vt 0.3438 0.7656 +vt 0.6250 0.9844 +vt 0.7188 0.8906 +vt 0.7188 0.7656 +vt 0.6250 0.6719 +vt 0.5000 0.6719 +vt 0.4062 0.7656 +vt 0.4062 0.8906 +vt 0.5000 0.9844 +vt 0.7188 0.8906 +vt 0.6250 0.9844 +vt 0.5000 0.9844 +vt 0.4062 0.8906 +vt 0.4062 0.7656 +vt 0.5000 0.6719 +vt 0.6250 0.6719 +vt 0.7188 0.7656 +vt 0.2500 0.9844 +vt 0.3438 0.8906 +vt 0.3438 0.7656 +vt 0.2500 0.6719 +vt 0.1250 0.6719 +vt 0.0312 0.7656 +vt 0.0312 0.8906 +vt 0.1250 0.9844 +vt 0.8125 0.5938 +vt 0.8125 0.5625 +vt 0.8750 0.5625 +vt 0.8750 0.5938 +vt 0.9375 0.5625 +vt 0.9375 0.5938 +vt 1.0000 0.5625 +vt 1.0000 0.5938 +vt 0.5000 0.5938 +vt 0.5000 0.5625 +vt 0.5625 0.5625 +vt 0.5625 0.5938 +vt 0.6250 0.5625 +vt 0.6250 0.5938 +vt 0.6875 0.5625 +vt 0.6875 0.5938 +vt 0.7500 0.5625 +vt 0.7500 0.5938 +vt 0.3750 0.5938 +vt 0.3750 0.5625 +vt 0.4375 0.5625 +vt 0.4375 0.5938 +vt 0.3125 0.5938 +vt 0.3125 0.5625 +vt 0.5000 0.5625 +vt 0.5000 0.5938 +vt 0.0000 0.5938 +vt 0.0000 0.5625 +vt 0.0625 0.5625 +vt 0.0625 0.5938 +vt 0.1250 0.5625 +vt 0.1250 0.5938 +vt 0.1875 0.5625 +vt 0.1875 0.5938 +vt 0.2500 0.5625 +vt 0.2500 0.5938 +vt 0.0000 1.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 1.0000 0.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 0.7500 0.2344 +vt 0.6250 0.2031 +vt 0.6250 0.0156 +vt 0.7500 0.0156 +vt 0.6250 0.5156 +vt 0.5000 0.5156 +vt 0.5000 0.3281 +vt 0.6250 0.3281 +vt 0.8750 0.2344 +vt 0.8750 0.0156 +vt 1.0000 0.0156 +vt 1.0000 0.2031 +vt 0.1250 0.5156 +vt -0.0000 0.5156 +vt -0.0000 0.3281 +vt 0.1250 0.3281 +vt 0.1875 0.3125 +vt 0.2500 0.3281 +vt 0.2500 0.5156 +vt 0.3750 0.3281 +vt 0.3750 0.5156 +vt 0.4375 0.3125 +vt 0.7500 0.2969 +vt 0.7500 0.5156 +vt 0.6250 0.5156 +vt 0.6250 0.3281 +vt 0.5000 0.2031 +vt 0.5000 0.0156 +vt 0.4375 0.2188 +vt 0.3750 0.2031 +vt 0.3750 0.0156 +vt 0.2500 0.0156 +vt 0.2500 0.2031 +vt 0.1250 0.0156 +vt 0.1875 0.2188 +vt 0.1250 0.2031 +vt -0.0000 0.2031 +vt -0.0000 0.0156 +vt 0.8125 0.5938 +vt 0.8125 0.5625 +vt 0.8750 0.5625 +vt 0.8750 0.5938 +vt 0.9375 0.5625 +vt 0.9375 0.5938 +vt 1.0000 0.5625 +vt 1.0000 0.5938 +vt 0.5000 0.5938 +vt 0.5000 0.5625 +vt 0.5625 0.5625 +vt 0.5625 0.5938 +vt 0.6250 0.5625 +vt 0.6250 0.5938 +vt 0.6875 0.5625 +vt 0.6875 0.5938 +vt 0.7500 0.5625 +vt 0.7500 0.5938 +vt 0.3750 0.5938 +vt 0.3750 0.5625 +vt 0.4375 0.5625 +vt 0.4375 0.5938 +vt 0.3125 0.5938 +vt 0.3125 0.5625 +vt 0.5000 0.5625 +vt 0.5000 0.5938 +vt 0.0000 0.5938 +vt 0.0000 0.5625 +vt 0.0625 0.5625 +vt 0.0625 0.5938 +vt 0.1250 0.5625 +vt 0.1250 0.5938 +vt 0.1875 0.5625 +vt 0.1875 0.5938 +vt 0.2500 0.5625 +vt 0.2500 0.5938 +vt 0.0000 1.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 1.0000 0.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 1.0000 1.0000 +vt 0.8750 0.2969 +vt 1.0000 0.3281 +vt 1.0000 0.5156 +vt 0.8750 0.5156 +vt 0.5000 0.5156 +vt 0.5000 0.3281 +vt 0.8750 0.2969 +vt 1.0000 0.3281 +vt 1.0000 0.5156 +vt 0.8750 0.5156 +vt 0.7500 0.0156 +vt 0.7500 0.2344 +vt 0.6250 0.2031 +vt 0.6250 0.0156 +vt 0.1250 0.5156 +vt -0.0000 0.5156 +vt -0.0000 0.3281 +vt 0.1250 0.3281 +vt 0.1875 0.3125 +vt 0.2500 0.3281 +vt 0.2500 0.5156 +vt 0.3750 0.3281 +vt 0.3750 0.5156 +vt 0.4375 0.3125 +vt 0.8750 0.2344 +vt 0.8750 0.0156 +vt 1.0000 0.0156 +vt 1.0000 0.2031 +vt 0.5000 0.2031 +vt 0.5000 0.0156 +vt 0.4375 0.2188 +vt 0.3750 0.2031 +vt 0.3750 0.0156 +vt 0.2500 0.0156 +vt 0.2500 0.2031 +vt 0.1250 0.0156 +vt 0.1875 0.2188 +vt 0.1250 0.2031 +vt -0.0000 0.2031 +vt -0.0000 0.0156 +vt 0.8125 0.5938 +vt 0.8125 0.5625 +vt 0.8750 0.5625 +vt 0.8750 0.5938 +vt 0.9375 0.5625 +vt 0.9375 0.5938 +vt 1.0000 0.5625 +vt 1.0000 0.5938 +vt 0.5000 0.5938 +vt 0.5000 0.5625 +vt 0.5625 0.5625 +vt 0.5625 0.5938 +vt 0.6250 0.5625 +vt 0.6250 0.5938 +vt 0.6875 0.5625 +vt 0.6875 0.5938 +vt 0.7500 0.5625 +vt 0.7500 0.5938 +vt 0.0000 1.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.7500 0.2969 +vt 0.7500 0.5156 +vt 1.0000 0.0156 +vt 1.0000 0.2031 +vt 0.9375 0.2188 +vt 0.8750 0.2031 +vt 0.8750 0.0156 +vt 0.7500 0.2031 +vt 0.7500 0.0156 +vt 0.6250 0.0156 +vt 0.6875 0.2188 +vt 0.6250 0.2031 +vt 0.5000 0.2031 +vt 0.5000 0.0156 +vt 0.4375 0.2188 +vt 0.3750 0.2031 +vt 0.3750 0.0156 +vt 0.2500 0.0156 +vt 0.2500 0.2031 +vt 0.1250 0.0156 +vt 0.1250 0.2031 +vt -0.0000 0.2031 +vt -0.0000 0.0156 +vn 1.0000 0.0000 -0.0000 +vn -1.0000 0.0000 0.0000 +vn 0.0000 -1.0000 0.0000 +vn 0.0000 1.0000 -0.0000 +vn 0.0000 -0.0000 1.0000 +vn -0.0000 0.0000 -1.0000 +vn -0.6302 -0.2972 -0.7173 +vn 0.6302 -0.2970 -0.7174 +vn 0.6302 -0.7173 -0.2971 +vn -0.6302 -0.7173 -0.2971 +vn 0.6302 -0.7173 0.2971 +vn -0.6302 -0.7173 0.2971 +vn 0.6302 -0.2971 0.7173 +vn -0.6302 -0.2971 0.7173 +vn 0.6302 0.2971 0.7173 +vn -0.6302 0.2971 0.7173 +vn 0.6302 0.7173 0.2971 +vn -0.6302 0.7173 0.2971 +vn 0.6302 0.7173 -0.2971 +vn -0.6302 0.7173 -0.2971 +vn 0.6302 0.2972 -0.7173 +vn -0.6302 0.2970 -0.7174 +vn -0.6302 -0.2971 -0.7173 +vn 0.6302 -0.2971 -0.7173 +vn 0.6302 -0.2972 0.7173 +vn -0.6302 -0.2970 0.7174 +vn 0.6302 0.2970 0.7174 +vn -0.6302 0.2972 0.7173 +vn 0.6302 0.2971 -0.7173 +vn -0.6302 0.2971 -0.7173 +vn -0.6303 -0.2971 -0.7173 +vn -0.6303 -0.7173 -0.2971 +vn -0.6303 -0.7173 0.2971 +vn -0.6303 -0.2971 0.7173 +vn -0.6303 0.2971 0.7173 +vn -0.6303 0.7173 0.2971 +vn -0.6303 0.7173 -0.2971 +vn -0.6303 0.2971 -0.7173 +vn 0.6303 -0.7173 -0.2971 +vn 0.6303 -0.2971 -0.7173 +vn 0.6303 0.2971 -0.7173 +vn 0.6303 0.7173 -0.2971 +vn 0.6303 0.7173 0.2971 +vn 0.6303 0.2971 0.7173 +vn 0.6303 -0.2971 0.7173 +vn 0.6303 -0.7173 0.2971 +vn -0.1100 0.1101 0.9878 +vn -0.5789 0.5789 0.5743 +vn 0.5789 0.5789 -0.5743 +vn 0.5789 0.5789 0.5743 +vn -0.1100 -0.1101 0.9878 +vn -0.5789 -0.5789 0.5743 +vn 0.5789 -0.5789 0.5743 +vn 0.5789 -0.5789 -0.5743 +vn 0.5774 -0.5774 -0.5774 +vn 0.5789 -0.5743 -0.5789 +vn 0.5789 0.5743 -0.5789 +vn 0.5774 0.5774 -0.5774 +vn 0.1101 -0.1101 0.9878 +vn 0.2971 -0.6303 0.7173 +vn 0.7173 -0.6303 0.2971 +vn -0.5789 0.5789 -0.5743 +vn -0.5774 0.5774 -0.5774 +vn -0.5789 0.5743 -0.5789 +vn -0.5789 -0.5743 -0.5789 +vn -0.5774 -0.5774 -0.5774 +vn -0.5789 -0.5789 -0.5743 +vn -0.2972 0.6302 -0.7173 +vn -0.2970 -0.6302 -0.7174 +vn -0.7173 -0.6302 -0.2972 +vn -0.7174 0.6302 -0.2970 +vn -0.7173 -0.6302 0.2971 +vn -0.7173 0.6302 0.2971 +vn -0.2971 -0.6302 0.7173 +vn -0.2971 0.6302 0.7173 +vn 0.2970 -0.6302 0.7174 +vn 0.2972 0.6302 0.7173 +vn 0.7173 -0.6302 0.2972 +vn 0.7174 0.6302 0.2970 +vn 0.7173 -0.6302 -0.2971 +vn 0.7173 0.6302 -0.2971 +vn 0.2971 -0.6302 -0.7173 +vn 0.2971 0.6302 -0.7173 +vn -0.2971 0.6303 -0.7173 +vn -0.7173 0.6303 -0.2971 +vn -0.7173 0.6303 0.2971 +vn -0.2971 0.6303 0.7173 +vn 0.2971 0.6303 0.7173 +vn 0.7173 0.6303 0.2971 +vn 0.7173 0.6303 -0.2971 +vn 0.2971 0.6303 -0.7173 +vn -0.7173 -0.6303 -0.2971 +vn -0.2971 -0.6303 -0.7173 +vn 0.2971 -0.6303 -0.7173 +vn 0.7173 -0.6303 -0.2971 +vn -0.2971 -0.6303 0.7173 +vn -0.7173 -0.6303 0.2971 +vn 0.1101 0.1101 0.9878 +vn -0.5743 -0.5789 -0.5789 +vn 0.5743 -0.5789 -0.5789 +vn 0.5743 0.5789 -0.5789 +vn -0.5743 0.5789 -0.5789 +vn -0.2971 -0.7173 -0.6302 +vn -0.2972 -0.7173 0.6302 +vn -0.7173 -0.2971 0.6302 +vn -0.7173 -0.2971 -0.6302 +vn -0.7173 0.2971 0.6302 +vn -0.7173 0.2971 -0.6302 +vn -0.2970 0.7174 0.6302 +vn -0.2971 0.7173 -0.6302 +vn 0.2971 0.7173 0.6302 +vn 0.2971 0.7173 -0.6302 +vn 0.7173 0.2971 0.6302 +vn 0.7173 0.2971 -0.6302 +vn 0.7173 -0.2971 0.6302 +vn 0.7173 -0.2971 -0.6302 +vn 0.2971 -0.7173 0.6302 +vn 0.2971 -0.7173 -0.6302 +vn -0.2971 -0.7173 -0.6303 +vn -0.7173 -0.2971 -0.6303 +vn -0.7173 0.2971 -0.6303 +vn -0.2971 0.7173 -0.6303 +vn 0.2971 0.7173 -0.6303 +vn 0.7173 0.2971 -0.6303 +vn 0.7173 -0.2971 -0.6303 +vn 0.2971 -0.7173 -0.6303 +g Cylinder.002_Cylinder.006_None.004_Cylinder.002_Cylinder.006_No_Cylinder.002_Cylinder.006_None.004_Cylinder.002_Cylinder.006_No_None +s 1 +f 1/1/1 2/2/1 3/3/1 4/4/1 5/5/1 6/6/1 7/7/1 8/8/1 +f 9/9/2 10/10/2 11/11/2 12/12/2 13/13/2 14/14/2 15/15/2 16/16/2 +f 17/17/1 18/18/1 19/19/1 20/20/1 21/21/1 22/22/1 23/23/1 24/24/1 +f 25/25/2 26/26/2 27/27/2 28/28/2 29/29/2 30/30/2 31/31/2 32/32/2 +f 33/33/3 34/34/3 35/35/3 36/36/3 37/37/3 38/38/3 39/39/3 40/40/3 +f 41/41/4 42/42/4 43/43/4 44/44/4 45/45/4 46/46/4 47/47/4 48/48/4 +f 49/49/3 50/50/3 51/51/3 52/52/3 53/53/3 54/54/3 55/55/3 56/56/3 +f 57/57/4 58/58/4 59/59/4 60/60/4 61/61/4 62/62/4 63/63/4 64/64/4 +f 65/65/5 66/66/5 67/67/5 68/68/5 69/69/5 70/70/5 71/71/5 72/72/5 +f 73/73/6 74/74/6 75/75/6 76/76/6 77/77/6 78/78/6 79/79/6 80/80/6 +f 9/81/7 2/82/8 1/83/9 10/84/10 +f 10/84/10 1/83/9 8/85/11 11/86/12 +f 11/86/12 8/85/11 7/87/13 12/88/14 +f 12/89/14 7/90/13 6/91/15 13/92/16 +f 13/92/16 6/91/15 5/93/17 14/94/18 +f 14/94/18 5/93/17 4/95/19 15/96/20 +f 15/96/20 4/95/19 3/97/21 16/98/22 +f 16/98/22 3/97/21 2/82/8 9/81/7 +f 26/99/10 17/100/9 24/101/11 27/102/12 +f 25/103/23 18/104/24 17/100/9 26/99/10 +f 27/102/12 24/101/11 23/105/25 28/106/26 +f 28/107/26 23/108/25 22/109/27 29/110/28 +f 29/110/28 22/109/27 21/111/17 30/112/18 +f 30/112/18 21/111/17 20/113/19 31/114/20 +f 31/114/20 20/113/19 19/115/29 32/116/30 +f 32/116/30 19/115/29 18/104/24 25/103/23 +f 81/117/31 82/118/32 83/119/33 84/120/34 85/121/35 86/122/36 87/123/37 88/124/38 +f 89/125/39 90/126/40 91/127/41 92/128/42 93/129/43 94/130/44 95/131/45 96/132/46 +f 97/133/47 98/134/48 86/135/36 85/136/35 +f 93/137/43 92/138/42 99/139/49 100/140/50 +f 101/141/51 84/142/34 83/143/33 102/144/52 +f 89/145/39 96/146/46 103/147/53 104/148/54 +f 89/145/39 104/148/54 105/149/55 106/150/56 90/151/40 +f 90/151/40 106/150/56 107/152/57 91/153/41 +f 91/153/41 107/152/57 108/154/58 99/139/49 92/138/42 +f 109/155/59 110/156/60 111/157/61 103/158/53 +f 86/135/36 98/134/48 116/159/62 87/160/37 +f 87/160/37 116/159/62 117/161/63 118/162/64 88/163/38 +f 81/164/31 88/163/38 118/162/64 119/165/65 +f 82/166/32 81/164/31 119/165/65 120/167/66 121/168/67 +f 82/166/32 121/168/67 102/169/52 83/170/33 +f 41/171/68 34/172/69 33/173/70 42/174/71 +f 42/174/71 33/173/70 40/175/72 43/176/73 +f 43/176/73 40/175/72 39/177/74 44/178/75 +f 44/179/75 39/180/74 38/181/76 45/182/77 +f 45/182/77 38/181/76 37/183/78 46/184/79 +f 46/184/79 37/183/78 36/185/80 47/186/81 +f 47/186/81 36/185/80 35/187/82 48/188/83 +f 48/188/83 35/187/82 34/172/69 41/171/68 +f 58/189/71 49/190/70 56/191/72 59/192/73 +f 57/193/68 50/194/69 49/190/70 58/189/71 +f 59/192/73 56/191/72 55/195/74 60/196/75 +f 60/197/75 55/198/74 54/199/76 61/200/77 +f 61/200/77 54/199/76 53/201/78 62/202/79 +f 62/202/79 53/201/78 52/203/80 63/204/81 +f 63/204/81 52/203/80 51/205/82 64/206/83 +f 64/206/83 51/205/82 50/194/69 57/193/68 +f 122/207/84 123/208/85 124/209/86 112/210/87 115/211/88 125/212/89 126/213/90 127/214/91 +f 128/215/92 129/216/93 130/217/94 131/218/95 111/219/61 110/220/60 113/221/96 132/222/97 +f 109/223/59 103/224/53 96/225/46 95/226/45 +f 111/157/61 131/227/95 104/228/54 103/158/53 +f 101/229/51 102/230/52 132/231/97 113/232/96 +f 115/233/88 114/234/98 100/235/50 125/236/89 +f 128/237/92 132/238/97 102/239/52 121/240/67 +f 128/237/92 121/240/67 120/241/66 133/242/99 129/243/93 +f 129/243/93 133/242/99 134/244/100 130/245/94 +f 130/245/94 134/244/100 105/246/55 104/228/54 131/227/95 +f 97/247/47 112/248/87 124/249/86 98/250/48 +f 125/236/89 100/235/50 99/251/49 126/252/90 +f 126/252/90 99/251/49 108/253/58 135/254/101 127/255/91 +f 122/256/84 127/255/91 135/254/101 136/257/102 +f 123/258/85 122/256/84 136/257/102 117/259/63 116/260/62 +f 123/258/85 116/260/62 98/261/48 124/262/86 +f 73/263/103 66/264/104 65/265/105 74/266/106 +f 74/266/106 65/265/105 72/267/107 75/268/108 +f 75/268/108 72/267/107 71/269/109 76/270/110 +f 76/271/110 71/272/109 70/273/111 77/274/112 +f 77/274/112 70/273/111 69/275/113 78/276/114 +f 78/276/114 69/275/113 68/277/115 79/278/116 +f 79/278/116 68/277/115 67/279/117 80/280/118 +f 80/280/118 67/279/117 66/264/104 73/263/103 +f 137/281/119 138/282/120 139/283/121 140/284/122 141/285/123 142/286/124 143/287/125 144/288/126 +f 93/137/43 100/140/50 114/289/98 94/290/44 +f 139/291/121 118/292/64 117/293/63 136/294/102 140/295/122 +f 140/295/122 136/294/102 135/296/101 141/297/123 +f 142/298/124 141/297/123 135/296/101 108/299/58 107/300/57 +f 142/298/124 107/300/57 106/301/56 143/302/125 +f 143/302/125 106/301/56 105/303/55 134/304/100 144/305/126 +f 137/306/119 144/305/126 134/304/100 133/307/99 +f 138/308/120 137/306/119 133/307/99 120/167/66 119/309/65 +f 138/308/120 119/309/65 118/310/64 139/311/121 +f 84/142/34 101/229/51 97/133/47 85/136/35 +f 110/156/60 109/223/59 101/229/51 113/232/96 +f 109/223/59 95/226/45 94/290/44 114/234/98 +f 101/229/51 109/223/59 114/234/98 97/133/47 +f 114/234/98 115/233/88 112/248/87 97/133/47 diff --git a/mods/pipeworks/models/pipeworks_pressure_gauge.obj b/mods/pipeworks/models/pipeworks_pressure_gauge.obj new file mode 100644 index 00000000..0dbb4c3e --- /dev/null +++ b/mods/pipeworks/models/pipeworks_pressure_gauge.obj @@ -0,0 +1,7690 @@ +# Blender v2.78 (sub 0) OBJ File: 'pipe-pressure-gauge.blend' +# www.blender.org +o Pipe_Cylinder.002 +v 0.059507 0.306046 -0.132052 +v 0.059507 0.332313 -0.134639 +v 0.059507 0.358580 -0.132052 +v 0.059507 0.383837 -0.124391 +v 0.059507 0.407115 -0.111949 +v 0.059507 0.427517 -0.095205 +v 0.059507 0.444262 -0.074802 +v 0.059508 0.456704 -0.051524 +v 0.059507 0.464365 -0.026267 +v 0.059507 0.466953 -0.000000 +v 0.059508 0.464366 0.026267 +v 0.059507 0.456704 0.051524 +v 0.059507 0.444262 0.074801 +v 0.059507 0.427518 0.095204 +v 0.059507 0.407115 0.111948 +v 0.059508 0.383838 0.124390 +v 0.059508 0.358580 0.132052 +v 0.059508 0.332313 0.134639 +v 0.059508 0.306046 0.132052 +v 0.059508 0.280789 0.124390 +v 0.059507 0.257512 0.111948 +v 0.059507 0.237109 0.095204 +v 0.059507 0.220365 0.074802 +v 0.059507 0.207923 0.051524 +v 0.059508 0.200261 0.026267 +v 0.059507 0.197674 -0.000000 +v 0.059507 0.200261 -0.026267 +v 0.059508 0.207923 -0.051524 +v 0.059507 0.220365 -0.074802 +v 0.059507 0.237109 -0.095204 +v 0.059507 0.257512 -0.111949 +v 0.059507 0.280789 -0.124391 +v -0.038455 0.126770 -0.468750 +v -0.012985 0.131837 -0.468750 +v 0.012984 0.131837 -0.468750 +v 0.038455 0.126770 -0.468750 +v 0.062448 0.116832 -0.468750 +v 0.084041 0.102404 -0.468750 +v 0.102404 0.084041 -0.468750 +v 0.116832 0.062448 -0.468750 +v 0.126770 0.038455 -0.468750 +v 0.131837 0.012985 -0.468750 +v 0.131837 -0.012985 -0.468750 +v 0.116832 -0.062448 -0.468750 +v 0.102404 -0.084041 -0.468750 +v 0.084041 -0.102404 -0.468750 +v 0.062448 -0.116832 -0.468750 +v 0.038455 -0.126770 -0.468750 +v 0.012985 -0.131836 -0.468750 +v -0.012985 -0.131836 -0.468750 +v -0.038455 -0.126770 -0.468750 +v -0.062448 -0.116832 -0.468750 +v -0.102404 -0.084041 -0.468750 +v -0.084041 -0.102404 -0.468750 +v -0.116832 -0.062448 -0.468750 +v -0.126770 -0.038455 -0.468750 +v -0.131836 0.012985 -0.468750 +v -0.116832 0.062448 -0.468750 +v -0.126770 0.038455 -0.468750 +v -0.102404 0.084041 -0.468750 +v -0.084041 0.102404 -0.468750 +v -0.062448 0.116832 -0.468750 +v 0.126770 -0.038455 -0.468750 +v -0.131836 -0.012985 -0.468750 +v -0.059210 0.110774 -0.437501 +v -0.036461 0.120197 -0.437501 +v -0.012312 0.125000 -0.437501 +v 0.012311 0.125001 -0.437501 +v 0.036461 0.120197 -0.437501 +v 0.059210 0.110774 -0.437501 +v 0.079683 0.097094 -0.437501 +v 0.097094 0.079683 -0.437501 +v 0.110774 0.059210 -0.437501 +v 0.120197 0.036461 -0.437501 +v 0.125001 0.012312 -0.437501 +v 0.125000 -0.012311 -0.437501 +v 0.120197 -0.036461 -0.437501 +v 0.110774 -0.059210 -0.437501 +v 0.097094 -0.079683 -0.437501 +v 0.079683 -0.097094 -0.437501 +v 0.059210 -0.110774 -0.437501 +v 0.036461 -0.120197 -0.437501 +v 0.012311 -0.125000 -0.437501 +v -0.012311 -0.125000 -0.437501 +v -0.036461 -0.120197 -0.437501 +v -0.059210 -0.110774 -0.437501 +v -0.079683 -0.097094 -0.437501 +v -0.097094 -0.079683 -0.437501 +v -0.110774 -0.059210 -0.437501 +v -0.120197 -0.036461 -0.437501 +v -0.125000 -0.012311 -0.437501 +v -0.125000 0.012311 -0.437501 +v -0.120197 0.036461 -0.437501 +v -0.110774 0.059210 -0.437501 +v -0.097094 0.079683 -0.437501 +v -0.079683 0.097094 -0.437501 +v 0.120197 0.036461 0.437501 +v 0.125001 0.012312 0.437501 +v 0.125001 -0.012311 0.437501 +v 0.120197 -0.036461 0.437501 +v 0.110774 0.059210 0.437501 +v 0.131837 0.012985 0.468750 +v 0.126770 0.038455 0.468750 +v 0.131837 -0.012985 0.468750 +v 0.110774 -0.059210 0.437501 +v 0.126770 -0.038455 0.468750 +v 0.097094 0.079683 0.437501 +v 0.116832 0.062448 0.468750 +v 0.097094 -0.079683 0.437501 +v 0.116832 -0.062448 0.468750 +v 0.079683 0.097094 0.437501 +v 0.102404 0.084041 0.468750 +v 0.079683 -0.097094 0.437501 +v 0.102404 -0.084041 0.468750 +v 0.059210 0.110774 0.437501 +v 0.084041 0.102404 0.468750 +v 0.059210 -0.110774 0.437501 +v 0.084041 -0.102404 0.468750 +v 0.036461 0.120197 0.437501 +v 0.062448 0.116832 0.468750 +v 0.036461 -0.120197 0.437501 +v 0.062448 -0.116832 0.468750 +v 0.012311 0.125000 0.437501 +v 0.038455 0.126770 0.468750 +v 0.012312 -0.125001 0.437501 +v 0.038455 -0.126770 0.468750 +v -0.012311 0.125000 0.437501 +v 0.012985 0.131836 0.468750 +v -0.012311 -0.125001 0.437501 +v 0.012985 -0.131837 0.468750 +v -0.036461 0.120197 0.437501 +v -0.012985 0.131836 0.468750 +v -0.036461 -0.120197 0.437501 +v -0.012985 -0.131837 0.468750 +v -0.059210 0.110774 0.437501 +v -0.038455 0.126770 0.468750 +v -0.059210 -0.110774 0.437501 +v -0.038455 -0.126770 0.468750 +v -0.079683 0.097094 0.437501 +v -0.062448 0.116832 0.468750 +v -0.079683 -0.097094 0.437501 +v -0.062448 -0.116832 0.468750 +v -0.097094 0.079683 0.437501 +v -0.084041 0.102404 0.468750 +v -0.097094 -0.079683 0.437501 +v -0.084041 -0.102404 0.468750 +v -0.110774 0.059210 0.437501 +v -0.102404 0.084041 0.468750 +v -0.110774 -0.059210 0.437501 +v -0.102404 -0.084041 0.468750 +v -0.120197 0.036461 0.437501 +v -0.116832 0.062448 0.468750 +v -0.120197 -0.036461 0.437501 +v -0.116832 -0.062448 0.468750 +v -0.125000 0.012311 0.437501 +v -0.126770 0.038455 0.468750 +v -0.125000 -0.012311 0.437501 +v -0.126770 -0.038455 0.468750 +v -0.131836 0.012985 0.468750 +v -0.131836 -0.012985 0.468750 +v -0.063644 0.130078 0.460912 +v -0.063644 0.130078 0.468749 +v -0.062466 0.139022 0.468749 +v -0.062466 0.139022 0.460912 +v -0.054132 0.142474 0.460912 +v -0.046976 0.136982 0.460912 +v -0.048153 0.128039 0.460912 +v -0.056487 0.124587 0.460912 +v -0.056487 0.124587 0.468749 +v -0.054132 0.142474 0.468749 +v -0.046976 0.136982 0.468749 +v -0.048153 0.128039 0.468749 +v -0.046976 0.136982 -0.460914 +v -0.046976 0.136982 -0.468751 +v -0.054133 0.142474 -0.468751 +v -0.054133 0.142474 -0.460914 +v -0.062467 0.139022 -0.460914 +v -0.063644 0.130078 -0.460914 +v -0.056487 0.124587 -0.460914 +v -0.048153 0.128039 -0.460914 +v -0.048153 0.128039 -0.468751 +v -0.062467 0.139022 -0.468751 +v -0.063644 0.130078 -0.468751 +v -0.056487 0.124587 -0.468751 +v -0.136982 0.046976 0.460912 +v -0.136982 0.046976 0.468749 +v -0.142474 0.054133 0.468749 +v -0.142474 0.054133 0.460912 +v -0.139022 0.062467 0.460912 +v -0.130078 0.063644 0.460912 +v -0.124587 0.056488 0.460912 +v -0.128039 0.048154 0.460912 +v -0.128039 0.048154 0.468749 +v -0.139022 0.062467 0.468749 +v -0.130078 0.063644 0.468749 +v -0.124587 0.056488 0.468749 +v -0.130078 0.063644 -0.460914 +v -0.130078 0.063644 -0.468751 +v -0.139022 0.062467 -0.468751 +v -0.139022 0.062467 -0.460914 +v -0.142474 0.054133 -0.460914 +v -0.136982 0.046976 -0.460914 +v -0.128039 0.048153 -0.460914 +v -0.124587 0.056487 -0.460914 +v -0.124587 0.056487 -0.468751 +v -0.142474 0.054133 -0.468751 +v -0.136982 0.046976 -0.468751 +v -0.128039 0.048153 -0.468751 +v -0.130078 -0.063644 0.460912 +v -0.130078 -0.063644 0.468749 +v -0.139022 -0.062467 0.468749 +v -0.139022 -0.062467 0.460912 +v -0.142474 -0.054132 0.460912 +v -0.136982 -0.046976 0.460912 +v -0.128039 -0.048153 0.460912 +v -0.124587 -0.056487 0.460912 +v -0.124587 -0.056487 0.468749 +v -0.142474 -0.054132 0.468749 +v -0.136982 -0.046976 0.468749 +v -0.128039 -0.048153 0.468749 +v -0.136982 -0.046976 -0.460914 +v -0.136982 -0.046976 -0.468751 +v -0.142474 -0.054133 -0.468751 +v -0.142474 -0.054133 -0.460914 +v -0.139022 -0.062467 -0.460914 +v -0.130078 -0.063644 -0.460914 +v -0.124587 -0.056488 -0.460914 +v -0.128039 -0.048153 -0.460914 +v -0.128039 -0.048153 -0.468751 +v -0.139022 -0.062467 -0.468751 +v -0.130078 -0.063644 -0.468751 +v -0.124587 -0.056488 -0.468751 +v -0.046976 -0.136982 0.460912 +v -0.046976 -0.136982 0.468749 +v -0.054133 -0.142474 0.468749 +v -0.054133 -0.142474 0.460912 +v -0.062467 -0.139022 0.460912 +v -0.063644 -0.130078 0.460912 +v -0.056487 -0.124587 0.460912 +v -0.048153 -0.128039 0.460912 +v -0.048153 -0.128039 0.468749 +v -0.062467 -0.139022 0.468749 +v -0.063644 -0.130078 0.468749 +v -0.056487 -0.124587 0.468749 +v -0.063644 -0.130078 -0.460914 +v -0.063644 -0.130078 -0.468751 +v -0.062467 -0.139022 -0.468751 +v -0.062467 -0.139022 -0.460914 +v -0.054133 -0.142474 -0.460914 +v -0.046976 -0.136982 -0.460914 +v -0.048153 -0.128039 -0.460914 +v -0.056487 -0.124587 -0.460914 +v -0.056487 -0.124587 -0.468751 +v -0.054133 -0.142474 -0.468751 +v -0.046976 -0.136982 -0.468751 +v -0.048153 -0.128039 -0.468751 +v 0.063644 -0.130078 0.460912 +v 0.063644 -0.130078 0.468749 +v 0.062467 -0.139022 0.468749 +v 0.062467 -0.139022 0.460912 +v 0.054133 -0.142474 0.460912 +v 0.046976 -0.136982 0.460912 +v 0.048153 -0.128039 0.460912 +v 0.056487 -0.124587 0.460912 +v 0.056487 -0.124587 0.468749 +v 0.054133 -0.142474 0.468749 +v 0.046976 -0.136982 0.468749 +v 0.048153 -0.128039 0.468749 +v 0.046976 -0.136982 -0.460914 +v 0.046976 -0.136982 -0.468751 +v 0.054133 -0.142474 -0.468751 +v 0.054133 -0.142474 -0.460914 +v 0.062467 -0.139022 -0.460914 +v 0.063644 -0.130078 -0.460914 +v 0.056488 -0.124587 -0.460914 +v 0.048153 -0.128039 -0.460914 +v 0.048153 -0.128039 -0.468751 +v 0.062467 -0.139022 -0.468751 +v 0.063644 -0.130078 -0.468751 +v 0.056488 -0.124587 -0.468751 +v 0.136982 -0.046976 0.460912 +v 0.136982 -0.046976 0.468749 +v 0.142474 -0.054133 0.468749 +v 0.142474 -0.054133 0.460912 +v 0.139022 -0.062467 0.460912 +v 0.130078 -0.063644 0.460912 +v 0.124587 -0.056488 0.460912 +v 0.128039 -0.048153 0.460912 +v 0.128039 -0.048153 0.468749 +v 0.139022 -0.062467 0.468749 +v 0.130078 -0.063644 0.468749 +v 0.124587 -0.056488 0.468749 +v 0.130078 -0.063644 -0.460914 +v 0.130078 -0.063644 -0.468751 +v 0.139022 -0.062467 -0.468751 +v 0.139022 -0.062467 -0.460914 +v 0.142474 -0.054132 -0.460914 +v 0.136982 -0.046976 -0.460914 +v 0.128039 -0.048153 -0.460914 +v 0.124587 -0.056487 -0.460914 +v 0.124587 -0.056487 -0.468751 +v 0.142474 -0.054132 -0.468751 +v 0.136982 -0.046976 -0.468751 +v 0.128039 -0.048153 -0.468751 +v 0.130078 0.063644 0.460912 +v 0.130078 0.063644 0.468749 +v 0.139022 0.062467 0.468749 +v 0.139022 0.062467 0.460912 +v 0.142474 0.054132 0.460912 +v 0.136982 0.046976 0.460912 +v 0.128039 0.048153 0.460912 +v 0.124587 0.056487 0.460912 +v 0.124587 0.056487 0.468749 +v 0.142474 0.054132 0.468749 +v 0.136982 0.046976 0.468749 +v 0.128039 0.048153 0.468749 +v 0.136982 0.046976 -0.460914 +v 0.136982 0.046976 -0.468751 +v 0.142474 0.054133 -0.468751 +v 0.142474 0.054133 -0.460914 +v 0.139022 0.062467 -0.460914 +v 0.130078 0.063644 -0.460914 +v 0.124587 0.056487 -0.460914 +v 0.128039 0.048153 -0.460914 +v 0.128039 0.048153 -0.468751 +v 0.139022 0.062467 -0.468751 +v 0.130078 0.063644 -0.468751 +v 0.124587 0.056487 -0.468751 +v 0.046976 0.136982 0.460912 +v 0.046976 0.136982 0.468749 +v 0.054133 0.142474 0.468749 +v 0.054133 0.142474 0.460912 +v 0.062467 0.139022 0.460912 +v 0.063644 0.130078 0.460912 +v 0.056488 0.124587 0.460912 +v 0.048154 0.128039 0.460912 +v 0.048154 0.128039 0.468749 +v 0.062467 0.139022 0.468749 +v 0.063644 0.130078 0.468749 +v 0.056488 0.124587 0.468749 +v 0.063644 0.130078 -0.460914 +v 0.063644 0.130078 -0.468751 +v 0.062467 0.139022 -0.468751 +v 0.062467 0.139022 -0.460914 +v 0.054133 0.142474 -0.460914 +v 0.046976 0.136982 -0.460914 +v 0.048153 0.128039 -0.460914 +v 0.056487 0.124587 -0.460914 +v 0.056487 0.124587 -0.468751 +v 0.054133 0.142474 -0.468751 +v 0.046976 0.136982 -0.468751 +v 0.048153 0.128039 -0.468751 +v 0.121367 0.099603 -0.500000 +v 0.138467 0.074012 -0.500000 +v 0.150245 0.045577 -0.500000 +v 0.156250 0.015390 -0.500000 +v 0.156250 -0.015389 -0.500000 +v 0.150245 -0.045576 -0.500000 +v 0.138467 -0.074012 -0.500000 +v 0.121367 -0.099603 -0.500000 +v 0.099603 -0.121367 -0.500000 +v 0.045576 -0.150245 -0.500000 +v -0.015389 -0.156250 -0.500000 +v -0.045576 -0.150245 -0.500000 +v -0.099603 -0.121367 -0.500000 +v -0.121367 -0.099603 -0.500000 +v -0.138467 -0.074012 -0.500000 +v -0.150245 -0.045576 -0.500000 +v -0.156250 -0.015389 -0.500000 +v -0.150245 0.045576 -0.500000 +v -0.138467 0.074012 -0.500000 +v -0.121367 0.099603 -0.500000 +v -0.074012 0.138467 -0.500000 +v -0.015389 0.156250 -0.500000 +v 0.015389 0.156250 -0.500000 +v 0.045576 0.150245 -0.500000 +v 0.074012 0.138467 -0.500000 +v 0.099603 0.121367 -0.500000 +v 0.074012 -0.138466 -0.500000 +v 0.015389 -0.156250 -0.500000 +v -0.074012 -0.138467 -0.500000 +v -0.156250 0.015389 -0.500000 +v -0.099603 0.121367 -0.500000 +v -0.045576 0.150245 -0.500000 +v 0.121367 0.099603 -0.468750 +v 0.099603 0.121367 -0.468750 +v 0.138467 0.074012 -0.468750 +v 0.150245 0.045577 -0.468750 +v 0.156250 0.015390 -0.468750 +v 0.156250 -0.015389 -0.468750 +v 0.150245 -0.045576 -0.468750 +v 0.138467 -0.074012 -0.468750 +v 0.121367 -0.099603 -0.468750 +v 0.099603 -0.121367 -0.468750 +v 0.074012 -0.138466 -0.468750 +v 0.045576 -0.150245 -0.468750 +v 0.015389 -0.156250 -0.468750 +v -0.015389 -0.156250 -0.468750 +v -0.045576 -0.150245 -0.468750 +v -0.074012 -0.138467 -0.468750 +v -0.099603 -0.121367 -0.468750 +v -0.121367 -0.099603 -0.468750 +v -0.138467 -0.074012 -0.468750 +v -0.150245 -0.045576 -0.468750 +v -0.156250 -0.015389 -0.468750 +v -0.156250 0.015389 -0.468750 +v -0.138467 0.074012 -0.468750 +v -0.150245 0.045576 -0.468750 +v -0.121367 0.099603 -0.468750 +v -0.099603 0.121367 -0.468750 +v -0.074012 0.138467 -0.468750 +v -0.045576 0.150245 -0.468750 +v 0.015389 0.156250 -0.468750 +v -0.015389 0.156250 -0.468750 +v 0.045576 0.150245 -0.468750 +v 0.074012 0.138467 -0.468750 +v 0.074012 -0.138466 0.468750 +v 0.045576 -0.150245 0.468750 +v 0.015389 -0.156250 0.468750 +v 0.099603 -0.121367 0.468750 +v -0.015389 -0.156250 0.468750 +v 0.138467 -0.074012 0.468750 +v 0.121367 -0.099603 0.468750 +v 0.099603 -0.121367 0.500000 +v 0.074012 -0.138467 0.500000 +v 0.045576 -0.150245 0.500000 +v 0.015389 -0.156250 0.500000 +v -0.015389 -0.156250 0.500000 +v 0.150245 -0.045576 0.468750 +v 0.121367 -0.099603 0.500000 +v -0.045576 -0.150245 0.468750 +v -0.045576 -0.150245 0.500000 +v 0.156250 -0.015389 0.468750 +v 0.150245 -0.045576 0.500000 +v 0.138467 -0.074012 0.500000 +v -0.074012 -0.138467 0.468750 +v -0.074012 -0.138467 0.500000 +v 0.156250 0.015389 0.468750 +v 0.156250 -0.015389 0.500000 +v -0.099603 -0.121367 0.468750 +v -0.099603 -0.121367 0.500000 +v 0.150245 0.045576 0.468750 +v 0.156250 0.015389 0.500000 +v -0.121367 -0.099603 0.468750 +v -0.121367 -0.099603 0.500000 +v 0.138467 0.074012 0.468750 +v 0.150245 0.045576 0.500000 +v -0.150245 -0.045576 0.468750 +v -0.138467 -0.074012 0.468750 +v -0.138467 -0.074012 0.500000 +v 0.121367 0.099603 0.468750 +v 0.138467 0.074012 0.500000 +v -0.156250 -0.015389 0.468750 +v -0.150245 -0.045576 0.500000 +v 0.099604 0.121367 0.468750 +v 0.121367 0.099603 0.500000 +v -0.156250 0.015389 0.468750 +v -0.156250 -0.015389 0.500000 +v 0.074012 0.138466 0.468750 +v 0.099604 0.121367 0.500000 +v -0.150245 0.045576 0.468750 +v -0.156250 0.015389 0.500000 +v 0.045577 0.150245 0.468750 +v 0.074012 0.138466 0.500000 +v -0.138467 0.074012 0.468750 +v -0.150245 0.045576 0.500000 +v 0.015390 0.156249 0.468750 +v 0.045577 0.150245 0.500000 +v -0.015389 0.156250 0.500000 +v -0.121367 0.099603 0.468750 +v -0.138466 0.074012 0.500000 +v -0.015389 0.156250 0.468750 +v 0.015390 0.156250 0.500000 +v -0.074012 0.138467 0.500000 +v -0.045576 0.150245 0.500000 +v -0.099603 0.121367 0.500000 +v -0.121367 0.099603 0.500000 +v -0.045576 0.150245 0.468750 +v -0.099603 0.121367 0.468750 +v -0.074012 0.138467 0.468750 +v -0.108578 0.095821 0.460912 +v -0.108578 0.095821 0.468749 +v -0.110913 0.104534 0.468749 +v -0.110913 0.104534 0.460912 +v -0.104534 0.110913 0.460912 +v -0.095821 0.108578 0.460912 +v -0.093486 0.099865 0.460912 +v -0.099865 0.093486 0.460912 +v -0.099865 0.093486 0.468749 +v -0.104534 0.110913 0.468749 +v -0.095821 0.108578 0.468749 +v -0.093486 0.099865 0.468749 +v -0.095821 0.108578 -0.460914 +v -0.095821 0.108578 -0.468751 +v -0.104534 0.110913 -0.468751 +v -0.104534 0.110913 -0.460914 +v -0.110913 0.104534 -0.460914 +v -0.108578 0.095821 -0.460914 +v -0.099865 0.093486 -0.460914 +v -0.093486 0.099865 -0.460914 +v -0.093486 0.099865 -0.468751 +v -0.110913 0.104534 -0.468751 +v -0.108578 0.095821 -0.468751 +v -0.099865 0.093486 -0.468751 +v -0.144532 -0.009021 0.460912 +v -0.144532 -0.009021 0.468749 +v -0.152344 -0.004510 0.468749 +v -0.152344 -0.004510 0.460912 +v -0.152344 0.004510 0.460912 +v -0.144532 0.009021 0.460912 +v -0.136720 0.004510 0.460912 +v -0.136720 -0.004510 0.460912 +v -0.136720 -0.004510 0.468749 +v -0.152344 0.004510 0.468749 +v -0.144532 0.009021 0.468749 +v -0.136720 0.004510 0.468749 +v -0.144532 0.009021 -0.460914 +v -0.144532 0.009021 -0.468751 +v -0.152344 0.004510 -0.468751 +v -0.152344 0.004510 -0.460914 +v -0.152344 -0.004510 -0.460914 +v -0.144532 -0.009021 -0.460914 +v -0.136720 -0.004510 -0.460914 +v -0.136720 0.004510 -0.460914 +v -0.136720 0.004510 -0.468751 +v -0.152344 -0.004510 -0.468751 +v -0.144532 -0.009021 -0.468751 +v -0.136720 -0.004510 -0.468751 +v -0.095821 -0.108578 0.460912 +v -0.095821 -0.108578 0.468749 +v -0.104534 -0.110913 0.468749 +v -0.104534 -0.110913 0.460912 +v -0.110913 -0.104534 0.460912 +v -0.108578 -0.095821 0.460912 +v -0.099865 -0.093486 0.460912 +v -0.093486 -0.099865 0.460912 +v -0.093486 -0.099865 0.468749 +v -0.110913 -0.104534 0.468749 +v -0.108578 -0.095821 0.468749 +v -0.099865 -0.093486 0.468749 +v -0.108578 -0.095821 -0.460914 +v -0.108578 -0.095821 -0.468751 +v -0.110913 -0.104534 -0.468751 +v -0.110913 -0.104534 -0.460914 +v -0.104534 -0.110913 -0.460914 +v -0.095821 -0.108578 -0.460914 +v -0.093486 -0.099865 -0.460914 +v -0.099865 -0.093486 -0.460914 +v -0.099865 -0.093486 -0.468751 +v -0.104534 -0.110913 -0.468751 +v -0.095821 -0.108578 -0.468751 +v -0.093486 -0.099865 -0.468751 +v 0.009021 -0.144532 0.460912 +v 0.009021 -0.144532 0.468749 +v 0.004510 -0.152344 0.468749 +v 0.004510 -0.152344 0.460912 +v -0.004510 -0.152344 0.460912 +v -0.009021 -0.144532 0.460912 +v -0.004510 -0.136720 0.460912 +v 0.004510 -0.136720 0.460912 +v 0.004510 -0.136720 0.468749 +v -0.004510 -0.152344 0.468749 +v -0.009021 -0.144532 0.468749 +v -0.004510 -0.136720 0.468749 +v -0.009021 -0.144532 -0.460914 +v -0.009021 -0.144532 -0.468751 +v -0.004510 -0.152344 -0.468751 +v -0.004510 -0.152344 -0.460914 +v 0.004510 -0.152344 -0.460914 +v 0.009021 -0.144532 -0.460914 +v 0.004510 -0.136720 -0.460914 +v -0.004510 -0.136720 -0.460914 +v -0.004510 -0.136720 -0.468751 +v 0.004510 -0.152344 -0.468751 +v 0.009021 -0.144532 -0.468751 +v 0.004510 -0.136720 -0.468751 +v 0.108578 -0.095821 0.460912 +v 0.108578 -0.095821 0.468749 +v 0.110913 -0.104534 0.468749 +v 0.110913 -0.104534 0.460912 +v 0.104534 -0.110913 0.460912 +v 0.095821 -0.108578 0.460912 +v 0.093486 -0.099865 0.460912 +v 0.099865 -0.093486 0.460912 +v 0.099865 -0.093486 0.468749 +v 0.104534 -0.110913 0.468749 +v 0.095821 -0.108578 0.468749 +v 0.093486 -0.099865 0.468749 +v 0.095821 -0.108578 -0.460914 +v 0.095821 -0.108578 -0.468751 +v 0.104534 -0.110913 -0.468751 +v 0.104534 -0.110913 -0.460914 +v 0.110913 -0.104534 -0.460914 +v 0.108578 -0.095821 -0.460914 +v 0.099865 -0.093486 -0.460914 +v 0.093486 -0.099865 -0.460914 +v 0.093486 -0.099865 -0.468751 +v 0.110913 -0.104534 -0.468751 +v 0.108578 -0.095821 -0.468751 +v 0.099865 -0.093486 -0.468751 +v 0.144532 0.009021 0.460912 +v 0.144532 0.009021 0.468749 +v 0.152344 0.004510 0.468749 +v 0.152344 0.004510 0.460912 +v 0.152344 -0.004510 0.460912 +v 0.144532 -0.009021 0.460912 +v 0.136720 -0.004510 0.460912 +v 0.136720 0.004510 0.460912 +v 0.136720 0.004510 0.468749 +v 0.152344 -0.004510 0.468749 +v 0.144532 -0.009021 0.468749 +v 0.136720 -0.004510 0.468749 +v 0.144532 -0.009021 -0.460914 +v 0.144532 -0.009021 -0.468751 +v 0.152344 -0.004510 -0.468751 +v 0.152344 -0.004510 -0.460914 +v 0.152344 0.004510 -0.460914 +v 0.144532 0.009021 -0.460914 +v 0.136720 0.004510 -0.460914 +v 0.136720 -0.004510 -0.460914 +v 0.136720 -0.004510 -0.468751 +v 0.152344 0.004510 -0.468751 +v 0.144532 0.009021 -0.468751 +v 0.136720 0.004510 -0.468751 +v 0.095821 0.108578 0.460912 +v 0.095821 0.108578 0.468749 +v 0.104535 0.110913 0.468749 +v 0.104534 0.110913 0.460912 +v 0.110913 0.104534 0.460912 +v 0.108578 0.095821 0.460912 +v 0.099865 0.093486 0.460912 +v 0.093486 0.099865 0.460912 +v 0.093486 0.099865 0.468749 +v 0.110913 0.104534 0.468749 +v 0.108578 0.095821 0.468749 +v 0.099865 0.093486 0.468749 +v 0.108578 0.095821 -0.460914 +v 0.108578 0.095821 -0.468751 +v 0.110913 0.104534 -0.468751 +v 0.110913 0.104534 -0.460914 +v 0.104534 0.110913 -0.460914 +v 0.095821 0.108578 -0.460914 +v 0.093486 0.099865 -0.460914 +v 0.099865 0.093486 -0.460914 +v 0.099865 0.093486 -0.468751 +v 0.104534 0.110913 -0.468751 +v 0.095821 0.108578 -0.468751 +v 0.093486 0.099865 -0.468751 +v -0.009021 0.144532 0.460912 +v -0.009021 0.144532 0.468749 +v -0.004510 0.152344 0.468749 +v -0.004510 0.152344 0.460912 +v 0.004511 0.152344 0.460912 +v 0.009021 0.144532 0.460912 +v 0.004511 0.136720 0.460912 +v -0.004510 0.136720 0.460912 +v -0.004510 0.136720 0.468749 +v 0.004511 0.152344 0.468749 +v 0.009021 0.144532 0.468749 +v 0.004511 0.136720 0.468749 +v 0.009021 0.144532 -0.460914 +v 0.009021 0.144532 -0.468751 +v 0.004510 0.152344 -0.468751 +v 0.004510 0.152344 -0.460914 +v -0.004510 0.152344 -0.460914 +v -0.009021 0.144532 -0.460914 +v -0.004510 0.136720 -0.460914 +v 0.004510 0.136720 -0.460914 +v 0.004510 0.136720 -0.468751 +v -0.004510 0.152344 -0.468751 +v -0.009021 0.144532 -0.468751 +v -0.004510 0.136720 -0.468751 +v -0.067320 0.462058 -0.086693 +v -0.067320 0.442651 -0.110339 +v -0.067320 0.301871 -0.153043 +v -0.067320 0.272599 -0.144164 +v -0.067320 0.221975 0.110338 +v -0.067320 0.245622 0.129743 +v -0.067320 0.442652 0.110338 +v -0.067320 0.485357 0.030442 +v -0.067320 0.488356 0.000000 +v -0.067320 0.188150 0.059714 +v -0.067320 0.188150 -0.059714 +v -0.067320 0.362755 0.153043 +v -0.067320 0.419006 0.129743 +v -0.067320 0.419006 -0.129745 +v -0.067320 0.179270 0.030442 +v -0.067320 0.202570 -0.086693 +v -0.067320 0.476477 -0.059714 +v -0.067320 0.202570 0.086693 +v -0.067320 0.392027 -0.144164 +v -0.067320 0.362755 -0.153043 +v -0.067320 0.179270 -0.030442 +v -0.067320 0.245622 -0.129745 +v -0.067320 0.301871 0.153043 +v -0.067320 0.332313 0.156041 +v -0.067320 0.476477 0.059714 +v -0.067320 0.392028 0.144163 +v -0.067320 0.176272 0.000000 +v -0.067320 0.221975 -0.110338 +v -0.067320 0.272599 0.144164 +v -0.067320 0.332313 -0.156041 +v -0.067320 0.485357 -0.030442 +v -0.067320 0.462058 0.086693 +v 0.054059 0.221975 0.110338 +v 0.068130 0.233973 0.098340 +v 0.059213 0.222562 0.109751 +v 0.063558 0.224267 0.108046 +v 0.066671 0.226921 0.105392 +v 0.068246 0.230265 0.102048 +v 0.068130 0.255048 0.115636 +v 0.054059 0.245622 0.129743 +v 0.068246 0.252135 0.119995 +v 0.066671 0.249507 0.123928 +v 0.063558 0.247422 0.127049 +v 0.059213 0.246083 0.129053 +v 0.054059 0.188150 0.059714 +v 0.068130 0.203825 0.053221 +v 0.059213 0.188917 0.059397 +v 0.063558 0.191144 0.058474 +v 0.066671 0.194611 0.057038 +v 0.068246 0.198981 0.055228 +v 0.068130 0.216677 0.077266 +v 0.054059 0.202570 0.086693 +v 0.068246 0.212318 0.080179 +v 0.066671 0.208385 0.082807 +v 0.063558 0.205264 0.084892 +v 0.059213 0.203260 0.086231 +v 0.054059 0.179270 -0.030442 +v 0.068130 0.195911 -0.027132 +v 0.059213 0.180084 -0.030280 +v 0.063558 0.182448 -0.029810 +v 0.066671 0.186129 -0.029078 +v 0.068246 0.190768 -0.028155 +v 0.068130 0.193239 -0.000000 +v 0.054059 0.176272 0.000000 +v 0.068246 0.187996 0.000000 +v 0.066671 0.183266 0.000000 +v 0.063558 0.179512 0.000000 +v 0.059213 0.177102 0.000000 +v 0.054059 0.332313 0.156041 +v 0.068130 0.332313 0.139074 +v 0.059213 0.332313 0.155211 +v 0.063558 0.332313 0.152801 +v 0.066671 0.332313 0.149047 +v 0.068246 0.332313 0.144317 +v 0.068130 0.359445 0.136402 +v 0.054059 0.362755 0.153043 +v 0.068246 0.360468 0.141544 +v 0.066671 0.361391 0.146183 +v 0.063558 0.362123 0.149865 +v 0.059213 0.362593 0.152229 +v 0.054059 0.442651 -0.110339 +v 0.068130 0.430653 -0.098341 +v 0.059213 0.442063 -0.109752 +v 0.063558 0.440359 -0.108048 +v 0.066671 0.437705 -0.105393 +v 0.068246 0.434361 -0.102049 +v 0.068130 0.409579 -0.115637 +v 0.054059 0.419006 -0.129745 +v 0.068246 0.412492 -0.119996 +v 0.066671 0.415120 -0.123929 +v 0.063558 0.417205 -0.127050 +v 0.059213 0.418544 -0.129054 +v 0.054059 0.245622 -0.129745 +v 0.068130 0.255048 -0.115637 +v 0.059213 0.246083 -0.129054 +v 0.063558 0.247422 -0.127050 +v 0.066671 0.249507 -0.123929 +v 0.068246 0.252135 -0.119996 +v 0.068130 0.233973 -0.098340 +v 0.054059 0.221975 -0.110338 +v 0.068246 0.230265 -0.102048 +v 0.066671 0.226921 -0.105392 +v 0.063558 0.224267 -0.108046 +v 0.059213 0.222562 -0.109751 +v 0.054059 0.485356 -0.030442 +v 0.068130 0.468715 -0.027132 +v 0.059213 0.484542 -0.030280 +v 0.063558 0.482178 -0.029810 +v 0.066671 0.478496 -0.029078 +v 0.068246 0.473858 -0.028155 +v 0.068130 0.460802 -0.053221 +v 0.054059 0.476477 -0.059714 +v 0.068246 0.465646 -0.055228 +v 0.066671 0.470016 -0.057038 +v 0.063558 0.473484 -0.058474 +v 0.059213 0.475710 -0.059397 +v 0.068130 0.430654 0.098340 +v 0.054059 0.442652 0.110338 +v 0.068246 0.434362 0.102048 +v 0.066671 0.437706 0.105392 +v 0.063558 0.440361 0.108046 +v 0.059213 0.442065 0.109751 +v 0.054059 0.462058 0.086692 +v 0.068130 0.447950 0.077265 +v 0.059213 0.461367 0.086230 +v 0.063558 0.459363 0.084891 +v 0.066671 0.456242 0.082806 +v 0.068246 0.452309 0.080178 +v 0.068130 0.460802 0.053221 +v 0.054059 0.476477 0.059714 +v 0.068246 0.465646 0.055228 +v 0.066671 0.470016 0.057038 +v 0.063558 0.473484 0.058474 +v 0.059213 0.475710 0.059397 +v 0.068130 0.471388 -0.000000 +v 0.054059 0.488356 0.000000 +v 0.068246 0.476632 -0.000000 +v 0.066671 0.481361 -0.000000 +v 0.063558 0.485115 0.000000 +v 0.059213 0.487525 0.000000 +v 0.068130 0.385535 0.128488 +v 0.054059 0.392028 0.144163 +v 0.068246 0.387542 0.133332 +v 0.066671 0.389352 0.137702 +v 0.063558 0.390788 0.141169 +v 0.059213 0.391711 0.143396 +v 0.054059 0.188150 -0.059714 +v 0.068130 0.203825 -0.053221 +v 0.059213 0.188917 -0.059397 +v 0.063558 0.191144 -0.058474 +v 0.066671 0.194611 -0.057038 +v 0.068246 0.198981 -0.055228 +v 0.068130 0.332313 -0.139074 +v 0.054059 0.332313 -0.156041 +v 0.068246 0.332313 -0.144317 +v 0.066671 0.332313 -0.149047 +v 0.063558 0.332313 -0.152801 +v 0.059213 0.332313 -0.155211 +v 0.054059 0.362755 -0.153043 +v 0.068130 0.359445 -0.136402 +v 0.059213 0.362593 -0.152229 +v 0.063558 0.362123 -0.149865 +v 0.066671 0.361391 -0.146183 +v 0.068246 0.360468 -0.141544 +v 0.068130 0.279092 0.128488 +v 0.054059 0.272599 0.144163 +v 0.068246 0.277085 0.133332 +v 0.066671 0.275275 0.137702 +v 0.063558 0.273839 0.141170 +v 0.059213 0.272916 0.143396 +v 0.068130 0.468716 0.027132 +v 0.054059 0.485357 0.030442 +v 0.068246 0.473859 0.028155 +v 0.066671 0.478498 0.029078 +v 0.063558 0.482179 0.029810 +v 0.059213 0.484543 0.030280 +v 0.054059 0.272599 -0.144164 +v 0.068130 0.279092 -0.128489 +v 0.059213 0.272916 -0.143397 +v 0.063558 0.273839 -0.141171 +v 0.066671 0.275275 -0.137703 +v 0.068246 0.277085 -0.133333 +v 0.068130 0.385534 -0.128489 +v 0.054059 0.392027 -0.144164 +v 0.068246 0.387541 -0.133333 +v 0.066671 0.389351 -0.137703 +v 0.063558 0.390787 -0.141171 +v 0.059213 0.391710 -0.143397 +v 0.068130 0.409579 0.115636 +v 0.054059 0.419006 0.129743 +v 0.068246 0.412492 0.119995 +v 0.066671 0.415120 0.123928 +v 0.063558 0.417205 0.127049 +v 0.059213 0.418544 0.129053 +v 0.054059 0.301871 -0.153043 +v 0.068130 0.305181 -0.136402 +v 0.059213 0.302033 -0.152229 +v 0.063558 0.302503 -0.149865 +v 0.066671 0.303235 -0.146183 +v 0.068246 0.304158 -0.141544 +v 0.068130 0.305181 0.136402 +v 0.054059 0.301871 0.153043 +v 0.068246 0.304158 0.141544 +v 0.066671 0.303235 0.146183 +v 0.063558 0.302503 0.149865 +v 0.059213 0.302033 0.152229 +v 0.054059 0.179270 0.030442 +v 0.068130 0.195911 0.027132 +v 0.059213 0.180084 0.030280 +v 0.063558 0.182448 0.029810 +v 0.066671 0.186129 0.029078 +v 0.068246 0.190768 0.028155 +v 0.054059 0.202570 -0.086693 +v 0.068130 0.216677 -0.077266 +v 0.059213 0.203260 -0.086231 +v 0.063558 0.205264 -0.084892 +v 0.066671 0.208385 -0.082807 +v 0.068246 0.212318 -0.080179 +v 0.068130 0.447950 -0.077266 +v 0.054059 0.462058 -0.086693 +v 0.068246 0.452309 -0.080179 +v 0.066671 0.456242 -0.082807 +v 0.063558 0.459363 -0.084892 +v 0.059213 0.461367 -0.086231 +v -0.006370 0.145781 0.043789 +v -0.025121 0.145781 0.036022 +v -0.036022 0.145781 0.025121 +v -0.043789 0.145781 0.006370 +v 0.043789 0.145781 0.006370 +v 0.036022 0.145781 0.025121 +v 0.025121 0.145781 0.036022 +v 0.006370 0.145781 0.043789 +v 0.006370 0.145781 -0.043789 +v 0.025121 0.145781 -0.036022 +v 0.036022 0.145781 -0.025121 +v 0.043789 0.145781 -0.006370 +v -0.043789 0.145781 -0.006370 +v -0.036022 0.145781 -0.025121 +v -0.025121 0.145781 -0.036022 +v -0.006370 0.145781 -0.043789 +v 0.006370 0.205781 0.043789 +v 0.025121 0.205781 0.036022 +v 0.036022 0.205781 0.025121 +v 0.043789 0.205781 0.006370 +v -0.043789 0.205781 0.006370 +v -0.036022 0.205781 0.025121 +v -0.025121 0.205781 0.036022 +v -0.006370 0.205781 0.043789 +v -0.006370 0.205781 -0.043789 +v -0.025121 0.205781 -0.036022 +v -0.036022 0.205781 -0.025121 +v -0.043789 0.205781 -0.006370 +v 0.043789 0.205781 -0.006370 +v 0.036022 0.205781 -0.025121 +v 0.025121 0.205781 -0.036022 +v 0.006370 0.205781 -0.043789 +v -0.008343 0.156250 0.064591 +v -0.007057 0.110420 0.143970 +v -0.007425 0.123508 0.134806 +v -0.007742 0.134806 0.123508 +v -0.007999 0.143970 0.110420 +v -0.008188 0.150722 0.095940 +v -0.008304 0.154857 0.080507 +v -0.156250 0.008343 0.064591 +v -0.110420 0.007057 0.143970 +v -0.123508 0.007425 0.134806 +v -0.134806 0.007742 0.123508 +v -0.143970 0.007999 0.110420 +v -0.150722 0.008188 0.095940 +v -0.154857 0.008304 0.080507 +v -0.024904 0.155320 0.064591 +v -0.019764 0.109707 0.143970 +v -0.021232 0.122733 0.134806 +v -0.022499 0.133977 0.123508 +v -0.023526 0.143098 0.110420 +v -0.024284 0.149818 0.095940 +v -0.024747 0.153934 0.080507 +v -0.041256 0.152542 0.064591 +v -0.031042 0.107791 0.143970 +v -0.033958 0.120571 0.134806 +v -0.036476 0.131602 0.123508 +v -0.038519 0.140551 0.110420 +v -0.040024 0.147144 0.095940 +v -0.040945 0.151182 0.080507 +v -0.057194 0.147950 0.064591 +v -0.042033 0.104624 0.143970 +v -0.046363 0.116997 0.134806 +v -0.050100 0.127677 0.123508 +v -0.053132 0.136341 0.110420 +v -0.055365 0.142724 0.095940 +v -0.056733 0.146634 0.080507 +v -0.072518 0.141603 0.064591 +v -0.052602 0.100247 0.143970 +v -0.058289 0.112057 0.134806 +v -0.063199 0.122252 0.123508 +v -0.067181 0.130521 0.110420 +v -0.070115 0.136614 0.095940 +v -0.071912 0.140346 0.080507 +v -0.087034 0.133579 0.064591 +v -0.062613 0.094713 0.143970 +v -0.069587 0.105813 0.134806 +v -0.075607 0.115394 0.123508 +v -0.080491 0.123165 0.110420 +v -0.084089 0.128892 0.095940 +v -0.086292 0.132399 0.080507 +v -0.100562 0.123981 0.064591 +v -0.071942 0.088094 0.143970 +v -0.080115 0.098343 0.134806 +v -0.087170 0.107189 0.123508 +v -0.092893 0.114365 0.110420 +v -0.097110 0.119653 0.095940 +v -0.099692 0.122891 0.080507 +v -0.112929 0.112929 0.064591 +v -0.080472 0.080472 0.143970 +v -0.089741 0.089741 0.134806 +v -0.097742 0.097742 0.123508 +v -0.104232 0.104232 0.110420 +v -0.109014 0.109014 0.095940 +v -0.111943 0.111943 0.080507 +v -0.123981 0.100562 0.064591 +v -0.088094 0.071942 0.143970 +v -0.098343 0.080115 0.134806 +v -0.107189 0.087170 0.123508 +v -0.114365 0.092893 0.110420 +v -0.119653 0.097110 0.095940 +v -0.122891 0.099692 0.080507 +v -0.133579 0.087034 0.064591 +v -0.094713 0.062613 0.143970 +v -0.105813 0.069587 0.134806 +v -0.115394 0.075607 0.123508 +v -0.123165 0.080491 0.110420 +v -0.128892 0.084089 0.095940 +v -0.132399 0.086292 0.080507 +v -0.141603 0.072518 0.064591 +v -0.100247 0.052602 0.143970 +v -0.112057 0.058289 0.134806 +v -0.122252 0.063199 0.123508 +v -0.130521 0.067181 0.110420 +v -0.136614 0.070115 0.095940 +v -0.140346 0.071912 0.080507 +v -0.147950 0.057194 0.064591 +v -0.104624 0.042033 0.143970 +v -0.116997 0.046363 0.134806 +v -0.127677 0.050100 0.123508 +v -0.136341 0.053132 0.110420 +v -0.142724 0.055365 0.095940 +v -0.146634 0.056733 0.080507 +v -0.152542 0.041256 0.064591 +v -0.107791 0.031041 0.143970 +v -0.120571 0.033958 0.134806 +v -0.131602 0.036476 0.123508 +v -0.140551 0.038519 0.110420 +v -0.147144 0.040024 0.095940 +v -0.151182 0.040945 0.080507 +v -0.155320 0.024904 0.064591 +v -0.109707 0.019764 0.143970 +v -0.122733 0.021232 0.134806 +v -0.133977 0.022499 0.123508 +v -0.143098 0.023526 0.110420 +v -0.149818 0.024284 0.095940 +v -0.153934 0.024747 0.080507 +v -0.156250 0.008343 -0.064591 +v -0.110420 0.007057 -0.143970 +v -0.123508 0.007425 -0.134806 +v -0.134806 0.007742 -0.123508 +v -0.143970 0.007999 -0.110420 +v -0.150722 0.008188 -0.095940 +v -0.154858 0.008304 -0.080507 +v -0.008343 0.156250 -0.064591 +v -0.007057 0.110420 -0.143970 +v -0.007425 0.123508 -0.134806 +v -0.007742 0.134806 -0.123508 +v -0.007999 0.143970 -0.110420 +v -0.008188 0.150722 -0.095940 +v -0.008304 0.154857 -0.080507 +v -0.155320 0.024904 -0.064591 +v -0.109707 0.019764 -0.143970 +v -0.122733 0.021232 -0.134806 +v -0.133977 0.022499 -0.123508 +v -0.143098 0.023526 -0.110420 +v -0.149818 0.024284 -0.095940 +v -0.153934 0.024747 -0.080507 +v -0.152542 0.041256 -0.064591 +v -0.107791 0.031042 -0.143970 +v -0.120571 0.033958 -0.134806 +v -0.131602 0.036476 -0.123508 +v -0.140551 0.038519 -0.110420 +v -0.147144 0.040024 -0.095940 +v -0.151182 0.040945 -0.080507 +v -0.147950 0.057194 -0.064591 +v -0.104624 0.042033 -0.143970 +v -0.116997 0.046363 -0.134806 +v -0.127677 0.050100 -0.123508 +v -0.136341 0.053132 -0.110420 +v -0.142724 0.055365 -0.095940 +v -0.146634 0.056733 -0.080507 +v -0.141603 0.072518 -0.064591 +v -0.100247 0.052602 -0.143970 +v -0.112057 0.058289 -0.134806 +v -0.122252 0.063199 -0.123508 +v -0.130521 0.067181 -0.110420 +v -0.136614 0.070115 -0.095940 +v -0.140346 0.071912 -0.080507 +v -0.133579 0.087034 -0.064591 +v -0.094713 0.062613 -0.143970 +v -0.105813 0.069587 -0.134806 +v -0.115394 0.075607 -0.123508 +v -0.123165 0.080491 -0.110420 +v -0.128892 0.084089 -0.095940 +v -0.132399 0.086292 -0.080507 +v -0.123981 0.100562 -0.064591 +v -0.088094 0.071942 -0.143970 +v -0.098343 0.080115 -0.134806 +v -0.107189 0.087170 -0.123508 +v -0.114365 0.092893 -0.110420 +v -0.119653 0.097110 -0.095940 +v -0.122891 0.099692 -0.080507 +v -0.112929 0.112929 -0.064591 +v -0.080472 0.080472 -0.143970 +v -0.089741 0.089741 -0.134806 +v -0.097742 0.097742 -0.123508 +v -0.104232 0.104232 -0.110420 +v -0.109014 0.109014 -0.095940 +v -0.111943 0.111943 -0.080507 +v -0.100562 0.123981 -0.064591 +v -0.071942 0.088094 -0.143970 +v -0.080115 0.098343 -0.134806 +v -0.087170 0.107189 -0.123508 +v -0.092893 0.114365 -0.110420 +v -0.097110 0.119653 -0.095940 +v -0.099692 0.122891 -0.080507 +v -0.087034 0.133579 -0.064591 +v -0.062613 0.094713 -0.143970 +v -0.069587 0.105813 -0.134806 +v -0.075607 0.115394 -0.123508 +v -0.080491 0.123165 -0.110420 +v -0.084089 0.128892 -0.095940 +v -0.086292 0.132399 -0.080507 +v -0.072518 0.141603 -0.064591 +v -0.052602 0.100247 -0.143970 +v -0.058289 0.112057 -0.134806 +v -0.063199 0.122252 -0.123508 +v -0.067181 0.130521 -0.110420 +v -0.070115 0.136614 -0.095940 +v -0.071912 0.140346 -0.080507 +v -0.057194 0.147950 -0.064591 +v -0.042033 0.104624 -0.143970 +v -0.046363 0.116997 -0.134806 +v -0.050100 0.127677 -0.123508 +v -0.053132 0.136341 -0.110420 +v -0.055365 0.142724 -0.095940 +v -0.056733 0.146634 -0.080507 +v -0.041256 0.152542 -0.064591 +v -0.031041 0.107791 -0.143970 +v -0.033958 0.120570 -0.134806 +v -0.036476 0.131602 -0.123508 +v -0.038519 0.140551 -0.110420 +v -0.040024 0.147144 -0.095940 +v -0.040945 0.151182 -0.080507 +v -0.024904 0.155320 -0.064591 +v -0.019764 0.109707 -0.143970 +v -0.021232 0.122733 -0.134806 +v -0.022499 0.133977 -0.123508 +v -0.023526 0.143098 -0.110420 +v -0.024284 0.149818 -0.095940 +v -0.024747 0.153934 -0.080507 +v -0.008343 -0.156250 -0.064591 +v -0.007057 -0.110420 -0.143970 +v -0.007425 -0.123508 -0.134806 +v -0.007742 -0.134806 -0.123508 +v -0.007999 -0.143970 -0.110420 +v -0.008188 -0.150722 -0.095940 +v -0.008304 -0.154857 -0.080507 +v -0.156250 -0.008343 -0.064591 +v -0.110420 -0.007057 -0.143970 +v -0.123508 -0.007425 -0.134806 +v -0.134806 -0.007742 -0.123508 +v -0.143970 -0.007999 -0.110420 +v -0.150722 -0.008188 -0.095940 +v -0.154857 -0.008304 -0.080507 +v -0.024904 -0.155320 -0.064591 +v -0.019764 -0.109707 -0.143970 +v -0.021232 -0.122733 -0.134806 +v -0.022499 -0.133977 -0.123508 +v -0.023526 -0.143098 -0.110420 +v -0.024284 -0.149818 -0.095940 +v -0.024747 -0.153934 -0.080507 +v -0.041256 -0.152542 -0.064591 +v -0.031042 -0.107791 -0.143970 +v -0.033958 -0.120571 -0.134806 +v -0.036476 -0.131602 -0.123508 +v -0.038519 -0.140551 -0.110420 +v -0.040024 -0.147144 -0.095940 +v -0.040945 -0.151182 -0.080507 +v -0.057194 -0.147950 -0.064591 +v -0.042033 -0.104624 -0.143970 +v -0.046363 -0.116997 -0.134806 +v -0.050100 -0.127677 -0.123508 +v -0.053132 -0.136341 -0.110420 +v -0.055365 -0.142724 -0.095940 +v -0.056733 -0.146634 -0.080507 +v -0.072518 -0.141603 -0.064591 +v -0.052602 -0.100247 -0.143970 +v -0.058289 -0.112057 -0.134806 +v -0.063199 -0.122252 -0.123508 +v -0.067181 -0.130521 -0.110420 +v -0.070115 -0.136614 -0.095940 +v -0.071912 -0.140346 -0.080507 +v -0.087034 -0.133579 -0.064591 +v -0.062613 -0.094713 -0.143970 +v -0.069587 -0.105813 -0.134806 +v -0.075607 -0.115394 -0.123508 +v -0.080491 -0.123165 -0.110420 +v -0.084089 -0.128892 -0.095940 +v -0.086292 -0.132399 -0.080507 +v -0.100562 -0.123981 -0.064591 +v -0.071942 -0.088094 -0.143970 +v -0.080115 -0.098343 -0.134806 +v -0.087170 -0.107189 -0.123508 +v -0.092893 -0.114365 -0.110420 +v -0.097110 -0.119653 -0.095940 +v -0.099692 -0.122891 -0.080507 +v -0.112929 -0.112929 -0.064591 +v -0.080472 -0.080472 -0.143970 +v -0.089741 -0.089741 -0.134806 +v -0.097742 -0.097742 -0.123508 +v -0.104232 -0.104232 -0.110420 +v -0.109014 -0.109014 -0.095940 +v -0.111943 -0.111943 -0.080507 +v -0.123981 -0.100562 -0.064591 +v -0.088094 -0.071942 -0.143970 +v -0.098343 -0.080115 -0.134806 +v -0.107189 -0.087170 -0.123508 +v -0.114365 -0.092893 -0.110420 +v -0.119653 -0.097110 -0.095940 +v -0.122891 -0.099692 -0.080507 +v -0.133579 -0.087034 -0.064591 +v -0.094713 -0.062613 -0.143970 +v -0.105813 -0.069587 -0.134806 +v -0.115394 -0.075607 -0.123508 +v -0.123165 -0.080491 -0.110420 +v -0.128892 -0.084089 -0.095940 +v -0.132399 -0.086292 -0.080507 +v -0.141603 -0.072518 -0.064591 +v -0.100247 -0.052602 -0.143970 +v -0.112057 -0.058289 -0.134806 +v -0.122252 -0.063199 -0.123508 +v -0.130521 -0.067181 -0.110420 +v -0.136614 -0.070115 -0.095940 +v -0.140346 -0.071912 -0.080507 +v -0.147950 -0.057194 -0.064591 +v -0.104624 -0.042033 -0.143970 +v -0.116997 -0.046363 -0.134806 +v -0.127677 -0.050100 -0.123508 +v -0.136341 -0.053132 -0.110420 +v -0.142724 -0.055365 -0.095940 +v -0.146634 -0.056733 -0.080507 +v -0.152542 -0.041256 -0.064591 +v -0.107791 -0.031041 -0.143970 +v -0.120571 -0.033958 -0.134806 +v -0.131602 -0.036476 -0.123508 +v -0.140551 -0.038519 -0.110420 +v -0.147144 -0.040024 -0.095940 +v -0.151182 -0.040945 -0.080507 +v -0.155320 -0.024904 -0.064591 +v -0.109707 -0.019764 -0.143970 +v -0.122733 -0.021232 -0.134806 +v -0.133977 -0.022499 -0.123508 +v -0.143098 -0.023526 -0.110420 +v -0.149818 -0.024284 -0.095940 +v -0.153934 -0.024747 -0.080507 +v -0.156250 -0.008343 0.064591 +v -0.110420 -0.007057 0.143970 +v -0.123508 -0.007425 0.134806 +v -0.134806 -0.007742 0.123508 +v -0.143970 -0.007999 0.110420 +v -0.150722 -0.008188 0.095940 +v -0.154858 -0.008304 0.080507 +v -0.008343 -0.156250 0.064591 +v -0.007057 -0.110420 0.143970 +v -0.007425 -0.123508 0.134806 +v -0.007742 -0.134806 0.123508 +v -0.007999 -0.143970 0.110420 +v -0.008188 -0.150722 0.095940 +v -0.008304 -0.154857 0.080507 +v -0.155320 -0.024904 0.064591 +v -0.109707 -0.019764 0.143970 +v -0.122733 -0.021232 0.134806 +v -0.133977 -0.022499 0.123508 +v -0.143098 -0.023526 0.110420 +v -0.149818 -0.024284 0.095940 +v -0.153934 -0.024747 0.080507 +v -0.152542 -0.041256 0.064591 +v -0.107791 -0.031042 0.143970 +v -0.120571 -0.033958 0.134806 +v -0.131602 -0.036476 0.123508 +v -0.140551 -0.038519 0.110420 +v -0.147144 -0.040024 0.095940 +v -0.151182 -0.040945 0.080507 +v -0.147950 -0.057194 0.064591 +v -0.104624 -0.042033 0.143970 +v -0.116997 -0.046363 0.134806 +v -0.127677 -0.050100 0.123508 +v -0.136341 -0.053132 0.110420 +v -0.142724 -0.055365 0.095940 +v -0.146634 -0.056733 0.080507 +v -0.141603 -0.072518 0.064591 +v -0.100247 -0.052602 0.143970 +v -0.112057 -0.058289 0.134806 +v -0.122252 -0.063199 0.123508 +v -0.130521 -0.067181 0.110420 +v -0.136614 -0.070115 0.095940 +v -0.140346 -0.071912 0.080507 +v -0.133579 -0.087034 0.064591 +v -0.094713 -0.062613 0.143970 +v -0.105813 -0.069587 0.134806 +v -0.115394 -0.075607 0.123508 +v -0.123165 -0.080491 0.110420 +v -0.128892 -0.084089 0.095940 +v -0.132399 -0.086292 0.080507 +v -0.123981 -0.100562 0.064591 +v -0.088094 -0.071942 0.143970 +v -0.098343 -0.080115 0.134806 +v -0.107189 -0.087170 0.123508 +v -0.114365 -0.092893 0.110420 +v -0.119653 -0.097110 0.095940 +v -0.122891 -0.099692 0.080507 +v -0.112929 -0.112929 0.064591 +v -0.080472 -0.080472 0.143970 +v -0.089741 -0.089741 0.134806 +v -0.097742 -0.097742 0.123508 +v -0.104232 -0.104232 0.110420 +v -0.109014 -0.109014 0.095940 +v -0.111943 -0.111943 0.080507 +v -0.100562 -0.123981 0.064591 +v -0.071942 -0.088094 0.143970 +v -0.080115 -0.098343 0.134806 +v -0.087170 -0.107189 0.123508 +v -0.092893 -0.114365 0.110420 +v -0.097110 -0.119653 0.095940 +v -0.099692 -0.122891 0.080507 +v -0.087034 -0.133579 0.064591 +v -0.062613 -0.094713 0.143970 +v -0.069587 -0.105813 0.134806 +v -0.075607 -0.115394 0.123508 +v -0.080491 -0.123165 0.110420 +v -0.084089 -0.128892 0.095940 +v -0.086292 -0.132399 0.080507 +v -0.072518 -0.141603 0.064591 +v -0.052602 -0.100247 0.143970 +v -0.058289 -0.112057 0.134806 +v -0.063199 -0.122252 0.123508 +v -0.067181 -0.130521 0.110420 +v -0.070115 -0.136614 0.095940 +v -0.071912 -0.140346 0.080507 +v -0.057194 -0.147950 0.064591 +v -0.042033 -0.104624 0.143970 +v -0.046363 -0.116997 0.134806 +v -0.050100 -0.127677 0.123508 +v -0.053132 -0.136341 0.110420 +v -0.055365 -0.142724 0.095940 +v -0.056733 -0.146634 0.080507 +v -0.041256 -0.152542 0.064591 +v -0.031041 -0.107791 0.143970 +v -0.033958 -0.120571 0.134806 +v -0.036476 -0.131602 0.123508 +v -0.038519 -0.140551 0.110420 +v -0.040024 -0.147144 0.095940 +v -0.040945 -0.151182 0.080507 +v -0.024904 -0.155320 0.064591 +v -0.019764 -0.109707 0.143970 +v -0.021232 -0.122733 0.134806 +v -0.022499 -0.133977 0.123508 +v -0.023526 -0.143098 0.110420 +v -0.024284 -0.149818 0.095940 +v -0.024747 -0.153934 0.080507 +v 0.008343 0.156250 -0.064591 +v 0.007057 0.110420 -0.143970 +v 0.007425 0.123508 -0.134806 +v 0.007742 0.134806 -0.123508 +v 0.007999 0.143970 -0.110420 +v 0.008188 0.150722 -0.095940 +v 0.008304 0.154857 -0.080507 +v 0.156250 0.008343 -0.064591 +v 0.110420 0.007057 -0.143970 +v 0.123508 0.007425 -0.134806 +v 0.134806 0.007742 -0.123508 +v 0.143970 0.007999 -0.110420 +v 0.150722 0.008188 -0.095940 +v 0.154857 0.008304 -0.080507 +v 0.024904 0.155320 -0.064591 +v 0.019764 0.109707 -0.143970 +v 0.021232 0.122733 -0.134806 +v 0.022499 0.133977 -0.123508 +v 0.023526 0.143098 -0.110420 +v 0.024284 0.149818 -0.095940 +v 0.024747 0.153934 -0.080507 +v 0.041256 0.152542 -0.064591 +v 0.031042 0.107791 -0.143970 +v 0.033958 0.120571 -0.134806 +v 0.036476 0.131602 -0.123508 +v 0.038519 0.140551 -0.110420 +v 0.040024 0.147144 -0.095940 +v 0.040945 0.151182 -0.080507 +v 0.057194 0.147950 -0.064591 +v 0.042033 0.104624 -0.143970 +v 0.046363 0.116997 -0.134806 +v 0.050100 0.127677 -0.123508 +v 0.053132 0.136341 -0.110420 +v 0.055365 0.142724 -0.095940 +v 0.056733 0.146634 -0.080507 +v 0.072518 0.141603 -0.064591 +v 0.052602 0.100247 -0.143970 +v 0.058289 0.112057 -0.134806 +v 0.063199 0.122252 -0.123508 +v 0.067181 0.130521 -0.110420 +v 0.070115 0.136614 -0.095940 +v 0.071912 0.140346 -0.080507 +v 0.087034 0.133579 -0.064591 +v 0.062613 0.094713 -0.143970 +v 0.069587 0.105813 -0.134806 +v 0.075607 0.115394 -0.123508 +v 0.080491 0.123165 -0.110420 +v 0.084089 0.128892 -0.095940 +v 0.086292 0.132399 -0.080507 +v 0.100562 0.123981 -0.064591 +v 0.071942 0.088094 -0.143970 +v 0.080115 0.098343 -0.134806 +v 0.087170 0.107189 -0.123508 +v 0.092893 0.114365 -0.110420 +v 0.097110 0.119653 -0.095940 +v 0.099692 0.122891 -0.080507 +v 0.112929 0.112929 -0.064591 +v 0.080472 0.080472 -0.143970 +v 0.089741 0.089741 -0.134806 +v 0.097742 0.097742 -0.123508 +v 0.104232 0.104232 -0.110420 +v 0.109014 0.109014 -0.095940 +v 0.111943 0.111943 -0.080507 +v 0.123981 0.100562 -0.064591 +v 0.088094 0.071942 -0.143970 +v 0.098343 0.080115 -0.134806 +v 0.107189 0.087170 -0.123508 +v 0.114365 0.092893 -0.110420 +v 0.119653 0.097110 -0.095940 +v 0.122891 0.099692 -0.080507 +v 0.133579 0.087034 -0.064591 +v 0.094713 0.062613 -0.143970 +v 0.105813 0.069587 -0.134806 +v 0.115394 0.075607 -0.123508 +v 0.123165 0.080491 -0.110420 +v 0.128892 0.084089 -0.095940 +v 0.132399 0.086292 -0.080507 +v 0.141603 0.072518 -0.064591 +v 0.100247 0.052602 -0.143970 +v 0.112057 0.058289 -0.134806 +v 0.122252 0.063199 -0.123508 +v 0.130521 0.067181 -0.110420 +v 0.136614 0.070115 -0.095940 +v 0.140346 0.071912 -0.080507 +v 0.147950 0.057194 -0.064591 +v 0.104624 0.042033 -0.143970 +v 0.116997 0.046363 -0.134806 +v 0.127677 0.050100 -0.123508 +v 0.136341 0.053132 -0.110420 +v 0.142724 0.055365 -0.095940 +v 0.146634 0.056733 -0.080507 +v 0.152542 0.041256 -0.064591 +v 0.107791 0.031041 -0.143970 +v 0.120571 0.033958 -0.134806 +v 0.131602 0.036476 -0.123508 +v 0.140551 0.038519 -0.110420 +v 0.147144 0.040024 -0.095940 +v 0.151182 0.040945 -0.080507 +v 0.155320 0.024904 -0.064591 +v 0.109707 0.019764 -0.143970 +v 0.122733 0.021232 -0.134806 +v 0.133977 0.022499 -0.123508 +v 0.143098 0.023526 -0.110420 +v 0.149818 0.024284 -0.095940 +v 0.153934 0.024747 -0.080507 +v 0.156250 -0.008343 -0.064591 +v 0.110420 -0.007057 -0.143970 +v 0.123508 -0.007425 -0.134806 +v 0.134806 -0.007742 -0.123508 +v 0.143970 -0.007999 -0.110420 +v 0.150722 -0.008188 -0.095940 +v 0.154858 -0.008304 -0.080507 +v 0.008343 -0.156250 -0.064591 +v 0.007057 -0.110420 -0.143970 +v 0.007425 -0.123508 -0.134806 +v 0.007742 -0.134806 -0.123508 +v 0.007999 -0.143970 -0.110420 +v 0.008188 -0.150722 -0.095940 +v 0.008304 -0.154857 -0.080507 +v 0.155320 -0.024904 -0.064591 +v 0.109707 -0.019764 -0.143970 +v 0.122733 -0.021232 -0.134806 +v 0.133977 -0.022499 -0.123508 +v 0.143098 -0.023526 -0.110420 +v 0.149818 -0.024284 -0.095940 +v 0.153934 -0.024747 -0.080507 +v 0.152542 -0.041256 -0.064591 +v 0.107791 -0.031042 -0.143970 +v 0.120571 -0.033958 -0.134806 +v 0.131602 -0.036476 -0.123508 +v 0.140551 -0.038519 -0.110420 +v 0.147144 -0.040024 -0.095940 +v 0.151182 -0.040945 -0.080507 +v 0.147950 -0.057194 -0.064591 +v 0.104624 -0.042033 -0.143970 +v 0.116997 -0.046363 -0.134806 +v 0.127677 -0.050100 -0.123508 +v 0.136341 -0.053132 -0.110420 +v 0.142724 -0.055365 -0.095940 +v 0.146634 -0.056733 -0.080507 +v 0.141603 -0.072518 -0.064591 +v 0.100247 -0.052602 -0.143970 +v 0.112057 -0.058289 -0.134806 +v 0.122252 -0.063199 -0.123508 +v 0.130521 -0.067181 -0.110420 +v 0.136614 -0.070115 -0.095940 +v 0.140346 -0.071912 -0.080507 +v 0.133579 -0.087034 -0.064591 +v 0.094713 -0.062613 -0.143970 +v 0.105813 -0.069587 -0.134806 +v 0.115394 -0.075607 -0.123508 +v 0.123165 -0.080491 -0.110420 +v 0.128892 -0.084089 -0.095940 +v 0.132399 -0.086292 -0.080507 +v 0.123981 -0.100562 -0.064591 +v 0.088094 -0.071942 -0.143970 +v 0.098343 -0.080115 -0.134806 +v 0.107189 -0.087170 -0.123508 +v 0.114365 -0.092893 -0.110420 +v 0.119653 -0.097110 -0.095940 +v 0.122891 -0.099692 -0.080507 +v 0.112929 -0.112929 -0.064591 +v 0.080472 -0.080472 -0.143970 +v 0.089741 -0.089741 -0.134806 +v 0.097742 -0.097742 -0.123508 +v 0.104232 -0.104232 -0.110420 +v 0.109014 -0.109014 -0.095940 +v 0.111943 -0.111943 -0.080507 +v 0.100562 -0.123981 -0.064591 +v 0.071942 -0.088094 -0.143970 +v 0.080115 -0.098343 -0.134806 +v 0.087170 -0.107189 -0.123508 +v 0.092893 -0.114365 -0.110420 +v 0.097110 -0.119653 -0.095940 +v 0.099692 -0.122891 -0.080507 +v 0.087034 -0.133579 -0.064591 +v 0.062613 -0.094713 -0.143970 +v 0.069587 -0.105813 -0.134806 +v 0.075607 -0.115394 -0.123508 +v 0.080491 -0.123165 -0.110420 +v 0.084089 -0.128892 -0.095940 +v 0.086292 -0.132399 -0.080507 +v 0.072518 -0.141603 -0.064591 +v 0.052602 -0.100247 -0.143970 +v 0.058289 -0.112057 -0.134806 +v 0.063199 -0.122252 -0.123508 +v 0.067181 -0.130521 -0.110420 +v 0.070115 -0.136614 -0.095940 +v 0.071912 -0.140346 -0.080507 +v 0.057194 -0.147950 -0.064591 +v 0.042033 -0.104624 -0.143970 +v 0.046363 -0.116997 -0.134806 +v 0.050100 -0.127677 -0.123508 +v 0.053132 -0.136341 -0.110420 +v 0.055365 -0.142724 -0.095940 +v 0.056733 -0.146634 -0.080507 +v 0.041256 -0.152542 -0.064591 +v 0.031041 -0.107791 -0.143970 +v 0.033958 -0.120571 -0.134806 +v 0.036476 -0.131602 -0.123508 +v 0.038519 -0.140551 -0.110420 +v 0.040024 -0.147144 -0.095940 +v 0.040945 -0.151182 -0.080507 +v 0.024904 -0.155320 -0.064591 +v 0.019764 -0.109707 -0.143970 +v 0.021232 -0.122733 -0.134806 +v 0.022499 -0.133977 -0.123508 +v 0.023526 -0.143098 -0.110420 +v 0.024284 -0.149818 -0.095940 +v 0.024747 -0.153934 -0.080507 +v 0.156250 0.008343 0.064591 +v 0.110420 0.007057 0.143970 +v 0.123508 0.007425 0.134806 +v 0.134806 0.007742 0.123508 +v 0.143970 0.007999 0.110420 +v 0.150722 0.008188 0.095940 +v 0.154858 0.008304 0.080507 +v 0.008343 0.156250 0.064591 +v 0.007057 0.110420 0.143970 +v 0.007425 0.123508 0.134806 +v 0.007742 0.134806 0.123508 +v 0.007999 0.143970 0.110420 +v 0.008188 0.150722 0.095940 +v 0.008304 0.154857 0.080507 +v 0.155320 0.024904 0.064591 +v 0.109707 0.019764 0.143970 +v 0.122733 0.021232 0.134806 +v 0.133977 0.022499 0.123508 +v 0.143098 0.023526 0.110420 +v 0.149818 0.024284 0.095940 +v 0.153934 0.024747 0.080507 +v 0.152542 0.041256 0.064591 +v 0.107791 0.031042 0.143970 +v 0.120571 0.033958 0.134806 +v 0.131602 0.036476 0.123508 +v 0.140551 0.038519 0.110420 +v 0.147144 0.040024 0.095940 +v 0.151182 0.040945 0.080507 +v 0.147950 0.057194 0.064591 +v 0.104624 0.042033 0.143970 +v 0.116997 0.046363 0.134806 +v 0.127677 0.050100 0.123508 +v 0.136341 0.053132 0.110420 +v 0.142724 0.055365 0.095940 +v 0.146634 0.056733 0.080507 +v 0.141603 0.072518 0.064591 +v 0.100247 0.052602 0.143970 +v 0.112057 0.058289 0.134806 +v 0.122252 0.063199 0.123508 +v 0.130521 0.067181 0.110420 +v 0.136614 0.070115 0.095940 +v 0.140346 0.071912 0.080507 +v 0.133579 0.087034 0.064591 +v 0.094713 0.062613 0.143970 +v 0.105813 0.069587 0.134806 +v 0.115394 0.075607 0.123508 +v 0.123165 0.080491 0.110420 +v 0.128892 0.084089 0.095940 +v 0.132399 0.086292 0.080507 +v 0.123981 0.100562 0.064591 +v 0.088094 0.071942 0.143970 +v 0.098343 0.080115 0.134806 +v 0.107189 0.087170 0.123508 +v 0.114365 0.092893 0.110420 +v 0.119653 0.097110 0.095940 +v 0.122891 0.099692 0.080507 +v 0.112929 0.112929 0.064591 +v 0.080472 0.080472 0.143970 +v 0.089741 0.089741 0.134806 +v 0.097742 0.097742 0.123508 +v 0.104232 0.104232 0.110420 +v 0.109014 0.109014 0.095940 +v 0.111943 0.111943 0.080507 +v 0.100562 0.123981 0.064591 +v 0.071942 0.088094 0.143970 +v 0.080115 0.098343 0.134806 +v 0.087170 0.107189 0.123508 +v 0.092893 0.114365 0.110420 +v 0.097110 0.119653 0.095940 +v 0.099692 0.122891 0.080507 +v 0.087034 0.133579 0.064591 +v 0.062613 0.094713 0.143970 +v 0.069587 0.105813 0.134806 +v 0.075607 0.115394 0.123508 +v 0.080491 0.123165 0.110420 +v 0.084089 0.128892 0.095940 +v 0.086292 0.132399 0.080507 +v 0.072518 0.141603 0.064591 +v 0.052602 0.100247 0.143970 +v 0.058289 0.112057 0.134806 +v 0.063199 0.122252 0.123508 +v 0.067181 0.130521 0.110420 +v 0.070115 0.136614 0.095940 +v 0.071912 0.140346 0.080507 +v 0.057194 0.147950 0.064591 +v 0.042033 0.104624 0.143970 +v 0.046363 0.116997 0.134806 +v 0.050100 0.127677 0.123508 +v 0.053132 0.136341 0.110420 +v 0.055365 0.142724 0.095940 +v 0.056733 0.146634 0.080507 +v 0.041256 0.152542 0.064591 +v 0.031041 0.107791 0.143970 +v 0.033958 0.120571 0.134806 +v 0.036476 0.131602 0.123508 +v 0.038519 0.140551 0.110420 +v 0.040024 0.147144 0.095940 +v 0.040945 0.151182 0.080507 +v 0.024904 0.155320 0.064591 +v 0.019764 0.109707 0.143970 +v 0.021232 0.122733 0.134806 +v 0.022499 0.133977 0.123508 +v 0.023526 0.143098 0.110420 +v 0.024284 0.149818 0.095940 +v 0.024747 0.153934 0.080507 +v 0.008343 -0.156250 0.064591 +v 0.007057 -0.110420 0.143970 +v 0.007425 -0.123508 0.134806 +v 0.007742 -0.134806 0.123508 +v 0.007999 -0.143970 0.110420 +v 0.008188 -0.150722 0.095940 +v 0.008304 -0.154857 0.080507 +v 0.156250 -0.008343 0.064591 +v 0.110420 -0.007057 0.143970 +v 0.123508 -0.007425 0.134806 +v 0.134806 -0.007742 0.123508 +v 0.143970 -0.007999 0.110420 +v 0.150722 -0.008188 0.095940 +v 0.154857 -0.008304 0.080507 +v 0.024904 -0.155320 0.064591 +v 0.019764 -0.109707 0.143970 +v 0.021232 -0.122733 0.134806 +v 0.022499 -0.133977 0.123508 +v 0.023526 -0.143098 0.110420 +v 0.024284 -0.149818 0.095940 +v 0.024747 -0.153934 0.080507 +v 0.041256 -0.152542 0.064591 +v 0.031042 -0.107791 0.143970 +v 0.033958 -0.120571 0.134806 +v 0.036476 -0.131602 0.123508 +v 0.038519 -0.140551 0.110420 +v 0.040024 -0.147144 0.095940 +v 0.040945 -0.151182 0.080507 +v 0.057194 -0.147950 0.064591 +v 0.042033 -0.104624 0.143970 +v 0.046363 -0.116997 0.134806 +v 0.050100 -0.127677 0.123508 +v 0.053132 -0.136341 0.110420 +v 0.055365 -0.142724 0.095940 +v 0.056733 -0.146634 0.080507 +v 0.072518 -0.141603 0.064591 +v 0.052602 -0.100247 0.143970 +v 0.058289 -0.112057 0.134806 +v 0.063199 -0.122252 0.123508 +v 0.067181 -0.130521 0.110420 +v 0.070115 -0.136614 0.095940 +v 0.071912 -0.140346 0.080507 +v 0.087034 -0.133579 0.064591 +v 0.062613 -0.094713 0.143970 +v 0.069587 -0.105813 0.134806 +v 0.075607 -0.115394 0.123508 +v 0.080491 -0.123165 0.110420 +v 0.084089 -0.128892 0.095940 +v 0.086292 -0.132399 0.080507 +v 0.100562 -0.123981 0.064591 +v 0.071942 -0.088094 0.143970 +v 0.080115 -0.098343 0.134806 +v 0.087170 -0.107189 0.123508 +v 0.092893 -0.114365 0.110420 +v 0.097110 -0.119653 0.095940 +v 0.099692 -0.122891 0.080507 +v 0.112929 -0.112929 0.064591 +v 0.080472 -0.080472 0.143970 +v 0.089741 -0.089741 0.134806 +v 0.097742 -0.097742 0.123508 +v 0.104232 -0.104232 0.110420 +v 0.109014 -0.109014 0.095940 +v 0.111943 -0.111943 0.080507 +v 0.123981 -0.100562 0.064591 +v 0.088094 -0.071942 0.143970 +v 0.098343 -0.080115 0.134806 +v 0.107189 -0.087170 0.123508 +v 0.114365 -0.092893 0.110420 +v 0.119653 -0.097110 0.095940 +v 0.122891 -0.099692 0.080507 +v 0.133579 -0.087034 0.064591 +v 0.094713 -0.062613 0.143970 +v 0.105813 -0.069587 0.134806 +v 0.115394 -0.075607 0.123508 +v 0.123165 -0.080491 0.110420 +v 0.128892 -0.084089 0.095940 +v 0.132399 -0.086292 0.080507 +v 0.141603 -0.072518 0.064591 +v 0.100247 -0.052602 0.143970 +v 0.112057 -0.058289 0.134806 +v 0.122252 -0.063199 0.123508 +v 0.130521 -0.067181 0.110420 +v 0.136614 -0.070115 0.095940 +v 0.140346 -0.071912 0.080507 +v 0.147950 -0.057194 0.064591 +v 0.104624 -0.042033 0.143970 +v 0.116997 -0.046363 0.134806 +v 0.127677 -0.050100 0.123508 +v 0.136341 -0.053132 0.110420 +v 0.142724 -0.055365 0.095940 +v 0.146634 -0.056733 0.080507 +v 0.152542 -0.041256 0.064591 +v 0.107791 -0.031041 0.143970 +v 0.120571 -0.033958 0.134806 +v 0.131602 -0.036476 0.123508 +v 0.140551 -0.038519 0.110420 +v 0.147144 -0.040024 0.095940 +v 0.151182 -0.040945 0.080507 +v 0.155320 -0.024904 0.064591 +v 0.109707 -0.019764 0.143970 +v 0.122733 -0.021232 0.134806 +v 0.133977 -0.022499 0.123508 +v 0.143098 -0.023526 0.110420 +v 0.149818 -0.024284 0.095940 +v 0.153934 -0.024747 0.080507 +vt 0.8476 0.4227 +vt 0.8547 0.5168 +vt 0.8476 0.6109 +vt 0.8266 0.7015 +vt 0.7925 0.7849 +vt 0.7466 0.8580 +vt 0.6907 0.9180 +vt 0.6269 0.9626 +vt 0.5577 0.9901 +vt 0.4857 0.9993 +vt 0.4137 0.9901 +vt 0.3445 0.9626 +vt 0.2807 0.9180 +vt 0.2248 0.8580 +vt 0.1789 0.7849 +vt 0.1448 0.7015 +vt 0.1238 0.6109 +vt 0.1167 0.5168 +vt 0.1238 0.4227 +vt 0.1448 0.3321 +vt 0.1789 0.2487 +vt 0.2248 0.1756 +vt 0.2807 0.1156 +vt 0.3445 0.0710 +vt 0.4137 0.0435 +vt 0.4857 0.0343 +vt 0.5577 0.0435 +vt 0.6269 0.0710 +vt 0.6907 0.1156 +vt 0.7466 0.1756 +vt 0.7925 0.2487 +vt 0.8266 0.3321 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.0000 0.0000 +vt 0.7740 0.5691 +vt 0.7824 0.5642 +vt 0.7824 0.5546 +vt 0.7740 0.5497 +vt 0.7657 0.5546 +vt 0.7657 0.5642 +vt 0.7740 0.5691 +vt 0.7824 0.5642 +vt 0.7824 0.5546 +vt 0.7740 0.5497 +vt 0.7657 0.5546 +vt 0.7657 0.5642 +vt 0.7740 0.5691 +vt 0.7824 0.5642 +vt 0.7824 0.5546 +vt 0.7740 0.5497 +vt 0.7657 0.5546 +vt 0.7657 0.5642 +vt 0.7740 0.5691 +vt 0.7824 0.5642 +vt 0.7824 0.5546 +vt 0.7740 0.5497 +vt 0.7657 0.5546 +vt 0.7657 0.5642 +vt 0.7740 0.5691 +vt 0.7824 0.5642 +vt 0.7824 0.5546 +vt 0.7740 0.5497 +vt 0.7657 0.5546 +vt 0.7657 0.5642 +vt 0.7740 0.5691 +vt 0.7824 0.5642 +vt 0.7824 0.5546 +vt 0.7740 0.5497 +vt 0.7657 0.5546 +vt 0.7657 0.5642 +vt 0.7740 0.5691 +vt 0.7824 0.5642 +vt 0.7824 0.5546 +vt 0.7740 0.5497 +vt 0.7657 0.5546 +vt 0.7657 0.5642 +vt 0.7740 0.5691 +vt 0.7824 0.5642 +vt 0.7824 0.5546 +vt 0.7740 0.5497 +vt 0.7657 0.5546 +vt 0.7657 0.5642 +vt 0.7740 0.5691 +vt 0.7824 0.5642 +vt 0.7824 0.5546 +vt 0.7740 0.5497 +vt 0.7657 0.5546 +vt 0.7657 0.5642 +vt 0.7740 0.5691 +vt 0.7824 0.5642 +vt 0.7824 0.5546 +vt 0.7740 0.5497 +vt 0.7657 0.5546 +vt 0.7657 0.5642 +vt 0.7740 0.5691 +vt 0.7824 0.5642 +vt 0.7824 0.5546 +vt 0.7740 0.5497 +vt 0.7657 0.5546 +vt 0.7657 0.5642 +vt 0.7740 0.5691 +vt 0.7824 0.5642 +vt 0.7824 0.5546 +vt 0.7740 0.5497 +vt 0.7657 0.5546 +vt 0.7657 0.5642 +vt 0.7740 0.5691 +vt 0.7824 0.5642 +vt 0.7824 0.5546 +vt 0.7740 0.5497 +vt 0.7657 0.5546 +vt 0.7657 0.5642 +vt 0.7740 0.5691 +vt 0.7824 0.5642 +vt 0.7824 0.5546 +vt 0.7740 0.5497 +vt 0.7657 0.5546 +vt 0.7657 0.5642 +vt 0.7740 0.5691 +vt 0.7824 0.5642 +vt 0.7824 0.5546 +vt 0.7740 0.5497 +vt 0.7657 0.5546 +vt 0.7657 0.5642 +vt 0.7740 0.5691 +vt 0.7824 0.5642 +vt 0.7824 0.5546 +vt 0.7740 0.5497 +vt 0.7657 0.5546 +vt 0.7657 0.5642 +vt 0.6203 0.6995 +vt 0.6339 0.7131 +vt 0.6499 0.7238 +vt 0.6677 0.7312 +vt 0.6865 0.7349 +vt 0.7057 0.7349 +vt 0.7246 0.7312 +vt 0.7423 0.7238 +vt 0.7583 0.7131 +vt 0.7719 0.6995 +vt 0.7825 0.6836 +vt 0.7899 0.6658 +vt 0.7936 0.6470 +vt 0.7936 0.6278 +vt 0.7899 0.6089 +vt 0.7825 0.5912 +vt 0.7719 0.5752 +vt 0.7583 0.5616 +vt 0.7423 0.5509 +vt 0.7246 0.5436 +vt 0.7057 0.5398 +vt 0.6865 0.5398 +vt 0.6677 0.5436 +vt 0.6499 0.5509 +vt 0.6339 0.5616 +vt 0.6203 0.5752 +vt 0.6097 0.5912 +vt 0.6023 0.6089 +vt 0.5986 0.6278 +vt 0.5986 0.6470 +vt 0.6023 0.6658 +vt 0.6097 0.6836 +vt 0.4894 0.5435 +vt 0.5072 0.5508 +vt 0.5232 0.5615 +vt 0.5368 0.5751 +vt 0.5474 0.5911 +vt 0.5548 0.6088 +vt 0.5585 0.6277 +vt 0.5585 0.6469 +vt 0.5548 0.6657 +vt 0.5474 0.6835 +vt 0.5368 0.6994 +vt 0.5232 0.7130 +vt 0.5072 0.7237 +vt 0.4894 0.7311 +vt 0.4706 0.7348 +vt 0.4514 0.7348 +vt 0.4325 0.7311 +vt 0.4148 0.7237 +vt 0.3988 0.7130 +vt 0.3852 0.6994 +vt 0.3746 0.6835 +vt 0.3672 0.6657 +vt 0.3635 0.6469 +vt 0.3635 0.6277 +vt 0.3672 0.6088 +vt 0.3746 0.5911 +vt 0.3852 0.5751 +vt 0.3988 0.5615 +vt 0.4148 0.5508 +vt 0.4325 0.5435 +vt 0.4514 0.5397 +vt 0.4706 0.5397 +vt 0.7057 0.5398 +vt 0.7246 0.5436 +vt 0.7423 0.5509 +vt 0.7583 0.5616 +vt 0.7719 0.5752 +vt 0.7825 0.5912 +vt 0.7899 0.6089 +vt 0.7936 0.6278 +vt 0.7936 0.6470 +vt 0.7899 0.6658 +vt 0.7825 0.6836 +vt 0.7719 0.6995 +vt 0.7583 0.7131 +vt 0.7423 0.7238 +vt 0.7246 0.7312 +vt 0.7057 0.7349 +vt 0.6865 0.7349 +vt 0.6677 0.7312 +vt 0.6499 0.7238 +vt 0.6339 0.7131 +vt 0.6203 0.6995 +vt 0.6097 0.6836 +vt 0.6023 0.6658 +vt 0.5986 0.6470 +vt 0.5986 0.6278 +vt 0.6023 0.6089 +vt 0.6097 0.5912 +vt 0.6203 0.5752 +vt 0.6339 0.5616 +vt 0.6499 0.5509 +vt 0.6677 0.5436 +vt 0.6865 0.5398 +vt 0.4148 0.5508 +vt 0.3988 0.5615 +vt 0.3852 0.5751 +vt 0.3746 0.5911 +vt 0.3672 0.6088 +vt 0.3635 0.6277 +vt 0.3635 0.6469 +vt 0.3672 0.6657 +vt 0.3746 0.6835 +vt 0.3852 0.6994 +vt 0.3988 0.7130 +vt 0.4148 0.7237 +vt 0.4325 0.7311 +vt 0.4514 0.7348 +vt 0.4706 0.7348 +vt 0.4894 0.7311 +vt 0.5072 0.7237 +vt 0.5232 0.7130 +vt 0.5368 0.6994 +vt 0.5474 0.6835 +vt 0.5548 0.6657 +vt 0.5585 0.6469 +vt 0.5585 0.6277 +vt 0.5548 0.6088 +vt 0.5474 0.5911 +vt 0.5368 0.5751 +vt 0.5232 0.5615 +vt 0.5072 0.5508 +vt 0.4894 0.5435 +vt 0.4706 0.5397 +vt 0.4514 0.5397 +vt 0.4325 0.5435 +vt 0.7740 0.5691 +vt 0.7824 0.5642 +vt 0.7824 0.5546 +vt 0.7740 0.5497 +vt 0.7657 0.5546 +vt 0.7657 0.5642 +vt 0.7740 0.5691 +vt 0.7824 0.5642 +vt 0.7824 0.5546 +vt 0.7740 0.5497 +vt 0.7657 0.5546 +vt 0.7657 0.5642 +vt 0.7740 0.5691 +vt 0.7824 0.5642 +vt 0.7824 0.5546 +vt 0.7740 0.5497 +vt 0.7657 0.5546 +vt 0.7657 0.5642 +vt 0.7740 0.5691 +vt 0.7824 0.5642 +vt 0.7824 0.5546 +vt 0.7740 0.5497 +vt 0.7657 0.5546 +vt 0.7657 0.5642 +vt 0.7740 0.5691 +vt 0.7824 0.5642 +vt 0.7824 0.5546 +vt 0.7740 0.5497 +vt 0.7657 0.5546 +vt 0.7657 0.5642 +vt 0.7740 0.5691 +vt 0.7824 0.5642 +vt 0.7824 0.5546 +vt 0.7740 0.5497 +vt 0.7657 0.5546 +vt 0.7657 0.5642 +vt 0.7740 0.5691 +vt 0.7824 0.5642 +vt 0.7824 0.5546 +vt 0.7740 0.5497 +vt 0.7657 0.5546 +vt 0.7657 0.5642 +vt 0.7740 0.5691 +vt 0.7824 0.5642 +vt 0.7824 0.5546 +vt 0.7740 0.5497 +vt 0.7657 0.5546 +vt 0.7657 0.5642 +vt 0.7740 0.5691 +vt 0.7824 0.5642 +vt 0.7824 0.5546 +vt 0.7740 0.5497 +vt 0.7657 0.5546 +vt 0.7657 0.5642 +vt 0.7740 0.5691 +vt 0.7824 0.5642 +vt 0.7824 0.5546 +vt 0.7740 0.5497 +vt 0.7657 0.5546 +vt 0.7657 0.5642 +vt 0.7740 0.5691 +vt 0.7824 0.5642 +vt 0.7824 0.5546 +vt 0.7740 0.5497 +vt 0.7657 0.5546 +vt 0.7657 0.5642 +vt 0.7740 0.5691 +vt 0.7824 0.5642 +vt 0.7824 0.5546 +vt 0.7740 0.5497 +vt 0.7657 0.5546 +vt 0.7657 0.5642 +vt 0.7740 0.5691 +vt 0.7824 0.5642 +vt 0.7824 0.5546 +vt 0.7740 0.5497 +vt 0.7657 0.5546 +vt 0.7657 0.5642 +vt 0.7740 0.5691 +vt 0.7824 0.5642 +vt 0.7824 0.5546 +vt 0.7740 0.5497 +vt 0.7657 0.5546 +vt 0.7657 0.5642 +vt 0.7740 0.5691 +vt 0.7824 0.5642 +vt 0.7824 0.5546 +vt 0.7740 0.5497 +vt 0.7657 0.5546 +vt 0.7657 0.5642 +vt 0.7740 0.5691 +vt 0.7824 0.5642 +vt 0.7824 0.5546 +vt 0.7740 0.5497 +vt 0.7657 0.5546 +vt 0.7657 0.5642 +vt 0.5795 0.3964 +vt 0.5591 0.3796 +vt 0.5423 0.3592 +vt 0.5298 0.3359 +vt 0.5221 0.3106 +vt 0.5196 0.2843 +vt 0.5221 0.2580 +vt 0.5298 0.2327 +vt 0.5423 0.2093 +vt 0.5591 0.1889 +vt 0.5795 0.1721 +vt 0.6028 0.1597 +vt 0.6281 0.1520 +vt 0.6544 0.1494 +vt 0.6807 0.1520 +vt 0.7060 0.1597 +vt 0.7294 0.1721 +vt 0.7498 0.1889 +vt 0.7666 0.2093 +vt 0.7790 0.2327 +vt 0.7867 0.2580 +vt 0.7893 0.2843 +vt 0.7867 0.3106 +vt 0.7790 0.3359 +vt 0.7666 0.3592 +vt 0.7498 0.3796 +vt 0.7294 0.3964 +vt 0.7060 0.4089 +vt 0.6807 0.4166 +vt 0.6544 0.4191 +vt 0.6281 0.4166 +vt 0.6028 0.4089 +vt 0.1018 0.1337 +vt 0.2315 0.1337 +vt 0.2315 0.1462 +vt 0.1018 0.1462 +vt 0.2193 0.6363 +vt 0.1140 0.6363 +vt 0.1140 0.6239 +vt 0.2193 0.6239 +vt 0.1140 0.5988 +vt 0.2193 0.5988 +vt 0.2193 0.6113 +vt 0.1140 0.6113 +vt 0.2315 0.3538 +vt 0.1018 0.3538 +vt 0.1018 0.3415 +vt 0.2315 0.3415 +vt 0.1018 0.3913 +vt 0.2315 0.3913 +vt 0.2315 0.4036 +vt 0.1018 0.4036 +vt 0.4216 0.2732 +vt 0.4216 0.2660 +vt 0.3725 0.2660 +vt 0.3725 0.2732 +vt 0.3725 0.2065 +vt 0.4216 0.2065 +vt 0.4216 0.2004 +vt 0.3725 0.2004 +vt 0.3725 0.2512 +vt 0.4216 0.2512 +vt 0.4216 0.2390 +vt 0.3725 0.2390 +vt 0.9510 0.3431 +vt 0.9510 0.2401 +vt 0.9706 0.2401 +vt 0.9706 0.3431 +vt 0.8922 0.3431 +vt 0.8922 0.2401 +vt 0.9118 0.2401 +vt 0.9118 0.3431 +vt 0.6961 0.3431 +vt 0.6961 0.2401 +vt 0.7157 0.2401 +vt 0.7157 0.3431 +vt 0.6569 0.3431 +vt 0.6569 0.2401 +vt 0.6765 0.2401 +vt 0.6765 0.3431 +vt 0.7745 0.3431 +vt 0.7745 0.2401 +vt 0.7941 0.2401 +vt 0.7941 0.3431 +vt 0.4608 0.3431 +vt 0.4608 0.2401 +vt 0.4804 0.2401 +vt 0.4804 0.3431 +vt 0.6373 0.3431 +vt 0.6373 0.2401 +vt 0.8725 0.3431 +vt 0.8725 0.2401 +vt 0.7353 0.2401 +vt 0.7353 0.3431 +vt 0.5588 0.3431 +vt 0.5588 0.2401 +vt 0.5784 0.2401 +vt 0.5784 0.3431 +vt 0.3431 0.3431 +vt 0.3431 0.2401 +vt 0.3627 0.2401 +vt 0.3627 0.3431 +vt 0.6373 0.4902 +vt 0.6373 0.4706 +vt 0.6569 0.4706 +vt 0.6569 0.4902 +vt 0.6176 0.4902 +vt 0.6176 0.4706 +vt 0.5980 0.4902 +vt 0.5980 0.4706 +vt 0.5784 0.4902 +vt 0.5784 0.4706 +vt 0.5588 0.4902 +vt 0.5588 0.4706 +vt 0.5392 0.4902 +vt 0.5392 0.4706 +vt 0.5196 0.4902 +vt 0.5196 0.4706 +vt 0.5000 0.4902 +vt 0.5000 0.4706 +vt 0.4804 0.4902 +vt 0.4804 0.4706 +vt 0.4608 0.4902 +vt 0.4608 0.4706 +vt 0.4412 0.4902 +vt 0.4412 0.4706 +vt 0.4216 0.4902 +vt 0.4216 0.4706 +vt 0.4020 0.4902 +vt 0.4020 0.4706 +vt 0.3824 0.4902 +vt 0.3824 0.4706 +vt 0.3627 0.4902 +vt 0.3627 0.4706 +vt 0.3431 0.4902 +vt 0.3431 0.4706 +vt 0.9510 0.4902 +vt 0.9510 0.4706 +vt 0.9706 0.4706 +vt 0.9706 0.4902 +vt 0.9314 0.4902 +vt 0.9314 0.4706 +vt 0.9118 0.4902 +vt 0.9118 0.4706 +vt 0.8922 0.4902 +vt 0.8922 0.4706 +vt 0.8529 0.4902 +vt 0.8529 0.4706 +vt 0.8725 0.4706 +vt 0.8725 0.4902 +vt 0.8333 0.4902 +vt 0.8333 0.4706 +vt 0.8137 0.4902 +vt 0.8137 0.4706 +vt 0.7941 0.4902 +vt 0.7941 0.4706 +vt 0.7745 0.4902 +vt 0.7745 0.4706 +vt 0.7353 0.4902 +vt 0.7353 0.4706 +vt 0.7549 0.4706 +vt 0.7549 0.4902 +vt 0.7157 0.4902 +vt 0.7157 0.4706 +vt 0.6961 0.4902 +vt 0.6961 0.4706 +vt 0.7373 0.4468 +vt 0.7373 0.4373 +vt 0.7577 0.4372 +vt 0.7577 0.4467 +vt 0.7782 0.4468 +vt 0.7782 0.4373 +vt 0.7986 0.4467 +vt 0.7986 0.4373 +vt 0.8190 0.4467 +vt 0.8191 0.4373 +vt 0.8394 0.4468 +vt 0.8395 0.4373 +vt 0.8599 0.4468 +vt 0.8599 0.4373 +vt 0.8804 0.4373 +vt 0.8803 0.4468 +vt 0.9007 0.4469 +vt 0.9008 0.4374 +vt 0.9212 0.4469 +vt 0.9213 0.4374 +vt 0.9417 0.4470 +vt 0.9418 0.4375 +vt 0.9623 0.4375 +vt 0.9622 0.4470 +vt 0.9829 0.4375 +vt 0.9827 0.4471 +vt 1.0033 0.4471 +vt 1.0033 0.4375 +vt 1.0238 0.4375 +vt 1.0238 0.4471 +vt 1.0443 0.4375 +vt 1.0444 0.4471 +vt 1.0651 0.4471 +vt 1.0648 0.4375 +vt 1.0852 0.4374 +vt 1.0859 0.4469 +vt 1.1068 0.4466 +vt 1.1054 0.4371 +vt 0.4495 0.4465 +vt 0.4509 0.4371 +vt 0.4711 0.4373 +vt 0.4704 0.4469 +vt 0.4914 0.4471 +vt 0.4916 0.4374 +vt 0.5123 0.4375 +vt 0.5122 0.4471 +vt 0.5328 0.4374 +vt 0.5328 0.4470 +vt 0.5532 0.4374 +vt 0.5533 0.4469 +vt 0.5737 0.4374 +vt 0.5738 0.4469 +vt 0.5941 0.4374 +vt 0.5942 0.4468 +vt 0.6145 0.4373 +vt 0.6146 0.4468 +vt 0.6555 0.4468 +vt 0.6350 0.4468 +vt 0.6350 0.4373 +vt 0.6554 0.4373 +vt 0.6963 0.4468 +vt 0.6759 0.4468 +vt 0.6759 0.4373 +vt 0.6963 0.4373 +vt 0.7168 0.4468 +vt 0.7168 0.4373 +vt 0.9637 0.1307 +vt 0.9433 0.1307 +vt 0.9433 0.1212 +vt 0.9230 0.1307 +vt 0.9230 0.1213 +vt 0.9637 0.1212 +vt 0.9841 0.1212 +vt 0.9840 0.1307 +vt 0.9027 0.1307 +vt 0.8824 0.1307 +vt 0.9027 0.1213 +vt 1.0045 0.1212 +vt 1.0044 0.1307 +vt 0.8824 0.1212 +vt 1.0249 0.1212 +vt 1.0248 0.1307 +vt 0.8621 0.1212 +vt 0.8620 0.1306 +vt 0.7745 0.4902 +vt 0.7745 0.4706 +vt 0.7941 0.4706 +vt 0.7941 0.4902 +vt 0.8333 0.4902 +vt 0.8333 0.4706 +vt 0.8529 0.4706 +vt 0.8529 0.4902 +vt 1.0454 0.1213 +vt 1.0451 0.1308 +vt 0.7549 0.4902 +vt 0.7549 0.4706 +vt 0.8418 0.1211 +vt 0.8417 0.1306 +vt 0.8725 0.4706 +vt 0.8725 0.4902 +vt 1.0659 0.1214 +vt 1.0654 0.1309 +vt 0.7353 0.4902 +vt 0.7353 0.4706 +vt 0.8214 0.1210 +vt 0.8213 0.1305 +vt 0.7157 0.4902 +vt 0.7157 0.4706 +vt 1.0864 0.1216 +vt 1.0854 0.1310 +vt 0.6765 0.4902 +vt 0.6765 0.4706 +vt 0.6961 0.4706 +vt 0.6961 0.4902 +vt 0.8010 0.1210 +vt 0.8009 0.1304 +vt 0.8922 0.4706 +vt 0.8922 0.4902 +vt 1.1069 0.1221 +vt 1.1051 0.1313 +vt 0.6569 0.4902 +vt 0.6569 0.4706 +vt 0.7806 0.1209 +vt 0.7805 0.1304 +vt 0.9118 0.4706 +vt 0.9118 0.4902 +vt 0.4718 0.1196 +vt 0.4722 0.1293 +vt 0.4516 0.1295 +vt 0.4504 0.1199 +vt 0.6765 0.4706 +vt 0.6765 0.4902 +vt 0.6373 0.4902 +vt 0.6373 0.4706 +vt 0.5756 0.1295 +vt 0.5550 0.1294 +vt 0.7602 0.1208 +vt 0.7601 0.1303 +vt 0.9314 0.4706 +vt 0.9314 0.4902 +vt 0.4930 0.1195 +vt 0.4930 0.1293 +vt 0.6176 0.4902 +vt 0.6176 0.4706 +vt 0.7398 0.1208 +vt 0.7397 0.1302 +vt 0.9510 0.4706 +vt 0.9510 0.4902 +vt 0.5139 0.1196 +vt 0.5137 0.1293 +vt 0.5980 0.4902 +vt 0.5980 0.4706 +vt 0.7194 0.1207 +vt 0.7192 0.1302 +vt 0.3431 0.4902 +vt 0.3431 0.4706 +vt 0.3627 0.4706 +vt 0.3627 0.4902 +vt 0.5346 0.1198 +vt 0.5344 0.1293 +vt 0.9706 0.4706 +vt 0.9706 0.4902 +vt 0.6989 0.1206 +vt 0.6988 0.1301 +vt 0.3824 0.4706 +vt 0.3824 0.4902 +vt 0.8137 0.4706 +vt 0.8137 0.4902 +vt 0.5552 0.1198 +vt 0.5784 0.4902 +vt 0.5784 0.4706 +vt 0.6578 0.1299 +vt 0.6783 0.1300 +vt 0.6785 0.1205 +vt 0.4020 0.4706 +vt 0.4020 0.4902 +vt 0.5758 0.1199 +vt 0.5588 0.4902 +vt 0.5588 0.4706 +vt 0.6581 0.1204 +vt 0.4216 0.4706 +vt 0.4216 0.4902 +vt 0.5965 0.1200 +vt 0.5962 0.1296 +vt 0.5392 0.4902 +vt 0.5392 0.4706 +vt 0.6376 0.1203 +vt 0.6373 0.1298 +vt 0.4412 0.4706 +vt 0.4412 0.4902 +vt 0.6170 0.1201 +vt 0.6168 0.1297 +vt 0.5196 0.4902 +vt 0.5196 0.4706 +vt 0.5000 0.4902 +vt 0.5000 0.4706 +vt 0.4608 0.4706 +vt 0.4608 0.4902 +vt 0.4804 0.4902 +vt 0.4804 0.4706 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.7745 0.5392 +vt 0.7745 0.5294 +vt 0.7843 0.5294 +vt 0.7843 0.5392 +vt 0.7647 0.5392 +vt 0.7647 0.5294 +vt 0.7941 0.5294 +vt 0.7941 0.5392 +vt 0.8039 0.5294 +vt 0.8039 0.5392 +vt 0.7451 0.5392 +vt 0.7451 0.5294 +vt 0.7549 0.5294 +vt 0.7549 0.5392 +vt 0.3824 0.3431 +vt 0.3824 0.2401 +vt 0.4020 0.2401 +vt 0.4020 0.3431 +vt 0.5000 0.2401 +vt 0.5000 0.3431 +vt 0.5196 0.3431 +vt 0.5196 0.2401 +vt 0.5392 0.2401 +vt 0.5392 0.3431 +vt 0.5980 0.3431 +vt 0.5980 0.2401 +vt 0.6176 0.2401 +vt 0.6176 0.3431 +vt 0.8529 0.3431 +vt 0.8529 0.2401 +vt 0.4216 0.2401 +vt 0.4216 0.3431 +vt 0.7549 0.3431 +vt 0.7549 0.2401 +vt 0.8137 0.3431 +vt 0.8137 0.2401 +vt 0.8333 0.2401 +vt 0.8333 0.3431 +vt 0.9314 0.3431 +vt 0.9314 0.2401 +vt 0.4412 0.3431 +vt 0.4412 0.2401 +vt 0.5394 0.2320 +vt 0.5586 0.2320 +vt 0.5587 0.2357 +vt 0.5393 0.2357 +vt 0.5002 0.2320 +vt 0.5194 0.2320 +vt 0.5195 0.2357 +vt 0.5001 0.2357 +vt 0.4414 0.2320 +vt 0.4606 0.2320 +vt 0.4607 0.2357 +vt 0.4413 0.2357 +vt 0.6178 0.2320 +vt 0.6371 0.2320 +vt 0.6372 0.2357 +vt 0.6177 0.2357 +vt 0.8531 0.2320 +vt 0.8723 0.2320 +vt 0.8724 0.2357 +vt 0.8530 0.2357 +vt 0.3629 0.2320 +vt 0.3822 0.2320 +vt 0.3823 0.2357 +vt 0.3628 0.2357 +vt 0.7943 0.2320 +vt 0.8135 0.2320 +vt 0.8136 0.2357 +vt 0.7942 0.2357 +vt 0.7159 0.2320 +vt 0.7351 0.2320 +vt 0.7352 0.2357 +vt 0.7158 0.2357 +vt 0.6375 0.2320 +vt 0.6567 0.2320 +vt 0.6568 0.2357 +vt 0.6374 0.2357 +vt 0.9119 0.2357 +vt 0.9313 0.2357 +vt 0.9120 0.2320 +vt 0.9312 0.2320 +vt 0.9122 0.2255 +vt 0.9310 0.2255 +vt 0.5590 0.2320 +vt 0.5782 0.2320 +vt 0.5783 0.2357 +vt 0.5589 0.2357 +vt 0.4218 0.2320 +vt 0.4410 0.2320 +vt 0.4411 0.2357 +vt 0.4217 0.2357 +vt 0.7355 0.2320 +vt 0.7547 0.2320 +vt 0.7548 0.2357 +vt 0.7354 0.2357 +vt 0.3433 0.2320 +vt 0.3625 0.2320 +vt 0.3626 0.2357 +vt 0.3432 0.2357 +vt 0.8727 0.2320 +vt 0.8920 0.2320 +vt 0.8921 0.2357 +vt 0.8726 0.2357 +vt 0.6571 0.2320 +vt 0.6763 0.2320 +vt 0.6764 0.2357 +vt 0.6570 0.2357 +vt 0.9512 0.2320 +vt 0.9704 0.2320 +vt 0.9705 0.2357 +vt 0.9511 0.2357 +vt 0.5786 0.2320 +vt 0.5978 0.2320 +vt 0.5979 0.2357 +vt 0.5785 0.2357 +vt 0.4806 0.2320 +vt 0.4998 0.2320 +vt 0.4999 0.2357 +vt 0.4805 0.2357 +vt 0.7551 0.2320 +vt 0.7743 0.2320 +vt 0.7744 0.2357 +vt 0.7550 0.2357 +vt 0.4022 0.2320 +vt 0.4214 0.2320 +vt 0.4215 0.2357 +vt 0.4021 0.2357 +vt 0.8139 0.2320 +vt 0.8331 0.2320 +vt 0.8332 0.2357 +vt 0.8138 0.2357 +vt 0.6767 0.2320 +vt 0.6959 0.2320 +vt 0.6960 0.2357 +vt 0.6766 0.2357 +vt 0.8924 0.2320 +vt 0.9116 0.2320 +vt 0.9117 0.2357 +vt 0.8923 0.2357 +vt 0.9316 0.2320 +vt 0.9508 0.2320 +vt 0.9509 0.2357 +vt 0.9315 0.2357 +vt 0.5198 0.2320 +vt 0.5390 0.2320 +vt 0.5391 0.2357 +vt 0.5197 0.2357 +vt 0.5982 0.2320 +vt 0.6174 0.2320 +vt 0.6175 0.2357 +vt 0.5981 0.2357 +vt 0.4610 0.2320 +vt 0.4802 0.2320 +vt 0.4803 0.2357 +vt 0.4609 0.2357 +vt 0.7747 0.2320 +vt 0.7939 0.2320 +vt 0.7940 0.2357 +vt 0.7746 0.2357 +vt 0.3826 0.2320 +vt 0.4018 0.2320 +vt 0.4019 0.2357 +vt 0.3825 0.2357 +vt 0.6963 0.2320 +vt 0.7155 0.2320 +vt 0.7156 0.2357 +vt 0.6962 0.2357 +vt 0.8335 0.2320 +vt 0.8527 0.2320 +vt 0.8528 0.2357 +vt 0.8334 0.2357 +vt 0.4216 0.2242 +vt 0.4216 0.2170 +vt 0.3725 0.2170 +vt 0.3725 0.2242 +vt 0.4216 0.3712 +vt 0.4216 0.3641 +vt 0.3725 0.3641 +vt 0.3725 0.3712 +vt 0.4216 0.3222 +vt 0.4216 0.3150 +vt 0.3725 0.3150 +vt 0.3725 0.3222 +vt 0.3725 0.3492 +vt 0.4216 0.3492 +vt 0.4216 0.3370 +vt 0.3725 0.3370 +vt 0.1018 0.1212 +vt 0.2315 0.1212 +vt 0.1018 0.1585 +vt 0.2315 0.1585 +vt 0.2315 0.1705 +vt 0.1018 0.1705 +vt 0.2315 0.1821 +vt 0.1018 0.1821 +vt 0.2315 0.1930 +vt 0.1018 0.1930 +vt 0.2315 0.2032 +vt 0.1018 0.2032 +vt 0.2315 0.2451 +vt 0.1018 0.2451 +vt 0.2193 0.7352 +vt 0.1140 0.7352 +vt 0.1140 0.6933 +vt 0.2193 0.6933 +vt 0.1140 0.6831 +vt 0.2193 0.6831 +vt 0.1140 0.6722 +vt 0.2193 0.6722 +vt 0.1140 0.6606 +vt 0.2193 0.6606 +vt 0.1140 0.6486 +vt 0.2193 0.6486 +vt 0.2315 0.3663 +vt 0.1018 0.3663 +vt 0.6246 0.8538 +vt 0.7284 0.8538 +vt 0.7284 0.8663 +vt 0.6246 0.8663 +vt 0.1018 0.3295 +vt 0.2315 0.3295 +vt 0.1018 0.3179 +vt 0.2315 0.3179 +vt 0.1018 0.3070 +vt 0.2315 0.3070 +vt 0.1018 0.2968 +vt 0.2315 0.2968 +vt 0.1018 0.2549 +vt 0.2315 0.2549 +vt 0.6246 0.7549 +vt 0.7284 0.7549 +vt 0.7284 0.7968 +vt 0.6246 0.7968 +vt 0.7284 0.8070 +vt 0.6246 0.8070 +vt 0.7284 0.8179 +vt 0.6246 0.8179 +vt 0.7284 0.8295 +vt 0.6246 0.8295 +vt 0.7284 0.8415 +vt 0.6246 0.8415 +vt 0.6246 0.8788 +vt 0.7284 0.8788 +vt 0.7284 0.8913 +vt 0.6246 0.8913 +vt 0.1018 0.1087 +vt 0.2315 0.1087 +vt 0.6246 0.9036 +vt 0.7284 0.9036 +vt 0.7284 0.9156 +vt 0.6246 0.9156 +vt 0.7284 0.9272 +vt 0.6246 0.9272 +vt 0.7284 0.9381 +vt 0.6246 0.9381 +vt 0.7284 0.9483 +vt 0.6246 0.9483 +vt 0.7284 0.9902 +vt 0.6246 0.9902 +vt 0.1018 0.0098 +vt 0.2315 0.0098 +vt 0.2315 0.0517 +vt 0.1018 0.0517 +vt 0.2315 0.0619 +vt 0.1018 0.0619 +vt 0.2315 0.0728 +vt 0.1018 0.0728 +vt 0.2315 0.0844 +vt 0.1018 0.0844 +vt 0.2315 0.0964 +vt 0.1018 0.0964 +vt 0.2315 0.3788 +vt 0.1018 0.3788 +vt 0.2315 0.4156 +vt 0.1018 0.4156 +vt 0.2315 0.4272 +vt 0.1018 0.4272 +vt 0.2315 0.4381 +vt 0.1018 0.4381 +vt 0.2315 0.4483 +vt 0.1018 0.4483 +vt 0.2315 0.4902 +vt 0.1018 0.4902 +vt 0.1140 0.4999 +vt 0.2193 0.4999 +vt 0.2193 0.5419 +vt 0.1140 0.5419 +vt 0.2193 0.5520 +vt 0.1140 0.5520 +vt 0.2193 0.5630 +vt 0.1140 0.5630 +vt 0.2193 0.5745 +vt 0.1140 0.5745 +vt 0.2193 0.5865 +vt 0.1140 0.5865 +vt 0.3725 0.3774 +vt 0.4216 0.3774 +vt 0.4216 0.3002 +vt 0.3725 0.3002 +vt 0.3725 0.2880 +vt 0.4216 0.2880 +vt 0.4650 0.8874 +vt 0.4655 0.8779 +vt 0.4753 0.8781 +vt 0.4748 0.8885 +vt 0.5000 0.8793 +vt 0.4994 0.8904 +vt 0.0427 0.1453 +vt 0.0427 0.1342 +vt 0.0558 0.1340 +vt 0.0558 0.1457 +vt 0.0703 0.1338 +vt 0.0703 0.1460 +vt 0.0858 0.1338 +vt 0.0858 0.1461 +vt 0.0443 0.8779 +vt 0.0448 0.8874 +vt 0.0350 0.8885 +vt 0.0345 0.8781 +vt 0.0104 0.8904 +vt 0.0098 0.8793 +vt 0.2906 0.1342 +vt 0.2906 0.1453 +vt 0.2775 0.1457 +vt 0.2775 0.1340 +vt 0.2630 0.1460 +vt 0.2630 0.1338 +vt 0.2475 0.1461 +vt 0.2475 0.1338 +vt 0.4635 0.8959 +vt 0.4731 0.8981 +vt 0.4991 0.8922 +vt 0.4974 0.9027 +vt 0.0427 0.1576 +vt 0.0427 0.1471 +vt 0.0558 0.1467 +vt 0.0558 0.1580 +vt 0.0703 0.1464 +vt 0.0703 0.1583 +vt 0.0858 0.1463 +vt 0.0858 0.1585 +vt 0.0463 0.8959 +vt 0.0367 0.8981 +vt 0.0124 0.9027 +vt 0.0107 0.8922 +vt 0.2906 0.1471 +vt 0.2906 0.1576 +vt 0.2775 0.1580 +vt 0.2775 0.1467 +vt 0.2630 0.1583 +vt 0.2630 0.1464 +vt 0.2475 0.1585 +vt 0.2475 0.1463 +vt 0.4611 0.9042 +vt 0.4704 0.9075 +vt 0.4970 0.9045 +vt 0.4940 0.9147 +vt 0.0427 0.1696 +vt 0.0427 0.1594 +vt 0.0558 0.1590 +vt 0.0558 0.1700 +vt 0.0703 0.1587 +vt 0.0703 0.1703 +vt 0.0858 0.1586 +vt 0.0858 0.1705 +vt 0.0487 0.9042 +vt 0.0394 0.9075 +vt 0.0158 0.9147 +vt 0.0128 0.9045 +vt 0.2906 0.1594 +vt 0.2906 0.1696 +vt 0.2775 0.1700 +vt 0.2775 0.1590 +vt 0.2630 0.1703 +vt 0.2630 0.1587 +vt 0.2475 0.1705 +vt 0.2475 0.1586 +vt 0.4578 0.9122 +vt 0.4667 0.9164 +vt 0.4934 0.9165 +vt 0.4893 0.9263 +vt 0.0427 0.1812 +vt 0.0427 0.1714 +vt 0.0558 0.1710 +vt 0.0558 0.1816 +vt 0.0703 0.1707 +vt 0.0703 0.1818 +vt 0.0858 0.1706 +vt 0.0858 0.1820 +vt 0.0520 0.9122 +vt 0.0431 0.9164 +vt 0.0205 0.9263 +vt 0.0164 0.9165 +vt 0.2906 0.1714 +vt 0.2906 0.1812 +vt 0.2775 0.1816 +vt 0.2775 0.1710 +vt 0.2630 0.1818 +vt 0.2630 0.1707 +vt 0.2475 0.1820 +vt 0.2475 0.1706 +vt 0.4537 0.9197 +vt 0.4620 0.9249 +vt 0.4885 0.9279 +vt 0.4834 0.9373 +vt 0.0427 0.1922 +vt 0.0427 0.1828 +vt 0.0558 0.1825 +vt 0.0558 0.1925 +vt 0.0703 0.1823 +vt 0.0703 0.1928 +vt 0.0858 0.1821 +vt 0.0858 0.1929 +vt 0.0561 0.9197 +vt 0.0478 0.9249 +vt 0.0264 0.9373 +vt 0.0213 0.9279 +vt 0.2906 0.1828 +vt 0.2906 0.1922 +vt 0.2775 0.1925 +vt 0.2775 0.1825 +vt 0.2630 0.1928 +vt 0.2630 0.1823 +vt 0.2475 0.1929 +vt 0.2475 0.1821 +vt 0.4487 0.9267 +vt 0.4564 0.9329 +vt 0.4824 0.9388 +vt 0.4762 0.9475 +vt 0.0427 0.2024 +vt 0.0427 0.1937 +vt 0.0558 0.1934 +vt 0.0558 0.2027 +vt 0.0703 0.1932 +vt 0.0703 0.2030 +vt 0.0858 0.1930 +vt 0.0858 0.2031 +vt 0.0611 0.9267 +vt 0.0534 0.9329 +vt 0.0336 0.9475 +vt 0.0274 0.9388 +vt 0.2906 0.1937 +vt 0.2906 0.2024 +vt 0.2775 0.2027 +vt 0.2775 0.1934 +vt 0.2630 0.2030 +vt 0.2630 0.1932 +vt 0.2475 0.2031 +vt 0.2475 0.1930 +vt 0.4429 0.9331 +vt 0.4499 0.9401 +vt 0.4751 0.9489 +vt 0.4680 0.9569 +vt 0.0427 0.2421 +vt 0.0427 0.2062 +vt 0.0558 0.2049 +vt 0.0558 0.2434 +vt 0.0703 0.2040 +vt 0.0703 0.2443 +vt 0.0858 0.2034 +vt 0.0858 0.2449 +vt 0.0669 0.9331 +vt 0.0599 0.9401 +vt 0.0418 0.9569 +vt 0.0347 0.9489 +vt 0.2906 0.2062 +vt 0.2906 0.2421 +vt 0.2775 0.2434 +vt 0.2775 0.2049 +vt 0.2630 0.2443 +vt 0.2630 0.2040 +vt 0.2475 0.2449 +vt 0.2475 0.2034 +vt 0.4365 0.9389 +vt 0.4427 0.9466 +vt 0.4667 0.9582 +vt 0.4587 0.9653 +vt 0.2674 0.6963 +vt 0.2674 0.7322 +vt 0.2567 0.7335 +vt 0.2567 0.6950 +vt 0.2449 0.7344 +vt 0.2449 0.6941 +vt 0.2323 0.7350 +vt 0.2323 0.6935 +vt 0.0733 0.9389 +vt 0.0671 0.9466 +vt 0.0511 0.9653 +vt 0.0431 0.9582 +vt 0.0659 0.7322 +vt 0.0659 0.6963 +vt 0.0766 0.6950 +vt 0.0766 0.7335 +vt 0.0884 0.6941 +vt 0.0884 0.7344 +vt 0.1010 0.6935 +vt 0.1010 0.7350 +vt 0.4295 0.9439 +vt 0.4347 0.9522 +vt 0.4573 0.9664 +vt 0.4486 0.9726 +vt 0.2674 0.6838 +vt 0.2674 0.6925 +vt 0.2567 0.6929 +vt 0.2567 0.6835 +vt 0.2449 0.6931 +vt 0.2449 0.6833 +vt 0.2323 0.6932 +vt 0.2323 0.6832 +vt 0.0803 0.9439 +vt 0.0751 0.9522 +vt 0.0612 0.9726 +vt 0.0525 0.9664 +vt 0.0659 0.6925 +vt 0.0659 0.6838 +vt 0.0766 0.6835 +vt 0.0766 0.6929 +vt 0.0884 0.6833 +vt 0.0884 0.6931 +vt 0.1010 0.6832 +vt 0.1010 0.6932 +vt 0.4220 0.9480 +vt 0.4262 0.9569 +vt 0.4471 0.9736 +vt 0.4377 0.9787 +vt 0.2674 0.6730 +vt 0.2674 0.6823 +vt 0.2567 0.6826 +vt 0.2567 0.6726 +vt 0.2449 0.6829 +vt 0.2449 0.6724 +vt 0.2323 0.6831 +vt 0.2323 0.6722 +vt 0.0878 0.9480 +vt 0.0836 0.9569 +vt 0.0721 0.9787 +vt 0.0627 0.9736 +vt 0.0659 0.6823 +vt 0.0659 0.6730 +vt 0.0766 0.6726 +vt 0.0766 0.6826 +vt 0.0884 0.6724 +vt 0.0884 0.6829 +vt 0.1010 0.6722 +vt 0.1010 0.6831 +vt 0.4140 0.9513 +vt 0.4173 0.9606 +vt 0.4361 0.9795 +vt 0.4263 0.9836 +vt 0.2674 0.6615 +vt 0.2674 0.6713 +vt 0.2567 0.6717 +vt 0.2567 0.6611 +vt 0.2449 0.6720 +vt 0.2449 0.6609 +vt 0.2323 0.6721 +vt 0.2323 0.6607 +vt 0.0958 0.9513 +vt 0.0925 0.9606 +vt 0.0835 0.9836 +vt 0.0737 0.9795 +vt 0.0659 0.6713 +vt 0.0659 0.6615 +vt 0.0766 0.6611 +vt 0.0766 0.6717 +vt 0.0884 0.6609 +vt 0.0884 0.6720 +vt 0.1010 0.6607 +vt 0.1010 0.6721 +vt 0.4057 0.9537 +vt 0.4079 0.9633 +vt 0.4245 0.9842 +vt 0.4143 0.9872 +vt 0.2674 0.6495 +vt 0.2674 0.6598 +vt 0.2567 0.6601 +vt 0.2567 0.6491 +vt 0.2449 0.6604 +vt 0.2449 0.6489 +vt 0.2323 0.6606 +vt 0.2323 0.6487 +vt 0.1041 0.9537 +vt 0.1019 0.9633 +vt 0.0955 0.9872 +vt 0.0853 0.9842 +vt 0.0659 0.6598 +vt 0.0659 0.6495 +vt 0.0766 0.6491 +vt 0.0766 0.6601 +vt 0.0884 0.6489 +vt 0.0884 0.6604 +vt 0.1010 0.6487 +vt 0.1010 0.6606 +vt 0.3972 0.9552 +vt 0.3983 0.9650 +vt 0.4125 0.9876 +vt 0.4020 0.9893 +vt 0.2674 0.6372 +vt 0.2674 0.6477 +vt 0.2567 0.6481 +vt 0.2567 0.6368 +vt 0.2449 0.6484 +vt 0.2449 0.6366 +vt 0.2323 0.6486 +vt 0.2323 0.6364 +vt 0.1126 0.9552 +vt 0.1115 0.9650 +vt 0.1078 0.9893 +vt 0.0973 0.9876 +vt 0.0659 0.6477 +vt 0.0659 0.6372 +vt 0.0766 0.6368 +vt 0.0766 0.6481 +vt 0.0884 0.6366 +vt 0.0884 0.6484 +vt 0.1010 0.6364 +vt 0.1010 0.6486 +vt 0.3877 0.9557 +vt 0.3879 0.9655 +vt 0.4002 0.9896 +vt 0.3891 0.9902 +vt 0.2674 0.6243 +vt 0.2674 0.6354 +vt 0.2567 0.6358 +vt 0.2567 0.6241 +vt 0.2449 0.6361 +vt 0.2449 0.6240 +vt 0.2323 0.6363 +vt 0.2323 0.6239 +vt 0.1221 0.9557 +vt 0.1219 0.9655 +vt 0.1207 0.9902 +vt 0.1096 0.9896 +vt 0.0659 0.6354 +vt 0.0659 0.6243 +vt 0.0766 0.6241 +vt 0.0766 0.6358 +vt 0.0884 0.6240 +vt 0.0884 0.6361 +vt 0.1010 0.6239 +vt 0.1010 0.6363 +vt 0.2997 0.8577 +vt 0.2992 0.8672 +vt 0.2894 0.8670 +vt 0.2899 0.8566 +vt 0.2647 0.8658 +vt 0.2653 0.8547 +vt 0.2906 0.3547 +vt 0.2906 0.3658 +vt 0.2775 0.3660 +vt 0.2775 0.3543 +vt 0.2630 0.3662 +vt 0.2630 0.3540 +vt 0.2475 0.3662 +vt 0.2475 0.3539 +vt 0.2106 0.8672 +vt 0.2101 0.8577 +vt 0.2199 0.8566 +vt 0.2204 0.8670 +vt 0.2445 0.8547 +vt 0.2451 0.8658 +vt 0.0427 0.3658 +vt 0.0427 0.3547 +vt 0.0558 0.3543 +vt 0.0558 0.3660 +vt 0.0703 0.3540 +vt 0.0703 0.3662 +vt 0.0858 0.3539 +vt 0.0858 0.3662 +vt 0.3012 0.8492 +vt 0.2916 0.8470 +vt 0.2656 0.8529 +vt 0.2673 0.8424 +vt 0.2906 0.3424 +vt 0.2906 0.3529 +vt 0.2775 0.3533 +vt 0.2775 0.3420 +vt 0.2630 0.3536 +vt 0.2630 0.3417 +vt 0.2475 0.3537 +vt 0.2475 0.3415 +vt 0.2086 0.8492 +vt 0.2182 0.8470 +vt 0.2425 0.8424 +vt 0.2442 0.8529 +vt 0.0427 0.3529 +vt 0.0427 0.3424 +vt 0.0558 0.3420 +vt 0.0558 0.3533 +vt 0.0703 0.3417 +vt 0.0703 0.3536 +vt 0.0858 0.3415 +vt 0.0858 0.3537 +vt 0.3036 0.8409 +vt 0.2943 0.8376 +vt 0.2677 0.8406 +vt 0.2707 0.8304 +vt 0.2906 0.3304 +vt 0.2906 0.3406 +vt 0.2775 0.3410 +vt 0.2775 0.3300 +vt 0.2630 0.3413 +vt 0.2630 0.3297 +vt 0.2475 0.3414 +vt 0.2475 0.3295 +vt 0.2062 0.8409 +vt 0.2155 0.8376 +vt 0.2391 0.8304 +vt 0.2421 0.8406 +vt 0.0427 0.3406 +vt 0.0427 0.3304 +vt 0.0558 0.3300 +vt 0.0558 0.3410 +vt 0.0703 0.3297 +vt 0.0703 0.3413 +vt 0.0858 0.3295 +vt 0.0858 0.3414 +vt 0.3069 0.8329 +vt 0.2980 0.8287 +vt 0.2713 0.8286 +vt 0.2754 0.8188 +vt 0.2906 0.3188 +vt 0.2906 0.3286 +vt 0.2775 0.3290 +vt 0.2775 0.3184 +vt 0.2630 0.3293 +vt 0.2630 0.3182 +vt 0.2475 0.3294 +vt 0.2475 0.3180 +vt 0.2029 0.8329 +vt 0.2118 0.8287 +vt 0.2344 0.8188 +vt 0.2385 0.8286 +vt 0.0427 0.3286 +vt 0.0427 0.3188 +vt 0.0558 0.3184 +vt 0.0558 0.3290 +vt 0.0703 0.3182 +vt 0.0703 0.3293 +vt 0.0858 0.3180 +vt 0.0858 0.3294 +vt 0.3110 0.8254 +vt 0.3027 0.8202 +vt 0.2762 0.8172 +vt 0.2813 0.8078 +vt 0.2906 0.3078 +vt 0.2906 0.3172 +vt 0.2775 0.3175 +vt 0.2775 0.3075 +vt 0.2630 0.3177 +vt 0.2630 0.3072 +vt 0.2475 0.3179 +vt 0.2475 0.3071 +vt 0.1988 0.8254 +vt 0.2071 0.8202 +vt 0.2285 0.8078 +vt 0.2336 0.8172 +vt 0.0427 0.3172 +vt 0.0427 0.3078 +vt 0.0558 0.3075 +vt 0.0558 0.3175 +vt 0.0703 0.3072 +vt 0.0703 0.3177 +vt 0.0858 0.3071 +vt 0.0858 0.3179 +vt 0.3160 0.8184 +vt 0.3083 0.8122 +vt 0.2823 0.8063 +vt 0.2885 0.7976 +vt 0.2906 0.2976 +vt 0.2906 0.3063 +vt 0.2775 0.3066 +vt 0.2775 0.2973 +vt 0.2630 0.3068 +vt 0.2630 0.2970 +vt 0.2475 0.3070 +vt 0.2475 0.2969 +vt 0.1938 0.8184 +vt 0.2015 0.8122 +vt 0.2213 0.7976 +vt 0.2275 0.8063 +vt 0.0427 0.3063 +vt 0.0427 0.2976 +vt 0.0558 0.2973 +vt 0.0558 0.3066 +vt 0.0703 0.2970 +vt 0.0703 0.3068 +vt 0.0858 0.2969 +vt 0.0858 0.3070 +vt 0.3218 0.8120 +vt 0.3148 0.8050 +vt 0.2896 0.7962 +vt 0.2967 0.7882 +vt 0.2906 0.2579 +vt 0.2906 0.2938 +vt 0.2775 0.2951 +vt 0.2775 0.2566 +vt 0.2630 0.2960 +vt 0.2630 0.2557 +vt 0.2475 0.2966 +vt 0.2475 0.2551 +vt 0.1880 0.8120 +vt 0.1950 0.8050 +vt 0.2131 0.7882 +vt 0.2202 0.7962 +vt 0.0427 0.2938 +vt 0.0427 0.2579 +vt 0.0558 0.2566 +vt 0.0558 0.2951 +vt 0.0703 0.2557 +vt 0.0703 0.2960 +vt 0.0858 0.2551 +vt 0.0858 0.2966 +vt 0.3282 0.8062 +vt 0.3220 0.7985 +vt 0.2980 0.7869 +vt 0.3060 0.7798 +vt 0.5773 0.7938 +vt 0.5773 0.7579 +vt 0.5878 0.7566 +vt 0.5878 0.7951 +vt 0.5994 0.7557 +vt 0.5994 0.7960 +vt 0.6118 0.7551 +vt 0.6118 0.7966 +vt 0.1816 0.8062 +vt 0.1878 0.7985 +vt 0.2038 0.7798 +vt 0.2118 0.7869 +vt 0.7757 0.7579 +vt 0.7757 0.7938 +vt 0.7652 0.7951 +vt 0.7652 0.7566 +vt 0.7536 0.7960 +vt 0.7536 0.7557 +vt 0.7412 0.7966 +vt 0.7412 0.7551 +vt 0.3352 0.8012 +vt 0.3300 0.7929 +vt 0.3074 0.7787 +vt 0.3161 0.7725 +vt 0.5773 0.8063 +vt 0.5773 0.7976 +vt 0.5878 0.7973 +vt 0.5878 0.8066 +vt 0.5994 0.7970 +vt 0.5994 0.8068 +vt 0.6118 0.7969 +vt 0.6118 0.8070 +vt 0.1746 0.8012 +vt 0.1798 0.7929 +vt 0.1937 0.7725 +vt 0.2024 0.7787 +vt 0.7757 0.7976 +vt 0.7757 0.8063 +vt 0.7652 0.8066 +vt 0.7652 0.7973 +vt 0.7536 0.8068 +vt 0.7536 0.7970 +vt 0.7412 0.8070 +vt 0.7412 0.7969 +vt 0.3427 0.7971 +vt 0.3385 0.7882 +vt 0.3176 0.7715 +vt 0.3270 0.7664 +vt 0.5773 0.8172 +vt 0.5773 0.8078 +vt 0.5878 0.8075 +vt 0.5878 0.8175 +vt 0.5994 0.8072 +vt 0.5994 0.8177 +vt 0.6118 0.8071 +vt 0.6118 0.8179 +vt 0.1671 0.7971 +vt 0.1713 0.7882 +vt 0.1828 0.7664 +vt 0.1922 0.7715 +vt 0.7757 0.8078 +vt 0.7757 0.8172 +vt 0.7652 0.8175 +vt 0.7652 0.8075 +vt 0.7536 0.8177 +vt 0.7536 0.8072 +vt 0.7412 0.8179 +vt 0.7412 0.8071 +vt 0.3507 0.7938 +vt 0.3474 0.7845 +vt 0.3286 0.7656 +vt 0.3384 0.7615 +vt 0.5773 0.8286 +vt 0.5773 0.8188 +vt 0.5878 0.8184 +vt 0.5878 0.8290 +vt 0.5994 0.8182 +vt 0.5994 0.8293 +vt 0.6118 0.8180 +vt 0.6118 0.8294 +vt 0.1591 0.7938 +vt 0.1624 0.7845 +vt 0.1714 0.7615 +vt 0.1812 0.7656 +vt 0.7757 0.8188 +vt 0.7757 0.8286 +vt 0.7652 0.8290 +vt 0.7652 0.8184 +vt 0.7536 0.8293 +vt 0.7536 0.8182 +vt 0.7412 0.8294 +vt 0.7412 0.8180 +vt 0.3590 0.7914 +vt 0.3568 0.7818 +vt 0.3402 0.7609 +vt 0.3504 0.7579 +vt 0.5773 0.8406 +vt 0.5773 0.8304 +vt 0.5878 0.8300 +vt 0.5878 0.8410 +vt 0.5994 0.8297 +vt 0.5994 0.8413 +vt 0.6118 0.8295 +vt 0.6118 0.8414 +vt 0.1508 0.7914 +vt 0.1530 0.7818 +vt 0.1594 0.7579 +vt 0.1696 0.7609 +vt 0.7757 0.8304 +vt 0.7757 0.8406 +vt 0.7652 0.8410 +vt 0.7652 0.8300 +vt 0.7536 0.8413 +vt 0.7536 0.8297 +vt 0.7412 0.8414 +vt 0.7412 0.8295 +vt 0.3675 0.7899 +vt 0.3664 0.7801 +vt 0.3522 0.7575 +vt 0.3627 0.7558 +vt 0.5773 0.8529 +vt 0.5773 0.8424 +vt 0.5878 0.8420 +vt 0.5878 0.8533 +vt 0.5994 0.8417 +vt 0.5994 0.8536 +vt 0.6118 0.8415 +vt 0.6118 0.8537 +vt 0.1423 0.7899 +vt 0.1434 0.7801 +vt 0.1471 0.7558 +vt 0.1576 0.7575 +vt 0.7757 0.8424 +vt 0.7757 0.8529 +vt 0.7652 0.8533 +vt 0.7652 0.8420 +vt 0.7536 0.8536 +vt 0.7536 0.8417 +vt 0.7412 0.8537 +vt 0.7412 0.8415 +vt 0.3770 0.7894 +vt 0.3768 0.7796 +vt 0.3645 0.7555 +vt 0.3756 0.7549 +vt 0.5773 0.8658 +vt 0.5773 0.8547 +vt 0.5878 0.8543 +vt 0.5878 0.8660 +vt 0.5994 0.8540 +vt 0.5994 0.8662 +vt 0.6118 0.8539 +vt 0.6118 0.8662 +vt 0.1328 0.7894 +vt 0.1330 0.7796 +vt 0.1342 0.7549 +vt 0.1453 0.7555 +vt 0.7757 0.8547 +vt 0.7757 0.8658 +vt 0.7652 0.8660 +vt 0.7652 0.8543 +vt 0.7536 0.8662 +vt 0.7536 0.8540 +vt 0.7412 0.8662 +vt 0.7412 0.8539 +vt 0.3972 0.7899 +vt 0.3877 0.7894 +vt 0.3879 0.7796 +vt 0.3983 0.7801 +vt 0.3891 0.7549 +vt 0.4002 0.7555 +vt 0.5773 0.8904 +vt 0.5773 0.8793 +vt 0.5878 0.8791 +vt 0.5878 0.8908 +vt 0.5994 0.8789 +vt 0.5994 0.8911 +vt 0.6118 0.8789 +vt 0.6118 0.8912 +vt 0.1221 0.7894 +vt 0.1126 0.7899 +vt 0.1115 0.7801 +vt 0.1219 0.7796 +vt 0.1096 0.7555 +vt 0.1207 0.7549 +vt 0.7757 0.8793 +vt 0.7757 0.8904 +vt 0.7652 0.8908 +vt 0.7652 0.8791 +vt 0.7536 0.8911 +vt 0.7536 0.8789 +vt 0.7412 0.8912 +vt 0.7412 0.8789 +vt 0.4057 0.7914 +vt 0.4079 0.7818 +vt 0.4020 0.7558 +vt 0.4125 0.7575 +vt 0.5773 0.9027 +vt 0.5773 0.8922 +vt 0.5878 0.8918 +vt 0.5878 0.9031 +vt 0.5994 0.8915 +vt 0.5994 0.9034 +vt 0.6118 0.8914 +vt 0.6118 0.9036 +vt 0.1041 0.7914 +vt 0.1019 0.7818 +vt 0.0973 0.7575 +vt 0.1078 0.7558 +vt 0.7757 0.8922 +vt 0.7757 0.9027 +vt 0.7652 0.9031 +vt 0.7652 0.8918 +vt 0.7536 0.9034 +vt 0.7536 0.8915 +vt 0.7412 0.9036 +vt 0.7412 0.8914 +vt 0.4140 0.7938 +vt 0.4173 0.7845 +vt 0.4143 0.7579 +vt 0.4245 0.7609 +vt 0.5773 0.9147 +vt 0.5773 0.9045 +vt 0.5878 0.9041 +vt 0.5878 0.9151 +vt 0.5994 0.9038 +vt 0.5994 0.9154 +vt 0.6118 0.9037 +vt 0.6118 0.9156 +vt 0.0958 0.7938 +vt 0.0925 0.7845 +vt 0.0853 0.7609 +vt 0.0955 0.7579 +vt 0.7757 0.9045 +vt 0.7757 0.9147 +vt 0.7652 0.9151 +vt 0.7652 0.9041 +vt 0.7536 0.9154 +vt 0.7536 0.9038 +vt 0.7412 0.9156 +vt 0.7412 0.9037 +vt 0.4220 0.7971 +vt 0.4262 0.7882 +vt 0.4263 0.7615 +vt 0.4361 0.7656 +vt 0.5773 0.9263 +vt 0.5773 0.9165 +vt 0.5878 0.9161 +vt 0.5878 0.9267 +vt 0.5994 0.9158 +vt 0.5994 0.9269 +vt 0.6118 0.9157 +vt 0.6118 0.9271 +vt 0.0878 0.7971 +vt 0.0836 0.7882 +vt 0.0737 0.7656 +vt 0.0835 0.7615 +vt 0.7757 0.9165 +vt 0.7757 0.9263 +vt 0.7652 0.9267 +vt 0.7652 0.9161 +vt 0.7536 0.9269 +vt 0.7536 0.9158 +vt 0.7412 0.9271 +vt 0.7412 0.9157 +vt 0.4295 0.8012 +vt 0.4347 0.7929 +vt 0.4377 0.7664 +vt 0.4471 0.7715 +vt 0.5773 0.9373 +vt 0.5773 0.9279 +vt 0.5878 0.9276 +vt 0.5878 0.9376 +vt 0.5994 0.9274 +vt 0.5994 0.9379 +vt 0.6118 0.9272 +vt 0.6118 0.9380 +vt 0.0803 0.8012 +vt 0.0751 0.7929 +vt 0.0627 0.7715 +vt 0.0721 0.7664 +vt 0.7757 0.9279 +vt 0.7757 0.9373 +vt 0.7652 0.9376 +vt 0.7652 0.9276 +vt 0.7536 0.9379 +vt 0.7536 0.9274 +vt 0.7412 0.9380 +vt 0.7412 0.9272 +vt 0.4365 0.8062 +vt 0.4427 0.7985 +vt 0.4486 0.7725 +vt 0.4573 0.7787 +vt 0.5773 0.9475 +vt 0.5773 0.9388 +vt 0.5878 0.9385 +vt 0.5878 0.9478 +vt 0.5994 0.9383 +vt 0.5994 0.9481 +vt 0.6118 0.9381 +vt 0.6118 0.9482 +vt 0.0733 0.8062 +vt 0.0671 0.7985 +vt 0.0525 0.7787 +vt 0.0612 0.7725 +vt 0.7757 0.9388 +vt 0.7757 0.9475 +vt 0.7652 0.9478 +vt 0.7652 0.9385 +vt 0.7536 0.9481 +vt 0.7536 0.9383 +vt 0.7412 0.9482 +vt 0.7412 0.9381 +vt 0.4429 0.8120 +vt 0.4499 0.8050 +vt 0.4587 0.7798 +vt 0.4667 0.7869 +vt 0.5773 0.9872 +vt 0.5773 0.9513 +vt 0.5878 0.9500 +vt 0.5878 0.9885 +vt 0.5994 0.9491 +vt 0.5994 0.9894 +vt 0.6118 0.9485 +vt 0.6118 0.9900 +vt 0.0669 0.8120 +vt 0.0599 0.8050 +vt 0.0431 0.7869 +vt 0.0511 0.7798 +vt 0.7757 0.9513 +vt 0.7757 0.9872 +vt 0.7652 0.9885 +vt 0.7652 0.9500 +vt 0.7536 0.9894 +vt 0.7536 0.9491 +vt 0.7412 0.9900 +vt 0.7412 0.9485 +vt 0.4487 0.8184 +vt 0.4564 0.8122 +vt 0.4680 0.7882 +vt 0.4751 0.7962 +vt 0.0427 0.0487 +vt 0.0427 0.0128 +vt 0.0558 0.0115 +vt 0.0558 0.0500 +vt 0.0703 0.0106 +vt 0.0703 0.0509 +vt 0.0858 0.0100 +vt 0.0858 0.0515 +vt 0.0611 0.8184 +vt 0.0534 0.8122 +vt 0.0347 0.7962 +vt 0.0418 0.7882 +vt 0.2906 0.0128 +vt 0.2906 0.0487 +vt 0.2775 0.0500 +vt 0.2775 0.0115 +vt 0.2630 0.0509 +vt 0.2630 0.0106 +vt 0.2475 0.0515 +vt 0.2475 0.0100 +vt 0.4537 0.8254 +vt 0.4620 0.8202 +vt 0.4762 0.7976 +vt 0.4824 0.8063 +vt 0.0427 0.0612 +vt 0.0427 0.0525 +vt 0.0558 0.0522 +vt 0.0558 0.0615 +vt 0.0703 0.0519 +vt 0.0703 0.0617 +vt 0.0858 0.0518 +vt 0.0858 0.0619 +vt 0.0561 0.8254 +vt 0.0478 0.8202 +vt 0.0274 0.8063 +vt 0.0336 0.7976 +vt 0.2906 0.0525 +vt 0.2906 0.0612 +vt 0.2775 0.0615 +vt 0.2775 0.0522 +vt 0.2630 0.0617 +vt 0.2630 0.0519 +vt 0.2475 0.0619 +vt 0.2475 0.0518 +vt 0.4578 0.8329 +vt 0.4667 0.8287 +vt 0.4834 0.8078 +vt 0.4885 0.8172 +vt 0.0427 0.0721 +vt 0.0427 0.0627 +vt 0.0558 0.0624 +vt 0.0558 0.0724 +vt 0.0703 0.0621 +vt 0.0703 0.0726 +vt 0.0858 0.0620 +vt 0.0858 0.0728 +vt 0.0520 0.8329 +vt 0.0431 0.8287 +vt 0.0213 0.8172 +vt 0.0264 0.8078 +vt 0.2906 0.0627 +vt 0.2906 0.0721 +vt 0.2775 0.0724 +vt 0.2775 0.0624 +vt 0.2630 0.0726 +vt 0.2630 0.0621 +vt 0.2475 0.0728 +vt 0.2475 0.0620 +vt 0.4611 0.8409 +vt 0.4704 0.8376 +vt 0.4893 0.8188 +vt 0.4934 0.8286 +vt 0.0427 0.0835 +vt 0.0427 0.0737 +vt 0.0558 0.0733 +vt 0.0558 0.0839 +vt 0.0703 0.0731 +vt 0.0703 0.0842 +vt 0.0858 0.0729 +vt 0.0858 0.0843 +vt 0.0487 0.8409 +vt 0.0394 0.8376 +vt 0.0164 0.8286 +vt 0.0205 0.8188 +vt 0.2906 0.0737 +vt 0.2906 0.0835 +vt 0.2775 0.0839 +vt 0.2775 0.0733 +vt 0.2630 0.0842 +vt 0.2630 0.0731 +vt 0.2475 0.0843 +vt 0.2475 0.0729 +vt 0.4635 0.8492 +vt 0.4731 0.8470 +vt 0.4940 0.8304 +vt 0.4970 0.8406 +vt 0.0427 0.0955 +vt 0.0427 0.0853 +vt 0.0558 0.0849 +vt 0.0558 0.0959 +vt 0.0703 0.0846 +vt 0.0703 0.0962 +vt 0.0858 0.0844 +vt 0.0858 0.0963 +vt 0.0463 0.8492 +vt 0.0367 0.8470 +vt 0.0128 0.8406 +vt 0.0158 0.8304 +vt 0.2906 0.0853 +vt 0.2906 0.0955 +vt 0.2775 0.0959 +vt 0.2775 0.0849 +vt 0.2630 0.0962 +vt 0.2630 0.0846 +vt 0.2475 0.0963 +vt 0.2475 0.0844 +vt 0.4650 0.8577 +vt 0.4748 0.8566 +vt 0.4974 0.8424 +vt 0.4991 0.8529 +vt 0.0427 0.1078 +vt 0.0427 0.0973 +vt 0.0558 0.0969 +vt 0.0558 0.1082 +vt 0.0703 0.0966 +vt 0.0703 0.1085 +vt 0.0858 0.0964 +vt 0.0858 0.1086 +vt 0.0448 0.8577 +vt 0.0350 0.8566 +vt 0.0107 0.8529 +vt 0.0124 0.8424 +vt 0.2906 0.0973 +vt 0.2906 0.1078 +vt 0.2775 0.1082 +vt 0.2775 0.0969 +vt 0.2630 0.1085 +vt 0.2630 0.0966 +vt 0.2475 0.1086 +vt 0.2475 0.0964 +vt 0.4655 0.8672 +vt 0.4753 0.8670 +vt 0.4994 0.8547 +vt 0.5000 0.8658 +vt 0.0427 0.1207 +vt 0.0427 0.1096 +vt 0.0558 0.1092 +vt 0.0558 0.1209 +vt 0.0703 0.1089 +vt 0.0703 0.1211 +vt 0.0858 0.1088 +vt 0.0858 0.1211 +vt 0.0443 0.8672 +vt 0.0345 0.8670 +vt 0.0098 0.8658 +vt 0.0104 0.8547 +vt 0.2906 0.1096 +vt 0.2906 0.1207 +vt 0.2775 0.1209 +vt 0.2775 0.1092 +vt 0.2630 0.1211 +vt 0.2630 0.1089 +vt 0.2475 0.1211 +vt 0.2475 0.1088 +vt 0.2101 0.8874 +vt 0.2106 0.8779 +vt 0.2204 0.8781 +vt 0.2199 0.8885 +vt 0.2451 0.8793 +vt 0.2445 0.8904 +vt 0.0427 0.3904 +vt 0.0427 0.3793 +vt 0.0558 0.3791 +vt 0.0558 0.3908 +vt 0.0703 0.3789 +vt 0.0703 0.3911 +vt 0.0858 0.3789 +vt 0.0858 0.3912 +vt 0.2992 0.8779 +vt 0.2997 0.8874 +vt 0.2899 0.8885 +vt 0.2894 0.8781 +vt 0.2653 0.8904 +vt 0.2647 0.8793 +vt 0.2906 0.3793 +vt 0.2906 0.3904 +vt 0.2775 0.3908 +vt 0.2775 0.3791 +vt 0.2630 0.3911 +vt 0.2630 0.3789 +vt 0.2475 0.3912 +vt 0.2475 0.3789 +vt 0.2086 0.8959 +vt 0.2182 0.8981 +vt 0.2442 0.8922 +vt 0.2425 0.9027 +vt 0.0427 0.4027 +vt 0.0427 0.3922 +vt 0.0558 0.3918 +vt 0.0558 0.4031 +vt 0.0703 0.3915 +vt 0.0703 0.4034 +vt 0.0858 0.3914 +vt 0.0858 0.4036 +vt 0.3012 0.8959 +vt 0.2916 0.8981 +vt 0.2673 0.9027 +vt 0.2656 0.8922 +vt 0.2906 0.3922 +vt 0.2906 0.4027 +vt 0.2775 0.4031 +vt 0.2775 0.3918 +vt 0.2630 0.4034 +vt 0.2630 0.3915 +vt 0.2475 0.4036 +vt 0.2475 0.3914 +vt 0.2062 0.9042 +vt 0.2155 0.9075 +vt 0.2421 0.9045 +vt 0.2391 0.9147 +vt 0.0427 0.4147 +vt 0.0427 0.4045 +vt 0.0558 0.4041 +vt 0.0558 0.4151 +vt 0.0703 0.4038 +vt 0.0703 0.4154 +vt 0.0858 0.4037 +vt 0.0858 0.4156 +vt 0.3036 0.9042 +vt 0.2943 0.9075 +vt 0.2707 0.9147 +vt 0.2677 0.9045 +vt 0.2906 0.4045 +vt 0.2906 0.4147 +vt 0.2775 0.4151 +vt 0.2775 0.4041 +vt 0.2630 0.4154 +vt 0.2630 0.4038 +vt 0.2475 0.4156 +vt 0.2475 0.4037 +vt 0.2029 0.9122 +vt 0.2118 0.9164 +vt 0.2385 0.9165 +vt 0.2344 0.9263 +vt 0.0427 0.4263 +vt 0.0427 0.4165 +vt 0.0558 0.4161 +vt 0.0558 0.4267 +vt 0.0703 0.4158 +vt 0.0703 0.4269 +vt 0.0858 0.4157 +vt 0.0858 0.4271 +vt 0.3069 0.9122 +vt 0.2980 0.9164 +vt 0.2754 0.9263 +vt 0.2713 0.9165 +vt 0.2906 0.4165 +vt 0.2906 0.4263 +vt 0.2775 0.4267 +vt 0.2775 0.4161 +vt 0.2630 0.4269 +vt 0.2630 0.4158 +vt 0.2475 0.4271 +vt 0.2475 0.4157 +vt 0.1988 0.9197 +vt 0.2071 0.9249 +vt 0.2336 0.9279 +vt 0.2285 0.9373 +vt 0.0427 0.4373 +vt 0.0427 0.4279 +vt 0.0558 0.4276 +vt 0.0558 0.4376 +vt 0.0703 0.4274 +vt 0.0703 0.4379 +vt 0.0858 0.4272 +vt 0.0858 0.4380 +vt 0.3110 0.9197 +vt 0.3027 0.9249 +vt 0.2813 0.9373 +vt 0.2762 0.9279 +vt 0.2906 0.4279 +vt 0.2906 0.4373 +vt 0.2775 0.4376 +vt 0.2775 0.4276 +vt 0.2630 0.4379 +vt 0.2630 0.4274 +vt 0.2475 0.4380 +vt 0.2475 0.4272 +vt 0.1938 0.9267 +vt 0.2015 0.9329 +vt 0.2275 0.9388 +vt 0.2213 0.9475 +vt 0.0427 0.4475 +vt 0.0427 0.4388 +vt 0.0558 0.4385 +vt 0.0558 0.4478 +vt 0.0703 0.4383 +vt 0.0703 0.4481 +vt 0.0858 0.4381 +vt 0.0858 0.4482 +vt 0.3160 0.9267 +vt 0.3083 0.9329 +vt 0.2885 0.9475 +vt 0.2823 0.9388 +vt 0.2906 0.4388 +vt 0.2906 0.4475 +vt 0.2775 0.4478 +vt 0.2775 0.4385 +vt 0.2630 0.4481 +vt 0.2630 0.4383 +vt 0.2475 0.4482 +vt 0.2475 0.4381 +vt 0.1880 0.9331 +vt 0.1950 0.9401 +vt 0.2202 0.9489 +vt 0.2131 0.9569 +vt 0.0427 0.4872 +vt 0.0427 0.4513 +vt 0.0558 0.4500 +vt 0.0558 0.4885 +vt 0.0703 0.4491 +vt 0.0703 0.4894 +vt 0.0858 0.4485 +vt 0.0858 0.4900 +vt 0.3218 0.9331 +vt 0.3148 0.9401 +vt 0.2967 0.9569 +vt 0.2896 0.9489 +vt 0.2906 0.4513 +vt 0.2906 0.4872 +vt 0.2775 0.4885 +vt 0.2775 0.4500 +vt 0.2630 0.4894 +vt 0.2630 0.4491 +vt 0.2475 0.4900 +vt 0.2475 0.4485 +vt 0.1816 0.9389 +vt 0.1878 0.9466 +vt 0.2118 0.9582 +vt 0.2038 0.9653 +vt 0.0659 0.5388 +vt 0.0659 0.5030 +vt 0.0766 0.5017 +vt 0.0766 0.5401 +vt 0.0884 0.5007 +vt 0.0884 0.5411 +vt 0.1010 0.5001 +vt 0.1010 0.5417 +vt 0.3282 0.9389 +vt 0.3220 0.9466 +vt 0.3060 0.9653 +vt 0.2980 0.9582 +vt 0.2674 0.5030 +vt 0.2674 0.5388 +vt 0.2567 0.5401 +vt 0.2567 0.5017 +vt 0.2449 0.5411 +vt 0.2449 0.5007 +vt 0.2323 0.5417 +vt 0.2323 0.5001 +vt 0.1746 0.9439 +vt 0.1798 0.9522 +vt 0.2024 0.9664 +vt 0.1937 0.9726 +vt 0.0659 0.5513 +vt 0.0659 0.5426 +vt 0.0766 0.5423 +vt 0.0766 0.5516 +vt 0.0884 0.5420 +vt 0.0884 0.5518 +vt 0.1010 0.5419 +vt 0.1010 0.5520 +vt 0.3352 0.9439 +vt 0.3300 0.9522 +vt 0.3161 0.9726 +vt 0.3074 0.9664 +vt 0.2674 0.5426 +vt 0.2674 0.5513 +vt 0.2567 0.5516 +vt 0.2567 0.5423 +vt 0.2449 0.5518 +vt 0.2449 0.5420 +vt 0.2323 0.5520 +vt 0.2323 0.5419 +vt 0.1671 0.9480 +vt 0.1713 0.9569 +vt 0.1922 0.9736 +vt 0.1828 0.9787 +vt 0.0659 0.5622 +vt 0.0659 0.5528 +vt 0.0766 0.5525 +vt 0.0766 0.5625 +vt 0.0884 0.5522 +vt 0.0884 0.5628 +vt 0.1010 0.5521 +vt 0.1010 0.5629 +vt 0.3427 0.9480 +vt 0.3385 0.9569 +vt 0.3270 0.9787 +vt 0.3176 0.9736 +vt 0.2674 0.5528 +vt 0.2674 0.5622 +vt 0.2567 0.5625 +vt 0.2567 0.5525 +vt 0.2449 0.5628 +vt 0.2449 0.5522 +vt 0.2323 0.5629 +vt 0.2323 0.5521 +vt 0.1591 0.9513 +vt 0.1624 0.9606 +vt 0.1812 0.9795 +vt 0.1714 0.9836 +vt 0.0659 0.5737 +vt 0.0659 0.5638 +vt 0.0766 0.5634 +vt 0.0766 0.5740 +vt 0.0884 0.5632 +vt 0.0884 0.5743 +vt 0.1010 0.5630 +vt 0.1010 0.5745 +vt 0.3507 0.9513 +vt 0.3474 0.9606 +vt 0.3384 0.9836 +vt 0.3286 0.9795 +vt 0.2674 0.5638 +vt 0.2674 0.5737 +vt 0.2567 0.5740 +vt 0.2567 0.5634 +vt 0.2449 0.5743 +vt 0.2449 0.5632 +vt 0.2323 0.5745 +vt 0.2323 0.5630 +vt 0.1508 0.9537 +vt 0.1530 0.9633 +vt 0.1696 0.9842 +vt 0.1594 0.9872 +vt 0.0659 0.5856 +vt 0.0659 0.5754 +vt 0.0766 0.5750 +vt 0.0766 0.5860 +vt 0.0884 0.5747 +vt 0.0884 0.5863 +vt 0.1010 0.5746 +vt 0.1010 0.5865 +vt 0.3590 0.9537 +vt 0.3568 0.9633 +vt 0.3504 0.9872 +vt 0.3402 0.9842 +vt 0.2674 0.5754 +vt 0.2674 0.5856 +vt 0.2567 0.5860 +vt 0.2567 0.5750 +vt 0.2449 0.5863 +vt 0.2449 0.5747 +vt 0.2323 0.5865 +vt 0.2323 0.5746 +vt 0.1423 0.9552 +vt 0.1434 0.9650 +vt 0.1576 0.9876 +vt 0.1471 0.9893 +vt 0.0659 0.5979 +vt 0.0659 0.5874 +vt 0.0766 0.5870 +vt 0.0766 0.5983 +vt 0.0884 0.5867 +vt 0.0884 0.5986 +vt 0.1010 0.5866 +vt 0.1010 0.5988 +vt 0.3675 0.9552 +vt 0.3664 0.9650 +vt 0.3627 0.9893 +vt 0.3522 0.9876 +vt 0.2674 0.5874 +vt 0.2674 0.5979 +vt 0.2567 0.5983 +vt 0.2567 0.5870 +vt 0.2449 0.5986 +vt 0.2449 0.5867 +vt 0.2323 0.5988 +vt 0.2323 0.5866 +vt 0.1328 0.9557 +vt 0.1330 0.9655 +vt 0.1453 0.9896 +vt 0.1342 0.9902 +vt 0.0659 0.6108 +vt 0.0659 0.5997 +vt 0.0766 0.5993 +vt 0.0766 0.6110 +vt 0.0884 0.5991 +vt 0.0884 0.6112 +vt 0.1010 0.5989 +vt 0.1010 0.6113 +vt 0.3770 0.9557 +vt 0.3768 0.9655 +vt 0.3756 0.9902 +vt 0.3645 0.9896 +vt 0.2674 0.5997 +vt 0.2674 0.6108 +vt 0.2567 0.6110 +vt 0.2567 0.5993 +vt 0.2449 0.6112 +vt 0.2449 0.5991 +vt 0.2323 0.6113 +vt 0.2323 0.5989 +vt 0.7412 0.8663 +vt 0.7412 0.8788 +vt 0.7536 0.8664 +vt 0.7536 0.8787 +vt 0.7652 0.8665 +vt 0.7652 0.8786 +vt 0.7757 0.8667 +vt 0.7757 0.8784 +vt 0.8020 0.8670 +vt 0.8020 0.8781 +vt 0.0858 0.3788 +vt 0.0858 0.3663 +vt 0.0703 0.3787 +vt 0.0703 0.3664 +vt 0.0558 0.3786 +vt 0.0558 0.3665 +vt 0.0427 0.3784 +vt 0.0427 0.3667 +vt 0.0098 0.3781 +vt 0.0098 0.3670 +vt 0.1010 0.6238 +vt 0.0884 0.6237 +vt 0.0884 0.6114 +vt 0.0766 0.6236 +vt 0.0766 0.6115 +vt 0.0659 0.6234 +vt 0.0659 0.6117 +vt 0.0392 0.6232 +vt 0.0392 0.6120 +vt 0.2475 0.1212 +vt 0.2475 0.1337 +vt 0.2630 0.1213 +vt 0.2630 0.1336 +vt 0.2775 0.1214 +vt 0.2775 0.1335 +vt 0.2906 0.1216 +vt 0.2906 0.1333 +vt 0.3235 0.1219 +vt 0.3235 0.1330 +vt 0.2647 0.8784 +vt 0.2647 0.8667 +vt 0.2906 0.3667 +vt 0.2906 0.3784 +vt 0.2775 0.3786 +vt 0.2775 0.3665 +vt 0.2630 0.3787 +vt 0.2630 0.3664 +vt 0.2475 0.3788 +vt 0.2475 0.3663 +vt 0.3882 0.9902 +vt 0.3765 0.9902 +vt 0.2674 0.6117 +vt 0.2674 0.6234 +vt 0.2567 0.6236 +vt 0.2567 0.6115 +vt 0.2449 0.6237 +vt 0.2449 0.6114 +vt 0.2323 0.6238 +vt 0.6118 0.8788 +vt 0.6118 0.8663 +vt 0.5994 0.8787 +vt 0.5994 0.8664 +vt 0.5878 0.8786 +vt 0.5878 0.8665 +vt 0.5773 0.8784 +vt 0.5773 0.8667 +vt 0.5510 0.8781 +vt 0.5510 0.8670 +vt 0.0858 0.1337 +vt 0.0858 0.1212 +vt 0.0703 0.1336 +vt 0.0703 0.1213 +vt 0.0558 0.1335 +vt 0.0558 0.1214 +vt 0.0427 0.1333 +vt 0.0427 0.1216 +vt 0.0098 0.1330 +vt 0.0098 0.1219 +vn 1.0000 -0.0000 -0.0000 +vn 0.8392 -0.3845 0.3845 +vn 0.8392 -0.3021 0.4521 +vn 0.8622 -0.2814 0.4212 +vn 0.8622 -0.3582 0.3582 +vn 0.8392 -0.4521 -0.3021 +vn 0.8392 -0.5024 -0.2081 +vn 0.8622 -0.4680 -0.1939 +vn 0.8622 -0.4212 -0.2814 +vn 0.8392 -0.5333 0.1061 +vn 0.8392 -0.5024 0.2081 +vn 0.8622 -0.4680 0.1938 +vn 0.8622 -0.4968 0.0988 +vn 0.8392 -0.1061 0.5333 +vn 0.8392 0.0000 0.5437 +vn 0.8622 0.0000 0.5066 +vn 0.8622 -0.0988 0.4968 +vn 0.8392 -0.1061 -0.5333 +vn 0.8392 -0.2081 -0.5024 +vn 0.8622 -0.1939 -0.4680 +vn 0.8622 -0.0988 -0.4968 +vn 0.8392 -0.3021 -0.4521 +vn 0.8622 -0.2814 -0.4212 +vn 0.8392 0.1061 0.5333 +vn 0.8622 0.0988 0.4968 +vn 0.8392 0.2081 0.5024 +vn 0.8392 0.3021 0.4521 +vn 0.8622 0.2814 0.4212 +vn 0.8622 0.1938 0.4680 +vn 0.8392 0.3845 0.3845 +vn 0.8392 0.4521 0.3021 +vn 0.8622 0.4212 0.2814 +vn 0.8622 0.3582 0.3582 +vn 0.8392 0.5024 0.2081 +vn 0.8622 0.4680 0.1939 +vn 0.8392 0.5333 0.1061 +vn 0.8392 0.5437 0.0000 +vn 0.8622 0.5066 0.0000 +vn 0.8622 0.4968 0.0988 +vn 0.8392 0.0000 -0.5437 +vn 0.8622 0.0000 -0.5066 +vn 0.8392 0.5333 -0.1061 +vn 0.8392 0.5024 -0.2081 +vn 0.8622 0.4680 -0.1939 +vn 0.8622 0.4968 -0.0988 +vn 0.8392 0.4521 -0.3021 +vn 0.8392 0.3845 -0.3845 +vn 0.8622 0.3582 -0.3582 +vn 0.8622 0.4212 -0.2814 +vn 0.8392 0.3021 -0.4521 +vn 0.8392 0.2081 -0.5024 +vn 0.8622 0.1939 -0.4680 +vn 0.8622 0.2814 -0.4212 +vn 0.8392 0.1061 -0.5333 +vn 0.8622 0.0988 -0.4968 +vn 0.8392 -0.3845 -0.3845 +vn 0.8622 -0.3582 -0.3582 +vn 0.8392 -0.5333 -0.1061 +vn 0.8622 -0.4968 -0.0988 +vn 0.8392 -0.5437 0.0000 +vn 0.8622 -0.5065 0.0000 +vn 0.8392 -0.4521 0.3021 +vn 0.8622 -0.4212 0.2814 +vn 0.8392 -0.2081 0.5024 +vn 0.8622 -0.1938 0.4680 +vn 0.9872 -0.0886 0.1326 +vn 0.9872 -0.1127 0.1127 +vn 0.8694 -0.2745 0.4109 +vn 0.8694 -0.3494 0.3494 +vn 0.6327 -0.4302 0.6438 +vn 0.6327 -0.5475 0.5475 +vn 0.9872 -0.1326 0.0886 +vn 0.9872 -0.1473 0.0610 +vn 0.8694 -0.4109 0.2745 +vn 0.8694 -0.4566 0.1891 +vn 0.6327 -0.6438 0.4302 +vn 0.6327 -0.7154 0.2963 +vn 0.9872 -0.1595 0.0000 +vn 0.9872 -0.1564 -0.0311 +vn 0.8694 -0.4942 0.0000 +vn 0.8694 -0.4847 -0.0964 +vn 0.6327 -0.7743 0.0000 +vn 0.6327 -0.7595 -0.1511 +vn 0.9872 0.0311 0.1564 +vn 0.9872 0.0000 0.1595 +vn 0.8694 0.0964 0.4847 +vn 0.8694 0.0000 0.4942 +vn 0.6327 0.1510 0.7595 +vn 0.6327 0.0000 0.7743 +vn 0.9872 0.0886 -0.1326 +vn 0.9872 0.1127 -0.1127 +vn 0.8694 0.2745 -0.4109 +vn 0.8694 0.3494 -0.3494 +vn 0.6327 0.4302 -0.6438 +vn 0.6327 0.5475 -0.5475 +vn 0.9872 -0.1127 -0.1127 +vn 0.9872 -0.0886 -0.1326 +vn 0.8694 -0.3494 -0.3494 +vn 0.8694 -0.2745 -0.4109 +vn 0.6327 -0.5475 -0.5475 +vn 0.6327 -0.4302 -0.6438 +vn 0.9872 0.1473 -0.0610 +vn 0.9872 0.1564 -0.0311 +vn 0.8694 0.4566 -0.1891 +vn 0.8694 0.4847 -0.0964 +vn 0.6327 0.7154 -0.2963 +vn 0.6327 0.7595 -0.1511 +vn 0.9872 0.1473 0.0610 +vn 0.9872 0.1326 0.0886 +vn 0.8694 0.4566 0.1891 +vn 0.8694 0.4109 0.2745 +vn 0.6327 0.7154 0.2963 +vn 0.6327 0.6438 0.4302 +vn 0.9872 0.0610 0.1473 +vn 0.8694 0.1891 0.4566 +vn 0.6327 0.2963 0.7154 +vn 0.8694 0.0000 -0.4942 +vn 0.8694 0.0964 -0.4847 +vn 0.9872 0.0311 -0.1564 +vn 0.9872 0.0000 -0.1595 +vn 0.9872 -0.0610 0.1473 +vn 0.8694 -0.1891 0.4565 +vn 0.6328 -0.2963 0.7154 +vn 0.9872 -0.1473 -0.0610 +vn 0.8694 -0.4566 -0.1891 +vn 0.6327 -0.7154 -0.2963 +vn 0.9872 0.1564 0.0311 +vn 0.8694 0.4847 0.0964 +vn 0.6327 0.7595 0.1511 +vn 0.9872 -0.0610 -0.1473 +vn 0.8694 -0.1891 -0.4566 +vn 0.6327 -0.2963 -0.7154 +vn 0.9872 0.0610 -0.1473 +vn 0.8694 0.1891 -0.4566 +vn 0.6327 0.2963 -0.7154 +vn 0.9872 0.0886 0.1326 +vn 0.8694 0.2745 0.4109 +vn 0.6327 0.4302 0.6438 +vn 0.9872 -0.0311 -0.1564 +vn 0.8694 -0.0964 -0.4847 +vn 0.6327 -0.1510 -0.7595 +vn 0.9872 -0.0311 0.1564 +vn 0.8694 -0.0964 0.4847 +vn 0.6327 -0.1511 0.7595 +vn 0.9872 -0.1564 0.0311 +vn 0.8694 -0.4847 0.0964 +vn 0.6327 -0.7595 0.1511 +vn 0.9872 0.1595 0.0000 +vn 0.8694 0.4942 0.0000 +vn 0.6327 0.7743 0.0000 +vn 0.9872 -0.1326 -0.0886 +vn 0.8694 -0.4109 -0.2745 +vn 0.6327 -0.6438 -0.4302 +vn 0.9872 0.1326 -0.0886 +vn 0.8694 0.4109 -0.2745 +vn 0.6327 0.6438 -0.4302 +vn 0.9872 0.1127 0.1127 +vn 0.8694 0.3494 0.3494 +vn 0.6327 0.5475 0.5475 +vn 0.6327 0.1510 -0.7595 +vn 0.6327 0.0000 -0.7743 +vn 0.0000 0.0000 -1.0000 +vn -0.0000 0.0000 1.0000 +vn -1.0000 0.0000 0.0000 +vn -0.0280 -0.9986 -0.0436 +vn -0.0280 -0.9986 0.0436 +vn -0.1119 -0.9927 0.0436 +vn -0.1119 -0.9927 -0.0436 +vn -0.9927 -0.1119 -0.0436 +vn -0.9927 -0.1119 0.0436 +vn -0.9986 -0.0280 0.0436 +vn -0.9986 -0.0280 -0.0436 +vn -0.9927 0.1119 0.0436 +vn -0.9927 0.1119 -0.0436 +vn -0.9986 0.0280 -0.0436 +vn -0.9986 0.0280 0.0436 +vn 0.1119 0.9927 -0.0436 +vn 0.1119 0.9927 0.0436 +vn 0.2223 0.9740 0.0436 +vn 0.2223 0.9740 -0.0436 +vn -0.1119 0.9927 0.0436 +vn -0.1119 0.9927 -0.0436 +vn -0.2223 0.9740 -0.0436 +vn -0.2223 0.9740 0.0436 +vn -0.9808 0.0000 0.1951 +vn -0.9808 0.0000 -0.1951 +vn 0.5556 0.0000 -0.8314 +vn 0.8314 0.0000 -0.5556 +vn -0.8314 0.0000 -0.5556 +vn -0.5556 0.0000 -0.8314 +vn -0.6857 -0.1420 -0.7139 +vn 0.0794 -0.1944 -0.9777 +vn 0.0794 -0.3815 -0.9210 +vn -0.6857 -0.2785 -0.6725 +vn -0.6857 0.2785 -0.6725 +vn 0.0794 0.3815 -0.9210 +vn 0.0794 0.1944 -0.9777 +vn -0.6857 0.1420 -0.7139 +vn -0.6857 0.5147 0.5147 +vn 0.0794 0.7049 0.7049 +vn 0.0794 0.8288 0.5538 +vn -0.6857 0.6052 0.4044 +vn -0.6857 0.2785 0.6725 +vn 0.0794 0.3815 0.9210 +vn 0.0794 0.5538 0.8288 +vn -0.6857 0.4044 0.6052 +vn -0.6857 0.7279 0.0000 +vn 0.0794 0.9968 0.0000 +vn 0.0794 0.9777 -0.1945 +vn -0.6857 0.7139 -0.1420 +vn -0.6857 -0.7279 0.0000 +vn 0.0794 -0.9968 0.0000 +vn 0.0794 -0.9777 0.1945 +vn -0.6857 -0.7139 0.1420 +vn -0.6857 0.1420 0.7139 +vn 0.0794 0.1945 0.9777 +vn -0.6857 0.4044 -0.6052 +vn 0.0794 0.5538 -0.8288 +vn 0.0794 0.9210 0.3815 +vn -0.6857 0.6725 0.2785 +vn -0.6857 -0.4044 0.6052 +vn 0.0794 -0.5538 0.8288 +vn 0.0794 -0.3815 0.9210 +vn -0.6857 -0.2785 0.6725 +vn 0.0794 -0.5538 -0.8288 +vn -0.6857 -0.4044 -0.6052 +vn 0.6965 0.2113 0.6857 +vn 0.6965 0.2113 -0.6857 +vn 0.6419 0.3431 -0.6857 +vn 0.6419 0.3431 0.6857 +vn 0.7244 0.0713 0.6857 +vn 0.7244 0.0713 -0.6857 +vn 0.7244 -0.0713 0.6857 +vn 0.7244 -0.0713 -0.6857 +vn 0.6965 -0.2113 0.6857 +vn 0.6965 -0.2113 -0.6857 +vn 0.6419 -0.3431 0.6857 +vn 0.6419 -0.3431 -0.6857 +vn 0.5626 -0.4617 0.6857 +vn 0.5626 -0.4617 -0.6857 +vn 0.4617 -0.5626 0.6857 +vn 0.4617 -0.5626 -0.6857 +vn 0.3431 -0.6419 0.6857 +vn 0.3431 -0.6419 -0.6857 +vn 0.2113 -0.6965 0.6857 +vn 0.2113 -0.6965 -0.6857 +vn 0.0713 -0.7244 0.6857 +vn 0.0713 -0.7244 -0.6857 +vn -0.0713 -0.7244 0.6857 +vn -0.0713 -0.7244 -0.6857 +vn -0.2113 -0.6965 0.6857 +vn -0.2113 -0.6965 -0.6857 +vn -0.3431 -0.6419 0.6857 +vn -0.3431 -0.6419 -0.6857 +vn -0.4617 -0.5626 0.6857 +vn -0.4617 -0.5626 -0.6857 +vn -0.5626 -0.4617 0.6857 +vn -0.5626 -0.4617 -0.6857 +vn -0.6419 -0.3431 0.6857 +vn -0.6419 -0.3431 -0.6857 +vn -0.6965 -0.2113 0.6857 +vn -0.6965 -0.2113 -0.6857 +vn -0.7244 -0.0713 0.6857 +vn -0.7244 -0.0713 -0.6857 +vn -0.7244 0.0713 0.6857 +vn -0.7244 0.0713 -0.6857 +vn -0.6965 0.2113 0.6857 +vn -0.6965 0.2113 -0.6857 +vn -0.5626 0.4617 0.6857 +vn -0.5626 0.4617 -0.6857 +vn -0.6419 0.3431 -0.6857 +vn -0.6419 0.3431 0.6857 +vn -0.4617 0.5626 0.6857 +vn -0.4617 0.5626 -0.6857 +vn -0.3431 0.6419 0.6857 +vn -0.3431 0.6419 -0.6857 +vn -0.2113 0.6965 0.6857 +vn -0.2113 0.6965 -0.6857 +vn -0.0713 0.7244 0.6857 +vn -0.0713 0.7244 -0.6857 +vn 0.2113 0.6965 0.6857 +vn 0.2113 0.6965 -0.6857 +vn 0.0713 0.7244 -0.6857 +vn 0.0713 0.7244 0.6857 +vn 0.3431 0.6419 0.6857 +vn 0.3431 0.6419 -0.6857 +vn 0.4617 0.5626 0.6857 +vn 0.4617 0.5626 -0.6857 +vn -0.4604 0.8614 0.2147 +vn -0.4686 0.8767 0.1087 +vn -0.2886 0.9513 0.1087 +vn -0.2835 0.9346 0.2147 +vn -0.0957 0.9720 0.2147 +vn -0.0974 0.9893 0.1087 +vn 0.0957 0.9720 0.2147 +vn 0.0974 0.9893 0.1087 +vn 0.2835 0.9346 0.2147 +vn 0.2886 0.9513 0.1087 +vn 0.4604 0.8614 0.2147 +vn 0.4686 0.8767 0.1087 +vn 0.6196 0.7550 0.2147 +vn 0.6306 0.7684 0.1087 +vn 0.7684 0.6306 0.1087 +vn 0.7550 0.6196 0.2147 +vn 0.8614 0.4604 0.2147 +vn 0.8767 0.4686 0.1087 +vn 0.9346 0.2835 0.2147 +vn 0.9513 0.2886 0.1087 +vn 0.9720 0.0957 0.2147 +vn 0.9893 0.0974 0.1087 +vn 0.9893 -0.0974 0.1087 +vn 0.9720 -0.0957 0.2147 +vn 0.9513 -0.2886 0.1087 +vn 0.9346 -0.2835 0.2147 +vn 0.8614 -0.4604 0.2147 +vn 0.8767 -0.4686 0.1087 +vn 0.7684 -0.6306 0.1087 +vn 0.7550 -0.6196 0.2147 +vn 0.6306 -0.7684 0.1087 +vn 0.6196 -0.7550 0.2147 +vn 0.4604 -0.8614 0.2147 +vn 0.4686 -0.8767 0.1087 +vn 0.2886 -0.9513 0.1087 +vn 0.2835 -0.9346 0.2147 +vn 0.0957 -0.9720 0.2147 +vn 0.0974 -0.9893 0.1087 +vn -0.0974 -0.9893 0.1087 +vn -0.0957 -0.9720 0.2147 +vn -0.2835 -0.9346 0.2147 +vn -0.2886 -0.9513 0.1087 +vn -0.4686 -0.8767 0.1087 +vn -0.4604 -0.8614 0.2147 +vn -0.6306 -0.7684 0.1087 +vn -0.6196 -0.7550 0.2147 +vn -0.7684 -0.6306 0.1087 +vn -0.7550 -0.6196 0.2147 +vn -0.8767 -0.4686 0.1087 +vn -0.8614 -0.4604 0.2147 +vn -0.9513 -0.2886 0.1087 +vn -0.9346 -0.2835 0.2147 +vn -0.9893 -0.0974 0.1087 +vn -0.9720 -0.0957 0.2147 +vn -0.9346 0.2835 0.2147 +vn -0.9720 0.0957 0.2147 +vn -0.9893 0.0974 0.1087 +vn -0.9513 0.2886 0.1087 +vn -0.7550 0.6196 0.2147 +vn -0.8614 0.4604 0.2147 +vn -0.8767 0.4686 0.1087 +vn -0.7684 0.6306 0.1087 +vn -0.6196 0.7550 0.2147 +vn -0.6306 0.7684 0.1087 +vn 0.9893 -0.0974 -0.1087 +vn 0.9893 0.0974 -0.1087 +vn 0.9720 0.0957 -0.2147 +vn 0.9513 0.2886 -0.1087 +vn 0.9346 0.2835 -0.2147 +vn 0.9720 -0.0957 -0.2147 +vn 0.9346 -0.2835 -0.2147 +vn 0.9513 -0.2886 -0.1087 +vn 0.8767 0.4686 -0.1087 +vn 0.7684 0.6306 -0.1087 +vn 0.8614 0.4604 -0.2147 +vn 0.8614 -0.4604 -0.2147 +vn 0.8767 -0.4686 -0.1087 +vn 0.7550 0.6196 -0.2147 +vn 0.7550 -0.6196 -0.2147 +vn 0.7684 -0.6306 -0.1087 +vn 0.6196 0.7550 -0.2147 +vn 0.6306 0.7684 -0.1087 +vn 0.6196 -0.7550 -0.2147 +vn 0.6306 -0.7684 -0.1087 +vn 0.4604 0.8614 -0.2147 +vn 0.4686 0.8767 -0.1087 +vn 0.4604 -0.8614 -0.2147 +vn 0.4686 -0.8767 -0.1087 +vn 0.2835 0.9346 -0.2147 +vn 0.2886 0.9513 -0.1087 +vn 0.2835 -0.9346 -0.2147 +vn 0.2886 -0.9513 -0.1087 +vn 0.0957 0.9720 -0.2147 +vn 0.0974 0.9893 -0.1087 +vn 0.0957 -0.9720 -0.2147 +vn 0.0974 -0.9893 -0.1087 +vn -0.0957 0.9720 -0.2147 +vn -0.0974 0.9893 -0.1087 +vn -0.0957 -0.9720 -0.2147 +vn -0.0974 -0.9893 -0.1087 +vn 0.5626 0.4617 -0.6857 +vn 0.5626 0.4617 0.6857 +vn -0.8767 -0.4686 -0.1087 +vn -0.7684 -0.6306 -0.1087 +vn -0.2835 0.9346 -0.2147 +vn -0.2886 0.9513 -0.1087 +vn -0.2835 -0.9346 -0.2147 +vn -0.2886 -0.9513 -0.1087 +vn -0.4604 0.8614 -0.2147 +vn -0.4686 0.8767 -0.1087 +vn -0.4604 -0.8614 -0.2147 +vn -0.4686 -0.8767 -0.1087 +vn -0.6196 0.7550 -0.2147 +vn -0.6306 0.7684 -0.1087 +vn -0.6196 -0.7550 -0.2147 +vn -0.6306 -0.7684 -0.1087 +vn -0.7550 0.6196 -0.2147 +vn -0.7684 0.6306 -0.1087 +vn -0.7550 -0.6196 -0.2147 +vn -0.9513 0.2886 -0.1087 +vn -0.8767 0.4686 -0.1087 +vn -0.8614 0.4604 -0.2147 +vn -0.8614 -0.4604 -0.2147 +vn -0.9346 0.2835 -0.2147 +vn -0.9346 -0.2835 -0.2147 +vn -0.9513 -0.2886 -0.1087 +vn -0.9720 0.0957 -0.2147 +vn -0.9893 0.0974 -0.1087 +vn -0.9720 -0.0957 -0.2147 +vn -0.9893 -0.0974 -0.1087 +vn -0.7321 -0.3032 -0.6100 +vn -0.9239 -0.3827 0.0000 +vn -0.7933 0.6088 0.0000 +vn -0.6287 0.4824 -0.6100 +vn -0.1034 -0.7856 -0.6100 +vn -0.1305 -0.9914 0.0000 +vn 0.1305 0.9914 0.0000 +vn 0.1034 0.7856 -0.6100 +vn 0.9239 0.3827 0.0000 +vn 0.7321 0.3032 -0.6100 +vn 0.7933 -0.6088 0.0000 +vn 0.6287 -0.4824 -0.6100 +vn 0.7321 0.3032 0.6100 +vn 0.1034 0.7856 0.6100 +vn 0.6287 -0.4824 0.6100 +vn -0.6287 0.4824 0.6100 +vn -0.7321 -0.3032 0.6100 +vn -0.1034 -0.7856 0.6100 +vn -0.3032 -0.7321 -0.6100 +vn -0.3827 -0.9239 0.0000 +vn -0.9914 -0.1305 0.0000 +vn -0.7856 -0.1034 -0.6100 +vn 0.4824 -0.6287 -0.6100 +vn 0.6088 -0.7933 0.0000 +vn -0.6088 0.7933 0.0000 +vn -0.4824 0.6287 -0.6100 +vn 0.3827 0.9239 0.0000 +vn 0.3032 0.7321 -0.6100 +vn 0.9914 0.1305 0.0000 +vn 0.7856 0.1034 -0.6100 +vn 0.3032 0.7321 0.6100 +vn -0.4824 0.6287 0.6100 +vn 0.7856 0.1034 0.6100 +vn -0.7856 -0.1034 0.6100 +vn -0.3032 -0.7321 0.6100 +vn 0.4824 -0.6287 0.6100 +vn 0.3032 -0.7321 -0.6100 +vn 0.3827 -0.9239 0.0000 +vn -0.6088 -0.7933 0.0000 +vn -0.4824 -0.6287 -0.6100 +vn 0.7856 -0.1034 -0.6100 +vn 0.9914 -0.1305 0.0000 +vn -0.9914 0.1305 0.0000 +vn -0.7856 0.1034 -0.6100 +vn -0.3827 0.9239 0.0000 +vn -0.3032 0.7321 -0.6100 +vn 0.6088 0.7933 0.0000 +vn 0.4824 0.6287 -0.6100 +vn -0.3032 0.7321 0.6100 +vn -0.7856 0.1034 0.6100 +vn 0.4824 0.6287 0.6100 +vn -0.4824 -0.6287 0.6100 +vn 0.3032 -0.7321 0.6100 +vn 0.7856 -0.1034 0.6100 +vn 0.7321 -0.3032 -0.6100 +vn 0.9239 -0.3827 0.0000 +vn 0.1305 -0.9914 0.0000 +vn 0.1034 -0.7856 -0.6100 +vn 0.6287 0.4824 -0.6100 +vn 0.7933 0.6088 0.0000 +vn -0.7933 -0.6088 0.0000 +vn -0.6287 -0.4824 -0.6100 +vn -0.9239 0.3827 0.0000 +vn -0.7321 0.3032 -0.6100 +vn -0.1305 0.9914 0.0000 +vn -0.1034 0.7856 -0.6100 +vn -0.7321 0.3032 0.6100 +vn -0.6287 -0.4824 0.6100 +vn -0.1034 0.7856 0.6100 +vn 0.1034 -0.7856 0.6100 +vn 0.7321 -0.3032 0.6100 +vn 0.6287 0.4824 0.6100 +vn -0.5603 -0.5603 -0.6100 +vn -0.7071 -0.7071 0.0000 +vn -0.9659 0.2588 0.0000 +vn -0.7654 0.2051 -0.6100 +vn 0.2051 -0.7654 -0.6100 +vn 0.2588 -0.9659 0.0000 +vn -0.2588 0.9659 0.0000 +vn -0.2051 0.7654 -0.6100 +vn 0.7071 0.7071 0.0000 +vn 0.5603 0.5603 -0.6100 +vn 0.9659 -0.2588 0.0000 +vn 0.7654 -0.2051 -0.6100 +vn 0.5603 0.5603 0.6100 +vn -0.2051 0.7654 0.6100 +vn 0.7654 -0.2051 0.6100 +vn -0.7654 0.2051 0.6100 +vn -0.5603 -0.5603 0.6100 +vn 0.2051 -0.7654 0.6100 +vn 0.0000 -0.7924 -0.6100 +vn 0.0000 -1.0000 0.0000 +vn -0.8660 -0.5000 0.0000 +vn -0.6862 -0.3962 -0.6100 +vn 0.6862 -0.3962 -0.6100 +vn 0.8660 -0.5000 0.0000 +vn -0.8660 0.5000 0.0000 +vn -0.6862 0.3962 -0.6100 +vn 0.0000 1.0000 0.0000 +vn 0.0000 0.7924 -0.6100 +vn 0.8660 0.5000 0.0000 +vn 0.6862 0.3962 -0.6100 +vn 0.0000 0.7924 0.6100 +vn -0.6862 0.3962 0.6100 +vn 0.6862 0.3962 0.6100 +vn -0.6862 -0.3962 0.6100 +vn 0.0000 -0.7924 0.6100 +vn 0.6862 -0.3962 0.6100 +vn 0.5603 -0.5603 -0.6100 +vn 0.7071 -0.7071 0.0000 +vn -0.2588 -0.9659 0.0000 +vn -0.2051 -0.7654 -0.6100 +vn 0.7654 0.2051 -0.6100 +vn 0.9659 0.2588 0.0000 +vn -0.9659 -0.2588 0.0000 +vn -0.7654 -0.2051 -0.6100 +vn -0.7071 0.7071 0.0000 +vn -0.5603 0.5603 -0.6100 +vn 0.2588 0.9659 0.0000 +vn 0.2051 0.7654 -0.6100 +vn -0.5603 0.5603 0.6100 +vn -0.7654 -0.2051 0.6100 +vn 0.2051 0.7654 0.6100 +vn -0.2051 -0.7654 0.6100 +vn 0.5603 -0.5603 0.6100 +vn 0.7654 0.2051 0.6100 +vn 0.7924 0.0000 -0.6100 +vn 0.5000 -0.8660 0.0000 +vn 0.3962 -0.6862 -0.6100 +vn 0.3962 0.6862 -0.6100 +vn 0.5000 0.8660 0.0000 +vn -0.5000 -0.8660 0.0000 +vn -0.3962 -0.6862 -0.6100 +vn -0.7924 0.0000 -0.6100 +vn -0.5000 0.8660 0.0000 +vn -0.3962 0.6862 -0.6100 +vn -0.7924 0.0000 0.6100 +vn -0.3962 -0.6862 0.6100 +vn -0.3962 0.6862 0.6100 +vn 0.3962 -0.6862 0.6100 +vn 0.7924 0.0000 0.6100 +vn 0.3962 0.6862 0.6100 +vn -0.6857 -0.5147 -0.5147 +vn 0.0794 -0.7049 -0.7049 +vn 0.0794 -0.8288 -0.5538 +vn -0.6857 -0.6052 -0.4044 +vn 0.0794 -0.9210 0.3815 +vn -0.6857 -0.6725 0.2785 +vn -0.6857 -0.6052 0.4044 +vn 0.0794 -0.8288 0.5538 +vn 0.0794 -0.7049 0.7049 +vn -0.6857 -0.5147 0.5147 +vn -0.6857 -0.1420 0.7139 +vn 0.0794 -0.1945 0.9777 +vn 0.0794 0.0000 0.9968 +vn -0.6857 0.0000 0.7279 +vn -0.6857 0.5147 -0.5147 +vn 0.0794 0.7049 -0.7049 +vn 0.0794 -0.9210 -0.3815 +vn -0.6857 -0.6725 -0.2785 +vn -0.6857 0.7139 0.1420 +vn 0.0794 0.9777 0.1945 +vn -0.6857 0.6725 -0.2785 +vn 0.0794 0.9210 -0.3815 +vn 0.0794 0.8288 -0.5538 +vn -0.6857 0.6052 -0.4044 +vn -0.6857 0.0000 -0.7279 +vn 0.0794 0.0000 -0.9968 +vn -0.6857 -0.7139 -0.1420 +vn 0.0794 -0.9777 -0.1945 +vn 0.3236 -0.5257 0.7867 +vn 0.3236 -0.6690 0.6690 +vn 0.3236 -0.7867 0.5257 +vn 0.3236 -0.8741 0.3621 +vn 0.3236 -0.9462 0.0000 +vn 0.3236 -0.9280 -0.1846 +vn 0.3236 0.1846 0.9280 +vn 0.3236 0.0000 0.9462 +vn 0.3236 0.5257 -0.7867 +vn 0.3236 0.6690 -0.6690 +vn 0.3236 -0.6690 -0.6690 +vn 0.3236 -0.5257 -0.7867 +vn 0.3236 0.8741 -0.3621 +vn 0.3236 0.9280 -0.1846 +vn 0.3236 0.8741 0.3621 +vn 0.3236 0.7867 0.5257 +vn 0.3236 0.3621 0.8741 +vn 0.3236 0.1846 -0.9280 +vn 0.3236 0.0000 -0.9462 +vn 0.3236 -0.3621 0.8741 +vn 0.3236 -0.8741 -0.3621 +vn 0.3236 0.9280 0.1846 +vn 0.3236 -0.3621 -0.8741 +vn 0.3236 0.3620 -0.8741 +vn 0.3236 0.5257 0.7867 +vn 0.3236 -0.1846 -0.9280 +vn 0.3236 -0.1846 0.9280 +vn 0.3236 -0.9280 0.1846 +vn 0.3236 0.9462 0.0000 +vn 0.3236 -0.7867 -0.5257 +vn 0.3236 0.7867 -0.5257 +vn 0.3236 0.6690 0.6690 +vn -0.1951 0.0000 -0.9808 +vn 0.1951 0.0000 -0.9808 +vn 0.9808 0.0000 -0.1951 +vn 0.9808 0.0000 0.1951 +vn 0.1951 0.0000 0.9808 +vn -0.1951 0.0000 0.9808 +vn 0.8314 0.0000 0.5556 +vn 0.5556 0.0000 0.8314 +vn 0.0280 -0.9986 -0.0436 +vn 0.0280 -0.9986 0.0436 +vn -0.2223 -0.9740 -0.0436 +vn -0.2223 -0.9740 0.0436 +vn -0.3299 -0.9430 0.0436 +vn -0.3299 -0.9430 -0.0436 +vn -0.4335 -0.9001 0.0436 +vn -0.4335 -0.9001 -0.0436 +vn -0.5315 -0.8459 0.0436 +vn -0.5315 -0.8459 -0.0436 +vn -0.6229 -0.7811 0.0436 +vn -0.6229 -0.7811 -0.0436 +vn -0.7064 -0.7064 0.0436 +vn -0.7064 -0.7064 -0.0436 +vn -0.7811 -0.6229 0.0436 +vn -0.7811 -0.6229 -0.0436 +vn -0.8459 -0.5315 0.0436 +vn -0.8459 -0.5315 -0.0436 +vn -0.9001 -0.4335 0.0436 +vn -0.9001 -0.4335 -0.0436 +vn -0.9430 -0.3299 0.0436 +vn -0.9430 -0.3299 -0.0436 +vn -0.9740 -0.2223 0.0436 +vn -0.9740 -0.2223 -0.0436 +vn 0.0280 0.9986 -0.0436 +vn 0.0280 0.9986 0.0436 +vn 0.9927 0.1119 -0.0436 +vn 0.9927 0.1119 0.0436 +vn 0.9986 0.0280 0.0436 +vn 0.9986 0.0280 -0.0436 +vn 0.3299 0.9430 0.0436 +vn 0.3299 0.9430 -0.0436 +vn 0.4335 0.9001 0.0436 +vn 0.4335 0.9001 -0.0436 +vn 0.5315 0.8459 0.0436 +vn 0.5315 0.8459 -0.0436 +vn 0.6229 0.7811 0.0436 +vn 0.6229 0.7811 -0.0436 +vn 0.7064 0.7064 0.0436 +vn 0.7064 0.7064 -0.0436 +vn 0.7811 0.6229 0.0436 +vn 0.7811 0.6229 -0.0436 +vn 0.8459 0.5315 0.0436 +vn 0.8459 0.5315 -0.0436 +vn 0.9001 0.4335 0.0436 +vn 0.9001 0.4335 -0.0436 +vn 0.9430 0.3299 0.0436 +vn 0.9430 0.3299 -0.0436 +vn 0.9740 0.2223 0.0436 +vn 0.9740 0.2223 -0.0436 +vn 0.9986 -0.0280 -0.0436 +vn 0.9986 -0.0280 0.0436 +vn 0.9927 -0.1119 0.0436 +vn 0.9927 -0.1119 -0.0436 +vn 0.1119 -0.9927 -0.0436 +vn 0.1119 -0.9927 0.0436 +vn 0.9740 -0.2223 -0.0436 +vn 0.9740 -0.2223 0.0436 +vn 0.9430 -0.3299 0.0436 +vn 0.9430 -0.3299 -0.0436 +vn 0.9001 -0.4335 0.0436 +vn 0.9001 -0.4335 -0.0436 +vn 0.8459 -0.5315 0.0436 +vn 0.8459 -0.5315 -0.0436 +vn 0.7811 -0.6229 0.0436 +vn 0.7811 -0.6229 -0.0436 +vn 0.7064 -0.7064 0.0436 +vn 0.7064 -0.7064 -0.0436 +vn 0.6229 -0.7811 0.0436 +vn 0.6229 -0.7811 -0.0436 +vn 0.5315 -0.8459 0.0436 +vn 0.5315 -0.8459 -0.0436 +vn 0.4335 -0.9001 0.0436 +vn 0.4335 -0.9001 -0.0436 +vn 0.3299 -0.9430 0.0436 +vn 0.3299 -0.9430 -0.0436 +vn 0.2223 -0.9740 0.0436 +vn 0.2223 -0.9740 -0.0436 +vn -0.0280 0.9986 -0.0436 +vn -0.0280 0.9986 0.0436 +vn -0.3299 0.9430 -0.0436 +vn -0.3299 0.9430 0.0436 +vn -0.4335 0.9001 -0.0436 +vn -0.4335 0.9001 0.0436 +vn -0.5315 0.8459 -0.0436 +vn -0.5315 0.8459 0.0436 +vn -0.6229 0.7811 -0.0436 +vn -0.6229 0.7811 0.0436 +vn -0.7064 0.7064 -0.0436 +vn -0.7064 0.7064 0.0436 +vn -0.7811 0.6229 -0.0436 +vn -0.7811 0.6229 0.0436 +vn -0.8459 0.5315 -0.0436 +vn -0.8459 0.5315 0.0436 +vn -0.9001 0.4335 -0.0436 +vn -0.9001 0.4335 0.0436 +vn -0.9430 0.3299 -0.0436 +vn -0.9430 0.3299 0.0436 +vn -0.9740 0.2223 -0.0436 +vn -0.9740 0.2223 0.0436 +vn -0.5556 0.0000 0.8314 +vn -0.8314 0.0000 0.5556 +vn -0.0641 -0.5694 -0.8196 +vn -0.0161 -0.5732 -0.8192 +vn -0.0180 -0.6433 -0.7654 +vn -0.0721 -0.6400 -0.7650 +vn -0.0215 -0.7663 -0.6421 +vn -0.0858 -0.7620 -0.6418 +vn -0.0243 -0.8660 -0.4995 +vn -0.0970 -0.8610 -0.4992 +vn -0.0263 -0.9395 -0.3416 +vn -0.1052 -0.9340 -0.3415 +vn -0.0276 -0.9844 -0.1734 +vn -0.1103 -0.9786 -0.1734 +vn -0.0161 -0.5732 0.8192 +vn -0.0641 -0.5694 0.8196 +vn -0.0721 -0.6400 0.7650 +vn -0.0180 -0.6433 0.7654 +vn -0.0858 -0.7620 0.6418 +vn -0.0215 -0.7663 0.6421 +vn -0.0970 -0.8610 0.4992 +vn -0.0243 -0.8660 0.4995 +vn -0.1052 -0.9340 0.3415 +vn -0.0263 -0.9395 0.3416 +vn -0.1103 -0.9786 0.1734 +vn -0.0276 -0.9844 0.1734 +vn -0.1275 -0.5586 -0.8196 +vn -0.1433 -0.6279 -0.7650 +vn -0.1706 -0.7476 -0.6418 +vn -0.1928 -0.8447 -0.4992 +vn -0.2091 -0.9163 -0.3415 +vn -0.2191 -0.9601 -0.1734 +vn -0.1275 -0.5586 0.8196 +vn -0.1433 -0.6279 0.7650 +vn -0.1706 -0.7476 0.6418 +vn -0.1928 -0.8447 0.4992 +vn -0.2091 -0.9163 0.3415 +vn -0.2191 -0.9601 0.1734 +vn -0.1892 -0.5408 -0.8196 +vn -0.2127 -0.6079 -0.7650 +vn -0.2532 -0.7238 -0.6418 +vn -0.2862 -0.8178 -0.4992 +vn -0.3104 -0.8871 -0.3415 +vn -0.3253 -0.9296 -0.1734 +vn -0.1892 -0.5408 0.8196 +vn -0.2127 -0.6079 0.7650 +vn -0.2532 -0.7238 0.6418 +vn -0.2862 -0.8178 0.4992 +vn -0.3104 -0.8871 0.3415 +vn -0.3253 -0.9296 0.1734 +vn -0.2486 -0.5162 -0.8196 +vn -0.2794 -0.5802 -0.7650 +vn -0.3327 -0.6909 -0.6418 +vn -0.3759 -0.7806 -0.4992 +vn -0.4078 -0.8468 -0.3415 +vn -0.4273 -0.8873 -0.1734 +vn -0.2486 -0.5162 0.8196 +vn -0.2794 -0.5802 0.7650 +vn -0.3327 -0.6909 0.6418 +vn -0.3759 -0.7806 0.4992 +vn -0.4078 -0.8468 0.3415 +vn -0.4273 -0.8873 0.1734 +vn -0.3048 -0.4851 -0.8196 +vn -0.3426 -0.5453 -0.7650 +vn -0.4080 -0.6493 -0.6418 +vn -0.4610 -0.7336 -0.4992 +vn -0.5000 -0.7958 -0.3415 +vn -0.5240 -0.8339 -0.1734 +vn -0.3048 -0.4851 0.8196 +vn -0.3426 -0.5453 0.7650 +vn -0.4080 -0.6493 0.6418 +vn -0.4610 -0.7336 0.4992 +vn -0.5000 -0.7958 0.3415 +vn -0.5240 -0.8339 0.1734 +vn -0.3572 -0.4480 -0.8196 +vn -0.4015 -0.5035 -0.7650 +vn -0.4781 -0.5995 -0.6418 +vn -0.5402 -0.6774 -0.4992 +vn -0.5860 -0.7348 -0.3415 +vn -0.6140 -0.7700 -0.1734 +vn -0.3572 -0.4480 0.8196 +vn -0.4015 -0.5035 0.7650 +vn -0.4781 -0.5995 0.6418 +vn -0.5402 -0.6774 0.4992 +vn -0.5860 -0.7348 0.3415 +vn -0.6140 -0.7700 0.1734 +vn -0.4051 -0.4051 -0.8196 +vn -0.4554 -0.4554 -0.7650 +vn -0.5422 -0.5422 -0.6418 +vn -0.6127 -0.6127 -0.4992 +vn -0.6646 -0.6646 -0.3415 +vn -0.6964 -0.6964 -0.1734 +vn -0.4051 -0.4051 0.8196 +vn -0.4554 -0.4554 0.7650 +vn -0.5422 -0.5422 0.6418 +vn -0.6127 -0.6127 0.4992 +vn -0.6646 -0.6646 0.3415 +vn -0.6964 -0.6964 0.1734 +vn -0.4480 -0.3572 -0.8196 +vn -0.5035 -0.4015 -0.7650 +vn -0.5995 -0.4781 -0.6418 +vn -0.6774 -0.5402 -0.4992 +vn -0.7348 -0.5860 -0.3415 +vn -0.7700 -0.6140 -0.1734 +vn -0.4480 -0.3572 0.8196 +vn -0.5035 -0.4015 0.7650 +vn -0.5995 -0.4781 0.6418 +vn -0.6774 -0.5402 0.4992 +vn -0.7348 -0.5860 0.3415 +vn -0.7700 -0.6140 0.1734 +vn -0.4851 -0.3048 -0.8196 +vn -0.5453 -0.3426 -0.7650 +vn -0.6493 -0.4080 -0.6418 +vn -0.7336 -0.4610 -0.4992 +vn -0.7958 -0.5000 -0.3415 +vn -0.8339 -0.5240 -0.1734 +vn -0.4851 -0.3048 0.8196 +vn -0.5453 -0.3426 0.7650 +vn -0.6493 -0.4080 0.6418 +vn -0.7336 -0.4610 0.4992 +vn -0.7958 -0.5000 0.3415 +vn -0.8339 -0.5240 0.1734 +vn -0.5162 -0.2486 -0.8196 +vn -0.5802 -0.2794 -0.7650 +vn -0.6909 -0.3327 -0.6418 +vn -0.7806 -0.3759 -0.4992 +vn -0.8468 -0.4078 -0.3415 +vn -0.8873 -0.4273 -0.1734 +vn -0.5162 -0.2486 0.8196 +vn -0.5802 -0.2794 0.7650 +vn -0.6909 -0.3327 0.6418 +vn -0.7806 -0.3759 0.4992 +vn -0.8468 -0.4078 0.3415 +vn -0.8873 -0.4273 0.1734 +vn -0.5408 -0.1892 -0.8196 +vn -0.6079 -0.2127 -0.7650 +vn -0.7238 -0.2532 -0.6418 +vn -0.8178 -0.2862 -0.4992 +vn -0.8871 -0.3104 -0.3415 +vn -0.9296 -0.3253 -0.1734 +vn -0.5408 -0.1892 0.8196 +vn -0.6079 -0.2127 0.7650 +vn -0.7238 -0.2532 0.6418 +vn -0.8178 -0.2862 0.4992 +vn -0.8871 -0.3104 0.3415 +vn -0.9296 -0.3253 0.1734 +vn -0.5586 -0.1275 -0.8196 +vn -0.6279 -0.1433 -0.7650 +vn -0.7476 -0.1706 -0.6418 +vn -0.8447 -0.1928 -0.4992 +vn -0.9163 -0.2091 -0.3415 +vn -0.9601 -0.2191 -0.1734 +vn -0.5586 -0.1275 0.8196 +vn -0.6279 -0.1433 0.7650 +vn -0.7476 -0.1706 0.6418 +vn -0.8447 -0.1928 0.4992 +vn -0.9163 -0.2091 0.3415 +vn -0.9601 -0.2191 0.1734 +vn -0.5694 -0.0641 -0.8196 +vn -0.6400 -0.0721 -0.7650 +vn -0.7620 -0.0858 -0.6418 +vn -0.8610 -0.0970 -0.4992 +vn -0.9340 -0.1052 -0.3415 +vn -0.9786 -0.1103 -0.1734 +vn -0.5694 -0.0641 0.8196 +vn -0.6400 -0.0721 0.7650 +vn -0.7620 -0.0858 0.6418 +vn -0.8610 -0.0970 0.4992 +vn -0.9340 -0.1052 0.3415 +vn -0.9786 -0.1103 0.1734 +vn -0.5732 -0.0161 -0.8192 +vn -0.6433 -0.0180 -0.7654 +vn -0.7663 -0.0215 -0.6421 +vn -0.8660 -0.0243 -0.4995 +vn -0.9395 -0.0263 -0.3416 +vn -0.9844 -0.0276 -0.1734 +vn -0.5732 -0.0161 0.8192 +vn -0.6433 -0.0180 0.7654 +vn -0.7663 -0.0215 0.6421 +vn -0.8660 -0.0243 0.4995 +vn -0.9395 -0.0263 0.3416 +vn -0.9844 -0.0276 0.1734 +vn 0.0641 0.5694 -0.8196 +vn 0.0161 0.5732 -0.8192 +vn 0.0180 0.6433 -0.7654 +vn 0.0721 0.6400 -0.7650 +vn 0.0215 0.7663 -0.6421 +vn 0.0858 0.7620 -0.6418 +vn 0.0243 0.8660 -0.4995 +vn 0.0970 0.8610 -0.4992 +vn 0.0263 0.9395 -0.3416 +vn 0.1052 0.9340 -0.3415 +vn 0.0276 0.9844 -0.1734 +vn 0.1103 0.9786 -0.1734 +vn 0.0161 0.5732 0.8192 +vn 0.0641 0.5694 0.8196 +vn 0.0721 0.6400 0.7650 +vn 0.0180 0.6433 0.7654 +vn 0.0858 0.7620 0.6418 +vn 0.0215 0.7663 0.6421 +vn 0.0970 0.8610 0.4992 +vn 0.0243 0.8660 0.4995 +vn 0.1052 0.9340 0.3415 +vn 0.0263 0.9395 0.3416 +vn 0.1103 0.9786 0.1734 +vn 0.0276 0.9844 0.1734 +vn 0.1275 0.5586 -0.8196 +vn 0.1433 0.6279 -0.7650 +vn 0.1706 0.7476 -0.6418 +vn 0.1928 0.8447 -0.4992 +vn 0.2091 0.9163 -0.3415 +vn 0.2191 0.9601 -0.1734 +vn 0.1275 0.5586 0.8196 +vn 0.1433 0.6279 0.7650 +vn 0.1706 0.7476 0.6418 +vn 0.1928 0.8447 0.4992 +vn 0.2091 0.9163 0.3415 +vn 0.2191 0.9601 0.1734 +vn 0.1892 0.5408 -0.8196 +vn 0.2127 0.6079 -0.7650 +vn 0.2532 0.7238 -0.6418 +vn 0.2862 0.8178 -0.4992 +vn 0.3104 0.8871 -0.3415 +vn 0.3253 0.9296 -0.1734 +vn 0.1892 0.5408 0.8196 +vn 0.2127 0.6079 0.7650 +vn 0.2532 0.7238 0.6418 +vn 0.2862 0.8178 0.4992 +vn 0.3104 0.8871 0.3415 +vn 0.3253 0.9296 0.1734 +vn 0.2486 0.5162 -0.8196 +vn 0.2794 0.5802 -0.7650 +vn 0.3327 0.6909 -0.6418 +vn 0.3759 0.7806 -0.4992 +vn 0.4078 0.8468 -0.3415 +vn 0.4273 0.8873 -0.1734 +vn 0.2486 0.5162 0.8196 +vn 0.2794 0.5802 0.7650 +vn 0.3327 0.6909 0.6418 +vn 0.3759 0.7806 0.4992 +vn 0.4078 0.8468 0.3415 +vn 0.4273 0.8873 0.1734 +vn 0.3048 0.4851 -0.8196 +vn 0.3426 0.5453 -0.7650 +vn 0.4080 0.6493 -0.6418 +vn 0.4610 0.7336 -0.4992 +vn 0.5000 0.7958 -0.3415 +vn 0.5240 0.8339 -0.1734 +vn 0.3048 0.4851 0.8196 +vn 0.3426 0.5453 0.7650 +vn 0.4080 0.6493 0.6418 +vn 0.4610 0.7336 0.4992 +vn 0.5000 0.7958 0.3415 +vn 0.5240 0.8339 0.1734 +vn 0.3572 0.4480 -0.8196 +vn 0.4015 0.5035 -0.7650 +vn 0.4781 0.5995 -0.6418 +vn 0.5402 0.6774 -0.4992 +vn 0.5860 0.7348 -0.3415 +vn 0.6140 0.7700 -0.1734 +vn 0.3572 0.4480 0.8196 +vn 0.4015 0.5035 0.7650 +vn 0.4781 0.5995 0.6418 +vn 0.5402 0.6774 0.4992 +vn 0.5860 0.7348 0.3415 +vn 0.6140 0.7700 0.1734 +vn 0.4051 0.4051 -0.8196 +vn 0.4554 0.4554 -0.7650 +vn 0.5422 0.5422 -0.6418 +vn 0.6127 0.6127 -0.4992 +vn 0.6646 0.6646 -0.3415 +vn 0.6964 0.6964 -0.1734 +vn 0.4051 0.4051 0.8196 +vn 0.4554 0.4554 0.7650 +vn 0.5422 0.5422 0.6418 +vn 0.6127 0.6127 0.4992 +vn 0.6646 0.6646 0.3415 +vn 0.6964 0.6964 0.1734 +vn 0.4480 0.3572 -0.8196 +vn 0.5035 0.4015 -0.7650 +vn 0.5995 0.4781 -0.6418 +vn 0.6774 0.5402 -0.4992 +vn 0.7348 0.5860 -0.3415 +vn 0.7700 0.6140 -0.1734 +vn 0.4480 0.3572 0.8196 +vn 0.5035 0.4015 0.7650 +vn 0.5995 0.4781 0.6418 +vn 0.6774 0.5402 0.4992 +vn 0.7348 0.5860 0.3415 +vn 0.7700 0.6140 0.1734 +vn 0.4851 0.3048 -0.8196 +vn 0.5453 0.3426 -0.7650 +vn 0.6493 0.4080 -0.6418 +vn 0.7336 0.4610 -0.4992 +vn 0.7958 0.5000 -0.3415 +vn 0.8339 0.5240 -0.1734 +vn 0.4851 0.3048 0.8196 +vn 0.5453 0.3426 0.7650 +vn 0.6493 0.4080 0.6418 +vn 0.7336 0.4610 0.4992 +vn 0.7958 0.5000 0.3415 +vn 0.8339 0.5240 0.1734 +vn 0.5162 0.2486 -0.8196 +vn 0.5802 0.2794 -0.7650 +vn 0.6909 0.3327 -0.6418 +vn 0.7806 0.3759 -0.4992 +vn 0.8468 0.4078 -0.3415 +vn 0.8873 0.4273 -0.1734 +vn 0.5162 0.2486 0.8196 +vn 0.5802 0.2794 0.7650 +vn 0.6909 0.3327 0.6418 +vn 0.7806 0.3759 0.4992 +vn 0.8468 0.4078 0.3415 +vn 0.8873 0.4273 0.1734 +vn 0.5408 0.1892 -0.8196 +vn 0.6079 0.2127 -0.7650 +vn 0.7238 0.2532 -0.6418 +vn 0.8178 0.2862 -0.4992 +vn 0.8871 0.3104 -0.3415 +vn 0.9296 0.3253 -0.1734 +vn 0.5408 0.1892 0.8196 +vn 0.6079 0.2127 0.7650 +vn 0.7238 0.2532 0.6418 +vn 0.8178 0.2862 0.4992 +vn 0.8871 0.3104 0.3415 +vn 0.9296 0.3253 0.1734 +vn 0.5586 0.1275 -0.8196 +vn 0.6279 0.1433 -0.7650 +vn 0.7476 0.1706 -0.6418 +vn 0.8447 0.1928 -0.4992 +vn 0.9163 0.2091 -0.3415 +vn 0.9601 0.2191 -0.1734 +vn 0.5586 0.1275 0.8196 +vn 0.6279 0.1433 0.7650 +vn 0.7476 0.1706 0.6418 +vn 0.8447 0.1928 0.4992 +vn 0.9163 0.2091 0.3415 +vn 0.9601 0.2191 0.1734 +vn 0.5694 0.0641 -0.8196 +vn 0.6400 0.0721 -0.7650 +vn 0.7620 0.0858 -0.6418 +vn 0.8610 0.0970 -0.4992 +vn 0.9340 0.1052 -0.3415 +vn 0.9786 0.1103 -0.1734 +vn 0.5694 0.0641 0.8196 +vn 0.6400 0.0721 0.7650 +vn 0.7620 0.0858 0.6418 +vn 0.8610 0.0970 0.4992 +vn 0.9340 0.1052 0.3415 +vn 0.9786 0.1103 0.1734 +vn 0.5732 0.0161 -0.8192 +vn 0.6433 0.0180 -0.7654 +vn 0.7663 0.0215 -0.6421 +vn 0.8660 0.0243 -0.4995 +vn 0.9395 0.0263 -0.3416 +vn 0.9844 0.0276 -0.1734 +vn 0.5732 0.0161 0.8192 +vn 0.6433 0.0180 0.7654 +vn 0.7663 0.0215 0.6421 +vn 0.8660 0.0243 0.4995 +vn 0.9395 0.0263 0.3416 +vn 0.9844 0.0276 0.1734 +vn 0.5694 -0.0641 -0.8196 +vn 0.5732 -0.0161 -0.8192 +vn 0.6433 -0.0180 -0.7654 +vn 0.6400 -0.0721 -0.7650 +vn 0.7663 -0.0215 -0.6421 +vn 0.7620 -0.0858 -0.6418 +vn 0.8660 -0.0243 -0.4995 +vn 0.8610 -0.0970 -0.4992 +vn 0.9395 -0.0263 -0.3416 +vn 0.9340 -0.1052 -0.3415 +vn 0.9844 -0.0276 -0.1734 +vn 0.9786 -0.1103 -0.1734 +vn 0.5732 -0.0161 0.8192 +vn 0.5694 -0.0641 0.8196 +vn 0.6400 -0.0721 0.7650 +vn 0.6433 -0.0180 0.7654 +vn 0.7620 -0.0858 0.6418 +vn 0.7663 -0.0215 0.6421 +vn 0.8610 -0.0970 0.4992 +vn 0.8660 -0.0243 0.4995 +vn 0.9340 -0.1052 0.3415 +vn 0.9395 -0.0263 0.3416 +vn 0.9786 -0.1103 0.1734 +vn 0.9844 -0.0276 0.1734 +vn 0.5586 -0.1275 -0.8196 +vn 0.6279 -0.1433 -0.7650 +vn 0.7476 -0.1706 -0.6418 +vn 0.8447 -0.1928 -0.4992 +vn 0.9163 -0.2091 -0.3415 +vn 0.9601 -0.2191 -0.1734 +vn 0.5586 -0.1275 0.8196 +vn 0.6279 -0.1433 0.7650 +vn 0.7476 -0.1706 0.6418 +vn 0.8447 -0.1928 0.4992 +vn 0.9163 -0.2091 0.3415 +vn 0.9601 -0.2191 0.1734 +vn 0.5408 -0.1892 -0.8196 +vn 0.6079 -0.2127 -0.7650 +vn 0.7238 -0.2532 -0.6418 +vn 0.8178 -0.2862 -0.4992 +vn 0.8871 -0.3104 -0.3415 +vn 0.9296 -0.3253 -0.1734 +vn 0.5408 -0.1892 0.8196 +vn 0.6079 -0.2127 0.7650 +vn 0.7238 -0.2532 0.6418 +vn 0.8178 -0.2862 0.4992 +vn 0.8871 -0.3104 0.3415 +vn 0.9296 -0.3253 0.1734 +vn 0.5162 -0.2486 -0.8196 +vn 0.5802 -0.2794 -0.7650 +vn 0.6909 -0.3327 -0.6418 +vn 0.7806 -0.3759 -0.4992 +vn 0.8468 -0.4078 -0.3415 +vn 0.8873 -0.4273 -0.1734 +vn 0.5162 -0.2486 0.8196 +vn 0.5802 -0.2794 0.7650 +vn 0.6909 -0.3327 0.6418 +vn 0.7806 -0.3759 0.4992 +vn 0.8468 -0.4078 0.3415 +vn 0.8873 -0.4273 0.1734 +vn 0.4851 -0.3048 -0.8196 +vn 0.5453 -0.3426 -0.7650 +vn 0.6493 -0.4080 -0.6418 +vn 0.7336 -0.4610 -0.4992 +vn 0.7958 -0.5000 -0.3415 +vn 0.8339 -0.5240 -0.1734 +vn 0.4851 -0.3048 0.8196 +vn 0.5453 -0.3426 0.7650 +vn 0.6493 -0.4080 0.6418 +vn 0.7336 -0.4610 0.4992 +vn 0.7958 -0.5000 0.3415 +vn 0.8339 -0.5240 0.1734 +vn 0.4480 -0.3572 -0.8196 +vn 0.5035 -0.4015 -0.7650 +vn 0.5995 -0.4781 -0.6418 +vn 0.6774 -0.5402 -0.4992 +vn 0.7348 -0.5860 -0.3415 +vn 0.7700 -0.6140 -0.1734 +vn 0.4480 -0.3572 0.8196 +vn 0.5035 -0.4015 0.7650 +vn 0.5995 -0.4781 0.6418 +vn 0.6774 -0.5402 0.4992 +vn 0.7348 -0.5860 0.3415 +vn 0.7700 -0.6140 0.1734 +vn 0.4051 -0.4051 -0.8196 +vn 0.4554 -0.4554 -0.7650 +vn 0.5422 -0.5422 -0.6418 +vn 0.6127 -0.6127 -0.4992 +vn 0.6646 -0.6646 -0.3415 +vn 0.6964 -0.6964 -0.1734 +vn 0.4051 -0.4051 0.8196 +vn 0.4554 -0.4554 0.7650 +vn 0.5422 -0.5422 0.6418 +vn 0.6127 -0.6127 0.4992 +vn 0.6646 -0.6646 0.3415 +vn 0.6964 -0.6964 0.1734 +vn 0.3572 -0.4480 -0.8196 +vn 0.4015 -0.5035 -0.7650 +vn 0.4781 -0.5995 -0.6418 +vn 0.5402 -0.6774 -0.4992 +vn 0.5860 -0.7348 -0.3415 +vn 0.6140 -0.7700 -0.1734 +vn 0.3572 -0.4480 0.8196 +vn 0.4015 -0.5035 0.7650 +vn 0.4781 -0.5995 0.6418 +vn 0.5402 -0.6774 0.4992 +vn 0.5860 -0.7348 0.3415 +vn 0.6140 -0.7700 0.1734 +vn 0.3048 -0.4851 -0.8196 +vn 0.3426 -0.5453 -0.7650 +vn 0.4080 -0.6493 -0.6418 +vn 0.4610 -0.7336 -0.4992 +vn 0.5000 -0.7958 -0.3415 +vn 0.5240 -0.8339 -0.1734 +vn 0.3048 -0.4851 0.8196 +vn 0.3426 -0.5453 0.7650 +vn 0.4080 -0.6493 0.6418 +vn 0.4610 -0.7336 0.4992 +vn 0.5000 -0.7958 0.3415 +vn 0.5240 -0.8339 0.1734 +vn 0.2486 -0.5162 -0.8196 +vn 0.2794 -0.5802 -0.7650 +vn 0.3327 -0.6909 -0.6418 +vn 0.3759 -0.7806 -0.4992 +vn 0.4078 -0.8468 -0.3415 +vn 0.4273 -0.8873 -0.1734 +vn 0.2486 -0.5162 0.8196 +vn 0.2794 -0.5802 0.7650 +vn 0.3327 -0.6909 0.6418 +vn 0.3759 -0.7806 0.4992 +vn 0.4078 -0.8468 0.3415 +vn 0.4273 -0.8873 0.1734 +vn 0.1892 -0.5408 -0.8196 +vn 0.2127 -0.6079 -0.7650 +vn 0.2532 -0.7238 -0.6418 +vn 0.2862 -0.8178 -0.4992 +vn 0.3104 -0.8871 -0.3415 +vn 0.3253 -0.9296 -0.1734 +vn 0.1892 -0.5408 0.8196 +vn 0.2127 -0.6079 0.7650 +vn 0.2532 -0.7238 0.6418 +vn 0.2862 -0.8178 0.4992 +vn 0.3104 -0.8871 0.3415 +vn 0.3253 -0.9296 0.1734 +vn 0.1275 -0.5586 -0.8196 +vn 0.1433 -0.6279 -0.7650 +vn 0.1706 -0.7476 -0.6418 +vn 0.1928 -0.8447 -0.4992 +vn 0.2091 -0.9163 -0.3415 +vn 0.2191 -0.9601 -0.1734 +vn 0.1275 -0.5586 0.8196 +vn 0.1433 -0.6279 0.7650 +vn 0.1706 -0.7476 0.6418 +vn 0.1928 -0.8447 0.4992 +vn 0.2091 -0.9163 0.3415 +vn 0.2191 -0.9601 0.1734 +vn 0.0641 -0.5694 -0.8196 +vn 0.0721 -0.6400 -0.7650 +vn 0.0858 -0.7620 -0.6418 +vn 0.0970 -0.8610 -0.4992 +vn 0.1052 -0.9340 -0.3415 +vn 0.1103 -0.9786 -0.1734 +vn 0.0641 -0.5694 0.8196 +vn 0.0721 -0.6400 0.7650 +vn 0.0858 -0.7620 0.6418 +vn 0.0970 -0.8610 0.4992 +vn 0.1052 -0.9340 0.3415 +vn 0.1103 -0.9786 0.1734 +vn 0.0161 -0.5732 -0.8192 +vn 0.0180 -0.6433 -0.7654 +vn 0.0215 -0.7663 -0.6421 +vn 0.0243 -0.8660 -0.4995 +vn 0.0263 -0.9395 -0.3416 +vn 0.0276 -0.9844 -0.1734 +vn 0.0161 -0.5732 0.8192 +vn 0.0180 -0.6433 0.7654 +vn 0.0215 -0.7663 0.6421 +vn 0.0243 -0.8660 0.4995 +vn 0.0263 -0.9395 0.3416 +vn 0.0276 -0.9844 0.1734 +vn -0.0641 0.5694 0.8196 +vn -0.0161 0.5732 0.8192 +vn -0.0180 0.6433 0.7654 +vn -0.0721 0.6400 0.7650 +vn -0.0215 0.7663 0.6421 +vn -0.0858 0.7620 0.6418 +vn -0.0243 0.8660 0.4995 +vn -0.0970 0.8610 0.4992 +vn -0.0263 0.9395 0.3416 +vn -0.1052 0.9340 0.3415 +vn -0.0276 0.9844 0.1734 +vn -0.1103 0.9786 0.1734 +vn -0.0161 0.5732 -0.8192 +vn -0.0641 0.5694 -0.8196 +vn -0.0721 0.6400 -0.7650 +vn -0.0180 0.6433 -0.7654 +vn -0.0858 0.7620 -0.6418 +vn -0.0215 0.7663 -0.6421 +vn -0.0970 0.8610 -0.4992 +vn -0.0243 0.8660 -0.4995 +vn -0.1052 0.9340 -0.3415 +vn -0.0263 0.9395 -0.3416 +vn -0.1103 0.9786 -0.1734 +vn -0.0276 0.9844 -0.1734 +vn -0.1275 0.5586 0.8196 +vn -0.1433 0.6279 0.7650 +vn -0.1706 0.7476 0.6418 +vn -0.1928 0.8447 0.4992 +vn -0.2091 0.9163 0.3415 +vn -0.2191 0.9601 0.1734 +vn -0.1275 0.5586 -0.8196 +vn -0.1433 0.6279 -0.7650 +vn -0.1706 0.7476 -0.6418 +vn -0.1928 0.8447 -0.4992 +vn -0.2091 0.9163 -0.3415 +vn -0.2191 0.9601 -0.1734 +vn -0.1892 0.5408 0.8196 +vn -0.2127 0.6079 0.7650 +vn -0.2532 0.7238 0.6418 +vn -0.2862 0.8178 0.4992 +vn -0.3104 0.8871 0.3415 +vn -0.3253 0.9296 0.1734 +vn -0.1892 0.5408 -0.8196 +vn -0.2127 0.6079 -0.7650 +vn -0.2532 0.7238 -0.6418 +vn -0.2862 0.8178 -0.4992 +vn -0.3104 0.8871 -0.3415 +vn -0.3253 0.9296 -0.1734 +vn -0.2486 0.5162 0.8196 +vn -0.2794 0.5802 0.7650 +vn -0.3327 0.6909 0.6418 +vn -0.3759 0.7806 0.4992 +vn -0.4078 0.8468 0.3415 +vn -0.4273 0.8873 0.1734 +vn -0.2486 0.5162 -0.8196 +vn -0.2794 0.5802 -0.7650 +vn -0.3327 0.6909 -0.6418 +vn -0.3759 0.7806 -0.4992 +vn -0.4078 0.8468 -0.3415 +vn -0.4273 0.8873 -0.1734 +vn -0.3048 0.4851 0.8196 +vn -0.3426 0.5453 0.7650 +vn -0.4080 0.6493 0.6418 +vn -0.4610 0.7336 0.4992 +vn -0.5000 0.7958 0.3415 +vn -0.5240 0.8339 0.1734 +vn -0.3048 0.4851 -0.8196 +vn -0.3426 0.5453 -0.7650 +vn -0.4080 0.6493 -0.6418 +vn -0.4610 0.7336 -0.4992 +vn -0.5000 0.7958 -0.3415 +vn -0.5240 0.8339 -0.1734 +vn -0.3572 0.4480 0.8196 +vn -0.4015 0.5035 0.7650 +vn -0.4781 0.5995 0.6418 +vn -0.5402 0.6774 0.4992 +vn -0.5860 0.7348 0.3415 +vn -0.6140 0.7700 0.1734 +vn -0.3572 0.4480 -0.8196 +vn -0.4015 0.5035 -0.7650 +vn -0.4781 0.5995 -0.6418 +vn -0.5402 0.6774 -0.4992 +vn -0.5860 0.7348 -0.3415 +vn -0.6140 0.7700 -0.1734 +vn -0.4051 0.4051 0.8196 +vn -0.4554 0.4554 0.7650 +vn -0.5422 0.5422 0.6418 +vn -0.6127 0.6127 0.4992 +vn -0.6646 0.6646 0.3415 +vn -0.6964 0.6964 0.1734 +vn -0.4051 0.4051 -0.8196 +vn -0.4554 0.4554 -0.7650 +vn -0.5422 0.5422 -0.6418 +vn -0.6127 0.6127 -0.4992 +vn -0.6646 0.6646 -0.3415 +vn -0.6964 0.6964 -0.1734 +vn -0.4480 0.3572 0.8196 +vn -0.5035 0.4015 0.7650 +vn -0.5995 0.4781 0.6418 +vn -0.6774 0.5402 0.4992 +vn -0.7348 0.5860 0.3415 +vn -0.7700 0.6140 0.1734 +vn -0.4480 0.3572 -0.8196 +vn -0.5035 0.4015 -0.7650 +vn -0.5995 0.4781 -0.6418 +vn -0.6774 0.5402 -0.4992 +vn -0.7348 0.5860 -0.3415 +vn -0.7700 0.6140 -0.1734 +vn -0.4851 0.3048 0.8196 +vn -0.5453 0.3426 0.7650 +vn -0.6493 0.4080 0.6418 +vn -0.7336 0.4610 0.4992 +vn -0.7958 0.5000 0.3415 +vn -0.8339 0.5240 0.1734 +vn -0.4851 0.3048 -0.8196 +vn -0.5453 0.3426 -0.7650 +vn -0.6493 0.4080 -0.6418 +vn -0.7336 0.4610 -0.4992 +vn -0.7958 0.5000 -0.3415 +vn -0.8339 0.5240 -0.1734 +vn -0.5162 0.2486 0.8196 +vn -0.5802 0.2794 0.7650 +vn -0.6909 0.3327 0.6418 +vn -0.7806 0.3759 0.4992 +vn -0.8468 0.4078 0.3415 +vn -0.8873 0.4273 0.1734 +vn -0.5162 0.2486 -0.8196 +vn -0.5802 0.2794 -0.7650 +vn -0.6909 0.3327 -0.6418 +vn -0.7806 0.3759 -0.4992 +vn -0.8468 0.4078 -0.3415 +vn -0.8873 0.4273 -0.1734 +vn -0.5408 0.1892 0.8196 +vn -0.6079 0.2127 0.7650 +vn -0.7238 0.2532 0.6418 +vn -0.8178 0.2862 0.4992 +vn -0.8871 0.3104 0.3415 +vn -0.9296 0.3253 0.1734 +vn -0.5408 0.1892 -0.8196 +vn -0.6079 0.2127 -0.7650 +vn -0.7238 0.2532 -0.6418 +vn -0.8178 0.2862 -0.4992 +vn -0.8871 0.3104 -0.3415 +vn -0.9296 0.3253 -0.1734 +vn -0.5586 0.1275 0.8196 +vn -0.6279 0.1433 0.7650 +vn -0.7476 0.1706 0.6418 +vn -0.8447 0.1928 0.4992 +vn -0.9163 0.2091 0.3415 +vn -0.9601 0.2191 0.1734 +vn -0.5586 0.1275 -0.8196 +vn -0.6279 0.1433 -0.7650 +vn -0.7476 0.1706 -0.6418 +vn -0.8447 0.1928 -0.4992 +vn -0.9163 0.2091 -0.3415 +vn -0.9601 0.2191 -0.1734 +vn -0.5694 0.0641 0.8196 +vn -0.6400 0.0721 0.7650 +vn -0.7620 0.0858 0.6418 +vn -0.8610 0.0970 0.4992 +vn -0.9340 0.1052 0.3415 +vn -0.9786 0.1103 0.1734 +vn -0.5694 0.0641 -0.8196 +vn -0.6400 0.0721 -0.7650 +vn -0.7620 0.0858 -0.6418 +vn -0.8610 0.0970 -0.4992 +vn -0.9340 0.1052 -0.3415 +vn -0.9786 0.1103 -0.1734 +vn -0.5732 0.0161 0.8192 +vn -0.6433 0.0180 0.7654 +vn -0.7663 0.0215 0.6421 +vn -0.8660 0.0243 0.4995 +vn -0.9395 0.0263 0.3416 +vn -0.9844 0.0276 0.1734 +vn -0.5732 0.0161 -0.8192 +vn -0.6433 0.0180 -0.7654 +vn -0.7663 0.0215 -0.6421 +vn -0.8660 0.0243 -0.4995 +vn -0.9395 0.0263 -0.3416 +vn -0.9844 0.0276 -0.1734 +g Pipe_Cylinder.002_gauge_face +s off +f 1/1/1 2/2/1 3/3/1 4/4/1 5/5/1 6/6/1 7/7/1 8/8/1 9/9/1 10/10/1 11/11/1 12/12/1 13/13/1 14/14/1 15/15/1 16/16/1 17/17/1 18/18/1 19/19/1 20/20/1 21/21/1 22/22/1 23/23/1 24/24/1 25/25/1 26/26/1 27/27/1 28/28/1 29/29/1 30/30/1 31/31/1 32/32/1 +g Pipe_Cylinder.002_gauge_face_NONE +s 1 +f 6/33/2 5/34/3 759/35/4 754/36/5 +f 13/37/6 12/38/7 801/39/8 796/40/9 +f 9/41/10 8/42/11 783/43/12 778/44/13 +f 3/45/14 2/46/15 825/47/16 832/48/17 +f 17/49/18 16/50/19 813/51/20 747/52/21 +f 16/50/19 15/53/22 861/54/23 813/51/20 +f 2/46/15 1/55/24 868/56/25 825/47/16 +f 32/57/26 31/58/27 766/59/28 850/60/29 +f 30/61/30 29/62/31 886/63/32 771/64/33 +f 29/62/31 28/65/34 820/66/35 886/63/32 +f 27/67/36 26/68/37 735/69/38 730/70/39 +f 28/65/34 27/67/36 730/70/39 820/66/35 +f 18/71/40 17/49/18 747/52/21 742/72/41 +f 25/73/42 24/74/43 718/75/44 880/76/45 +f 23/77/46 22/78/47 706/79/48 723/80/49 +f 21/81/50 20/82/51 837/83/52 711/84/53 +f 20/82/51 19/85/54 873/86/55 837/83/52 +f 19/85/54 18/71/40 742/72/41 873/86/55 +f 15/53/22 14/87/56 789/88/57 861/54/23 +f 14/87/56 13/37/6 796/40/9 789/88/57 +f 12/38/7 11/89/58 843/90/59 801/39/8 +f 11/89/58 10/91/60 807/92/61 843/90/59 +f 10/91/60 9/41/10 778/44/13 807/92/61 +f 8/42/11 7/93/62 891/94/63 783/43/12 +f 7/93/62 6/33/2 754/36/5 891/94/63 +f 31/58/27 30/61/30 771/64/33 766/59/28 +f 4/95/64 3/45/14 832/48/17 855/96/65 +f 26/68/37 25/73/42 880/76/45 735/69/38 +f 5/34/3 4/95/64 855/96/65 759/35/4 +f 1/55/24 32/57/26 850/60/29 868/56/25 +f 24/74/43 23/77/46 723/80/49 718/75/44 +f 706/79/48 711/84/53 713/97/66 710/98/67 +f 710/98/67 713/97/66 714/99/68 709/100/69 +f 709/100/69 714/99/68 715/101/70 708/102/71 +f 718/75/44 723/80/49 725/103/72 722/104/73 +f 722/104/73 725/103/72 726/105/74 721/106/75 +f 721/106/75 726/105/74 727/107/76 720/108/77 +f 730/70/39 735/69/38 737/109/78 734/110/79 +f 734/110/79 737/109/78 738/111/80 733/112/81 +f 733/112/81 738/111/80 739/113/82 732/114/83 +f 742/72/41 747/52/21 749/115/84 746/116/85 +f 746/116/85 749/115/84 750/117/86 745/118/87 +f 745/118/87 750/117/86 751/119/88 744/120/89 +f 754/36/5 759/35/4 761/121/90 758/122/91 +f 758/122/91 761/121/90 762/123/92 757/124/93 +f 757/124/93 762/123/92 763/125/94 756/126/95 +f 766/59/28 771/64/33 773/127/96 770/128/97 +f 770/128/97 773/127/96 774/129/98 769/130/99 +f 769/130/99 774/129/98 775/131/100 768/132/101 +f 778/44/13 783/43/12 785/133/102 782/134/103 +f 782/134/103 785/133/102 786/135/104 781/136/105 +f 781/136/105 786/135/104 787/137/106 780/138/107 +f 796/40/9 801/39/8 803/139/108 800/140/109 +f 800/140/109 803/139/108 804/141/110 799/142/111 +f 799/142/111 804/141/110 805/143/112 798/144/113 +f 747/52/21 813/51/20 815/145/114 749/115/84 +f 749/115/84 815/145/114 816/146/115 750/117/86 +f 750/117/86 816/146/115 817/147/116 751/119/88 +f 828/148/117 835/149/118 836/150/119 827/151/120 +f 827/151/120 836/150/119 832/48/17 825/47/16 +f 711/84/53 837/83/52 839/152/121 713/97/66 +f 713/97/66 839/152/121 840/153/122 714/99/68 +f 714/99/68 840/153/122 841/154/123 715/101/70 +f 820/66/35 730/70/39 734/110/79 824/155/124 +f 824/155/124 734/110/79 733/112/81 823/156/125 +f 823/156/125 733/112/81 732/114/83 822/157/126 +f 801/39/8 843/90/59 845/158/127 803/139/108 +f 803/139/108 845/158/127 846/159/128 804/141/110 +f 804/141/110 846/159/128 847/160/129 805/143/112 +f 850/60/29 766/59/28 770/128/97 854/161/130 +f 854/161/130 770/128/97 769/130/99 853/162/131 +f 853/162/131 769/130/99 768/132/101 852/163/132 +f 759/35/4 855/96/65 857/164/133 761/121/90 +f 761/121/90 857/164/133 858/165/134 762/123/92 +f 762/123/92 858/165/134 859/166/135 763/125/94 +f 813/51/20 861/54/23 863/167/136 815/145/114 +f 815/145/114 863/167/136 864/168/137 816/146/115 +f 816/146/115 864/168/137 865/169/138 817/147/116 +f 868/56/25 850/60/29 854/161/130 872/170/139 +f 872/170/139 854/161/130 853/162/131 871/171/140 +f 871/171/140 853/162/131 852/163/132 870/172/141 +f 837/83/52 873/86/55 875/173/142 839/152/121 +f 839/152/121 875/173/142 876/174/143 840/153/122 +f 840/153/122 876/174/143 877/175/144 841/154/123 +f 880/76/45 718/75/44 722/104/73 884/176/145 +f 884/176/145 722/104/73 721/106/75 883/177/146 +f 883/177/146 721/106/75 720/108/77 882/178/147 +f 843/90/59 807/92/61 809/179/148 845/158/127 +f 845/158/127 809/179/148 810/180/149 846/159/128 +f 846/159/128 810/180/149 811/181/150 847/160/129 +f 886/63/32 820/66/35 824/155/124 890/182/151 +f 890/182/151 824/155/124 823/156/125 889/183/152 +f 889/183/152 823/156/125 822/157/126 888/184/153 +f 783/43/12 891/94/63 893/185/154 785/133/102 +f 785/133/102 893/185/154 894/186/155 786/135/104 +f 786/135/104 894/186/155 895/187/156 787/137/106 +f 861/54/23 789/88/57 791/188/157 863/167/136 +f 863/167/136 791/188/157 792/189/158 864/168/137 +f 864/168/137 792/189/158 793/190/159 865/169/138 +f 855/96/65 832/48/17 836/150/119 857/164/133 +f 857/164/133 836/150/119 835/149/118 858/165/134 +f 858/165/134 835/149/118 834/191/160 859/166/135 +f 825/47/16 868/56/25 872/170/139 827/151/120 +f 827/151/120 872/170/139 871/171/140 828/148/117 +f 828/148/117 871/171/140 870/172/141 829/192/161 +f 723/80/49 706/79/48 710/98/67 725/103/72 +f 725/103/72 710/98/67 709/100/69 726/105/74 +f 726/105/74 709/100/69 708/102/71 727/107/76 +f 873/86/55 742/72/41 746/116/85 875/173/142 +f 875/173/142 746/116/85 745/118/87 876/174/143 +f 876/174/143 745/118/87 744/120/89 877/175/144 +f 735/69/38 880/76/45 884/176/145 737/109/78 +f 737/109/78 884/176/145 883/177/146 738/111/80 +f 738/111/80 883/177/146 882/178/147 739/113/82 +f 807/92/61 778/44/13 782/134/103 809/179/148 +f 809/179/148 782/134/103 781/136/105 810/180/149 +f 810/180/149 781/136/105 780/138/107 811/181/150 +f 771/64/33 886/63/32 890/182/151 773/127/96 +f 773/127/96 890/182/151 889/183/152 774/129/98 +f 774/129/98 889/183/152 888/184/153 775/131/100 +f 789/88/57 796/40/9 800/140/109 791/188/157 +f 791/188/157 800/140/109 799/142/111 792/189/158 +f 792/189/158 799/142/111 798/144/113 793/190/159 +f 891/94/63 754/36/5 758/122/91 893/185/154 +f 893/185/154 758/122/91 757/124/93 894/186/155 +f 894/186/155 757/124/93 756/126/95 895/187/156 +f 22/78/47 21/81/50 711/84/53 706/79/48 +g Pipe_Cylinder.002_pipe_and_gauge_body +s off +f 161/193/162 164/194/162 165/195/162 166/196/162 167/197/162 168/198/162 +f 173/199/163 176/200/163 177/201/163 178/202/163 179/203/163 180/204/163 +f 185/205/162 188/206/162 189/207/162 190/208/162 191/209/162 192/210/162 +f 197/211/163 200/212/163 201/213/163 202/214/163 203/215/163 204/216/163 +f 209/217/162 212/218/162 213/219/162 214/220/162 215/221/162 216/222/162 +f 221/223/163 224/224/163 225/225/163 226/226/163 227/227/163 228/228/163 +f 233/229/162 236/230/162 237/231/162 238/232/162 239/233/162 240/234/162 +f 245/235/163 248/236/163 249/237/163 250/238/163 251/239/163 252/240/163 +f 257/241/162 260/242/162 261/243/162 262/244/162 263/245/162 264/246/162 +f 269/247/163 272/248/163 273/249/163 274/250/163 275/251/163 276/252/163 +f 281/253/162 284/254/162 285/255/162 286/256/162 287/257/162 288/258/162 +f 293/259/163 296/260/163 297/261/163 298/262/163 299/263/163 300/264/163 +f 305/265/162 308/266/162 309/267/162 310/268/162 311/269/162 312/270/162 +f 317/271/163 320/272/163 321/273/163 322/274/163 323/275/163 324/276/163 +f 329/277/162 332/278/162 333/279/162 334/280/162 335/281/162 336/282/162 +f 341/283/163 344/284/163 345/285/163 346/286/163 347/287/163 348/288/163 +f 385/289/163 386/290/163 416/291/163 415/292/163 413/293/163 414/294/163 412/295/163 411/296/163 410/297/163 409/298/163 407/299/163 408/300/163 406/301/163 405/302/163 404/303/163 403/304/163 402/305/163 401/306/163 400/307/163 399/308/163 398/309/163 397/310/163 396/311/163 395/312/163 394/313/163 393/314/163 392/315/163 391/316/163 390/317/163 389/318/163 388/319/163 387/320/163 +f 364/321/162 381/322/162 365/323/162 366/324/162 367/325/162 368/326/162 369/327/162 382/328/162 370/329/162 371/330/162 372/331/162 383/332/162 373/333/162 384/334/162 374/335/162 375/336/162 376/337/162 377/338/162 378/339/162 353/340/162 354/341/162 355/342/162 356/343/162 357/344/162 358/345/162 359/346/162 360/347/162 361/348/162 379/349/162 362/350/162 380/351/162 363/352/162 +f 421/353/162 431/354/162 436/355/162 440/356/162 444/357/162 449/358/162 448/359/162 453/360/162 457/361/162 461/362/162 465/363/162 470/364/162 479/365/162 480/366/162 478/367/162 472/368/162 467/369/162 463/370/162 459/371/162 455/372/162 451/373/162 446/374/162 442/375/162 438/376/162 433/377/162 429/378/162 422/379/162 423/380/162 420/381/162 417/382/162 418/383/162 419/384/162 +f 425/385/163 424/386/163 430/387/163 435/388/163 434/389/163 439/390/163 443/391/163 447/392/163 452/393/163 456/394/163 460/395/163 464/396/163 468/397/163 473/398/163 469/399/163 475/400/163 474/401/163 476/402/163 477/403/163 471/404/163 466/405/163 462/406/163 458/407/163 454/408/163 450/409/163 445/410/163 441/411/163 437/412/163 432/413/163 428/414/163 427/415/163 426/416/163 +f 481/417/162 484/418/162 485/419/162 486/420/162 487/421/162 488/422/162 +f 493/423/163 496/424/163 497/425/163 498/426/163 499/427/163 500/428/163 +f 505/429/162 508/430/162 509/431/162 510/432/162 511/433/162 512/434/162 +f 517/435/163 520/436/163 521/437/163 522/438/163 523/439/163 524/440/163 +f 529/441/162 532/442/162 533/443/162 534/444/162 535/445/162 536/446/162 +f 541/447/163 544/448/163 545/449/163 546/450/163 547/451/163 548/452/163 +f 553/453/162 556/454/162 557/455/162 558/456/162 559/457/162 560/458/162 +f 565/459/163 568/460/163 569/461/163 570/462/163 571/463/163 572/464/163 +f 577/465/162 580/466/162 581/467/162 582/468/162 583/469/162 584/470/162 +f 589/471/163 592/472/163 593/473/163 594/474/163 595/475/163 596/476/163 +f 601/477/162 604/478/162 605/479/162 606/480/162 607/481/162 608/482/162 +f 613/483/163 616/484/163 617/485/163 618/486/163 619/487/163 620/488/163 +f 625/489/162 628/490/162 629/491/162 630/492/162 631/493/162 632/494/162 +f 637/495/163 640/496/163 641/497/163 642/498/163 643/499/163 644/500/163 +f 649/501/162 652/502/162 653/503/162 654/504/162 655/505/162 656/506/162 +f 661/507/163 664/508/163 665/509/163 666/510/163 667/511/163 668/512/163 +f 673/513/164 674/514/164 686/515/164 691/516/164 692/517/164 702/518/164 675/519/164 676/520/164 694/521/164 700/522/164 688/523/164 683/524/164 693/525/164 699/526/164 687/527/164 682/528/164 690/529/164 677/530/164 678/531/164 701/532/164 695/533/164 696/534/164 684/535/164 698/536/164 685/537/164 679/538/164 704/539/164 697/540/164 680/541/164 681/542/164 703/543/164 689/544/164 +s 1 +f 1139/545/165 1251/546/166 1342/547/167 1153/548/168 +f 1237/549/169 1258/550/170 1244/551/171 1146/552/172 +f 1027/553/173 1048/554/174 1034/555/175 936/556/176 +f 1363/557/177 1657/558/178 1650/559/179 1370/560/180 +f 943/561/181 1132/562/182 1125/563/183 950/564/184 +f 917/565/185 924/566/186 909/567/186 900/568/185 +f 906/569/187 927/570/187 926/571/188 907/572/188 +f 910/573/189 923/574/189 922/575/190 911/576/190 +f 675/577/191 867/578/192 849/579/193 676/580/194 +f 691/581/195 856/582/196 831/583/197 692/584/198 +f 679/585/199 790/586/200 795/587/201 704/588/202 +f 698/589/203 814/590/204 862/591/205 685/592/206 +f 685/592/206 862/591/205 790/586/200 679/585/199 +f 681/593/207 808/594/208 777/595/209 703/596/210 +f 699/597/211 736/598/212 879/599/213 687/600/214 +f 684/601/215 748/602/216 814/590/204 698/589/203 +f 686/603/217 760/604/218 856/582/196 691/581/195 +f 704/588/202 795/587/201 802/605/219 697/606/220 +f 678/607/221 712/608/222 838/609/223 701/610/224 +f 676/611/194 849/612/193 765/613/225 694/614/226 +f 388/615/227 355/616/228 354/617/229 387/618/230 +f 389/619/231 356/620/232 355/616/228 388/615/227 +f 390/621/233 357/622/234 356/620/232 389/619/231 +f 391/623/235 358/624/236 357/622/234 390/621/233 +f 392/625/237 359/626/238 358/624/236 391/623/235 +f 393/627/239 360/628/240 359/626/238 392/625/237 +f 394/629/241 361/630/242 360/628/240 393/627/239 +f 395/631/243 379/632/244 361/630/242 394/629/241 +f 396/633/245 362/634/246 379/632/244 395/631/243 +f 397/635/247 380/636/248 362/634/246 396/633/245 +f 398/637/249 363/638/250 380/636/248 397/635/247 +f 399/639/251 364/640/252 363/638/250 398/637/249 +f 400/641/253 381/642/254 364/640/252 399/639/251 +f 401/643/255 365/644/256 381/642/254 400/641/253 +f 402/645/257 366/646/258 365/644/256 401/643/255 +f 403/647/259 367/648/260 366/646/258 402/645/257 +f 404/649/261 368/650/262 367/651/260 403/652/259 +f 405/653/263 369/654/264 368/650/262 404/649/261 +f 406/655/265 382/656/266 369/654/264 405/653/263 +f 408/657/267 370/658/268 382/656/266 406/655/265 +f 409/659/269 372/660/270 371/661/271 407/662/272 +f 407/662/272 371/661/271 370/658/268 408/657/267 +f 410/663/273 383/664/274 372/660/270 409/659/269 +f 411/665/275 373/666/276 383/664/274 410/663/273 +f 412/667/277 384/668/278 373/666/276 411/665/275 +f 414/669/279 374/670/280 384/668/278 412/667/277 +f 415/671/281 376/672/282 375/673/283 413/674/284 +f 413/674/284 375/673/283 374/670/280 414/669/279 +f 416/675/285 377/676/286 376/672/282 415/671/281 +f 386/677/287 378/678/288 377/676/286 416/675/285 +f 62/679/289 65/680/290 66/681/291 33/682/292 +f 34/683/293 33/682/292 66/681/291 67/684/294 +f 35/685/295 34/683/293 67/684/294 68/686/296 +f 36/687/297 35/685/295 68/686/296 69/688/298 +f 37/689/299 36/687/297 69/688/298 70/690/300 +f 38/691/301 37/689/299 70/690/300 71/692/302 +f 38/691/301 71/692/302 72/693/303 39/694/304 +f 40/695/305 39/694/304 72/693/303 73/696/306 +f 41/697/307 40/695/305 73/696/306 74/698/308 +f 42/699/309 41/697/307 74/698/308 75/700/310 +f 42/699/309 75/700/310 76/701/311 43/702/312 +f 43/702/312 76/701/311 77/703/313 63/704/314 +f 44/705/315 78/706/316 79/707/317 45/708/318 +f 63/704/314 77/703/313 78/706/316 44/705/315 +f 45/708/318 79/707/317 80/709/319 46/710/320 +f 47/711/321 46/710/320 80/709/319 81/712/322 +f 47/711/321 81/712/322 82/713/323 48/714/324 +f 49/715/325 48/714/324 82/713/323 83/716/326 +f 49/717/325 83/718/326 84/719/327 50/720/328 +f 51/721/329 50/720/328 84/719/327 85/722/330 +f 51/721/329 85/722/330 86/723/331 52/724/332 +f 52/724/332 86/723/331 87/725/333 54/726/334 +f 54/726/334 87/725/333 88/727/335 53/728/336 +f 53/728/336 88/727/335 89/729/337 55/730/338 +f 55/730/338 89/729/337 90/731/339 56/732/340 +f 56/732/340 90/731/339 91/733/341 64/734/342 +f 59/735/343 57/736/344 92/737/345 93/738/346 +f 57/736/344 64/734/342 91/733/341 92/737/345 +f 60/739/347 58/740/348 94/741/349 95/742/350 +f 59/735/343 93/738/346 94/741/349 58/740/348 +f 61/743/351 60/739/347 95/742/350 96/744/352 +f 61/743/351 96/744/352 65/680/290 62/679/289 +f 99/745/353 76/701/311 75/700/310 98/746/354 +f 102/747/355 98/746/354 97/748/356 103/749/357 +f 104/750/358 99/745/353 98/746/354 102/747/355 +f 106/751/359 100/752/360 99/745/353 104/750/358 +f 101/753/361 73/696/306 72/693/303 107/754/362 +f 103/749/357 97/748/356 101/753/361 108/755/363 +f 110/756/364 105/757/365 100/752/360 106/751/359 +f 112/758/366 108/755/363 101/753/361 107/754/362 +f 114/759/367 109/760/368 105/757/365 110/756/364 +f 116/761/369 112/758/366 107/754/362 111/762/370 +f 420/763/242 424/764/241 425/765/243 417/766/244 +f 419/767/248 427/768/247 428/769/249 421/770/250 +f 118/771/371 113/772/372 109/760/368 114/759/367 +f 423/773/240 430/774/239 424/764/241 420/763/242 +f 120/775/373 116/761/369 111/762/370 115/776/374 +f 421/770/250 428/769/249 432/777/251 431/778/252 +f 122/779/375 117/780/376 113/772/372 118/771/371 +f 422/781/238 435/782/237 430/774/239 423/773/240 +f 124/783/377 120/775/373 115/776/374 119/784/378 +f 429/785/236 434/786/235 435/782/237 422/781/238 +f 126/787/379 121/788/380 117/780/376 122/779/375 +f 438/789/232 443/790/231 439/791/233 433/792/234 +f 128/793/381 124/783/377 119/784/378 123/794/382 +f 431/778/252 432/777/251 437/795/253 436/796/254 +f 130/797/383 125/798/384 121/788/380 126/787/379 +f 442/799/228 447/800/227 443/790/231 438/789/232 +f 132/801/385 128/793/381 123/794/382 127/802/386 +f 436/796/254 437/795/253 441/803/255 440/804/256 +f 134/805/387 129/806/388 125/807/384 130/808/383 +f 387/618/230 354/617/229 353/809/389 385/810/390 +f 446/811/229 452/812/230 447/800/227 442/799/228 +f 68/686/296 123/794/382 119/784/378 69/688/298 +f 149/813/391 89/729/337 88/727/335 145/814/392 +f 136/815/393 132/801/385 127/802/386 131/816/394 +f 440/804/256 441/803/255 445/817/257 444/818/258 +f 138/819/395 133/820/396 129/806/388 134/805/387 +f 451/821/389 456/822/390 452/812/230 446/811/229 +f 140/823/397 136/815/393 131/816/394 135/824/398 +f 444/818/258 445/817/257 450/825/259 449/826/260 +f 142/827/399 137/828/400 133/820/396 138/819/395 +f 455/829/288 460/830/287 456/822/390 451/821/389 +f 144/831/401 140/823/397 135/824/398 139/832/402 +f 448/833/262 454/834/261 458/835/263 453/836/264 +f 142/827/399 146/837/403 141/838/404 137/828/400 +f 449/826/260 450/825/259 454/839/261 448/840/262 +f 148/841/405 144/831/401 139/832/402 143/842/406 +f 453/836/264 458/835/263 462/843/265 457/844/266 +f 417/766/244 425/765/243 426/845/245 418/846/246 +f 150/847/407 145/814/392 141/838/404 146/837/403 +f 459/848/286 464/849/285 460/830/287 455/829/288 +f 93/738/346 151/850/408 147/851/409 94/741/349 +f 152/852/410 148/841/405 143/842/406 147/851/409 +f 457/844/266 462/843/265 466/853/267 461/854/268 +f 150/847/407 154/855/411 149/813/391 145/814/392 +f 463/856/282 468/857/281 464/849/285 459/848/286 +f 156/858/412 152/852/410 147/851/409 151/850/408 +f 461/854/268 466/853/267 471/859/272 465/860/271 +f 154/855/411 158/861/413 153/862/414 149/813/391 +f 467/863/283 473/864/284 468/857/281 463/856/282 +f 433/792/234 439/791/233 434/786/235 429/785/236 +f 159/865/415 156/858/412 151/850/408 155/866/416 +f 465/860/271 471/859/272 477/867/269 470/868/270 +f 158/861/413 160/869/417 157/870/418 153/862/414 +f 472/871/280 469/872/279 473/864/284 467/863/283 +f 160/869/417 159/865/415 155/866/416 157/870/418 +f 418/846/246 426/845/245 427/768/247 419/767/248 +f 478/873/278 475/874/277 469/872/279 472/871/280 +f 470/868/270 477/867/269 476/875/273 479/876/274 +f 480/877/276 474/878/275 475/874/277 478/873/278 +f 479/876/274 476/875/273 474/878/275 480/877/276 +f 161/879/419 162/880/420 163/881/421 164/882/422 +f 168/883/423 169/884/424 162/880/420 161/879/419 +f 164/882/422 163/881/421 170/885/425 165/886/426 +f 165/886/426 170/885/425 171/887/427 166/888/428 +f 166/889/428 171/890/427 172/891/429 167/892/430 +f 167/892/430 172/891/429 169/884/424 168/883/423 +f 173/893/431 174/894/427 175/895/425 176/896/432 +f 180/897/433 181/898/429 174/894/427 173/893/431 +f 176/896/432 175/895/425 182/899/421 177/900/434 +f 177/900/434 182/899/421 183/901/420 178/902/435 +f 178/903/435 183/904/420 184/905/424 179/906/436 +f 179/906/436 184/905/424 181/898/429 180/897/433 +f 185/907/437 186/908/438 187/909/439 188/910/440 +f 192/911/441 193/912/442 186/908/438 185/907/437 +f 188/910/440 187/909/439 194/913/443 189/914/444 +f 189/914/444 194/913/443 195/915/445 190/916/446 +f 190/917/446 195/918/445 196/919/447 191/920/448 +f 191/920/448 196/919/447 193/912/442 192/911/441 +f 197/921/449 198/922/445 199/923/443 200/924/450 +f 204/925/451 205/926/447 198/922/445 197/921/449 +f 200/924/450 199/923/443 206/927/439 201/928/452 +f 201/928/452 206/927/439 207/929/438 202/930/453 +f 202/931/453 207/932/438 208/933/442 203/934/454 +f 203/934/454 208/933/442 205/926/447 204/925/451 +f 209/935/455 210/936/456 211/937/457 212/938/458 +f 216/939/459 217/940/460 210/936/456 209/935/455 +f 212/938/458 211/937/457 218/941/461 213/942/462 +f 213/942/462 218/941/461 219/943/463 214/944/464 +f 214/945/464 219/946/463 220/947/465 215/948/466 +f 215/948/466 220/947/465 217/940/460 216/939/459 +f 221/949/467 222/950/463 223/951/461 224/952/468 +f 228/953/469 229/954/465 222/950/463 221/949/467 +f 224/952/468 223/951/461 230/955/457 225/956/470 +f 225/956/470 230/955/457 231/957/456 226/958/471 +f 226/959/471 231/960/456 232/961/460 227/962/472 +f 227/962/472 232/961/460 229/954/465 228/953/469 +f 233/963/473 234/964/474 235/965/475 236/966/476 +f 240/967/477 241/968/478 234/964/474 233/963/473 +f 236/966/476 235/965/475 242/969/479 237/970/480 +f 237/970/480 242/969/479 243/971/481 238/972/482 +f 238/973/482 243/974/481 244/975/483 239/976/484 +f 239/976/484 244/975/483 241/968/478 240/967/477 +f 245/977/485 246/978/481 247/979/479 248/980/486 +f 252/981/487 253/982/483 246/978/481 245/977/485 +f 248/980/486 247/979/479 254/983/475 249/984/488 +f 249/984/488 254/983/475 255/985/474 250/986/489 +f 250/987/489 255/988/474 256/989/478 251/990/490 +f 251/990/490 256/989/478 253/982/483 252/981/487 +f 257/991/428 258/992/427 259/993/429 260/994/430 +f 264/995/426 265/996/425 258/992/427 257/991/428 +f 260/994/430 259/993/429 266/997/424 261/998/423 +f 261/998/423 266/997/424 267/999/420 262/1000/419 +f 262/1001/419 267/1002/420 268/1003/421 263/1004/422 +f 263/1004/422 268/1003/421 265/996/425 264/995/426 +f 269/1005/435 270/1006/420 271/1007/424 272/1008/436 +f 276/1009/434 277/1010/421 270/1006/420 269/1005/435 +f 272/1008/436 271/1007/424 278/1011/429 273/1012/433 +f 273/1012/433 278/1011/429 279/1013/427 274/1014/431 +f 274/1015/431 279/1016/427 280/1017/425 275/1018/432 +f 275/1018/432 280/1017/425 277/1010/421 276/1009/434 +f 281/1019/446 282/1020/445 283/1021/447 284/1022/448 +f 288/1023/444 289/1024/443 282/1020/445 281/1019/446 +f 284/1022/448 283/1021/447 290/1025/442 285/1026/441 +f 285/1026/441 290/1025/442 291/1027/438 286/1028/437 +f 286/1029/437 291/1030/438 292/1031/439 287/1032/440 +f 287/1032/440 292/1031/439 289/1024/443 288/1023/444 +f 293/1033/453 294/1034/438 295/1035/442 296/1036/454 +f 300/1037/452 301/1038/439 294/1034/438 293/1033/453 +f 296/1036/454 295/1035/442 302/1039/447 297/1040/451 +f 297/1040/451 302/1039/447 303/1041/445 298/1042/449 +f 298/1043/449 303/1044/445 304/1045/443 299/1046/450 +f 299/1046/450 304/1045/443 301/1038/439 300/1037/452 +f 305/1047/464 306/1048/463 307/1049/465 308/1050/466 +f 312/1051/462 313/1052/461 306/1048/463 305/1047/464 +f 308/1050/466 307/1049/465 314/1053/460 309/1054/459 +f 309/1054/459 314/1053/460 315/1055/456 310/1056/455 +f 310/1057/455 315/1058/456 316/1059/457 311/1060/458 +f 311/1060/458 316/1059/457 313/1052/461 312/1051/462 +f 317/1061/471 318/1062/456 319/1063/460 320/1064/472 +f 324/1065/470 325/1066/457 318/1062/456 317/1061/471 +f 320/1064/472 319/1063/460 326/1067/465 321/1068/469 +f 321/1068/469 326/1067/465 327/1069/463 322/1070/467 +f 322/1071/467 327/1072/463 328/1073/461 323/1074/468 +f 323/1074/468 328/1073/461 325/1066/457 324/1065/470 +f 329/1075/482 330/1076/481 331/1077/483 332/1078/484 +f 336/1079/480 337/1080/479 330/1076/481 329/1075/482 +f 332/1078/484 331/1077/483 338/1081/478 333/1082/477 +f 333/1082/477 338/1081/478 339/1083/474 334/1084/473 +f 334/1085/473 339/1086/474 340/1087/475 335/1088/476 +f 335/1088/476 340/1087/475 337/1080/479 336/1079/480 +f 341/1089/489 342/1090/474 343/1091/478 344/1092/490 +f 348/1093/488 349/1094/475 342/1090/474 341/1089/489 +f 344/1092/490 343/1091/478 350/1095/483 345/1096/487 +f 345/1096/487 350/1095/483 351/1097/481 346/1098/485 +f 346/1099/485 351/1100/481 352/1101/479 347/1102/486 +f 347/1102/486 352/1101/479 349/1094/475 348/1093/488 +f 86/723/331 85/722/330 133/820/396 137/828/400 +f 96/744/352 139/832/402 135/824/398 65/680/290 +f 157/870/418 91/733/341 90/731/339 153/862/414 +f 97/748/356 74/698/308 73/696/306 101/753/361 +f 94/741/349 147/851/409 143/842/406 95/742/350 +f 121/788/380 125/798/384 83/716/326 82/713/323 +f 70/690/300 69/688/298 119/784/378 115/776/374 +f 153/862/414 90/731/339 89/729/337 149/813/391 +f 93/738/346 92/737/345 155/866/416 151/850/408 +f 96/744/352 95/742/350 143/842/406 139/832/402 +f 157/870/418 155/866/416 92/737/345 91/733/341 +f 71/692/302 111/762/370 107/754/362 72/693/303 +f 67/684/294 66/681/291 131/816/394 127/802/386 +f 87/725/333 141/838/404 145/814/392 88/727/335 +f 87/725/333 86/723/331 137/828/400 141/838/404 +f 81/712/322 80/709/319 113/772/372 117/780/376 +f 385/810/390 353/809/389 378/678/288 386/677/287 +f 68/686/296 67/684/294 127/802/386 123/794/382 +f 75/700/310 74/698/308 97/748/356 98/746/354 +f 77/703/313 100/752/360 105/757/365 78/706/316 +f 78/706/316 105/757/365 109/760/368 79/707/317 +f 76/701/311 99/745/353 100/752/360 77/703/313 +f 84/719/327 129/806/388 133/820/396 85/722/330 +f 66/681/291 65/680/290 135/824/398 131/816/394 +f 121/788/380 82/713/323 81/712/322 117/780/376 +f 481/1103/491 482/1104/492 483/1105/493 484/1106/494 +f 488/1107/495 489/1108/496 482/1104/492 481/1103/491 +f 484/1106/494 483/1105/493 490/1109/497 485/1110/498 +f 485/1110/498 490/1109/497 491/1111/499 486/1112/500 +f 486/1113/500 491/1114/499 492/1115/501 487/1116/502 +f 487/1116/502 492/1115/501 489/1108/496 488/1107/495 +f 493/1117/503 494/1118/499 495/1119/497 496/1120/504 +f 500/1121/505 501/1122/501 494/1118/499 493/1117/503 +f 496/1120/504 495/1119/497 502/1123/493 497/1124/506 +f 497/1124/506 502/1123/493 503/1125/492 498/1126/507 +f 498/1127/507 503/1128/492 504/1129/496 499/1130/508 +f 499/1130/508 504/1129/496 501/1122/501 500/1121/505 +f 505/1131/509 506/1132/510 507/1133/511 508/1134/512 +f 512/1135/513 513/1136/514 506/1132/510 505/1131/509 +f 508/1134/512 507/1133/511 514/1137/515 509/1138/516 +f 509/1138/516 514/1137/515 515/1139/517 510/1140/518 +f 510/1141/518 515/1142/517 516/1143/519 511/1144/520 +f 511/1144/520 516/1143/519 513/1136/514 512/1135/513 +f 517/1145/521 518/1146/517 519/1147/515 520/1148/522 +f 524/1149/523 525/1150/519 518/1146/517 517/1145/521 +f 520/1148/522 519/1147/515 526/1151/511 521/1152/524 +f 521/1152/524 526/1151/511 527/1153/510 522/1154/525 +f 522/1155/525 527/1156/510 528/1157/514 523/1158/526 +f 523/1158/526 528/1157/514 525/1150/519 524/1149/523 +f 529/1159/527 530/1160/528 531/1161/529 532/1162/530 +f 536/1163/531 537/1164/532 530/1160/528 529/1159/527 +f 532/1162/530 531/1161/529 538/1165/533 533/1166/534 +f 533/1166/534 538/1165/533 539/1167/535 534/1168/536 +f 534/1169/536 539/1170/535 540/1171/537 535/1172/538 +f 535/1172/538 540/1171/537 537/1164/532 536/1163/531 +f 541/1173/539 542/1174/535 543/1175/533 544/1176/540 +f 548/1177/541 549/1178/537 542/1174/535 541/1173/539 +f 544/1176/540 543/1175/533 550/1179/529 545/1180/542 +f 545/1180/542 550/1179/529 551/1181/528 546/1182/543 +f 546/1183/543 551/1184/528 552/1185/532 547/1186/544 +f 547/1186/544 552/1185/532 549/1178/537 548/1177/541 +f 553/1187/545 554/1188/1 555/1189/546 556/1190/547 +f 560/1191/548 561/1192/549 554/1188/1 553/1187/545 +f 556/1190/547 555/1189/546 562/1193/550 557/1194/551 +f 557/1194/551 562/1193/550 563/1195/164 558/1196/552 +f 558/1197/552 563/1198/164 564/1199/553 559/1200/554 +f 559/1200/554 564/1199/553 561/1192/549 560/1191/548 +f 565/1201/555 566/1202/164 567/1203/550 568/1204/556 +f 572/1205/557 573/1206/553 566/1202/164 565/1201/555 +f 568/1204/556 567/1203/550 574/1207/546 569/1208/558 +f 569/1208/558 574/1207/546 575/1209/1 570/1210/559 +f 570/1211/559 575/1212/1 576/1213/549 571/1214/560 +f 571/1214/560 576/1213/549 573/1206/553 572/1205/557 +f 577/1215/500 578/1216/499 579/1217/501 580/1218/502 +f 584/1219/498 585/1220/497 578/1216/499 577/1215/500 +f 580/1218/502 579/1217/501 586/1221/496 581/1222/495 +f 581/1222/495 586/1221/496 587/1223/492 582/1224/491 +f 582/1225/491 587/1226/492 588/1227/493 583/1228/494 +f 583/1228/494 588/1227/493 585/1220/497 584/1219/498 +f 589/1229/507 590/1230/492 591/1231/496 592/1232/508 +f 596/1233/506 597/1234/493 590/1230/492 589/1229/507 +f 592/1232/508 591/1231/496 598/1235/501 593/1236/505 +f 593/1236/505 598/1235/501 599/1237/499 594/1238/503 +f 594/1239/503 599/1240/499 600/1241/497 595/1242/504 +f 595/1242/504 600/1241/497 597/1234/493 596/1233/506 +f 601/1243/518 602/1244/517 603/1245/519 604/1246/520 +f 608/1247/516 609/1248/515 602/1244/517 601/1243/518 +f 604/1246/520 603/1245/519 610/1249/514 605/1250/513 +f 605/1250/513 610/1249/514 611/1251/510 606/1252/509 +f 606/1253/509 611/1254/510 612/1255/511 607/1256/512 +f 607/1256/512 612/1255/511 609/1248/515 608/1247/516 +f 613/1257/525 614/1258/510 615/1259/514 616/1260/526 +f 620/1261/524 621/1262/511 614/1258/510 613/1257/525 +f 616/1260/526 615/1259/514 622/1263/519 617/1264/523 +f 617/1264/523 622/1263/519 623/1265/517 618/1266/521 +f 618/1267/521 623/1268/517 624/1269/515 619/1270/522 +f 619/1270/522 624/1269/515 621/1262/511 620/1261/524 +f 625/1271/536 626/1272/535 627/1273/537 628/1274/538 +f 632/1275/534 633/1276/533 626/1272/535 625/1271/536 +f 628/1274/538 627/1273/537 634/1277/532 629/1278/531 +f 629/1278/531 634/1277/532 635/1279/528 630/1280/527 +f 630/1281/527 635/1282/528 636/1283/529 631/1284/530 +f 631/1284/530 636/1283/529 633/1276/533 632/1275/534 +f 637/1285/543 638/1286/528 639/1287/532 640/1288/544 +f 644/1289/542 645/1290/529 638/1286/528 637/1285/543 +f 640/1288/544 639/1287/532 646/1291/537 641/1292/541 +f 641/1292/541 646/1291/537 647/1293/535 642/1294/539 +f 642/1295/539 647/1296/535 648/1297/533 643/1298/540 +f 643/1298/540 648/1297/533 645/1290/529 644/1289/542 +f 649/1299/552 650/1300/164 651/1301/553 652/1302/554 +f 656/1303/551 657/1304/550 650/1300/164 649/1299/552 +f 652/1302/554 651/1301/553 658/1305/549 653/1306/548 +f 653/1306/548 658/1305/549 659/1307/1 654/1308/545 +f 654/1309/545 659/1310/1 660/1311/546 655/1312/547 +f 655/1312/547 660/1311/546 657/1304/550 656/1303/551 +f 661/1313/559 662/1314/1 663/1315/549 664/1316/560 +f 668/1317/558 669/1318/546 662/1314/1 661/1313/559 +f 664/1316/560 663/1315/549 670/1319/553 665/1320/557 +f 665/1320/557 670/1319/553 671/1321/164 666/1322/555 +f 666/1323/555 671/1324/164 672/1325/550 667/1326/556 +f 667/1326/556 672/1325/550 669/1318/546 668/1317/558 +f 70/690/300 115/776/374 111/762/370 71/692/302 +f 113/772/372 80/709/319 79/707/317 109/760/368 +f 83/718/326 125/807/384 129/806/388 84/719/327 +f 700/1327/561 772/1328/562 885/1329/563 688/1330/564 +f 687/600/214 879/599/213 717/1331/565 682/1332/566 +f 690/1333/567 724/1334/568 705/1335/569 677/1336/570 +f 695/1337/571 874/1338/572 741/1339/573 696/1340/574 +f 674/1341/575 753/1342/576 760/604/218 686/603/217 +f 688/1330/564 885/1329/563 819/1343/577 683/1344/578 +f 680/1345/579 844/1346/580 808/594/208 681/593/207 +f 689/1347/581 784/1348/582 892/1349/583 673/1350/584 +f 673/1350/584 892/1349/583 753/1342/576 674/1341/575 +f 701/610/224 838/609/223 874/1338/572 695/1337/571 +f 702/1351/585 826/1352/586 867/578/192 675/577/191 +f 677/1336/570 705/1335/569 712/608/222 678/607/221 +f 692/584/198 831/583/197 826/1352/586 702/1351/585 +f 693/1353/587 729/1354/588 736/598/212 699/597/211 +f 696/1340/574 741/1339/573 748/602/216 684/601/215 +f 682/1332/566 717/1331/565 724/1334/568 690/1333/567 +f 683/1344/578 819/1343/577 729/1354/588 693/1353/587 +f 694/614/226 765/613/225 772/1328/562 700/1327/561 +f 703/596/210 777/595/209 784/1348/582 689/1347/581 +f 697/606/220 802/605/219 844/1346/580 680/1345/579 +f 708/1355/71 715/1356/70 716/1357/589 707/1358/590 +f 707/1358/590 716/1357/589 712/608/222 705/1335/569 +f 720/1359/77 727/1360/76 728/1361/591 719/1362/592 +f 719/1362/592 728/1361/591 724/1334/568 717/1331/565 +f 732/1363/83 739/1364/82 740/1365/593 731/1366/594 +f 731/1366/594 740/1365/593 736/598/212 729/1354/588 +f 744/1367/89 751/1368/88 752/1369/595 743/1370/596 +f 743/1370/596 752/1369/595 748/602/216 741/1339/573 +f 756/1371/95 763/1372/94 764/1373/597 755/1374/598 +f 755/1374/598 764/1373/597 760/604/218 753/1342/576 +f 768/1375/101 775/1376/100 776/1377/599 767/1378/600 +f 767/1378/600 776/1377/599 772/1328/562 765/613/225 +f 780/1379/107 787/1380/106 788/1381/601 779/1382/602 +f 779/1382/602 788/1381/601 784/1348/582 777/595/209 +f 798/1383/113 805/1384/112 806/1385/603 797/1386/604 +f 797/1386/604 806/1385/603 802/605/219 795/587/201 +f 751/1387/88 817/1388/116 818/1389/605 752/1390/595 +f 752/1390/595 818/1389/605 814/590/204 748/602/216 +f 826/1352/586 831/583/197 833/1391/606 830/1392/607 +f 830/1392/607 833/1391/606 834/1393/160 829/1394/161 +f 829/1394/161 834/1393/160 835/1395/118 828/1396/117 +f 715/1397/70 841/1398/123 842/1399/608 716/1400/589 +f 716/1400/589 842/1399/608 838/609/223 712/608/222 +f 822/1401/126 732/1402/83 731/1403/594 821/1404/609 +f 821/1404/609 731/1403/594 729/1354/588 819/1343/577 +f 805/1405/112 847/1406/129 848/1407/610 806/1408/603 +f 806/1408/603 848/1407/610 844/1346/580 802/605/219 +f 852/1409/132 768/1410/101 767/1411/600 851/1412/611 +f 851/1412/611 767/1411/600 765/613/225 849/612/193 +f 763/1413/94 859/1414/135 860/1415/612 764/1416/597 +f 764/1416/597 860/1415/612 856/582/196 760/604/218 +f 817/1417/116 865/1418/138 866/1419/613 818/1420/605 +f 818/1420/605 866/1419/613 862/591/205 814/590/204 +f 870/1421/141 852/1422/132 851/1423/611 869/1424/614 +f 869/1424/614 851/1423/611 849/579/193 867/578/192 +f 841/1425/123 877/1426/144 878/1427/615 842/1428/608 +f 842/1428/608 878/1427/615 874/1338/572 838/609/223 +f 882/1429/147 720/1430/77 719/1431/592 881/1432/616 +f 881/1432/616 719/1431/592 717/1331/565 879/599/213 +f 847/1433/129 811/1434/150 812/1435/617 848/1436/610 +f 848/1436/610 812/1435/617 808/594/208 844/1346/580 +f 888/1437/153 822/1438/126 821/1439/609 887/1440/618 +f 887/1440/618 821/1439/609 819/1343/577 885/1329/563 +f 787/1441/106 895/1442/156 896/1443/619 788/1444/601 +f 788/1444/601 896/1443/619 892/1349/583 784/1348/582 +f 865/1445/138 793/1446/159 794/1447/620 866/1448/613 +f 866/1448/613 794/1447/620 790/586/200 862/591/205 +f 859/1449/135 834/1450/160 833/1451/606 860/1452/612 +f 860/1452/612 833/1451/606 831/583/197 856/582/196 +f 829/1453/161 870/1454/141 869/1455/614 830/1456/607 +f 830/1456/607 869/1455/614 867/578/192 826/1352/586 +f 727/1457/76 708/1458/71 707/1459/590 728/1460/591 +f 728/1460/591 707/1459/590 705/1335/569 724/1334/568 +f 877/1461/144 744/1462/89 743/1463/596 878/1464/615 +f 878/1464/615 743/1463/596 741/1339/573 874/1338/572 +f 739/1465/82 882/1466/147 881/1467/616 740/1468/593 +f 740/1468/593 881/1467/616 879/599/213 736/598/212 +f 811/1469/150 780/1470/107 779/1471/602 812/1472/617 +f 812/1472/617 779/1471/602 777/595/209 808/594/208 +f 775/1473/100 888/1474/153 887/1475/618 776/1476/599 +f 776/1476/599 887/1475/618 885/1329/563 772/1328/562 +f 793/1477/159 798/1478/113 797/1479/604 794/1480/620 +f 794/1480/620 797/1479/604 795/587/201 790/586/200 +f 895/1481/156 756/1482/95 755/1483/598 896/1484/619 +f 896/1484/619 755/1483/598 753/1342/576 892/1349/583 +f 921/1485/621 928/1486/622 905/1487/622 912/1488/621 +f 925/1489/623 916/1490/624 901/1491/624 908/1492/623 +f 913/1493/625 920/1494/626 897/1495/626 904/1496/625 +f 902/1497/627 915/1498/627 914/1499/628 903/1500/628 +f 1251/546/166 1139/545/165 1461/1501/629 1664/1502/630 +f 1160/1503/631 1335/1504/632 1328/1505/633 1167/1506/634 +f 1167/1506/634 1328/1505/633 1321/1507/635 1174/1508/636 +f 1174/1508/636 1321/1507/635 1314/1509/637 1181/1510/638 +f 1181/1510/638 1314/1509/637 1307/1511/639 1188/1512/640 +f 1188/1512/640 1307/1511/639 1300/1513/641 1195/1514/642 +f 1195/1515/642 1300/1516/641 1293/1517/643 1202/1518/644 +f 1202/1518/644 1293/1517/643 1286/1519/645 1209/1520/646 +f 1209/1520/646 1286/1519/645 1279/1521/647 1216/1522/648 +f 1216/1522/648 1279/1521/647 1272/1523/649 1223/1524/650 +f 1223/1524/650 1272/1523/649 1265/1525/651 1230/1526/652 +f 1230/1526/652 1265/1525/651 1258/550/170 1237/549/169 +f 1349/1527/653 1566/1528/654 1657/558/178 1363/557/177 +f 1153/548/168 1342/547/167 1335/1504/632 1160/1503/631 +f 1447/1529/655 1573/1530/656 1559/1531/657 1356/1532/658 +f 1370/560/180 1650/559/179 1643/1533/659 1377/1534/660 +f 1377/1534/660 1643/1533/659 1636/1535/661 1384/1536/662 +f 1384/1536/662 1636/1535/661 1629/1537/663 1391/1538/664 +f 1391/1538/664 1629/1537/663 1622/1539/665 1398/1540/666 +f 1398/1540/666 1622/1539/665 1615/1541/667 1405/1542/668 +f 1405/1543/668 1615/1544/667 1608/1545/669 1412/1546/670 +f 1412/1546/670 1608/1545/669 1601/1547/671 1419/1548/672 +f 1419/1548/672 1601/1547/671 1594/1549/673 1426/1550/674 +f 1426/1550/674 1594/1549/673 1587/1551/675 1433/1552/676 +f 1433/1552/676 1587/1551/675 1580/1553/677 1440/1554/678 +f 1440/1554/678 1580/1553/677 1573/1530/656 1447/1529/655 +f 1454/1555/679 1671/1556/680 1762/1557/681 1468/1558/682 +f 1356/1532/658 1559/1531/657 1671/1556/680 1454/1555/679 +f 1552/1559/683 1678/1560/684 1664/1502/630 1461/1501/629 +f 1475/1561/685 1755/1562/686 1748/1563/687 1482/1564/688 +f 1482/1564/688 1748/1563/687 1741/1565/689 1489/1566/690 +f 1489/1566/690 1741/1565/689 1734/1567/691 1496/1568/692 +f 1496/1568/692 1734/1567/691 1727/1569/693 1503/1570/694 +f 1503/1570/694 1727/1569/693 1720/1571/695 1510/1572/696 +f 1510/1573/696 1720/1574/695 1713/1575/697 1517/1576/698 +f 1517/1576/698 1713/1575/697 1706/1577/699 1524/1578/700 +f 1524/1578/700 1706/1577/699 1699/1579/701 1531/1580/702 +f 1531/1580/702 1699/1579/701 1692/1581/703 1538/1582/704 +f 1538/1582/704 1692/1581/703 1685/1583/705 1545/1584/706 +f 1545/1584/706 1685/1583/705 1678/1560/684 1552/1559/683 +f 1468/1558/682 1762/1557/681 1755/1562/686 1475/1561/685 +f 1566/1528/654 1349/1527/653 1041/1585/707 929/1586/708 +f 950/564/184 1125/563/183 1118/1587/709 957/1588/710 +f 957/1588/710 1118/1587/709 1111/1589/711 964/1590/712 +f 964/1590/712 1111/1589/711 1104/1591/713 971/1592/714 +f 971/1592/714 1104/1591/713 1097/1593/715 978/1594/716 +f 978/1594/716 1097/1593/715 1090/1595/717 985/1596/718 +f 985/1597/718 1090/1598/717 1083/1599/719 992/1600/720 +f 992/1600/720 1083/1599/719 1076/1601/721 999/1602/722 +f 999/1602/722 1076/1601/721 1069/1603/723 1006/1604/724 +f 1006/1604/724 1069/1603/723 1062/1605/725 1013/1606/726 +f 1013/1606/726 1062/1605/725 1055/1607/727 1020/1608/728 +f 1020/1608/728 1055/1607/727 1048/554/174 1027/553/173 +f 936/556/176 1034/555/175 1146/552/172 1244/551/171 +f 929/1586/708 1041/1585/707 1132/562/182 943/561/181 +f 905/1487/622 928/1486/622 927/570/187 906/569/187 +f 925/1489/623 908/1492/623 907/1609/188 926/1610/188 +f 901/1491/624 916/1490/624 915/1498/627 902/1497/627 +f 913/1493/625 904/1496/625 903/1500/628 914/1499/628 +f 897/1495/626 920/1494/626 919/1611/729 898/1612/729 +f 917/565/185 900/568/185 899/1613/730 918/1614/730 +f 909/567/186 924/566/186 923/574/189 910/573/189 +f 921/1485/621 912/1488/621 911/576/190 922/575/190 +f 898/1612/729 919/1611/729 918/1614/730 899/1613/730 +f 1154/1615/731 1140/1616/732 1141/1617/733 1155/1618/734 +f 1155/1618/734 1141/1617/733 1142/1619/735 1156/1620/736 +f 1156/1621/736 1142/1622/735 1143/1623/737 1157/1624/738 +f 1157/1624/738 1143/1623/737 1144/1625/739 1158/1626/740 +f 1158/1626/740 1144/1625/739 1145/1627/741 1159/1628/742 +f 1159/1628/742 1145/1627/741 1139/545/165 1153/548/168 +f 1252/1629/743 1343/1630/744 1344/1631/745 1253/1632/746 +f 1253/1632/746 1344/1631/745 1345/1633/747 1254/1634/748 +f 1254/1635/748 1345/1636/747 1346/1637/749 1255/1638/750 +f 1255/1638/750 1346/1637/749 1347/1639/751 1256/1640/752 +f 1256/1640/752 1347/1639/751 1348/1641/753 1257/1642/754 +f 1257/1642/754 1348/1641/753 1342/547/167 1251/546/166 +f 1161/1643/755 1154/1615/731 1155/1618/734 1162/1644/756 +f 1162/1644/756 1155/1618/734 1156/1645/736 1163/1646/757 +f 1163/1647/757 1156/1648/736 1157/1649/738 1164/1650/758 +f 1164/1650/758 1157/1649/738 1158/1651/740 1165/1652/759 +f 1165/1652/759 1158/1651/740 1159/1653/742 1166/1654/760 +f 1166/1654/760 1159/1653/742 1153/548/168 1160/1503/631 +f 1343/1630/744 1336/1655/761 1337/1656/762 1344/1631/745 +f 1344/1631/745 1337/1656/762 1338/1657/763 1345/1658/747 +f 1345/1659/747 1338/1660/763 1339/1661/764 1346/1662/749 +f 1346/1662/749 1339/1661/764 1340/1663/765 1347/1664/751 +f 1347/1664/751 1340/1663/765 1341/1665/766 1348/1666/753 +f 1348/1666/753 1341/1665/766 1335/1504/632 1342/547/167 +f 1168/1667/767 1161/1643/755 1162/1644/756 1169/1668/768 +f 1169/1668/768 1162/1644/756 1163/1669/757 1170/1670/769 +f 1170/1671/769 1163/1672/757 1164/1673/758 1171/1674/770 +f 1171/1674/770 1164/1673/758 1165/1675/759 1172/1676/771 +f 1172/1676/771 1165/1675/759 1166/1677/760 1173/1678/772 +f 1173/1678/772 1166/1677/760 1160/1503/631 1167/1506/634 +f 1336/1655/761 1329/1679/773 1330/1680/774 1337/1656/762 +f 1337/1656/762 1330/1680/774 1331/1681/775 1338/1682/763 +f 1338/1683/763 1331/1684/775 1332/1685/776 1339/1686/764 +f 1339/1686/764 1332/1685/776 1333/1687/777 1340/1688/765 +f 1340/1688/765 1333/1687/777 1334/1689/778 1341/1690/766 +f 1341/1690/766 1334/1689/778 1328/1505/633 1335/1504/632 +f 1175/1691/779 1168/1667/767 1169/1668/768 1176/1692/780 +f 1176/1692/780 1169/1668/768 1170/1693/769 1177/1694/781 +f 1177/1695/781 1170/1696/769 1171/1697/770 1178/1698/782 +f 1178/1698/782 1171/1697/770 1172/1699/771 1179/1700/783 +f 1179/1700/783 1172/1699/771 1173/1701/772 1180/1702/784 +f 1180/1702/784 1173/1701/772 1167/1506/634 1174/1508/636 +f 1329/1679/773 1322/1703/785 1323/1704/786 1330/1680/774 +f 1330/1680/774 1323/1704/786 1324/1705/787 1331/1706/775 +f 1331/1707/775 1324/1708/787 1325/1709/788 1332/1710/776 +f 1332/1710/776 1325/1709/788 1326/1711/789 1333/1712/777 +f 1333/1712/777 1326/1711/789 1327/1713/790 1334/1714/778 +f 1334/1714/778 1327/1713/790 1321/1507/635 1328/1505/633 +f 1182/1715/791 1175/1691/779 1176/1692/780 1183/1716/792 +f 1183/1716/792 1176/1692/780 1177/1717/781 1184/1718/793 +f 1184/1719/793 1177/1720/781 1178/1721/782 1185/1722/794 +f 1185/1722/794 1178/1721/782 1179/1723/783 1186/1724/795 +f 1186/1724/795 1179/1723/783 1180/1725/784 1187/1726/796 +f 1187/1726/796 1180/1725/784 1174/1508/636 1181/1510/638 +f 1322/1703/785 1315/1727/797 1316/1728/798 1323/1704/786 +f 1323/1704/786 1316/1728/798 1317/1729/799 1324/1730/787 +f 1324/1731/787 1317/1732/799 1318/1733/800 1325/1734/788 +f 1325/1734/788 1318/1733/800 1319/1735/801 1326/1736/789 +f 1326/1736/789 1319/1735/801 1320/1737/802 1327/1738/790 +f 1327/1738/790 1320/1737/802 1314/1509/637 1321/1507/635 +f 1189/1739/803 1182/1715/791 1183/1716/792 1190/1740/804 +f 1190/1740/804 1183/1716/792 1184/1741/793 1191/1742/805 +f 1191/1743/805 1184/1744/793 1185/1745/794 1192/1746/806 +f 1192/1746/806 1185/1745/794 1186/1747/795 1193/1748/807 +f 1193/1748/807 1186/1747/795 1187/1749/796 1194/1750/808 +f 1194/1750/808 1187/1749/796 1181/1510/638 1188/1512/640 +f 1315/1727/797 1308/1751/809 1309/1752/810 1316/1728/798 +f 1316/1728/798 1309/1752/810 1310/1753/811 1317/1754/799 +f 1317/1755/799 1310/1756/811 1311/1757/812 1318/1758/800 +f 1318/1758/800 1311/1757/812 1312/1759/813 1319/1760/801 +f 1319/1760/801 1312/1759/813 1313/1761/814 1320/1762/802 +f 1320/1762/802 1313/1761/814 1307/1511/639 1314/1509/637 +f 1196/1763/815 1189/1739/803 1190/1740/804 1197/1764/816 +f 1197/1764/816 1190/1740/804 1191/1765/805 1198/1766/817 +f 1198/1767/817 1191/1768/805 1192/1769/806 1199/1770/818 +f 1199/1770/818 1192/1769/806 1193/1771/807 1200/1772/819 +f 1200/1772/819 1193/1771/807 1194/1773/808 1201/1774/820 +f 1201/1774/820 1194/1773/808 1188/1512/640 1195/1514/642 +f 1308/1751/809 1301/1775/821 1302/1776/822 1309/1752/810 +f 1309/1752/810 1302/1776/822 1303/1777/823 1310/1778/811 +f 1310/1779/811 1303/1780/823 1304/1781/824 1311/1782/812 +f 1311/1782/812 1304/1781/824 1305/1783/825 1312/1784/813 +f 1312/1784/813 1305/1783/825 1306/1785/826 1313/1786/814 +f 1313/1786/814 1306/1785/826 1300/1513/641 1307/1511/639 +f 1203/1787/827 1196/1763/815 1197/1764/816 1204/1788/828 +f 1204/1788/828 1197/1764/816 1198/1789/817 1205/1790/829 +f 1205/1791/829 1198/1792/817 1199/1793/818 1206/1794/830 +f 1206/1794/830 1199/1793/818 1200/1795/819 1207/1796/831 +f 1207/1796/831 1200/1795/819 1201/1797/820 1208/1798/832 +f 1208/1798/832 1201/1797/820 1195/1515/642 1202/1518/644 +f 1301/1775/821 1294/1799/833 1295/1800/834 1302/1776/822 +f 1302/1776/822 1295/1800/834 1296/1801/835 1303/1802/823 +f 1303/1803/823 1296/1804/835 1297/1805/836 1304/1806/824 +f 1304/1806/824 1297/1805/836 1298/1807/837 1305/1808/825 +f 1305/1808/825 1298/1807/837 1299/1809/838 1306/1810/826 +f 1306/1810/826 1299/1809/838 1293/1517/643 1300/1516/641 +f 1210/1811/839 1203/1787/827 1204/1788/828 1211/1812/840 +f 1211/1812/840 1204/1788/828 1205/1813/829 1212/1814/841 +f 1212/1815/841 1205/1816/829 1206/1817/830 1213/1818/842 +f 1213/1818/842 1206/1817/830 1207/1819/831 1214/1820/843 +f 1214/1820/843 1207/1819/831 1208/1821/832 1215/1822/844 +f 1215/1822/844 1208/1821/832 1202/1518/644 1209/1520/646 +f 1294/1799/833 1287/1823/845 1288/1824/846 1295/1800/834 +f 1295/1800/834 1288/1824/846 1289/1825/847 1296/1826/835 +f 1296/1827/835 1289/1828/847 1290/1829/848 1297/1830/836 +f 1297/1830/836 1290/1829/848 1291/1831/849 1298/1832/837 +f 1298/1832/837 1291/1831/849 1292/1833/850 1299/1834/838 +f 1299/1834/838 1292/1833/850 1286/1519/645 1293/1517/643 +f 1217/1835/851 1210/1811/839 1211/1812/840 1218/1836/852 +f 1218/1836/852 1211/1812/840 1212/1837/841 1219/1838/853 +f 1219/1839/853 1212/1840/841 1213/1841/842 1220/1842/854 +f 1220/1842/854 1213/1841/842 1214/1843/843 1221/1844/855 +f 1221/1844/855 1214/1843/843 1215/1845/844 1222/1846/856 +f 1222/1846/856 1215/1845/844 1209/1520/646 1216/1522/648 +f 1287/1823/845 1280/1847/857 1281/1848/858 1288/1824/846 +f 1288/1824/846 1281/1848/858 1282/1849/859 1289/1850/847 +f 1289/1851/847 1282/1852/859 1283/1853/860 1290/1854/848 +f 1290/1854/848 1283/1853/860 1284/1855/861 1291/1856/849 +f 1291/1856/849 1284/1855/861 1285/1857/862 1292/1858/850 +f 1292/1858/850 1285/1857/862 1279/1521/647 1286/1519/645 +f 1224/1859/863 1217/1835/851 1218/1836/852 1225/1860/864 +f 1225/1860/864 1218/1836/852 1219/1861/853 1226/1862/865 +f 1226/1863/865 1219/1864/853 1220/1865/854 1227/1866/866 +f 1227/1866/866 1220/1865/854 1221/1867/855 1228/1868/867 +f 1228/1868/867 1221/1867/855 1222/1869/856 1229/1870/868 +f 1229/1870/868 1222/1869/856 1216/1522/648 1223/1524/650 +f 1280/1847/857 1273/1871/869 1274/1872/870 1281/1848/858 +f 1281/1848/858 1274/1872/870 1275/1873/871 1282/1874/859 +f 1282/1875/859 1275/1876/871 1276/1877/872 1283/1878/860 +f 1283/1878/860 1276/1877/872 1277/1879/873 1284/1880/861 +f 1284/1880/861 1277/1879/873 1278/1881/874 1285/1882/862 +f 1285/1882/862 1278/1881/874 1272/1523/649 1279/1521/647 +f 1231/1883/875 1224/1859/863 1225/1860/864 1232/1884/876 +f 1232/1884/876 1225/1860/864 1226/1885/865 1233/1886/877 +f 1233/1887/877 1226/1888/865 1227/1889/866 1234/1890/878 +f 1234/1890/878 1227/1889/866 1228/1891/867 1235/1892/879 +f 1235/1892/879 1228/1891/867 1229/1893/868 1236/1894/880 +f 1236/1894/880 1229/1893/868 1223/1524/650 1230/1526/652 +f 1273/1871/869 1266/1895/881 1267/1896/882 1274/1872/870 +f 1274/1872/870 1267/1896/882 1268/1897/883 1275/1898/871 +f 1275/1899/871 1268/1900/883 1269/1901/884 1276/1902/872 +f 1276/1902/872 1269/1901/884 1270/1903/885 1277/1904/873 +f 1277/1904/873 1270/1903/885 1271/1905/886 1278/1906/874 +f 1278/1906/874 1271/1905/886 1265/1525/651 1272/1523/649 +f 1238/1907/887 1231/1883/875 1232/1884/876 1239/1908/888 +f 1239/1908/888 1232/1884/876 1233/1909/877 1240/1910/889 +f 1240/1911/889 1233/1912/877 1234/1913/878 1241/1914/890 +f 1241/1914/890 1234/1913/878 1235/1915/879 1242/1916/891 +f 1242/1916/891 1235/1915/879 1236/1917/880 1243/1918/892 +f 1243/1918/892 1236/1917/880 1230/1526/652 1237/549/169 +f 1266/1895/881 1259/1919/893 1260/1920/894 1267/1896/882 +f 1267/1896/882 1260/1920/894 1261/1921/895 1268/1922/883 +f 1268/1923/883 1261/1924/895 1262/1925/896 1269/1926/884 +f 1269/1926/884 1262/1925/896 1263/1927/897 1270/1928/885 +f 1270/1928/885 1263/1927/897 1264/1929/898 1271/1930/886 +f 1271/1930/886 1264/1929/898 1258/550/170 1265/1525/651 +f 1147/1931/899 1238/1907/887 1239/1908/888 1148/1932/900 +f 1148/1932/900 1239/1908/888 1240/1933/889 1149/1934/901 +f 1149/1935/901 1240/1936/889 1241/1937/890 1150/1938/902 +f 1150/1938/902 1241/1937/890 1242/1939/891 1151/1940/903 +f 1151/1940/903 1242/1939/891 1243/1941/892 1152/1942/904 +f 1152/1942/904 1243/1941/892 1237/549/169 1146/552/172 +f 1259/1919/893 1245/1943/905 1246/1944/906 1260/1920/894 +f 1260/1920/894 1246/1944/906 1247/1945/907 1261/1946/895 +f 1261/1947/895 1247/1948/907 1248/1949/908 1262/1950/896 +f 1262/1950/896 1248/1949/908 1249/1951/909 1263/1952/897 +f 1263/1952/897 1249/1951/909 1250/1953/910 1264/1954/898 +f 1264/1954/898 1250/1953/910 1244/551/171 1258/550/170 +f 1364/1955/911 1350/1956/912 1351/1957/913 1365/1958/914 +f 1365/1958/914 1351/1957/913 1352/1959/915 1366/1960/916 +f 1366/1961/916 1352/1962/915 1353/1963/917 1367/1964/918 +f 1367/1964/918 1353/1963/917 1354/1965/919 1368/1966/920 +f 1368/1966/920 1354/1965/919 1355/1967/921 1369/1968/922 +f 1369/1968/922 1355/1967/921 1349/1527/653 1363/557/177 +f 1567/1969/923 1658/1970/924 1659/1971/925 1568/1972/926 +f 1568/1972/926 1659/1971/925 1660/1973/927 1569/1974/928 +f 1569/1975/928 1660/1976/927 1661/1977/929 1570/1978/930 +f 1570/1978/930 1661/1977/929 1662/1979/931 1571/1980/932 +f 1571/1980/932 1662/1979/931 1663/1981/933 1572/1982/934 +f 1572/1982/934 1663/1981/933 1657/558/178 1566/1528/654 +f 1371/1983/935 1364/1955/911 1365/1958/914 1372/1984/936 +f 1372/1984/936 1365/1958/914 1366/1985/916 1373/1986/937 +f 1373/1987/937 1366/1988/916 1367/1989/918 1374/1990/938 +f 1374/1990/938 1367/1989/918 1368/1991/920 1375/1992/939 +f 1375/1992/939 1368/1991/920 1369/1993/922 1376/1994/940 +f 1376/1994/940 1369/1993/922 1363/557/177 1370/560/180 +f 1658/1970/924 1651/1995/941 1652/1996/942 1659/1971/925 +f 1659/1971/925 1652/1996/942 1653/1997/943 1660/1998/927 +f 1660/1999/927 1653/2000/943 1654/2001/944 1661/2002/929 +f 1661/2002/929 1654/2001/944 1655/2003/945 1662/2004/931 +f 1662/2004/931 1655/2003/945 1656/2005/946 1663/2006/933 +f 1663/2006/933 1656/2005/946 1650/559/179 1657/558/178 +f 1378/2007/947 1371/1983/935 1372/1984/936 1379/2008/948 +f 1379/2008/948 1372/1984/936 1373/2009/937 1380/2010/949 +f 1380/2011/949 1373/2012/937 1374/2013/938 1381/2014/950 +f 1381/2014/950 1374/2013/938 1375/2015/939 1382/2016/951 +f 1382/2016/951 1375/2015/939 1376/2017/940 1383/2018/952 +f 1383/2018/952 1376/2017/940 1370/560/180 1377/1534/660 +f 1651/1995/941 1644/2019/953 1645/2020/954 1652/1996/942 +f 1652/1996/942 1645/2020/954 1646/2021/955 1653/2022/943 +f 1653/2023/943 1646/2024/955 1647/2025/956 1654/2026/944 +f 1654/2026/944 1647/2025/956 1648/2027/957 1655/2028/945 +f 1655/2028/945 1648/2027/957 1649/2029/958 1656/2030/946 +f 1656/2030/946 1649/2029/958 1643/1533/659 1650/559/179 +f 1385/2031/959 1378/2007/947 1379/2008/948 1386/2032/960 +f 1386/2032/960 1379/2008/948 1380/2033/949 1387/2034/961 +f 1387/2035/961 1380/2036/949 1381/2037/950 1388/2038/962 +f 1388/2038/962 1381/2037/950 1382/2039/951 1389/2040/963 +f 1389/2040/963 1382/2039/951 1383/2041/952 1390/2042/964 +f 1390/2042/964 1383/2041/952 1377/1534/660 1384/1536/662 +f 1644/2019/953 1637/2043/965 1638/2044/966 1645/2020/954 +f 1645/2020/954 1638/2044/966 1639/2045/967 1646/2046/955 +f 1646/2047/955 1639/2048/967 1640/2049/968 1647/2050/956 +f 1647/2050/956 1640/2049/968 1641/2051/969 1648/2052/957 +f 1648/2052/957 1641/2051/969 1642/2053/970 1649/2054/958 +f 1649/2054/958 1642/2053/970 1636/1535/661 1643/1533/659 +f 1392/2055/971 1385/2031/959 1386/2032/960 1393/2056/972 +f 1393/2056/972 1386/2032/960 1387/2057/961 1394/2058/973 +f 1394/2059/973 1387/2060/961 1388/2061/962 1395/2062/974 +f 1395/2062/974 1388/2061/962 1389/2063/963 1396/2064/975 +f 1396/2064/975 1389/2063/963 1390/2065/964 1397/2066/976 +f 1397/2066/976 1390/2065/964 1384/1536/662 1391/1538/664 +f 1637/2043/965 1630/2067/977 1631/2068/978 1638/2044/966 +f 1638/2044/966 1631/2068/978 1632/2069/979 1639/2070/967 +f 1639/2071/967 1632/2072/979 1633/2073/980 1640/2074/968 +f 1640/2074/968 1633/2073/980 1634/2075/981 1641/2076/969 +f 1641/2076/969 1634/2075/981 1635/2077/982 1642/2078/970 +f 1642/2078/970 1635/2077/982 1629/1537/663 1636/1535/661 +f 1399/2079/983 1392/2055/971 1393/2056/972 1400/2080/984 +f 1400/2080/984 1393/2056/972 1394/2081/973 1401/2082/985 +f 1401/2083/985 1394/2084/973 1395/2085/974 1402/2086/986 +f 1402/2086/986 1395/2085/974 1396/2087/975 1403/2088/987 +f 1403/2088/987 1396/2087/975 1397/2089/976 1404/2090/988 +f 1404/2090/988 1397/2089/976 1391/1538/664 1398/1540/666 +f 1630/2067/977 1623/2091/989 1624/2092/990 1631/2068/978 +f 1631/2068/978 1624/2092/990 1625/2093/991 1632/2094/979 +f 1632/2095/979 1625/2096/991 1626/2097/992 1633/2098/980 +f 1633/2098/980 1626/2097/992 1627/2099/993 1634/2100/981 +f 1634/2100/981 1627/2099/993 1628/2101/994 1635/2102/982 +f 1635/2102/982 1628/2101/994 1622/1539/665 1629/1537/663 +f 1406/2103/995 1399/2079/983 1400/2080/984 1407/2104/996 +f 1407/2104/996 1400/2080/984 1401/2105/985 1408/2106/997 +f 1408/2107/997 1401/2108/985 1402/2109/986 1409/2110/998 +f 1409/2110/998 1402/2109/986 1403/2111/987 1410/2112/999 +f 1410/2112/999 1403/2111/987 1404/2113/988 1411/2114/1000 +f 1411/2114/1000 1404/2113/988 1398/1540/666 1405/1542/668 +f 1623/2091/989 1616/2115/1001 1617/2116/1002 1624/2092/990 +f 1624/2092/990 1617/2116/1002 1618/2117/1003 1625/2118/991 +f 1625/2119/991 1618/2120/1003 1619/2121/1004 1626/2122/992 +f 1626/2122/992 1619/2121/1004 1620/2123/1005 1627/2124/993 +f 1627/2124/993 1620/2123/1005 1621/2125/1006 1628/2126/994 +f 1628/2126/994 1621/2125/1006 1615/1541/667 1622/1539/665 +f 1413/2127/1007 1406/2103/995 1407/2104/996 1414/2128/1008 +f 1414/2128/1008 1407/2104/996 1408/2129/997 1415/2130/1009 +f 1415/2131/1009 1408/2132/997 1409/2133/998 1416/2134/1010 +f 1416/2134/1010 1409/2133/998 1410/2135/999 1417/2136/1011 +f 1417/2136/1011 1410/2135/999 1411/2137/1000 1418/2138/1012 +f 1418/2138/1012 1411/2137/1000 1405/1543/668 1412/1546/670 +f 1616/2115/1001 1609/2139/1013 1610/2140/1014 1617/2116/1002 +f 1617/2116/1002 1610/2140/1014 1611/2141/1015 1618/2142/1003 +f 1618/2143/1003 1611/2144/1015 1612/2145/1016 1619/2146/1004 +f 1619/2146/1004 1612/2145/1016 1613/2147/1017 1620/2148/1005 +f 1620/2148/1005 1613/2147/1017 1614/2149/1018 1621/2150/1006 +f 1621/2150/1006 1614/2149/1018 1608/1545/669 1615/1544/667 +f 1420/2151/1019 1413/2127/1007 1414/2128/1008 1421/2152/1020 +f 1421/2152/1020 1414/2128/1008 1415/2153/1009 1422/2154/1021 +f 1422/2155/1021 1415/2156/1009 1416/2157/1010 1423/2158/1022 +f 1423/2158/1022 1416/2157/1010 1417/2159/1011 1424/2160/1023 +f 1424/2160/1023 1417/2159/1011 1418/2161/1012 1425/2162/1024 +f 1425/2162/1024 1418/2161/1012 1412/1546/670 1419/1548/672 +f 1609/2139/1013 1602/2163/1025 1603/2164/1026 1610/2140/1014 +f 1610/2140/1014 1603/2164/1026 1604/2165/1027 1611/2166/1015 +f 1611/2167/1015 1604/2168/1027 1605/2169/1028 1612/2170/1016 +f 1612/2170/1016 1605/2169/1028 1606/2171/1029 1613/2172/1017 +f 1613/2172/1017 1606/2171/1029 1607/2173/1030 1614/2174/1018 +f 1614/2174/1018 1607/2173/1030 1601/1547/671 1608/1545/669 +f 1427/2175/1031 1420/2151/1019 1421/2152/1020 1428/2176/1032 +f 1428/2176/1032 1421/2152/1020 1422/2177/1021 1429/2178/1033 +f 1429/2179/1033 1422/2180/1021 1423/2181/1022 1430/2182/1034 +f 1430/2182/1034 1423/2181/1022 1424/2183/1023 1431/2184/1035 +f 1431/2184/1035 1424/2183/1023 1425/2185/1024 1432/2186/1036 +f 1432/2186/1036 1425/2185/1024 1419/1548/672 1426/1550/674 +f 1602/2163/1025 1595/2187/1037 1596/2188/1038 1603/2164/1026 +f 1603/2164/1026 1596/2188/1038 1597/2189/1039 1604/2190/1027 +f 1604/2191/1027 1597/2192/1039 1598/2193/1040 1605/2194/1028 +f 1605/2194/1028 1598/2193/1040 1599/2195/1041 1606/2196/1029 +f 1606/2196/1029 1599/2195/1041 1600/2197/1042 1607/2198/1030 +f 1607/2198/1030 1600/2197/1042 1594/1549/673 1601/1547/671 +f 1434/2199/1043 1427/2175/1031 1428/2176/1032 1435/2200/1044 +f 1435/2200/1044 1428/2176/1032 1429/2201/1033 1436/2202/1045 +f 1436/2203/1045 1429/2204/1033 1430/2205/1034 1437/2206/1046 +f 1437/2206/1046 1430/2205/1034 1431/2207/1035 1438/2208/1047 +f 1438/2208/1047 1431/2207/1035 1432/2209/1036 1439/2210/1048 +f 1439/2210/1048 1432/2209/1036 1426/1550/674 1433/1552/676 +f 1595/2187/1037 1588/2211/1049 1589/2212/1050 1596/2188/1038 +f 1596/2188/1038 1589/2212/1050 1590/2213/1051 1597/2214/1039 +f 1597/2215/1039 1590/2216/1051 1591/2217/1052 1598/2218/1040 +f 1598/2218/1040 1591/2217/1052 1592/2219/1053 1599/2220/1041 +f 1599/2220/1041 1592/2219/1053 1593/2221/1054 1600/2222/1042 +f 1600/2222/1042 1593/2221/1054 1587/1551/675 1594/1549/673 +f 1441/2223/1055 1434/2199/1043 1435/2200/1044 1442/2224/1056 +f 1442/2224/1056 1435/2200/1044 1436/2225/1045 1443/2226/1057 +f 1443/2227/1057 1436/2228/1045 1437/2229/1046 1444/2230/1058 +f 1444/2230/1058 1437/2229/1046 1438/2231/1047 1445/2232/1059 +f 1445/2232/1059 1438/2231/1047 1439/2233/1048 1446/2234/1060 +f 1446/2234/1060 1439/2233/1048 1433/1552/676 1440/1554/678 +f 1588/2211/1049 1581/2235/1061 1582/2236/1062 1589/2212/1050 +f 1589/2212/1050 1582/2236/1062 1583/2237/1063 1590/2238/1051 +f 1590/2239/1051 1583/2240/1063 1584/2241/1064 1591/2242/1052 +f 1591/2242/1052 1584/2241/1064 1585/2243/1065 1592/2244/1053 +f 1592/2244/1053 1585/2243/1065 1586/2245/1066 1593/2246/1054 +f 1593/2246/1054 1586/2245/1066 1580/1553/677 1587/1551/675 +f 1448/2247/1067 1441/2223/1055 1442/2224/1056 1449/2248/1068 +f 1449/2248/1068 1442/2224/1056 1443/2249/1057 1450/2250/1069 +f 1450/2251/1069 1443/2252/1057 1444/2253/1058 1451/2254/1070 +f 1451/2254/1070 1444/2253/1058 1445/2255/1059 1452/2256/1071 +f 1452/2256/1071 1445/2255/1059 1446/2257/1060 1453/2258/1072 +f 1453/2258/1072 1446/2257/1060 1440/1554/678 1447/1529/655 +f 1581/2235/1061 1574/2259/1073 1575/2260/1074 1582/2236/1062 +f 1582/2236/1062 1575/2260/1074 1576/2261/1075 1583/2262/1063 +f 1583/2263/1063 1576/2264/1075 1577/2265/1076 1584/2266/1064 +f 1584/2266/1064 1577/2265/1076 1578/2267/1077 1585/2268/1065 +f 1585/2268/1065 1578/2267/1077 1579/2269/1078 1586/2270/1066 +f 1586/2270/1066 1579/2269/1078 1573/1530/656 1580/1553/677 +f 1357/2271/1079 1448/2247/1067 1449/2248/1068 1358/2272/1080 +f 1358/2272/1080 1449/2248/1068 1450/2273/1069 1359/2274/1081 +f 1359/2275/1081 1450/2276/1069 1451/2277/1070 1360/2278/1082 +f 1360/2278/1082 1451/2277/1070 1452/2279/1071 1361/2280/1083 +f 1361/2280/1083 1452/2279/1071 1453/2281/1072 1362/2282/1084 +f 1362/2282/1084 1453/2281/1072 1447/1529/655 1356/1532/658 +f 1574/2259/1073 1560/2283/1085 1561/2284/1086 1575/2260/1074 +f 1575/2260/1074 1561/2284/1086 1562/2285/1087 1576/2286/1075 +f 1576/2287/1075 1562/2288/1087 1563/2289/1088 1577/2290/1076 +f 1577/2290/1076 1563/2289/1088 1564/2291/1089 1578/2292/1077 +f 1578/2292/1077 1564/2291/1089 1565/2293/1090 1579/2294/1078 +f 1579/2294/1078 1565/2293/1090 1559/1531/657 1573/1530/656 +f 1469/2295/1091 1455/2296/1092 1456/2297/1093 1470/2298/1094 +f 1470/2298/1094 1456/2297/1093 1457/2299/1095 1471/2300/1096 +f 1471/2301/1096 1457/2302/1095 1458/2303/1097 1472/2304/1098 +f 1472/2304/1098 1458/2303/1097 1459/2305/1099 1473/2306/1100 +f 1473/2306/1100 1459/2305/1099 1460/2307/1101 1474/2308/1102 +f 1474/2308/1102 1460/2307/1101 1454/1555/679 1468/1558/682 +f 1672/2309/1103 1763/2310/1104 1764/2311/1105 1673/2312/1106 +f 1673/2312/1106 1764/2311/1105 1765/2313/1107 1674/2314/1108 +f 1674/2315/1108 1765/2316/1107 1766/2317/1109 1675/2318/1110 +f 1675/2318/1110 1766/2317/1109 1767/2319/1111 1676/2320/1112 +f 1676/2320/1112 1767/2319/1111 1768/2321/1113 1677/2322/1114 +f 1677/2322/1114 1768/2321/1113 1762/1557/681 1671/1556/680 +f 1476/2323/1115 1469/2295/1091 1470/2298/1094 1477/2324/1116 +f 1477/2324/1116 1470/2298/1094 1471/2325/1096 1478/2326/1117 +f 1478/2327/1117 1471/2328/1096 1472/2329/1098 1479/2330/1118 +f 1479/2330/1118 1472/2329/1098 1473/2331/1100 1480/2332/1119 +f 1480/2332/1119 1473/2331/1100 1474/2333/1102 1481/2334/1120 +f 1481/2334/1120 1474/2333/1102 1468/1558/682 1475/1561/685 +f 1763/2310/1104 1756/2335/1121 1757/2336/1122 1764/2311/1105 +f 1764/2311/1105 1757/2336/1122 1758/2337/1123 1765/2338/1107 +f 1765/2339/1107 1758/2340/1123 1759/2341/1124 1766/2342/1109 +f 1766/2342/1109 1759/2341/1124 1760/2343/1125 1767/2344/1111 +f 1767/2344/1111 1760/2343/1125 1761/2345/1126 1768/2346/1113 +f 1768/2346/1113 1761/2345/1126 1755/1562/686 1762/1557/681 +f 1483/2347/1127 1476/2323/1115 1477/2324/1116 1484/2348/1128 +f 1484/2348/1128 1477/2324/1116 1478/2349/1117 1485/2350/1129 +f 1485/2351/1129 1478/2352/1117 1479/2353/1118 1486/2354/1130 +f 1486/2354/1130 1479/2353/1118 1480/2355/1119 1487/2356/1131 +f 1487/2356/1131 1480/2355/1119 1481/2357/1120 1488/2358/1132 +f 1488/2358/1132 1481/2357/1120 1475/1561/685 1482/1564/688 +f 1756/2335/1121 1749/2359/1133 1750/2360/1134 1757/2336/1122 +f 1757/2336/1122 1750/2360/1134 1751/2361/1135 1758/2362/1123 +f 1758/2363/1123 1751/2364/1135 1752/2365/1136 1759/2366/1124 +f 1759/2366/1124 1752/2365/1136 1753/2367/1137 1760/2368/1125 +f 1760/2368/1125 1753/2367/1137 1754/2369/1138 1761/2370/1126 +f 1761/2370/1126 1754/2369/1138 1748/1563/687 1755/1562/686 +f 1490/2371/1139 1483/2347/1127 1484/2348/1128 1491/2372/1140 +f 1491/2372/1140 1484/2348/1128 1485/2373/1129 1492/2374/1141 +f 1492/2375/1141 1485/2376/1129 1486/2377/1130 1493/2378/1142 +f 1493/2378/1142 1486/2377/1130 1487/2379/1131 1494/2380/1143 +f 1494/2380/1143 1487/2379/1131 1488/2381/1132 1495/2382/1144 +f 1495/2382/1144 1488/2381/1132 1482/1564/688 1489/1566/690 +f 1749/2359/1133 1742/2383/1145 1743/2384/1146 1750/2360/1134 +f 1750/2360/1134 1743/2384/1146 1744/2385/1147 1751/2386/1135 +f 1751/2387/1135 1744/2388/1147 1745/2389/1148 1752/2390/1136 +f 1752/2390/1136 1745/2389/1148 1746/2391/1149 1753/2392/1137 +f 1753/2392/1137 1746/2391/1149 1747/2393/1150 1754/2394/1138 +f 1754/2394/1138 1747/2393/1150 1741/1565/689 1748/1563/687 +f 1497/2395/1151 1490/2371/1139 1491/2372/1140 1498/2396/1152 +f 1498/2396/1152 1491/2372/1140 1492/2397/1141 1499/2398/1153 +f 1499/2399/1153 1492/2400/1141 1493/2401/1142 1500/2402/1154 +f 1500/2402/1154 1493/2401/1142 1494/2403/1143 1501/2404/1155 +f 1501/2404/1155 1494/2403/1143 1495/2405/1144 1502/2406/1156 +f 1502/2406/1156 1495/2405/1144 1489/1566/690 1496/1568/692 +f 1742/2383/1145 1735/2407/1157 1736/2408/1158 1743/2384/1146 +f 1743/2384/1146 1736/2408/1158 1737/2409/1159 1744/2410/1147 +f 1744/2411/1147 1737/2412/1159 1738/2413/1160 1745/2414/1148 +f 1745/2414/1148 1738/2413/1160 1739/2415/1161 1746/2416/1149 +f 1746/2416/1149 1739/2415/1161 1740/2417/1162 1747/2418/1150 +f 1747/2418/1150 1740/2417/1162 1734/1567/691 1741/1565/689 +f 1504/2419/1163 1497/2395/1151 1498/2396/1152 1505/2420/1164 +f 1505/2420/1164 1498/2396/1152 1499/2421/1153 1506/2422/1165 +f 1506/2423/1165 1499/2424/1153 1500/2425/1154 1507/2426/1166 +f 1507/2426/1166 1500/2425/1154 1501/2427/1155 1508/2428/1167 +f 1508/2428/1167 1501/2427/1155 1502/2429/1156 1509/2430/1168 +f 1509/2430/1168 1502/2429/1156 1496/1568/692 1503/1570/694 +f 1735/2407/1157 1728/2431/1169 1729/2432/1170 1736/2408/1158 +f 1736/2408/1158 1729/2432/1170 1730/2433/1171 1737/2434/1159 +f 1737/2435/1159 1730/2436/1171 1731/2437/1172 1738/2438/1160 +f 1738/2438/1160 1731/2437/1172 1732/2439/1173 1739/2440/1161 +f 1739/2440/1161 1732/2439/1173 1733/2441/1174 1740/2442/1162 +f 1740/2442/1162 1733/2441/1174 1727/1569/693 1734/1567/691 +f 1511/2443/1175 1504/2419/1163 1505/2420/1164 1512/2444/1176 +f 1512/2444/1176 1505/2420/1164 1506/2445/1165 1513/2446/1177 +f 1513/2447/1177 1506/2448/1165 1507/2449/1166 1514/2450/1178 +f 1514/2450/1178 1507/2449/1166 1508/2451/1167 1515/2452/1179 +f 1515/2452/1179 1508/2451/1167 1509/2453/1168 1516/2454/1180 +f 1516/2454/1180 1509/2453/1168 1503/1570/694 1510/1572/696 +f 1728/2431/1169 1721/2455/1181 1722/2456/1182 1729/2432/1170 +f 1729/2432/1170 1722/2456/1182 1723/2457/1183 1730/2458/1171 +f 1730/2459/1171 1723/2460/1183 1724/2461/1184 1731/2462/1172 +f 1731/2462/1172 1724/2461/1184 1725/2463/1185 1732/2464/1173 +f 1732/2464/1173 1725/2463/1185 1726/2465/1186 1733/2466/1174 +f 1733/2466/1174 1726/2465/1186 1720/1571/695 1727/1569/693 +f 1518/2467/1187 1511/2443/1175 1512/2444/1176 1519/2468/1188 +f 1519/2468/1188 1512/2444/1176 1513/2469/1177 1520/2470/1189 +f 1520/2471/1189 1513/2472/1177 1514/2473/1178 1521/2474/1190 +f 1521/2474/1190 1514/2473/1178 1515/2475/1179 1522/2476/1191 +f 1522/2476/1191 1515/2475/1179 1516/2477/1180 1523/2478/1192 +f 1523/2478/1192 1516/2477/1180 1510/1573/696 1517/1576/698 +f 1721/2455/1181 1714/2479/1193 1715/2480/1194 1722/2456/1182 +f 1722/2456/1182 1715/2480/1194 1716/2481/1195 1723/2482/1183 +f 1723/2483/1183 1716/2484/1195 1717/2485/1196 1724/2486/1184 +f 1724/2486/1184 1717/2485/1196 1718/2487/1197 1725/2488/1185 +f 1725/2488/1185 1718/2487/1197 1719/2489/1198 1726/2490/1186 +f 1726/2490/1186 1719/2489/1198 1713/1575/697 1720/1574/695 +f 1525/2491/1199 1518/2467/1187 1519/2468/1188 1526/2492/1200 +f 1526/2492/1200 1519/2468/1188 1520/2493/1189 1527/2494/1201 +f 1527/2495/1201 1520/2496/1189 1521/2497/1190 1528/2498/1202 +f 1528/2498/1202 1521/2497/1190 1522/2499/1191 1529/2500/1203 +f 1529/2500/1203 1522/2499/1191 1523/2501/1192 1530/2502/1204 +f 1530/2502/1204 1523/2501/1192 1517/1576/698 1524/1578/700 +f 1714/2479/1193 1707/2503/1205 1708/2504/1206 1715/2480/1194 +f 1715/2480/1194 1708/2504/1206 1709/2505/1207 1716/2506/1195 +f 1716/2507/1195 1709/2508/1207 1710/2509/1208 1717/2510/1196 +f 1717/2510/1196 1710/2509/1208 1711/2511/1209 1718/2512/1197 +f 1718/2512/1197 1711/2511/1209 1712/2513/1210 1719/2514/1198 +f 1719/2514/1198 1712/2513/1210 1706/1577/699 1713/1575/697 +f 1532/2515/1211 1525/2491/1199 1526/2492/1200 1533/2516/1212 +f 1533/2516/1212 1526/2492/1200 1527/2517/1201 1534/2518/1213 +f 1534/2519/1213 1527/2520/1201 1528/2521/1202 1535/2522/1214 +f 1535/2522/1214 1528/2521/1202 1529/2523/1203 1536/2524/1215 +f 1536/2524/1215 1529/2523/1203 1530/2525/1204 1537/2526/1216 +f 1537/2526/1216 1530/2525/1204 1524/1578/700 1531/1580/702 +f 1707/2503/1205 1700/2527/1217 1701/2528/1218 1708/2504/1206 +f 1708/2504/1206 1701/2528/1218 1702/2529/1219 1709/2530/1207 +f 1709/2531/1207 1702/2532/1219 1703/2533/1220 1710/2534/1208 +f 1710/2534/1208 1703/2533/1220 1704/2535/1221 1711/2536/1209 +f 1711/2536/1209 1704/2535/1221 1705/2537/1222 1712/2538/1210 +f 1712/2538/1210 1705/2537/1222 1699/1579/701 1706/1577/699 +f 1539/2539/1223 1532/2515/1211 1533/2516/1212 1540/2540/1224 +f 1540/2540/1224 1533/2516/1212 1534/2541/1213 1541/2542/1225 +f 1541/2543/1225 1534/2544/1213 1535/2545/1214 1542/2546/1226 +f 1542/2546/1226 1535/2545/1214 1536/2547/1215 1543/2548/1227 +f 1543/2548/1227 1536/2547/1215 1537/2549/1216 1544/2550/1228 +f 1544/2550/1228 1537/2549/1216 1531/1580/702 1538/1582/704 +f 1700/2527/1217 1693/2551/1229 1694/2552/1230 1701/2528/1218 +f 1701/2528/1218 1694/2552/1230 1695/2553/1231 1702/2554/1219 +f 1702/2555/1219 1695/2556/1231 1696/2557/1232 1703/2558/1220 +f 1703/2558/1220 1696/2557/1232 1697/2559/1233 1704/2560/1221 +f 1704/2560/1221 1697/2559/1233 1698/2561/1234 1705/2562/1222 +f 1705/2562/1222 1698/2561/1234 1692/1581/703 1699/1579/701 +f 1546/2563/1235 1539/2539/1223 1540/2540/1224 1547/2564/1236 +f 1547/2564/1236 1540/2540/1224 1541/2565/1225 1548/2566/1237 +f 1548/2567/1237 1541/2568/1225 1542/2569/1226 1549/2570/1238 +f 1549/2570/1238 1542/2569/1226 1543/2571/1227 1550/2572/1239 +f 1550/2572/1239 1543/2571/1227 1544/2573/1228 1551/2574/1240 +f 1551/2574/1240 1544/2573/1228 1538/1582/704 1545/1584/706 +f 1693/2551/1229 1686/2575/1241 1687/2576/1242 1694/2552/1230 +f 1694/2552/1230 1687/2576/1242 1688/2577/1243 1695/2578/1231 +f 1695/2579/1231 1688/2580/1243 1689/2581/1244 1696/2582/1232 +f 1696/2582/1232 1689/2581/1244 1690/2583/1245 1697/2584/1233 +f 1697/2584/1233 1690/2583/1245 1691/2585/1246 1698/2586/1234 +f 1698/2586/1234 1691/2585/1246 1685/1583/705 1692/1581/703 +f 1553/2587/1247 1546/2563/1235 1547/2564/1236 1554/2588/1248 +f 1554/2588/1248 1547/2564/1236 1548/2589/1237 1555/2590/1249 +f 1555/2591/1249 1548/2592/1237 1549/2593/1238 1556/2594/1250 +f 1556/2594/1250 1549/2593/1238 1550/2595/1239 1557/2596/1251 +f 1557/2596/1251 1550/2595/1239 1551/2597/1240 1558/2598/1252 +f 1558/2598/1252 1551/2597/1240 1545/1584/706 1552/1559/683 +f 1686/2575/1241 1679/2599/1253 1680/2600/1254 1687/2576/1242 +f 1687/2576/1242 1680/2600/1254 1681/2601/1255 1688/2602/1243 +f 1688/2603/1243 1681/2604/1255 1682/2605/1256 1689/2606/1244 +f 1689/2606/1244 1682/2605/1256 1683/2607/1257 1690/2608/1245 +f 1690/2608/1245 1683/2607/1257 1684/2609/1258 1691/2610/1246 +f 1691/2610/1246 1684/2609/1258 1678/1560/684 1685/1583/705 +f 1462/2611/1259 1553/2587/1247 1554/2588/1248 1463/2612/1260 +f 1463/2612/1260 1554/2588/1248 1555/2613/1249 1464/2614/1261 +f 1464/2615/1261 1555/2616/1249 1556/2617/1250 1465/2618/1262 +f 1465/2618/1262 1556/2617/1250 1557/2619/1251 1466/2620/1263 +f 1466/2620/1263 1557/2619/1251 1558/2621/1252 1467/2622/1264 +f 1467/2622/1264 1558/2621/1252 1552/1559/683 1461/1501/629 +f 1679/2599/1253 1665/2623/1265 1666/2624/1266 1680/2600/1254 +f 1680/2600/1254 1666/2624/1266 1667/2625/1267 1681/2626/1255 +f 1681/2627/1255 1667/2628/1267 1668/2629/1268 1682/2630/1256 +f 1682/2630/1256 1668/2629/1268 1669/2631/1269 1683/2632/1257 +f 1683/2632/1257 1669/2631/1269 1670/2633/1270 1684/2634/1258 +f 1684/2634/1258 1670/2633/1270 1664/1502/630 1678/1560/684 +f 944/2635/1271 930/2636/1272 931/2637/1273 945/2638/1274 +f 945/2638/1274 931/2637/1273 932/2639/1275 946/2640/1276 +f 946/2641/1276 932/2642/1275 933/2643/1277 947/2644/1278 +f 947/2644/1278 933/2643/1277 934/2645/1279 948/2646/1280 +f 948/2646/1280 934/2645/1279 935/2647/1281 949/2648/1282 +f 949/2648/1282 935/2647/1281 929/1586/708 943/561/181 +f 1042/2649/1283 1133/2650/1284 1134/2651/1285 1043/2652/1286 +f 1043/2652/1286 1134/2651/1285 1135/2653/1287 1044/2654/1288 +f 1044/2655/1288 1135/2656/1287 1136/2657/1289 1045/2658/1290 +f 1045/2658/1290 1136/2657/1289 1137/2659/1291 1046/2660/1292 +f 1046/2660/1292 1137/2659/1291 1138/2661/1293 1047/2662/1294 +f 1047/2662/1294 1138/2661/1293 1132/562/182 1041/1585/707 +f 951/2663/1295 944/2635/1271 945/2638/1274 952/2664/1296 +f 952/2664/1296 945/2638/1274 946/2665/1276 953/2666/1297 +f 953/2667/1297 946/2668/1276 947/2669/1278 954/2670/1298 +f 954/2670/1298 947/2669/1278 948/2671/1280 955/2672/1299 +f 955/2672/1299 948/2671/1280 949/2673/1282 956/2674/1300 +f 956/2674/1300 949/2673/1282 943/561/181 950/564/184 +f 1133/2650/1284 1126/2675/1301 1127/2676/1302 1134/2651/1285 +f 1134/2651/1285 1127/2676/1302 1128/2677/1303 1135/2678/1287 +f 1135/2679/1287 1128/2680/1303 1129/2681/1304 1136/2682/1289 +f 1136/2682/1289 1129/2681/1304 1130/2683/1305 1137/2684/1291 +f 1137/2684/1291 1130/2683/1305 1131/2685/1306 1138/2686/1293 +f 1138/2686/1293 1131/2685/1306 1125/563/183 1132/562/182 +f 958/2687/1307 951/2663/1295 952/2664/1296 959/2688/1308 +f 959/2688/1308 952/2664/1296 953/2689/1297 960/2690/1309 +f 960/2691/1309 953/2692/1297 954/2693/1298 961/2694/1310 +f 961/2694/1310 954/2693/1298 955/2695/1299 962/2696/1311 +f 962/2696/1311 955/2695/1299 956/2697/1300 963/2698/1312 +f 963/2698/1312 956/2697/1300 950/564/184 957/1588/710 +f 1126/2675/1301 1119/2699/1313 1120/2700/1314 1127/2676/1302 +f 1127/2676/1302 1120/2700/1314 1121/2701/1315 1128/2702/1303 +f 1128/2703/1303 1121/2704/1315 1122/2705/1316 1129/2706/1304 +f 1129/2706/1304 1122/2705/1316 1123/2707/1317 1130/2708/1305 +f 1130/2708/1305 1123/2707/1317 1124/2709/1318 1131/2710/1306 +f 1131/2710/1306 1124/2709/1318 1118/1587/709 1125/563/183 +f 965/2711/1319 958/2687/1307 959/2688/1308 966/2712/1320 +f 966/2712/1320 959/2688/1308 960/2713/1309 967/2714/1321 +f 967/2715/1321 960/2716/1309 961/2717/1310 968/2718/1322 +f 968/2718/1322 961/2717/1310 962/2719/1311 969/2720/1323 +f 969/2720/1323 962/2719/1311 963/2721/1312 970/2722/1324 +f 970/2722/1324 963/2721/1312 957/1588/710 964/1590/712 +f 1119/2699/1313 1112/2723/1325 1113/2724/1326 1120/2700/1314 +f 1120/2700/1314 1113/2724/1326 1114/2725/1327 1121/2726/1315 +f 1121/2727/1315 1114/2728/1327 1115/2729/1328 1122/2730/1316 +f 1122/2730/1316 1115/2729/1328 1116/2731/1329 1123/2732/1317 +f 1123/2732/1317 1116/2731/1329 1117/2733/1330 1124/2734/1318 +f 1124/2734/1318 1117/2733/1330 1111/1589/711 1118/1587/709 +f 972/2735/1331 965/2711/1319 966/2712/1320 973/2736/1332 +f 973/2736/1332 966/2712/1320 967/2737/1321 974/2738/1333 +f 974/2739/1333 967/2740/1321 968/2741/1322 975/2742/1334 +f 975/2742/1334 968/2741/1322 969/2743/1323 976/2744/1335 +f 976/2744/1335 969/2743/1323 970/2745/1324 977/2746/1336 +f 977/2746/1336 970/2745/1324 964/1590/712 971/1592/714 +f 1112/2723/1325 1105/2747/1337 1106/2748/1338 1113/2724/1326 +f 1113/2724/1326 1106/2748/1338 1107/2749/1339 1114/2750/1327 +f 1114/2751/1327 1107/2752/1339 1108/2753/1340 1115/2754/1328 +f 1115/2754/1328 1108/2753/1340 1109/2755/1341 1116/2756/1329 +f 1116/2756/1329 1109/2755/1341 1110/2757/1342 1117/2758/1330 +f 1117/2758/1330 1110/2757/1342 1104/1591/713 1111/1589/711 +f 979/2759/1343 972/2735/1331 973/2736/1332 980/2760/1344 +f 980/2760/1344 973/2736/1332 974/2761/1333 981/2762/1345 +f 981/2763/1345 974/2764/1333 975/2765/1334 982/2766/1346 +f 982/2766/1346 975/2765/1334 976/2767/1335 983/2768/1347 +f 983/2768/1347 976/2767/1335 977/2769/1336 984/2770/1348 +f 984/2770/1348 977/2769/1336 971/1592/714 978/1594/716 +f 1105/2747/1337 1098/2771/1349 1099/2772/1350 1106/2748/1338 +f 1106/2748/1338 1099/2772/1350 1100/2773/1351 1107/2774/1339 +f 1107/2775/1339 1100/2776/1351 1101/2777/1352 1108/2778/1340 +f 1108/2778/1340 1101/2777/1352 1102/2779/1353 1109/2780/1341 +f 1109/2780/1341 1102/2779/1353 1103/2781/1354 1110/2782/1342 +f 1110/2782/1342 1103/2781/1354 1097/1593/715 1104/1591/713 +f 986/2783/1355 979/2759/1343 980/2760/1344 987/2784/1356 +f 987/2784/1356 980/2760/1344 981/2785/1345 988/2786/1357 +f 988/2787/1357 981/2788/1345 982/2789/1346 989/2790/1358 +f 989/2790/1358 982/2789/1346 983/2791/1347 990/2792/1359 +f 990/2792/1359 983/2791/1347 984/2793/1348 991/2794/1360 +f 991/2794/1360 984/2793/1348 978/1594/716 985/1596/718 +f 1098/2771/1349 1091/2795/1361 1092/2796/1362 1099/2772/1350 +f 1099/2772/1350 1092/2796/1362 1093/2797/1363 1100/2798/1351 +f 1100/2799/1351 1093/2800/1363 1094/2801/1364 1101/2802/1352 +f 1101/2802/1352 1094/2801/1364 1095/2803/1365 1102/2804/1353 +f 1102/2804/1353 1095/2803/1365 1096/2805/1366 1103/2806/1354 +f 1103/2806/1354 1096/2805/1366 1090/1595/717 1097/1593/715 +f 993/2807/1367 986/2783/1355 987/2784/1356 994/2808/1368 +f 994/2808/1368 987/2784/1356 988/2809/1357 995/2810/1369 +f 995/2811/1369 988/2812/1357 989/2813/1358 996/2814/1370 +f 996/2814/1370 989/2813/1358 990/2815/1359 997/2816/1371 +f 997/2816/1371 990/2815/1359 991/2817/1360 998/2818/1372 +f 998/2818/1372 991/2817/1360 985/1597/718 992/1600/720 +f 1091/2795/1361 1084/2819/1373 1085/2820/1374 1092/2796/1362 +f 1092/2796/1362 1085/2820/1374 1086/2821/1375 1093/2822/1363 +f 1093/2823/1363 1086/2824/1375 1087/2825/1376 1094/2826/1364 +f 1094/2826/1364 1087/2825/1376 1088/2827/1377 1095/2828/1365 +f 1095/2828/1365 1088/2827/1377 1089/2829/1378 1096/2830/1366 +f 1096/2830/1366 1089/2829/1378 1083/1599/719 1090/1598/717 +f 1000/2831/1379 993/2807/1367 994/2808/1368 1001/2832/1380 +f 1001/2832/1380 994/2808/1368 995/2833/1369 1002/2834/1381 +f 1002/2835/1381 995/2836/1369 996/2837/1370 1003/2838/1382 +f 1003/2838/1382 996/2837/1370 997/2839/1371 1004/2840/1383 +f 1004/2840/1383 997/2839/1371 998/2841/1372 1005/2842/1384 +f 1005/2842/1384 998/2841/1372 992/1600/720 999/1602/722 +f 1084/2819/1373 1077/2843/1385 1078/2844/1386 1085/2820/1374 +f 1085/2820/1374 1078/2844/1386 1079/2845/1387 1086/2846/1375 +f 1086/2847/1375 1079/2848/1387 1080/2849/1388 1087/2850/1376 +f 1087/2850/1376 1080/2849/1388 1081/2851/1389 1088/2852/1377 +f 1088/2852/1377 1081/2851/1389 1082/2853/1390 1089/2854/1378 +f 1089/2854/1378 1082/2853/1390 1076/1601/721 1083/1599/719 +f 1007/2855/1391 1000/2831/1379 1001/2832/1380 1008/2856/1392 +f 1008/2856/1392 1001/2832/1380 1002/2857/1381 1009/2858/1393 +f 1009/2859/1393 1002/2860/1381 1003/2861/1382 1010/2862/1394 +f 1010/2862/1394 1003/2861/1382 1004/2863/1383 1011/2864/1395 +f 1011/2864/1395 1004/2863/1383 1005/2865/1384 1012/2866/1396 +f 1012/2866/1396 1005/2865/1384 999/1602/722 1006/1604/724 +f 1077/2843/1385 1070/2867/1397 1071/2868/1398 1078/2844/1386 +f 1078/2844/1386 1071/2868/1398 1072/2869/1399 1079/2870/1387 +f 1079/2871/1387 1072/2872/1399 1073/2873/1400 1080/2874/1388 +f 1080/2874/1388 1073/2873/1400 1074/2875/1401 1081/2876/1389 +f 1081/2876/1389 1074/2875/1401 1075/2877/1402 1082/2878/1390 +f 1082/2878/1390 1075/2877/1402 1069/1603/723 1076/1601/721 +f 1014/2879/1403 1007/2855/1391 1008/2856/1392 1015/2880/1404 +f 1015/2880/1404 1008/2856/1392 1009/2881/1393 1016/2882/1405 +f 1016/2883/1405 1009/2884/1393 1010/2885/1394 1017/2886/1406 +f 1017/2886/1406 1010/2885/1394 1011/2887/1395 1018/2888/1407 +f 1018/2888/1407 1011/2887/1395 1012/2889/1396 1019/2890/1408 +f 1019/2890/1408 1012/2889/1396 1006/1604/724 1013/1606/726 +f 1070/2867/1397 1063/2891/1409 1064/2892/1410 1071/2868/1398 +f 1071/2868/1398 1064/2892/1410 1065/2893/1411 1072/2894/1399 +f 1072/2895/1399 1065/2896/1411 1066/2897/1412 1073/2898/1400 +f 1073/2898/1400 1066/2897/1412 1067/2899/1413 1074/2900/1401 +f 1074/2900/1401 1067/2899/1413 1068/2901/1414 1075/2902/1402 +f 1075/2902/1402 1068/2901/1414 1062/1605/725 1069/1603/723 +f 1021/2903/1415 1014/2879/1403 1015/2880/1404 1022/2904/1416 +f 1022/2904/1416 1015/2880/1404 1016/2905/1405 1023/2906/1417 +f 1023/2907/1417 1016/2908/1405 1017/2909/1406 1024/2910/1418 +f 1024/2910/1418 1017/2909/1406 1018/2911/1407 1025/2912/1419 +f 1025/2912/1419 1018/2911/1407 1019/2913/1408 1026/2914/1420 +f 1026/2914/1420 1019/2913/1408 1013/1606/726 1020/1608/728 +f 1063/2891/1409 1056/2915/1421 1057/2916/1422 1064/2892/1410 +f 1064/2892/1410 1057/2916/1422 1058/2917/1423 1065/2918/1411 +f 1065/2919/1411 1058/2920/1423 1059/2921/1424 1066/2922/1412 +f 1066/2922/1412 1059/2921/1424 1060/2923/1425 1067/2924/1413 +f 1067/2924/1413 1060/2923/1425 1061/2925/1426 1068/2926/1414 +f 1068/2926/1414 1061/2925/1426 1055/1607/727 1062/1605/725 +f 1028/2927/1427 1021/2903/1415 1022/2904/1416 1029/2928/1428 +f 1029/2928/1428 1022/2904/1416 1023/2929/1417 1030/2930/1429 +f 1030/2931/1429 1023/2932/1417 1024/2933/1418 1031/2934/1430 +f 1031/2934/1430 1024/2933/1418 1025/2935/1419 1032/2936/1431 +f 1032/2936/1431 1025/2935/1419 1026/2937/1420 1033/2938/1432 +f 1033/2938/1432 1026/2937/1420 1020/1608/728 1027/553/173 +f 1056/2915/1421 1049/2939/1433 1050/2940/1434 1057/2916/1422 +f 1057/2916/1422 1050/2940/1434 1051/2941/1435 1058/2942/1423 +f 1058/2943/1423 1051/2944/1435 1052/2945/1436 1059/2946/1424 +f 1059/2946/1424 1052/2945/1436 1053/2947/1437 1060/2948/1425 +f 1060/2948/1425 1053/2947/1437 1054/2949/1438 1061/2950/1426 +f 1061/2950/1426 1054/2949/1438 1048/554/174 1055/1607/727 +f 937/2951/1439 1028/2927/1427 1029/2928/1428 938/2952/1440 +f 938/2952/1440 1029/2928/1428 1030/2953/1429 939/2954/1441 +f 939/2955/1441 1030/2956/1429 1031/2957/1430 940/2958/1442 +f 940/2958/1442 1031/2957/1430 1032/2959/1431 941/2960/1443 +f 941/2960/1443 1032/2959/1431 1033/2961/1432 942/2962/1444 +f 942/2962/1444 1033/2961/1432 1027/553/173 936/556/176 +f 1049/2939/1433 1035/2963/1445 1036/2964/1446 1050/2940/1434 +f 1050/2940/1434 1036/2964/1446 1037/2965/1447 1051/2966/1435 +f 1051/2967/1435 1037/2968/1447 1038/2969/1448 1052/2970/1436 +f 1052/2970/1436 1038/2969/1448 1039/2971/1449 1053/2972/1437 +f 1053/2972/1437 1039/2971/1449 1040/2973/1450 1054/2974/1438 +f 1054/2974/1438 1040/2973/1450 1034/555/175 1048/554/174 +f 1671/1556/680 1559/1531/657 1565/2975/1090 1677/2976/1114 +f 1677/2976/1114 1565/2975/1090 1564/2977/1089 1676/2978/1112 +f 1676/2978/1112 1564/2977/1089 1563/2979/1088 1675/2980/1110 +f 1675/2980/1110 1563/2979/1088 1562/2981/1087 1674/2982/1108 +f 1674/2982/1108 1562/2981/1087 1561/2983/1086 1673/2984/1106 +f 1673/2312/1106 1561/2284/1086 1560/2283/1085 1672/2309/1103 +f 1566/1528/654 929/1586/708 935/2985/1281 1572/2986/934 +f 1572/2986/934 935/2985/1281 934/2987/1279 1571/2988/932 +f 1571/2988/932 934/2987/1279 933/2989/1277 1570/2990/930 +f 1570/2990/930 933/2989/1277 932/2991/1275 1569/2992/928 +f 1569/2992/928 932/2991/1275 931/2993/1273 1568/2994/926 +f 1568/1972/926 931/2637/1273 930/2636/1272 1567/1969/923 +f 936/556/176 1244/551/171 1250/2995/910 942/2962/1444 +f 942/2962/1444 1250/2995/910 1249/2996/909 941/2997/1443 +f 941/2997/1443 1249/2996/909 1248/2998/908 940/2999/1442 +f 940/2999/1442 1248/2998/908 1247/3000/907 939/3001/1441 +f 939/3001/1441 1247/3000/907 1246/3002/906 938/3003/1440 +f 938/2952/1440 1246/1944/906 1245/1943/905 937/2951/1439 +f 1251/546/166 1664/1502/630 1670/3004/1270 1257/3005/754 +f 1257/3005/754 1670/3004/1270 1669/3006/1269 1256/3007/752 +f 1256/3007/752 1669/3006/1269 1668/3008/1268 1255/3009/750 +f 1255/3009/750 1668/3008/1268 1667/3010/1267 1254/3011/748 +f 1254/3011/748 1667/3010/1267 1666/3012/1266 1253/3013/746 +f 1253/1632/746 1666/2624/1266 1665/2623/1265 1252/1629/743 +f 1350/1956/912 1042/2649/1283 1043/2652/1286 1351/1957/913 +f 1351/1957/913 1043/2652/1286 1044/3014/1288 1352/3015/915 +f 1352/3016/915 1044/3017/1288 1045/3018/1290 1353/3019/917 +f 1353/3019/917 1045/3018/1290 1046/3020/1292 1354/3021/919 +f 1354/3021/919 1046/3020/1292 1047/3022/1294 1355/3023/921 +f 1355/3023/921 1047/3022/1294 1041/1585/707 1349/1527/653 +f 1035/2963/1445 1147/1931/899 1148/1932/900 1036/2964/1446 +f 1036/2964/1446 1148/1932/900 1149/3024/901 1037/3025/1447 +f 1037/3026/1447 1149/3027/901 1150/3028/902 1038/3029/1448 +f 1038/3029/1448 1150/3028/902 1151/3030/903 1039/3031/1449 +f 1039/3031/1449 1151/3030/903 1152/3032/904 1040/2973/1450 +f 1040/2973/1450 1152/3032/904 1146/552/172 1034/555/175 +f 1356/1532/658 1454/1555/679 1460/3033/1101 1362/3034/1084 +f 1362/3034/1084 1460/3033/1101 1459/3035/1099 1361/3036/1083 +f 1361/3036/1083 1459/3035/1099 1458/3037/1097 1360/3038/1082 +f 1360/3038/1082 1458/3037/1097 1457/3039/1095 1359/3040/1081 +f 1359/3040/1081 1457/3039/1095 1456/3041/1093 1358/3042/1080 +f 1358/2272/1080 1456/2297/1093 1455/2296/1092 1357/2271/1079 +f 1461/1501/629 1139/545/165 1145/3043/741 1467/3044/1264 +f 1467/3044/1264 1145/3043/741 1144/3045/739 1466/3046/1263 +f 1466/3046/1263 1144/3045/739 1143/3047/737 1465/3048/1262 +f 1465/3048/1262 1143/3047/737 1142/3049/735 1464/3050/1261 +f 1464/3050/1261 1142/3049/735 1141/3051/733 1463/3052/1260 +f 1463/2612/1260 1141/1617/733 1140/1616/732 1462/2611/1259 diff --git a/mods/pipeworks/models/pipeworks_pressure_gauge_lowpoly.obj b/mods/pipeworks/models/pipeworks_pressure_gauge_lowpoly.obj new file mode 100644 index 00000000..e81fb6f7 --- /dev/null +++ b/mods/pipeworks/models/pipeworks_pressure_gauge_lowpoly.obj @@ -0,0 +1,325 @@ +# Blender v2.78 (sub 0) OBJ File: 'pipe-pressure-gauge.blend' +# www.blender.org +o Cylinder.000 +v 0.059508 0.267678 0.156042 +v -0.067320 0.267678 0.156042 +v 0.059508 0.176271 0.064635 +v -0.067320 0.176271 0.064635 +v 0.059508 0.176271 -0.064635 +v -0.067320 0.176271 -0.064635 +v 0.059508 0.267678 -0.156042 +v -0.067320 0.267678 -0.156042 +v 0.059508 0.396948 -0.156042 +v -0.067320 0.396948 -0.156042 +v 0.059508 0.488356 -0.064635 +v -0.067320 0.488356 -0.064635 +v 0.059508 0.488356 0.064635 +v -0.067320 0.488356 0.064635 +v 0.059508 0.396948 0.156042 +v -0.067320 0.396948 0.156042 +v 0.044062 0.150388 -0.044062 +v 0.044062 0.185121 -0.044062 +v 0.044062 0.150388 0.044062 +v 0.044062 0.185121 0.044062 +v -0.044062 0.150388 -0.044062 +v -0.044062 0.185121 -0.044062 +v -0.044062 0.150388 0.044062 +v -0.044062 0.185121 0.044062 +v -0.156122 0.156122 0.156122 +v -0.156122 -0.156122 0.156122 +v -0.156122 0.156122 -0.156122 +v -0.156122 -0.156122 -0.156122 +v 0.156123 0.156122 0.156122 +v 0.156123 -0.156122 0.156122 +v 0.156123 0.156122 -0.156122 +v 0.156123 -0.156122 -0.156122 +v 0.156250 -0.064721 -0.500000 +v 0.156250 -0.064721 -0.468750 +v 0.064721 -0.156250 -0.500000 +v 0.064721 -0.156250 -0.468750 +v -0.064721 -0.156250 -0.500000 +v -0.064721 -0.156250 -0.468750 +v -0.156250 -0.064721 -0.500000 +v -0.156250 -0.064721 -0.468750 +v -0.156250 0.064721 -0.500000 +v -0.156250 0.064721 -0.468750 +v -0.064721 0.156250 -0.500000 +v -0.064721 0.156250 -0.468750 +v 0.064721 0.156250 -0.500000 +v 0.064721 0.156250 -0.468750 +v 0.156250 0.064721 -0.500000 +v 0.156250 0.064721 -0.468750 +v 0.125000 -0.051777 -0.468750 +v 0.125000 -0.051777 0.468750 +v 0.051777 -0.125000 -0.468750 +v 0.051777 -0.125000 0.468750 +v -0.051777 -0.125000 -0.468750 +v -0.051777 -0.125000 0.468750 +v -0.125000 -0.051777 -0.468750 +v -0.125000 -0.051777 0.468750 +v -0.125000 0.051777 -0.468750 +v -0.125000 0.051777 0.468750 +v -0.051777 0.125000 -0.468750 +v -0.051777 0.125000 0.468750 +v 0.051777 0.125000 -0.468750 +v 0.051777 0.125000 0.468750 +v 0.125000 0.051777 -0.468750 +v 0.125000 0.051777 0.468750 +v 0.156250 -0.064721 0.468750 +v 0.156250 -0.064721 0.500000 +v 0.064721 -0.156250 0.468750 +v 0.064721 -0.156250 0.500000 +v -0.064721 -0.156250 0.468750 +v -0.064721 -0.156250 0.500000 +v -0.156250 -0.064721 0.468750 +v -0.156250 -0.064721 0.500000 +v -0.156250 0.064721 0.468750 +v -0.156250 0.064721 0.500000 +v -0.064721 0.156250 0.468750 +v -0.064721 0.156250 0.500000 +v 0.064721 0.156250 0.468750 +v 0.064721 0.156250 0.500000 +v 0.156250 0.064721 0.468750 +v 0.156250 0.064721 0.500000 +vt 0.1173 0.3198 +vt 0.3327 0.0381 +vt 0.6374 0.0381 +vt 0.8529 0.3198 +vt 0.8529 0.7182 +vt 0.6374 1.0000 +vt 0.3327 1.0000 +vt 0.1173 0.7182 +vt 0.6373 0.3431 +vt 0.6373 0.2451 +vt 0.7353 0.2451 +vt 0.7353 0.3431 +vt 0.3431 0.4412 +vt 0.3431 0.3431 +vt 0.4412 0.3431 +vt 0.4412 0.4412 +vt 0.5392 0.3431 +vt 0.5392 0.4412 +vt 0.6373 0.3431 +vt 0.6373 0.4412 +vt 0.7353 0.3431 +vt 0.7353 0.4412 +vt 0.3431 0.3431 +vt 0.3431 0.2451 +vt 0.4412 0.2451 +vt 0.4412 0.3431 +vt 0.5098 0.2059 +vt 0.5784 0.2745 +vt 0.5784 0.3725 +vt 0.5098 0.4412 +vt 0.4118 0.4412 +vt 0.3431 0.3725 +vt 0.3431 0.2745 +vt 0.4118 0.2059 +vt 0.5392 0.2451 +vt 0.5392 0.3431 +vt 0.7941 0.1373 +vt 0.8627 0.1373 +vt 0.8627 0.1667 +vt 0.7941 0.1667 +vt 0.7255 0.1373 +vt 0.7255 0.1667 +vt 0.6569 0.1373 +vt 0.6569 0.1667 +vt 0.5882 0.1373 +vt 0.5882 0.1667 +vt 0.2843 0.4902 +vt 0.0490 0.4902 +vt 0.0490 0.2549 +vt 0.2843 0.2549 +vt 0.0490 0.2451 +vt 0.2843 0.2451 +vt 0.2843 0.0098 +vt 0.0490 0.0098 +vt 0.5000 0.7549 +vt 0.5000 0.9902 +vt 0.2647 0.9902 +vt 0.2647 0.7549 +vt 0.0490 0.5000 +vt 0.0490 0.7353 +vt 0.2843 0.7353 +vt 0.2843 0.5000 +vt 0.0098 0.7549 +vt 0.0098 0.9902 +vt 0.2451 0.9902 +vt 0.2451 0.7549 +vt 0.7941 0.7549 +vt 0.7941 0.9902 +vt 0.5588 0.9902 +vt 0.5588 0.7549 +vt 0.7941 0.6765 +vt 0.7353 0.7353 +vt 0.6569 0.7353 +vt 0.5980 0.6765 +vt 0.5980 0.5980 +vt 0.6569 0.5392 +vt 0.7353 0.5392 +vt 0.7941 0.5980 +vt 0.5000 0.7353 +vt 0.5588 0.6765 +vt 0.5588 0.5980 +vt 0.5000 0.5392 +vt 0.4216 0.5392 +vt 0.3627 0.5980 +vt 0.3627 0.6765 +vt 0.4216 0.7353 +vt 0.5588 0.6765 +vt 0.5000 0.7353 +vt 0.4216 0.7353 +vt 0.3627 0.6765 +vt 0.3627 0.5980 +vt 0.4216 0.5392 +vt 0.5000 0.5392 +vt 0.5588 0.5980 +vt 0.7353 0.7353 +vt 0.7941 0.6765 +vt 0.7941 0.5980 +vt 0.7353 0.5392 +vt 0.6569 0.5392 +vt 0.5980 0.5980 +vt 0.5980 0.6765 +vt 0.6569 0.7353 +vt 0.8529 0.4902 +vt 0.8529 0.4706 +vt 0.8922 0.4706 +vt 0.8922 0.4902 +vt 0.9314 0.4706 +vt 0.9314 0.4902 +vt 0.9706 0.4706 +vt 0.9706 0.4902 +vt 0.6569 0.4902 +vt 0.6569 0.4706 +vt 0.6961 0.4706 +vt 0.6961 0.4902 +vt 0.7353 0.4706 +vt 0.7353 0.4902 +vt 0.7745 0.4706 +vt 0.7745 0.4902 +vt 0.8137 0.4706 +vt 0.8137 0.4902 +vt 0.5784 0.4902 +vt 0.5784 0.4706 +vt 0.6176 0.4706 +vt 0.6176 0.4902 +vt 0.5392 0.4902 +vt 0.5392 0.4706 +vt 0.6569 0.4706 +vt 0.6569 0.4902 +vt 0.3431 0.4902 +vt 0.3431 0.4706 +vt 0.3824 0.4706 +vt 0.3824 0.4902 +vt 0.4216 0.4706 +vt 0.4216 0.4902 +vt 0.4608 0.4706 +vt 0.4608 0.4902 +vt 0.5000 0.4706 +vt 0.5000 0.4902 +vt 0.3431 0.4020 +vt 0.3431 0.3627 +vt 0.9706 0.3627 +vt 0.9706 0.4020 +vt 0.3431 0.2843 +vt 0.3431 0.2451 +vt 0.9706 0.2451 +vt 0.9706 0.2843 +vt 0.3431 0.3235 +vt 0.9706 0.3235 +vt 0.9706 0.4412 +vt 0.3431 0.4412 +vt 0.9706 0.1667 +vt 0.9706 0.2059 +vt 0.3431 0.2059 +vt 0.3431 0.1667 +vt 0.9706 0.1275 +vt 0.3431 0.1275 +vn 1.0000 -0.0000 -0.0000 +vn -0.0000 -0.7071 0.7071 +vn -0.0000 -1.0000 -0.0000 +vn 0.0000 -0.7071 -0.7071 +vn 0.0000 0.0000 -1.0000 +vn -0.0000 0.7071 -0.7071 +vn 0.0000 1.0000 0.0000 +vn -1.0000 -0.0000 -0.0000 +vn 0.0000 0.7071 0.7071 +vn 0.0000 0.0000 1.0000 +vn 0.7173 -0.2971 -0.6302 +vn 0.7173 -0.2971 0.6302 +vn 0.2971 -0.7173 0.6302 +vn 0.2971 -0.7173 -0.6302 +vn -0.2971 -0.7173 0.6302 +vn -0.2971 -0.7173 -0.6302 +vn -0.7173 -0.2971 0.6302 +vn -0.7173 -0.2971 -0.6302 +vn -0.7173 0.2971 0.6302 +vn -0.7173 0.2971 -0.6302 +vn -0.2971 0.7173 0.6302 +vn -0.2971 0.7173 -0.6302 +vn 0.2971 0.7173 0.6302 +vn 0.2971 0.7173 -0.6302 +vn 0.7173 0.2971 0.6302 +vn 0.7173 0.2971 -0.6302 +vn -0.9239 -0.3827 0.0000 +vn -0.9239 0.3827 0.0000 +vn 0.3827 0.9239 0.0000 +vn 0.9239 0.3827 0.0000 +vn -0.3827 0.9239 0.0000 +vn -0.3827 -0.9239 0.0000 +vn 0.3827 -0.9239 0.0000 +vn 0.9239 -0.3827 0.0000 +g Cylinder.000_Cylinder.000_gauge_face +s off +f 1/1/1 3/2/1 5/3/1 7/4/1 9/5/1 11/6/1 13/7/1 15/8/1 +g Cylinder.000_Cylinder.000_pipe_and_gauge_body +f 1/9/2 2/10/2 4/11/2 3/12/2 +f 3/13/3 4/14/3 6/15/3 5/16/3 +f 5/16/4 6/15/4 8/17/4 7/18/4 +f 7/18/5 8/17/5 10/19/5 9/20/5 +f 9/20/6 10/19/6 12/21/6 11/22/6 +f 11/23/7 12/24/7 14/25/7 13/26/7 +f 4/27/8 2/28/8 16/29/8 14/30/8 12/31/8 10/32/8 8/33/8 6/34/8 +f 13/26/9 14/25/9 16/35/9 15/36/9 +f 15/36/10 16/35/10 2/10/10 1/9/10 +f 20/37/10 24/38/10 23/39/10 19/40/10 +f 18/41/1 20/37/1 19/40/1 17/42/1 +f 22/43/5 18/41/5 17/42/5 21/44/5 +f 24/45/8 22/43/8 21/44/8 23/46/8 +f 25/47/7 29/48/7 31/49/7 27/50/7 +f 30/51/3 26/52/3 28/53/3 32/54/3 +f 28/55/5 27/56/5 31/57/5 32/58/5 +f 26/59/8 25/60/8 27/61/8 28/62/8 +f 30/63/10 29/64/10 25/65/10 26/66/10 +f 32/67/1 31/68/1 29/69/1 30/70/1 +f 36/71/10 34/72/10 48/73/10 46/74/10 44/75/10 42/76/10 40/77/10 38/78/10 +f 33/79/5 35/80/5 37/81/5 39/82/5 41/83/5 43/84/5 45/85/5 47/86/5 +f 68/87/10 66/88/10 80/89/10 78/90/10 76/91/10 74/92/10 72/93/10 70/94/10 +f 65/95/5 67/96/5 69/97/5 71/98/5 73/99/5 75/100/5 77/101/5 79/102/5 +s 1 +f 33/103/11 34/104/12 36/105/13 35/106/14 +f 35/106/14 36/105/13 38/107/15 37/108/16 +f 37/108/16 38/107/15 40/109/17 39/110/18 +f 39/111/18 40/112/17 42/113/19 41/114/20 +f 41/114/20 42/113/19 44/115/21 43/116/22 +f 43/116/22 44/115/21 46/117/23 45/118/24 +f 45/118/24 46/117/23 48/119/25 47/120/26 +f 47/120/26 48/119/25 34/104/12 33/103/11 +f 67/121/14 68/122/13 70/123/15 69/124/16 +f 65/125/11 66/126/12 68/122/13 67/121/14 +f 69/124/16 70/123/15 72/127/17 71/128/18 +f 71/129/18 72/130/17 74/131/19 73/132/20 +f 73/132/20 74/131/19 76/133/21 75/134/22 +f 75/134/22 76/133/21 78/135/23 77/136/24 +f 77/136/24 78/135/23 80/137/25 79/138/26 +f 79/138/26 80/137/25 66/126/12 65/125/11 +f 56/139/27 58/140/28 57/141/28 55/142/27 +f 62/143/29 64/144/30 63/145/30 61/146/29 +f 58/140/28 60/147/31 59/148/31 57/141/28 +f 56/139/27 55/142/27 53/149/32 54/150/32 +f 51/151/33 49/152/34 50/153/34 52/154/33 +f 53/155/32 51/151/33 52/154/33 54/156/32 +f 62/143/29 61/146/29 59/148/31 60/147/31 +f 49/152/34 63/145/30 64/144/30 50/153/34 diff --git a/mods/pipeworks/models/pipeworks_pump.obj b/mods/pipeworks/models/pipeworks_pump.obj new file mode 100644 index 00000000..91dda7e1 --- /dev/null +++ b/mods/pipeworks/models/pipeworks_pump.obj @@ -0,0 +1,2889 @@ +# Blender v2.78 (sub 0) OBJ File: 'pipe-pump.blend' +# www.blender.org +o Cube +v 0.036461 0.437501 0.120197 +v 0.012311 0.437501 0.125001 +v -0.012311 0.437501 0.125001 +v -0.036461 0.437501 0.120197 +v 0.059210 0.437501 0.110774 +v 0.012985 0.468750 0.131837 +v 0.038455 0.468750 0.126770 +v -0.012985 0.468750 0.131837 +v -0.059210 0.437501 0.110774 +v -0.038455 0.468750 0.126770 +v 0.079683 0.437501 0.097094 +v 0.062448 0.468750 0.116832 +v -0.079683 0.437501 0.097094 +v -0.062448 0.468750 0.116832 +v 0.097094 0.437501 0.079683 +v 0.084041 0.468750 0.102404 +v -0.097094 0.437501 0.079683 +v -0.084041 0.468750 0.102404 +v 0.110774 0.437501 0.059210 +v 0.102404 0.468750 0.084041 +v -0.110774 0.437501 0.059210 +v -0.102404 0.468750 0.084041 +v 0.120197 0.437501 0.036461 +v 0.116832 0.468750 0.062448 +v -0.120197 0.437501 0.036461 +v -0.116832 0.468750 0.062448 +v 0.125000 0.437501 0.012311 +v 0.126770 0.468750 0.038455 +v -0.125001 0.437501 0.012312 +v -0.126770 0.468750 0.038455 +v 0.125000 0.437501 -0.012312 +v 0.131836 0.468750 0.012985 +v -0.125001 0.437501 -0.012311 +v -0.131837 0.468750 0.012985 +v 0.120197 0.437501 -0.036461 +v 0.131836 0.468750 -0.012985 +v -0.120197 0.437501 -0.036461 +v -0.131837 0.468750 -0.012985 +v 0.110774 0.437501 -0.059210 +v 0.126770 0.468750 -0.038455 +v -0.110774 0.437501 -0.059210 +v -0.126770 0.468750 -0.038455 +v 0.097094 0.437501 -0.079683 +v 0.116832 0.468750 -0.062448 +v -0.097094 0.437501 -0.079683 +v -0.116832 0.468750 -0.062448 +v 0.079683 0.437501 -0.097094 +v 0.102404 0.468750 -0.084041 +v -0.079683 0.437501 -0.097094 +v -0.102404 0.468750 -0.084041 +v 0.059210 0.437501 -0.110774 +v 0.084041 0.468750 -0.102404 +v -0.059210 0.437501 -0.110774 +v -0.084041 0.468750 -0.102404 +v 0.036461 0.437501 -0.120197 +v 0.062448 0.468750 -0.116832 +v -0.036461 0.437501 -0.120197 +v -0.062448 0.468750 -0.116832 +v 0.012311 0.437501 -0.125000 +v 0.038455 0.468750 -0.126770 +v -0.012312 0.437501 -0.125000 +v -0.038455 0.468750 -0.126770 +v 0.012985 0.468750 -0.131836 +v -0.012985 0.468750 -0.131836 +v 0.130078 0.460912 -0.063644 +v 0.130078 0.468749 -0.063644 +v 0.139022 0.468749 -0.062467 +v 0.139022 0.460912 -0.062466 +v 0.142474 0.460912 -0.054132 +v 0.136982 0.460912 -0.046976 +v 0.128039 0.460912 -0.048153 +v 0.124587 0.460912 -0.056487 +v 0.124587 0.468749 -0.056487 +v 0.142474 0.468749 -0.054132 +v 0.136982 0.468749 -0.046976 +v 0.128039 0.468749 -0.048153 +v 0.046976 0.460912 -0.136982 +v 0.046976 0.468749 -0.136982 +v 0.054133 0.468749 -0.142474 +v 0.054133 0.460912 -0.142474 +v 0.062467 0.460912 -0.139022 +v 0.063644 0.460912 -0.130078 +v 0.056488 0.460912 -0.124587 +v 0.048153 0.460912 -0.128039 +v 0.048153 0.468749 -0.128039 +v 0.062467 0.468749 -0.139022 +v 0.063644 0.468749 -0.130078 +v 0.056488 0.468749 -0.124587 +v -0.063644 0.460912 -0.130078 +v -0.063644 0.468749 -0.130078 +v -0.062467 0.468749 -0.139022 +v -0.062467 0.460912 -0.139022 +v -0.054132 0.460912 -0.142474 +v -0.046976 0.460912 -0.136982 +v -0.048153 0.460912 -0.128039 +v -0.056487 0.460912 -0.124587 +v -0.056487 0.468749 -0.124587 +v -0.054133 0.468749 -0.142474 +v -0.046976 0.468749 -0.136982 +v -0.048153 0.468749 -0.128039 +v -0.136982 0.460912 -0.046976 +v -0.136982 0.468749 -0.046976 +v -0.142474 0.468749 -0.054133 +v -0.142474 0.460912 -0.054133 +v -0.139022 0.460912 -0.062467 +v -0.130078 0.460912 -0.063644 +v -0.124587 0.460912 -0.056487 +v -0.128039 0.460912 -0.048153 +v -0.128039 0.468749 -0.048153 +v -0.139022 0.468749 -0.062467 +v -0.130078 0.468749 -0.063644 +v -0.124587 0.468749 -0.056487 +v -0.130078 0.460912 0.063644 +v -0.130078 0.468749 0.063644 +v -0.139022 0.468749 0.062467 +v -0.139022 0.460912 0.062467 +v -0.142474 0.460912 0.054133 +v -0.136982 0.460912 0.046976 +v -0.128039 0.460912 0.048153 +v -0.124587 0.460912 0.056487 +v -0.124587 0.468749 0.056487 +v -0.142474 0.468749 0.054133 +v -0.136982 0.468749 0.046976 +v -0.128039 0.468749 0.048153 +v -0.046976 0.460912 0.136982 +v -0.046976 0.468749 0.136982 +v -0.054133 0.468749 0.142474 +v -0.054133 0.460912 0.142474 +v -0.062467 0.460912 0.139022 +v -0.063644 0.460912 0.130078 +v -0.056488 0.460912 0.124587 +v -0.048154 0.460912 0.128039 +v -0.048154 0.468749 0.128039 +v -0.062467 0.468749 0.139022 +v -0.063644 0.468749 0.130078 +v -0.056488 0.468749 0.124587 +v 0.063644 0.460912 0.130078 +v 0.063644 0.468749 0.130078 +v 0.062466 0.468749 0.139022 +v 0.062467 0.460912 0.139022 +v 0.054132 0.460912 0.142474 +v 0.046976 0.460912 0.136982 +v 0.048153 0.460912 0.128039 +v 0.056487 0.460912 0.124587 +v 0.056487 0.468749 0.124587 +v 0.054132 0.468749 0.142474 +v 0.046976 0.468749 0.136982 +v 0.048153 0.468749 0.128039 +v 0.136982 0.460912 0.046976 +v 0.136982 0.468749 0.046976 +v 0.142474 0.468749 0.054133 +v 0.142474 0.460912 0.054133 +v 0.139022 0.460912 0.062467 +v 0.130078 0.460912 0.063644 +v 0.124587 0.460912 0.056488 +v 0.128039 0.460912 0.048154 +v 0.128039 0.468749 0.048154 +v 0.139022 0.468749 0.062467 +v 0.130078 0.468749 0.063644 +v 0.124587 0.468749 0.056488 +v -0.138467 0.468750 0.074012 +v -0.150245 0.468750 0.045576 +v -0.156250 0.468750 0.015389 +v -0.121367 0.468750 0.099603 +v -0.156250 0.468750 -0.015389 +v -0.074012 0.468750 0.138467 +v -0.099603 0.468750 0.121367 +v -0.121367 0.500000 0.099603 +v -0.138467 0.500000 0.074012 +v -0.150245 0.500000 0.045576 +v -0.156250 0.500000 0.015389 +v -0.156250 0.500000 -0.015389 +v -0.045576 0.468750 0.150245 +v -0.099603 0.500000 0.121367 +v -0.150245 0.468750 -0.045576 +v -0.150245 0.500000 -0.045576 +v -0.015389 0.468750 0.156250 +v -0.045576 0.500000 0.150245 +v -0.074012 0.500000 0.138467 +v -0.138467 0.468750 -0.074012 +v -0.138467 0.500000 -0.074012 +v 0.015389 0.468750 0.156250 +v -0.015389 0.500000 0.156250 +v -0.121367 0.468750 -0.099603 +v -0.121367 0.500000 -0.099603 +v 0.045576 0.468750 0.150245 +v 0.015389 0.500000 0.156250 +v -0.099603 0.468750 -0.121367 +v -0.099603 0.500000 -0.121367 +v 0.074012 0.468750 0.138467 +v 0.045576 0.500000 0.150245 +v -0.045576 0.468750 -0.150245 +v -0.074012 0.468750 -0.138467 +v -0.074012 0.500000 -0.138467 +v 0.099603 0.468750 0.121367 +v 0.074012 0.500000 0.138467 +v -0.015389 0.468750 -0.156250 +v -0.045576 0.500000 -0.150245 +v 0.121367 0.468750 0.099604 +v 0.099603 0.500000 0.121367 +v 0.015389 0.468750 -0.156250 +v -0.015389 0.500000 -0.156250 +v 0.138466 0.468750 0.074012 +v 0.121367 0.500000 0.099604 +v 0.045576 0.468750 -0.150245 +v 0.015389 0.500000 -0.156250 +v 0.150245 0.468750 0.045577 +v 0.138466 0.500000 0.074012 +v 0.074012 0.468750 -0.138467 +v 0.045576 0.500000 -0.150245 +v 0.156249 0.468750 0.015389 +v 0.150245 0.500000 0.045577 +v 0.156250 0.500000 -0.015389 +v 0.099603 0.468750 -0.121367 +v 0.074012 0.500000 -0.138467 +v 0.156249 0.468750 -0.015389 +v 0.156249 0.500000 0.015389 +v 0.138467 0.500000 -0.074012 +v 0.150245 0.500000 -0.045576 +v 0.121367 0.500000 -0.099603 +v 0.099603 0.500000 -0.121367 +v 0.150245 0.468750 -0.045576 +v 0.121367 0.468750 -0.099603 +v 0.138467 0.468750 -0.074012 +v 0.095821 0.460912 -0.108578 +v 0.095821 0.468749 -0.108578 +v 0.104534 0.468749 -0.110913 +v 0.104534 0.460912 -0.110913 +v 0.110913 0.460912 -0.104534 +v 0.108578 0.460912 -0.095821 +v 0.099865 0.460912 -0.093486 +v 0.093486 0.460912 -0.099865 +v 0.093486 0.468749 -0.099865 +v 0.110913 0.468749 -0.104534 +v 0.108578 0.468749 -0.095821 +v 0.099865 0.468749 -0.093486 +v -0.009021 0.460912 -0.144532 +v -0.009021 0.468749 -0.144532 +v -0.004510 0.468749 -0.152344 +v -0.004510 0.460912 -0.152344 +v 0.004510 0.460912 -0.152344 +v 0.009021 0.460912 -0.144532 +v 0.004510 0.460912 -0.136720 +v -0.004510 0.460912 -0.136720 +v -0.004510 0.468749 -0.136720 +v 0.004510 0.468749 -0.152344 +v 0.009021 0.468749 -0.144532 +v 0.004510 0.468749 -0.136720 +v -0.108578 0.460912 -0.095821 +v -0.108578 0.468749 -0.095821 +v -0.110913 0.468749 -0.104534 +v -0.110913 0.460912 -0.104534 +v -0.104534 0.460912 -0.110913 +v -0.095821 0.460912 -0.108578 +v -0.093486 0.460912 -0.099865 +v -0.099865 0.460912 -0.093486 +v -0.099865 0.468749 -0.093486 +v -0.104534 0.468749 -0.110913 +v -0.095821 0.468749 -0.108578 +v -0.093486 0.468749 -0.099865 +v -0.144532 0.460912 0.009021 +v -0.144532 0.468749 0.009021 +v -0.152344 0.468749 0.004510 +v -0.152344 0.460912 0.004510 +v -0.152344 0.460912 -0.004510 +v -0.144532 0.460912 -0.009021 +v -0.136720 0.460912 -0.004510 +v -0.136720 0.460912 0.004510 +v -0.136720 0.468749 0.004510 +v -0.152344 0.468749 -0.004510 +v -0.144532 0.468749 -0.009021 +v -0.136720 0.468749 -0.004510 +v -0.095821 0.460912 0.108578 +v -0.095821 0.468749 0.108578 +v -0.104534 0.468749 0.110913 +v -0.104534 0.460912 0.110913 +v -0.110913 0.460912 0.104534 +v -0.108578 0.460912 0.095821 +v -0.099865 0.460912 0.093486 +v -0.093486 0.460912 0.099865 +v -0.093486 0.468749 0.099865 +v -0.110913 0.468749 0.104534 +v -0.108578 0.468749 0.095821 +v -0.099865 0.468749 0.093486 +v 0.009021 0.460912 0.144532 +v 0.009021 0.468749 0.144532 +v 0.004510 0.468749 0.152344 +v 0.004510 0.460912 0.152344 +v -0.004511 0.460912 0.152344 +v -0.009021 0.460912 0.144532 +v -0.004511 0.460912 0.136720 +v 0.004510 0.460912 0.136720 +v 0.004510 0.468749 0.136720 +v -0.004511 0.468749 0.152344 +v -0.009021 0.468749 0.144532 +v -0.004510 0.468749 0.136720 +v 0.108578 0.460912 0.095821 +v 0.108578 0.468749 0.095821 +v 0.110913 0.468749 0.104534 +v 0.110913 0.460912 0.104534 +v 0.104534 0.460912 0.110913 +v 0.095821 0.460912 0.108578 +v 0.093486 0.460912 0.099865 +v 0.099865 0.460912 0.093486 +v 0.099865 0.468749 0.093486 +v 0.104534 0.468749 0.110913 +v 0.095821 0.468749 0.108578 +v 0.093486 0.468749 0.099865 +v 0.144532 0.460912 -0.009021 +v 0.144532 0.468749 -0.009021 +v 0.152344 0.468749 -0.004510 +v 0.152344 0.460912 -0.004510 +v 0.152344 0.460912 0.004511 +v 0.144532 0.460912 0.009021 +v 0.136720 0.460912 0.004511 +v 0.136720 0.460912 -0.004510 +v 0.136720 0.468749 -0.004510 +v 0.152344 0.468749 0.004511 +v 0.144532 0.468749 0.009021 +v 0.136720 0.468749 0.004511 +v 0.059210 0.371056 -0.110774 +v -0.110774 0.371056 -0.059210 +v 0.125000 0.371056 -0.012312 +v -0.110774 0.371056 0.059210 +v 0.079683 0.371056 0.097094 +v 0.012311 0.371056 0.125001 +v -0.059210 0.371056 -0.110774 +v 0.097094 0.371056 -0.079683 +v -0.125001 0.371056 -0.012311 +v 0.120197 0.371056 0.036461 +v -0.079683 0.371056 0.097094 +v -0.012311 0.371056 0.125001 +v 0.036461 0.371056 -0.120197 +v -0.097094 0.371056 -0.079683 +v 0.120197 0.371056 -0.036461 +v -0.120197 0.371056 0.036461 +v 0.097094 0.371056 0.079683 +v 0.059210 0.371056 0.110774 +v -0.036461 0.371056 -0.120197 +v 0.079683 0.371056 -0.097094 +v -0.120197 0.371056 -0.036461 +v 0.125000 0.371056 0.012311 +v -0.097094 0.371056 0.079683 +v -0.036461 0.371056 0.120197 +v 0.012311 0.371056 -0.125000 +v -0.079683 0.371056 -0.097094 +v 0.110774 0.371056 -0.059210 +v -0.125001 0.371056 0.012312 +v 0.110774 0.371056 0.059210 +v -0.059210 0.371056 0.110774 +v 0.036461 0.371056 0.120197 +v -0.012311 0.371056 -0.125000 +v -0.496094 -0.375000 0.496094 +v -0.496094 -0.375000 -0.496094 +v -0.496094 -0.496094 -0.496094 +v -0.496094 -0.496094 0.496094 +v 0.496094 -0.375000 -0.496094 +v 0.496094 -0.496094 -0.496094 +v 0.496094 -0.375000 0.496094 +v 0.496094 -0.496094 0.496094 +v -0.400579 0.390625 0.370218 +v -0.367241 0.375000 0.389466 +v -0.411691 0.390625 0.389466 +v -0.378353 0.375000 0.370218 +v -0.400579 0.390625 0.408713 +v -0.378353 0.375000 0.408713 +v -0.378353 0.390625 0.408713 +v -0.400579 0.375000 0.408713 +v -0.367241 0.390625 0.389466 +v -0.411691 0.375000 0.389466 +v -0.378353 0.390625 0.370218 +v -0.400579 0.375000 0.370218 +v -0.400578 0.375000 -0.408713 +v -0.378353 0.390625 -0.408713 +v -0.411691 0.375000 -0.389466 +v -0.367241 0.390625 -0.389466 +v -0.400578 0.375000 -0.370218 +v -0.378353 0.390625 -0.370218 +v -0.378353 0.375000 -0.370218 +v -0.400578 0.390625 -0.370218 +v -0.378353 0.375000 -0.408713 +v -0.411691 0.390625 -0.389466 +v -0.367241 0.375000 -0.389466 +v -0.400578 0.390625 -0.408713 +v 0.378353 0.375000 0.370218 +v 0.400578 0.390625 0.370218 +v 0.367241 0.375000 0.389466 +v 0.411691 0.390625 0.389466 +v 0.378353 0.375000 0.408713 +v 0.400578 0.390625 0.408713 +v 0.400578 0.375000 0.408713 +v 0.378353 0.390625 0.408713 +v 0.400578 0.375000 0.370218 +v 0.367241 0.390625 0.389466 +v 0.411691 0.375000 0.389466 +v 0.378353 0.390625 0.370218 +v 0.378353 0.390625 -0.408713 +v 0.411691 0.375000 -0.389466 +v 0.367241 0.390625 -0.389466 +v 0.400579 0.375000 -0.408713 +v 0.378353 0.390625 -0.370218 +v 0.400579 0.375000 -0.370218 +v 0.400579 0.390625 -0.370218 +v 0.378353 0.375000 -0.370218 +v 0.411691 0.390625 -0.389466 +v 0.367241 0.375000 -0.389466 +v 0.400579 0.390625 -0.408713 +v 0.378353 0.375000 -0.408713 +v 0.000000 -0.188051 -0.439726 +v 0.007157 0.184437 -0.446679 +v 0.014040 0.173736 -0.453365 +v 0.020382 0.156359 -0.459527 +v 0.025942 0.132972 -0.464927 +v 0.030504 0.104475 -0.469360 +v 0.033894 0.071964 -0.472653 +v 0.035982 0.036687 -0.474681 +v 0.036687 0.000000 -0.475366 +v 0.035982 -0.036687 -0.474681 +v 0.033894 -0.071964 -0.472653 +v 0.030504 -0.104475 -0.469360 +v 0.025942 -0.132972 -0.464927 +v 0.020382 -0.156359 -0.459527 +v 0.014040 -0.173736 -0.453365 +v 0.007157 -0.184437 -0.446679 +v 0.014040 0.184437 -0.446276 +v 0.027540 0.173736 -0.452574 +v 0.039981 0.156359 -0.458378 +v 0.050886 0.132972 -0.463465 +v 0.059836 0.104475 -0.467640 +v 0.066486 0.071964 -0.470743 +v 0.070581 0.036687 -0.472653 +v 0.071964 0.000000 -0.473298 +v 0.070581 -0.036687 -0.472653 +v 0.066486 -0.071964 -0.470743 +v 0.059836 -0.104475 -0.467640 +v 0.050886 -0.132972 -0.463465 +v 0.039981 -0.156359 -0.458378 +v 0.027540 -0.173736 -0.452574 +v 0.014040 -0.184437 -0.446276 +v 0.020382 0.184437 -0.445621 +v 0.039981 0.173736 -0.451289 +v 0.058044 0.156359 -0.456512 +v 0.073875 0.132972 -0.461091 +v 0.086868 0.104475 -0.464848 +v 0.096523 0.071964 -0.467640 +v 0.102468 0.036687 -0.469360 +v 0.104476 0.000000 -0.469940 +v 0.102468 -0.036687 -0.469360 +v 0.096523 -0.071964 -0.467640 +v 0.086868 -0.104475 -0.464848 +v 0.073875 -0.132972 -0.461091 +v 0.058044 -0.156359 -0.456512 +v 0.039981 -0.173736 -0.451289 +v 0.020382 -0.184437 -0.445621 +v 0.025942 0.184437 -0.444739 +v 0.050886 0.173736 -0.449559 +v 0.073875 0.156359 -0.454002 +v 0.094026 0.132972 -0.457895 +v 0.110562 0.104475 -0.461091 +v 0.122850 0.071964 -0.463465 +v 0.130417 0.036687 -0.464927 +v 0.132972 0.000000 -0.465421 +v 0.130417 -0.036687 -0.464927 +v 0.122850 -0.071964 -0.463465 +v 0.110562 -0.104475 -0.461091 +v 0.094026 -0.132972 -0.457895 +v 0.073875 -0.156359 -0.454002 +v 0.050886 -0.173736 -0.449559 +v 0.025942 -0.184437 -0.444739 +v 0.030504 0.184437 -0.443665 +v 0.059836 0.173736 -0.447452 +v 0.086868 0.156359 -0.450942 +v 0.110562 0.132972 -0.454002 +v 0.130008 0.104475 -0.456512 +v 0.144457 0.071964 -0.458378 +v 0.153354 0.036687 -0.459527 +v 0.156359 0.000000 -0.459915 +v 0.153354 -0.036687 -0.459527 +v 0.144457 -0.071964 -0.458378 +v 0.130008 -0.104475 -0.456512 +v 0.110562 -0.132972 -0.454002 +v 0.086868 -0.156359 -0.450942 +v 0.059836 -0.173736 -0.447452 +v 0.030504 -0.184437 -0.443665 +v 0.033894 0.184437 -0.442439 +v 0.066486 0.173736 -0.445048 +v 0.096523 0.156359 -0.447452 +v 0.122850 0.132972 -0.449559 +v 0.144457 0.104475 -0.451289 +v 0.160512 0.071964 -0.452574 +v 0.170398 0.036687 -0.453365 +v 0.173736 0.000000 -0.453632 +v 0.170398 -0.036687 -0.453365 +v 0.160512 -0.071964 -0.452574 +v 0.144457 -0.104475 -0.451289 +v 0.122850 -0.132972 -0.449559 +v 0.096523 -0.156359 -0.447452 +v 0.066486 -0.173736 -0.445048 +v 0.033894 -0.184437 -0.442439 +v 0.035982 0.184437 -0.441109 +v 0.070581 0.173736 -0.442439 +v 0.102468 0.156359 -0.443665 +v 0.130417 0.132972 -0.444739 +v 0.153354 0.104475 -0.445621 +v 0.170398 0.071964 -0.446276 +v 0.180894 0.036687 -0.446679 +v 0.184438 0.000000 -0.446816 +v 0.180894 -0.036687 -0.446679 +v 0.170398 -0.071964 -0.446276 +v 0.153354 -0.104475 -0.445621 +v 0.130417 -0.132972 -0.444739 +v 0.102468 -0.156359 -0.443665 +v 0.070581 -0.173736 -0.442439 +v 0.035982 -0.184437 -0.441109 +v 0.036687 0.184437 -0.439726 +v 0.071964 0.173736 -0.439726 +v 0.104476 0.156359 -0.439726 +v 0.132972 0.132972 -0.439726 +v 0.156359 0.104475 -0.439726 +v 0.173736 0.071964 -0.439726 +v 0.184438 0.036687 -0.439726 +v 0.188051 0.000000 -0.439726 +v 0.184438 -0.036687 -0.439726 +v 0.173736 -0.071964 -0.439726 +v 0.156359 -0.104475 -0.439726 +v 0.132972 -0.132972 -0.439726 +v 0.104476 -0.156359 -0.439726 +v 0.071964 -0.173736 -0.439726 +v 0.036687 -0.184437 -0.439726 +v 0.000000 0.188051 -0.439726 +v -0.036687 0.184437 -0.439726 +v -0.071964 0.173736 -0.439726 +v -0.104475 0.156359 -0.439726 +v -0.132972 0.132972 -0.439726 +v -0.156358 0.104475 -0.439726 +v -0.173736 0.071964 -0.439726 +v -0.184437 0.036687 -0.439726 +v -0.188051 0.000000 -0.439727 +v -0.184437 -0.036687 -0.439726 +v -0.173736 -0.071964 -0.439726 +v -0.156358 -0.104475 -0.439726 +v -0.132972 -0.132972 -0.439726 +v -0.104475 -0.156359 -0.439726 +v -0.071964 -0.173736 -0.439726 +v -0.036687 -0.184437 -0.439726 +v -0.035982 0.184437 -0.441109 +v -0.070581 0.173736 -0.442439 +v -0.102468 0.156359 -0.443665 +v -0.130417 0.132972 -0.444739 +v -0.153354 0.104475 -0.445621 +v -0.170398 0.071964 -0.446276 +v -0.180893 0.036687 -0.446679 +v -0.184437 0.000000 -0.446816 +v -0.180893 -0.036687 -0.446679 +v -0.170398 -0.071964 -0.446276 +v -0.153354 -0.104475 -0.445621 +v -0.130417 -0.132972 -0.444739 +v -0.102468 -0.156359 -0.443665 +v -0.070581 -0.173736 -0.442439 +v -0.035982 -0.184437 -0.441110 +v -0.033894 0.184437 -0.442439 +v -0.066486 0.173736 -0.445048 +v -0.096523 0.156359 -0.447452 +v -0.122850 0.132972 -0.449559 +v -0.144456 0.104475 -0.451289 +v -0.160511 0.071964 -0.452574 +v -0.170398 0.036687 -0.453365 +v -0.173736 0.000000 -0.453632 +v -0.170398 -0.036687 -0.453365 +v -0.160511 -0.071964 -0.452574 +v -0.144456 -0.104475 -0.451289 +v -0.122850 -0.132972 -0.449559 +v -0.096523 -0.156359 -0.447452 +v -0.066486 -0.173736 -0.445048 +v -0.033894 -0.184437 -0.442439 +v -0.030504 0.184437 -0.443665 +v -0.059836 0.173736 -0.447452 +v -0.086868 0.156359 -0.450942 +v -0.110562 0.132972 -0.454002 +v -0.130007 0.104475 -0.456512 +v -0.144456 0.071964 -0.458378 +v -0.153354 0.036687 -0.459527 +v -0.156358 0.000000 -0.459915 +v -0.153354 -0.036687 -0.459527 +v -0.144456 -0.071964 -0.458378 +v -0.130007 -0.104475 -0.456512 +v -0.110562 -0.132972 -0.454002 +v -0.086868 -0.156359 -0.450942 +v -0.059836 -0.173736 -0.447452 +v -0.030504 -0.184437 -0.443665 +v -0.025941 0.184437 -0.444739 +v -0.050886 0.173736 -0.449559 +v -0.073875 0.156359 -0.454002 +v -0.094025 0.132972 -0.457895 +v -0.110562 0.104475 -0.461091 +v -0.122850 0.071964 -0.463465 +v -0.130417 0.036687 -0.464927 +v -0.132972 0.000000 -0.465421 +v -0.130417 -0.036687 -0.464927 +v -0.122850 -0.071964 -0.463465 +v -0.110562 -0.104475 -0.461091 +v -0.094025 -0.132972 -0.457895 +v -0.073875 -0.156359 -0.454002 +v -0.050886 -0.173736 -0.449559 +v -0.025941 -0.184437 -0.444739 +v -0.020382 0.184437 -0.445621 +v -0.039981 0.173736 -0.451289 +v -0.058043 0.156359 -0.456512 +v -0.073875 0.132972 -0.461091 +v -0.086868 0.104475 -0.464848 +v -0.096523 0.071964 -0.467640 +v -0.102468 0.036687 -0.469360 +v -0.104475 0.000000 -0.469940 +v -0.102468 -0.036687 -0.469360 +v -0.096523 -0.071964 -0.467640 +v -0.086868 -0.104475 -0.464848 +v -0.073875 -0.132972 -0.461091 +v -0.058043 -0.156359 -0.456512 +v -0.039981 -0.173736 -0.451289 +v -0.020382 -0.184437 -0.445621 +v -0.014039 0.184437 -0.446276 +v -0.027539 0.173736 -0.452574 +v -0.039981 0.156359 -0.458378 +v -0.050886 0.132972 -0.463465 +v -0.059836 0.104475 -0.467640 +v -0.066486 0.071964 -0.470743 +v -0.070581 0.036687 -0.472653 +v -0.071964 0.000000 -0.473298 +v -0.070581 -0.036687 -0.472653 +v -0.066486 -0.071964 -0.470743 +v -0.059836 -0.104475 -0.467640 +v -0.050886 -0.132972 -0.463465 +v -0.039981 -0.156359 -0.458378 +v -0.027539 -0.173736 -0.452574 +v -0.014039 -0.184437 -0.446276 +v -0.007157 0.184437 -0.446679 +v -0.014039 0.173736 -0.453365 +v -0.020382 0.156359 -0.459527 +v -0.025941 0.132972 -0.464927 +v -0.030504 0.104475 -0.469360 +v -0.033894 0.071964 -0.472653 +v -0.035982 0.036687 -0.474681 +v -0.036687 0.000000 -0.475366 +v -0.035982 -0.036687 -0.474681 +v -0.033894 -0.071964 -0.472653 +v -0.030504 -0.104475 -0.469360 +v -0.025941 -0.132972 -0.464927 +v -0.020382 -0.156359 -0.459527 +v -0.014039 -0.173736 -0.453365 +v -0.007157 -0.184437 -0.446679 +v 0.000000 0.184437 -0.446816 +v 0.000000 0.173736 -0.453632 +v 0.000000 0.156359 -0.459915 +v 0.000000 0.132972 -0.465421 +v 0.000000 0.104475 -0.469940 +v 0.000000 0.071964 -0.473298 +v 0.000000 0.036687 -0.475366 +v 0.000000 0.000000 -0.476064 +v 0.000000 -0.036687 -0.475366 +v 0.000000 -0.071964 -0.473298 +v 0.000000 -0.104475 -0.469940 +v 0.000000 -0.132972 -0.465421 +v 0.000000 -0.156359 -0.459915 +v 0.000000 -0.173736 -0.453632 +v 0.000000 -0.184437 -0.446816 +v -0.413519 0.375000 0.413519 +v -0.437500 0.351019 0.413519 +v -0.413519 0.351019 0.437500 +v -0.425494 0.371796 0.413519 +v -0.413519 0.371796 0.425494 +v -0.424987 0.368684 0.424987 +v -0.434296 0.351019 0.425494 +v -0.434296 0.362994 0.413519 +v -0.431184 0.362487 0.424987 +v -0.413519 0.362994 0.434296 +v -0.425494 0.351019 0.434296 +v -0.424987 0.362487 0.431184 +v -0.437500 0.351019 -0.413519 +v -0.413519 0.375000 -0.413519 +v -0.413519 0.351019 -0.437500 +v -0.434296 0.362994 -0.413519 +v -0.434296 0.351019 -0.425494 +v -0.431184 0.362487 -0.424987 +v -0.413519 0.371796 -0.425494 +v -0.425494 0.371796 -0.413519 +v -0.424987 0.368684 -0.424987 +v -0.425494 0.351019 -0.434296 +v -0.413519 0.362994 -0.434296 +v -0.424987 0.362487 -0.431184 +v -0.437500 -0.375000 -0.413519 +v -0.413519 -0.375000 -0.437500 +v -0.434287 -0.375000 -0.425509 +v -0.425509 -0.375000 -0.434287 +v -0.413519 -0.375000 0.437500 +v -0.437500 -0.375000 0.413519 +v -0.425509 -0.375000 0.434287 +v -0.434287 -0.375000 0.425509 +v 0.437500 0.351019 -0.413519 +v 0.413519 0.351019 -0.437500 +v 0.413519 0.375000 -0.413519 +v 0.434296 0.351019 -0.425494 +v 0.434296 0.362994 -0.413519 +v 0.431184 0.362487 -0.424987 +v 0.413519 0.362994 -0.434296 +v 0.425494 0.351019 -0.434296 +v 0.424987 0.362487 -0.431184 +v 0.425494 0.371796 -0.413519 +v 0.413519 0.371796 -0.425494 +v 0.424987 0.368684 -0.424987 +v 0.413519 -0.375000 -0.437500 +v 0.437500 -0.375000 -0.413519 +v 0.425509 -0.375000 -0.434287 +v 0.434287 -0.375000 -0.425509 +v 0.437500 0.351019 0.413519 +v 0.413519 0.375000 0.413519 +v 0.413519 0.351019 0.437500 +v 0.434296 0.362994 0.413519 +v 0.434296 0.351019 0.425494 +v 0.431184 0.362487 0.424987 +v 0.413519 0.371796 0.425494 +v 0.425494 0.371796 0.413519 +v 0.424987 0.368684 0.424987 +v 0.425494 0.351019 0.434296 +v 0.413519 0.362994 0.434296 +v 0.424987 0.362487 0.431184 +v 0.437500 -0.375000 0.413519 +v 0.413519 -0.375000 0.437500 +v 0.434287 -0.375000 0.425509 +v 0.425509 -0.375000 0.434287 +vt 0.1758 0.6995 +vt 0.1794 0.6974 +vt 0.1794 0.6932 +vt 0.1758 0.6911 +vt 0.1722 0.6932 +vt 0.1722 0.6974 +vt 0.1758 0.6995 +vt 0.1794 0.6974 +vt 0.1794 0.6932 +vt 0.1758 0.6911 +vt 0.1722 0.6932 +vt 0.1722 0.6974 +vt 0.1758 0.6995 +vt 0.1794 0.6974 +vt 0.1794 0.6932 +vt 0.1758 0.6911 +vt 0.1722 0.6932 +vt 0.1722 0.6974 +vt 0.1758 0.6995 +vt 0.1794 0.6974 +vt 0.1794 0.6932 +vt 0.1758 0.6911 +vt 0.1722 0.6932 +vt 0.1722 0.6974 +vt 0.1758 0.6995 +vt 0.1794 0.6974 +vt 0.1794 0.6932 +vt 0.1758 0.6911 +vt 0.1722 0.6932 +vt 0.1722 0.6974 +vt 0.1758 0.6995 +vt 0.1794 0.6974 +vt 0.1794 0.6932 +vt 0.1758 0.6911 +vt 0.1722 0.6932 +vt 0.1722 0.6974 +vt 0.1758 0.6995 +vt 0.1794 0.6974 +vt 0.1794 0.6932 +vt 0.1758 0.6911 +vt 0.1722 0.6932 +vt 0.1722 0.6974 +vt 0.1758 0.6995 +vt 0.1794 0.6974 +vt 0.1794 0.6932 +vt 0.1758 0.6911 +vt 0.1722 0.6932 +vt 0.1722 0.6974 +vt 0.1450 0.6884 +vt 0.1531 0.6900 +vt 0.1607 0.6932 +vt 0.1675 0.6977 +vt 0.1734 0.7036 +vt 0.1780 0.7104 +vt 0.1811 0.7181 +vt 0.1827 0.7262 +vt 0.1827 0.7344 +vt 0.1811 0.7425 +vt 0.1780 0.7501 +vt 0.1734 0.7570 +vt 0.1675 0.7629 +vt 0.1607 0.7674 +vt 0.1531 0.7706 +vt 0.1450 0.7722 +vt 0.1367 0.7722 +vt 0.1286 0.7706 +vt 0.1210 0.7674 +vt 0.1141 0.7628 +vt 0.1083 0.7570 +vt 0.1037 0.7501 +vt 0.1005 0.7425 +vt 0.0989 0.7344 +vt 0.0989 0.7262 +vt 0.1005 0.7181 +vt 0.1037 0.7104 +vt 0.1083 0.7036 +vt 0.1141 0.6977 +vt 0.1210 0.6932 +vt 0.1286 0.6900 +vt 0.1367 0.6884 +vt 0.0270 0.6932 +vt 0.0202 0.6977 +vt 0.0143 0.7036 +vt 0.0098 0.7104 +vt 0.0066 0.7181 +vt 0.0050 0.7262 +vt 0.0050 0.7344 +vt 0.0066 0.7425 +vt 0.0098 0.7501 +vt 0.0143 0.7570 +vt 0.0202 0.7628 +vt 0.0270 0.7674 +vt 0.0347 0.7706 +vt 0.0428 0.7722 +vt 0.0510 0.7722 +vt 0.0591 0.7706 +vt 0.0667 0.7674 +vt 0.0736 0.7629 +vt 0.0794 0.7570 +vt 0.0840 0.7501 +vt 0.0872 0.7425 +vt 0.0888 0.7344 +vt 0.0888 0.7262 +vt 0.0872 0.7181 +vt 0.0840 0.7104 +vt 0.0794 0.7036 +vt 0.0736 0.6977 +vt 0.0667 0.6932 +vt 0.0591 0.6900 +vt 0.0510 0.6884 +vt 0.0428 0.6884 +vt 0.0347 0.6900 +vt 0.1758 0.6995 +vt 0.1794 0.6974 +vt 0.1794 0.6932 +vt 0.1758 0.6911 +vt 0.1722 0.6932 +vt 0.1722 0.6974 +vt 0.1758 0.6995 +vt 0.1794 0.6974 +vt 0.1794 0.6932 +vt 0.1758 0.6911 +vt 0.1722 0.6932 +vt 0.1722 0.6974 +vt 0.1758 0.6995 +vt 0.1794 0.6974 +vt 0.1794 0.6932 +vt 0.1758 0.6911 +vt 0.1722 0.6932 +vt 0.1722 0.6974 +vt 0.1758 0.6995 +vt 0.1794 0.6974 +vt 0.1794 0.6932 +vt 0.1758 0.6911 +vt 0.1722 0.6932 +vt 0.1722 0.6974 +vt 0.1758 0.6995 +vt 0.1794 0.6974 +vt 0.1794 0.6932 +vt 0.1758 0.6911 +vt 0.1722 0.6932 +vt 0.1722 0.6974 +vt 0.1758 0.6995 +vt 0.1794 0.6974 +vt 0.1794 0.6932 +vt 0.1758 0.6911 +vt 0.1722 0.6932 +vt 0.1722 0.6974 +vt 0.1758 0.6995 +vt 0.1794 0.6974 +vt 0.1794 0.6932 +vt 0.1758 0.6911 +vt 0.1722 0.6932 +vt 0.1722 0.6974 +vt 0.1758 0.6995 +vt 0.1794 0.6974 +vt 0.1794 0.6932 +vt 0.1758 0.6911 +vt 0.1722 0.6932 +vt 0.1722 0.6974 +vt 0.7148 0.7617 +vt 0.7148 0.5117 +vt 0.7461 0.5117 +vt 0.7461 0.7617 +vt 0.6211 0.7617 +vt 0.6211 0.5117 +vt 0.6523 0.5117 +vt 0.6523 0.7617 +vt 0.6836 0.7617 +vt 0.6836 0.5117 +vt 0.7148 0.5117 +vt 0.7148 0.7617 +vt 0.6836 0.7617 +vt 0.6523 0.7617 +vt 0.6523 0.5117 +vt 0.9961 0.5117 +vt 0.9961 0.7617 +vt 0.9961 0.2617 +vt 0.9961 0.5117 +vt 0.7461 0.5117 +vt 0.7461 0.2617 +vt 0.2167 0.2484 +vt 0.0099 0.2484 +vt 0.0099 0.0820 +vt 0.2167 0.0820 +vt 0.2167 0.4281 +vt 0.0099 0.4281 +vt 0.0099 0.2617 +vt 0.2167 0.2617 +vt 0.2365 0.2672 +vt 0.4432 0.2672 +vt 0.4432 0.4336 +vt 0.2365 0.4336 +vt 0.6698 0.4281 +vt 0.4630 0.4281 +vt 0.4630 0.2617 +vt 0.6698 0.2617 +vt 0.5858 0.2422 +vt 0.5819 0.2488 +vt 0.5743 0.2488 +vt 0.5705 0.2422 +vt 0.5743 0.2356 +vt 0.5819 0.2356 +vt 0.5858 0.2422 +vt 0.5819 0.2488 +vt 0.5743 0.2488 +vt 0.5705 0.2422 +vt 0.5743 0.2356 +vt 0.5819 0.2356 +vt 0.5858 0.2422 +vt 0.5819 0.2488 +vt 0.5743 0.2488 +vt 0.5705 0.2422 +vt 0.5743 0.2356 +vt 0.5819 0.2356 +vt 0.5858 0.2422 +vt 0.5819 0.2488 +vt 0.5743 0.2488 +vt 0.5705 0.2422 +vt 0.5743 0.2356 +vt 0.5819 0.2356 +vt 0.3458 0.2440 +vt 0.3458 0.0372 +vt 0.5526 0.0372 +vt 0.5526 0.2440 +vt 0.1797 0.9531 +vt 0.1797 0.9766 +vt 0.1719 0.9766 +vt 0.1719 0.9531 +vt 0.1641 0.9766 +vt 0.1641 0.9531 +vt 0.1562 0.9766 +vt 0.1562 0.9531 +vt 0.1875 0.9453 +vt 0.1875 0.9531 +vt 0.1797 0.9453 +vt 0.1953 0.9453 +vt 0.1953 0.9531 +vt 0.2031 0.9453 +vt 0.2031 0.9531 +vt 0.1484 0.9766 +vt 0.1484 0.9531 +vt 0.1719 0.9453 +vt 0.2109 0.9453 +vt 0.2109 0.9531 +vt 0.1406 0.9766 +vt 0.1406 0.9531 +vt 0.1641 0.9453 +vt 0.2188 0.9453 +vt 0.2188 0.9531 +vt 0.1328 0.9766 +vt 0.1328 0.9531 +vt 0.1562 0.9453 +vt 0.1719 0.9883 +vt 0.1719 0.9805 +vt 0.1797 0.9805 +vt 0.1797 0.9883 +vt 0.1953 0.9883 +vt 0.1953 0.9805 +vt 0.2031 0.9805 +vt 0.2031 0.9883 +vt 0.2266 0.9453 +vt 0.2266 0.9531 +vt 0.1641 0.9883 +vt 0.1641 0.9805 +vt 0.1484 0.9453 +vt 0.2109 0.9805 +vt 0.2109 0.9883 +vt 0.2344 0.9453 +vt 0.2344 0.9531 +vt 0.1562 0.9883 +vt 0.1562 0.9805 +vt 0.1406 0.9453 +vt 0.1484 0.9883 +vt 0.1484 0.9805 +vt 0.2422 0.9453 +vt 0.2422 0.9531 +vt 0.1328 0.9883 +vt 0.1328 0.9805 +vt 0.1406 0.9805 +vt 0.1406 0.9883 +vt 0.1328 0.9453 +vt 0.2188 0.9805 +vt 0.2188 0.9883 +vt 0.2500 0.9453 +vt 0.2500 0.9531 +vt 0.1250 0.9883 +vt 0.1250 0.9805 +vt 0.1250 0.9453 +vt 0.1250 0.9531 +vt 0.2266 0.9805 +vt 0.2266 0.9883 +vt 0.0078 0.9453 +vt 0.0078 0.9531 +vt 0.0000 0.9531 +vt 0.0000 0.9453 +vt 0.1172 0.9883 +vt 0.1172 0.9805 +vt 0.1016 0.9531 +vt 0.1016 0.9766 +vt 0.0938 0.9766 +vt 0.0938 0.9531 +vt 0.1172 0.9453 +vt 0.1172 0.9531 +vt 0.2344 0.9805 +vt 0.2344 0.9883 +vt 0.0156 0.9453 +vt 0.0156 0.9531 +vt 0.1094 0.9883 +vt 0.1094 0.9805 +vt 0.1094 0.9453 +vt 0.1094 0.9531 +vt 0.2422 0.9805 +vt 0.2422 0.9883 +vt 0.0234 0.9453 +vt 0.0234 0.9531 +vt 0.1016 0.9883 +vt 0.1016 0.9805 +vt 0.1016 0.9453 +vt 0.0000 0.9883 +vt 0.0000 0.9805 +vt 0.0078 0.9805 +vt 0.0078 0.9883 +vt 0.0312 0.9453 +vt 0.0312 0.9531 +vt 0.2500 0.9805 +vt 0.2500 0.9883 +vt 0.0938 0.9453 +vt 0.0156 0.9805 +vt 0.0156 0.9883 +vt 0.1875 0.9805 +vt 0.1875 0.9883 +vt 0.0391 0.9453 +vt 0.0391 0.9531 +vt 0.0938 0.9883 +vt 0.0938 0.9805 +vt 0.0703 0.9531 +vt 0.0703 0.9766 +vt 0.0625 0.9766 +vt 0.0625 0.9531 +vt 0.0859 0.9453 +vt 0.0859 0.9531 +vt 0.0234 0.9805 +vt 0.0234 0.9883 +vt 0.0469 0.9453 +vt 0.0469 0.9531 +vt 0.0859 0.9883 +vt 0.0859 0.9805 +vt 0.0781 0.9453 +vt 0.0781 0.9531 +vt 0.0312 0.9805 +vt 0.0312 0.9883 +vt 0.0547 0.9453 +vt 0.0547 0.9531 +vt 0.0781 0.9883 +vt 0.0781 0.9805 +vt 0.0703 0.9453 +vt 0.0391 0.9805 +vt 0.0391 0.9883 +vt 0.0625 0.9453 +vt 0.0703 0.9883 +vt 0.0703 0.9805 +vt 0.0625 0.9883 +vt 0.0625 0.9805 +vt 0.0469 0.9805 +vt 0.0469 0.9883 +vt 0.0547 0.9883 +vt 0.0547 0.9805 +vt 0.1680 0.6876 +vt 0.1680 0.6837 +vt 0.1719 0.6837 +vt 0.1719 0.6876 +vt 0.1641 0.6876 +vt 0.1641 0.6837 +vt 0.1758 0.6837 +vt 0.1758 0.6876 +vt 0.1797 0.6837 +vt 0.1797 0.6876 +vt 0.1563 0.6876 +vt 0.1563 0.6837 +vt 0.1602 0.6837 +vt 0.1602 0.6876 +vt 0.1680 0.6876 +vt 0.1680 0.6837 +vt 0.1719 0.6837 +vt 0.1719 0.6876 +vt 0.1641 0.6876 +vt 0.1641 0.6837 +vt 0.1758 0.6837 +vt 0.1758 0.6876 +vt 0.1797 0.6837 +vt 0.1797 0.6876 +vt 0.1563 0.6876 +vt 0.1563 0.6837 +vt 0.1602 0.6837 +vt 0.1602 0.6876 +vt 0.1680 0.6876 +vt 0.1680 0.6837 +vt 0.1719 0.6837 +vt 0.1719 0.6876 +vt 0.1641 0.6876 +vt 0.1641 0.6837 +vt 0.1758 0.6837 +vt 0.1758 0.6876 +vt 0.1797 0.6837 +vt 0.1797 0.6876 +vt 0.1563 0.6876 +vt 0.1563 0.6837 +vt 0.1602 0.6837 +vt 0.1602 0.6876 +vt 0.1680 0.6876 +vt 0.1680 0.6837 +vt 0.1719 0.6837 +vt 0.1719 0.6876 +vt 0.1641 0.6876 +vt 0.1641 0.6837 +vt 0.1758 0.6837 +vt 0.1758 0.6876 +vt 0.1797 0.6837 +vt 0.1797 0.6876 +vt 0.1563 0.6876 +vt 0.1563 0.6837 +vt 0.1602 0.6837 +vt 0.1602 0.6876 +vt 0.1680 0.6876 +vt 0.1680 0.6837 +vt 0.1719 0.6837 +vt 0.1719 0.6876 +vt 0.1641 0.6876 +vt 0.1641 0.6837 +vt 0.1758 0.6837 +vt 0.1758 0.6876 +vt 0.1797 0.6837 +vt 0.1797 0.6876 +vt 0.1563 0.6876 +vt 0.1563 0.6837 +vt 0.1602 0.6837 +vt 0.1602 0.6876 +vt 0.1680 0.6876 +vt 0.1680 0.6837 +vt 0.1719 0.6837 +vt 0.1719 0.6876 +vt 0.1641 0.6876 +vt 0.1641 0.6837 +vt 0.1758 0.6837 +vt 0.1758 0.6876 +vt 0.1797 0.6837 +vt 0.1797 0.6876 +vt 0.1563 0.6876 +vt 0.1563 0.6837 +vt 0.1602 0.6837 +vt 0.1602 0.6876 +vt 0.1680 0.6876 +vt 0.1680 0.6837 +vt 0.1719 0.6837 +vt 0.1719 0.6876 +vt 0.1641 0.6876 +vt 0.1641 0.6837 +vt 0.1758 0.6837 +vt 0.1758 0.6876 +vt 0.1797 0.6837 +vt 0.1797 0.6876 +vt 0.1563 0.6876 +vt 0.1563 0.6837 +vt 0.1602 0.6837 +vt 0.1602 0.6876 +vt 0.1680 0.6876 +vt 0.1680 0.6837 +vt 0.1719 0.6837 +vt 0.1719 0.6876 +vt 0.1641 0.6876 +vt 0.1641 0.6837 +vt 0.1758 0.6837 +vt 0.1758 0.6876 +vt 0.1797 0.6837 +vt 0.1797 0.6876 +vt 0.1563 0.6876 +vt 0.1563 0.6837 +vt 0.1602 0.6837 +vt 0.1602 0.6876 +vt 0.1680 0.6876 +vt 0.1680 0.6837 +vt 0.1719 0.6837 +vt 0.1719 0.6876 +vt 0.1641 0.6876 +vt 0.1641 0.6837 +vt 0.1758 0.6837 +vt 0.1758 0.6876 +vt 0.1797 0.6837 +vt 0.1797 0.6876 +vt 0.1563 0.6876 +vt 0.1563 0.6837 +vt 0.1602 0.6837 +vt 0.1602 0.6876 +vt 0.1680 0.6876 +vt 0.1680 0.6837 +vt 0.1719 0.6837 +vt 0.1719 0.6876 +vt 0.1641 0.6876 +vt 0.1641 0.6837 +vt 0.1758 0.6837 +vt 0.1758 0.6876 +vt 0.1797 0.6837 +vt 0.1797 0.6876 +vt 0.1563 0.6876 +vt 0.1563 0.6837 +vt 0.1602 0.6837 +vt 0.1602 0.6876 +vt 0.1680 0.6876 +vt 0.1680 0.6837 +vt 0.1719 0.6837 +vt 0.1719 0.6876 +vt 0.1641 0.6876 +vt 0.1641 0.6837 +vt 0.1758 0.6837 +vt 0.1758 0.6876 +vt 0.1797 0.6837 +vt 0.1797 0.6876 +vt 0.1563 0.6876 +vt 0.1563 0.6837 +vt 0.1602 0.6837 +vt 0.1602 0.6876 +vt 0.1680 0.6876 +vt 0.1680 0.6837 +vt 0.1719 0.6837 +vt 0.1719 0.6876 +vt 0.1641 0.6876 +vt 0.1641 0.6837 +vt 0.1758 0.6837 +vt 0.1758 0.6876 +vt 0.1797 0.6837 +vt 0.1797 0.6876 +vt 0.1563 0.6876 +vt 0.1563 0.6837 +vt 0.1602 0.6837 +vt 0.1602 0.6876 +vt 0.1680 0.6876 +vt 0.1680 0.6837 +vt 0.1719 0.6837 +vt 0.1719 0.6876 +vt 0.1641 0.6876 +vt 0.1641 0.6837 +vt 0.1758 0.6837 +vt 0.1758 0.6876 +vt 0.1797 0.6837 +vt 0.1797 0.6876 +vt 0.1563 0.6876 +vt 0.1563 0.6837 +vt 0.1602 0.6837 +vt 0.1602 0.6876 +vt 0.1680 0.6876 +vt 0.1680 0.6837 +vt 0.1719 0.6837 +vt 0.1719 0.6876 +vt 0.1641 0.6876 +vt 0.1641 0.6837 +vt 0.1758 0.6837 +vt 0.1758 0.6876 +vt 0.1797 0.6837 +vt 0.1797 0.6876 +vt 0.1563 0.6876 +vt 0.1563 0.6837 +vt 0.1602 0.6837 +vt 0.1602 0.6876 +vt 0.1680 0.6876 +vt 0.1680 0.6837 +vt 0.1719 0.6837 +vt 0.1719 0.6876 +vt 0.1641 0.6876 +vt 0.1641 0.6837 +vt 0.1758 0.6837 +vt 0.1758 0.6876 +vt 0.1797 0.6837 +vt 0.1797 0.6876 +vt 0.1563 0.6876 +vt 0.1563 0.6837 +vt 0.1602 0.6837 +vt 0.1602 0.6876 +vt 0.1680 0.6876 +vt 0.1680 0.6837 +vt 0.1719 0.6837 +vt 0.1719 0.6876 +vt 0.1641 0.6876 +vt 0.1641 0.6837 +vt 0.1758 0.6837 +vt 0.1758 0.6876 +vt 0.1797 0.6837 +vt 0.1797 0.6876 +vt 0.1563 0.6876 +vt 0.1563 0.6837 +vt 0.1602 0.6837 +vt 0.1602 0.6876 +vt 0.2031 0.9766 +vt 0.1953 0.9766 +vt 0.0156 0.9766 +vt 0.0078 0.9766 +vt 0.0547 0.9766 +vt 0.1250 0.9766 +vt 0.2422 0.9766 +vt 0.2344 0.9766 +vt 0.1172 0.9766 +vt 0.0859 0.9766 +vt 0.0781 0.9766 +vt 0.1875 0.9766 +vt 0.2188 0.9766 +vt 0.2109 0.9766 +vt 0.2500 0.9766 +vt 0.0469 0.9766 +vt 0.0391 0.9766 +vt 0.0000 0.9766 +vt 0.2266 0.9766 +vt 0.1094 0.9766 +vt 0.0312 0.9766 +vt 0.0234 0.9766 +vt 0.6211 0.2461 +vt 0.6211 0.2500 +vt 0.6289 0.2500 +vt 0.6289 0.2461 +vt 0.6211 0.2461 +vt 0.6211 0.2500 +vt 0.6289 0.2500 +vt 0.6289 0.2461 +vt 0.6367 0.2461 +vt 0.6367 0.2500 +vt 0.6445 0.2500 +vt 0.6445 0.2461 +vt 0.6367 0.2461 +vt 0.6367 0.2500 +vt 0.6445 0.2500 +vt 0.6445 0.2461 +vt 0.6055 0.2461 +vt 0.6055 0.2500 +vt 0.6133 0.2500 +vt 0.6133 0.2461 +vt 0.6055 0.2461 +vt 0.6055 0.2500 +vt 0.6133 0.2500 +vt 0.6133 0.2461 +vt 0.5977 0.2461 +vt 0.5977 0.2500 +vt 0.5977 0.2461 +vt 0.5977 0.2500 +vt 0.6055 0.2500 +vt 0.6055 0.2461 +vt 0.6289 0.2461 +vt 0.6289 0.2500 +vt 0.6367 0.2500 +vt 0.6367 0.2461 +vt 0.6133 0.2461 +vt 0.6133 0.2500 +vt 0.6211 0.2500 +vt 0.6211 0.2461 +vt 0.6367 0.2461 +vt 0.6367 0.2500 +vt 0.6445 0.2500 +vt 0.6445 0.2461 +vt 0.6055 0.2461 +vt 0.6055 0.2500 +vt 0.6289 0.2500 +vt 0.6289 0.2461 +vt 0.6133 0.2461 +vt 0.6133 0.2500 +vt 0.6211 0.2500 +vt 0.6211 0.2461 +vt 0.6445 0.2500 +vt 0.6445 0.2461 +vt 0.5977 0.2461 +vt 0.5977 0.2500 +vt 0.2813 0.1866 +vt 0.2813 0.1947 +vt 0.2730 0.1947 +vt 0.2735 0.1866 +vt 0.2813 0.2390 +vt 0.2813 0.2430 +vt 0.2780 0.2430 +vt 0.2766 0.2390 +vt 0.2813 0.1792 +vt 0.2743 0.1792 +vt 0.2813 0.2336 +vt 0.2753 0.2336 +vt 0.2813 0.1727 +vt 0.2753 0.1727 +vt 0.2813 0.2271 +vt 0.2743 0.2271 +vt 0.2813 0.1673 +vt 0.2766 0.1673 +vt 0.2813 0.2196 +vt 0.2735 0.2196 +vt 0.2813 0.1633 +vt 0.2780 0.1633 +vt 0.2813 0.2116 +vt 0.2730 0.2116 +vt 0.2813 0.1609 +vt 0.2796 0.1609 +vt 0.2813 0.2031 +vt 0.2728 0.2031 +vt 0.2813 0.2454 +vt 0.2813 0.2463 +vt 0.2796 0.2454 +vt 0.2813 0.1600 +vt 0.2780 0.1609 +vt 0.2648 0.2031 +vt 0.2651 0.1947 +vt 0.2780 0.2454 +vt 0.2749 0.2430 +vt 0.2660 0.1866 +vt 0.2721 0.2390 +vt 0.2675 0.1792 +vt 0.2696 0.2336 +vt 0.2696 0.1727 +vt 0.2675 0.2271 +vt 0.2721 0.1673 +vt 0.2660 0.2196 +vt 0.2749 0.1633 +vt 0.2651 0.2116 +vt 0.2643 0.1727 +vt 0.2679 0.1673 +vt 0.2613 0.2271 +vt 0.2591 0.2196 +vt 0.2721 0.1633 +vt 0.2578 0.2116 +vt 0.2766 0.1609 +vt 0.2573 0.2031 +vt 0.2766 0.2454 +vt 0.2578 0.1947 +vt 0.2721 0.2430 +vt 0.2591 0.1866 +vt 0.2679 0.2390 +vt 0.2613 0.1792 +vt 0.2643 0.2336 +vt 0.2753 0.2454 +vt 0.2696 0.2430 +vt 0.2514 0.1947 +vt 0.2531 0.1866 +vt 0.2643 0.2390 +vt 0.2559 0.1792 +vt 0.2597 0.2336 +vt 0.2597 0.1727 +vt 0.2559 0.2271 +vt 0.2643 0.1673 +vt 0.2531 0.2196 +vt 0.2696 0.1633 +vt 0.2514 0.2116 +vt 0.2753 0.1609 +vt 0.2508 0.2031 +vt 0.2514 0.2271 +vt 0.2481 0.2196 +vt 0.2613 0.1673 +vt 0.2675 0.1633 +vt 0.2461 0.2116 +vt 0.2743 0.1609 +vt 0.2454 0.2031 +vt 0.2743 0.2454 +vt 0.2461 0.1947 +vt 0.2675 0.2430 +vt 0.2481 0.1866 +vt 0.2613 0.2390 +vt 0.2514 0.1792 +vt 0.2559 0.2336 +vt 0.2559 0.1727 +vt 0.2422 0.1947 +vt 0.2445 0.1866 +vt 0.2660 0.2430 +vt 0.2591 0.2390 +vt 0.2481 0.1792 +vt 0.2531 0.2336 +vt 0.2531 0.1727 +vt 0.2481 0.2271 +vt 0.2591 0.1673 +vt 0.2445 0.2196 +vt 0.2660 0.1633 +vt 0.2422 0.2116 +vt 0.2735 0.1609 +vt 0.2414 0.2031 +vt 0.2735 0.2454 +vt 0.2578 0.1673 +vt 0.2651 0.1633 +vt 0.2422 0.2196 +vt 0.2398 0.2116 +vt 0.2730 0.1609 +vt 0.2390 0.2031 +vt 0.2730 0.2454 +vt 0.2398 0.1947 +vt 0.2651 0.2430 +vt 0.2422 0.1866 +vt 0.2578 0.2390 +vt 0.2461 0.1792 +vt 0.2514 0.2336 +vt 0.2514 0.1727 +vt 0.2461 0.2271 +vt 0.2648 0.2430 +vt 0.2573 0.2390 +vt 0.2414 0.1866 +vt 0.2454 0.1792 +vt 0.2508 0.2336 +vt 0.2508 0.1727 +vt 0.2454 0.2271 +vt 0.2573 0.1673 +vt 0.2414 0.2196 +vt 0.2648 0.1633 +vt 0.2390 0.2116 +vt 0.2728 0.1609 +vt 0.2381 0.2031 +vt 0.2728 0.2454 +vt 0.2390 0.1947 +vt 0.3117 0.1727 +vt 0.3171 0.1792 +vt 0.3164 0.1792 +vt 0.3112 0.1727 +vt 0.3171 0.2271 +vt 0.3117 0.2336 +vt 0.3112 0.2336 +vt 0.3164 0.2271 +vt 0.3052 0.1673 +vt 0.3047 0.1673 +vt 0.3211 0.2196 +vt 0.3203 0.2196 +vt 0.2978 0.1633 +vt 0.2974 0.1633 +vt 0.3235 0.2116 +vt 0.3227 0.2116 +vt 0.2897 0.1609 +vt 0.2895 0.1609 +vt 0.3244 0.2031 +vt 0.3235 0.2031 +vt 0.2897 0.2454 +vt 0.2895 0.2454 +vt 0.3235 0.1947 +vt 0.3227 0.1947 +vt 0.2978 0.2430 +vt 0.2974 0.2430 +vt 0.3211 0.1866 +vt 0.3203 0.1866 +vt 0.3052 0.2390 +vt 0.3047 0.2390 +vt 0.2890 0.2454 +vt 0.2890 0.1609 +vt 0.3211 0.2031 +vt 0.3203 0.1947 +vt 0.2965 0.2430 +vt 0.3181 0.1866 +vt 0.3034 0.2390 +vt 0.3144 0.1792 +vt 0.3094 0.2336 +vt 0.3094 0.1727 +vt 0.3144 0.2271 +vt 0.3034 0.1673 +vt 0.3181 0.2196 +vt 0.2965 0.1633 +vt 0.3203 0.2116 +vt 0.3066 0.2336 +vt 0.3111 0.2271 +vt 0.3066 0.1727 +vt 0.3012 0.1673 +vt 0.3144 0.2196 +vt 0.2950 0.1633 +vt 0.3164 0.2116 +vt 0.2883 0.1609 +vt 0.3171 0.2031 +vt 0.2883 0.2454 +vt 0.3164 0.1947 +vt 0.2950 0.2430 +vt 0.3144 0.1866 +vt 0.3012 0.2390 +vt 0.3111 0.1792 +vt 0.3117 0.2031 +vt 0.3112 0.1947 +vt 0.2872 0.2454 +vt 0.2929 0.2430 +vt 0.3094 0.1866 +vt 0.2982 0.2390 +vt 0.3066 0.1792 +vt 0.3028 0.2336 +vt 0.3028 0.1727 +vt 0.3066 0.2271 +vt 0.2982 0.1673 +vt 0.3094 0.2196 +vt 0.2929 0.1633 +vt 0.3112 0.2116 +vt 0.2872 0.1609 +vt 0.2982 0.1727 +vt 0.2946 0.1673 +vt 0.3012 0.2271 +vt 0.3034 0.2196 +vt 0.2904 0.1633 +vt 0.3047 0.2116 +vt 0.2859 0.1609 +vt 0.3052 0.2031 +vt 0.2859 0.2454 +vt 0.3047 0.1947 +vt 0.2904 0.2430 +vt 0.3034 0.1866 +vt 0.2946 0.2390 +vt 0.3012 0.1792 +vt 0.2982 0.2336 +vt 0.2974 0.1947 +vt 0.2965 0.1866 +vt 0.2876 0.2430 +vt 0.2904 0.2390 +vt 0.2950 0.1792 +vt 0.2929 0.2336 +vt 0.2929 0.1727 +vt 0.2950 0.2271 +vt 0.2904 0.1673 +vt 0.2965 0.2196 +vt 0.2876 0.1633 +vt 0.2974 0.2116 +vt 0.2845 0.1609 +vt 0.2978 0.2031 +vt 0.2845 0.2454 +vt 0.2859 0.1673 +vt 0.2845 0.1633 +vt 0.2890 0.2196 +vt 0.2895 0.2116 +vt 0.2829 0.1609 +vt 0.2897 0.2031 +vt 0.2829 0.2454 +vt 0.2895 0.1947 +vt 0.2845 0.2430 +vt 0.2890 0.1866 +vt 0.2859 0.2390 +vt 0.2883 0.1792 +vt 0.2872 0.2336 +vt 0.2872 0.1727 +vt 0.2883 0.2271 +vt 0.5977 0.2461 +vt 0.5977 0.2500 +vt 0.5556 0.2440 +vt 0.5555 0.2469 +vt 0.5526 0.2470 +vt 0.5586 0.2440 +vt 0.5586 0.2469 +vt 0.2335 0.2672 +vt 0.2336 0.2646 +vt 0.2365 0.2645 +vt 0.2305 0.2672 +vt 0.2305 0.2646 +vt 0.4630 0.4308 +vt 0.4602 0.4307 +vt 0.4600 0.4281 +vt 0.4630 0.4336 +vt 0.4602 0.4336 +vt 0.5555 0.2500 +vt 0.4432 0.2645 +vt 0.4461 0.2646 +vt 0.4462 0.2672 +vt 0.4432 0.4312 +vt 0.4432 0.4284 +vt 0.4461 0.4284 +vt 0.4461 0.4313 +vt 0.5526 0.0343 +vt 0.5555 0.0344 +vt 0.5556 0.0372 +vt 0.5526 0.0312 +vt 0.5555 0.0312 +vt 0.2197 0.2484 +vt 0.2195 0.2510 +vt 0.2167 0.2511 +vt 0.2227 0.2484 +vt 0.2227 0.2510 +vt 0.4492 0.4313 +vt 0.2197 0.4281 +vt 0.2195 0.4307 +vt 0.2167 0.4308 +vt 0.2227 0.4281 +vt 0.2227 0.4307 +vt 0.0099 0.2511 +vt 0.0070 0.2510 +vt 0.0069 0.2484 +vt 0.2203 0.0844 +vt 0.2203 0.0871 +vt 0.2174 0.0871 +vt 0.2174 0.0843 +vt 0.3428 0.0372 +vt 0.3430 0.0344 +vt 0.3458 0.0343 +vt 0.3398 0.0372 +vt 0.3398 0.0344 +vt 0.2178 0.2623 +vt 0.2210 0.2623 +vt 0.2178 0.2651 +vt 0.0099 0.4308 +vt 0.0070 0.4307 +vt 0.0069 0.4281 +vt 0.0099 0.4336 +vt 0.0070 0.4336 +vt 0.3458 0.2470 +vt 0.3430 0.2469 +vt 0.3428 0.2440 +vt 0.3458 0.2500 +vt 0.3430 0.2500 +vt 0.6728 0.4281 +vt 0.6727 0.4307 +vt 0.6698 0.4308 +vt 0.6758 0.4281 +vt 0.6758 0.4307 +vt 0.0039 0.4307 +vt 0.2197 0.2617 +vt 0.2227 0.2617 +vt 0.0069 0.0820 +vt 0.6728 0.2617 +vt 0.6758 0.2617 +vt 0.0069 0.2617 +vt 0.6698 0.4336 +vt 0.2197 0.0820 +vt 0.2227 0.0820 +vt 0.4462 0.4336 +vt 0.3458 0.0312 +vt 0.3398 0.2440 +vt 0.2335 0.4336 +vt 0.2305 0.4336 +vt 0.4600 0.2617 +vt 0.5586 0.0372 +vn 0.0000 -1.0000 -0.0000 +vn 0.0000 1.0000 0.0000 +vn -1.0000 0.0000 0.0000 +vn 0.0000 0.0000 -1.0000 +vn 1.0000 0.0000 0.0000 +vn -0.0000 0.0000 1.0000 +vn 0.2886 -0.1087 0.9513 +vn 0.2903 0.0000 0.9569 +vn 0.4714 0.0000 0.8819 +vn 0.4686 -0.1087 0.8767 +vn 0.6344 0.0000 0.7730 +vn 0.6306 -0.1087 0.7684 +vn 0.7730 0.0000 0.6344 +vn 0.7684 -0.1087 0.6306 +vn 0.0957 -0.2147 0.9720 +vn 0.0974 -0.1087 0.9893 +vn 0.2835 -0.2147 0.9346 +vn -0.0957 -0.2147 0.9720 +vn -0.0974 -0.1087 0.9893 +vn -0.2835 -0.2147 0.9346 +vn -0.2886 -0.1087 0.9513 +vn 0.8819 0.0000 0.4714 +vn 0.8767 -0.1087 0.4686 +vn 0.4604 -0.2147 0.8614 +vn -0.4604 -0.2147 0.8614 +vn -0.4686 -0.1087 0.8767 +vn 0.9569 0.0000 0.2903 +vn 0.9513 -0.1087 0.2886 +vn 0.6196 -0.2147 0.7550 +vn -0.6196 -0.2147 0.7550 +vn -0.6306 -0.1087 0.7684 +vn 0.9952 0.0000 0.0980 +vn 0.9893 -0.1087 0.0974 +vn 0.7550 -0.2147 0.6196 +vn -0.5626 -0.6857 0.4617 +vn -0.5626 0.6857 0.4617 +vn -0.6419 0.6857 0.3431 +vn -0.6419 -0.6857 0.3431 +vn -0.7244 -0.6857 0.0713 +vn -0.7244 0.6857 0.0713 +vn -0.7244 0.6857 -0.0713 +vn -0.7244 -0.6857 -0.0713 +vn -0.7550 -0.2147 0.6196 +vn -0.7684 -0.1087 0.6306 +vn -0.4617 -0.6857 0.5626 +vn -0.4617 0.6857 0.5626 +vn 0.8614 -0.2147 0.4604 +vn -0.6965 0.6857 -0.2113 +vn -0.6965 -0.6857 -0.2113 +vn -0.8614 -0.2147 0.4604 +vn -0.8767 -0.1087 0.4686 +vn -0.3431 -0.6857 0.6419 +vn -0.3431 0.6857 0.6419 +vn 0.9346 -0.2147 0.2835 +vn -0.2113 -0.6857 0.6965 +vn -0.2113 0.6857 0.6965 +vn -0.9346 -0.2147 0.2835 +vn -0.9513 -0.1087 0.2886 +vn 0.0713 -0.6857 0.7244 +vn 0.0713 0.6857 0.7244 +vn -0.0713 0.6857 0.7244 +vn -0.0713 -0.6857 0.7244 +vn 0.9720 -0.2147 0.0957 +vn -0.6419 0.6857 -0.3431 +vn -0.6419 -0.6857 -0.3431 +vn -0.9720 -0.2147 0.0957 +vn -0.9893 -0.1087 0.0974 +vn 0.2113 -0.6857 0.6965 +vn 0.2113 0.6857 0.6965 +vn 0.9720 -0.2147 -0.0957 +vn 0.9893 -0.1087 -0.0974 +vn -0.5626 0.6857 -0.4617 +vn -0.5626 -0.6857 -0.4617 +vn -0.9720 -0.2147 -0.0957 +vn -0.9893 -0.1087 -0.0974 +vn 0.3431 -0.6857 0.6419 +vn 0.3431 0.6857 0.6419 +vn 0.7684 -0.1087 -0.6306 +vn 0.7730 0.0000 -0.6344 +vn 0.6344 0.0000 -0.7730 +vn 0.6306 -0.1087 -0.7684 +vn 0.9346 -0.2147 -0.2835 +vn 0.9513 -0.1087 -0.2886 +vn -0.4617 0.6857 -0.5626 +vn -0.4617 -0.6857 -0.5626 +vn -0.9346 -0.2147 -0.2835 +vn -0.9513 -0.1087 -0.2886 +vn 0.4617 -0.6857 0.5626 +vn 0.4617 0.6857 0.5626 +vn 0.8614 -0.2147 -0.4604 +vn 0.8767 -0.1087 -0.4686 +vn -0.3431 0.6857 -0.6419 +vn -0.3431 -0.6857 -0.6419 +vn -0.8614 -0.2147 -0.4604 +vn -0.8767 -0.1087 -0.4686 +vn 0.5626 -0.6857 0.4617 +vn 0.5626 0.6857 0.4617 +vn 0.7550 -0.2147 -0.6196 +vn -0.2113 -0.6857 -0.6965 +vn -0.2113 0.6857 -0.6965 +vn -0.0713 0.6857 -0.7244 +vn -0.0713 -0.6857 -0.7244 +vn -0.7550 -0.2147 -0.6196 +vn -0.7684 -0.1087 -0.6306 +vn 0.6196 -0.2147 -0.7550 +vn 0.0713 0.6857 -0.7244 +vn 0.0713 -0.6857 -0.7244 +vn -0.6965 0.6857 0.2113 +vn -0.6965 -0.6857 0.2113 +vn -0.6196 -0.2147 -0.7550 +vn -0.6306 -0.1087 -0.7684 +vn 0.6419 -0.6857 0.3431 +vn 0.6419 0.6857 0.3431 +vn 0.0974 -0.1087 -0.9893 +vn 0.0980 0.0000 -0.9952 +vn -0.0980 0.0000 -0.9952 +vn -0.0974 -0.1087 -0.9893 +vn 0.4604 -0.2147 -0.8614 +vn 0.4686 -0.1087 -0.8767 +vn 0.2113 0.6857 -0.6965 +vn 0.2113 -0.6857 -0.6965 +vn -0.4604 -0.2147 -0.8614 +vn -0.4686 -0.1087 -0.8767 +vn 0.6965 -0.6857 0.2113 +vn 0.6965 0.6857 0.2113 +vn 0.2835 -0.2147 -0.9346 +vn 0.2886 -0.1087 -0.9513 +vn 0.3431 0.6857 -0.6419 +vn 0.3431 -0.6857 -0.6419 +vn -0.2835 -0.2147 -0.9346 +vn -0.2886 -0.1087 -0.9513 +vn 0.7244 -0.6857 0.0713 +vn 0.7244 0.6857 0.0713 +vn 0.0957 -0.2147 -0.9720 +vn 0.4617 0.6857 -0.5626 +vn 0.4617 -0.6857 -0.5626 +vn -0.0957 -0.2147 -0.9720 +vn 0.7244 -0.6857 -0.0713 +vn 0.7244 0.6857 -0.0713 +vn 0.6965 -0.6857 -0.2113 +vn 0.6965 0.6857 -0.2113 +vn 0.5626 0.6857 -0.4617 +vn 0.5626 -0.6857 -0.4617 +vn 0.6419 -0.6857 -0.3431 +vn 0.6419 0.6857 -0.3431 +vn -0.3032 -0.6100 -0.7321 +vn -0.3827 0.0000 -0.9239 +vn 0.6088 0.0000 -0.7933 +vn 0.4824 -0.6100 -0.6287 +vn -0.7856 -0.6100 -0.1034 +vn -0.9914 0.0000 -0.1305 +vn 0.9914 0.0000 0.1305 +vn 0.7856 -0.6100 0.1034 +vn 0.3827 0.0000 0.9239 +vn 0.3032 -0.6100 0.7321 +vn -0.6088 0.0000 0.7933 +vn -0.4824 -0.6100 0.6287 +vn -0.7321 -0.6100 -0.3032 +vn -0.9239 0.0000 -0.3827 +vn -0.1305 0.0000 -0.9914 +vn -0.1034 -0.6100 -0.7856 +vn -0.6287 -0.6100 0.4824 +vn -0.7933 0.0000 0.6088 +vn 0.7933 0.0000 -0.6088 +vn 0.6287 -0.6100 -0.4824 +vn 0.9239 0.0000 0.3827 +vn 0.7321 -0.6100 0.3032 +vn 0.1305 0.0000 0.9914 +vn 0.1034 -0.6100 0.7856 +vn -0.7321 -0.6100 0.3032 +vn -0.9239 0.0000 0.3827 +vn -0.7933 0.0000 -0.6088 +vn -0.6287 -0.6100 -0.4824 +vn -0.1034 -0.6100 0.7856 +vn -0.1305 0.0000 0.9914 +vn 0.1305 0.0000 -0.9914 +vn 0.1034 -0.6100 -0.7856 +vn 0.9239 0.0000 -0.3827 +vn 0.7321 -0.6100 -0.3032 +vn 0.7933 0.0000 0.6088 +vn 0.6287 -0.6100 0.4824 +vn -0.3032 -0.6100 0.7321 +vn -0.3827 0.0000 0.9239 +vn -0.9914 0.0000 0.1305 +vn -0.7856 -0.6100 0.1034 +vn 0.4824 -0.6100 0.6287 +vn 0.6088 0.0000 0.7933 +vn -0.6088 0.0000 -0.7933 +vn -0.4824 -0.6100 -0.6287 +vn 0.3827 0.0000 -0.9239 +vn 0.3032 -0.6100 -0.7321 +vn 0.9914 0.0000 -0.1305 +vn 0.7856 -0.6100 -0.1034 +vn -0.5603 -0.6100 -0.5603 +vn -0.7071 0.0000 -0.7071 +vn 0.2588 0.0000 -0.9659 +vn 0.2051 -0.6100 -0.7654 +vn -0.7654 -0.6100 0.2051 +vn -0.9659 0.0000 0.2588 +vn 0.9659 0.0000 -0.2588 +vn 0.7654 -0.6100 -0.2051 +vn 0.7071 0.0000 0.7071 +vn 0.5603 -0.6100 0.5603 +vn -0.2588 0.0000 0.9659 +vn -0.2051 -0.6100 0.7654 +vn -0.7924 -0.6100 0.0000 +vn -0.5000 0.0000 -0.8660 +vn -0.3962 -0.6100 -0.6862 +vn -0.3962 -0.6100 0.6862 +vn -0.5000 0.0000 0.8660 +vn 0.5000 0.0000 -0.8660 +vn 0.3962 -0.6100 -0.6862 +vn 0.7924 -0.6100 0.0000 +vn 0.5000 0.0000 0.8660 +vn 0.3962 -0.6100 0.6862 +vn -0.5603 -0.6100 0.5603 +vn -0.7071 0.0000 0.7071 +vn -0.9659 0.0000 -0.2588 +vn -0.7654 -0.6100 -0.2051 +vn 0.2051 -0.6100 0.7654 +vn 0.2588 0.0000 0.9659 +vn -0.2588 0.0000 -0.9659 +vn -0.2051 -0.6100 -0.7654 +vn 0.7071 0.0000 -0.7071 +vn 0.5603 -0.6100 -0.5603 +vn 0.9659 0.0000 0.2588 +vn 0.7654 -0.6100 0.2051 +vn 0.0000 -0.6100 0.7924 +vn -0.8660 0.0000 0.5000 +vn -0.6862 -0.6100 0.3962 +vn 0.6862 -0.6100 0.3962 +vn 0.8660 0.0000 0.5000 +vn -0.8660 0.0000 -0.5000 +vn -0.6862 -0.6100 -0.3962 +vn 0.0000 -0.6100 -0.7924 +vn 0.8660 0.0000 -0.5000 +vn 0.6862 -0.6100 -0.3962 +vn -0.2903 0.0000 0.9569 +vn -0.0980 0.0000 0.9952 +vn -0.9569 0.0000 -0.2903 +vn -0.9952 0.0000 -0.0980 +vn -0.2903 0.0000 -0.9569 +vn 0.9952 0.0000 -0.0980 +vn -0.9569 0.0000 0.2903 +vn -0.8819 0.0000 0.4714 +vn 0.9569 0.0000 -0.2903 +vn 0.4714 0.0000 -0.8819 +vn 0.2903 0.0000 -0.9569 +vn 0.0980 0.0000 0.9952 +vn -0.6344 0.0000 0.7730 +vn -0.4714 0.0000 0.8819 +vn -0.9952 0.0000 0.0980 +vn -0.4714 0.0000 -0.8819 +vn -0.6344 0.0000 -0.7730 +vn -0.7730 0.0000 0.6344 +vn 0.8819 0.0000 -0.4714 +vn -0.7730 0.0000 -0.6344 +vn -0.8819 0.0000 -0.4714 +vn -0.7924 0.6100 0.0000 +vn -0.3962 0.6100 0.6862 +vn 0.3962 0.6100 0.6862 +vn 0.7924 0.6100 0.0000 +vn 0.3962 0.6100 -0.6862 +vn -0.3962 0.6100 -0.6862 +vn 0.0000 -0.0806 -0.9967 +vn 0.0000 -0.0388 -0.9992 +vn 0.0390 -0.0395 -0.9984 +vn 0.0389 -0.0822 -0.9958 +vn 0.0000 0.2849 -0.9586 +vn 0.0000 0.4407 -0.8976 +vn 0.0352 0.4479 -0.8933 +vn 0.0376 0.2901 -0.9562 +vn 0.0000 -0.1297 -0.9915 +vn 0.0387 -0.1322 -0.9904 +vn 0.0000 0.1929 -0.9812 +vn 0.0384 0.1966 -0.9797 +vn 0.0000 -0.1929 -0.9812 +vn 0.0384 -0.1966 -0.9797 +vn 0.0000 0.1297 -0.9915 +vn 0.0387 0.1322 -0.9904 +vn 0.0000 -0.2849 -0.9586 +vn 0.0376 -0.2901 -0.9562 +vn 0.0000 0.0806 -0.9967 +vn 0.0389 0.0822 -0.9958 +vn 0.0000 -0.4407 -0.8976 +vn 0.0352 -0.4479 -0.8933 +vn 0.0000 0.0388 -0.9992 +vn 0.0390 0.0395 -0.9984 +vn 0.0000 -0.7385 -0.6742 +vn 0.0252 -0.7442 -0.6675 +vn 0.0390 0.0000 -0.9992 +vn 0.0000 0.7385 -0.6742 +vn 0.0000 0.9114 -0.4114 +vn 0.0252 0.7442 -0.6675 +vn 0.0000 -0.9114 -0.4114 +vn 0.0505 -0.7602 -0.6477 +vn 0.0811 0.0000 -0.9967 +vn 0.0811 -0.0419 -0.9958 +vn 0.0505 0.7602 -0.6477 +vn 0.0718 0.4696 -0.8799 +vn 0.0809 -0.0872 -0.9929 +vn 0.0776 0.3066 -0.9486 +vn 0.0805 -0.1402 -0.9868 +vn 0.0796 0.2083 -0.9748 +vn 0.0796 -0.2083 -0.9748 +vn 0.0805 0.1402 -0.9868 +vn 0.0776 -0.3066 -0.9486 +vn 0.0809 0.0872 -0.9929 +vn 0.0718 -0.4696 -0.8799 +vn 0.0811 0.0419 -0.9958 +vn 0.1273 -0.2303 -0.9647 +vn 0.1232 -0.3369 -0.9334 +vn 0.1292 0.1554 -0.9793 +vn 0.1301 0.0968 -0.9868 +vn 0.1121 -0.5075 -0.8543 +vn 0.1305 0.0466 -0.9903 +vn 0.0768 -0.7862 -0.6132 +vn 0.1306 0.0000 -0.9914 +vn 0.0768 0.7862 -0.6132 +vn 0.1305 -0.0466 -0.9903 +vn 0.1121 0.5075 -0.8543 +vn 0.1301 -0.0968 -0.9868 +vn 0.1232 0.3369 -0.9334 +vn 0.1292 -0.1554 -0.9793 +vn 0.1273 0.2303 -0.9647 +vn 0.1045 0.8216 -0.5603 +vn 0.1586 0.5650 -0.8097 +vn 0.1943 -0.0546 -0.9794 +vn 0.1933 -0.1133 -0.9745 +vn 0.1790 0.3862 -0.9048 +vn 0.1914 -0.1814 -0.9646 +vn 0.1874 0.2674 -0.9452 +vn 0.1874 -0.2674 -0.9452 +vn 0.1914 0.1814 -0.9646 +vn 0.1790 -0.3862 -0.9048 +vn 0.1933 0.1133 -0.9745 +vn 0.1586 -0.5650 -0.8097 +vn 0.1943 0.0546 -0.9794 +vn 0.1045 -0.8216 -0.5603 +vn 0.1945 0.0000 -0.9809 +vn 0.2799 0.2264 -0.9330 +vn 0.2846 0.1423 -0.9480 +vn 0.2526 -0.4641 -0.8490 +vn 0.2144 -0.6461 -0.7325 +vn 0.2870 0.0688 -0.9554 +vn 0.1338 -0.8650 -0.4834 +vn 0.2877 0.0000 -0.9577 +vn 0.1338 0.8650 -0.4834 +vn 0.2870 -0.0688 -0.9554 +vn 0.2144 0.6461 -0.7325 +vn 0.2846 -0.1423 -0.9480 +vn 0.2526 0.4641 -0.8489 +vn 0.2799 -0.2264 -0.9330 +vn 0.2708 0.3294 -0.9045 +vn 0.2708 -0.3294 -0.9045 +vn 0.4439 -0.0960 -0.8909 +vn 0.4366 -0.1967 -0.8779 +vn 0.2817 0.7502 -0.5981 +vn 0.3545 0.5826 -0.7313 +vn 0.4224 -0.3076 -0.8526 +vn 0.3974 0.4345 -0.8082 +vn 0.3974 -0.4345 -0.8082 +vn 0.4224 0.3076 -0.8526 +vn 0.3545 -0.5826 -0.7313 +vn 0.4366 0.1967 -0.8779 +vn 0.2817 -0.7502 -0.5981 +vn 0.4439 0.0960 -0.8909 +vn 0.1648 -0.9124 -0.3745 +vn 0.4462 0.0000 -0.8949 +vn 0.1648 0.9124 -0.3745 +vn 0.4871 -0.7329 -0.4748 +vn 0.3580 -0.8586 -0.3668 +vn 0.7091 0.2977 -0.6392 +vn 0.7376 0.1488 -0.6586 +vn 0.1986 -0.9549 -0.2206 +vn 0.7469 0.0000 -0.6648 +vn 0.1986 0.9549 -0.2206 +vn 0.7376 -0.1488 -0.6586 +vn 0.3580 0.8586 -0.3668 +vn 0.7091 -0.2977 -0.6392 +vn 0.4871 0.7329 -0.4748 +vn 0.6596 -0.4463 -0.6047 +vn 0.5867 0.5928 -0.5517 +vn 0.5867 -0.5928 -0.5517 +vn 0.6596 0.4463 -0.6047 +vn 0.3986 0.8943 -0.2031 +vn 0.5518 0.7851 -0.2812 +vn 0.8388 -0.3371 -0.4275 +vn 0.7721 -0.4989 -0.3935 +vn 0.6767 0.6504 -0.3449 +vn 0.6767 -0.6504 -0.3449 +vn 0.7721 0.4989 -0.3935 +vn 0.5518 -0.7851 -0.2812 +vn 0.8388 0.3371 -0.4275 +vn 0.3986 -0.8943 -0.2031 +vn 0.8780 0.1698 -0.4475 +vn 0.2215 -0.9686 -0.1129 +vn 0.8909 0.0000 -0.4541 +vn 0.2216 0.9686 -0.1129 +vn 0.8780 -0.1698 -0.4475 +vn -0.6767 -0.6504 -0.3449 +vn -0.7721 -0.4989 -0.3935 +vn -0.6596 -0.4463 -0.6047 +vn -0.5867 -0.5928 -0.5517 +vn -0.7721 0.4989 -0.3935 +vn -0.6767 0.6504 -0.3449 +vn -0.5867 0.5928 -0.5517 +vn -0.6596 0.4463 -0.6047 +vn -0.5518 -0.7851 -0.2812 +vn -0.4871 -0.7329 -0.4748 +vn -0.8388 0.3371 -0.4275 +vn -0.7091 0.2977 -0.6392 +vn -0.3986 -0.8943 -0.2031 +vn -0.3580 -0.8586 -0.3668 +vn -0.8780 0.1698 -0.4475 +vn -0.7376 0.1488 -0.6586 +vn -0.2216 -0.9686 -0.1129 +vn -0.1986 -0.9549 -0.2206 +vn -0.8909 0.0000 -0.4541 +vn -0.7469 0.0000 -0.6648 +vn -0.2216 0.9686 -0.1129 +vn -0.1986 0.9549 -0.2206 +vn -0.8780 -0.1698 -0.4475 +vn -0.7376 -0.1488 -0.6586 +vn -0.3986 0.8943 -0.2031 +vn -0.3580 0.8586 -0.3668 +vn -0.8388 -0.3371 -0.4275 +vn -0.7091 -0.2977 -0.6392 +vn -0.5518 0.7851 -0.2812 +vn -0.4871 0.7329 -0.4748 +vn -0.1648 0.9124 -0.3745 +vn -0.1648 -0.9124 -0.3745 +vn -0.4462 0.0000 -0.8949 +vn -0.4439 -0.0960 -0.8909 +vn -0.2817 0.7502 -0.5981 +vn -0.4366 -0.1967 -0.8779 +vn -0.3545 0.5826 -0.7313 +vn -0.4224 -0.3076 -0.8526 +vn -0.3974 0.4345 -0.8082 +vn -0.3974 -0.4345 -0.8082 +vn -0.4224 0.3076 -0.8526 +vn -0.3545 -0.5826 -0.7313 +vn -0.4366 0.1967 -0.8779 +vn -0.2817 -0.7502 -0.5981 +vn -0.4439 0.0960 -0.8909 +vn -0.2708 0.3294 -0.9045 +vn -0.2799 0.2264 -0.9330 +vn -0.2708 -0.3294 -0.9045 +vn -0.2526 -0.4641 -0.8489 +vn -0.2846 0.1423 -0.9480 +vn -0.2144 -0.6461 -0.7325 +vn -0.2870 0.0688 -0.9554 +vn -0.1338 -0.8650 -0.4835 +vn -0.2877 0.0000 -0.9577 +vn -0.1338 0.8650 -0.4835 +vn -0.2870 -0.0688 -0.9554 +vn -0.2144 0.6461 -0.7325 +vn -0.2846 -0.1423 -0.9480 +vn -0.2526 0.4641 -0.8489 +vn -0.2799 -0.2264 -0.9330 +vn -0.1945 0.0000 -0.9809 +vn -0.1943 -0.0546 -0.9794 +vn -0.1045 0.8216 -0.5603 +vn -0.1586 0.5650 -0.8097 +vn -0.1933 -0.1133 -0.9745 +vn -0.1790 0.3862 -0.9048 +vn -0.1914 -0.1814 -0.9646 +vn -0.1874 0.2674 -0.9452 +vn -0.1874 -0.2674 -0.9452 +vn -0.1914 0.1814 -0.9646 +vn -0.1790 -0.3862 -0.9048 +vn -0.1933 0.1133 -0.9745 +vn -0.1586 -0.5650 -0.8097 +vn -0.1943 0.0546 -0.9794 +vn -0.1045 -0.8216 -0.5603 +vn -0.1273 -0.2303 -0.9647 +vn -0.1232 -0.3369 -0.9334 +vn -0.1292 0.1554 -0.9793 +vn -0.1301 0.0968 -0.9868 +vn -0.1121 -0.5075 -0.8543 +vn -0.1305 0.0466 -0.9903 +vn -0.0768 -0.7862 -0.6132 +vn -0.1306 0.0000 -0.9914 +vn -0.0768 0.7862 -0.6132 +vn -0.1305 -0.0466 -0.9903 +vn -0.1121 0.5075 -0.8543 +vn -0.1301 -0.0968 -0.9868 +vn -0.1232 0.3369 -0.9334 +vn -0.1292 -0.1554 -0.9793 +vn -0.1273 0.2303 -0.9647 +vn -0.0811 -0.0419 -0.9958 +vn -0.0809 -0.0872 -0.9929 +vn -0.0718 0.4696 -0.8799 +vn -0.0776 0.3066 -0.9486 +vn -0.0805 -0.1402 -0.9868 +vn -0.0796 0.2083 -0.9748 +vn -0.0796 -0.2083 -0.9748 +vn -0.0805 0.1402 -0.9868 +vn -0.0776 -0.3066 -0.9486 +vn -0.0809 0.0872 -0.9929 +vn -0.0718 -0.4696 -0.8799 +vn -0.0811 0.0419 -0.9958 +vn -0.0505 -0.7602 -0.6477 +vn -0.0811 0.0000 -0.9967 +vn -0.0505 0.7602 -0.6477 +vn -0.0376 -0.2901 -0.9562 +vn -0.0352 -0.4479 -0.8933 +vn -0.0389 0.0822 -0.9958 +vn -0.0390 0.0395 -0.9984 +vn -0.0252 -0.7442 -0.6675 +vn -0.0390 0.0000 -0.9992 +vn -0.0252 0.7442 -0.6675 +vn -0.0390 -0.0395 -0.9984 +vn -0.0352 0.4479 -0.8933 +vn -0.0389 -0.0822 -0.9958 +vn -0.0376 0.2901 -0.9562 +vn -0.0387 -0.1322 -0.9904 +vn -0.0384 0.1966 -0.9797 +vn -0.0384 -0.1966 -0.9797 +vn -0.0387 0.1322 -0.9904 +vn -0.1296 0.9831 0.1296 +vn -0.4915 0.8623 0.1216 +vn -0.4473 0.7744 0.4473 +vn -0.1216 0.8623 0.4915 +vn -0.8623 0.4915 0.1216 +vn -0.7744 0.4473 0.4473 +vn -0.9830 0.1296 0.1296 +vn -0.8623 0.1216 0.4916 +vn -0.4916 0.1216 0.8623 +vn -0.4473 0.4473 0.7744 +vn -0.1296 0.1296 0.9830 +vn -0.1216 0.4915 0.8623 +vn -0.9830 0.1296 -0.1296 +vn -0.8623 0.4915 -0.1216 +vn -0.7744 0.4473 -0.4473 +vn -0.8623 0.1216 -0.4916 +vn -0.4915 0.8623 -0.1216 +vn -0.4473 0.7744 -0.4473 +vn -0.1296 0.9831 -0.1296 +vn -0.1216 0.8623 -0.4915 +vn -0.1216 0.4915 -0.8623 +vn -0.4473 0.4473 -0.7744 +vn -0.1296 0.1296 -0.9830 +vn -0.4916 0.1216 -0.8623 +vn 0.9830 0.1296 -0.1296 +vn 0.8623 0.1216 -0.4916 +vn 0.7744 0.4473 -0.4473 +vn 0.8623 0.4915 -0.1216 +vn 0.4916 0.1216 -0.8623 +vn 0.4473 0.4473 -0.7744 +vn 0.1296 0.1296 -0.9830 +vn 0.1216 0.4915 -0.8623 +vn 0.1216 0.8623 -0.4915 +vn 0.4473 0.7744 -0.4473 +vn 0.1296 0.9831 -0.1296 +vn 0.4915 0.8623 -0.1216 +vn 0.9830 0.1296 0.1296 +vn 0.8623 0.4915 0.1216 +vn 0.7744 0.4473 0.4473 +vn 0.8623 0.1216 0.4916 +vn 0.4915 0.8623 0.1216 +vn 0.4473 0.7744 0.4473 +vn 0.1296 0.9831 0.1296 +vn 0.1216 0.8623 0.4915 +vn 0.1216 0.4915 0.8623 +vn 0.4473 0.4473 0.7744 +vn 0.1296 0.1296 0.9830 +vn 0.4916 0.1216 0.8623 +vn 0.9915 0.0000 -0.1304 +vn 0.8661 0.0000 -0.4999 +vn 0.4999 0.0000 -0.8661 +vn 0.1304 0.0000 -0.9915 +vn 0.1304 0.0000 0.9915 +vn 0.4999 0.0000 0.8661 +vn 0.8661 0.0000 0.4999 +vn 0.9915 0.0000 0.1304 +vn -0.1304 0.0000 -0.9915 +vn -0.4999 0.0000 -0.8661 +vn -0.8661 0.0000 -0.4999 +vn -0.9915 0.0000 -0.1304 +vn -0.9915 0.0000 0.1304 +vn -0.8661 0.0000 0.4999 +vn -0.4999 0.0000 0.8661 +vn -0.1304 0.0000 0.9915 +g Cube_Cube_None +s off +f 65/1/1 68/2/1 69/3/1 70/4/1 71/5/1 72/6/1 +f 77/7/1 80/8/1 81/9/1 82/10/1 83/11/1 84/12/1 +f 89/13/1 92/14/1 93/15/1 94/16/1 95/17/1 96/18/1 +f 101/19/1 104/20/1 105/21/1 106/22/1 107/23/1 108/24/1 +f 113/25/1 116/26/1 117/27/1 118/28/1 119/29/1 120/30/1 +f 125/31/1 128/32/1 129/33/1 130/34/1 131/35/1 132/36/1 +f 137/37/1 140/38/1 141/39/1 142/40/1 143/41/1 144/42/1 +f 149/43/1 152/44/1 153/45/1 154/46/1 155/47/1 156/48/1 +f 165/49/1 175/50/1 180/51/1 184/52/1 188/53/1 193/54/1 192/55/1 197/56/1 201/57/1 205/58/1 209/59/1 214/60/1 223/61/1 224/62/1 222/63/1 216/64/1 211/65/1 207/66/1 203/67/1 199/68/1 195/69/1 190/70/1 186/71/1 182/72/1 177/73/1 173/74/1 166/75/1 167/76/1 164/77/1 161/78/1 162/79/1 163/80/1 +f 169/81/2 168/82/2 174/83/2 179/84/2 178/85/2 183/86/2 187/87/2 191/88/2 196/89/2 200/90/2 204/91/2 208/92/2 212/93/2 217/94/2 213/95/2 219/96/2 218/97/2 220/98/2 221/99/2 215/100/2 210/101/2 206/102/2 202/103/2 198/104/2 194/105/2 189/106/2 185/107/2 181/108/2 176/109/2 172/110/2 171/111/2 170/112/2 +f 225/113/1 228/114/1 229/115/1 230/116/1 231/117/1 232/118/1 +f 237/119/1 240/120/1 241/121/1 242/122/1 243/123/1 244/124/1 +f 249/125/1 252/126/1 253/127/1 254/128/1 255/129/1 256/130/1 +f 261/131/1 264/132/1 265/133/1 266/134/1 267/135/1 268/136/1 +f 273/137/1 276/138/1 277/139/1 278/140/1 279/141/1 280/142/1 +f 285/143/1 288/144/1 289/145/1 290/146/1 291/147/1 292/148/1 +f 297/149/1 300/150/1 301/151/1 302/152/1 303/153/1 304/154/1 +f 309/155/1 312/156/1 313/157/1 314/158/1 315/159/1 316/160/1 +f 353/161/3 354/162/3 355/163/3 356/164/3 +f 354/165/4 357/166/4 358/167/4 355/168/4 +f 357/169/5 359/170/5 360/171/5 358/172/5 +f 359/170/6 353/173/6 356/174/6 360/175/6 +f 356/164/1 355/163/1 358/176/1 360/177/1 +f 359/178/2 357/179/2 354/180/2 353/181/2 +f 680/182/4 699/183/4 710/184/4 691/185/4 +f 698/186/5 714/187/5 726/188/5 711/189/5 +f 667/190/3 678/191/3 690/192/3 695/193/3 +f 716/194/6 668/195/6 694/196/6 727/197/6 +f 369/198/2 371/199/2 361/200/2 363/201/2 365/202/2 367/203/2 +f 376/204/2 374/205/2 384/206/2 382/207/2 380/208/2 378/209/2 +f 388/210/2 386/211/2 396/212/2 394/213/2 392/214/2 390/215/2 +f 405/216/2 407/217/2 397/218/2 399/219/2 401/220/2 403/221/2 +f 715/222/2 700/223/2 679/224/2 666/225/2 +s 1 +f 1/226/7 351/227/8 338/228/9 5/229/10 +f 5/229/10 338/228/9 325/230/11 11/231/12 +f 11/231/12 325/230/11 337/232/13 15/233/14 +f 6/234/15 2/235/16 1/226/7 7/236/17 +f 8/237/18 3/238/19 2/235/16 6/234/15 +f 10/239/20 4/240/21 3/238/19 8/237/18 +f 15/233/14 337/232/13 349/241/22 19/242/23 +f 7/236/17 1/226/7 5/229/10 12/243/24 +f 14/244/25 9/245/26 4/240/21 10/239/20 +f 19/242/23 349/241/22 330/246/27 23/247/28 +f 16/248/29 12/243/24 5/229/10 11/231/12 +f 18/249/30 13/250/31 9/245/26 14/244/25 +f 23/247/28 330/246/27 342/251/32 27/252/33 +f 20/253/34 16/248/29 11/231/12 15/233/14 +f 164/254/35 168/255/36 169/256/37 161/257/38 +f 163/258/39 171/259/40 172/260/41 165/261/42 +f 22/262/43 17/263/44 13/250/31 18/249/30 +f 167/264/45 174/265/46 168/255/36 164/254/35 +f 24/266/47 20/253/34 15/233/14 19/242/23 +f 165/261/42 172/260/41 176/267/48 175/268/49 +f 26/269/50 21/270/51 17/263/44 22/262/43 +f 166/271/52 179/272/53 174/265/46 167/264/45 +f 28/273/54 24/266/47 19/242/23 23/247/28 +f 173/274/55 178/275/56 179/272/53 166/271/52 +f 30/276/57 25/277/58 21/270/51 26/269/50 +f 182/278/59 187/279/60 183/280/61 177/281/62 +f 32/282/63 28/273/54 23/247/28 27/252/33 +f 175/268/49 176/267/48 181/283/64 180/284/65 +f 34/285/66 29/286/67 25/277/58 30/276/57 +f 186/287/68 191/288/69 187/279/60 182/278/59 +f 36/289/70 32/282/63 27/252/33 31/290/71 +f 180/284/65 181/283/64 185/291/72 184/292/73 +f 38/293/74 33/294/75 29/295/67 34/296/66 +f 190/297/76 196/298/77 191/288/69 186/287/68 +f 43/299/78 328/300/79 340/301/80 47/302/81 +f 40/303/82 36/289/70 31/290/71 35/304/83 +f 184/292/73 185/291/72 189/305/84 188/306/85 +f 42/307/86 37/308/87 33/294/75 38/293/74 +f 195/309/88 200/310/89 196/298/77 190/297/76 +f 44/311/90 40/303/82 35/304/83 39/312/91 +f 188/306/85 189/305/84 194/313/92 193/314/93 +f 46/315/94 41/316/95 37/308/87 42/307/86 +f 199/317/96 204/318/97 200/310/89 195/309/88 +f 48/319/98 44/311/90 39/312/91 43/299/78 +f 192/320/99 198/321/100 202/322/101 197/323/102 +f 46/315/94 50/324/103 45/325/104 41/316/95 +f 193/314/93 194/313/92 198/326/100 192/327/99 +f 52/328/105 48/319/98 43/299/78 47/302/81 +f 197/323/102 202/322/101 206/329/106 201/330/107 +f 161/257/38 169/256/37 170/331/108 162/332/109 +f 54/333/110 49/334/111 45/325/104 50/324/103 +f 203/335/112 208/336/113 204/318/97 199/317/96 +f 59/337/114 345/338/115 352/339/116 61/340/117 +f 56/341/118 52/328/105 47/302/81 51/342/119 +f 201/330/107 206/329/106 210/343/120 205/344/121 +f 54/333/110 58/345/122 53/346/123 49/334/111 +f 207/347/124 212/348/125 208/336/113 203/335/112 +f 60/349/126 56/341/118 51/342/119 55/350/127 +f 205/344/121 210/343/120 215/351/128 209/352/129 +f 58/345/122 62/353/130 57/354/131 53/346/123 +f 211/355/132 217/356/133 212/348/125 207/347/124 +f 177/281/62 183/280/61 178/275/56 173/274/55 +f 63/357/134 60/349/126 55/350/127 59/337/114 +f 209/352/129 215/351/128 221/358/135 214/359/136 +f 62/353/130 64/360/137 61/340/117 57/354/131 +f 216/361/138 213/362/139 217/356/133 211/355/132 +f 64/360/137 63/357/134 59/337/114 61/340/117 +f 162/332/109 170/331/108 171/259/40 163/258/39 +f 222/363/140 219/364/141 213/362/139 216/361/138 +f 214/359/136 221/358/135 220/365/142 223/366/143 +f 224/367/144 218/368/145 219/364/141 222/363/140 +f 223/366/143 220/365/142 218/368/145 224/367/144 +f 65/369/146 66/370/147 67/371/148 68/372/149 +f 72/373/150 73/374/151 66/370/147 65/369/146 +f 68/372/149 67/371/148 74/375/152 69/376/153 +f 69/376/153 74/375/152 75/377/154 70/378/155 +f 70/379/155 75/380/154 76/381/156 71/382/157 +f 71/382/157 76/381/156 73/374/151 72/373/150 +f 77/383/158 78/384/159 79/385/160 80/386/161 +f 84/387/162 85/388/163 78/384/159 77/383/158 +f 80/386/161 79/385/160 86/389/164 81/390/165 +f 81/390/165 86/389/164 87/391/166 82/392/167 +f 82/393/167 87/394/166 88/395/168 83/396/169 +f 83/396/169 88/395/168 85/388/163 84/387/162 +f 89/397/170 90/398/171 91/399/172 92/400/173 +f 96/401/174 97/402/175 90/398/171 89/397/170 +f 92/400/173 91/399/172 98/403/176 93/404/177 +f 93/404/177 98/403/176 99/405/178 94/406/179 +f 94/407/179 99/408/178 100/409/180 95/410/181 +f 95/410/181 100/409/180 97/402/175 96/401/174 +f 101/411/182 102/412/183 103/413/184 104/414/185 +f 108/415/186 109/416/187 102/412/183 101/411/182 +f 104/414/185 103/413/184 110/417/188 105/418/189 +f 105/418/189 110/417/188 111/419/190 106/420/191 +f 106/421/191 111/422/190 112/423/192 107/424/193 +f 107/424/193 112/423/192 109/416/187 108/415/186 +f 113/425/155 114/426/154 115/427/156 116/428/157 +f 120/429/153 121/430/152 114/426/154 113/425/155 +f 116/428/157 115/427/156 122/431/151 117/432/150 +f 117/432/150 122/431/151 123/433/147 118/434/146 +f 118/435/146 123/436/147 124/437/148 119/438/149 +f 119/438/149 124/437/148 121/430/152 120/429/153 +f 125/439/167 126/440/166 127/441/168 128/442/169 +f 132/443/165 133/444/164 126/440/166 125/439/167 +f 128/442/169 127/441/168 134/445/163 129/446/162 +f 129/446/162 134/445/163 135/447/159 130/448/158 +f 130/449/158 135/450/159 136/451/160 131/452/161 +f 131/452/161 136/451/160 133/444/164 132/443/165 +f 137/453/179 138/454/178 139/455/180 140/456/181 +f 144/457/177 145/458/176 138/454/178 137/453/179 +f 140/456/181 139/455/180 146/459/175 141/460/174 +f 141/460/174 146/459/175 147/461/171 142/462/170 +f 142/463/170 147/464/171 148/465/172 143/466/173 +f 143/466/173 148/465/172 145/458/176 144/457/177 +f 149/467/191 150/468/190 151/469/192 152/470/193 +f 156/471/189 157/472/188 150/468/190 149/467/191 +f 152/470/193 151/469/192 158/473/187 153/474/186 +f 153/474/186 158/473/187 159/475/183 154/476/182 +f 154/477/182 159/478/183 160/479/184 155/480/185 +f 155/480/185 160/479/184 157/472/188 156/471/189 +f 225/481/194 226/482/195 227/483/196 228/484/197 +f 232/485/198 233/486/199 226/482/195 225/481/194 +f 228/484/197 227/483/196 234/487/200 229/488/201 +f 229/488/201 234/487/200 235/489/202 230/490/203 +f 230/491/203 235/492/202 236/493/204 231/494/205 +f 231/494/205 236/493/204 233/486/199 232/485/198 +f 237/495/206 238/496/3 239/497/207 240/498/208 +f 244/499/209 245/500/210 238/496/3 237/495/206 +f 240/498/208 239/497/207 246/501/211 241/502/212 +f 241/502/212 246/501/211 247/503/5 242/504/213 +f 242/505/213 247/506/5 248/507/214 243/508/215 +f 243/508/215 248/507/214 245/500/210 244/499/209 +f 249/509/216 250/510/217 251/511/218 252/512/219 +f 256/513/220 257/514/221 250/510/217 249/509/216 +f 252/512/219 251/511/218 258/515/222 253/516/223 +f 253/516/223 258/515/222 259/517/224 254/518/225 +f 254/519/225 259/520/224 260/521/226 255/522/227 +f 255/522/227 260/521/226 257/514/221 256/513/220 +f 261/523/228 262/524/6 263/525/229 264/526/230 +f 268/527/231 269/528/232 262/524/6 261/523/228 +f 264/526/230 263/525/229 270/529/233 265/530/234 +f 265/530/234 270/529/233 271/531/4 266/532/235 +f 266/533/235 271/534/4 272/535/236 267/536/237 +f 267/536/237 272/535/236 269/528/232 268/527/231 +f 273/537/203 274/538/202 275/539/204 276/540/205 +f 280/541/201 281/542/200 274/538/202 273/537/203 +f 276/540/205 275/539/204 282/543/199 277/544/198 +f 277/544/198 282/543/199 283/545/195 278/546/194 +f 278/547/194 283/548/195 284/549/196 279/550/197 +f 279/550/197 284/549/196 281/542/200 280/541/201 +f 285/551/213 286/552/5 287/553/214 288/554/215 +f 292/555/212 293/556/211 286/552/5 285/551/213 +f 288/554/215 287/553/214 294/557/210 289/558/209 +f 289/558/209 294/557/210 295/559/3 290/560/206 +f 290/561/206 295/562/3 296/563/207 291/564/208 +f 291/564/208 296/563/207 293/556/211 292/555/212 +f 297/565/225 298/566/224 299/567/226 300/568/227 +f 304/569/223 305/570/222 298/566/224 297/565/225 +f 300/568/227 299/567/226 306/571/221 301/572/220 +f 301/572/220 306/571/221 307/573/217 302/574/216 +f 302/575/216 307/576/217 308/577/218 303/578/219 +f 303/578/219 308/577/218 305/570/222 304/569/223 +f 309/579/235 310/580/4 311/581/236 312/582/237 +f 316/583/234 317/584/233 310/580/4 309/579/235 +f 312/582/237 311/581/236 318/585/232 313/586/231 +f 313/586/231 318/585/232 319/587/6 314/588/228 +f 314/589/228 319/590/6 320/591/229 315/592/230 +f 315/592/230 320/591/229 317/584/233 316/583/234 +f 344/593/238 332/594/239 3/238/19 4/240/21 +f 341/595/240 329/596/241 33/294/75 37/308/87 +f 352/339/116 339/597/242 57/354/131 61/340/117 +f 342/251/32 323/598/243 31/290/71 27/252/33 +f 336/599/244 324/600/245 21/270/51 25/277/58 +f 323/598/243 335/601/246 35/304/83 31/290/71 +f 321/602/247 333/603/248 55/350/127 51/342/119 +f 333/603/248 345/338/115 59/337/114 55/350/127 +f 326/604/249 351/227/8 1/226/7 2/235/16 +f 331/605/250 350/606/251 9/245/26 13/250/31 +f 348/607/252 336/599/244 25/277/58 29/286/67 +f 327/608/253 346/609/254 49/334/111 53/346/123 +f 329/596/241 348/610/252 29/295/67 33/294/75 +f 339/597/242 327/608/253 53/346/123 57/354/131 +f 343/611/255 331/605/250 13/250/31 17/263/44 +f 340/301/80 321/602/247 51/342/119 47/302/81 +f 347/612/256 328/300/79 43/299/78 39/312/91 +f 350/606/251 344/593/238 4/240/21 9/245/26 +f 346/609/254 334/613/257 45/325/104 49/334/111 +f 322/614/258 341/595/240 37/308/87 41/316/95 +f 334/613/257 322/614/258 41/316/95 45/325/104 +f 335/601/246 347/612/256 39/312/91 35/304/83 +f 324/600/245 343/611/255 17/263/44 21/270/51 +f 332/594/239 326/604/249 2/235/16 3/238/19 +f 363/615/259 370/616/3 368/617/210 365/618/260 +f 382/619/259 375/620/3 377/621/210 380/622/260 +f 378/623/261 379/624/214 383/625/5 376/626/262 +f 367/627/261 366/628/214 362/629/5 369/630/262 +f 374/631/263 381/632/211 373/633/207 384/634/264 +f 371/635/263 364/636/211 372/637/207 361/638/264 +f 380/622/260 377/621/210 379/624/214 378/623/261 +f 376/639/262 383/640/5 381/632/211 374/631/263 +f 405/641/262 398/642/5 400/643/211 407/644/263 +f 384/634/264 373/633/207 375/620/3 382/619/259 +f 401/645/260 404/646/210 402/647/214 403/648/261 +f 396/649/264 385/650/207 387/651/3 394/652/259 +f 390/653/261 391/654/214 395/655/5 388/656/262 +f 386/657/263 393/658/211 385/650/207 396/649/264 +f 394/652/259 387/651/3 389/659/210 392/660/260 +f 397/661/264 408/662/207 406/663/3 399/664/259 +f 407/644/263 400/643/211 408/662/207 397/661/264 +f 403/648/261 402/647/214 398/665/5 405/666/262 +f 392/660/260 389/659/210 391/654/214 390/653/261 +f 399/664/259 406/663/3 404/646/210 401/645/260 +f 388/667/262 395/668/5 393/658/211 386/657/263 +f 660/669/265 659/670/266 418/671/267 419/672/268 +f 653/673/269 652/674/270 411/675/271 412/676/272 +f 661/677/273 660/669/265 419/672/268 420/678/274 +f 654/679/275 653/673/269 412/676/272 413/680/276 +f 662/681/277 661/677/273 420/678/274 421/682/278 +f 655/683/279 654/679/275 413/680/276 414/684/280 +f 663/685/281 662/681/277 421/682/278 422/686/282 +f 656/687/283 655/683/279 414/684/280 415/688/284 +f 664/689/285 663/685/281 422/686/282 423/690/286 +f 657/691/287 656/687/283 415/688/284 416/692/288 +f 665/693/289 664/689/285 423/690/286 424/694/290 +f 658/695/4 657/691/287 416/692/288 417/696/291 +f 651/697/292 530/698/293 410/699/294 +f 409/700/295 665/693/289 424/694/290 +f 659/670/266 658/695/4 417/696/291 418/671/267 +f 652/674/270 651/697/292 410/699/294 411/675/271 +f 409/700/295 424/694/290 439/701/296 +f 418/671/267 417/696/291 432/702/297 433/703/298 +f 411/675/271 410/699/294 425/704/299 426/705/300 +f 419/672/268 418/671/267 433/703/298 434/706/301 +f 412/676/272 411/675/271 426/705/300 427/707/302 +f 420/678/274 419/672/268 434/706/301 435/708/303 +f 413/680/276 412/676/272 427/707/302 428/709/304 +f 421/682/278 420/678/274 435/708/303 436/710/305 +f 414/684/280 413/680/276 428/709/304 429/711/306 +f 422/686/282 421/682/278 436/710/305 437/712/307 +f 415/688/284 414/684/280 429/711/306 430/713/308 +f 423/690/286 422/686/282 437/712/307 438/714/309 +f 416/692/288 415/688/284 430/713/308 431/715/310 +f 424/694/290 423/690/286 438/714/309 439/701/296 +f 417/696/291 416/692/288 431/715/310 432/702/297 +f 410/699/294 530/698/293 425/704/299 +f 437/712/307 436/710/305 451/716/311 452/717/312 +f 430/713/308 429/711/306 444/718/313 445/719/314 +f 438/714/309 437/712/307 452/717/312 453/720/315 +f 431/715/310 430/713/308 445/719/314 446/721/316 +f 439/701/296 438/714/309 453/720/315 454/722/317 +f 432/702/297 431/715/310 446/721/316 447/723/318 +f 425/704/299 530/698/293 440/724/319 +f 409/700/295 439/701/296 454/722/317 +f 433/703/298 432/702/297 447/723/318 448/725/320 +f 426/705/300 425/704/299 440/724/319 441/726/321 +f 434/706/301 433/703/298 448/725/320 449/727/322 +f 427/707/302 426/705/300 441/726/321 442/728/323 +f 435/708/303 434/706/301 449/727/322 450/729/324 +f 428/709/304 427/707/302 442/728/323 443/730/325 +f 436/710/305 435/708/303 450/729/324 451/716/311 +f 429/711/306 428/709/304 443/730/325 444/718/313 +f 441/726/321 440/724/319 455/731/326 456/732/327 +f 449/727/322 448/725/320 463/733/328 464/734/329 +f 442/728/323 441/726/321 456/732/327 457/735/330 +f 450/729/324 449/727/322 464/734/329 465/736/331 +f 443/730/325 442/728/323 457/735/330 458/737/332 +f 451/716/311 450/729/324 465/736/331 466/738/333 +f 444/718/313 443/730/325 458/737/332 459/739/334 +f 452/717/312 451/716/311 466/738/333 467/740/335 +f 445/719/314 444/718/313 459/739/334 460/741/336 +f 453/720/315 452/717/312 467/740/335 468/742/337 +f 446/721/316 445/719/314 460/741/336 461/743/338 +f 454/722/317 453/720/315 468/742/337 469/744/339 +f 447/723/318 446/721/316 461/743/338 462/745/340 +f 440/724/319 530/698/293 455/731/326 +f 409/700/295 454/722/317 469/744/339 +f 448/725/320 447/723/318 462/745/340 463/733/328 +f 460/741/336 459/739/334 474/746/341 475/747/342 +f 468/742/337 467/740/335 482/748/343 483/749/344 +f 461/743/338 460/741/336 475/747/342 476/750/345 +f 469/744/339 468/742/337 483/749/344 484/751/346 +f 462/745/340 461/743/338 476/750/345 477/752/347 +f 455/731/326 530/698/293 470/753/348 +f 409/700/295 469/744/339 484/751/346 +f 463/733/328 462/745/340 477/752/347 478/754/349 +f 456/732/327 455/731/326 470/753/348 471/755/350 +f 464/734/329 463/733/328 478/754/349 479/756/351 +f 457/735/330 456/732/327 471/755/350 472/757/352 +f 465/736/331 464/734/329 479/756/351 480/758/353 +f 458/737/332 457/735/330 472/757/352 473/759/354 +f 466/738/333 465/736/331 480/758/353 481/760/355 +f 459/739/334 458/737/332 473/759/354 474/746/341 +f 467/740/335 466/738/333 481/760/355 482/748/343 +f 479/756/351 478/754/349 493/761/356 494/762/357 +f 472/757/352 471/755/350 486/763/358 487/764/359 +f 480/758/353 479/756/351 494/762/357 495/765/360 +f 473/759/354 472/757/352 487/764/359 488/766/361 +f 481/760/355 480/758/353 495/765/360 496/767/362 +f 474/746/341 473/759/354 488/766/361 489/768/363 +f 482/748/343 481/760/355 496/767/362 497/769/364 +f 475/747/342 474/746/341 489/768/363 490/770/365 +f 483/749/344 482/748/343 497/769/364 498/771/366 +f 476/750/345 475/747/342 490/770/365 491/772/367 +f 484/751/346 483/749/344 498/771/366 499/773/368 +f 477/752/347 476/750/345 491/772/367 492/774/369 +f 470/753/348 530/698/293 485/775/370 +f 409/700/295 484/751/346 499/773/368 +f 478/754/349 477/752/347 492/774/369 493/761/356 +f 471/755/350 470/753/348 485/775/370 486/763/358 +f 498/771/366 497/769/364 512/776/371 513/777/372 +f 491/772/367 490/770/365 505/778/373 506/779/374 +f 499/773/368 498/771/366 513/777/372 514/780/375 +f 492/774/369 491/772/367 506/779/374 507/781/376 +f 485/775/370 530/698/293 500/782/377 +f 409/700/295 499/773/368 514/780/375 +f 493/761/356 492/774/369 507/781/376 508/783/378 +f 486/763/358 485/775/370 500/782/377 501/784/379 +f 494/762/357 493/761/356 508/783/378 509/785/380 +f 487/764/359 486/763/358 501/784/379 502/786/381 +f 495/765/360 494/762/357 509/785/380 510/787/382 +f 488/766/361 487/764/359 502/786/381 503/788/383 +f 496/767/362 495/765/360 510/787/382 511/789/384 +f 489/768/363 488/766/361 503/788/383 504/790/385 +f 497/769/364 496/767/362 511/789/384 512/776/371 +f 490/770/365 489/768/363 504/790/385 505/778/373 +f 502/786/381 501/784/379 516/791/386 517/792/387 +f 510/787/382 509/785/380 524/793/388 525/794/389 +f 503/788/383 502/786/381 517/792/387 518/795/390 +f 511/789/384 510/787/382 525/794/389 526/796/391 +f 504/790/385 503/788/383 518/795/390 519/797/392 +f 512/776/371 511/789/384 526/796/391 527/798/393 +f 505/778/373 504/790/385 519/797/392 520/799/394 +f 513/777/372 512/776/371 527/798/393 528/800/395 +f 506/779/374 505/778/373 520/799/394 521/801/396 +f 514/780/375 513/777/372 528/800/395 529/802/397 +f 507/781/376 506/779/374 521/801/396 522/803/398 +f 500/782/377 530/698/293 515/804/399 +f 409/700/295 514/780/375 529/802/397 +f 508/783/378 507/781/376 522/803/398 523/805/400 +f 501/784/379 500/782/377 515/804/399 516/791/386 +f 509/785/380 508/783/378 523/805/400 524/793/388 +f 542/806/401 541/807/402 556/808/403 557/809/404 +f 535/810/405 534/811/406 549/812/407 550/813/408 +f 543/814/409 542/806/401 557/809/404 558/815/410 +f 536/816/411 535/810/405 550/813/408 551/817/412 +f 544/818/413 543/814/409 558/815/410 559/819/414 +f 537/820/415 536/816/411 551/817/412 552/821/416 +f 545/822/417 544/818/413 559/819/414 560/823/418 +f 538/824/419 537/820/415 552/821/416 553/825/420 +f 531/826/421 530/698/293 546/827/422 +f 409/700/295 545/822/417 560/823/418 +f 539/828/423 538/824/419 553/825/420 554/829/424 +f 532/830/425 531/826/421 546/827/422 547/831/426 +f 540/832/427 539/828/423 554/829/424 555/833/428 +f 533/834/429 532/830/425 547/831/426 548/835/430 +f 541/807/402 540/832/427 555/833/428 556/808/403 +f 534/811/406 533/834/429 548/835/430 549/812/407 +f 546/827/422 530/698/293 561/836/431 +f 409/700/295 560/823/418 575/837/432 +f 554/829/424 553/825/420 568/838/433 569/839/434 +f 547/831/426 546/827/422 561/836/431 562/840/435 +f 555/833/428 554/829/424 569/839/434 570/841/436 +f 548/835/430 547/831/426 562/840/435 563/842/437 +f 556/808/403 555/833/428 570/841/436 571/843/438 +f 549/812/407 548/835/430 563/842/437 564/844/439 +f 557/809/404 556/808/403 571/843/438 572/845/440 +f 550/813/408 549/812/407 564/844/439 565/846/441 +f 558/815/410 557/809/404 572/845/440 573/847/442 +f 551/817/412 550/813/408 565/846/441 566/848/443 +f 559/819/414 558/815/410 573/847/442 574/849/444 +f 552/821/416 551/817/412 566/848/443 567/850/445 +f 560/823/418 559/819/414 574/849/444 575/837/432 +f 553/825/420 552/821/416 567/850/445 568/838/433 +f 565/846/441 564/844/439 579/851/446 580/852/447 +f 573/847/442 572/845/440 587/853/448 588/854/449 +f 566/848/443 565/846/441 580/852/447 581/855/450 +f 574/849/444 573/847/442 588/854/449 589/856/451 +f 567/850/445 566/848/443 581/855/450 582/857/452 +f 575/837/432 574/849/444 589/856/451 590/858/453 +f 568/838/433 567/850/445 582/857/452 583/859/454 +f 561/836/431 530/698/293 576/860/455 +f 409/700/295 575/837/432 590/858/453 +f 569/839/434 568/838/433 583/859/454 584/861/456 +f 562/840/435 561/836/431 576/860/455 577/862/457 +f 570/841/436 569/839/434 584/861/456 585/863/458 +f 563/842/437 562/840/435 577/862/457 578/864/459 +f 571/843/438 570/841/436 585/863/458 586/865/460 +f 564/844/439 563/842/437 578/864/459 579/851/446 +f 572/845/440 571/843/438 586/865/460 587/853/448 +f 584/861/456 583/859/454 598/866/461 599/867/462 +f 577/862/457 576/860/455 591/868/463 592/869/464 +f 585/863/458 584/861/456 599/867/462 600/870/465 +f 578/864/459 577/862/457 592/869/464 593/871/466 +f 586/865/460 585/863/458 600/870/465 601/872/467 +f 579/851/446 578/864/459 593/871/466 594/873/468 +f 587/853/448 586/865/460 601/872/467 602/874/469 +f 580/852/447 579/851/446 594/873/468 595/875/470 +f 588/854/449 587/853/448 602/874/469 603/876/471 +f 581/855/450 580/852/447 595/875/470 596/877/472 +f 589/856/451 588/854/449 603/876/471 604/878/473 +f 582/857/452 581/855/450 596/877/472 597/879/474 +f 590/858/453 589/856/451 604/878/473 605/880/475 +f 583/859/454 582/857/452 597/879/474 598/866/461 +f 576/860/455 530/698/293 591/868/463 +f 409/700/295 590/858/453 605/880/475 +f 603/876/471 602/874/469 617/881/476 618/882/477 +f 596/877/472 595/875/470 610/883/478 611/884/479 +f 604/878/473 603/876/471 618/882/477 619/885/480 +f 597/879/474 596/877/472 611/884/479 612/886/481 +f 605/880/475 604/878/473 619/885/480 620/887/482 +f 598/866/461 597/879/474 612/886/481 613/888/483 +f 591/868/463 530/698/293 606/889/484 +f 409/700/295 605/880/475 620/887/482 +f 599/867/462 598/866/461 613/888/483 614/890/485 +f 592/869/464 591/868/463 606/889/484 607/891/486 +f 600/870/465 599/867/462 614/890/485 615/892/487 +f 593/871/466 592/869/464 607/891/486 608/893/488 +f 601/872/467 600/870/465 615/892/487 616/894/489 +f 594/873/468 593/871/466 608/893/488 609/895/490 +f 602/874/469 601/872/467 616/894/489 617/881/476 +f 595/875/470 594/873/468 609/895/490 610/883/478 +f 615/892/487 614/890/485 629/896/491 630/897/492 +f 608/893/488 607/891/486 622/898/493 623/899/494 +f 616/894/489 615/892/487 630/897/492 631/900/495 +f 609/895/490 608/893/488 623/899/494 624/901/496 +f 617/881/476 616/894/489 631/900/495 632/902/497 +f 610/883/478 609/895/490 624/901/496 625/903/498 +f 618/882/477 617/881/476 632/902/497 633/904/499 +f 611/884/479 610/883/478 625/903/498 626/905/500 +f 619/885/480 618/882/477 633/904/499 634/906/501 +f 612/886/481 611/884/479 626/905/500 627/907/502 +f 620/887/482 619/885/480 634/906/501 635/908/503 +f 613/888/483 612/886/481 627/907/502 628/909/504 +f 606/889/484 530/698/293 621/910/505 +f 409/700/295 620/887/482 635/908/503 +f 614/890/485 613/888/483 628/909/504 629/896/491 +f 607/891/486 606/889/484 621/910/505 622/898/493 +f 634/906/501 633/904/499 648/911/506 649/912/507 +f 627/907/502 626/905/500 641/913/508 642/914/509 +f 635/908/503 634/906/501 649/912/507 650/915/510 +f 628/909/504 627/907/502 642/914/509 643/916/511 +f 621/910/505 530/698/293 636/917/512 +f 409/700/295 635/908/503 650/915/510 +f 629/896/491 628/909/504 643/916/511 644/918/513 +f 622/898/493 621/910/505 636/917/512 637/919/514 +f 630/897/492 629/896/491 644/918/513 645/920/515 +f 623/899/494 622/898/493 637/919/514 638/921/516 +f 631/900/495 630/897/492 645/920/515 646/922/517 +f 624/901/496 623/899/494 638/921/516 639/923/518 +f 632/902/497 631/900/495 646/922/517 647/924/519 +f 625/903/498 624/901/496 639/923/518 640/925/520 +f 633/904/499 632/902/497 647/924/519 648/911/506 +f 626/905/500 625/903/498 640/925/520 641/913/508 +f 643/916/511 642/914/509 657/691/287 658/695/4 +f 636/917/512 530/698/293 651/697/292 +f 409/700/295 650/915/510 665/693/289 +f 644/918/513 643/916/511 658/695/4 659/670/266 +f 637/919/514 636/917/512 651/697/292 652/674/270 +f 645/920/515 644/918/513 659/670/266 660/669/265 +f 638/921/516 637/919/514 652/674/270 653/673/269 +f 646/922/517 645/920/515 660/669/265 661/677/273 +f 639/923/518 638/921/516 653/673/269 654/679/275 +f 647/924/519 646/922/517 661/677/273 662/681/277 +f 640/925/520 639/923/518 654/679/275 655/683/279 +f 648/911/506 647/924/519 662/681/277 663/685/281 +f 641/913/508 640/925/520 655/683/279 656/687/283 +f 649/912/507 648/911/506 663/685/281 664/689/285 +f 642/914/509 641/913/508 656/687/283 657/691/287 +f 650/915/510 649/912/507 664/689/285 665/693/289 +f 365/618/260 368/617/210 366/628/214 367/627/261 +f 369/926/262 362/927/5 364/636/211 371/635/263 +f 361/638/264 372/637/207 370/616/3 363/615/259 +f 666/225/521 669/928/522 671/929/523 670/930/524 +f 669/928/522 673/931/525 674/932/526 671/929/523 +f 667/190/527 672/933/528 674/934/526 673/935/525 +f 672/933/528 676/936/529 677/937/530 674/934/526 +f 668/195/531 675/938/532 677/939/530 676/940/529 +f 675/938/532 670/941/524 671/942/523 677/939/530 +f 671/929/523 674/932/526 677/943/530 +f 678/191/533 681/944/534 683/945/535 682/946/536 +f 681/947/534 685/948/537 686/949/538 683/950/535 +f 679/224/539 684/951/540 686/952/538 685/953/537 +f 684/951/540 688/954/541 689/955/542 686/952/538 +f 680/182/543 687/956/544 689/957/542 688/958/541 +f 687/956/544 682/959/536 683/960/535 689/957/542 +f 683/950/535 686/949/538 689/961/542 +f 698/186/545 701/962/546 703/963/547 702/964/548 +f 701/962/546 705/965/549 706/966/550 703/963/547 +f 699/183/551 704/967/552 706/968/550 705/969/549 +f 704/970/552 708/971/553 709/972/554 706/973/550 +f 700/223/555 707/974/556 709/975/554 708/976/553 +f 707/974/556 702/977/548 703/978/547 709/975/554 +f 703/979/547 706/980/550 709/981/554 +f 714/187/557 717/982/558 719/983/559 718/984/560 +f 717/982/558 721/985/561 722/986/562 719/983/559 +f 715/222/563 720/987/564 722/988/562 721/989/561 +f 720/987/564 724/990/565 725/991/566 722/988/562 +f 716/194/567 723/992/568 725/993/566 724/994/565 +f 723/992/568 718/995/560 719/996/559 725/993/566 +f 719/983/559 722/986/562 725/997/566 +f 698/186/545 711/189/569 713/998/570 701/962/546 +f 701/962/546 713/998/570 712/999/571 705/965/549 +f 705/969/549 712/1000/571 710/184/572 699/183/551 +f 716/194/567 727/197/573 729/1001/574 723/992/568 +f 723/992/568 729/1001/574 728/1002/575 718/995/560 +f 718/984/560 728/1003/575 726/188/576 714/187/557 +f 668/195/531 716/194/567 724/994/565 675/938/532 +f 675/938/532 724/994/565 720/1004/564 670/941/524 +f 670/930/524 720/987/564 715/222/563 666/225/521 +f 680/182/543 691/185/577 693/1005/578 687/956/544 +f 687/956/544 693/1005/578 692/1006/579 682/959/536 +f 682/946/536 692/1007/579 690/192/580 678/191/533 +f 679/224/539 700/223/555 708/976/553 684/951/540 +f 684/951/540 708/976/553 704/1008/552 688/954/541 +f 688/958/541 704/967/552 699/183/551 680/182/543 +f 700/223/555 715/222/563 721/989/561 707/974/556 +f 707/974/556 721/989/561 717/1009/558 702/977/548 +f 702/964/548 717/982/558 714/187/557 698/186/545 +f 667/190/527 695/193/581 697/1010/582 672/933/528 +f 672/933/528 697/1010/582 696/1011/583 676/936/529 +f 676/940/529 696/1012/583 694/196/584 668/195/531 +f 666/225/521 679/224/539 685/953/537 669/928/522 +f 669/928/522 685/953/537 681/1013/534 673/931/525 +f 673/935/525 681/944/534 678/191/533 667/190/527 diff --git a/mods/pipeworks/models/pipeworks_pump_lowpoly.obj b/mods/pipeworks/models/pipeworks_pump_lowpoly.obj new file mode 100644 index 00000000..537fc349 --- /dev/null +++ b/mods/pipeworks/models/pipeworks_pump_lowpoly.obj @@ -0,0 +1,214 @@ +# Blender v2.78 (sub 0) OBJ File: 'pipe-pump-lowpoly.blend' +# www.blender.org +o Cube +v 0.153397 0.500000 -0.063525 +v 0.063558 0.500000 -0.153364 +v -0.063492 0.500000 -0.153364 +v -0.153331 0.500000 -0.063525 +v -0.153331 0.500000 0.063526 +v -0.063492 0.500000 0.153364 +v 0.063558 0.500000 0.153364 +v 0.153397 0.500000 0.063526 +v 0.063558 0.468700 -0.153364 +v 0.153397 0.468700 -0.063525 +v 0.153397 0.468700 0.063526 +v 0.063558 0.468700 0.153364 +v -0.063492 0.468700 0.153364 +v -0.153331 0.468700 0.063526 +v -0.153331 0.468700 -0.063525 +v -0.063492 0.468700 -0.153364 +v -0.122656 0.374847 0.050803 +v -0.050827 0.374847 0.122608 +v -0.050728 0.468750 0.122608 +v -0.122557 0.468750 0.050804 +v -0.050771 0.468750 -0.122590 +v -0.050870 0.374847 -0.122590 +v -0.122674 0.374847 -0.050761 +v -0.122575 0.468750 -0.050760 +v 0.050794 0.468750 -0.122607 +v 0.050695 0.374847 -0.122608 +v 0.122623 0.468750 -0.050803 +v 0.122524 0.374847 -0.050804 +v 0.050837 0.468750 0.122590 +v 0.050738 0.374847 0.122590 +v 0.122542 0.374847 0.050761 +v 0.122641 0.468750 0.050761 +v -0.496061 -0.496094 0.496094 +v -0.496061 -0.496094 -0.496094 +v 0.496127 -0.496094 -0.496094 +v 0.496127 -0.496094 0.496094 +v -0.496061 -0.375000 0.496094 +v -0.496061 -0.375000 -0.496094 +v 0.496127 -0.375000 -0.496094 +v 0.496127 -0.375000 0.496094 +v -0.437467 -0.375000 0.437500 +v -0.437467 -0.375000 -0.437500 +v 0.437533 -0.375000 -0.437500 +v 0.437533 -0.375000 0.437500 +v -0.437467 0.375000 0.437500 +v -0.437467 0.375000 -0.437500 +v 0.437533 0.375000 -0.437500 +v 0.437533 0.375000 0.437500 +vt 0.0312 0.7695 +vt 0.0078 0.7461 +vt 0.0078 0.7148 +vt 0.0312 0.6914 +vt 0.0625 0.6914 +vt 0.0859 0.7148 +vt 0.0859 0.7461 +vt 0.0625 0.7695 +vt 0.1016 0.7461 +vt 0.1250 0.7695 +vt 0.1562 0.7695 +vt 0.1797 0.7461 +vt 0.1797 0.7148 +vt 0.1562 0.6914 +vt 0.1250 0.6914 +vt 0.1016 0.7148 +vt 0.7148 0.7617 +vt 0.7148 0.5117 +vt 0.7461 0.5117 +vt 0.7461 0.7617 +vt 0.6211 0.7617 +vt 0.6211 0.5117 +vt 0.6523 0.5117 +vt 0.6523 0.7617 +vt 0.6836 0.7617 +vt 0.6836 0.5117 +vt 0.7148 0.5117 +vt 0.7148 0.7617 +vt 0.6836 0.7617 +vt 0.6523 0.7617 +vt 0.6523 0.5117 +vt 0.9961 0.5117 +vt 0.9961 0.7617 +vt 0.9961 0.2617 +vt 0.9961 0.5117 +vt 0.7461 0.5117 +vt 0.7461 0.2617 +vt 0.2305 0.2617 +vt 0.4492 0.2617 +vt 0.4492 0.4336 +vt 0.2305 0.4336 +vt 0.2227 0.6133 +vt 0.0039 0.6133 +vt 0.0039 0.4414 +vt 0.2227 0.4414 +vt 0.2227 0.4336 +vt 0.0039 0.4336 +vt 0.0039 0.2617 +vt 0.2227 0.2617 +vt 0.6758 0.4336 +vt 0.4570 0.4336 +vt 0.4570 0.2617 +vt 0.6758 0.2617 +vt 0.2305 0.6602 +vt 0.2305 0.4414 +vt 0.4492 0.4414 +vt 0.4492 0.6602 +vt 0.0547 0.9727 +vt 0.0547 0.9648 +vt 0.0625 0.9648 +vt 0.0625 0.9727 +vt 0.0781 0.9727 +vt 0.0781 0.9648 +vt 0.0859 0.9648 +vt 0.0859 0.9727 +vt 0.0469 0.9727 +vt 0.0469 0.9648 +vt 0.0938 0.9648 +vt 0.0938 0.9727 +vt 0.0391 0.9727 +vt 0.0391 0.9648 +vt 0.0703 0.9727 +vt 0.0703 0.9648 +vt 0.0312 0.9727 +vt 0.0312 0.9648 +vt 0.0508 0.9766 +vt 0.0664 0.9766 +vt 0.0664 0.9922 +vt 0.0508 0.9922 +vt 0.0195 0.9922 +vt 0.0195 0.9766 +vt 0.0352 0.9766 +vt 0.0352 0.9922 +vt 0.0039 0.9922 +vt 0.0039 0.9766 +vt 0.1133 0.9922 +vt 0.1133 0.9766 +vt 0.1289 0.9766 +vt 0.1289 0.9922 +vt 0.0820 0.9922 +vt 0.0820 0.9766 +vt 0.0977 0.9766 +vt 0.0977 0.9922 +vn -0.0000 1.0000 0.0000 +vn 0.0000 -1.0000 -0.0000 +vn -1.0000 0.0000 -0.0000 +vn 0.0000 0.0000 -1.0000 +vn 1.0000 0.0000 0.0000 +vn 0.0000 0.0000 1.0000 +vn -0.7173 0.6302 0.2971 +vn -0.7173 -0.6302 0.2971 +vn -0.2971 -0.6302 0.7173 +vn -0.2971 0.6302 0.7173 +vn 0.7173 0.6302 0.2971 +vn 0.7173 -0.6302 0.2971 +vn 0.7173 -0.6302 -0.2971 +vn 0.7173 0.6302 -0.2971 +vn -0.7173 0.6302 -0.2971 +vn -0.7173 -0.6302 -0.2971 +vn 0.2971 -0.6302 -0.7173 +vn 0.2971 0.6302 -0.7173 +vn -0.2971 0.6302 -0.7173 +vn -0.2971 -0.6302 -0.7173 +vn 0.2971 0.6302 0.7173 +vn 0.2971 -0.6302 0.7173 +vn -0.9238 0.0009 0.3827 +vn -0.3827 0.0004 0.9238 +vn -0.3823 0.0004 0.9240 +vn -0.9238 0.0009 0.3829 +vn -0.3826 0.0004 -0.9239 +vn -0.3830 0.0004 -0.9237 +vn -0.9240 0.0009 -0.3824 +vn -0.9239 0.0009 -0.3826 +vn 0.3827 -0.0004 -0.9238 +vn 0.3823 -0.0004 -0.9240 +vn 0.9238 -0.0009 -0.3827 +vn 0.9238 -0.0009 -0.3829 +vn 0.3830 -0.0004 0.9237 +vn 0.3826 -0.0004 0.9239 +vn 0.9239 -0.0009 0.3826 +vn 0.9240 -0.0009 0.3824 +g Cube_Cube_None +s off +f 1/1/1 2/2/1 3/3/1 4/4/1 5/5/1 6/6/1 7/7/1 8/8/1 +f 9/9/2 10/10/2 11/11/2 12/12/2 13/13/2 14/14/2 15/15/2 16/16/2 +f 37/17/3 38/18/3 34/19/3 33/20/3 +f 38/21/4 39/22/4 35/23/4 34/24/4 +f 39/25/5 40/26/5 36/27/5 35/28/5 +f 40/26/6 37/29/6 33/30/6 36/31/6 +f 33/20/2 34/19/2 35/32/2 36/33/2 +f 40/34/1 39/35/1 38/36/1 37/37/1 +f 45/38/3 46/39/3 42/40/3 41/41/3 +f 46/42/4 47/43/4 43/44/4 42/45/4 +f 47/46/5 48/47/5 44/48/5 43/49/5 +f 48/50/6 45/51/6 41/52/6 44/53/6 +f 48/54/1 47/55/1 46/56/1 45/57/1 +s 1 +f 5/58/7 14/59/8 13/60/9 6/61/10 +f 8/62/11 11/63/12 10/64/13 1/65/14 +f 4/66/15 15/67/16 14/59/8 5/58/7 +f 1/65/14 10/64/13 9/68/17 2/69/18 +f 3/70/19 16/71/20 15/67/16 4/66/15 +f 7/72/21 12/73/22 11/63/12 8/62/11 +f 6/61/10 13/60/9 12/73/22 7/72/21 +f 2/74/18 9/75/17 16/71/20 3/70/19 +f 17/76/23 18/77/24 19/78/25 20/79/26 +f 21/80/27 22/81/28 23/82/29 24/83/30 +f 25/84/31 26/85/32 22/81/28 21/80/27 +f 27/86/33 28/87/34 26/88/32 25/89/31 +f 29/90/35 30/91/36 31/92/37 32/93/38 +f 19/78/25 18/77/24 30/91/36 29/90/35 +f 24/83/30 23/82/29 17/76/23 20/79/26 +f 31/92/37 28/87/34 27/86/33 32/93/38 diff --git a/mods/pipeworks/models/pipeworks_spigot.obj b/mods/pipeworks/models/pipeworks_spigot.obj new file mode 100644 index 00000000..17dd23f7 --- /dev/null +++ b/mods/pipeworks/models/pipeworks_spigot.obj @@ -0,0 +1,2549 @@ +# Blender v2.78 (sub 0) OBJ File: 'pipe-spigot-pouring.blend' +# www.blender.org +o Pipe_Cylinder.002 +v 0.120197 0.036461 0.437501 +v 0.125000 0.012312 0.437501 +v 0.125000 -0.012311 0.437501 +v 0.120197 -0.036461 0.437501 +v 0.110774 0.059210 0.437501 +v 0.131836 0.012985 0.468750 +v 0.126770 0.038455 0.468750 +v 0.131836 -0.012985 0.468750 +v 0.110774 -0.059210 0.437501 +v 0.126770 -0.038455 0.468750 +v 0.097094 0.079683 0.437501 +v 0.116832 0.062448 0.468750 +v 0.097094 -0.079683 0.437501 +v 0.116832 -0.062448 0.468750 +v 0.079683 0.097094 0.437501 +v 0.102404 0.084041 0.468750 +v 0.079683 -0.097094 0.437501 +v 0.102404 -0.084041 0.468750 +v 0.059210 0.110774 0.437501 +v 0.084041 0.102404 0.468750 +v 0.059210 -0.110774 0.437501 +v 0.084041 -0.102404 0.468750 +v 0.036461 0.120197 0.437501 +v 0.062448 0.116832 0.468750 +v 0.036461 -0.120197 0.437501 +v 0.062448 -0.116832 0.468750 +v 0.012311 0.125000 0.437501 +v 0.038455 0.126770 0.468750 +v 0.012311 -0.125001 0.437501 +v 0.038455 -0.126770 0.468750 +v -0.012312 0.125000 0.437501 +v 0.012985 0.131836 0.468750 +v -0.012312 -0.125001 0.437501 +v 0.012985 -0.131837 0.468750 +v -0.036461 0.120197 0.437501 +v -0.012985 0.131836 0.468750 +v -0.036461 -0.120197 0.437501 +v -0.012985 -0.131837 0.468750 +v -0.059210 0.110774 0.437501 +v -0.038455 0.126770 0.468750 +v -0.059210 -0.110774 0.437501 +v -0.038455 -0.126770 0.468750 +v -0.079683 0.097094 0.437501 +v -0.062448 0.116832 0.468750 +v -0.079683 -0.097094 0.437501 +v -0.062448 -0.116832 0.468750 +v -0.097094 0.079683 0.437501 +v -0.084041 0.102404 0.468750 +v -0.097094 -0.079683 0.437501 +v -0.084041 -0.102404 0.468750 +v -0.110774 0.059210 0.437501 +v -0.102404 0.084041 0.468750 +v -0.110774 -0.059210 0.437501 +v -0.102404 -0.084041 0.468750 +v -0.120197 0.036461 0.437501 +v -0.116832 0.062448 0.468750 +v -0.120197 -0.036461 0.437501 +v -0.116832 -0.062448 0.468750 +v -0.125001 0.012311 0.437501 +v -0.126770 0.038455 0.468750 +v -0.125001 -0.012311 0.437501 +v -0.126770 -0.038455 0.468750 +v -0.131837 0.012985 0.468750 +v -0.131837 -0.012985 0.468750 +v -0.063644 0.130078 0.460912 +v -0.063644 0.130078 0.468749 +v -0.062467 0.139022 0.468749 +v -0.062467 0.139022 0.460912 +v -0.054133 0.142474 0.460912 +v -0.046976 0.136982 0.460912 +v -0.048153 0.128039 0.460912 +v -0.056487 0.124587 0.460912 +v -0.056487 0.124587 0.468749 +v -0.054133 0.142474 0.468749 +v -0.046976 0.136982 0.468749 +v -0.048153 0.128039 0.468749 +v -0.136982 0.046976 0.460912 +v -0.136982 0.046976 0.468749 +v -0.142474 0.054133 0.468749 +v -0.142474 0.054133 0.460912 +v -0.139022 0.062467 0.460912 +v -0.130078 0.063644 0.460912 +v -0.124587 0.056488 0.460912 +v -0.128039 0.048154 0.460912 +v -0.128039 0.048154 0.468749 +v -0.139022 0.062467 0.468749 +v -0.130078 0.063644 0.468749 +v -0.124587 0.056488 0.468749 +v -0.130078 -0.063644 0.460912 +v -0.130078 -0.063644 0.468749 +v -0.139022 -0.062467 0.468749 +v -0.139022 -0.062467 0.460912 +v -0.142474 -0.054132 0.460912 +v -0.136982 -0.046976 0.460912 +v -0.128039 -0.048153 0.460912 +v -0.124587 -0.056487 0.460912 +v -0.124587 -0.056487 0.468749 +v -0.142474 -0.054132 0.468749 +v -0.136982 -0.046976 0.468749 +v -0.128039 -0.048153 0.468749 +v -0.046976 -0.136982 0.460912 +v -0.046976 -0.136982 0.468749 +v -0.054133 -0.142474 0.468749 +v -0.054133 -0.142474 0.460912 +v -0.062467 -0.139022 0.460912 +v -0.063644 -0.130078 0.460912 +v -0.056488 -0.124587 0.460912 +v -0.048154 -0.128039 0.460912 +v -0.048154 -0.128039 0.468749 +v -0.062467 -0.139022 0.468749 +v -0.063644 -0.130078 0.468749 +v -0.056488 -0.124587 0.468749 +v 0.063644 -0.130078 0.460912 +v 0.063644 -0.130078 0.468749 +v 0.062466 -0.139022 0.468749 +v 0.062466 -0.139022 0.460912 +v 0.054132 -0.142474 0.460912 +v 0.046976 -0.136982 0.460912 +v 0.048153 -0.128039 0.460912 +v 0.056487 -0.124587 0.460912 +v 0.056487 -0.124587 0.468749 +v 0.054132 -0.142474 0.468749 +v 0.046976 -0.136982 0.468749 +v 0.048153 -0.128039 0.468749 +v 0.136982 -0.046976 0.460912 +v 0.136982 -0.046976 0.468749 +v 0.142474 -0.054133 0.468749 +v 0.142474 -0.054133 0.460912 +v 0.139022 -0.062467 0.460912 +v 0.130078 -0.063644 0.460912 +v 0.124586 -0.056488 0.460912 +v 0.128039 -0.048153 0.460912 +v 0.128039 -0.048153 0.468749 +v 0.139022 -0.062467 0.468749 +v 0.130078 -0.063644 0.468749 +v 0.124586 -0.056488 0.468749 +v 0.130078 0.063644 0.460912 +v 0.130078 0.063644 0.468749 +v 0.139022 0.062467 0.468749 +v 0.139022 0.062467 0.460912 +v 0.142474 0.054132 0.460912 +v 0.136982 0.046976 0.460912 +v 0.128039 0.048153 0.460912 +v 0.124587 0.056487 0.460912 +v 0.124587 0.056487 0.468749 +v 0.142474 0.054132 0.468749 +v 0.136982 0.046976 0.468749 +v 0.128039 0.048153 0.468749 +v 0.046976 0.136982 0.460912 +v 0.046976 0.136982 0.468749 +v 0.054133 0.142474 0.468749 +v 0.054133 0.142474 0.460912 +v 0.062467 0.139022 0.460912 +v 0.063644 0.130078 0.460912 +v 0.056488 0.124587 0.460912 +v 0.048153 0.128039 0.460912 +v 0.048153 0.128039 0.468749 +v 0.062467 0.139022 0.468749 +v 0.063644 0.130078 0.468749 +v 0.056487 0.124587 0.468749 +v 0.125000 0.012312 0.012311 +v 0.012311 -0.125001 0.125000 +v -0.059210 -0.110774 0.110774 +v -0.079683 -0.097094 0.097094 +v -0.097094 -0.079683 0.079683 +v -0.120197 -0.036461 0.036461 +v 0.125000 -0.012312 0.012312 +v 0.120197 -0.036461 0.036461 +v 0.110774 -0.059210 0.059210 +v 0.097094 -0.079683 0.079683 +v 0.079683 -0.097094 0.097094 +v 0.059210 -0.110774 0.110774 +v 0.036461 -0.120197 0.120197 +v -0.012311 -0.125000 0.125000 +v -0.036461 -0.120197 0.120197 +v -0.110774 -0.059210 0.059210 +v -0.125000 -0.012311 0.012311 +v -0.125000 0.012312 0.012312 +v 0.074012 -0.138466 0.468750 +v 0.045576 -0.150245 0.468750 +v 0.015389 -0.156250 0.468750 +v 0.099603 -0.121367 0.468750 +v -0.015389 -0.156250 0.468750 +v 0.138467 -0.074012 0.468750 +v 0.121367 -0.099603 0.468750 +v 0.099603 -0.121367 0.500000 +v 0.074012 -0.138467 0.500000 +v 0.045576 -0.150245 0.500000 +v 0.015389 -0.156250 0.500000 +v -0.015389 -0.156250 0.500000 +v 0.150245 -0.045576 0.468750 +v 0.121367 -0.099603 0.500000 +v -0.045576 -0.150245 0.468750 +v -0.045576 -0.150245 0.500000 +v 0.156250 -0.015389 0.468750 +v 0.150245 -0.045576 0.500000 +v 0.138466 -0.074012 0.500000 +v -0.074012 -0.138467 0.468750 +v -0.074012 -0.138467 0.500000 +v 0.156249 0.015389 0.468750 +v 0.156250 -0.015389 0.500000 +v -0.099603 -0.121367 0.468750 +v -0.099603 -0.121367 0.500000 +v 0.150245 0.045576 0.468750 +v 0.156250 0.015389 0.500000 +v -0.121367 -0.099603 0.468750 +v -0.121367 -0.099603 0.500000 +v 0.138467 0.074012 0.468750 +v 0.150245 0.045576 0.500000 +v -0.150245 -0.045576 0.468750 +v -0.138467 -0.074012 0.468750 +v -0.138467 -0.074012 0.500000 +v 0.121367 0.099603 0.468750 +v 0.138467 0.074012 0.500000 +v -0.156250 -0.015389 0.468750 +v -0.150245 -0.045576 0.500000 +v 0.099603 0.121367 0.468750 +v 0.121367 0.099603 0.500000 +v -0.156250 0.015389 0.468750 +v -0.156250 -0.015389 0.500000 +v 0.074012 0.138466 0.468750 +v 0.099603 0.121367 0.500000 +v -0.150245 0.045576 0.468750 +v -0.156250 0.015389 0.500000 +v 0.045576 0.150245 0.468750 +v 0.074012 0.138466 0.500000 +v -0.138467 0.074012 0.468750 +v -0.150245 0.045576 0.500000 +v 0.015389 0.156249 0.468750 +v 0.045576 0.150245 0.500000 +v -0.015389 0.156250 0.500000 +v -0.121367 0.099603 0.468750 +v -0.138467 0.074012 0.500000 +v -0.015389 0.156250 0.468750 +v 0.015389 0.156250 0.500000 +v -0.074012 0.138467 0.500000 +v -0.045576 0.150245 0.500000 +v -0.099603 0.121367 0.500000 +v -0.121367 0.099603 0.500000 +v -0.045576 0.150245 0.468750 +v -0.099603 0.121367 0.468750 +v -0.074012 0.138467 0.468750 +v -0.108578 0.095821 0.460912 +v -0.108578 0.095821 0.468749 +v -0.110913 0.104534 0.468749 +v -0.110913 0.104534 0.460912 +v -0.104534 0.110913 0.460912 +v -0.095821 0.108578 0.460912 +v -0.093486 0.099865 0.460912 +v -0.099865 0.093486 0.460912 +v -0.099865 0.093486 0.468749 +v -0.104534 0.110913 0.468749 +v -0.095821 0.108578 0.468749 +v -0.093486 0.099865 0.468749 +v -0.144532 -0.009021 0.460912 +v -0.144532 -0.009021 0.468749 +v -0.152344 -0.004510 0.468749 +v -0.152344 -0.004510 0.460912 +v -0.152344 0.004510 0.460912 +v -0.144532 0.009021 0.460912 +v -0.136720 0.004510 0.460912 +v -0.136720 -0.004510 0.460912 +v -0.136720 -0.004510 0.468749 +v -0.152344 0.004510 0.468749 +v -0.144532 0.009021 0.468749 +v -0.136720 0.004510 0.468749 +v -0.095821 -0.108578 0.460912 +v -0.095821 -0.108578 0.468749 +v -0.104535 -0.110913 0.468749 +v -0.104535 -0.110913 0.460912 +v -0.110913 -0.104534 0.460912 +v -0.108578 -0.095821 0.460912 +v -0.099865 -0.093486 0.460912 +v -0.093486 -0.099865 0.460912 +v -0.093486 -0.099865 0.468749 +v -0.110913 -0.104534 0.468749 +v -0.108578 -0.095821 0.468749 +v -0.099865 -0.093486 0.468749 +v 0.009021 -0.144532 0.460912 +v 0.009021 -0.144532 0.468749 +v 0.004510 -0.152344 0.468749 +v 0.004510 -0.152344 0.460912 +v -0.004511 -0.152344 0.460912 +v -0.009021 -0.144532 0.460912 +v -0.004511 -0.136720 0.460912 +v 0.004510 -0.136720 0.460912 +v 0.004510 -0.136720 0.468749 +v -0.004511 -0.152344 0.468749 +v -0.009021 -0.144532 0.468749 +v -0.004511 -0.136720 0.468749 +v 0.108578 -0.095821 0.460912 +v 0.108578 -0.095821 0.468749 +v 0.110913 -0.104534 0.468749 +v 0.110913 -0.104534 0.460912 +v 0.104534 -0.110913 0.460912 +v 0.095821 -0.108578 0.460912 +v 0.093486 -0.099865 0.460912 +v 0.099865 -0.093486 0.460912 +v 0.099865 -0.093486 0.468749 +v 0.104534 -0.110913 0.468749 +v 0.095821 -0.108578 0.468749 +v 0.093486 -0.099865 0.468749 +v 0.144532 0.009021 0.460912 +v 0.144532 0.009021 0.468749 +v 0.152344 0.004510 0.468749 +v 0.152344 0.004510 0.460912 +v 0.152344 -0.004510 0.460912 +v 0.144532 -0.009021 0.460912 +v 0.136720 -0.004510 0.460912 +v 0.136720 0.004510 0.460912 +v 0.136720 0.004510 0.468749 +v 0.152344 -0.004510 0.468749 +v 0.144532 -0.009021 0.468749 +v 0.136720 -0.004510 0.468749 +v 0.095821 0.108578 0.460912 +v 0.095821 0.108578 0.468749 +v 0.104534 0.110913 0.468749 +v 0.104534 0.110913 0.460912 +v 0.110913 0.104534 0.460912 +v 0.108578 0.095821 0.460912 +v 0.099865 0.093486 0.460912 +v 0.093486 0.099865 0.460912 +v 0.093486 0.099865 0.468749 +v 0.110913 0.104534 0.468749 +v 0.108578 0.095821 0.468749 +v 0.099865 0.093486 0.468749 +v -0.009021 0.144532 0.460912 +v -0.009021 0.144532 0.468749 +v -0.004510 0.152344 0.468749 +v -0.004510 0.152344 0.460912 +v 0.004510 0.152344 0.460912 +v 0.009021 0.144532 0.460912 +v 0.004510 0.136720 0.460912 +v -0.004510 0.136720 0.460912 +v -0.004510 0.136720 0.468749 +v 0.004510 0.152344 0.468749 +v 0.009021 0.144532 0.468749 +v 0.004510 0.136720 0.468749 +v 0.125000 0.012312 -0.000000 +v -0.120197 0.036461 0.000000 +v -0.110774 0.059210 -0.000000 +v -0.097094 0.079683 -0.000000 +v -0.036461 0.120197 -0.000000 +v -0.059210 0.110774 -0.000000 +v -0.079683 0.097094 -0.000000 +v 0.036461 0.120197 -0.000000 +v -0.125000 -0.012311 0.000000 +v 0.059210 0.110774 -0.000000 +v 0.079683 0.097094 -0.000000 +v 0.097094 0.079683 -0.000000 +v 0.110774 0.059210 -0.000000 +v 0.120197 0.036461 0.000000 +v -0.125000 0.012312 0.000000 +v -0.012311 0.125000 -0.000000 +v 0.012312 0.125000 -0.000000 +v 0.125000 -0.012312 0.000000 +v 0.000000 0.125000 -0.000000 +v 0.125000 0.000000 0.000000 +v -0.125000 0.000000 0.012312 +v -0.038455 -0.187500 -0.126770 +v -0.012985 -0.187500 -0.131837 +v 0.012984 -0.187500 -0.131837 +v 0.038455 -0.187500 -0.126770 +v 0.062448 -0.187500 -0.116832 +v 0.084041 -0.187500 -0.102404 +v 0.102404 -0.187500 -0.084041 +v 0.116832 -0.187500 -0.062448 +v 0.126770 -0.187500 -0.038455 +v 0.131837 -0.187500 -0.012985 +v 0.131837 -0.187500 0.012985 +v 0.116832 -0.187500 0.062448 +v 0.102404 -0.187500 0.084041 +v 0.084041 -0.187500 0.102404 +v 0.062448 -0.187500 0.116832 +v 0.038455 -0.187500 0.126770 +v 0.012985 -0.187500 0.131836 +v -0.012985 -0.187500 0.131836 +v -0.038455 -0.187500 0.126770 +v -0.062448 -0.187500 0.116832 +v -0.102404 -0.187500 0.084041 +v -0.084041 -0.187500 0.102404 +v -0.116832 -0.187500 0.062448 +v -0.126770 -0.187500 0.038455 +v -0.131837 -0.187500 -0.012985 +v -0.116832 -0.187500 -0.062448 +v -0.126770 -0.187500 -0.038455 +v -0.102404 -0.187500 -0.084041 +v -0.084041 -0.187500 -0.102404 +v -0.062448 -0.187500 -0.116832 +v 0.126770 -0.187500 0.038455 +v -0.131836 -0.187500 0.012985 +v -0.059210 -0.156251 -0.110774 +v -0.036461 -0.156251 -0.120197 +v -0.012312 -0.156251 -0.125001 +v 0.012311 -0.156251 -0.125001 +v 0.036461 -0.156251 -0.120197 +v 0.059210 -0.156251 -0.110774 +v 0.079683 -0.156251 -0.097094 +v 0.097094 -0.156251 -0.079683 +v 0.110774 -0.156251 -0.059210 +v 0.120197 -0.156251 -0.036461 +v 0.125001 -0.156251 -0.012312 +v 0.125000 -0.156251 0.012311 +v 0.120197 -0.156251 0.036461 +v 0.110774 -0.156251 0.059210 +v 0.097094 -0.156251 0.079683 +v 0.079683 -0.156251 0.097094 +v 0.059210 -0.156251 0.110774 +v 0.036461 -0.156251 0.120197 +v 0.012311 -0.156251 0.125000 +v -0.012311 -0.156251 0.125000 +v -0.036461 -0.156251 0.120197 +v -0.059210 -0.156251 0.110774 +v -0.079683 -0.156251 0.097094 +v -0.097094 -0.156251 0.079683 +v -0.110774 -0.156251 0.059210 +v -0.120197 -0.156251 0.036461 +v -0.125000 -0.156251 0.012311 +v -0.125000 -0.156251 -0.012311 +v -0.120197 -0.156251 -0.036461 +v -0.110774 -0.156251 -0.059210 +v -0.097094 -0.156251 -0.079683 +v -0.079683 -0.156251 -0.097094 +v 0.125000 -0.012312 -0.012312 +v -0.125000 -0.012312 -0.012312 +v 0.121367 -0.312500 -0.099603 +v 0.138467 -0.312500 -0.074012 +v 0.150245 -0.312500 -0.045577 +v 0.156250 -0.312500 -0.015390 +v 0.156250 -0.312500 0.015389 +v 0.150245 -0.312500 0.045576 +v 0.138467 -0.312500 0.074012 +v 0.121367 -0.312500 0.099603 +v 0.099603 -0.312500 0.121367 +v 0.045576 -0.312500 0.150245 +v -0.015389 -0.312500 0.156249 +v -0.045576 -0.312500 0.150245 +v -0.099603 -0.312500 0.121367 +v -0.121367 -0.312500 0.099603 +v -0.138467 -0.312500 0.074012 +v -0.150245 -0.312500 0.045576 +v -0.156250 -0.312500 0.015389 +v -0.150245 -0.312500 -0.045576 +v -0.138467 -0.312500 -0.074012 +v -0.121367 -0.312500 -0.099603 +v -0.074012 -0.312500 -0.138467 +v -0.015389 -0.312500 -0.156250 +v 0.015389 -0.312500 -0.156250 +v 0.045576 -0.312500 -0.150245 +v 0.074012 -0.312500 -0.138467 +v 0.099603 -0.312500 -0.121367 +v 0.074012 -0.312500 0.138466 +v 0.015389 -0.312500 0.156249 +v -0.074012 -0.312500 0.138467 +v -0.156250 -0.312500 -0.015389 +v -0.099603 -0.312500 -0.121367 +v -0.045576 -0.312500 -0.150245 +v 0.121367 -0.187500 -0.099603 +v 0.099603 -0.187500 -0.121367 +v 0.138467 -0.187500 -0.074012 +v 0.150245 -0.187500 -0.045577 +v 0.156250 -0.187500 -0.015390 +v 0.156250 -0.187500 0.015389 +v 0.150245 -0.187500 0.045576 +v 0.138467 -0.187500 0.074012 +v 0.121367 -0.187500 0.099603 +v 0.099603 -0.187500 0.121367 +v 0.074012 -0.187500 0.138466 +v 0.045576 -0.187500 0.150245 +v 0.015389 -0.187500 0.156249 +v -0.015389 -0.187500 0.156249 +v -0.045576 -0.187500 0.150245 +v -0.074012 -0.187500 0.138467 +v -0.099603 -0.187500 0.121367 +v -0.121367 -0.187500 0.099603 +v -0.138467 -0.187500 0.074012 +v -0.150245 -0.187500 0.045576 +v -0.156250 -0.187500 0.015389 +v -0.156250 -0.187500 -0.015389 +v -0.138467 -0.187500 -0.074012 +v -0.150245 -0.187500 -0.045576 +v -0.121367 -0.187500 -0.099604 +v -0.099603 -0.187500 -0.121367 +v -0.074012 -0.187500 -0.138467 +v -0.045576 -0.187500 -0.150245 +v 0.015389 -0.187500 -0.156250 +v -0.015389 -0.187500 -0.156250 +v 0.045576 -0.187500 -0.150245 +v 0.074012 -0.187500 -0.138467 +v 0.125000 -0.000000 -0.012312 +v -0.120197 0.000000 -0.036461 +v -0.110774 -0.000000 -0.059210 +v -0.097094 0.000000 -0.079683 +v -0.036461 -0.000000 -0.120197 +v -0.059210 -0.000000 -0.110774 +v -0.079683 -0.000000 -0.097094 +v 0.036461 -0.000000 -0.120197 +v 0.059210 -0.000000 -0.110774 +v 0.079683 -0.000000 -0.097094 +v 0.097094 -0.000000 -0.079683 +v 0.110774 -0.000000 -0.059210 +v 0.120197 0.000000 -0.036461 +v -0.125000 0.000000 -0.012312 +v -0.012311 -0.000000 -0.125000 +v 0.012312 -0.000000 -0.125000 +v 0.125000 0.000000 0.012312 +v 0.000000 -0.000000 -0.125000 +v 0.125000 0.002402 -0.012075 +v -0.120197 0.007113 -0.035761 +v -0.110774 0.011551 -0.058072 +v -0.097094 0.015545 -0.078152 +v -0.036461 0.023449 -0.117887 +v -0.059210 0.021611 -0.108646 +v -0.079683 0.018942 -0.095229 +v 0.036461 0.023449 -0.117887 +v 0.059210 0.021611 -0.108645 +v 0.079683 0.018942 -0.095228 +v 0.097094 0.015545 -0.078152 +v 0.110774 0.011551 -0.058072 +v 0.120197 0.007113 -0.035761 +v -0.125000 0.002402 -0.012075 +v -0.012311 0.024386 -0.122599 +v 0.012312 0.024386 -0.122599 +v 0.000000 0.024386 -0.122599 +v 0.125000 0.004711 -0.011375 +v -0.120197 0.013953 -0.033686 +v -0.110774 0.022659 -0.054703 +v -0.097094 0.030493 -0.073618 +v -0.036461 0.045997 -0.111047 +v -0.059210 0.042391 -0.102342 +v -0.079683 0.037156 -0.089703 +v 0.036461 0.045997 -0.111047 +v 0.059210 0.042391 -0.102342 +v 0.079683 0.037156 -0.089703 +v 0.097094 0.030493 -0.073618 +v 0.110774 0.022659 -0.054703 +v 0.120197 0.013953 -0.033686 +v -0.125000 0.004711 -0.011374 +v -0.012311 0.047836 -0.115485 +v 0.012312 0.047835 -0.115485 +v 0.000000 0.047836 -0.115485 +v 0.125000 0.006840 -0.010237 +v -0.120197 0.020257 -0.030317 +v -0.110774 0.032895 -0.049231 +v -0.097094 0.044270 -0.066254 +v -0.036461 0.066778 -0.099940 +v -0.059210 0.061543 -0.092105 +v -0.079683 0.053943 -0.080731 +v 0.036461 0.066778 -0.099940 +v 0.059210 0.061543 -0.092105 +v 0.079683 0.053943 -0.080731 +v 0.097094 0.044270 -0.066254 +v 0.110774 0.032895 -0.049231 +v 0.120197 0.020257 -0.030317 +v -0.125000 0.006840 -0.010237 +v -0.012311 0.069446 -0.103934 +v 0.012312 0.069446 -0.103934 +v 0.000000 0.069446 -0.103934 +v 0.125000 0.008706 -0.008706 +v -0.120197 0.025782 -0.025782 +v -0.110774 0.041868 -0.041868 +v -0.097094 0.056345 -0.056345 +v -0.036461 0.084992 -0.084992 +v -0.059210 0.078329 -0.078329 +v -0.079683 0.068656 -0.068656 +v 0.036461 0.084992 -0.084992 +v 0.059210 0.078329 -0.078329 +v 0.079683 0.068656 -0.068656 +v 0.097094 0.056345 -0.056345 +v 0.110774 0.041868 -0.041868 +v 0.120197 0.025782 -0.025782 +v -0.125000 0.008706 -0.008706 +v -0.012311 0.088389 -0.088389 +v 0.012312 0.088389 -0.088389 +v 0.000000 0.088389 -0.088389 +v -0.125000 0.000000 0.000000 +v 0.125000 0.010237 -0.006840 +v -0.120197 0.030317 -0.020257 +v -0.110774 0.049231 -0.032895 +v -0.097094 0.066254 -0.044270 +v -0.036461 0.099940 -0.066778 +v -0.059210 0.092105 -0.061543 +v -0.079683 0.080731 -0.053943 +v 0.036461 0.099940 -0.066778 +v 0.059210 0.092105 -0.061543 +v 0.079683 0.080731 -0.053943 +v 0.097094 0.066254 -0.044270 +v 0.110774 0.049231 -0.032895 +v 0.120197 0.030317 -0.020257 +v -0.125000 0.010237 -0.006840 +v -0.012311 0.103934 -0.069447 +v 0.012312 0.103934 -0.069447 +v 0.000000 0.103934 -0.069447 +v 0.125000 0.011375 -0.004712 +v -0.120197 0.033686 -0.013953 +v -0.110774 0.054703 -0.022659 +v -0.097094 0.073618 -0.030493 +v -0.036461 0.111047 -0.045997 +v -0.059210 0.102342 -0.042391 +v -0.079683 0.089703 -0.037156 +v 0.036461 0.111047 -0.045997 +v 0.059210 0.102342 -0.042391 +v 0.079683 0.089703 -0.037156 +v 0.097094 0.073618 -0.030493 +v 0.110774 0.054703 -0.022659 +v 0.120197 0.033686 -0.013953 +v -0.125000 0.011374 -0.004711 +v -0.012311 0.115485 -0.047836 +v 0.012312 0.115485 -0.047836 +v 0.000000 0.115485 -0.047836 +v 0.125000 0.012075 -0.002402 +v -0.120197 0.035761 -0.007113 +v -0.110774 0.058072 -0.011551 +v -0.097094 0.078152 -0.015545 +v -0.036461 0.117887 -0.023449 +v -0.059210 0.108646 -0.021611 +v -0.079683 0.095229 -0.018942 +v 0.036461 0.117887 -0.023449 +v 0.059210 0.108645 -0.021611 +v 0.079683 0.095229 -0.018942 +v 0.097094 0.078152 -0.015545 +v 0.110774 0.058072 -0.011551 +v 0.120197 0.035761 -0.007113 +v -0.125000 0.012075 -0.002402 +v -0.012311 0.122599 -0.024387 +v 0.012312 0.122599 -0.024387 +v 0.000000 0.122599 -0.024387 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.5936 0.6717 +vt 0.6238 0.6777 +vt 0.6523 0.6895 +vt 0.6779 0.7066 +vt 0.6996 0.7283 +vt 0.7167 0.7539 +vt 0.7285 0.7824 +vt 0.7345 0.8126 +vt 0.7345 0.8434 +vt 0.7285 0.8735 +vt 0.7167 0.9020 +vt 0.6996 0.9276 +vt 0.6779 0.9493 +vt 0.6523 0.9664 +vt 0.6238 0.9782 +vt 0.5936 0.9842 +vt 0.5629 0.9842 +vt 0.5327 0.9782 +vt 0.5042 0.9664 +vt 0.4786 0.9493 +vt 0.4569 0.9276 +vt 0.4398 0.9020 +vt 0.4280 0.8735 +vt 0.4220 0.8434 +vt 0.4220 0.8126 +vt 0.4280 0.7824 +vt 0.4398 0.7539 +vt 0.4569 0.7283 +vt 0.4786 0.7066 +vt 0.5042 0.6895 +vt 0.5327 0.6777 +vt 0.5629 0.6717 +vt 0.1605 0.6895 +vt 0.1349 0.7066 +vt 0.1131 0.7283 +vt 0.0960 0.7539 +vt 0.0842 0.7824 +vt 0.0782 0.8126 +vt 0.0782 0.8434 +vt 0.0842 0.8735 +vt 0.0960 0.9020 +vt 0.1131 0.9276 +vt 0.1349 0.9493 +vt 0.1605 0.9664 +vt 0.1889 0.9782 +vt 0.2191 0.9842 +vt 0.2499 0.9842 +vt 0.2801 0.9782 +vt 0.3085 0.9664 +vt 0.3341 0.9493 +vt 0.3559 0.9276 +vt 0.3730 0.9020 +vt 0.3848 0.8735 +vt 0.3908 0.8434 +vt 0.3908 0.8126 +vt 0.3848 0.7824 +vt 0.3730 0.7539 +vt 0.3559 0.7283 +vt 0.3341 0.7066 +vt 0.3085 0.6895 +vt 0.2801 0.6777 +vt 0.2499 0.6717 +vt 0.2191 0.6717 +vt 0.1889 0.6777 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.4569 0.9276 +vt 0.4786 0.9493 +vt 0.5042 0.9664 +vt 0.5327 0.9782 +vt 0.5629 0.9842 +vt 0.5936 0.9842 +vt 0.6238 0.9782 +vt 0.6523 0.9664 +vt 0.6779 0.9493 +vt 0.6996 0.9276 +vt 0.7167 0.9020 +vt 0.7285 0.8735 +vt 0.7345 0.8434 +vt 0.7345 0.8126 +vt 0.7285 0.7824 +vt 0.7167 0.7539 +vt 0.6996 0.7283 +vt 0.6779 0.7066 +vt 0.6523 0.6895 +vt 0.6238 0.6777 +vt 0.5936 0.6717 +vt 0.5629 0.6717 +vt 0.5327 0.6777 +vt 0.5042 0.6895 +vt 0.4786 0.7066 +vt 0.4569 0.7283 +vt 0.4398 0.7539 +vt 0.4280 0.7824 +vt 0.4220 0.8126 +vt 0.4220 0.8434 +vt 0.4280 0.8735 +vt 0.4398 0.9020 +vt 0.2801 0.6777 +vt 0.3085 0.6895 +vt 0.3341 0.7066 +vt 0.3559 0.7283 +vt 0.3730 0.7539 +vt 0.3848 0.7824 +vt 0.3908 0.8126 +vt 0.3908 0.8434 +vt 0.3848 0.8735 +vt 0.3730 0.9020 +vt 0.3559 0.9276 +vt 0.3341 0.9493 +vt 0.3085 0.9664 +vt 0.2801 0.9782 +vt 0.2499 0.9842 +vt 0.2191 0.9842 +vt 0.1889 0.9782 +vt 0.1605 0.9664 +vt 0.1349 0.9493 +vt 0.1131 0.9276 +vt 0.0960 0.9020 +vt 0.0842 0.8735 +vt 0.0782 0.8434 +vt 0.0782 0.8126 +vt 0.0842 0.7824 +vt 0.0960 0.7539 +vt 0.1131 0.7283 +vt 0.1349 0.7066 +vt 0.1605 0.6895 +vt 0.1889 0.6777 +vt 0.2191 0.6717 +vt 0.2499 0.6717 +vt 0.7799 0.2569 +vt 0.7643 0.2569 +vt 0.7487 0.2569 +vt 0.7488 0.0330 +vt 0.7796 0.0330 +vt 0.8111 0.2442 +vt 0.8104 0.0330 +vt 0.8423 0.2323 +vt 0.8412 0.0331 +vt 0.7487 0.2633 +vt 0.7175 0.2633 +vt 0.7180 0.0330 +vt 0.8735 0.2215 +vt 0.8721 0.0331 +vt 0.6863 0.2633 +vt 0.6872 0.0330 +vt 0.9028 0.0332 +vt 0.9046 0.2124 +vt 0.7488 0.0188 +vt 0.7180 0.0189 +vt 0.7796 0.0188 +vt 0.8105 0.0188 +vt 0.1560 0.2211 +vt 0.1247 0.2118 +vt 0.1297 0.0310 +vt 0.1609 0.0312 +vt 0.6873 0.0189 +vt 0.8414 0.0188 +vt 0.9358 0.2051 +vt 0.9335 0.0333 +vt 0.6566 0.0188 +vt 0.6565 0.0330 +vt 0.8723 0.0188 +vt 0.9669 0.2001 +vt 0.9639 0.0336 +vt 0.6240 0.2633 +vt 0.6257 0.0329 +vt 0.6551 0.2633 +vt 0.6258 0.0187 +vt 0.6875 0.5898 +vt 0.6875 0.5664 +vt 0.7188 0.5664 +vt 0.7188 0.5898 +vt 0.7812 0.5898 +vt 0.7812 0.5664 +vt 0.8125 0.5664 +vt 0.8125 0.5898 +vt 0.9033 0.0189 +vt 0.6562 0.5898 +vt 0.6562 0.5664 +vt 0.5950 0.0186 +vt 0.5949 0.0328 +vt 0.8438 0.5664 +vt 0.8438 0.5898 +vt 0.9343 0.0191 +vt 0.6250 0.5898 +vt 0.6250 0.5664 +vt 0.0309 0.1970 +vt -0.0002 0.1968 +vt 0.0044 0.0313 +vt 0.0356 0.0310 +vt 0.5305 0.2632 +vt 0.5332 0.0327 +vt 0.5640 0.0328 +vt 0.5617 0.2632 +vt 0.5642 0.0185 +vt 0.5938 0.5898 +vt 0.5938 0.5664 +vt 0.9653 0.0194 +vt 0.5312 0.5898 +vt 0.5312 0.5664 +vt 0.5625 0.5664 +vt 0.5625 0.5898 +vt 0.5333 0.0184 +vt 0.8750 0.5664 +vt 0.8750 0.5898 +vt 0.9963 0.0201 +vt 0.9937 0.0340 +vt 0.5000 0.5898 +vt 0.5000 0.5664 +vt 0.0935 0.2046 +vt 0.0622 0.1996 +vt 0.0671 0.0309 +vt 0.0985 0.0309 +vt 0.4993 0.2632 +vt 0.4682 0.2632 +vt 0.4714 0.0325 +vt 0.5023 0.0326 +vt 0.5024 0.0183 +vt 0.9062 0.5664 +vt 0.9062 0.5898 +vt 0.0349 0.0164 +vt 0.0026 0.0168 +vt 0.4688 0.5898 +vt 0.4688 0.5664 +vt 0.4058 0.2631 +vt 0.3746 0.2631 +vt 0.3786 0.0321 +vt 0.4095 0.0323 +vt 0.4716 0.0182 +vt 0.9375 0.5664 +vt 0.9375 0.5898 +vt 0.0670 0.0163 +vt 0.4375 0.5898 +vt 0.4375 0.5664 +vt 0.4407 0.0181 +vt 0.4405 0.0324 +vt 0.9688 0.5664 +vt 0.9688 0.5898 +vt 0.0987 0.0163 +vt 0.4062 0.5898 +vt 0.4062 0.5664 +vt 0.4098 0.0180 +vt 0.0000 0.5898 +vt 0.0000 0.5664 +vt 0.0312 0.5664 +vt 0.0312 0.5898 +vt 0.1301 0.0166 +vt 1.0000 0.5664 +vt 1.0000 0.5898 +vt 0.2497 0.2566 +vt 0.2545 0.0315 +vt 0.2856 0.0317 +vt 0.2809 0.2566 +vt 0.2653 0.2566 +vt 0.3788 0.0179 +vt 0.0625 0.5664 +vt 0.0625 0.5898 +vt 0.7500 0.5664 +vt 0.7500 0.5898 +vt 0.1612 0.0167 +vt 0.3750 0.5898 +vt 0.3750 0.5664 +vt 0.1921 0.0312 +vt 0.1873 0.2319 +vt 0.3122 0.2631 +vt 0.2809 0.2630 +vt 0.3166 0.0319 +vt 0.3479 0.0177 +vt 0.3476 0.0320 +vt 0.0937 0.5664 +vt 0.0938 0.5898 +vt 0.1924 0.0168 +vt 0.3438 0.5898 +vt 0.3438 0.5664 +vt 0.3169 0.0175 +vt 0.0938 0.5664 +vt 0.1250 0.5664 +vt 0.1250 0.5898 +vt 0.2237 0.0170 +vt 0.2233 0.0314 +vt 0.3125 0.5898 +vt 0.3125 0.5664 +vt 0.2859 0.0174 +vt 0.1562 0.5664 +vt 0.1562 0.5898 +vt 0.2548 0.0172 +vt 0.2812 0.5898 +vt 0.2812 0.5664 +vt 0.2500 0.5898 +vt 0.2500 0.5664 +vt 0.1875 0.5664 +vt 0.1875 0.5898 +vt 0.2188 0.5898 +vt 0.2188 0.5664 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.7643 0.2633 +vt 0.5928 0.2633 +vt 0.4370 0.2632 +vt 0.2185 0.2439 +vt 0.5149 0.2632 +vt 0.9981 0.1975 +vt 0.3434 0.2631 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.2653 0.2630 +vt 0.7799 0.2633 +vt 0.2497 0.2630 +vt 0.4688 0.6406 +vt 0.4688 0.5625 +vt 0.5000 0.5625 +vt 0.5000 0.6406 +vt 0.4375 0.6406 +vt 0.4375 0.5625 +vt 0.4062 0.6406 +vt 0.4062 0.5625 +vt 0.3750 0.6406 +vt 0.3750 0.5625 +vt 0.3438 0.6406 +vt 0.3438 0.5625 +vt 0.3125 0.6406 +vt 0.3125 0.5625 +vt 0.2812 0.6406 +vt 0.2812 0.5625 +vt 0.2500 0.6406 +vt 0.2500 0.5625 +vt 0.2188 0.6406 +vt 0.2188 0.5625 +vt 0.1875 0.6406 +vt 0.1875 0.5625 +vt 0.1562 0.6406 +vt 0.1562 0.5625 +vt 0.1250 0.6406 +vt 0.1250 0.5625 +vt 0.0938 0.6406 +vt 0.0938 0.5625 +vt 0.0625 0.6406 +vt 0.0625 0.5625 +vt 0.0312 0.6406 +vt 0.0312 0.5625 +vt 0.0000 0.6406 +vt 0.0000 0.5625 +vt 0.9688 0.6406 +vt 0.9688 0.5625 +vt 1.0000 0.5625 +vt 1.0000 0.6406 +vt 0.9375 0.6406 +vt 0.9375 0.5625 +vt 0.9062 0.6406 +vt 0.9062 0.5625 +vt 0.8750 0.6406 +vt 0.8750 0.5625 +vt 0.8125 0.6406 +vt 0.8125 0.5625 +vt 0.8438 0.5625 +vt 0.8438 0.6406 +vt 0.7812 0.6406 +vt 0.7812 0.5625 +vt 0.7500 0.6406 +vt 0.7500 0.5625 +vt 0.7188 0.6406 +vt 0.7188 0.5625 +vt 0.6875 0.6406 +vt 0.6875 0.5625 +vt 0.6250 0.6406 +vt 0.6250 0.5625 +vt 0.6562 0.5625 +vt 0.6562 0.6406 +vt 0.5938 0.6406 +vt 0.5938 0.5625 +vt 0.5625 0.6406 +vt 0.5625 0.5625 +vt 0.4358 0.5179 +vt 0.4358 0.5107 +vt 0.4668 0.5107 +vt 0.4668 0.5179 +vt 0.4977 0.5179 +vt 0.4977 0.5107 +vt 0.5287 0.5179 +vt 0.5287 0.5107 +vt 0.5596 0.5178 +vt 0.5596 0.5107 +vt 0.5904 0.5179 +vt 0.5905 0.5107 +vt 0.6214 0.5179 +vt 0.6215 0.5107 +vt 0.6524 0.5107 +vt 0.6523 0.5179 +vt 0.6832 0.5180 +vt 0.6834 0.5108 +vt 0.7142 0.5180 +vt 0.7144 0.5108 +vt 0.7452 0.5181 +vt 0.7454 0.5108 +vt 0.7765 0.5109 +vt 0.7763 0.5181 +vt 0.8076 0.5109 +vt 0.8074 0.5181 +vt 0.8384 0.5181 +vt 0.8386 0.5109 +vt 0.8696 0.5109 +vt 0.8695 0.5181 +vt 0.9006 0.5109 +vt 0.9007 0.5181 +vt 0.9320 0.5181 +vt 0.9316 0.5109 +vt 0.9625 0.5108 +vt 0.9635 0.5180 +vt 0.9952 0.5178 +vt 0.9930 0.5106 +vt 0.0001 0.5177 +vt 0.0023 0.5106 +vt 0.0329 0.5107 +vt 0.0319 0.5180 +vt 0.0635 0.5181 +vt 0.0639 0.5108 +vt 0.0952 0.5109 +vt 0.0951 0.5181 +vt 0.1263 0.5108 +vt 0.1263 0.5181 +vt 0.1572 0.5108 +vt 0.1573 0.5180 +vt 0.1881 0.5108 +vt 0.1882 0.5180 +vt 0.2191 0.5108 +vt 0.2192 0.5179 +vt 0.2500 0.5107 +vt 0.2501 0.5179 +vt 0.3119 0.5179 +vt 0.2809 0.5179 +vt 0.2809 0.5107 +vt 0.3118 0.5107 +vt 0.3738 0.5179 +vt 0.3429 0.5179 +vt 0.3428 0.5107 +vt 0.3738 0.5107 +vt 0.4048 0.5179 +vt 0.4048 0.5107 +vt 0.5312 0.5625 +vt 0.5312 0.6406 +vt 0.8100 0.4042 +vt 0.8412 0.4103 +vt 0.8724 0.4157 +vt 0.5294 0.3946 +vt 0.4982 0.3945 +vt 0.5138 0.3945 +vt 0.2798 0.3977 +vt 0.2486 0.3977 +vt 0.2642 0.3977 +vt 0.2642 0.3945 +vt 0.2798 0.3945 +vt 0.7788 0.3979 +vt 0.6541 0.3946 +vt 0.6852 0.3946 +vt 0.1860 0.4101 +vt 0.2173 0.4041 +vt 0.3111 0.3945 +vt 0.3423 0.3945 +vt 0.4047 0.3945 +vt 0.3735 0.3945 +vt 0.5606 0.3946 +vt 0.9036 0.4203 +vt 0.1547 0.4155 +vt 0.4359 0.3945 +vt 0.6229 0.3946 +vt 0.7164 0.3946 +vt 0.7476 0.3946 +vt 0.7476 0.3979 +vt 0.7632 0.3979 +vt 0.9348 0.4240 +vt 0.9660 0.4265 +vt 0.9973 0.4278 +vt -0.0018 0.4276 +vt 0.0296 0.4276 +vt 0.0609 0.4263 +vt 0.0922 0.4238 +vt 0.1234 0.4201 +vt 0.4671 0.3945 +vt 0.5917 0.3946 +vt 0.7632 0.3946 +vt 0.3423 0.3945 +vt 0.3735 0.3945 +vt 0.6541 0.3946 +vt 0.6852 0.3946 +vt 0.7476 0.3946 +vt 0.4671 0.3945 +vt 0.4982 0.3945 +vt 0.7164 0.3946 +vt 0.2798 0.3945 +vt 0.4359 0.3945 +vt 0.4047 0.3945 +vt 0.5138 0.3945 +vt 0.5294 0.3946 +vt 0.6229 0.3946 +vt 0.5606 0.3946 +vt 0.3111 0.3945 +vt 0.5917 0.3946 +vt 0.6852 0.3946 +vt 0.7164 0.3946 +vt 0.4359 0.3945 +vt 0.4671 0.3945 +vt 0.7476 0.3946 +vt 0.4047 0.3945 +vt 0.5138 0.3945 +vt 0.5294 0.3946 +vt 0.6229 0.3946 +vt 0.6541 0.3946 +vt 0.3735 0.3945 +vt 0.4982 0.3945 +vt 0.5606 0.3946 +vt 0.2798 0.3945 +vt 0.3111 0.3945 +vt 0.5917 0.3946 +vt 0.3423 0.3945 +vt 0.6852 0.3946 +vt 0.7164 0.3946 +vt 0.4359 0.3945 +vt 0.4671 0.3945 +vt 0.7476 0.3946 +vt 0.4047 0.3945 +vt 0.5138 0.3945 +vt 0.5294 0.3946 +vt 0.6229 0.3946 +vt 0.6541 0.3946 +vt 0.3735 0.3945 +vt 0.4982 0.3945 +vt 0.5606 0.3946 +vt 0.2798 0.3945 +vt 0.3111 0.3945 +vt 0.5917 0.3946 +vt 0.3423 0.3945 +vt 0.6852 0.3946 +vt 0.7164 0.3946 +vt 0.4359 0.3945 +vt 0.4671 0.3945 +vt 0.7476 0.3946 +vt 0.4047 0.3945 +vt 0.5138 0.3945 +vt 0.5294 0.3946 +vt 0.6229 0.3946 +vt 0.6541 0.3946 +vt 0.3735 0.3945 +vt 0.4982 0.3945 +vt 0.5606 0.3946 +vt 0.2798 0.3945 +vt 0.3111 0.3945 +vt 0.5917 0.3946 +vt 0.3423 0.3945 +vt 0.6852 0.3946 +vt 0.7164 0.3946 +vt 0.4359 0.3945 +vt 0.4671 0.3945 +vt 0.7476 0.3946 +vt 0.4047 0.3945 +vt 0.5138 0.3945 +vt 0.5294 0.3946 +vt 0.6229 0.3946 +vt 0.6541 0.3946 +vt 0.3735 0.3945 +vt 0.4982 0.3945 +vt 0.5606 0.3946 +vt 0.2798 0.3945 +vt 0.3111 0.3945 +vt 0.5917 0.3946 +vt 0.3423 0.3945 +vt 0.6852 0.3946 +vt 0.7164 0.3946 +vt 0.4359 0.3945 +vt 0.4671 0.3945 +vt 0.7476 0.3946 +vt 0.4047 0.3945 +vt 0.5138 0.3945 +vt 0.5294 0.3946 +vt 0.6229 0.3946 +vt 0.6541 0.3946 +vt 0.3735 0.3945 +vt 0.4982 0.3945 +vt 0.5606 0.3946 +vt 0.2798 0.3945 +vt 0.3111 0.3945 +vt 0.5917 0.3946 +vt 0.3423 0.3945 +vt 0.6852 0.3946 +vt 0.7164 0.3946 +vt 0.4359 0.3945 +vt 0.4671 0.3945 +vt 0.7476 0.3946 +vt 0.4047 0.3945 +vt 0.5138 0.3945 +vt 0.5294 0.3946 +vt 0.6229 0.3946 +vt 0.6541 0.3946 +vt 0.3735 0.3945 +vt 0.4982 0.3945 +vt 0.5606 0.3946 +vt 0.2798 0.3945 +vt 0.3111 0.3945 +vt 0.5917 0.3946 +vt 0.3423 0.3945 +vt 0.6852 0.3946 +vt 0.7164 0.3946 +vt 0.4359 0.3945 +vt 0.4671 0.3945 +vt 0.7476 0.3946 +vt 0.4047 0.3945 +vt 0.5138 0.3945 +vt 0.5294 0.3946 +vt 0.6229 0.3946 +vt 0.6541 0.3946 +vt 0.3735 0.3945 +vt 0.4982 0.3945 +vt 0.5606 0.3946 +vt 0.2798 0.3945 +vt 0.3111 0.3945 +vt 0.5917 0.3946 +vt 0.3423 0.3945 +vn 0.0000 0.0000 -1.0000 +vn -0.0000 0.0000 1.0000 +vn 0.0000 1.0000 0.0000 +vn -0.0000 -1.0000 0.0000 +vn 0.9994 -0.0247 0.0247 +vn 1.0000 0.0000 0.0000 +vn 0.9952 0.0980 0.0000 +vn 0.9893 0.0974 -0.1087 +vn 0.9893 -0.0974 -0.1087 +vn 0.9844 -0.1243 0.1243 +vn 0.9513 -0.2886 -0.1087 +vn 0.9472 -0.2267 0.2267 +vn 0.8767 -0.4686 -0.1087 +vn 0.9948 0.1010 -0.0051 +vn 0.9560 0.2930 -0.0145 +vn 0.9513 0.2886 -0.1087 +vn 0.8819 -0.3333 0.3333 +vn 0.7684 -0.6306 -0.1087 +vn 0.8804 0.4736 -0.0234 +vn 0.8767 0.4686 -0.1087 +vn 0.6306 -0.7684 -0.1087 +vn 0.7793 -0.4431 0.4431 +vn 0.9720 0.0957 -0.2147 +vn 0.9346 0.2835 -0.2147 +vn 0.9720 -0.0957 -0.2147 +vn 0.9346 -0.2835 -0.2147 +vn -0.8819 -0.3333 0.3333 +vn -0.7793 -0.4431 0.4431 +vn -0.6306 -0.7684 -0.1087 +vn -0.7684 -0.6306 -0.1087 +vn 0.8614 0.4604 -0.2147 +vn 0.8614 -0.4604 -0.2147 +vn 0.6267 -0.5510 0.5510 +vn 0.4686 -0.8767 -0.1087 +vn 0.7550 0.6196 -0.2147 +vn 0.7684 0.6306 -0.1087 +vn 0.7550 -0.6196 -0.2147 +vn 0.4139 -0.6437 0.6437 +vn 0.2886 -0.9513 -0.1087 +vn 0.6324 0.7736 -0.0380 +vn 0.6306 0.7684 -0.1087 +vn 0.7711 0.6359 -0.0313 +vn 0.6196 0.7550 -0.2147 +vn 0.4617 -0.5626 -0.6857 +vn 0.4617 -0.5626 0.6857 +vn 0.3431 -0.6419 0.6857 +vn 0.3431 -0.6419 -0.6857 +vn 0.0713 -0.7244 -0.6857 +vn 0.0713 -0.7244 0.6857 +vn -0.0713 -0.7244 0.6857 +vn -0.0713 -0.7244 -0.6857 +vn 0.6196 -0.7550 -0.2147 +vn 0.5626 -0.4617 -0.6857 +vn 0.5626 -0.4617 0.6857 +vn 0.4604 0.8614 -0.2147 +vn 0.4686 0.8767 -0.1087 +vn -0.2113 -0.6965 0.6857 +vn -0.2113 -0.6965 -0.6857 +vn 0.4604 -0.8614 -0.2147 +vn 0.6419 -0.3431 -0.6857 +vn 0.6419 -0.3431 0.6857 +vn -0.1458 -0.6995 0.6995 +vn 0.1458 -0.6995 0.6995 +vn 0.0974 -0.9893 -0.1087 +vn -0.0974 -0.9893 -0.1087 +vn 0.0976 0.9940 -0.0487 +vn 0.0974 0.9893 -0.1087 +vn 0.2886 0.9513 -0.1087 +vn 0.2891 0.9561 -0.0468 +vn 0.2835 0.9346 -0.2147 +vn 0.6965 -0.2113 -0.6857 +vn 0.6965 -0.2113 0.6857 +vn 0.2835 -0.9346 -0.2147 +vn 0.7244 0.0713 -0.6857 +vn 0.7244 0.0713 0.6857 +vn 0.7244 -0.0713 0.6857 +vn 0.7244 -0.0713 -0.6857 +vn 0.0957 0.9720 -0.2147 +vn -0.3431 -0.6419 0.6857 +vn -0.3431 -0.6419 -0.6857 +vn 0.0957 -0.9720 -0.2147 +vn 0.6965 0.2113 -0.6857 +vn 0.6965 0.2113 0.6857 +vn -0.6267 -0.5510 0.5510 +vn -0.4139 -0.6437 0.6437 +vn -0.2886 -0.9513 -0.1087 +vn -0.4686 -0.8767 -0.1087 +vn -0.0976 0.9940 -0.0487 +vn -0.2891 0.9561 -0.0468 +vn -0.2886 0.9513 -0.1087 +vn -0.0974 0.9893 -0.1087 +vn -0.0957 0.9720 -0.2147 +vn -0.4617 -0.5626 0.6857 +vn -0.4617 -0.5626 -0.6857 +vn -0.0957 -0.9720 -0.2147 +vn 0.6419 0.3431 -0.6857 +vn 0.6419 0.3431 0.6857 +vn -0.6324 0.7736 -0.0380 +vn -0.7711 0.6359 -0.0313 +vn -0.7684 0.6306 -0.1087 +vn -0.6306 0.7684 -0.1087 +vn -0.2835 0.9346 -0.2147 +vn -0.5626 -0.4617 0.6857 +vn -0.5626 -0.4617 -0.6857 +vn -0.2835 -0.9346 -0.2147 +vn 0.5626 0.4617 -0.6857 +vn 0.5626 0.4617 0.6857 +vn -0.4604 0.8614 -0.2147 +vn -0.4686 0.8767 -0.1087 +vn -0.6419 -0.3431 0.6857 +vn -0.6419 -0.3431 -0.6857 +vn -0.4604 -0.8614 -0.2147 +vn 0.4617 0.5626 -0.6857 +vn 0.4617 0.5626 0.6857 +vn -0.6196 0.7550 -0.2147 +vn -0.6965 -0.2113 -0.6857 +vn -0.6965 -0.2113 0.6857 +vn -0.7244 -0.0713 0.6857 +vn -0.7244 -0.0713 -0.6857 +vn -0.6196 -0.7550 -0.2147 +vn -0.9994 -0.0247 0.0247 +vn -0.9893 -0.0974 -0.1087 +vn -0.9893 0.0974 -0.1087 +vn -0.9952 0.0980 0.0000 +vn -1.0000 0.0000 0.0000 +vn -0.7550 0.6196 -0.2147 +vn -0.7244 0.0713 0.6857 +vn -0.7244 0.0713 -0.6857 +vn 0.2113 -0.6965 0.6857 +vn 0.2113 -0.6965 -0.6857 +vn -0.7550 -0.6196 -0.2147 +vn 0.3431 0.6419 -0.6857 +vn 0.3431 0.6419 0.6857 +vn -0.8767 -0.4686 -0.1087 +vn -0.9472 -0.2267 0.2267 +vn -0.9560 0.2930 -0.0145 +vn -0.9948 0.1010 -0.0051 +vn -0.9513 0.2886 -0.1087 +vn -0.8614 0.4604 -0.2147 +vn -0.8767 0.4686 -0.1087 +vn -0.6965 0.2113 0.6857 +vn -0.6965 0.2113 -0.6857 +vn -0.8614 -0.4604 -0.2147 +vn 0.2113 0.6965 -0.6857 +vn 0.2113 0.6965 0.6857 +vn -0.9346 0.2835 -0.2147 +vn -0.6419 0.3431 0.6857 +vn -0.6419 0.3431 -0.6857 +vn -0.9346 -0.2835 -0.2147 +vn -0.9513 -0.2886 -0.1087 +vn 0.0713 0.7244 -0.6857 +vn 0.0713 0.7244 0.6857 +vn -0.9720 0.0957 -0.2147 +vn -0.5626 0.4617 0.6857 +vn -0.5626 0.4617 -0.6857 +vn -0.9720 -0.0957 -0.2147 +vn -0.0713 0.7244 -0.6857 +vn -0.0713 0.7244 0.6857 +vn -0.2113 0.6965 -0.6857 +vn -0.2113 0.6965 0.6857 +vn -0.4617 0.5626 0.6857 +vn -0.4617 0.5626 -0.6857 +vn -0.3431 0.6419 -0.6857 +vn -0.3431 0.6419 0.6857 +vn -0.7321 -0.3032 -0.6100 +vn -0.9239 -0.3827 0.0000 +vn -0.7933 0.6088 0.0000 +vn -0.6287 0.4824 -0.6100 +vn -0.1034 -0.7856 -0.6100 +vn -0.1305 -0.9914 0.0000 +vn 0.1305 0.9914 0.0000 +vn 0.1034 0.7856 -0.6100 +vn 0.9239 0.3827 0.0000 +vn 0.7321 0.3032 -0.6100 +vn 0.7933 -0.6088 0.0000 +vn 0.6287 -0.4824 -0.6100 +vn -0.3032 -0.7321 -0.6100 +vn -0.3827 -0.9239 0.0000 +vn -0.9914 -0.1305 0.0000 +vn -0.7856 -0.1034 -0.6100 +vn 0.4824 -0.6287 -0.6100 +vn 0.6088 -0.7933 0.0000 +vn -0.6088 0.7933 0.0000 +vn -0.4824 0.6287 -0.6100 +vn 0.3827 0.9239 0.0000 +vn 0.3032 0.7321 -0.6100 +vn 0.9914 0.1305 0.0000 +vn 0.7856 0.1034 -0.6100 +vn 0.3032 -0.7321 -0.6100 +vn 0.3827 -0.9239 0.0000 +vn -0.6088 -0.7933 0.0000 +vn -0.4824 -0.6287 -0.6100 +vn 0.7856 -0.1034 -0.6100 +vn 0.9914 -0.1305 0.0000 +vn -0.9914 0.1305 0.0000 +vn -0.7856 0.1034 -0.6100 +vn -0.3827 0.9239 0.0000 +vn -0.3032 0.7321 -0.6100 +vn 0.6088 0.7933 0.0000 +vn 0.4824 0.6287 -0.6100 +vn 0.7321 -0.3032 -0.6100 +vn 0.9239 -0.3827 0.0000 +vn 0.1305 -0.9914 0.0000 +vn 0.1034 -0.7856 -0.6100 +vn 0.6287 0.4824 -0.6100 +vn 0.7933 0.6088 0.0000 +vn -0.7933 -0.6088 0.0000 +vn -0.6287 -0.4824 -0.6100 +vn -0.9239 0.3827 0.0000 +vn -0.7321 0.3032 -0.6100 +vn -0.1305 0.9914 0.0000 +vn -0.1034 0.7856 -0.6100 +vn 0.4697 0.8817 -0.0432 +vn -0.4697 0.8817 -0.0432 +vn -0.9844 -0.1243 0.1243 +vn 0.0000 0.9988 -0.0490 +vn -0.8804 0.4736 -0.0234 +vn -0.5603 -0.5603 -0.6100 +vn -0.7071 -0.7071 0.0000 +vn -0.9659 0.2588 0.0000 +vn -0.7654 0.2051 -0.6100 +vn 0.2051 -0.7654 -0.6100 +vn 0.2588 -0.9659 0.0000 +vn -0.2588 0.9659 0.0000 +vn -0.2051 0.7654 -0.6100 +vn 0.7071 0.7071 0.0000 +vn 0.5603 0.5603 -0.6100 +vn 0.9659 -0.2588 0.0000 +vn 0.7654 -0.2051 -0.6100 +vn 0.0000 -0.7924 -0.6100 +vn -0.8660 -0.5000 0.0000 +vn -0.6862 -0.3962 -0.6100 +vn 0.6862 -0.3962 -0.6100 +vn 0.8660 -0.5000 0.0000 +vn -0.8660 0.5000 0.0000 +vn -0.6862 0.3962 -0.6100 +vn 0.0000 0.7924 -0.6100 +vn 0.8660 0.5000 0.0000 +vn 0.6862 0.3962 -0.6100 +vn 0.5603 -0.5603 -0.6100 +vn 0.7071 -0.7071 0.0000 +vn -0.2588 -0.9659 0.0000 +vn -0.2051 -0.7654 -0.6100 +vn 0.7654 0.2051 -0.6100 +vn 0.9659 0.2588 0.0000 +vn -0.9659 -0.2588 0.0000 +vn -0.7654 -0.2051 -0.6100 +vn -0.7071 0.7071 0.0000 +vn -0.5603 0.5603 -0.6100 +vn 0.2588 0.9659 0.0000 +vn 0.2051 0.7654 -0.6100 +vn 0.7924 0.0000 -0.6100 +vn 0.5000 -0.8660 0.0000 +vn 0.3962 -0.6862 -0.6100 +vn 0.3962 0.6862 -0.6100 +vn 0.5000 0.8660 0.0000 +vn -0.5000 -0.8660 0.0000 +vn -0.3962 -0.6862 -0.6100 +vn -0.7924 0.0000 -0.6100 +vn -0.5000 0.8660 0.0000 +vn -0.3962 0.6862 -0.6100 +vn 0.6965 0.6857 -0.2113 +vn 0.6965 -0.6857 -0.2113 +vn 0.6419 -0.6857 -0.3431 +vn 0.6419 0.6857 -0.3431 +vn 0.7244 0.6857 -0.0713 +vn 0.7244 -0.6857 -0.0713 +vn 0.7244 0.6857 0.0713 +vn 0.7244 -0.6857 0.0713 +vn 0.6965 0.6857 0.2113 +vn 0.6965 -0.6857 0.2113 +vn 0.6419 0.6857 0.3431 +vn 0.6419 -0.6857 0.3431 +vn 0.5626 0.6857 0.4617 +vn 0.5626 -0.6857 0.4617 +vn 0.4617 0.6857 0.5626 +vn 0.4617 -0.6857 0.5626 +vn 0.3431 0.6857 0.6419 +vn 0.3431 -0.6857 0.6419 +vn 0.2113 0.6857 0.6965 +vn 0.2113 -0.6857 0.6965 +vn 0.0713 0.6857 0.7244 +vn 0.0713 -0.6857 0.7244 +vn -0.0713 0.6857 0.7244 +vn -0.0713 -0.6857 0.7244 +vn -0.2113 0.6857 0.6965 +vn -0.2113 -0.6857 0.6965 +vn -0.3431 0.6857 0.6419 +vn -0.3431 -0.6857 0.6419 +vn -0.4617 0.6857 0.5626 +vn -0.4617 -0.6857 0.5626 +vn -0.5626 0.6857 0.4617 +vn -0.5626 -0.6857 0.4617 +vn -0.6419 0.6857 0.3431 +vn -0.6419 -0.6857 0.3431 +vn -0.6965 0.6857 0.2113 +vn -0.6965 -0.6857 0.2113 +vn -0.7244 0.6857 0.0713 +vn -0.7244 -0.6857 0.0713 +vn -0.7244 0.6857 -0.0713 +vn -0.7244 -0.6857 -0.0713 +vn -0.6965 0.6857 -0.2113 +vn -0.6965 -0.6857 -0.2113 +vn -0.5626 0.6857 -0.4617 +vn -0.5626 -0.6857 -0.4617 +vn -0.6419 -0.6857 -0.3431 +vn -0.6419 0.6857 -0.3431 +vn -0.4617 0.6857 -0.5626 +vn -0.4617 -0.6857 -0.5626 +vn -0.3431 0.6857 -0.6419 +vn -0.3431 -0.6857 -0.6419 +vn -0.2113 0.6857 -0.6965 +vn -0.2113 -0.6857 -0.6965 +vn -0.0713 0.6857 -0.7244 +vn -0.0713 -0.6857 -0.7244 +vn 0.2113 0.6857 -0.6965 +vn 0.2113 -0.6857 -0.6965 +vn 0.0713 -0.6857 -0.7244 +vn 0.0713 0.6857 -0.7244 +vn 0.3431 0.6857 -0.6419 +vn 0.3431 -0.6857 -0.6419 +vn 0.4617 0.6857 -0.5626 +vn 0.4617 -0.6857 -0.5626 +vn -0.4604 0.2147 -0.8614 +vn -0.4686 0.1087 -0.8767 +vn -0.2886 0.1087 -0.9513 +vn -0.2835 0.2147 -0.9346 +vn -0.0957 0.2147 -0.9720 +vn -0.0974 0.1087 -0.9893 +vn 0.0957 0.2147 -0.9720 +vn 0.0974 0.1087 -0.9893 +vn 0.2835 0.2147 -0.9346 +vn 0.2886 0.1087 -0.9513 +vn 0.4604 0.2147 -0.8614 +vn 0.4686 0.1087 -0.8767 +vn 0.6196 0.2147 -0.7550 +vn 0.6306 0.1087 -0.7684 +vn 0.7684 0.1087 -0.6306 +vn 0.7550 0.2147 -0.6196 +vn 0.8614 0.2147 -0.4604 +vn 0.8767 0.1087 -0.4686 +vn 0.9346 0.2147 -0.2835 +vn 0.9513 0.1087 -0.2886 +vn 0.9720 0.2147 -0.0957 +vn 0.9893 0.1087 -0.0974 +vn 0.9893 0.1087 0.0974 +vn 0.9720 0.2147 0.0957 +vn 0.9513 0.1087 0.2886 +vn 0.9346 0.2147 0.2835 +vn 0.8614 0.2147 0.4604 +vn 0.8767 0.1087 0.4686 +vn 0.7684 0.1087 0.6306 +vn 0.7550 0.2147 0.6196 +vn 0.6306 0.1087 0.7684 +vn 0.6196 0.2147 0.7550 +vn 0.4604 0.2147 0.8614 +vn 0.4686 0.1087 0.8767 +vn 0.2886 0.1087 0.9513 +vn 0.2835 0.2147 0.9346 +vn 0.0957 0.2147 0.9720 +vn 0.0974 0.1087 0.9893 +vn -0.0974 0.1087 0.9893 +vn -0.0957 0.2147 0.9720 +vn -0.2835 0.2147 0.9346 +vn -0.2886 0.1087 0.9513 +vn -0.4686 0.1087 0.8767 +vn -0.4604 0.2147 0.8614 +vn -0.6306 0.1087 0.7684 +vn -0.6196 0.2147 0.7550 +vn -0.7684 0.1087 0.6306 +vn -0.7550 0.2147 0.6196 +vn -0.8767 0.1087 0.4686 +vn -0.8614 0.2147 0.4604 +vn -0.9513 0.1087 0.2886 +vn -0.9346 0.2147 0.2835 +vn -0.9893 0.1087 0.0974 +vn -0.9720 0.2147 0.0957 +vn -0.9346 0.2147 -0.2835 +vn -0.9720 0.2147 -0.0957 +vn -0.9893 0.1087 -0.0974 +vn -0.9513 0.1087 -0.2886 +vn -0.7550 0.2147 -0.6196 +vn -0.8614 0.2147 -0.4604 +vn -0.8767 0.1087 -0.4686 +vn -0.7684 0.1087 -0.6306 +vn -0.6196 0.2147 -0.7550 +vn -0.6306 0.1087 -0.7684 +vn 0.5626 -0.6857 -0.4617 +vn 0.5626 0.6857 -0.4617 +vn 0.0976 0.0487 -0.9940 +vn -0.0976 0.0487 -0.9940 +vn 0.0000 0.0490 -0.9988 +vn -0.9952 0.0000 -0.0980 +vn -0.9948 0.0051 -0.1010 +vn 0.7711 0.0313 -0.6359 +vn 0.8804 0.0234 -0.4736 +vn -0.9560 0.0145 -0.2930 +vn -0.8804 0.0234 -0.4736 +vn -0.6324 0.0380 -0.7736 +vn -0.7711 0.0313 -0.6359 +vn 0.2891 0.0468 -0.9561 +vn -0.4697 0.0432 -0.8817 +vn 0.6324 0.0380 -0.7736 +vn 0.9560 0.0145 -0.2930 +vn 0.9948 0.0051 -0.1010 +vn 0.9952 0.0000 -0.0980 +vn -0.2891 0.0468 -0.9561 +vn 0.4697 0.0432 -0.8817 +vn -0.8794 0.0929 -0.4670 +vn -0.7700 0.1245 -0.6258 +vn 0.7700 0.1245 -0.6258 +vn 0.8794 0.0929 -0.4670 +vn 0.9946 0.0203 -0.1021 +vn -0.2886 0.1868 -0.9390 +vn -0.0974 0.1942 -0.9761 +vn 0.9552 0.0577 -0.2902 +vn -0.9946 0.0203 -0.1021 +vn -0.4689 0.1723 -0.8663 +vn -0.6314 0.1513 -0.7605 +vn 0.0000 0.1951 -0.9808 +vn 0.0974 0.1942 -0.9761 +vn 0.6314 0.1513 -0.7605 +vn 0.2886 0.1868 -0.9390 +vn -0.9552 0.0577 -0.2902 +vn 0.4689 0.1723 -0.8663 +vn 0.8794 0.1822 -0.4399 +vn 0.9552 0.1132 -0.2733 +vn -0.4689 0.3380 -0.8160 +vn -0.2886 0.3664 -0.8845 +vn 0.9946 0.0398 -0.0961 +vn -0.6314 0.2967 -0.7164 +vn 0.0000 0.3827 -0.9239 +vn 0.0974 0.3808 -0.9195 +vn 0.6314 0.2967 -0.7164 +vn 0.7700 0.2441 -0.5894 +vn -0.7700 0.2441 -0.5894 +vn -0.0974 0.3808 -0.9195 +vn 0.2886 0.3664 -0.8845 +vn -0.9946 0.0398 -0.0961 +vn -0.9552 0.1132 -0.2733 +vn 0.4689 0.3380 -0.8160 +vn -0.8794 0.1822 -0.4399 +vn 0.8794 0.2645 -0.3959 +vn 0.9552 0.1644 -0.2460 +vn -0.4689 0.4907 -0.7344 +vn -0.2886 0.5319 -0.7961 +vn 0.9946 0.0578 -0.0865 +vn -0.6314 0.4308 -0.6448 +vn 0.0000 0.5556 -0.8314 +vn 0.0974 0.5529 -0.8275 +vn 0.6314 0.4308 -0.6447 +vn 0.7700 0.3544 -0.5305 +vn -0.7700 0.3544 -0.5305 +vn -0.0974 0.5529 -0.8275 +vn 0.2886 0.5319 -0.7961 +vn -0.9946 0.0578 -0.0865 +vn -0.9552 0.1644 -0.2460 +vn 0.4689 0.4907 -0.7344 +vn -0.8794 0.2645 -0.3959 +vn 0.8794 0.3366 -0.3366 +vn 0.9552 0.2092 -0.2092 +vn -0.4689 0.6246 -0.6246 +vn -0.2886 0.6770 -0.6770 +vn 0.9946 0.0736 -0.0736 +vn -0.6314 0.5483 -0.5483 +vn 0.0000 0.7071 -0.7071 +vn 0.0974 0.7037 -0.7037 +vn 0.6314 0.5483 -0.5483 +vn 0.7700 0.4511 -0.4511 +vn -0.7700 0.4511 -0.4511 +vn -0.0974 0.7037 -0.7037 +vn 0.2886 0.6770 -0.6770 +vn -0.9946 0.0736 -0.0736 +vn -0.9552 0.2092 -0.2092 +vn 0.4689 0.6246 -0.6246 +vn -0.8794 0.3366 -0.3366 +vn 0.8794 0.3959 -0.2645 +vn 0.9552 0.2460 -0.1644 +vn -0.4689 0.7344 -0.4907 +vn -0.2886 0.7961 -0.5319 +vn 0.9946 0.0865 -0.0578 +vn -0.6314 0.6447 -0.4308 +vn 0.0000 0.8314 -0.5556 +vn 0.0974 0.8275 -0.5529 +vn 0.6314 0.6447 -0.4308 +vn 0.7700 0.5305 -0.3544 +vn -0.7700 0.5305 -0.3544 +vn -0.0974 0.8275 -0.5529 +vn 0.2886 0.7961 -0.5319 +vn -0.9946 0.0865 -0.0578 +vn -0.9552 0.2460 -0.1644 +vn 0.4689 0.7344 -0.4907 +vn -0.8794 0.3959 -0.2645 +vn 0.8794 0.4399 -0.1822 +vn 0.9552 0.2733 -0.1132 +vn -0.4689 0.8160 -0.3380 +vn -0.2886 0.8845 -0.3664 +vn 0.9946 0.0961 -0.0398 +vn -0.6314 0.7164 -0.2967 +vn 0.0000 0.9239 -0.3827 +vn 0.0974 0.9195 -0.3808 +vn 0.6314 0.7164 -0.2967 +vn 0.7700 0.5894 -0.2441 +vn -0.7700 0.5894 -0.2441 +vn -0.0974 0.9195 -0.3808 +vn 0.2886 0.8845 -0.3664 +vn -0.9946 0.0961 -0.0398 +vn -0.9552 0.2733 -0.1132 +vn 0.4689 0.8160 -0.3380 +vn -0.8794 0.4399 -0.1822 +vn 0.8794 0.4670 -0.0929 +vn 0.9552 0.2902 -0.0577 +vn -0.4689 0.8663 -0.1723 +vn -0.2886 0.9390 -0.1868 +vn 0.9946 0.1021 -0.0203 +vn -0.6314 0.7605 -0.1513 +vn 0.0000 0.9808 -0.1951 +vn 0.0974 0.9761 -0.1942 +vn 0.6314 0.7605 -0.1513 +vn 0.7700 0.6258 -0.1245 +vn -0.7700 0.6258 -0.1245 +vn -0.0974 0.9761 -0.1942 +vn 0.2886 0.9390 -0.1868 +vn -0.9946 0.1021 -0.0203 +vn -0.9552 0.2902 -0.0577 +vn 0.4689 0.8663 -0.1723 +vn -0.8794 0.4670 -0.0929 +g Pipe_Cylinder.002_pipe +s off +f 65/1/1 68/2/1 69/3/1 70/4/1 71/5/1 72/6/1 +f 77/7/1 80/8/1 81/9/1 82/10/1 83/11/1 84/12/1 +f 89/13/1 92/14/1 93/15/1 94/16/1 95/17/1 96/18/1 +f 101/19/1 104/20/1 105/21/1 106/22/1 107/23/1 108/24/1 +f 113/25/1 116/26/1 117/27/1 118/28/1 119/29/1 120/30/1 +f 125/31/1 128/32/1 129/33/1 130/34/1 131/35/1 132/36/1 +f 137/37/1 140/38/1 141/39/1 142/40/1 143/41/1 144/42/1 +f 149/43/1 152/44/1 153/45/1 154/46/1 155/47/1 156/48/1 +f 183/49/1 193/50/1 198/51/1 202/52/1 206/53/1 211/54/1 210/55/1 215/56/1 219/57/1 223/58/1 227/59/1 232/60/1 241/61/1 242/62/1 240/63/1 234/64/1 229/65/1 225/66/1 221/67/1 217/68/1 213/69/1 208/70/1 204/71/1 200/72/1 195/73/1 191/74/1 184/75/1 185/76/1 182/77/1 179/78/1 180/79/1 181/80/1 +f 187/81/2 186/82/2 192/83/2 197/84/2 196/85/2 201/86/2 205/87/2 209/88/2 214/89/2 218/90/2 222/91/2 226/92/2 230/93/2 235/94/2 231/95/2 237/96/2 236/97/2 238/98/2 239/99/2 233/100/2 228/101/2 224/102/2 220/103/2 216/104/2 212/105/2 207/106/2 203/107/2 199/108/2 194/109/2 190/110/2 189/111/2 188/112/2 +f 243/113/1 246/114/1 247/115/1 248/116/1 249/117/1 250/118/1 +f 255/119/1 258/120/1 259/121/1 260/122/1 261/123/1 262/124/1 +f 267/125/1 270/126/1 271/127/1 272/128/1 273/129/1 274/130/1 +f 279/131/1 282/132/1 283/133/1 284/134/1 285/135/1 286/136/1 +f 291/137/1 294/138/1 295/139/1 296/140/1 297/141/1 298/142/1 +f 303/143/1 306/144/1 307/145/1 308/146/1 309/147/1 310/148/1 +f 315/149/1 318/150/1 319/151/1 320/152/1 321/153/1 322/154/1 +f 327/155/1 330/156/1 331/157/1 332/158/1 333/159/1 334/160/1 +f 458/161/3 459/162/3 489/163/3 488/164/3 486/165/3 487/166/3 485/167/3 484/168/3 483/169/3 482/170/3 480/171/3 481/172/3 479/173/3 478/174/3 477/175/3 476/176/3 475/177/3 474/178/3 473/179/3 472/180/3 471/181/3 470/182/3 469/183/3 468/184/3 467/185/3 466/186/3 465/187/3 464/188/3 463/189/3 462/190/3 461/191/3 460/192/3 +f 437/193/4 454/194/4 438/195/4 439/196/4 440/197/4 441/198/4 442/199/4 455/200/4 443/201/4 444/202/4 445/203/4 456/204/4 446/205/4 457/206/4 447/207/4 448/208/4 449/209/4 450/210/4 451/211/4 426/212/4 427/213/4 428/214/4 429/215/4 430/216/4 431/217/4 432/218/4 433/219/4 434/220/4 452/221/4 435/222/4 453/223/4 436/224/4 +s 1 +f 167/225/5 506/226/6 161/227/7 2/228/8 3/229/9 +f 168/230/10 167/225/5 3/229/9 4/231/11 +f 169/232/12 168/230/10 4/231/11 9/233/13 +f 161/227/7 339/234/14 352/235/15 1/236/16 2/228/8 +f 170/237/17 169/232/12 9/233/13 13/238/18 +f 1/236/16 352/235/15 351/239/19 5/240/20 +f 170/237/17 13/238/18 17/241/21 171/242/22 +f 6/243/23 2/228/8 1/236/16 7/244/24 +f 8/245/25 3/229/9 2/228/8 6/243/23 +f 10/246/26 4/231/11 3/229/9 8/245/25 +f 165/247/27 164/248/28 45/249/29 49/250/30 +f 7/244/24 1/236/16 5/240/20 12/251/31 +f 14/252/32 9/233/13 4/231/11 10/246/26 +f 172/253/33 171/242/22 17/241/21 21/254/34 +f 16/255/35 12/251/31 5/240/20 11/256/36 +f 18/257/37 13/238/18 9/233/13 14/252/32 +f 173/258/38 172/253/33 21/254/34 25/259/39 +f 349/260/40 15/261/41 11/256/36 350/262/42 +f 20/263/43 16/255/35 11/256/36 15/261/41 +f 182/264/44 186/265/45 187/266/46 179/267/47 +f 181/268/48 189/269/49 190/270/50 183/271/51 +f 22/272/52 17/241/21 13/238/18 18/257/37 +f 185/273/53 192/274/54 186/265/45 182/264/44 +f 24/275/55 20/263/43 15/261/41 19/276/56 +f 183/271/51 190/270/50 194/277/57 193/278/58 +f 26/279/59 21/254/34 17/241/21 22/272/52 +f 184/280/60 197/281/61 192/274/54 185/273/53 +f 174/282/62 162/283/63 29/284/64 33/285/65 +f 355/286/66 27/287/67 23/288/68 346/289/69 +f 28/290/70 24/275/55 19/276/56 23/288/68 +f 191/291/71 196/292/72 197/281/61 184/280/60 +f 30/293/73 25/259/39 21/254/34 26/279/59 +f 200/294/74 205/295/75 201/296/76 195/297/77 +f 32/298/78 28/290/70 23/288/68 27/287/67 +f 193/278/58 194/277/57 199/299/79 198/300/80 +f 34/301/81 29/302/64 25/259/39 30/293/73 +f 204/303/82 209/304/83 205/295/75 200/294/74 +f 163/305/84 175/306/85 37/307/86 41/308/87 +f 354/309/88 343/310/89 35/311/90 31/312/91 +f 36/313/92 32/298/78 27/287/67 31/312/91 +f 198/300/80 199/299/79 203/314/93 202/315/94 +f 38/316/95 33/285/65 29/284/64 34/317/81 +f 208/318/96 214/319/97 209/304/83 204/303/82 +f 164/248/28 163/305/84 41/308/87 45/249/29 +f 345/320/98 342/321/99 47/322/100 43/323/101 +f 40/324/102 36/313/92 31/312/91 35/311/90 +f 202/315/94 203/314/93 207/325/103 206/326/104 +f 42/327/105 37/307/86 33/285/65 38/316/95 +f 213/328/106 218/329/107 214/319/97 208/318/96 +f 44/330/108 40/324/102 35/311/90 39/331/109 +f 206/326/104 207/325/103 212/332/110 211/333/111 +f 46/334/112 41/308/87 37/307/86 42/327/105 +f 217/335/113 222/336/114 218/329/107 213/328/106 +f 48/337/115 44/330/108 39/331/109 43/323/101 +f 210/338/116 216/339/117 220/340/118 215/341/119 +f 46/334/112 50/342/120 45/249/29 41/308/87 +f 211/333/111 212/332/110 216/343/117 210/344/116 +f 177/345/121 61/346/122 59/347/123 178/348/124 359/349/125 +f 52/350/126 48/337/115 43/323/101 47/322/100 +f 215/341/119 220/340/118 224/351/127 219/352/128 +f 179/267/47 187/266/46 188/353/129 180/354/130 +f 54/355/131 49/250/30 45/249/29 50/342/120 +f 221/356/132 226/357/133 222/336/114 217/335/113 +f 165/247/27 49/250/30 53/358/134 176/359/135 +f 340/360/136 353/361/137 178/348/124 59/347/123 55/362/138 +f 56/363/139 52/350/126 47/322/100 51/364/140 +f 219/352/128 224/351/127 228/365/141 223/366/142 +f 54/355/131 58/367/143 53/358/134 49/250/30 +f 225/368/144 230/369/145 226/357/133 221/356/132 +f 60/370/146 56/363/139 51/364/140 55/362/138 +f 223/366/142 228/371/141 233/372/147 227/373/148 +f 58/367/143 62/374/149 57/375/150 53/358/134 +f 229/376/151 235/377/152 230/369/145 225/368/144 +f 195/297/77 201/296/76 196/292/72 191/291/71 +f 63/378/153 60/370/146 55/362/138 59/347/123 +f 227/373/148 233/372/147 239/379/154 232/380/155 +f 62/374/149 64/381/156 61/346/122 57/375/150 +f 234/382/157 231/383/158 235/377/152 229/376/151 +f 64/381/156 63/378/153 59/347/123 61/346/122 +f 180/354/130 188/353/129 189/269/49 181/268/48 +f 240/384/159 237/385/160 231/383/158 234/382/157 +f 232/380/155 239/379/154 238/386/161 241/387/162 +f 242/388/163 236/389/164 237/385/160 240/384/159 +f 241/387/162 238/386/161 236/389/164 242/388/163 +f 65/390/165 66/391/166 67/392/167 68/393/168 +f 72/394/169 73/395/170 66/391/166 65/390/165 +f 68/393/168 67/392/167 74/396/171 69/397/172 +f 69/397/172 74/396/171 75/398/173 70/399/174 +f 70/400/174 75/401/173 76/402/175 71/403/176 +f 71/403/176 76/402/175 73/395/170 72/394/169 +f 77/404/177 78/405/178 79/406/179 80/407/180 +f 84/408/181 85/409/182 78/405/178 77/404/177 +f 80/407/180 79/406/179 86/410/183 81/411/184 +f 81/411/184 86/410/183 87/412/185 82/413/186 +f 82/414/186 87/415/185 88/416/187 83/417/188 +f 83/417/188 88/416/187 85/409/182 84/408/181 +f 89/418/189 90/419/190 91/420/191 92/421/192 +f 96/422/193 97/423/194 90/419/190 89/418/189 +f 92/421/192 91/420/191 98/424/195 93/425/196 +f 93/425/196 98/424/195 99/426/197 94/427/198 +f 94/428/198 99/429/197 100/430/199 95/431/200 +f 95/431/200 100/430/199 97/423/194 96/422/193 +f 101/432/201 102/433/202 103/434/203 104/435/204 +f 108/436/205 109/437/206 102/433/202 101/432/201 +f 104/435/204 103/434/203 110/438/207 105/439/208 +f 105/439/208 110/438/207 111/440/209 106/441/210 +f 106/442/210 111/443/209 112/444/211 107/445/212 +f 107/445/212 112/444/211 109/437/206 108/436/205 +f 113/446/174 114/447/173 115/448/175 116/449/176 +f 120/450/172 121/451/171 114/447/173 113/446/174 +f 116/449/176 115/448/175 122/452/170 117/453/169 +f 117/453/169 122/452/170 123/454/166 118/455/165 +f 118/456/165 123/457/166 124/458/167 119/459/168 +f 119/459/168 124/458/167 121/451/171 120/450/172 +f 125/460/186 126/461/185 127/462/187 128/463/188 +f 132/464/184 133/465/183 126/461/185 125/460/186 +f 128/463/188 127/462/187 134/466/182 129/467/181 +f 129/467/181 134/466/182 135/468/178 130/469/177 +f 130/470/177 135/471/178 136/472/179 131/473/180 +f 131/473/180 136/472/179 133/465/183 132/464/184 +f 137/474/198 138/475/197 139/476/199 140/477/200 +f 144/478/196 145/479/195 138/475/197 137/474/198 +f 140/477/200 139/476/199 146/480/194 141/481/193 +f 141/481/193 146/480/194 147/482/190 142/483/189 +f 142/484/189 147/485/190 148/486/191 143/487/192 +f 143/487/192 148/486/191 145/479/195 144/478/196 +f 149/488/210 150/489/209 151/490/211 152/491/212 +f 156/492/208 157/493/207 150/489/209 149/488/210 +f 152/491/212 151/490/211 158/494/206 153/495/205 +f 153/495/205 158/494/206 159/496/202 154/497/201 +f 154/498/201 159/499/202 160/500/203 155/501/204 +f 155/501/204 160/500/203 157/493/207 156/492/208 +f 358/502/6 339/234/14 161/227/7 506/226/6 +f 5/240/20 351/239/19 350/262/42 11/256/36 +f 349/260/40 348/503/213 19/276/56 15/261/41 +f 348/503/213 346/289/69 23/288/68 19/276/56 +f 343/310/89 344/504/214 39/331/109 35/311/90 +f 344/504/214 345/320/98 43/323/101 39/331/109 +f 166/505/215 176/359/135 53/358/134 57/375/150 +f 355/286/66 357/506/216 354/309/88 31/312/91 27/287/67 +f 162/507/63 173/258/38 25/259/39 29/302/64 +f 177/345/121 166/505/215 57/375/150 61/346/122 +f 175/306/85 174/282/62 33/285/65 37/307/86 +f 340/360/136 55/362/138 51/364/140 341/508/217 +f 243/509/218 244/510/219 245/511/220 246/512/221 +f 250/513/222 251/514/223 244/510/219 243/509/218 +f 246/512/221 245/511/220 252/515/224 247/516/225 +f 247/516/225 252/515/224 253/517/226 248/518/227 +f 248/519/227 253/520/226 254/521/228 249/522/229 +f 249/522/229 254/521/228 251/514/223 250/513/222 +f 255/523/230 256/524/4 257/525/231 258/526/232 +f 262/527/233 263/528/234 256/524/4 255/523/230 +f 258/526/232 257/525/231 264/529/235 259/530/236 +f 259/530/236 264/529/235 265/531/3 260/532/237 +f 260/533/237 265/534/3 266/535/238 261/536/239 +f 261/536/239 266/535/238 263/528/234 262/527/233 +f 267/537/240 268/538/241 269/539/242 270/540/243 +f 274/541/244 275/542/245 268/538/241 267/537/240 +f 270/540/243 269/539/242 276/543/246 271/544/247 +f 271/544/247 276/543/246 277/545/248 272/546/249 +f 272/547/249 277/548/248 278/549/250 273/550/251 +f 273/550/251 278/549/250 275/542/245 274/541/244 +f 279/551/252 280/552/6 281/553/253 282/554/254 +f 286/555/255 287/556/256 280/552/6 279/551/252 +f 282/554/254 281/553/253 288/557/257 283/558/258 +f 283/558/258 288/557/257 289/559/125 284/560/259 +f 284/561/259 289/562/125 290/563/260 285/564/261 +f 285/564/261 290/563/260 287/556/256 286/555/255 +f 291/565/227 292/566/226 293/567/228 294/568/229 +f 298/569/225 299/570/224 292/566/226 291/565/227 +f 294/568/229 293/567/228 300/571/223 295/572/222 +f 295/572/222 300/571/223 301/573/219 296/574/218 +f 296/575/218 301/576/219 302/577/220 297/578/221 +f 297/578/221 302/577/220 299/570/224 298/569/225 +f 303/579/237 304/580/3 305/581/238 306/582/239 +f 310/583/236 311/584/235 304/580/3 303/579/237 +f 306/582/239 305/581/238 312/585/234 307/586/233 +f 307/586/233 312/585/234 313/587/4 308/588/230 +f 308/589/230 313/590/4 314/591/231 309/592/232 +f 309/592/232 314/591/231 311/584/235 310/583/236 +f 315/593/249 316/594/248 317/595/250 318/596/251 +f 322/597/247 323/598/246 316/594/248 315/593/249 +f 318/596/251 317/595/250 324/599/245 319/600/244 +f 319/600/244 324/599/245 325/601/241 320/602/240 +f 320/603/240 325/604/241 326/605/242 321/606/243 +f 321/606/243 326/605/242 323/598/246 322/597/247 +f 327/607/259 328/608/125 329/609/260 330/610/261 +f 334/611/258 335/612/257 328/608/125 327/607/259 +f 330/610/261 329/609/260 336/613/256 331/614/255 +f 331/614/255 336/613/256 337/615/6 332/616/252 +f 332/617/252 337/618/6 338/619/253 333/620/254 +f 333/620/254 338/619/253 335/612/257 334/611/258 +f 341/508/217 51/364/140 47/322/100 342/321/99 +f 359/349/125 178/348/124 353/361/137 576/621/125 +f 356/622/6 358/502/6 506/226/6 167/225/5 +f 177/345/121 359/349/125 576/621/125 347/623/125 +f 461/624/262 428/625/263 427/626/264 460/627/265 +f 462/628/266 429/629/267 428/625/263 461/624/262 +f 463/630/268 430/631/269 429/629/267 462/628/266 +f 464/632/270 431/633/271 430/631/269 463/630/268 +f 465/634/272 432/635/273 431/633/271 464/632/270 +f 466/636/274 433/637/275 432/635/273 465/634/272 +f 467/638/276 434/639/277 433/637/275 466/636/274 +f 468/640/278 452/641/279 434/639/277 467/638/276 +f 469/642/280 435/643/281 452/641/279 468/640/278 +f 470/644/282 453/645/283 435/643/281 469/642/280 +f 471/646/284 436/647/285 453/645/283 470/644/282 +f 472/648/286 437/649/287 436/647/285 471/646/284 +f 473/650/288 454/651/289 437/649/287 472/648/286 +f 474/652/290 438/653/291 454/651/289 473/650/288 +f 475/654/292 439/655/293 438/653/291 474/652/290 +f 476/656/294 440/657/295 439/655/293 475/654/292 +f 477/658/296 441/659/297 440/660/295 476/661/294 +f 478/662/298 442/663/299 441/659/297 477/658/296 +f 479/664/300 455/665/301 442/663/299 478/662/298 +f 481/666/302 443/667/303 455/665/301 479/664/300 +f 482/668/304 445/669/305 444/670/306 480/671/307 +f 480/671/307 444/670/306 443/667/303 481/666/302 +f 483/672/308 456/673/309 445/669/305 482/668/304 +f 484/674/310 446/675/311 456/673/309 483/672/308 +f 485/676/312 457/677/313 446/675/311 484/674/310 +f 487/678/314 447/679/315 457/677/313 485/676/312 +f 488/680/316 449/681/317 448/682/318 486/683/319 +f 486/683/319 448/682/318 447/679/315 487/678/314 +f 489/684/320 450/685/321 449/681/317 488/680/316 +f 459/686/322 451/687/323 450/685/321 489/684/320 +f 389/688/324 392/689/325 393/690/326 360/691/327 +f 361/692/328 360/691/327 393/690/326 394/693/329 +f 362/694/330 361/692/328 394/693/329 395/695/331 +f 363/696/332 362/694/330 395/695/331 396/697/333 +f 364/698/334 363/696/332 396/697/333 397/699/335 +f 365/700/336 364/698/334 397/699/335 398/701/337 +f 365/700/336 398/701/337 399/702/338 366/703/339 +f 367/704/340 366/703/339 399/702/338 400/705/341 +f 368/706/342 367/704/340 400/705/341 401/707/343 +f 369/708/344 368/706/342 401/707/343 402/709/345 +f 369/708/344 402/709/345 403/710/346 370/711/347 +f 370/711/347 403/710/346 404/712/348 390/713/349 +f 371/714/350 405/715/351 406/716/352 372/717/353 +f 390/713/349 404/712/348 405/715/351 371/714/350 +f 372/717/353 406/716/352 407/718/354 373/719/355 +f 374/720/356 373/719/355 407/718/354 408/721/357 +f 374/720/356 408/721/357 409/722/358 375/723/359 +f 376/724/360 375/723/359 409/722/358 410/725/361 +f 376/726/360 410/727/361 411/728/362 377/729/363 +f 378/730/364 377/729/363 411/728/362 412/731/365 +f 378/730/364 412/731/365 413/732/366 379/733/367 +f 379/733/367 413/732/366 414/734/368 381/735/369 +f 381/735/369 414/734/368 415/736/370 380/737/371 +f 380/737/371 415/736/370 416/738/372 382/739/373 +f 382/739/373 416/738/372 417/740/374 383/741/375 +f 383/741/375 417/740/374 418/742/376 391/743/377 +f 386/744/378 384/745/379 419/746/380 420/747/381 +f 384/745/379 391/743/377 418/742/376 419/746/380 +f 387/748/382 385/749/383 421/750/384 422/751/385 +f 386/744/378 420/747/381 421/750/384 385/749/383 +f 388/752/386 387/748/382 422/751/385 423/753/387 +f 388/752/386 423/753/387 392/689/325 389/688/324 +f 460/627/265 427/626/264 426/754/388 458/755/389 +f 405/715/351 404/712/348 168/756/10 169/757/12 +f 406/716/352 405/715/351 169/757/12 170/758/17 +f 505/759/390 395/695/331 394/693/329 504/760/391 507/761/392 +f 425/762/393 419/746/380 418/742/376 177/763/121 347/764/125 +f 576/765/125 503/766/394 425/762/393 347/764/125 +f 404/712/348 403/710/346 167/767/5 168/756/10 +f 500/768/395 501/769/396 400/705/341 399/702/338 +f 417/740/374 416/738/372 176/770/135 166/771/215 +f 421/750/384 420/747/381 491/772/397 492/773/398 +f 496/774/399 423/753/387 422/751/385 493/775/400 +f 497/776/401 396/697/333 395/695/331 505/759/390 +f 170/758/17 171/777/22 407/718/354 406/716/352 +f 418/742/376 417/740/374 166/771/215 177/763/121 +f 416/738/372 415/736/370 165/778/27 176/770/135 +f 420/747/381 419/746/380 425/762/393 503/766/394 491/772/397 +f 496/774/399 495/779/402 392/689/325 423/753/387 +f 458/755/389 426/754/388 451/687/323 459/686/322 +f 499/780/403 500/768/395 399/702/338 398/701/337 +f 501/769/396 502/781/404 401/707/343 400/705/341 +f 502/781/404 490/782/405 424/783/406 402/709/345 401/707/343 +f 403/710/346 402/709/345 424/783/406 356/784/6 167/767/5 +f 171/777/22 172/785/33 408/721/357 407/718/354 +f 172/785/33 173/786/38 409/722/358 408/721/357 +f 173/786/38 162/787/63 410/725/361 409/722/358 +f 162/788/63 174/789/62 411/728/362 410/727/361 +f 174/789/62 175/790/85 412/731/365 411/728/362 +f 175/790/85 163/791/84 413/732/366 412/731/365 +f 163/791/84 164/792/28 414/734/368 413/732/366 +f 421/750/384 492/773/398 493/775/400 422/751/385 +f 494/793/407 393/690/326 392/689/325 495/779/402 +f 494/793/407 504/760/391 394/693/329 393/690/326 +f 498/794/408 397/699/335 396/697/333 497/776/401 +f 498/794/408 499/780/403 398/701/337 397/699/335 +f 356/784/6 424/783/406 490/782/405 358/795/6 +f 164/792/28 165/778/27 415/736/370 414/734/368 +f 493/775/400 492/773/398 510/796/409 511/797/410 +f 501/769/396 500/768/395 518/798/411 519/799/412 +f 358/795/6 490/782/405 508/800/413 +f 504/760/391 494/793/407 512/801/414 522/802/415 +f 502/781/404 501/769/396 519/799/412 520/803/416 +f 503/766/394 576/765/125 521/804/417 +f 494/793/407 495/779/402 513/805/418 512/801/414 +f 490/782/405 502/781/404 520/803/416 508/800/413 +f 495/779/402 496/774/399 514/806/419 513/805/418 +f 505/759/390 507/761/392 524/807/420 523/808/421 +f 500/768/395 499/780/403 517/809/422 518/798/411 +f 496/774/399 493/775/400 511/797/410 514/806/419 +f 497/776/401 505/759/390 523/808/421 515/810/423 +f 491/772/397 503/766/394 521/804/417 509/811/424 +f 507/761/392 504/760/391 522/802/415 524/807/420 +f 498/794/408 497/776/401 515/810/423 516/812/425 +f 492/773/398 491/772/397 509/811/424 510/796/409 +f 499/780/403 498/794/408 516/812/425 517/809/422 +f 520/803/416 519/799/412 536/813/426 537/814/427 +f 512/801/414 513/805/418 530/815/428 529/816/429 +f 508/800/413 520/803/416 537/814/427 525/817/430 +f 513/805/418 514/806/419 531/818/431 530/815/428 +f 523/808/421 524/807/420 541/819/432 540/820/433 +f 518/798/411 517/809/422 534/821/434 535/822/435 +f 514/806/419 511/797/410 528/823/436 531/818/431 +f 524/807/420 522/802/415 539/824/437 541/819/432 +f 515/810/423 523/808/421 540/820/433 532/825/438 +f 509/811/424 521/804/417 538/826/439 526/827/440 +f 358/795/6 508/800/413 525/817/430 +f 516/812/425 515/810/423 532/825/438 533/828/441 +f 510/796/409 509/811/424 526/827/440 527/829/442 +f 521/804/417 576/765/125 538/826/439 +f 517/809/422 516/812/425 533/828/441 534/821/434 +f 511/797/410 510/796/409 527/829/442 528/823/436 +f 519/799/412 518/798/411 535/822/435 536/813/426 +f 522/802/415 512/801/414 529/816/429 539/824/437 +f 537/814/427 536/813/426 553/830/443 554/831/444 +f 529/816/429 530/815/428 547/832/445 546/833/446 +f 525/817/430 537/814/427 554/831/444 542/834/447 +f 530/815/428 531/818/431 548/835/448 547/832/445 +f 540/820/433 541/819/432 558/836/449 557/837/450 +f 535/822/435 534/821/434 551/838/451 552/839/452 +f 531/818/431 528/823/436 545/840/453 548/835/448 +f 541/819/432 539/824/437 556/841/454 558/836/449 +f 532/825/438 540/820/433 557/837/450 549/842/455 +f 526/827/440 538/826/439 555/843/456 543/844/457 +f 358/795/6 525/817/430 542/834/447 +f 533/828/441 532/825/438 549/842/455 550/845/458 +f 527/829/442 526/827/440 543/844/457 544/846/459 +f 538/826/439 576/765/125 555/843/456 +f 534/821/434 533/828/441 550/845/458 551/838/451 +f 528/823/436 527/829/442 544/846/459 545/840/453 +f 536/813/426 535/822/435 552/839/452 553/830/443 +f 539/824/437 529/816/429 546/833/446 556/841/454 +f 554/831/444 553/830/443 570/847/460 571/848/461 +f 546/833/446 547/832/445 564/849/462 563/850/463 +f 542/834/447 554/831/444 571/848/461 559/851/464 +f 547/832/445 548/835/448 565/852/465 564/849/462 +f 557/837/450 558/836/449 575/853/466 574/854/467 +f 552/839/452 551/838/451 568/855/468 569/856/469 +f 548/835/448 545/840/453 562/857/470 565/852/465 +f 558/836/449 556/841/454 573/858/471 575/853/466 +f 549/842/455 557/837/450 574/854/467 566/859/472 +f 543/844/457 555/843/456 572/860/473 560/861/474 +f 358/795/6 542/834/447 559/851/464 +f 550/845/458 549/842/455 566/859/472 567/862/475 +f 544/846/459 543/844/457 560/861/474 561/863/476 +f 555/843/456 576/765/125 572/860/473 +f 551/838/451 550/845/458 567/862/475 568/855/468 +f 545/840/453 544/846/459 561/863/476 562/857/470 +f 553/830/443 552/839/452 569/856/469 570/847/460 +f 556/841/454 546/833/446 563/850/463 573/858/471 +f 571/848/461 570/847/460 588/864/477 589/865/478 +f 563/850/463 564/849/462 582/866/479 581/867/480 +f 559/851/464 571/848/461 589/865/478 577/868/481 +f 564/849/462 565/852/465 583/869/482 582/866/479 +f 574/854/467 575/853/466 593/870/483 592/871/484 +f 569/856/469 568/855/468 586/872/485 587/873/486 +f 565/852/465 562/857/470 580/874/487 583/869/482 +f 575/853/466 573/858/471 591/875/488 593/870/483 +f 566/859/472 574/854/467 592/871/484 584/876/489 +f 560/861/474 572/860/473 590/877/490 578/878/491 +f 358/795/6 559/851/464 577/868/481 +f 567/862/475 566/859/472 584/876/489 585/879/492 +f 561/863/476 560/861/474 578/878/491 579/880/493 +f 572/860/473 576/765/125 590/877/490 +f 568/855/468 567/862/475 585/879/492 586/872/485 +f 562/857/470 561/863/476 579/880/493 580/874/487 +f 570/847/460 569/856/469 587/873/486 588/864/477 +f 573/858/471 563/850/463 581/867/480 591/875/488 +f 589/865/478 588/864/477 605/881/494 606/882/495 +f 581/867/480 582/866/479 599/883/496 598/884/497 +f 577/868/481 589/865/478 606/882/495 594/885/498 +f 582/866/479 583/869/482 600/886/499 599/883/496 +f 592/871/484 593/870/483 610/887/500 609/888/501 +f 587/873/486 586/872/485 603/889/502 604/890/503 +f 583/869/482 580/874/487 597/891/504 600/886/499 +f 593/870/483 591/875/488 608/892/505 610/887/500 +f 584/876/489 592/871/484 609/888/501 601/893/506 +f 578/878/491 590/877/490 607/894/507 595/895/508 +f 358/795/6 577/868/481 594/885/498 +f 585/879/492 584/876/489 601/893/506 602/896/509 +f 579/880/493 578/878/491 595/895/508 596/897/510 +f 590/877/490 576/765/125 607/894/507 +f 586/872/485 585/879/492 602/896/509 603/889/502 +f 580/874/487 579/880/493 596/897/510 597/891/504 +f 588/864/477 587/873/486 604/890/503 605/881/494 +f 591/875/488 581/867/480 598/884/497 608/892/505 +f 606/882/495 605/881/494 622/898/511 623/899/512 +f 598/884/497 599/883/496 616/900/513 615/901/514 +f 594/885/498 606/882/495 623/899/512 611/902/515 +f 599/883/496 600/886/499 617/903/516 616/900/513 +f 609/888/501 610/887/500 627/904/517 626/905/518 +f 604/890/503 603/889/502 620/906/519 621/907/520 +f 600/886/499 597/891/504 614/908/521 617/903/516 +f 610/887/500 608/892/505 625/909/522 627/904/517 +f 601/893/506 609/888/501 626/905/518 618/910/523 +f 595/895/508 607/894/507 624/911/524 612/912/525 +f 358/795/6 594/885/498 611/902/515 +f 602/896/509 601/893/506 618/910/523 619/913/526 +f 596/897/510 595/895/508 612/912/525 613/914/527 +f 607/894/507 576/765/125 624/911/524 +f 603/889/502 602/896/509 619/913/526 620/906/519 +f 597/891/504 596/897/510 613/914/527 614/908/521 +f 605/881/494 604/890/503 621/907/520 622/898/511 +f 608/892/505 598/884/497 615/901/514 625/909/522 +f 623/899/512 622/898/511 351/915/19 352/916/15 +f 615/901/514 616/900/513 344/917/214 343/918/89 +f 611/902/515 623/899/512 352/916/15 339/919/14 +f 616/900/513 617/903/516 345/920/98 344/917/214 +f 626/905/518 627/904/517 357/921/216 355/922/66 +f 621/907/520 620/906/519 349/923/40 350/924/42 +f 617/903/516 614/908/521 342/925/99 345/920/98 +f 627/904/517 625/909/522 354/926/88 357/921/216 +f 618/910/523 626/905/518 355/922/66 346/927/69 +f 612/912/525 624/911/524 353/928/137 340/929/136 +f 358/795/6 611/902/515 339/919/14 +f 619/913/526 618/910/523 346/927/69 348/930/213 +f 613/914/527 612/912/525 340/929/136 341/931/217 +f 624/911/524 576/765/125 353/928/137 +f 620/906/519 619/913/526 348/930/213 349/923/40 +f 614/908/521 613/914/527 341/931/217 342/925/99 +f 622/898/511 621/907/520 350/924/42 351/915/19 +f 625/909/522 615/901/514 343/918/89 354/926/88 diff --git a/mods/pipeworks/models/pipeworks_spigot_lowpoly.obj b/mods/pipeworks/models/pipeworks_spigot_lowpoly.obj new file mode 100644 index 00000000..67403c8e --- /dev/null +++ b/mods/pipeworks/models/pipeworks_spigot_lowpoly.obj @@ -0,0 +1,336 @@ +# Blender v2.78 (sub 0) OBJ File: 'pipe-master-lowpoly.blend' +# www.blender.org +o Cylinder.000_Cylinder.000_None_Cylinder.000_Cylinder.000_No.004 +v 0.064721 -0.156250 0.500000 +v 0.156250 -0.064721 0.500000 +v 0.156250 0.064721 0.500000 +v 0.064721 0.156250 0.500000 +v -0.064721 0.156250 0.500000 +v -0.156250 0.064721 0.500000 +v -0.156250 -0.064721 0.500000 +v -0.064721 -0.156250 0.500000 +v 0.156250 -0.064721 0.468750 +v 0.064721 -0.156250 0.468750 +v -0.064721 -0.156250 0.468750 +v -0.156250 -0.064721 0.468750 +v -0.156250 0.064721 0.468750 +v -0.064721 0.156250 0.468750 +v 0.064721 0.156250 0.468750 +v 0.156250 0.064721 0.468750 +v 0.064721 -0.187500 0.156250 +v 0.156250 -0.187500 0.064721 +v 0.156250 -0.187500 -0.064721 +v 0.064721 -0.187500 -0.156250 +v -0.064721 -0.187500 -0.156250 +v -0.156250 -0.187500 -0.064721 +v -0.156250 -0.187500 0.064721 +v -0.064721 -0.187500 0.156250 +v 0.156250 -0.250000 0.064721 +v 0.064721 -0.250000 0.156250 +v -0.064721 -0.250000 0.156250 +v -0.156250 -0.250000 0.064721 +v -0.156250 -0.250000 -0.064721 +v -0.064721 -0.250000 -0.156250 +v 0.064721 -0.250000 -0.156250 +v 0.156250 -0.250000 -0.064721 +v -0.051777 -0.000000 -0.125000 +v -0.125000 -0.000000 -0.051777 +v -0.125000 0.051777 -0.051777 +v -0.088388 0.088388 -0.088388 +v -0.051777 0.051777 -0.125000 +v 0.051777 -0.000000 -0.125000 +v 0.051777 0.051777 -0.125000 +v 0.088388 0.088389 -0.088388 +v 0.125000 0.051777 -0.051777 +v 0.125000 -0.000000 -0.051777 +v 0.125000 0.051777 -0.000000 +v 0.125000 0.000000 0.000000 +v -0.125000 0.000000 0.000000 +v -0.125000 0.051777 -0.000000 +v 0.000000 -0.000000 -0.125000 +v 0.000000 0.051777 -0.125000 +v -0.051777 0.125000 -0.051777 +v 0.051777 0.125000 -0.051777 +v -0.051777 -0.187500 0.125000 +v -0.051777 -0.125000 0.125000 +v -0.125000 -0.051777 0.051777 +v -0.125000 -0.187500 0.051777 +v 0.051777 -0.187500 0.125000 +v 0.125000 -0.187500 0.051777 +v 0.125000 -0.051777 0.051777 +v 0.051777 -0.125000 0.125000 +v -0.125000 -0.051777 0.468750 +v -0.125000 0.051777 0.468750 +v -0.125000 -0.051777 0.000000 +v -0.051777 -0.125000 0.468750 +v 0.125000 -0.051777 0.000000 +v 0.125000 0.051777 0.468750 +v 0.125000 -0.051777 0.468750 +v -0.051777 0.125000 0.468750 +v 0.051777 -0.125000 0.468750 +v 0.051777 0.125000 0.468750 +v 0.125000 -0.051777 -0.051777 +v 0.125000 -0.187500 -0.051777 +v 0.051777 -0.187500 -0.125000 +v -0.125000 -0.051777 -0.051777 +v -0.051777 -0.187500 -0.125000 +v -0.125000 -0.187500 -0.051777 +vt 0.3438 0.8906 +vt 0.2500 0.9844 +vt 0.1250 0.9844 +vt 0.0312 0.8906 +vt 0.0312 0.7656 +vt 0.1250 0.6719 +vt 0.2500 0.6719 +vt 0.3438 0.7656 +vt 0.6250 0.9844 +vt 0.7188 0.8906 +vt 0.7188 0.7656 +vt 0.6250 0.6719 +vt 0.5000 0.6719 +vt 0.4062 0.7656 +vt 0.4062 0.8906 +vt 0.5000 0.9844 +vt 0.7188 0.8906 +vt 0.6250 0.9844 +vt 0.5000 0.9844 +vt 0.4062 0.8906 +vt 0.4062 0.7656 +vt 0.5000 0.6719 +vt 0.6250 0.6719 +vt 0.7188 0.7656 +vt 0.2500 0.9844 +vt 0.3438 0.8906 +vt 0.3438 0.7656 +vt 0.2500 0.6719 +vt 0.1250 0.6719 +vt 0.0312 0.7656 +vt 0.0312 0.8906 +vt 0.1250 0.9844 +vt 1.0000 0.2656 +vt 0.8750 0.2656 +vt 0.8750 0.2344 +vt 0.9375 0.2188 +vt 1.0000 0.2344 +vt 0.1250 0.2656 +vt 0.1250 0.2344 +vt 0.1875 0.2188 +vt 0.2500 0.2344 +vt 0.2500 0.2656 +vt 0.3125 0.2344 +vt 0.3125 0.2656 +vt 0.7500 0.2344 +vt 0.8125 0.2344 +vt 0.8125 0.2656 +vt 0.7500 0.2656 +vt -0.0000 0.2344 +vt 0.0625 0.2344 +vt 0.0625 0.2656 +vt -0.0000 0.2656 +vt -0.0000 0.2969 +vt 0.0625 0.2969 +vt 0.9375 0.3125 +vt 0.8750 0.2969 +vt 0.8750 0.2344 +vt 0.9375 0.2188 +vt 1.0000 0.2344 +vt 1.0000 0.2656 +vt 1.0000 0.2969 +vt 0.3750 0.5938 +vt 0.3750 0.5625 +vt 0.4375 0.5625 +vt 0.4375 0.5938 +vt 0.3125 0.5938 +vt 0.3125 0.5625 +vt 0.5000 0.5625 +vt 0.5000 0.5938 +vt 0.0000 0.5938 +vt 0.0000 0.5625 +vt 0.0625 0.5625 +vt 0.0625 0.5938 +vt 0.1250 0.5625 +vt 0.1250 0.5938 +vt 0.1875 0.5625 +vt 0.1875 0.5938 +vt 0.2500 0.5625 +vt 0.2500 0.5938 +vt 1.0000 0.0156 +vt 1.0000 0.2031 +vt 0.8750 0.2344 +vt 0.8750 0.0156 +vt 0.1250 0.0156 +vt 0.2500 0.0156 +vt 0.2500 0.2344 +vt 0.1250 0.2031 +vt 0.8750 0.5156 +vt 0.7500 0.5156 +vt 0.8750 0.2656 +vt 0.8750 0.2969 +vt 1.0000 0.5156 +vt 1.0000 0.3281 +vt 0.2500 0.2969 +vt 0.2500 0.2656 +vt 0.3750 0.2656 +vt 0.3750 0.5156 +vt 0.2500 0.5156 +vt 0.6250 0.5156 +vt 0.6250 0.2344 +vt 0.6875 0.2188 +vt 0.1250 0.5156 +vt -0.0000 0.5156 +vt -0.0000 0.3281 +vt 0.1250 0.3281 +vt 0.5000 0.5156 +vt 0.5000 0.2344 +vt 0.8125 0.6094 +vt 0.8125 0.5469 +vt 0.8750 0.5469 +vt 0.8750 0.6094 +vt 0.9375 0.5469 +vt 0.9375 0.6094 +vt 1.0000 0.5469 +vt 1.0000 0.6094 +vt 0.5000 0.6094 +vt 0.5000 0.5469 +vt 0.5625 0.5469 +vt 0.5625 0.6094 +vt 0.6250 0.5469 +vt 0.6250 0.6094 +vt 0.6875 0.5469 +vt 0.6875 0.6094 +vt 0.7500 0.5469 +vt 0.7500 0.6094 +vt 0.5000 0.2656 +vt 0.3750 0.2656 +vt 0.3750 0.2344 +vt 0.3750 0.0156 +vt 0.5000 0.0156 +vt 0.7500 0.2344 +vt 0.7500 0.2656 +vt 0.6250 0.2656 +vt 0.6250 0.0156 +vt 0.7500 0.0156 +vt 0.5625 0.2656 +vt 0.8125 0.2344 +vt 0.3125 0.2344 +vt -0.0000 0.2031 +vt -0.0000 0.0156 +vt 0.3750 0.2344 +vt 0.4375 0.2188 +vn -0.0000 0.0000 1.0000 +vn 0.0000 0.0000 -1.0000 +vn 0.0000 1.0000 -0.0000 +vn 0.0000 -1.0000 0.0000 +vn -0.3827 0.0000 -0.9239 +vn -0.9239 0.0000 -0.3827 +vn -0.6387 0.5441 -0.5441 +vn -0.3251 0.3251 -0.8881 +vn -0.3002 0.3002 -0.9054 +vn 0.3827 0.0000 -0.9239 +vn 0.3002 0.3002 -0.9054 +vn 0.8881 0.3251 -0.3251 +vn 0.9406 -0.1343 -0.3119 +vn 0.9239 0.0000 -0.3827 +vn 0.8171 0.5712 -0.0783 +vn 1.0000 0.0000 0.0000 +vn -1.0000 0.0000 0.0000 +vn -0.8994 0.3725 -0.2288 +vn -0.0000 0.3827 -0.9239 +vn 0.1343 0.9406 -0.3119 +vn 0.5441 0.6386 -0.5441 +vn 0.2971 -0.7173 -0.6302 +vn 0.2971 -0.7173 0.6302 +vn -0.2971 -0.7173 0.6302 +vn -0.2970 -0.7174 -0.6302 +vn 0.7173 -0.2971 -0.6302 +vn 0.7173 -0.2971 0.6302 +vn -0.7173 -0.2971 0.6302 +vn -0.7173 -0.2971 -0.6302 +vn -0.7173 0.2971 0.6302 +vn -0.7173 0.2971 -0.6302 +vn -0.2971 0.7173 0.6302 +vn -0.2972 0.7173 -0.6302 +vn 0.2971 0.7173 0.6302 +vn 0.2971 0.7173 -0.6302 +vn 0.7173 0.2971 0.6302 +vn 0.7173 0.2971 -0.6302 +vn -0.3827 0.0000 0.9239 +vn -0.5743 -0.5789 0.5789 +vn -0.9878 -0.1101 0.1101 +vn -0.9239 0.0000 0.3827 +vn 0.3827 0.0000 0.9239 +vn 0.9239 0.0000 0.3827 +vn 0.9878 -0.1101 0.1101 +vn 0.5743 -0.5789 0.5789 +vn -0.9239 -0.3827 0.0000 +vn -0.9239 0.3827 -0.0000 +vn -0.3827 -0.9239 0.0000 +vn 0.9239 0.3827 -0.0000 +vn 0.9239 -0.3827 0.0000 +vn -0.3827 0.9239 -0.0000 +vn 0.3827 -0.9239 0.0000 +vn 0.3827 0.9239 -0.0000 +vn 0.7173 -0.6302 0.2971 +vn 0.7173 0.6302 0.2971 +vn 0.2971 0.6302 0.7173 +vn 0.2971 -0.6302 0.7173 +vn -0.2971 0.6302 0.7173 +vn -0.2971 -0.6302 0.7173 +vn -0.7173 0.6302 0.2972 +vn -0.7174 -0.6302 0.2970 +vn -0.7173 0.6302 -0.2971 +vn -0.7173 -0.6302 -0.2971 +vn -0.2971 0.6302 -0.7173 +vn -0.2970 -0.6302 -0.7174 +vn 0.2971 0.6302 -0.7173 +vn 0.2971 -0.6302 -0.7173 +vn 0.7172 0.6302 -0.2973 +vn 0.7174 -0.6302 -0.2969 +g Cylinder.000_Cylinder.000_None_Cylinder.000_Cylinder.000_No.004_Cylinder.000_Cylinder.000_None_Cylinder.000_Cylinder.000_No.004_pipe +s off +f 1/1/1 2/2/1 3/3/1 4/4/1 5/5/1 6/6/1 7/7/1 8/8/1 +f 9/9/2 10/10/2 11/11/2 12/12/2 13/13/2 14/14/2 15/15/2 16/16/2 +f 17/17/3 18/18/3 19/19/3 20/20/3 21/21/3 22/22/3 23/23/3 24/24/3 +f 25/25/4 26/26/4 27/27/4 28/28/4 29/29/4 30/30/4 31/31/4 32/32/4 +s 1 +f 33/33/5 34/34/6 35/35/7 36/36/8 37/37/9 +f 38/38/10 39/39/11 40/40/12 41/41/13 42/42/14 +f 41/41/13 43/43/15 44/44/16 42/42/14 +f 35/45/7 34/46/6 45/47/17 46/48/18 +f 39/49/11 38/50/10 47/51/2 48/52/19 +f 37/53/9 48/52/19 47/51/2 33/54/5 +f 36/55/8 49/56/20 50/57/21 40/58/12 39/59/11 48/60/19 37/61/9 +f 10/62/22 1/63/23 8/64/24 11/65/25 +f 9/66/26 2/67/27 1/63/23 10/62/22 +f 11/65/25 8/64/24 7/68/28 12/69/29 +f 12/70/29 7/71/28 6/72/30 13/73/31 +f 13/73/31 6/72/30 5/74/32 14/75/33 +f 14/75/33 5/74/32 4/76/34 15/77/35 +f 15/77/35 4/76/34 3/78/36 16/79/37 +f 16/79/37 3/78/36 2/67/27 9/66/26 +f 51/80/38 52/81/39 53/82/40 54/83/41 +f 55/84/42 56/85/43 57/86/44 58/87/45 +f 59/88/46 60/89/47 46/48/18 45/47/17 61/90/17 53/91/40 +f 62/92/48 59/88/46 53/91/40 52/93/39 +f 57/94/44 63/95/16 44/44/16 43/96/15 64/97/49 65/98/50 +f 60/89/47 66/99/51 49/100/20 36/101/8 35/45/7 46/48/18 +f 67/102/52 62/103/48 52/104/39 58/105/45 +f 66/99/51 68/106/53 50/107/21 49/100/20 +f 25/108/54 18/109/55 17/110/56 26/111/57 +f 26/111/57 17/110/56 24/112/58 27/113/59 +f 27/113/59 24/112/58 23/114/60 28/115/61 +f 28/116/61 23/117/60 22/118/62 29/119/63 +f 29/119/63 22/118/62 21/120/64 30/121/65 +f 30/121/65 21/120/64 20/122/66 31/123/67 +f 31/123/67 20/122/66 19/124/68 32/125/69 +f 32/125/69 19/124/68 18/109/55 25/108/54 +f 38/126/10 42/127/14 69/128/14 70/129/14 71/130/10 +f 72/131/6 34/132/6 33/133/5 73/134/5 74/135/6 +f 67/102/52 58/105/45 57/94/44 65/98/50 +f 73/134/5 33/133/5 47/136/2 38/126/10 71/130/10 +f 54/83/41 53/82/40 61/137/17 72/131/6 74/135/6 +f 56/85/43 70/129/14 69/128/14 63/138/16 57/86/44 +f 55/84/42 58/87/45 52/139/39 51/140/38 +f 42/127/14 44/44/16 63/138/16 69/128/14 +f 72/131/6 61/137/17 45/47/17 34/132/6 +f 64/97/49 43/96/15 41/141/13 40/142/12 50/107/21 68/106/53 diff --git a/mods/pipeworks/models/pipeworks_spigot_pouring.obj b/mods/pipeworks/models/pipeworks_spigot_pouring.obj new file mode 100644 index 00000000..8b72f187 --- /dev/null +++ b/mods/pipeworks/models/pipeworks_spigot_pouring.obj @@ -0,0 +1,3652 @@ +# Blender v2.78 (sub 0) OBJ File: 'pipe-spigot-pouring.blend' +# www.blender.org +o Pipe_Cylinder.002 +v 0.063954 -0.562500 -0.052486 +v 0.072965 -0.562500 -0.039001 +v 0.079172 -0.562500 -0.024017 +v 0.087512 -0.562500 -0.008619 +v 0.082336 -0.562500 0.008109 +v 0.079172 -0.562500 0.024016 +v 0.081939 -0.562500 0.043797 +v 0.070944 -0.562500 0.058222 +v 0.055844 -0.562500 0.068045 +v 0.024947 -0.562500 0.082240 +v -0.008806 -0.562500 0.089411 +v -0.025118 -0.562500 0.082803 +v -0.056049 -0.562500 0.068296 +v -0.063954 -0.562500 0.052486 +v -0.072965 -0.562500 0.039001 +v -0.079172 -0.562500 0.024016 +v -0.082336 -0.562500 0.008109 +v -0.082896 -0.562500 -0.025146 +v -0.081517 -0.562500 -0.043572 +v -0.063954 -0.562500 -0.052486 +v -0.039001 -0.562500 -0.072965 +v -0.009011 -0.562500 -0.091488 +v 0.008706 -0.562500 -0.088396 +v 0.024016 -0.562500 -0.079172 +v 0.039001 -0.562500 -0.072965 +v 0.052486 -0.562500 -0.063955 +v 0.043282 -0.562500 0.080974 +v 0.008594 -0.562500 0.087260 +v -0.043405 -0.562500 0.081205 +v -0.090830 -0.562500 -0.008946 +v -0.052486 -0.562500 -0.063955 +v -0.024017 -0.562500 -0.079172 +v -0.024017 -0.312500 0.079172 +v -0.041525 -0.312500 0.077688 +v -0.056656 -0.312500 0.069035 +v -0.063954 -0.312500 0.052486 +v -0.072965 -0.312500 0.039001 +v 0.079213 -0.312500 -0.042340 +v 0.082257 -0.312500 -0.024953 +v 0.082336 -0.312500 -0.008110 +v 0.082336 -0.312500 0.008109 +v 0.084638 -0.312500 0.025675 +v 0.072965 -0.312500 0.039001 +v 0.063954 -0.312500 0.052486 +v 0.052486 -0.312500 0.063954 +v 0.042510 -0.312500 0.079530 +v 0.027039 -0.312500 0.089135 +v 0.008281 -0.312500 0.084079 +v -0.008109 -0.312500 0.082336 +v -0.039001 -0.312500 -0.072965 +v -0.026378 -0.312500 -0.086958 +v -0.009219 -0.312500 -0.093599 +v 0.008559 -0.312500 -0.086898 +v 0.025408 -0.312500 -0.083759 +v 0.039001 -0.312500 -0.072965 +v 0.052486 -0.312500 -0.063955 +v 0.070496 -0.312500 -0.057855 +v -0.086647 -0.312500 0.026284 +v -0.087023 -0.312500 0.008571 +v -0.082336 -0.312500 -0.008109 +v -0.079172 -0.312500 -0.024017 +v -0.082584 -0.312500 -0.044142 +v -0.070392 -0.312500 -0.057769 +v -0.052486 -0.312500 -0.063955 +v -0.079172 -0.437500 0.024016 +v -0.072965 -0.437500 0.039001 +v 0.039001 -0.437500 0.072965 +v 0.052486 -0.437500 0.063954 +v -0.082336 -0.437500 0.008109 +v 0.024017 -0.437500 0.079172 +v -0.091771 -0.437500 -0.009039 +v 0.008109 -0.437500 0.082336 +v -0.042869 -0.437500 0.080202 +v -0.024910 -0.437500 0.082118 +v -0.079172 -0.437500 -0.024017 +v -0.008109 -0.437500 0.082336 +v -0.056091 -0.437500 0.068348 +v -0.072965 -0.437500 -0.039001 +v -0.063954 -0.437500 0.052486 +v -0.063954 -0.437500 -0.052486 +v -0.024017 -0.437500 -0.079172 +v -0.042431 -0.437500 -0.079382 +v -0.052486 -0.437500 -0.063955 +v -0.008109 -0.437500 -0.082336 +v 0.089481 -0.437500 -0.027144 +v 0.072965 -0.437500 -0.039001 +v 0.008109 -0.437500 -0.082336 +v 0.082336 -0.437500 -0.008110 +v 0.024016 -0.437500 -0.079172 +v 0.082336 -0.437500 0.008109 +v 0.039001 -0.437500 -0.072965 +v 0.086331 -0.437500 0.026188 +v 0.052486 -0.437500 -0.063955 +v 0.072965 -0.437500 0.039001 +v 0.063954 -0.437500 -0.052486 +v 0.063955 -0.437500 0.052486 +v -0.089559 -0.375000 0.027167 +v -0.072965 -0.500000 0.039001 +v 0.041658 -0.375000 0.077937 +v 0.052486 -0.500000 0.063954 +v -0.091009 -0.375000 0.008964 +v 0.025856 -0.375000 0.085236 +v -0.084890 -0.375000 -0.008361 +v 0.008109 -0.375000 0.082336 +v -0.039001 -0.375000 0.072965 +v -0.024016 -0.500000 0.079172 +v -0.079172 -0.375000 -0.024017 +v -0.008109 -0.375000 0.082336 +v -0.052486 -0.375000 0.063954 +v -0.072965 -0.375000 -0.039001 +v -0.072054 -0.375000 0.059133 +v -0.063954 -0.375000 -0.052486 +v -0.024017 -0.375000 -0.079172 +v -0.039001 -0.500000 -0.072965 +v -0.055379 -0.375000 -0.067479 +v -0.008705 -0.375000 -0.088388 +v 0.079172 -0.375000 -0.024017 +v 0.072965 -0.500000 -0.039001 +v 0.008545 -0.375000 -0.086764 +v 0.088919 -0.375000 -0.008758 +v 0.025709 -0.375000 -0.084751 +v 0.082336 -0.375000 0.008109 +v 0.039001 -0.375000 -0.072965 +v 0.079172 -0.375000 0.024016 +v 0.052486 -0.375000 -0.063955 +v 0.072965 -0.375000 0.039001 +v 0.072446 -0.375000 -0.059455 +v 0.063955 -0.375000 0.052486 +v -0.079172 -0.500000 0.024016 +v -0.078306 -0.375000 0.041855 +v 0.039001 -0.500000 0.072965 +v 0.052486 -0.375000 0.063954 +v -0.082336 -0.500000 0.008109 +v 0.024452 -0.500000 0.080606 +v -0.082336 -0.500000 -0.008109 +v 0.008367 -0.500000 0.084954 +v -0.042913 -0.500000 0.080284 +v -0.026708 -0.375000 0.088046 +v -0.079172 -0.500000 -0.024017 +v -0.008109 -0.500000 0.082336 +v -0.052486 -0.500000 0.063954 +v -0.075559 -0.500000 -0.040387 +v -0.063954 -0.500000 0.052486 +v -0.063954 -0.500000 -0.052486 +v -0.024017 -0.500000 -0.079172 +v -0.039001 -0.375000 -0.072965 +v -0.052486 -0.500000 -0.063955 +v -0.008109 -0.500000 -0.082336 +v 0.089623 -0.500000 -0.027187 +v 0.072965 -0.375000 -0.039001 +v 0.008109 -0.500000 -0.082336 +v 0.088138 -0.500000 -0.008681 +v 0.024016 -0.500000 -0.079172 +v 0.087274 -0.500000 0.008596 +v 0.044144 -0.500000 -0.082588 +v 0.079172 -0.500000 0.024016 +v 0.055078 -0.500000 -0.067113 +v 0.072965 -0.500000 0.039001 +v 0.063954 -0.500000 -0.052486 +v 0.063955 -0.500000 0.052486 +v -0.085890 -0.343750 0.026054 +v -0.072965 -0.531250 0.039001 +v 0.043844 -0.343750 0.082026 +v 0.052486 -0.531250 0.063954 +v -0.085566 -0.343750 0.008428 +v 0.026458 -0.343750 0.087219 +v -0.082336 -0.343750 -0.008109 +v 0.008898 -0.343750 0.090345 +v -0.039001 -0.343750 0.072965 +v -0.024016 -0.531250 0.079172 +v -0.079172 -0.343750 -0.024017 +v -0.008109 -0.343750 0.082336 +v -0.052486 -0.343750 0.063954 +v -0.072965 -0.343750 -0.039001 +v -0.063954 -0.343750 0.052486 +v -0.063954 -0.343750 -0.052486 +v -0.024017 -0.343750 -0.079172 +v -0.039001 -0.531250 -0.072965 +v -0.052486 -0.343750 -0.063955 +v -0.008859 -0.343750 -0.089948 +v 0.079172 -0.343750 -0.024017 +v 0.072965 -0.531250 -0.039001 +v 0.009078 -0.343750 -0.092166 +v 0.082336 -0.343750 -0.008110 +v 0.025304 -0.343750 -0.083417 +v 0.082336 -0.343750 0.008109 +v 0.039001 -0.343750 -0.072965 +v 0.079172 -0.343750 0.024016 +v 0.052486 -0.343750 -0.063955 +v 0.072965 -0.343750 0.039001 +v 0.069455 -0.343750 -0.057001 +v 0.063955 -0.343750 0.052486 +v -0.079172 -0.468750 0.024016 +v -0.080318 -0.406250 0.042931 +v 0.042543 -0.468750 0.079592 +v 0.052486 -0.406250 0.063954 +v -0.082336 -0.468750 0.008109 +v 0.024017 -0.468750 0.079172 +v -0.091973 -0.468750 -0.009059 +v 0.008109 -0.468750 0.082336 +v -0.041368 -0.468750 0.077395 +v -0.025282 -0.406250 0.083342 +v -0.082574 -0.468750 -0.025049 +v -0.008109 -0.468750 0.082336 +v -0.058255 -0.468750 0.070983 +v -0.072965 -0.468750 -0.039001 +v -0.063954 -0.468750 0.052486 +v -0.063954 -0.468750 -0.052486 +v -0.026990 -0.468750 -0.088976 +v -0.042373 -0.406250 -0.079273 +v -0.052486 -0.468750 -0.063955 +v -0.008109 -0.468750 -0.082336 +v 0.084698 -0.468750 -0.025693 +v 0.072965 -0.406250 -0.039001 +v 0.008109 -0.468750 -0.082336 +v 0.082336 -0.468750 -0.008110 +v 0.024016 -0.468750 -0.079172 +v 0.082336 -0.468750 0.008109 +v 0.039001 -0.468750 -0.072965 +v 0.084814 -0.468750 0.025728 +v 0.052486 -0.468750 -0.063955 +v 0.072965 -0.468750 0.039001 +v 0.063954 -0.468750 -0.052486 +v 0.063955 -0.468750 0.052486 +v -0.079172 -0.406250 0.024016 +v -0.072965 -0.468750 0.039001 +v 0.039001 -0.406250 0.072965 +v 0.059744 -0.468750 0.072798 +v -0.082336 -0.406250 0.008109 +v 0.025970 -0.406250 0.085610 +v -0.092977 -0.406250 -0.009157 +v 0.008109 -0.406250 0.082336 +v -0.041609 -0.406250 0.077846 +v -0.025075 -0.468750 0.082663 +v -0.079172 -0.406250 -0.024017 +v -0.008109 -0.406250 0.082336 +v -0.057068 -0.406250 0.069537 +v -0.072965 -0.406250 -0.039001 +v -0.068019 -0.406250 0.055822 +v -0.063954 -0.406250 -0.052486 +v -0.024017 -0.406250 -0.079172 +v -0.043742 -0.468750 -0.081836 +v -0.052486 -0.406250 -0.063955 +v -0.008109 -0.406250 -0.082336 +v 0.087000 -0.406250 -0.026391 +v 0.072965 -0.468750 -0.039001 +v 0.008451 -0.406250 -0.085809 +v 0.084423 -0.406250 -0.008315 +v 0.025125 -0.406250 -0.082826 +v 0.082336 -0.406250 0.008109 +v 0.042657 -0.406250 -0.079806 +v 0.079172 -0.406250 0.024016 +v 0.053530 -0.406250 -0.065227 +v 0.072965 -0.406250 0.039001 +v 0.063954 -0.406250 -0.052486 +v 0.063955 -0.406250 0.052486 +v -0.079172 -0.531250 0.024016 +v -0.072965 -0.343750 0.039001 +v 0.039001 -0.531250 0.072965 +v 0.052486 -0.343750 0.063954 +v -0.082336 -0.531250 0.008109 +v 0.027240 -0.531250 0.089798 +v -0.082336 -0.531250 -0.008109 +v 0.009195 -0.531250 0.093355 +v -0.041465 -0.531250 0.077575 +v -0.024017 -0.343750 0.079172 +v -0.079172 -0.531250 -0.024017 +v -0.008109 -0.531250 0.082336 +v -0.052486 -0.531250 0.063954 +v -0.082864 -0.531250 -0.044292 +v -0.063954 -0.531250 0.052486 +v -0.063954 -0.531250 -0.052486 +v -0.024017 -0.531250 -0.079172 +v -0.039001 -0.343750 -0.072965 +v -0.052486 -0.531250 -0.063955 +v -0.008109 -0.531250 -0.082336 +v 0.079172 -0.531250 -0.024017 +v 0.072965 -0.343750 -0.039001 +v 0.008109 -0.531250 -0.082336 +v 0.092902 -0.531250 -0.009150 +v 0.024016 -0.531250 -0.079172 +v 0.082336 -0.531250 0.008109 +v 0.039001 -0.531250 -0.072965 +v 0.079172 -0.531250 0.024016 +v 0.052486 -0.531250 -0.063955 +v 0.072965 -0.531250 0.039001 +v 0.063954 -0.531250 -0.052486 +v 0.065222 -0.531250 0.053526 +v 0.120197 0.036461 0.437501 +v 0.125000 0.012312 0.437501 +v 0.125000 -0.012311 0.437501 +v 0.120197 -0.036461 0.437501 +v 0.110774 0.059210 0.437501 +v 0.131836 0.012985 0.468750 +v 0.126770 0.038455 0.468750 +v 0.131836 -0.012985 0.468750 +v 0.110774 -0.059210 0.437501 +v 0.126770 -0.038455 0.468750 +v 0.097094 0.079683 0.437501 +v 0.116832 0.062448 0.468750 +v 0.097094 -0.079683 0.437501 +v 0.116832 -0.062448 0.468750 +v 0.079683 0.097094 0.437501 +v 0.102404 0.084041 0.468750 +v 0.079683 -0.097094 0.437501 +v 0.102404 -0.084041 0.468750 +v 0.059210 0.110774 0.437501 +v 0.084041 0.102404 0.468750 +v 0.059210 -0.110774 0.437501 +v 0.084041 -0.102404 0.468750 +v 0.036461 0.120197 0.437501 +v 0.062448 0.116832 0.468750 +v 0.036461 -0.120197 0.437501 +v 0.062448 -0.116832 0.468750 +v 0.012311 0.125000 0.437501 +v 0.038455 0.126770 0.468750 +v 0.012311 -0.125001 0.437501 +v 0.038455 -0.126770 0.468750 +v -0.012312 0.125000 0.437501 +v 0.012985 0.131836 0.468750 +v -0.012312 -0.125001 0.437501 +v 0.012985 -0.131837 0.468750 +v -0.036461 0.120197 0.437501 +v -0.012985 0.131836 0.468750 +v -0.036461 -0.120197 0.437501 +v -0.012985 -0.131837 0.468750 +v -0.059210 0.110774 0.437501 +v -0.038455 0.126770 0.468750 +v -0.059210 -0.110774 0.437501 +v -0.038455 -0.126770 0.468750 +v -0.079683 0.097094 0.437501 +v -0.062448 0.116832 0.468750 +v -0.079683 -0.097094 0.437501 +v -0.062448 -0.116832 0.468750 +v -0.097094 0.079683 0.437501 +v -0.084041 0.102404 0.468750 +v -0.097094 -0.079683 0.437501 +v -0.084041 -0.102404 0.468750 +v -0.110774 0.059210 0.437501 +v -0.102404 0.084041 0.468750 +v -0.110774 -0.059210 0.437501 +v -0.102404 -0.084041 0.468750 +v -0.120197 0.036461 0.437501 +v -0.116832 0.062448 0.468750 +v -0.120197 -0.036461 0.437501 +v -0.116832 -0.062448 0.468750 +v -0.125001 0.012311 0.437501 +v -0.126770 0.038455 0.468750 +v -0.125001 -0.012311 0.437501 +v -0.126770 -0.038455 0.468750 +v -0.131837 0.012985 0.468750 +v -0.131837 -0.012985 0.468750 +v -0.063644 0.130078 0.460912 +v -0.063644 0.130078 0.468749 +v -0.062467 0.139022 0.468749 +v -0.062467 0.139022 0.460912 +v -0.054133 0.142474 0.460912 +v -0.046976 0.136982 0.460912 +v -0.048153 0.128039 0.460912 +v -0.056487 0.124587 0.460912 +v -0.056487 0.124587 0.468749 +v -0.054133 0.142474 0.468749 +v -0.046976 0.136982 0.468749 +v -0.048153 0.128039 0.468749 +v -0.136982 0.046976 0.460912 +v -0.136982 0.046976 0.468749 +v -0.142474 0.054133 0.468749 +v -0.142474 0.054133 0.460912 +v -0.139022 0.062467 0.460912 +v -0.130078 0.063644 0.460912 +v -0.124587 0.056488 0.460912 +v -0.128039 0.048154 0.460912 +v -0.128039 0.048154 0.468749 +v -0.139022 0.062467 0.468749 +v -0.130078 0.063644 0.468749 +v -0.124587 0.056488 0.468749 +v -0.130078 -0.063644 0.460912 +v -0.130078 -0.063644 0.468749 +v -0.139022 -0.062467 0.468749 +v -0.139022 -0.062467 0.460912 +v -0.142474 -0.054132 0.460912 +v -0.136982 -0.046976 0.460912 +v -0.128039 -0.048153 0.460912 +v -0.124587 -0.056487 0.460912 +v -0.124587 -0.056487 0.468749 +v -0.142474 -0.054132 0.468749 +v -0.136982 -0.046976 0.468749 +v -0.128039 -0.048153 0.468749 +v -0.046976 -0.136982 0.460912 +v -0.046976 -0.136982 0.468749 +v -0.054133 -0.142474 0.468749 +v -0.054133 -0.142474 0.460912 +v -0.062467 -0.139022 0.460912 +v -0.063644 -0.130078 0.460912 +v -0.056488 -0.124587 0.460912 +v -0.048154 -0.128039 0.460912 +v -0.048154 -0.128039 0.468749 +v -0.062467 -0.139022 0.468749 +v -0.063644 -0.130078 0.468749 +v -0.056488 -0.124587 0.468749 +v 0.063644 -0.130078 0.460912 +v 0.063644 -0.130078 0.468749 +v 0.062466 -0.139022 0.468749 +v 0.062466 -0.139022 0.460912 +v 0.054132 -0.142474 0.460912 +v 0.046976 -0.136982 0.460912 +v 0.048153 -0.128039 0.460912 +v 0.056487 -0.124587 0.460912 +v 0.056487 -0.124587 0.468749 +v 0.054132 -0.142474 0.468749 +v 0.046976 -0.136982 0.468749 +v 0.048153 -0.128039 0.468749 +v 0.136982 -0.046976 0.460912 +v 0.136982 -0.046976 0.468749 +v 0.142474 -0.054133 0.468749 +v 0.142474 -0.054133 0.460912 +v 0.139022 -0.062467 0.460912 +v 0.130078 -0.063644 0.460912 +v 0.124586 -0.056488 0.460912 +v 0.128039 -0.048153 0.460912 +v 0.128039 -0.048153 0.468749 +v 0.139022 -0.062467 0.468749 +v 0.130078 -0.063644 0.468749 +v 0.124586 -0.056488 0.468749 +v 0.130078 0.063644 0.460912 +v 0.130078 0.063644 0.468749 +v 0.139022 0.062467 0.468749 +v 0.139022 0.062467 0.460912 +v 0.142474 0.054132 0.460912 +v 0.136982 0.046976 0.460912 +v 0.128039 0.048153 0.460912 +v 0.124587 0.056487 0.460912 +v 0.124587 0.056487 0.468749 +v 0.142474 0.054132 0.468749 +v 0.136982 0.046976 0.468749 +v 0.128039 0.048153 0.468749 +v 0.046976 0.136982 0.460912 +v 0.046976 0.136982 0.468749 +v 0.054133 0.142474 0.468749 +v 0.054133 0.142474 0.460912 +v 0.062467 0.139022 0.460912 +v 0.063644 0.130078 0.460912 +v 0.056488 0.124587 0.460912 +v 0.048153 0.128039 0.460912 +v 0.048153 0.128039 0.468749 +v 0.062467 0.139022 0.468749 +v 0.063644 0.130078 0.468749 +v 0.056487 0.124587 0.468749 +v 0.125000 0.012312 0.012311 +v 0.012311 -0.125001 0.125000 +v -0.059210 -0.110774 0.110774 +v -0.079683 -0.097094 0.097094 +v -0.097094 -0.079683 0.079683 +v -0.120197 -0.036461 0.036461 +v 0.125000 -0.012312 0.012312 +v 0.120197 -0.036461 0.036461 +v 0.110774 -0.059210 0.059210 +v 0.097094 -0.079683 0.079683 +v 0.079683 -0.097094 0.097094 +v 0.059210 -0.110774 0.110774 +v 0.036461 -0.120197 0.120197 +v -0.012311 -0.125000 0.125000 +v -0.036461 -0.120197 0.120197 +v -0.110774 -0.059210 0.059210 +v -0.125000 -0.012311 0.012311 +v -0.125000 0.012312 0.012312 +v 0.074012 -0.138466 0.468750 +v 0.045576 -0.150245 0.468750 +v 0.015389 -0.156250 0.468750 +v 0.099603 -0.121367 0.468750 +v -0.015389 -0.156250 0.468750 +v 0.138467 -0.074012 0.468750 +v 0.121367 -0.099603 0.468750 +v 0.099603 -0.121367 0.500000 +v 0.074012 -0.138467 0.500000 +v 0.045576 -0.150245 0.500000 +v 0.015389 -0.156250 0.500000 +v -0.015389 -0.156250 0.500000 +v 0.150245 -0.045576 0.468750 +v 0.121367 -0.099603 0.500000 +v -0.045576 -0.150245 0.468750 +v -0.045576 -0.150245 0.500000 +v 0.156250 -0.015389 0.468750 +v 0.150245 -0.045576 0.500000 +v 0.138466 -0.074012 0.500000 +v -0.074012 -0.138467 0.468750 +v -0.074012 -0.138467 0.500000 +v 0.156249 0.015389 0.468750 +v 0.156250 -0.015389 0.500000 +v -0.099603 -0.121367 0.468750 +v -0.099603 -0.121367 0.500000 +v 0.150245 0.045576 0.468750 +v 0.156250 0.015389 0.500000 +v -0.121367 -0.099603 0.468750 +v -0.121367 -0.099603 0.500000 +v 0.138467 0.074012 0.468750 +v 0.150245 0.045576 0.500000 +v -0.150245 -0.045576 0.468750 +v -0.138467 -0.074012 0.468750 +v -0.138467 -0.074012 0.500000 +v 0.121367 0.099603 0.468750 +v 0.138467 0.074012 0.500000 +v -0.156250 -0.015389 0.468750 +v -0.150245 -0.045576 0.500000 +v 0.099603 0.121367 0.468750 +v 0.121367 0.099603 0.500000 +v -0.156250 0.015389 0.468750 +v -0.156250 -0.015389 0.500000 +v 0.074012 0.138466 0.468750 +v 0.099603 0.121367 0.500000 +v -0.150245 0.045576 0.468750 +v -0.156250 0.015389 0.500000 +v 0.045576 0.150245 0.468750 +v 0.074012 0.138466 0.500000 +v -0.138467 0.074012 0.468750 +v -0.150245 0.045576 0.500000 +v 0.015389 0.156249 0.468750 +v 0.045576 0.150245 0.500000 +v -0.015389 0.156250 0.500000 +v -0.121367 0.099603 0.468750 +v -0.138467 0.074012 0.500000 +v -0.015389 0.156250 0.468750 +v 0.015389 0.156250 0.500000 +v -0.074012 0.138467 0.500000 +v -0.045576 0.150245 0.500000 +v -0.099603 0.121367 0.500000 +v -0.121367 0.099603 0.500000 +v -0.045576 0.150245 0.468750 +v -0.099603 0.121367 0.468750 +v -0.074012 0.138467 0.468750 +v -0.108578 0.095821 0.460912 +v -0.108578 0.095821 0.468749 +v -0.110913 0.104534 0.468749 +v -0.110913 0.104534 0.460912 +v -0.104534 0.110913 0.460912 +v -0.095821 0.108578 0.460912 +v -0.093486 0.099865 0.460912 +v -0.099865 0.093486 0.460912 +v -0.099865 0.093486 0.468749 +v -0.104534 0.110913 0.468749 +v -0.095821 0.108578 0.468749 +v -0.093486 0.099865 0.468749 +v -0.144532 -0.009021 0.460912 +v -0.144532 -0.009021 0.468749 +v -0.152344 -0.004510 0.468749 +v -0.152344 -0.004510 0.460912 +v -0.152344 0.004510 0.460912 +v -0.144532 0.009021 0.460912 +v -0.136720 0.004510 0.460912 +v -0.136720 -0.004510 0.460912 +v -0.136720 -0.004510 0.468749 +v -0.152344 0.004510 0.468749 +v -0.144532 0.009021 0.468749 +v -0.136720 0.004510 0.468749 +v -0.095821 -0.108578 0.460912 +v -0.095821 -0.108578 0.468749 +v -0.104535 -0.110913 0.468749 +v -0.104535 -0.110913 0.460912 +v -0.110913 -0.104534 0.460912 +v -0.108578 -0.095821 0.460912 +v -0.099865 -0.093486 0.460912 +v -0.093486 -0.099865 0.460912 +v -0.093486 -0.099865 0.468749 +v -0.110913 -0.104534 0.468749 +v -0.108578 -0.095821 0.468749 +v -0.099865 -0.093486 0.468749 +v 0.009021 -0.144532 0.460912 +v 0.009021 -0.144532 0.468749 +v 0.004510 -0.152344 0.468749 +v 0.004510 -0.152344 0.460912 +v -0.004511 -0.152344 0.460912 +v -0.009021 -0.144532 0.460912 +v -0.004511 -0.136720 0.460912 +v 0.004510 -0.136720 0.460912 +v 0.004510 -0.136720 0.468749 +v -0.004511 -0.152344 0.468749 +v -0.009021 -0.144532 0.468749 +v -0.004511 -0.136720 0.468749 +v 0.108578 -0.095821 0.460912 +v 0.108578 -0.095821 0.468749 +v 0.110913 -0.104534 0.468749 +v 0.110913 -0.104534 0.460912 +v 0.104534 -0.110913 0.460912 +v 0.095821 -0.108578 0.460912 +v 0.093486 -0.099865 0.460912 +v 0.099865 -0.093486 0.460912 +v 0.099865 -0.093486 0.468749 +v 0.104534 -0.110913 0.468749 +v 0.095821 -0.108578 0.468749 +v 0.093486 -0.099865 0.468749 +v 0.144532 0.009021 0.460912 +v 0.144532 0.009021 0.468749 +v 0.152344 0.004510 0.468749 +v 0.152344 0.004510 0.460912 +v 0.152344 -0.004510 0.460912 +v 0.144532 -0.009021 0.460912 +v 0.136720 -0.004510 0.460912 +v 0.136720 0.004510 0.460912 +v 0.136720 0.004510 0.468749 +v 0.152344 -0.004510 0.468749 +v 0.144532 -0.009021 0.468749 +v 0.136720 -0.004510 0.468749 +v 0.095821 0.108578 0.460912 +v 0.095821 0.108578 0.468749 +v 0.104534 0.110913 0.468749 +v 0.104534 0.110913 0.460912 +v 0.110913 0.104534 0.460912 +v 0.108578 0.095821 0.460912 +v 0.099865 0.093486 0.460912 +v 0.093486 0.099865 0.460912 +v 0.093486 0.099865 0.468749 +v 0.110913 0.104534 0.468749 +v 0.108578 0.095821 0.468749 +v 0.099865 0.093486 0.468749 +v -0.009021 0.144532 0.460912 +v -0.009021 0.144532 0.468749 +v -0.004510 0.152344 0.468749 +v -0.004510 0.152344 0.460912 +v 0.004510 0.152344 0.460912 +v 0.009021 0.144532 0.460912 +v 0.004510 0.136720 0.460912 +v -0.004510 0.136720 0.460912 +v -0.004510 0.136720 0.468749 +v 0.004510 0.152344 0.468749 +v 0.009021 0.144532 0.468749 +v 0.004510 0.136720 0.468749 +v 0.125000 0.012312 -0.000000 +v -0.120197 0.036461 0.000000 +v -0.110774 0.059210 -0.000000 +v -0.097094 0.079683 -0.000000 +v -0.036461 0.120197 -0.000000 +v -0.059210 0.110774 -0.000000 +v -0.079683 0.097094 -0.000000 +v 0.036461 0.120197 -0.000000 +v -0.125000 -0.012311 0.000000 +v 0.059210 0.110774 -0.000000 +v 0.079683 0.097094 -0.000000 +v 0.097094 0.079683 -0.000000 +v 0.110774 0.059210 -0.000000 +v 0.120197 0.036461 0.000000 +v -0.125000 0.012312 0.000000 +v -0.012311 0.125000 -0.000000 +v 0.012312 0.125000 -0.000000 +v 0.125000 -0.012312 0.000000 +v 0.000000 0.125000 -0.000000 +v 0.125000 0.000000 0.000000 +v -0.125000 0.000000 0.012312 +v -0.038455 -0.187500 -0.126770 +v -0.012985 -0.187500 -0.131837 +v 0.012984 -0.187500 -0.131837 +v 0.038455 -0.187500 -0.126770 +v 0.062448 -0.187500 -0.116832 +v 0.084041 -0.187500 -0.102404 +v 0.102404 -0.187500 -0.084041 +v 0.116832 -0.187500 -0.062448 +v 0.126770 -0.187500 -0.038455 +v 0.131837 -0.187500 -0.012985 +v 0.131837 -0.187500 0.012985 +v 0.116832 -0.187500 0.062448 +v 0.102404 -0.187500 0.084041 +v 0.084041 -0.187500 0.102404 +v 0.062448 -0.187500 0.116832 +v 0.038455 -0.187500 0.126770 +v 0.012985 -0.187500 0.131836 +v -0.012985 -0.187500 0.131836 +v -0.038455 -0.187500 0.126770 +v -0.062448 -0.187500 0.116832 +v -0.102404 -0.187500 0.084041 +v -0.084041 -0.187500 0.102404 +v -0.116832 -0.187500 0.062448 +v -0.126770 -0.187500 0.038455 +v -0.131837 -0.187500 -0.012985 +v -0.116832 -0.187500 -0.062448 +v -0.126770 -0.187500 -0.038455 +v -0.102404 -0.187500 -0.084041 +v -0.084041 -0.187500 -0.102404 +v -0.062448 -0.187500 -0.116832 +v 0.126770 -0.187500 0.038455 +v -0.131836 -0.187500 0.012985 +v -0.059210 -0.156251 -0.110774 +v -0.036461 -0.156251 -0.120197 +v -0.012312 -0.156251 -0.125001 +v 0.012311 -0.156251 -0.125001 +v 0.036461 -0.156251 -0.120197 +v 0.059210 -0.156251 -0.110774 +v 0.079683 -0.156251 -0.097094 +v 0.097094 -0.156251 -0.079683 +v 0.110774 -0.156251 -0.059210 +v 0.120197 -0.156251 -0.036461 +v 0.125001 -0.156251 -0.012312 +v 0.125000 -0.156251 0.012311 +v 0.120197 -0.156251 0.036461 +v 0.110774 -0.156251 0.059210 +v 0.097094 -0.156251 0.079683 +v 0.079683 -0.156251 0.097094 +v 0.059210 -0.156251 0.110774 +v 0.036461 -0.156251 0.120197 +v 0.012311 -0.156251 0.125000 +v -0.012311 -0.156251 0.125000 +v -0.036461 -0.156251 0.120197 +v -0.059210 -0.156251 0.110774 +v -0.079683 -0.156251 0.097094 +v -0.097094 -0.156251 0.079683 +v -0.110774 -0.156251 0.059210 +v -0.120197 -0.156251 0.036461 +v -0.125000 -0.156251 0.012311 +v -0.125000 -0.156251 -0.012311 +v -0.120197 -0.156251 -0.036461 +v -0.110774 -0.156251 -0.059210 +v -0.097094 -0.156251 -0.079683 +v -0.079683 -0.156251 -0.097094 +v 0.125000 -0.012312 -0.012312 +v -0.125000 -0.012312 -0.012312 +v 0.121367 -0.312500 -0.099603 +v 0.138467 -0.312500 -0.074012 +v 0.150245 -0.312500 -0.045577 +v 0.156250 -0.312500 -0.015390 +v 0.156250 -0.312500 0.015389 +v 0.150245 -0.312500 0.045576 +v 0.138467 -0.312500 0.074012 +v 0.121367 -0.312500 0.099603 +v 0.099603 -0.312500 0.121367 +v 0.045576 -0.312500 0.150245 +v -0.015389 -0.312500 0.156249 +v -0.045576 -0.312500 0.150245 +v -0.099603 -0.312500 0.121367 +v -0.121367 -0.312500 0.099603 +v -0.138467 -0.312500 0.074012 +v -0.150245 -0.312500 0.045576 +v -0.156250 -0.312500 0.015389 +v -0.150245 -0.312500 -0.045576 +v -0.138467 -0.312500 -0.074012 +v -0.121367 -0.312500 -0.099603 +v -0.074012 -0.312500 -0.138467 +v -0.015389 -0.312500 -0.156250 +v 0.015389 -0.312500 -0.156250 +v 0.045576 -0.312500 -0.150245 +v 0.074012 -0.312500 -0.138467 +v 0.099603 -0.312500 -0.121367 +v 0.074012 -0.312500 0.138466 +v 0.015389 -0.312500 0.156249 +v -0.074012 -0.312500 0.138467 +v -0.156250 -0.312500 -0.015389 +v -0.099603 -0.312500 -0.121367 +v -0.045576 -0.312500 -0.150245 +v 0.121367 -0.187500 -0.099603 +v 0.099603 -0.187500 -0.121367 +v 0.138467 -0.187500 -0.074012 +v 0.150245 -0.187500 -0.045577 +v 0.156250 -0.187500 -0.015390 +v 0.156250 -0.187500 0.015389 +v 0.150245 -0.187500 0.045576 +v 0.138467 -0.187500 0.074012 +v 0.121367 -0.187500 0.099603 +v 0.099603 -0.187500 0.121367 +v 0.074012 -0.187500 0.138466 +v 0.045576 -0.187500 0.150245 +v 0.015389 -0.187500 0.156249 +v -0.015389 -0.187500 0.156249 +v -0.045576 -0.187500 0.150245 +v -0.074012 -0.187500 0.138467 +v -0.099603 -0.187500 0.121367 +v -0.121367 -0.187500 0.099603 +v -0.138467 -0.187500 0.074012 +v -0.150245 -0.187500 0.045576 +v -0.156250 -0.187500 0.015389 +v -0.156250 -0.187500 -0.015389 +v -0.138467 -0.187500 -0.074012 +v -0.150245 -0.187500 -0.045576 +v -0.121367 -0.187500 -0.099604 +v -0.099603 -0.187500 -0.121367 +v -0.074012 -0.187500 -0.138467 +v -0.045576 -0.187500 -0.150245 +v 0.015389 -0.187500 -0.156250 +v -0.015389 -0.187500 -0.156250 +v 0.045576 -0.187500 -0.150245 +v 0.074012 -0.187500 -0.138467 +v 0.125000 -0.000000 -0.012312 +v -0.120197 0.000000 -0.036461 +v -0.110774 -0.000000 -0.059210 +v -0.097094 0.000000 -0.079683 +v -0.036461 -0.000000 -0.120197 +v -0.059210 -0.000000 -0.110774 +v -0.079683 -0.000000 -0.097094 +v 0.036461 -0.000000 -0.120197 +v 0.059210 -0.000000 -0.110774 +v 0.079683 -0.000000 -0.097094 +v 0.097094 -0.000000 -0.079683 +v 0.110774 -0.000000 -0.059210 +v 0.120197 0.000000 -0.036461 +v -0.125000 0.000000 -0.012312 +v -0.012311 -0.000000 -0.125000 +v 0.012312 -0.000000 -0.125000 +v 0.125000 0.000000 0.012312 +v 0.000000 -0.000000 -0.125000 +v 0.125000 0.002402 -0.012075 +v -0.120197 0.007113 -0.035761 +v -0.110774 0.011551 -0.058072 +v -0.097094 0.015545 -0.078152 +v -0.036461 0.023449 -0.117887 +v -0.059210 0.021611 -0.108646 +v -0.079683 0.018942 -0.095229 +v 0.036461 0.023449 -0.117887 +v 0.059210 0.021611 -0.108645 +v 0.079683 0.018942 -0.095228 +v 0.097094 0.015545 -0.078152 +v 0.110774 0.011551 -0.058072 +v 0.120197 0.007113 -0.035761 +v -0.125000 0.002402 -0.012075 +v -0.012311 0.024386 -0.122599 +v 0.012312 0.024386 -0.122599 +v 0.000000 0.024386 -0.122599 +v 0.125000 0.004711 -0.011375 +v -0.120197 0.013953 -0.033686 +v -0.110774 0.022659 -0.054703 +v -0.097094 0.030493 -0.073618 +v -0.036461 0.045997 -0.111047 +v -0.059210 0.042391 -0.102342 +v -0.079683 0.037156 -0.089703 +v 0.036461 0.045997 -0.111047 +v 0.059210 0.042391 -0.102342 +v 0.079683 0.037156 -0.089703 +v 0.097094 0.030493 -0.073618 +v 0.110774 0.022659 -0.054703 +v 0.120197 0.013953 -0.033686 +v -0.125000 0.004711 -0.011374 +v -0.012311 0.047836 -0.115485 +v 0.012312 0.047835 -0.115485 +v 0.000000 0.047836 -0.115485 +v 0.125000 0.006840 -0.010237 +v -0.120197 0.020257 -0.030317 +v -0.110774 0.032895 -0.049231 +v -0.097094 0.044270 -0.066254 +v -0.036461 0.066778 -0.099940 +v -0.059210 0.061543 -0.092105 +v -0.079683 0.053943 -0.080731 +v 0.036461 0.066778 -0.099940 +v 0.059210 0.061543 -0.092105 +v 0.079683 0.053943 -0.080731 +v 0.097094 0.044270 -0.066254 +v 0.110774 0.032895 -0.049231 +v 0.120197 0.020257 -0.030317 +v -0.125000 0.006840 -0.010237 +v -0.012311 0.069446 -0.103934 +v 0.012312 0.069446 -0.103934 +v 0.000000 0.069446 -0.103934 +v 0.125000 0.008706 -0.008706 +v -0.120197 0.025782 -0.025782 +v -0.110774 0.041868 -0.041868 +v -0.097094 0.056345 -0.056345 +v -0.036461 0.084992 -0.084992 +v -0.059210 0.078329 -0.078329 +v -0.079683 0.068656 -0.068656 +v 0.036461 0.084992 -0.084992 +v 0.059210 0.078329 -0.078329 +v 0.079683 0.068656 -0.068656 +v 0.097094 0.056345 -0.056345 +v 0.110774 0.041868 -0.041868 +v 0.120197 0.025782 -0.025782 +v -0.125000 0.008706 -0.008706 +v -0.012311 0.088389 -0.088389 +v 0.012312 0.088389 -0.088389 +v 0.000000 0.088389 -0.088389 +v -0.125000 0.000000 0.000000 +v 0.125000 0.010237 -0.006840 +v -0.120197 0.030317 -0.020257 +v -0.110774 0.049231 -0.032895 +v -0.097094 0.066254 -0.044270 +v -0.036461 0.099940 -0.066778 +v -0.059210 0.092105 -0.061543 +v -0.079683 0.080731 -0.053943 +v 0.036461 0.099940 -0.066778 +v 0.059210 0.092105 -0.061543 +v 0.079683 0.080731 -0.053943 +v 0.097094 0.066254 -0.044270 +v 0.110774 0.049231 -0.032895 +v 0.120197 0.030317 -0.020257 +v -0.125000 0.010237 -0.006840 +v -0.012311 0.103934 -0.069447 +v 0.012312 0.103934 -0.069447 +v 0.000000 0.103934 -0.069447 +v 0.125000 0.011375 -0.004712 +v -0.120197 0.033686 -0.013953 +v -0.110774 0.054703 -0.022659 +v -0.097094 0.073618 -0.030493 +v -0.036461 0.111047 -0.045997 +v -0.059210 0.102342 -0.042391 +v -0.079683 0.089703 -0.037156 +v 0.036461 0.111047 -0.045997 +v 0.059210 0.102342 -0.042391 +v 0.079683 0.089703 -0.037156 +v 0.097094 0.073618 -0.030493 +v 0.110774 0.054703 -0.022659 +v 0.120197 0.033686 -0.013953 +v -0.125000 0.011374 -0.004711 +v -0.012311 0.115485 -0.047836 +v 0.012312 0.115485 -0.047836 +v 0.000000 0.115485 -0.047836 +v 0.125000 0.012075 -0.002402 +v -0.120197 0.035761 -0.007113 +v -0.110774 0.058072 -0.011551 +v -0.097094 0.078152 -0.015545 +v -0.036461 0.117887 -0.023449 +v -0.059210 0.108646 -0.021611 +v -0.079683 0.095229 -0.018942 +v 0.036461 0.117887 -0.023449 +v 0.059210 0.108645 -0.021611 +v 0.079683 0.095229 -0.018942 +v 0.097094 0.078152 -0.015545 +v 0.110774 0.058072 -0.011551 +v 0.120197 0.035761 -0.007113 +v -0.125000 0.012075 -0.002402 +v -0.012311 0.122599 -0.024387 +v 0.012312 0.122599 -0.024387 +v 0.000000 0.122599 -0.024387 +vt 0.4883 0.6268 +vt 0.4533 0.6237 +vt 0.4291 0.5990 +vt 0.4139 0.5687 +vt 0.3967 0.5429 +vt 0.3848 0.5142 +vt 0.3787 0.4837 +vt 0.3624 0.4510 +vt 0.3776 0.4200 +vt 0.3803 0.3846 +vt 0.4139 0.3676 +vt 0.4359 0.3456 +vt 0.4617 0.3283 +vt 0.4905 0.3164 +vt 0.5192 0.2928 +vt 0.5532 0.2988 +vt 0.5825 0.3164 +vt 0.6112 0.3283 +vt 0.6370 0.3456 +vt 0.6590 0.3676 +vt 0.6763 0.3934 +vt 0.6882 0.4221 +vt 0.7042 0.4516 +vt 0.6942 0.4837 +vt 0.6882 0.5142 +vt 0.6935 0.5521 +vt 0.6724 0.5797 +vt 0.6435 0.5985 +vt 0.6194 0.6233 +vt 0.5843 0.6257 +vt 0.5529 0.6353 +vt 0.5196 0.6395 +vt 0.8125 0.1562 +vt 0.8125 0.1875 +vt 0.7812 0.1875 +vt 0.7812 0.1562 +vt 0.0938 0.1562 +vt 0.0938 0.1875 +vt 0.0625 0.1875 +vt 0.0625 0.1562 +vt 0.7500 0.1875 +vt 0.7500 0.1562 +vt 0.0312 0.1875 +vt 0.0312 0.1562 +vt 0.7188 0.1875 +vt 0.7188 0.1562 +vt 0.0000 0.1875 +vt 0.0000 0.1562 +vt 0.9375 0.1562 +vt 0.9375 0.1875 +vt 0.9062 0.1875 +vt 0.9062 0.1562 +vt 0.6875 0.1875 +vt 0.6875 0.1562 +vt 1.0000 0.1562 +vt 1.0000 0.1875 +vt 0.9688 0.1875 +vt 0.9688 0.1562 +vt 0.8750 0.1875 +vt 0.8750 0.1562 +vt 0.6562 0.1875 +vt 0.6562 0.1562 +vt 0.8438 0.1875 +vt 0.8438 0.1562 +vt 0.6250 0.1875 +vt 0.6250 0.1562 +vt 0.5625 0.1562 +vt 0.5625 0.1875 +vt 0.5312 0.1875 +vt 0.5312 0.1562 +vt 0.5938 0.1875 +vt 0.5938 0.1562 +vt 0.5000 0.1875 +vt 0.5000 0.1562 +vt 0.3125 0.1562 +vt 0.3125 0.1875 +vt 0.2812 0.1875 +vt 0.2812 0.1562 +vt 0.4688 0.1875 +vt 0.4688 0.1562 +vt 0.2500 0.1875 +vt 0.2500 0.1562 +vt 0.4375 0.1875 +vt 0.4375 0.1562 +vt 0.2188 0.1875 +vt 0.2188 0.1562 +vt 0.4062 0.1875 +vt 0.4062 0.1562 +vt 0.1875 0.1875 +vt 0.1875 0.1562 +vt 0.3750 0.1875 +vt 0.3750 0.1562 +vt 0.1562 0.1875 +vt 0.1562 0.1562 +vt 0.3438 0.1875 +vt 0.3438 0.1562 +vt 0.1250 0.1875 +vt 0.1250 0.1562 +vt 0.1250 0.0312 +vt 0.1250 0.0625 +vt 0.0938 0.0625 +vt 0.0938 0.0312 +vt 0.3438 0.0312 +vt 0.3438 0.0625 +vt 0.3125 0.0625 +vt 0.3125 0.0312 +vt 0.1562 0.0312 +vt 0.1562 0.0625 +vt 0.3750 0.0312 +vt 0.3750 0.0625 +vt 0.1875 0.0312 +vt 0.1875 0.0625 +vt 0.4062 0.0312 +vt 0.4062 0.0625 +vt 0.2188 0.0312 +vt 0.2188 0.0625 +vt 0.4375 0.0312 +vt 0.4375 0.0625 +vt 0.2500 0.0312 +vt 0.2500 0.0625 +vt 0.4688 0.0312 +vt 0.4688 0.0625 +vt 0.2812 0.0312 +vt 0.2812 0.0625 +vt 0.5000 0.0312 +vt 0.5000 0.0625 +vt 0.5938 0.0312 +vt 0.5938 0.0625 +vt 0.5625 0.0625 +vt 0.5625 0.0312 +vt 0.5312 0.0312 +vt 0.5312 0.0625 +vt 0.6250 0.0312 +vt 0.6250 0.0625 +vt 0.8438 0.0312 +vt 0.8438 0.0625 +vt 0.8125 0.0625 +vt 0.8125 0.0312 +vt 0.6562 0.0312 +vt 0.6562 0.0625 +vt 0.8750 0.0312 +vt 0.8750 0.0625 +vt 0.9688 0.0312 +vt 0.9688 0.0625 +vt 0.9375 0.0625 +vt 0.9375 0.0312 +vt 0.6875 0.0312 +vt 0.6875 0.0625 +vt 0.9062 0.0312 +vt 0.9062 0.0625 +vt 1.0000 0.0312 +vt 1.0000 0.0625 +vt 0.7188 0.0312 +vt 0.7188 0.0625 +vt 0.0312 0.0312 +vt 0.0312 0.0625 +vt 0.0000 0.0625 +vt 0.0000 0.0312 +vt 0.7500 0.0312 +vt 0.7500 0.0625 +vt 0.0625 0.0312 +vt 0.0625 0.0625 +vt 0.7812 0.0312 +vt 0.7812 0.0625 +vt 0.8125 0.9688 +vt 0.8125 1.0000 +vt 0.7812 1.0000 +vt 0.7812 0.9688 +vt 0.0938 0.9688 +vt 0.0938 1.0000 +vt 0.0625 1.0000 +vt 0.0625 0.9688 +vt 0.7500 1.0000 +vt 0.7500 0.9688 +vt 0.0312 1.0000 +vt 0.0312 0.9688 +vt 0.7188 1.0000 +vt 0.7188 0.9688 +vt 0.0000 1.0000 +vt 0.0000 0.9688 +vt 0.9375 0.9688 +vt 0.9375 1.0000 +vt 0.9062 1.0000 +vt 0.9062 0.9688 +vt 0.6875 1.0000 +vt 0.6875 0.9688 +vt 1.0000 0.9688 +vt 1.0000 1.0000 +vt 0.9688 1.0000 +vt 0.9688 0.9688 +vt 0.8750 1.0000 +vt 0.8750 0.9688 +vt 0.6562 1.0000 +vt 0.6562 0.9688 +vt 0.8438 1.0000 +vt 0.8438 0.9688 +vt 0.6250 1.0000 +vt 0.6250 0.9688 +vt 0.5625 0.9688 +vt 0.5625 1.0000 +vt 0.5312 1.0000 +vt 0.5312 0.9688 +vt 0.5938 1.0000 +vt 0.5938 0.9688 +vt 0.5000 1.0000 +vt 0.5000 0.9688 +vt 0.3125 0.9688 +vt 0.3125 1.0000 +vt 0.2812 1.0000 +vt 0.2812 0.9688 +vt 0.4688 1.0000 +vt 0.4688 0.9688 +vt 0.2500 1.0000 +vt 0.2500 0.9688 +vt 0.4375 1.0000 +vt 0.4375 0.9688 +vt 0.2188 1.0000 +vt 0.2188 0.9688 +vt 0.4062 1.0000 +vt 0.4062 0.9688 +vt 0.1875 1.0000 +vt 0.1875 0.9688 +vt 0.3750 1.0000 +vt 0.3750 0.9688 +vt 0.1562 1.0000 +vt 0.1562 0.9688 +vt 0.3438 1.0000 +vt 0.3438 0.9688 +vt 0.1250 1.0000 +vt 0.1250 0.9688 +vt 0.1250 0.0938 +vt 0.1250 0.1250 +vt 0.0938 0.1250 +vt 0.0938 0.0938 +vt 0.3438 0.0938 +vt 0.3438 0.1250 +vt 0.3125 0.1250 +vt 0.3125 0.0938 +vt 0.1562 0.0938 +vt 0.1562 0.1250 +vt 0.3750 0.0938 +vt 0.3750 0.1250 +vt 0.1875 0.0938 +vt 0.1875 0.1250 +vt 0.4062 0.0938 +vt 0.4062 0.1250 +vt 0.2188 0.0938 +vt 0.2188 0.1250 +vt 0.4375 0.0938 +vt 0.4375 0.1250 +vt 0.2500 0.0938 +vt 0.2500 0.1250 +vt 0.4688 0.0938 +vt 0.4688 0.1250 +vt 0.2812 0.0938 +vt 0.2812 0.1250 +vt 0.5000 0.0938 +vt 0.5000 0.1250 +vt 0.5938 0.0938 +vt 0.5938 0.1250 +vt 0.5625 0.1250 +vt 0.5625 0.0938 +vt 0.5312 0.0938 +vt 0.5312 0.1250 +vt 0.6250 0.0938 +vt 0.6250 0.1250 +vt 0.8438 0.0938 +vt 0.8438 0.1250 +vt 0.8125 0.1250 +vt 0.8125 0.0938 +vt 0.6562 0.0938 +vt 0.6562 0.1250 +vt 0.8750 0.0938 +vt 0.8750 0.1250 +vt 0.9688 0.0938 +vt 0.9688 0.1250 +vt 0.9375 0.1250 +vt 0.9375 0.0938 +vt 0.6875 0.0938 +vt 0.6875 0.1250 +vt 0.9062 0.0938 +vt 0.9062 0.1250 +vt 1.0000 0.0938 +vt 1.0000 0.1250 +vt 0.7188 0.0938 +vt 0.7188 0.1250 +vt 0.0312 0.0938 +vt 0.0312 0.1250 +vt 0.0000 0.1250 +vt 0.0000 0.0938 +vt 0.7500 0.0938 +vt 0.7500 0.1250 +vt 0.0625 0.0938 +vt 0.0625 0.1250 +vt 0.7812 0.0938 +vt 0.7812 0.1250 +vt 0.1250 0.9375 +vt 0.0938 0.9375 +vt 0.3438 0.9375 +vt 0.3125 0.9375 +vt 0.1562 0.9375 +vt 0.3750 0.9375 +vt 0.1875 0.9375 +vt 0.4062 0.9375 +vt 0.2188 0.9375 +vt 0.4375 0.9375 +vt 0.2500 0.9375 +vt 0.4688 0.9375 +vt 0.2812 0.9375 +vt 0.5000 0.9375 +vt 0.5938 0.9375 +vt 0.5625 0.9375 +vt 0.5312 0.9375 +vt 0.6250 0.9375 +vt 0.8438 0.9375 +vt 0.8125 0.9375 +vt 0.6562 0.9375 +vt 0.8750 0.9375 +vt 0.9688 0.9375 +vt 0.9375 0.9375 +vt 0.6875 0.9375 +vt 0.9062 0.9375 +vt 1.0000 0.9375 +vt 0.7188 0.9375 +vt 0.0312 0.9375 +vt 0.0000 0.9375 +vt 0.7500 0.9375 +vt 0.0625 0.9375 +vt 0.7812 0.9375 +vt 0.8125 0.0000 +vt 0.7812 0.0000 +vt 0.0938 0.0000 +vt 0.0625 0.0000 +vt 0.7500 0.0000 +vt 0.0312 0.0000 +vt 0.7188 0.0000 +vt 0.0000 0.0000 +vt 0.9375 0.0000 +vt 0.9062 0.0000 +vt 0.6875 0.0000 +vt 1.0000 0.0000 +vt 0.9688 0.0000 +vt 0.8750 0.0000 +vt 0.6562 0.0000 +vt 0.8438 0.0000 +vt 0.6250 0.0000 +vt 0.5625 0.0000 +vt 0.5312 0.0000 +vt 0.5938 0.0000 +vt 0.5000 0.0000 +vt 0.3125 0.0000 +vt 0.2812 0.0000 +vt 0.4688 0.0000 +vt 0.2500 0.0000 +vt 0.4375 0.0000 +vt 0.2188 0.0000 +vt 0.4062 0.0000 +vt 0.1875 0.0000 +vt 0.3750 0.0000 +vt 0.1562 0.0000 +vt 0.3438 0.0000 +vt 0.1250 0.0000 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.5936 0.6717 +vt 0.6238 0.6777 +vt 0.6523 0.6895 +vt 0.6779 0.7066 +vt 0.6996 0.7283 +vt 0.7167 0.7539 +vt 0.7285 0.7824 +vt 0.7345 0.8126 +vt 0.7345 0.8434 +vt 0.7285 0.8735 +vt 0.7167 0.9020 +vt 0.6996 0.9276 +vt 0.6779 0.9493 +vt 0.6523 0.9664 +vt 0.6238 0.9782 +vt 0.5936 0.9842 +vt 0.5629 0.9842 +vt 0.5327 0.9782 +vt 0.5042 0.9664 +vt 0.4786 0.9493 +vt 0.4569 0.9276 +vt 0.4398 0.9020 +vt 0.4280 0.8735 +vt 0.4220 0.8434 +vt 0.4220 0.8126 +vt 0.4280 0.7824 +vt 0.4398 0.7539 +vt 0.4569 0.7283 +vt 0.4786 0.7066 +vt 0.5042 0.6895 +vt 0.5327 0.6777 +vt 0.5629 0.6717 +vt 0.1605 0.6895 +vt 0.1349 0.7066 +vt 0.1131 0.7283 +vt 0.0960 0.7539 +vt 0.0842 0.7824 +vt 0.0782 0.8126 +vt 0.0782 0.8434 +vt 0.0842 0.8735 +vt 0.0960 0.9020 +vt 0.1131 0.9276 +vt 0.1349 0.9493 +vt 0.1605 0.9664 +vt 0.1889 0.9782 +vt 0.2191 0.9842 +vt 0.2499 0.9842 +vt 0.2801 0.9782 +vt 0.3085 0.9664 +vt 0.3341 0.9493 +vt 0.3559 0.9276 +vt 0.3730 0.9020 +vt 0.3848 0.8735 +vt 0.3908 0.8434 +vt 0.3908 0.8126 +vt 0.3848 0.7824 +vt 0.3730 0.7539 +vt 0.3559 0.7283 +vt 0.3341 0.7066 +vt 0.3085 0.6895 +vt 0.2801 0.6777 +vt 0.2499 0.6717 +vt 0.2191 0.6717 +vt 0.1889 0.6777 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.4569 0.9276 +vt 0.4786 0.9493 +vt 0.5042 0.9664 +vt 0.5327 0.9782 +vt 0.5629 0.9842 +vt 0.5936 0.9842 +vt 0.6238 0.9782 +vt 0.6523 0.9664 +vt 0.6779 0.9493 +vt 0.6996 0.9276 +vt 0.7167 0.9020 +vt 0.7285 0.8735 +vt 0.7345 0.8434 +vt 0.7345 0.8126 +vt 0.7285 0.7824 +vt 0.7167 0.7539 +vt 0.6996 0.7283 +vt 0.6779 0.7066 +vt 0.6523 0.6895 +vt 0.6238 0.6777 +vt 0.5936 0.6717 +vt 0.5629 0.6717 +vt 0.5327 0.6777 +vt 0.5042 0.6895 +vt 0.4786 0.7066 +vt 0.4569 0.7283 +vt 0.4398 0.7539 +vt 0.4280 0.7824 +vt 0.4220 0.8126 +vt 0.4220 0.8434 +vt 0.4280 0.8735 +vt 0.4398 0.9020 +vt 0.2801 0.6777 +vt 0.3085 0.6895 +vt 0.3341 0.7066 +vt 0.3559 0.7283 +vt 0.3730 0.7539 +vt 0.3848 0.7824 +vt 0.3908 0.8126 +vt 0.3908 0.8434 +vt 0.3848 0.8735 +vt 0.3730 0.9020 +vt 0.3559 0.9276 +vt 0.3341 0.9493 +vt 0.3085 0.9664 +vt 0.2801 0.9782 +vt 0.2499 0.9842 +vt 0.2191 0.9842 +vt 0.1889 0.9782 +vt 0.1605 0.9664 +vt 0.1349 0.9493 +vt 0.1131 0.9276 +vt 0.0960 0.9020 +vt 0.0842 0.8735 +vt 0.0782 0.8434 +vt 0.0782 0.8126 +vt 0.0842 0.7824 +vt 0.0960 0.7539 +vt 0.1131 0.7283 +vt 0.1349 0.7066 +vt 0.1605 0.6895 +vt 0.1889 0.6777 +vt 0.2191 0.6717 +vt 0.2499 0.6717 +vt 0.7799 0.2569 +vt 0.7643 0.2569 +vt 0.7487 0.2569 +vt 0.7488 0.0330 +vt 0.7796 0.0330 +vt 0.8111 0.2442 +vt 0.8104 0.0330 +vt 0.8423 0.2323 +vt 0.8412 0.0331 +vt 0.7487 0.2633 +vt 0.7175 0.2633 +vt 0.7180 0.0330 +vt 0.8735 0.2215 +vt 0.8721 0.0331 +vt 0.6863 0.2633 +vt 0.6872 0.0330 +vt 0.9028 0.0332 +vt 0.9046 0.2124 +vt 0.7488 0.0188 +vt 0.7180 0.0189 +vt 0.7796 0.0188 +vt 0.8105 0.0188 +vt 0.1560 0.2211 +vt 0.1247 0.2118 +vt 0.1297 0.0310 +vt 0.1609 0.0312 +vt 0.6873 0.0189 +vt 0.8414 0.0188 +vt 0.9358 0.2051 +vt 0.9335 0.0333 +vt 0.6566 0.0188 +vt 0.6565 0.0330 +vt 0.8723 0.0188 +vt 0.9669 0.2001 +vt 0.9639 0.0336 +vt 0.6240 0.2633 +vt 0.6257 0.0329 +vt 0.6551 0.2633 +vt 0.6258 0.0187 +vt 0.6875 0.5898 +vt 0.6875 0.5664 +vt 0.7188 0.5664 +vt 0.7188 0.5898 +vt 0.7812 0.5898 +vt 0.7812 0.5664 +vt 0.8125 0.5664 +vt 0.8125 0.5898 +vt 0.9033 0.0189 +vt 0.6562 0.5898 +vt 0.6562 0.5664 +vt 0.5950 0.0186 +vt 0.5949 0.0328 +vt 0.8438 0.5664 +vt 0.8438 0.5898 +vt 0.9343 0.0191 +vt 0.6250 0.5898 +vt 0.6250 0.5664 +vt 0.0309 0.1970 +vt -0.0002 0.1968 +vt 0.0044 0.0313 +vt 0.0356 0.0310 +vt 0.5305 0.2632 +vt 0.5332 0.0327 +vt 0.5640 0.0328 +vt 0.5617 0.2632 +vt 0.5642 0.0185 +vt 0.5938 0.5898 +vt 0.5938 0.5664 +vt 0.9653 0.0194 +vt 0.5312 0.5898 +vt 0.5312 0.5664 +vt 0.5625 0.5664 +vt 0.5625 0.5898 +vt 0.5333 0.0184 +vt 0.8750 0.5664 +vt 0.8750 0.5898 +vt 0.9963 0.0201 +vt 0.9937 0.0340 +vt 0.5000 0.5898 +vt 0.5000 0.5664 +vt 0.0935 0.2046 +vt 0.0622 0.1996 +vt 0.0671 0.0309 +vt 0.0985 0.0309 +vt 0.4993 0.2632 +vt 0.4682 0.2632 +vt 0.4714 0.0325 +vt 0.5023 0.0326 +vt 0.5024 0.0183 +vt 0.9062 0.5664 +vt 0.9062 0.5898 +vt 0.0349 0.0164 +vt 0.0026 0.0168 +vt 0.4688 0.5898 +vt 0.4688 0.5664 +vt 0.4058 0.2631 +vt 0.3746 0.2631 +vt 0.3786 0.0321 +vt 0.4095 0.0323 +vt 0.4716 0.0182 +vt 0.9375 0.5664 +vt 0.9375 0.5898 +vt 0.0670 0.0163 +vt 0.4375 0.5898 +vt 0.4375 0.5664 +vt 0.4407 0.0181 +vt 0.4405 0.0324 +vt 0.9688 0.5664 +vt 0.9688 0.5898 +vt 0.0987 0.0163 +vt 0.4062 0.5898 +vt 0.4062 0.5664 +vt 0.4098 0.0180 +vt 0.0000 0.5898 +vt 0.0000 0.5664 +vt 0.0312 0.5664 +vt 0.0312 0.5898 +vt 0.1301 0.0166 +vt 1.0000 0.5664 +vt 1.0000 0.5898 +vt 0.2497 0.2566 +vt 0.2545 0.0315 +vt 0.2856 0.0317 +vt 0.2809 0.2566 +vt 0.2653 0.2566 +vt 0.3788 0.0179 +vt 0.0625 0.5664 +vt 0.0625 0.5898 +vt 0.7500 0.5664 +vt 0.7500 0.5898 +vt 0.1612 0.0167 +vt 0.3750 0.5898 +vt 0.3750 0.5664 +vt 0.1921 0.0312 +vt 0.1873 0.2319 +vt 0.3122 0.2631 +vt 0.2809 0.2630 +vt 0.3166 0.0319 +vt 0.3479 0.0177 +vt 0.3476 0.0320 +vt 0.0937 0.5664 +vt 0.0938 0.5898 +vt 0.1924 0.0168 +vt 0.3438 0.5898 +vt 0.3438 0.5664 +vt 0.3169 0.0175 +vt 0.0938 0.5664 +vt 0.1250 0.5664 +vt 0.1250 0.5898 +vt 0.2237 0.0170 +vt 0.2233 0.0314 +vt 0.3125 0.5898 +vt 0.3125 0.5664 +vt 0.2859 0.0174 +vt 0.1562 0.5664 +vt 0.1562 0.5898 +vt 0.2548 0.0172 +vt 0.2812 0.5898 +vt 0.2812 0.5664 +vt 0.2500 0.5898 +vt 0.2500 0.5664 +vt 0.1875 0.5664 +vt 0.1875 0.5898 +vt 0.2188 0.5898 +vt 0.2188 0.5664 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.7643 0.2633 +vt 0.5928 0.2633 +vt 0.4370 0.2632 +vt 0.2185 0.2439 +vt 0.5149 0.2632 +vt 0.9981 0.1975 +vt 0.3434 0.2631 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.2653 0.2630 +vt 0.7799 0.2633 +vt 0.2497 0.2630 +vt 0.4688 0.6406 +vt 0.4688 0.5625 +vt 0.5000 0.5625 +vt 0.5000 0.6406 +vt 0.4375 0.6406 +vt 0.4375 0.5625 +vt 0.4062 0.6406 +vt 0.4062 0.5625 +vt 0.3750 0.6406 +vt 0.3750 0.5625 +vt 0.3438 0.6406 +vt 0.3438 0.5625 +vt 0.3125 0.6406 +vt 0.3125 0.5625 +vt 0.2812 0.6406 +vt 0.2812 0.5625 +vt 0.2500 0.6406 +vt 0.2500 0.5625 +vt 0.2188 0.6406 +vt 0.2188 0.5625 +vt 0.1875 0.6406 +vt 0.1875 0.5625 +vt 0.1562 0.6406 +vt 0.1562 0.5625 +vt 0.1250 0.6406 +vt 0.1250 0.5625 +vt 0.0938 0.6406 +vt 0.0938 0.5625 +vt 0.0625 0.6406 +vt 0.0625 0.5625 +vt 0.0312 0.6406 +vt 0.0312 0.5625 +vt 0.0000 0.6406 +vt 0.0000 0.5625 +vt 0.9688 0.6406 +vt 0.9688 0.5625 +vt 1.0000 0.5625 +vt 1.0000 0.6406 +vt 0.9375 0.6406 +vt 0.9375 0.5625 +vt 0.9062 0.6406 +vt 0.9062 0.5625 +vt 0.8750 0.6406 +vt 0.8750 0.5625 +vt 0.8125 0.6406 +vt 0.8125 0.5625 +vt 0.8438 0.5625 +vt 0.8438 0.6406 +vt 0.7812 0.6406 +vt 0.7812 0.5625 +vt 0.7500 0.6406 +vt 0.7500 0.5625 +vt 0.7188 0.6406 +vt 0.7188 0.5625 +vt 0.6875 0.6406 +vt 0.6875 0.5625 +vt 0.6250 0.6406 +vt 0.6250 0.5625 +vt 0.6562 0.5625 +vt 0.6562 0.6406 +vt 0.5938 0.6406 +vt 0.5938 0.5625 +vt 0.5625 0.6406 +vt 0.5625 0.5625 +vt 0.4358 0.5179 +vt 0.4358 0.5107 +vt 0.4668 0.5107 +vt 0.4668 0.5179 +vt 0.4977 0.5179 +vt 0.4977 0.5107 +vt 0.5287 0.5179 +vt 0.5287 0.5107 +vt 0.5596 0.5178 +vt 0.5596 0.5107 +vt 0.5904 0.5179 +vt 0.5905 0.5107 +vt 0.6214 0.5179 +vt 0.6215 0.5107 +vt 0.6524 0.5107 +vt 0.6523 0.5179 +vt 0.6832 0.5180 +vt 0.6834 0.5108 +vt 0.7142 0.5180 +vt 0.7144 0.5108 +vt 0.7452 0.5181 +vt 0.7454 0.5108 +vt 0.7765 0.5109 +vt 0.7763 0.5181 +vt 0.8076 0.5109 +vt 0.8074 0.5181 +vt 0.8384 0.5181 +vt 0.8386 0.5109 +vt 0.8696 0.5109 +vt 0.8695 0.5181 +vt 0.9006 0.5109 +vt 0.9007 0.5181 +vt 0.9320 0.5181 +vt 0.9316 0.5109 +vt 0.9625 0.5108 +vt 0.9635 0.5180 +vt 0.9952 0.5178 +vt 0.9930 0.5106 +vt 0.0001 0.5177 +vt 0.0023 0.5106 +vt 0.0329 0.5107 +vt 0.0319 0.5180 +vt 0.0635 0.5181 +vt 0.0639 0.5108 +vt 0.0952 0.5109 +vt 0.0951 0.5181 +vt 0.1263 0.5108 +vt 0.1263 0.5181 +vt 0.1572 0.5108 +vt 0.1573 0.5180 +vt 0.1881 0.5108 +vt 0.1882 0.5180 +vt 0.2191 0.5108 +vt 0.2192 0.5179 +vt 0.2500 0.5107 +vt 0.2501 0.5179 +vt 0.3119 0.5179 +vt 0.2809 0.5179 +vt 0.2809 0.5107 +vt 0.3118 0.5107 +vt 0.3738 0.5179 +vt 0.3429 0.5179 +vt 0.3428 0.5107 +vt 0.3738 0.5107 +vt 0.4048 0.5179 +vt 0.4048 0.5107 +vt 0.5312 0.5625 +vt 0.5312 0.6406 +vt 0.8100 0.4042 +vt 0.8412 0.4103 +vt 0.8724 0.4157 +vt 0.5294 0.3946 +vt 0.4982 0.3945 +vt 0.5138 0.3945 +vt 0.2798 0.3977 +vt 0.2486 0.3977 +vt 0.2642 0.3977 +vt 0.2642 0.3945 +vt 0.2798 0.3945 +vt 0.7788 0.3979 +vt 0.6541 0.3946 +vt 0.6852 0.3946 +vt 0.1860 0.4101 +vt 0.2173 0.4041 +vt 0.3111 0.3945 +vt 0.3423 0.3945 +vt 0.4047 0.3945 +vt 0.3735 0.3945 +vt 0.5606 0.3946 +vt 0.9036 0.4203 +vt 0.1547 0.4155 +vt 0.4359 0.3945 +vt 0.6229 0.3946 +vt 0.7164 0.3946 +vt 0.7476 0.3946 +vt 0.7476 0.3979 +vt 0.7632 0.3979 +vt 0.9348 0.4240 +vt 0.9660 0.4265 +vt 0.9973 0.4278 +vt -0.0018 0.4276 +vt 0.0296 0.4276 +vt 0.0609 0.4263 +vt 0.0922 0.4238 +vt 0.1234 0.4201 +vt 0.4671 0.3945 +vt 0.5917 0.3946 +vt 0.7632 0.3946 +vt 0.3423 0.3945 +vt 0.3735 0.3945 +vt 0.6541 0.3946 +vt 0.6852 0.3946 +vt 0.7476 0.3946 +vt 0.4671 0.3945 +vt 0.4982 0.3945 +vt 0.7164 0.3946 +vt 0.2798 0.3945 +vt 0.4359 0.3945 +vt 0.4047 0.3945 +vt 0.5138 0.3945 +vt 0.5294 0.3946 +vt 0.6229 0.3946 +vt 0.5606 0.3946 +vt 0.3111 0.3945 +vt 0.5917 0.3946 +vt 0.6852 0.3946 +vt 0.7164 0.3946 +vt 0.4359 0.3945 +vt 0.4671 0.3945 +vt 0.7476 0.3946 +vt 0.4047 0.3945 +vt 0.5138 0.3945 +vt 0.5294 0.3946 +vt 0.6229 0.3946 +vt 0.6541 0.3946 +vt 0.3735 0.3945 +vt 0.4982 0.3945 +vt 0.5606 0.3946 +vt 0.2798 0.3945 +vt 0.3111 0.3945 +vt 0.5917 0.3946 +vt 0.3423 0.3945 +vt 0.6852 0.3946 +vt 0.7164 0.3946 +vt 0.4359 0.3945 +vt 0.4671 0.3945 +vt 0.7476 0.3946 +vt 0.4047 0.3945 +vt 0.5138 0.3945 +vt 0.5294 0.3946 +vt 0.6229 0.3946 +vt 0.6541 0.3946 +vt 0.3735 0.3945 +vt 0.4982 0.3945 +vt 0.5606 0.3946 +vt 0.2798 0.3945 +vt 0.3111 0.3945 +vt 0.5917 0.3946 +vt 0.3423 0.3945 +vt 0.6852 0.3946 +vt 0.7164 0.3946 +vt 0.4359 0.3945 +vt 0.4671 0.3945 +vt 0.7476 0.3946 +vt 0.4047 0.3945 +vt 0.5138 0.3945 +vt 0.5294 0.3946 +vt 0.6229 0.3946 +vt 0.6541 0.3946 +vt 0.3735 0.3945 +vt 0.4982 0.3945 +vt 0.5606 0.3946 +vt 0.2798 0.3945 +vt 0.3111 0.3945 +vt 0.5917 0.3946 +vt 0.3423 0.3945 +vt 0.6852 0.3946 +vt 0.7164 0.3946 +vt 0.4359 0.3945 +vt 0.4671 0.3945 +vt 0.7476 0.3946 +vt 0.4047 0.3945 +vt 0.5138 0.3945 +vt 0.5294 0.3946 +vt 0.6229 0.3946 +vt 0.6541 0.3946 +vt 0.3735 0.3945 +vt 0.4982 0.3945 +vt 0.5606 0.3946 +vt 0.2798 0.3945 +vt 0.3111 0.3945 +vt 0.5917 0.3946 +vt 0.3423 0.3945 +vt 0.6852 0.3946 +vt 0.7164 0.3946 +vt 0.4359 0.3945 +vt 0.4671 0.3945 +vt 0.7476 0.3946 +vt 0.4047 0.3945 +vt 0.5138 0.3945 +vt 0.5294 0.3946 +vt 0.6229 0.3946 +vt 0.6541 0.3946 +vt 0.3735 0.3945 +vt 0.4982 0.3945 +vt 0.5606 0.3946 +vt 0.2798 0.3945 +vt 0.3111 0.3945 +vt 0.5917 0.3946 +vt 0.3423 0.3945 +vt 0.6852 0.3946 +vt 0.7164 0.3946 +vt 0.4359 0.3945 +vt 0.4671 0.3945 +vt 0.7476 0.3946 +vt 0.4047 0.3945 +vt 0.5138 0.3945 +vt 0.5294 0.3946 +vt 0.6229 0.3946 +vt 0.6541 0.3946 +vt 0.3735 0.3945 +vt 0.4982 0.3945 +vt 0.5606 0.3946 +vt 0.2798 0.3945 +vt 0.3111 0.3945 +vt 0.5917 0.3946 +vt 0.3423 0.3945 +vt 0.6852 0.3946 +vt 0.7164 0.3946 +vt 0.4359 0.3945 +vt 0.4671 0.3945 +vt 0.7476 0.3946 +vt 0.4047 0.3945 +vt 0.5138 0.3945 +vt 0.5294 0.3946 +vt 0.6229 0.3946 +vt 0.6541 0.3946 +vt 0.3735 0.3945 +vt 0.4982 0.3945 +vt 0.5606 0.3946 +vt 0.2798 0.3945 +vt 0.3111 0.3945 +vt 0.5917 0.3946 +vt 0.3423 0.3945 +vn 0.0000 -1.0000 -0.0000 +vn -0.6942 -0.0111 0.7197 +vn 0.8744 0.0380 0.4838 +vn -0.9994 -0.0354 0.0015 +vn 0.4106 0.0134 0.9117 +vn -0.9725 -0.0221 -0.2318 +vn -0.0529 0.0693 0.9962 +vn -0.2295 -0.0826 0.9698 +vn -0.9808 -0.0000 -0.1951 +vn -0.2791 0.0931 0.9557 +vn -0.5161 -0.1864 0.8360 +vn -0.9843 -0.1579 -0.0783 +vn -0.1951 -0.0000 0.9808 +vn -0.8266 -0.1002 0.5537 +vn -0.7534 -0.2918 -0.5892 +vn -0.5861 -0.1219 -0.8010 +vn -0.8315 -0.0000 0.5556 +vn -0.5111 -0.1245 -0.8504 +vn -0.4668 -0.1788 -0.8661 +vn 0.9491 -0.1603 -0.2712 +vn -0.5556 0.0000 -0.8315 +vn 0.1245 0.0274 -0.9918 +vn 0.9939 -0.0505 -0.0984 +vn 0.3372 0.0762 -0.9383 +vn 1.0000 0.0000 0.0000 +vn 0.6143 -0.0053 -0.7890 +vn 0.9958 -0.0878 0.0256 +vn 0.5556 0.0000 -0.8315 +vn 0.8422 -0.0878 0.5319 +vn 0.3496 -0.0186 -0.9367 +vn 0.8315 0.0000 0.5556 +vn 0.9313 -0.1314 -0.3398 +vn 0.7071 0.0000 0.7071 +vn 0.8846 0.1645 0.4364 +vn 0.8315 0.0000 -0.5556 +vn 0.7071 0.0000 -0.7071 +vn 0.7188 -0.0226 0.6948 +vn 0.9837 -0.0226 -0.1784 +vn 0.3827 0.0000 -0.9239 +vn 0.1951 0.0000 -0.9808 +vn 0.9657 -0.0681 0.2507 +vn -0.0000 -0.0000 -1.0000 +vn -0.8703 0.0375 -0.4912 +vn 0.6636 -0.0681 -0.7449 +vn 0.0983 0.1496 -0.9838 +vn -0.7071 0.0000 -0.7071 +vn -0.1894 0.2015 -0.9610 +vn -0.8315 0.0000 -0.5556 +vn -0.9291 0.0476 0.3667 +vn 0.0032 0.0087 1.0000 +vn -0.8761 0.0556 -0.4789 +vn -0.5187 0.0032 0.8550 +vn 0.0000 0.0000 1.0000 +vn -0.8139 0.0567 -0.5782 +vn -0.2051 -0.0398 0.9779 +vn 0.1951 0.0000 0.9808 +vn -0.8741 0.0027 0.4858 +vn 0.1691 0.1134 0.9791 +vn -0.9808 -0.0000 0.1951 +vn 0.4387 0.2866 0.8517 +vn -0.9239 0.0000 0.3827 +vn 0.5556 0.0000 0.8315 +vn 0.6747 0.1368 0.7253 +vn -1.0000 0.0000 0.0000 +vn 0.2169 0.2761 0.9363 +vn -0.0133 -0.0436 0.9990 +vn -0.3717 0.1188 0.9207 +vn -0.8232 -0.0436 0.5661 +vn -0.9933 0.1160 0.0021 +vn -0.7071 0.0000 0.7071 +vn -0.5500 0.1160 -0.8270 +vn -0.3827 0.0000 -0.9239 +vn -0.1951 -0.0000 -0.9808 +vn 0.7512 -0.1581 -0.6409 +vn 0.9341 -0.0998 -0.3428 +vn 0.9493 -0.0075 0.3142 +vn 0.0782 -0.1580 -0.9843 +vn 0.9382 -0.0768 0.3374 +vn 0.6897 -0.2260 -0.6879 +vn 0.9239 0.0000 0.3827 +vn 0.7871 -0.0637 -0.6136 +vn 0.8579 0.0259 0.5131 +vn 0.6706 0.0259 0.7413 +vn 0.9505 -0.1589 -0.2669 +vn 0.4888 -0.1368 -0.8616 +vn 0.6884 0.1441 -0.7109 +vn 0.9808 0.0000 0.1951 +vn 0.4311 0.0918 -0.8976 +vn 0.9655 -0.0677 0.2515 +vn 0.1459 -0.0471 -0.9882 +vn 0.9760 0.0585 -0.2099 +vn -0.0543 -0.1117 -0.9923 +vn -0.6172 0.0397 -0.7858 +vn 0.8002 0.1225 -0.5870 +vn -0.3670 -0.0931 -0.9255 +vn -0.7951 -0.0708 -0.6023 +vn -0.8509 -0.0463 0.5232 +vn -0.1791 0.1084 -0.9779 +vn -0.5188 0.0356 0.8542 +vn 0.1841 -0.0696 0.9804 +vn -0.9239 0.0000 -0.3827 +vn -0.5032 0.1987 0.8410 +vn -0.8368 0.1151 -0.5353 +vn -0.5837 0.0133 0.8119 +vn -0.1709 0.0056 0.9853 +vn -0.9915 -0.0127 0.1296 +vn 0.5669 -0.0834 0.8196 +vn -0.9463 -0.2968 0.1280 +vn 0.6845 -0.0867 0.7238 +vn -0.9486 -0.1366 0.2853 +vn -0.9813 -0.1247 0.1465 +vn 0.5554 -0.1024 0.8253 +vn -0.8637 -0.0157 0.5038 +vn -0.0032 -0.1024 0.9947 +vn -0.2113 0.0207 0.9772 +vn -0.7488 -0.0157 -0.6626 +vn -0.5750 0.0179 0.8179 +vn 0.0232 -0.0194 0.9995 +vn -0.8390 -0.1063 0.5337 +vn 0.0085 0.0017 -1.0000 +vn -0.7605 -0.2103 0.6144 +vn 0.6247 0.0342 -0.7801 +vn -0.8362 0.0017 -0.5485 +vn -0.1052 -0.0546 -0.9929 +vn 0.9674 0.0039 0.2534 +vn 0.1842 -0.1156 -0.9761 +vn 0.9974 -0.0331 0.0638 +vn 0.2685 -0.1794 -0.9464 +vn 0.9933 0.1129 -0.0243 +vn 0.6884 -0.1441 -0.7109 +vn 0.8124 0.1129 0.5721 +vn 0.7414 -0.0260 -0.6705 +vn 0.5770 0.1953 0.7931 +vn 0.8084 0.2696 0.5233 +vn 0.9841 0.1488 0.0974 +vn 0.9049 -0.0745 0.4191 +vn 0.3673 0.0932 -0.9254 +vn 0.8057 -0.0745 -0.5876 +vn 0.0882 0.2352 -0.9679 +vn 0.9239 -0.0000 -0.3827 +vn -0.4436 0.1361 -0.8858 +vn -0.4246 -0.0196 -0.9052 +vn -0.8122 0.0864 0.5769 +vn -0.2860 0.1698 0.9431 +vn -0.9975 0.0375 0.0596 +vn -0.7379 0.1489 0.6583 +vn -0.2475 0.0203 0.9687 +vn -0.9276 0.1914 -0.3207 +vn -0.0884 0.1192 0.9889 +vn 0.2361 -0.2178 0.9470 +vn -0.9610 0.1273 0.2453 +vn 0.5152 0.0226 0.8568 +vn 0.6283 0.2212 0.7459 +vn 0.4387 -0.2866 0.8517 +vn 0.2124 -0.0914 0.9729 +vn -0.9510 -0.1425 0.2745 +vn 0.2281 0.0655 0.9714 +vn -0.1173 -0.0087 0.9931 +vn -0.9113 -0.2015 -0.3590 +vn -0.0798 0.0414 0.9960 +vn -0.6489 -0.0939 0.7551 +vn -0.9166 -0.0096 -0.3997 +vn -0.0859 -0.0570 0.9947 +vn -0.8598 -0.1348 0.4926 +vn -0.7779 0.0462 -0.6267 +vn -0.3689 -0.3076 -0.8771 +vn 0.0983 -0.1496 -0.9838 +vn 0.6611 0.0700 -0.7471 +vn -0.7624 -0.1473 -0.6302 +vn 0.9808 0.1649 0.1045 +vn 0.9852 0.1693 0.0254 +vn 0.0782 0.1580 -0.9843 +vn 0.9857 -0.0144 0.1678 +vn 0.6897 0.2260 -0.6879 +vn 0.8392 -0.0904 0.5362 +vn 0.7871 0.0637 -0.6136 +vn 0.8846 -0.1645 0.4364 +vn 0.9932 0.0516 -0.1040 +vn 0.2958 0.0516 -0.9538 +vn 0.6358 0.0206 -0.7716 +vn 0.9758 0.1008 0.1942 +vn 0.3062 -0.0625 -0.9499 +vn 0.9192 0.1008 -0.3808 +vn -0.0168 -0.1106 -0.9937 +vn -0.4356 0.0708 -0.8974 +vn -0.5485 -0.0222 -0.8359 +vn -0.7951 0.0708 -0.6023 +vn -0.8669 0.2518 0.4301 +vn -0.4593 0.1526 0.8751 +vn 0.0729 0.1371 0.9879 +vn -0.5556 0.0000 0.8315 +vn -0.2326 -0.1207 0.9650 +vn -0.9618 0.0404 -0.2707 +vn -0.6094 0.1371 0.7809 +vn 0.0063 -0.1580 0.9874 +vn -0.9568 0.1212 -0.2642 +vn 0.3503 -0.1060 0.9306 +vn -0.9889 0.1450 0.0311 +vn 0.8530 -0.0637 0.5181 +vn -0.7442 0.1486 0.6512 +vn 0.0000 1.0000 0.0000 +vn 0.9994 -0.0247 0.0247 +vn 0.9952 0.0980 0.0000 +vn 0.9893 0.0974 -0.1087 +vn 0.9893 -0.0974 -0.1087 +vn 0.9844 -0.1243 0.1243 +vn 0.9513 -0.2886 -0.1087 +vn 0.9472 -0.2267 0.2267 +vn 0.8767 -0.4686 -0.1087 +vn 0.9948 0.1010 -0.0051 +vn 0.9560 0.2930 -0.0145 +vn 0.9513 0.2886 -0.1087 +vn 0.8819 -0.3333 0.3333 +vn 0.7684 -0.6306 -0.1087 +vn 0.8804 0.4736 -0.0234 +vn 0.8767 0.4686 -0.1087 +vn 0.6306 -0.7684 -0.1087 +vn 0.7793 -0.4431 0.4431 +vn 0.9720 0.0957 -0.2147 +vn 0.9346 0.2835 -0.2147 +vn 0.9720 -0.0957 -0.2147 +vn 0.9346 -0.2835 -0.2147 +vn -0.8819 -0.3333 0.3333 +vn -0.7793 -0.4431 0.4431 +vn -0.6306 -0.7684 -0.1087 +vn -0.7684 -0.6306 -0.1087 +vn 0.8614 0.4604 -0.2147 +vn 0.8614 -0.4604 -0.2147 +vn 0.6267 -0.5510 0.5510 +vn 0.4686 -0.8767 -0.1087 +vn 0.7550 0.6196 -0.2147 +vn 0.7684 0.6306 -0.1087 +vn 0.7550 -0.6196 -0.2147 +vn 0.4139 -0.6437 0.6437 +vn 0.2886 -0.9513 -0.1087 +vn 0.6324 0.7736 -0.0380 +vn 0.6306 0.7684 -0.1087 +vn 0.7711 0.6359 -0.0313 +vn 0.6196 0.7550 -0.2147 +vn 0.4617 -0.5626 -0.6857 +vn 0.4617 -0.5626 0.6857 +vn 0.3431 -0.6419 0.6857 +vn 0.3431 -0.6419 -0.6857 +vn 0.0713 -0.7244 -0.6857 +vn 0.0713 -0.7244 0.6857 +vn -0.0713 -0.7244 0.6857 +vn -0.0713 -0.7244 -0.6857 +vn 0.6196 -0.7550 -0.2147 +vn 0.5626 -0.4617 -0.6857 +vn 0.5626 -0.4617 0.6857 +vn 0.4604 0.8614 -0.2147 +vn 0.4686 0.8767 -0.1087 +vn -0.2113 -0.6965 0.6857 +vn -0.2113 -0.6965 -0.6857 +vn 0.4604 -0.8614 -0.2147 +vn 0.6419 -0.3431 -0.6857 +vn 0.6419 -0.3431 0.6857 +vn -0.1458 -0.6995 0.6995 +vn 0.1458 -0.6995 0.6995 +vn 0.0974 -0.9893 -0.1087 +vn -0.0974 -0.9893 -0.1087 +vn 0.0976 0.9940 -0.0487 +vn 0.0974 0.9893 -0.1087 +vn 0.2886 0.9513 -0.1087 +vn 0.2891 0.9561 -0.0468 +vn 0.2835 0.9346 -0.2147 +vn 0.6965 -0.2113 -0.6857 +vn 0.6965 -0.2113 0.6857 +vn 0.2835 -0.9346 -0.2147 +vn 0.7244 0.0713 -0.6857 +vn 0.7244 0.0713 0.6857 +vn 0.7244 -0.0713 0.6857 +vn 0.7244 -0.0713 -0.6857 +vn 0.0957 0.9720 -0.2147 +vn -0.3431 -0.6419 0.6857 +vn -0.3431 -0.6419 -0.6857 +vn 0.0957 -0.9720 -0.2147 +vn 0.6965 0.2113 -0.6857 +vn 0.6965 0.2113 0.6857 +vn -0.6267 -0.5510 0.5510 +vn -0.4139 -0.6437 0.6437 +vn -0.2886 -0.9513 -0.1087 +vn -0.4686 -0.8767 -0.1087 +vn -0.0976 0.9940 -0.0487 +vn -0.2891 0.9561 -0.0468 +vn -0.2886 0.9513 -0.1087 +vn -0.0974 0.9893 -0.1087 +vn -0.0957 0.9720 -0.2147 +vn -0.4617 -0.5626 0.6857 +vn -0.4617 -0.5626 -0.6857 +vn -0.0957 -0.9720 -0.2147 +vn 0.6419 0.3431 -0.6857 +vn 0.6419 0.3431 0.6857 +vn -0.6324 0.7736 -0.0380 +vn -0.7711 0.6359 -0.0313 +vn -0.7684 0.6306 -0.1087 +vn -0.6306 0.7684 -0.1087 +vn -0.2835 0.9346 -0.2147 +vn -0.5626 -0.4617 0.6857 +vn -0.5626 -0.4617 -0.6857 +vn -0.2835 -0.9346 -0.2147 +vn 0.5626 0.4617 -0.6857 +vn 0.5626 0.4617 0.6857 +vn -0.4604 0.8614 -0.2147 +vn -0.4686 0.8767 -0.1087 +vn -0.6419 -0.3431 0.6857 +vn -0.6419 -0.3431 -0.6857 +vn -0.4604 -0.8614 -0.2147 +vn 0.4617 0.5626 -0.6857 +vn 0.4617 0.5626 0.6857 +vn -0.6196 0.7550 -0.2147 +vn -0.6965 -0.2113 -0.6857 +vn -0.6965 -0.2113 0.6857 +vn -0.7244 -0.0713 0.6857 +vn -0.7244 -0.0713 -0.6857 +vn -0.6196 -0.7550 -0.2147 +vn -0.9994 -0.0247 0.0247 +vn -0.9893 -0.0974 -0.1087 +vn -0.9893 0.0974 -0.1087 +vn -0.9952 0.0980 0.0000 +vn -0.7550 0.6196 -0.2147 +vn -0.7244 0.0713 0.6857 +vn -0.7244 0.0713 -0.6857 +vn 0.2113 -0.6965 0.6857 +vn 0.2113 -0.6965 -0.6857 +vn -0.7550 -0.6196 -0.2147 +vn 0.3431 0.6419 -0.6857 +vn 0.3431 0.6419 0.6857 +vn -0.8767 -0.4686 -0.1087 +vn -0.9472 -0.2267 0.2267 +vn -0.9560 0.2930 -0.0145 +vn -0.9948 0.1010 -0.0051 +vn -0.9513 0.2886 -0.1087 +vn -0.8614 0.4604 -0.2147 +vn -0.8767 0.4686 -0.1087 +vn -0.6965 0.2113 0.6857 +vn -0.6965 0.2113 -0.6857 +vn -0.8614 -0.4604 -0.2147 +vn 0.2113 0.6965 -0.6857 +vn 0.2113 0.6965 0.6857 +vn -0.9346 0.2835 -0.2147 +vn -0.6419 0.3431 0.6857 +vn -0.6419 0.3431 -0.6857 +vn -0.9346 -0.2835 -0.2147 +vn -0.9513 -0.2886 -0.1087 +vn 0.0713 0.7244 -0.6857 +vn 0.0713 0.7244 0.6857 +vn -0.9720 0.0957 -0.2147 +vn -0.5626 0.4617 0.6857 +vn -0.5626 0.4617 -0.6857 +vn -0.9720 -0.0957 -0.2147 +vn -0.0713 0.7244 -0.6857 +vn -0.0713 0.7244 0.6857 +vn -0.2113 0.6965 -0.6857 +vn -0.2113 0.6965 0.6857 +vn -0.4617 0.5626 0.6857 +vn -0.4617 0.5626 -0.6857 +vn -0.3431 0.6419 -0.6857 +vn -0.3431 0.6419 0.6857 +vn -0.7321 -0.3032 -0.6100 +vn -0.9239 -0.3827 0.0000 +vn -0.7933 0.6088 0.0000 +vn -0.6287 0.4824 -0.6100 +vn -0.1034 -0.7856 -0.6100 +vn -0.1305 -0.9914 0.0000 +vn 0.1305 0.9914 0.0000 +vn 0.1034 0.7856 -0.6100 +vn 0.9239 0.3827 0.0000 +vn 0.7321 0.3032 -0.6100 +vn 0.7933 -0.6088 0.0000 +vn 0.6287 -0.4824 -0.6100 +vn -0.3032 -0.7321 -0.6100 +vn -0.3827 -0.9239 0.0000 +vn -0.9914 -0.1305 0.0000 +vn -0.7856 -0.1034 -0.6100 +vn 0.4824 -0.6287 -0.6100 +vn 0.6088 -0.7933 0.0000 +vn -0.6088 0.7933 0.0000 +vn -0.4824 0.6287 -0.6100 +vn 0.3827 0.9239 0.0000 +vn 0.3032 0.7321 -0.6100 +vn 0.9914 0.1305 0.0000 +vn 0.7856 0.1034 -0.6100 +vn 0.3032 -0.7321 -0.6100 +vn 0.3827 -0.9239 0.0000 +vn -0.6088 -0.7933 0.0000 +vn -0.4824 -0.6287 -0.6100 +vn 0.7856 -0.1034 -0.6100 +vn 0.9914 -0.1305 0.0000 +vn -0.9914 0.1305 0.0000 +vn -0.7856 0.1034 -0.6100 +vn -0.3827 0.9239 0.0000 +vn -0.3032 0.7321 -0.6100 +vn 0.6088 0.7933 0.0000 +vn 0.4824 0.6287 -0.6100 +vn 0.7321 -0.3032 -0.6100 +vn 0.9239 -0.3827 0.0000 +vn 0.1305 -0.9914 0.0000 +vn 0.1034 -0.7856 -0.6100 +vn 0.6287 0.4824 -0.6100 +vn 0.7933 0.6088 0.0000 +vn -0.7933 -0.6088 0.0000 +vn -0.6287 -0.4824 -0.6100 +vn -0.9239 0.3827 0.0000 +vn -0.7321 0.3032 -0.6100 +vn -0.1305 0.9914 0.0000 +vn -0.1034 0.7856 -0.6100 +vn 0.4697 0.8817 -0.0432 +vn -0.4697 0.8817 -0.0432 +vn -0.9844 -0.1243 0.1243 +vn 0.0000 0.9988 -0.0490 +vn -0.8804 0.4736 -0.0234 +vn -0.5603 -0.5603 -0.6100 +vn -0.7071 -0.7071 0.0000 +vn -0.9659 0.2588 0.0000 +vn -0.7654 0.2051 -0.6100 +vn 0.2051 -0.7654 -0.6100 +vn 0.2588 -0.9659 0.0000 +vn -0.2588 0.9659 0.0000 +vn -0.2051 0.7654 -0.6100 +vn 0.7071 0.7071 0.0000 +vn 0.5603 0.5603 -0.6100 +vn 0.9659 -0.2588 0.0000 +vn 0.7654 -0.2051 -0.6100 +vn 0.0000 -0.7924 -0.6100 +vn -0.8660 -0.5000 0.0000 +vn -0.6862 -0.3962 -0.6100 +vn 0.6862 -0.3962 -0.6100 +vn 0.8660 -0.5000 0.0000 +vn -0.8660 0.5000 0.0000 +vn -0.6862 0.3962 -0.6100 +vn 0.0000 0.7924 -0.6100 +vn 0.8660 0.5000 0.0000 +vn 0.6862 0.3962 -0.6100 +vn 0.5603 -0.5603 -0.6100 +vn 0.7071 -0.7071 0.0000 +vn -0.2588 -0.9659 0.0000 +vn -0.2051 -0.7654 -0.6100 +vn 0.7654 0.2051 -0.6100 +vn 0.9659 0.2588 0.0000 +vn -0.9659 -0.2588 0.0000 +vn -0.7654 -0.2051 -0.6100 +vn -0.7071 0.7071 0.0000 +vn -0.5603 0.5603 -0.6100 +vn 0.2588 0.9659 0.0000 +vn 0.2051 0.7654 -0.6100 +vn 0.7924 0.0000 -0.6100 +vn 0.5000 -0.8660 0.0000 +vn 0.3962 -0.6862 -0.6100 +vn 0.3962 0.6862 -0.6100 +vn 0.5000 0.8660 0.0000 +vn -0.5000 -0.8660 0.0000 +vn -0.3962 -0.6862 -0.6100 +vn -0.7924 0.0000 -0.6100 +vn -0.5000 0.8660 0.0000 +vn -0.3962 0.6862 -0.6100 +vn 0.6965 0.6857 -0.2113 +vn 0.6965 -0.6857 -0.2113 +vn 0.6419 -0.6857 -0.3431 +vn 0.6419 0.6857 -0.3431 +vn 0.7244 0.6857 -0.0713 +vn 0.7244 -0.6857 -0.0713 +vn 0.7244 0.6857 0.0713 +vn 0.7244 -0.6857 0.0713 +vn 0.6965 0.6857 0.2113 +vn 0.6965 -0.6857 0.2113 +vn 0.6419 0.6857 0.3431 +vn 0.6419 -0.6857 0.3431 +vn 0.5626 0.6857 0.4617 +vn 0.5626 -0.6857 0.4617 +vn 0.4617 0.6857 0.5626 +vn 0.4617 -0.6857 0.5626 +vn 0.3431 0.6857 0.6419 +vn 0.3431 -0.6857 0.6419 +vn 0.2113 0.6857 0.6965 +vn 0.2113 -0.6857 0.6965 +vn 0.0713 0.6857 0.7244 +vn 0.0713 -0.6857 0.7244 +vn -0.0713 0.6857 0.7244 +vn -0.0713 -0.6857 0.7244 +vn -0.2113 0.6857 0.6965 +vn -0.2113 -0.6857 0.6965 +vn -0.3431 0.6857 0.6419 +vn -0.3431 -0.6857 0.6419 +vn -0.4617 0.6857 0.5626 +vn -0.4617 -0.6857 0.5626 +vn -0.5626 0.6857 0.4617 +vn -0.5626 -0.6857 0.4617 +vn -0.6419 0.6857 0.3431 +vn -0.6419 -0.6857 0.3431 +vn -0.6965 0.6857 0.2113 +vn -0.6965 -0.6857 0.2113 +vn -0.7244 0.6857 0.0713 +vn -0.7244 -0.6857 0.0713 +vn -0.7244 0.6857 -0.0713 +vn -0.7244 -0.6857 -0.0713 +vn -0.6965 0.6857 -0.2113 +vn -0.6965 -0.6857 -0.2113 +vn -0.5626 0.6857 -0.4617 +vn -0.5626 -0.6857 -0.4617 +vn -0.6419 -0.6857 -0.3431 +vn -0.6419 0.6857 -0.3431 +vn -0.4617 0.6857 -0.5626 +vn -0.4617 -0.6857 -0.5626 +vn -0.3431 0.6857 -0.6419 +vn -0.3431 -0.6857 -0.6419 +vn -0.2113 0.6857 -0.6965 +vn -0.2113 -0.6857 -0.6965 +vn -0.0713 0.6857 -0.7244 +vn -0.0713 -0.6857 -0.7244 +vn 0.2113 0.6857 -0.6965 +vn 0.2113 -0.6857 -0.6965 +vn 0.0713 -0.6857 -0.7244 +vn 0.0713 0.6857 -0.7244 +vn 0.3431 0.6857 -0.6419 +vn 0.3431 -0.6857 -0.6419 +vn 0.4617 0.6857 -0.5626 +vn 0.4617 -0.6857 -0.5626 +vn -0.4604 0.2147 -0.8614 +vn -0.4686 0.1087 -0.8767 +vn -0.2886 0.1087 -0.9513 +vn -0.2835 0.2147 -0.9346 +vn -0.0957 0.2147 -0.9720 +vn -0.0974 0.1087 -0.9893 +vn 0.0957 0.2147 -0.9720 +vn 0.0974 0.1087 -0.9893 +vn 0.2835 0.2147 -0.9346 +vn 0.2886 0.1087 -0.9513 +vn 0.4604 0.2147 -0.8614 +vn 0.4686 0.1087 -0.8767 +vn 0.6196 0.2147 -0.7550 +vn 0.6306 0.1087 -0.7684 +vn 0.7684 0.1087 -0.6306 +vn 0.7550 0.2147 -0.6196 +vn 0.8614 0.2147 -0.4604 +vn 0.8767 0.1087 -0.4686 +vn 0.9346 0.2147 -0.2835 +vn 0.9513 0.1087 -0.2886 +vn 0.9720 0.2147 -0.0957 +vn 0.9893 0.1087 -0.0974 +vn 0.9893 0.1087 0.0974 +vn 0.9720 0.2147 0.0957 +vn 0.9513 0.1087 0.2886 +vn 0.9346 0.2147 0.2835 +vn 0.8614 0.2147 0.4604 +vn 0.8767 0.1087 0.4686 +vn 0.7684 0.1087 0.6306 +vn 0.7550 0.2147 0.6196 +vn 0.6306 0.1087 0.7684 +vn 0.6196 0.2147 0.7550 +vn 0.4604 0.2147 0.8614 +vn 0.4686 0.1087 0.8767 +vn 0.2886 0.1087 0.9513 +vn 0.2835 0.2147 0.9346 +vn 0.0957 0.2147 0.9720 +vn 0.0974 0.1087 0.9893 +vn -0.0974 0.1087 0.9893 +vn -0.0957 0.2147 0.9720 +vn -0.2835 0.2147 0.9346 +vn -0.2886 0.1087 0.9513 +vn -0.4686 0.1087 0.8767 +vn -0.4604 0.2147 0.8614 +vn -0.6306 0.1087 0.7684 +vn -0.6196 0.2147 0.7550 +vn -0.7684 0.1087 0.6306 +vn -0.7550 0.2147 0.6196 +vn -0.8767 0.1087 0.4686 +vn -0.8614 0.2147 0.4604 +vn -0.9513 0.1087 0.2886 +vn -0.9346 0.2147 0.2835 +vn -0.9893 0.1087 0.0974 +vn -0.9720 0.2147 0.0957 +vn -0.9346 0.2147 -0.2835 +vn -0.9720 0.2147 -0.0957 +vn -0.9893 0.1087 -0.0974 +vn -0.9513 0.1087 -0.2886 +vn -0.7550 0.2147 -0.6196 +vn -0.8614 0.2147 -0.4604 +vn -0.8767 0.1087 -0.4686 +vn -0.7684 0.1087 -0.6306 +vn -0.6196 0.2147 -0.7550 +vn -0.6306 0.1087 -0.7684 +vn 0.5626 -0.6857 -0.4617 +vn 0.5626 0.6857 -0.4617 +vn 0.0976 0.0487 -0.9940 +vn -0.0976 0.0487 -0.9940 +vn 0.0000 0.0490 -0.9988 +vn -0.9952 0.0000 -0.0980 +vn -0.9948 0.0051 -0.1010 +vn 0.7711 0.0313 -0.6359 +vn 0.8804 0.0234 -0.4736 +vn -0.9560 0.0145 -0.2930 +vn -0.8804 0.0234 -0.4736 +vn -0.6324 0.0380 -0.7736 +vn -0.7711 0.0313 -0.6359 +vn 0.2891 0.0468 -0.9561 +vn -0.4697 0.0432 -0.8817 +vn 0.6324 0.0380 -0.7736 +vn 0.9560 0.0145 -0.2930 +vn 0.9948 0.0051 -0.1010 +vn 0.9952 0.0000 -0.0980 +vn -0.2891 0.0468 -0.9561 +vn 0.4697 0.0432 -0.8817 +vn -0.8794 0.0929 -0.4670 +vn -0.7700 0.1245 -0.6258 +vn 0.7700 0.1245 -0.6258 +vn 0.8794 0.0929 -0.4670 +vn 0.9946 0.0203 -0.1021 +vn -0.2886 0.1868 -0.9390 +vn -0.0974 0.1942 -0.9761 +vn 0.9552 0.0577 -0.2902 +vn -0.9946 0.0203 -0.1021 +vn -0.4689 0.1723 -0.8663 +vn -0.6314 0.1513 -0.7605 +vn 0.0000 0.1951 -0.9808 +vn 0.0974 0.1942 -0.9761 +vn 0.6314 0.1513 -0.7605 +vn 0.2886 0.1868 -0.9390 +vn -0.9552 0.0577 -0.2902 +vn 0.4689 0.1723 -0.8663 +vn 0.8794 0.1822 -0.4399 +vn 0.9552 0.1132 -0.2733 +vn -0.4689 0.3380 -0.8160 +vn -0.2886 0.3664 -0.8845 +vn 0.9946 0.0398 -0.0961 +vn -0.6314 0.2967 -0.7164 +vn 0.0000 0.3827 -0.9239 +vn 0.0974 0.3808 -0.9195 +vn 0.6314 0.2967 -0.7164 +vn 0.7700 0.2441 -0.5894 +vn -0.7700 0.2441 -0.5894 +vn -0.0974 0.3808 -0.9195 +vn 0.2886 0.3664 -0.8845 +vn -0.9946 0.0398 -0.0961 +vn -0.9552 0.1132 -0.2733 +vn 0.4689 0.3380 -0.8160 +vn -0.8794 0.1822 -0.4399 +vn 0.8794 0.2645 -0.3959 +vn 0.9552 0.1644 -0.2460 +vn -0.4689 0.4907 -0.7344 +vn -0.2886 0.5319 -0.7961 +vn 0.9946 0.0578 -0.0865 +vn -0.6314 0.4308 -0.6448 +vn 0.0000 0.5556 -0.8314 +vn 0.0974 0.5529 -0.8275 +vn 0.6314 0.4308 -0.6447 +vn 0.7700 0.3544 -0.5305 +vn -0.7700 0.3544 -0.5305 +vn -0.0974 0.5529 -0.8275 +vn 0.2886 0.5319 -0.7961 +vn -0.9946 0.0578 -0.0865 +vn -0.9552 0.1644 -0.2460 +vn 0.4689 0.4907 -0.7344 +vn -0.8794 0.2645 -0.3959 +vn 0.8794 0.3366 -0.3366 +vn 0.9552 0.2092 -0.2092 +vn -0.4689 0.6246 -0.6246 +vn -0.2886 0.6770 -0.6770 +vn 0.9946 0.0736 -0.0736 +vn -0.6314 0.5483 -0.5483 +vn 0.0000 0.7071 -0.7071 +vn 0.0974 0.7037 -0.7037 +vn 0.6314 0.5483 -0.5483 +vn 0.7700 0.4511 -0.4511 +vn -0.7700 0.4511 -0.4511 +vn -0.0974 0.7037 -0.7037 +vn 0.2886 0.6770 -0.6770 +vn -0.9946 0.0736 -0.0736 +vn -0.9552 0.2092 -0.2092 +vn 0.4689 0.6246 -0.6246 +vn -0.8794 0.3366 -0.3366 +vn 0.8794 0.3959 -0.2645 +vn 0.9552 0.2460 -0.1644 +vn -0.4689 0.7344 -0.4907 +vn -0.2886 0.7961 -0.5319 +vn 0.9946 0.0865 -0.0578 +vn -0.6314 0.6447 -0.4308 +vn 0.0000 0.8314 -0.5556 +vn 0.0974 0.8275 -0.5529 +vn 0.6314 0.6447 -0.4308 +vn 0.7700 0.5305 -0.3544 +vn -0.7700 0.5305 -0.3544 +vn -0.0974 0.8275 -0.5529 +vn 0.2886 0.7961 -0.5319 +vn -0.9946 0.0865 -0.0578 +vn -0.9552 0.2460 -0.1644 +vn 0.4689 0.7344 -0.4907 +vn -0.8794 0.3959 -0.2645 +vn 0.8794 0.4399 -0.1822 +vn 0.9552 0.2733 -0.1132 +vn -0.4689 0.8160 -0.3380 +vn -0.2886 0.8845 -0.3664 +vn 0.9946 0.0961 -0.0398 +vn -0.6314 0.7164 -0.2967 +vn 0.0000 0.9239 -0.3827 +vn 0.0974 0.9195 -0.3808 +vn 0.6314 0.7164 -0.2967 +vn 0.7700 0.5894 -0.2441 +vn -0.7700 0.5894 -0.2441 +vn -0.0974 0.9195 -0.3808 +vn 0.2886 0.8845 -0.3664 +vn -0.9946 0.0961 -0.0398 +vn -0.9552 0.2733 -0.1132 +vn 0.4689 0.8160 -0.3380 +vn -0.8794 0.4399 -0.1822 +vn 0.8794 0.4670 -0.0929 +vn 0.9552 0.2902 -0.0577 +vn -0.4689 0.8663 -0.1723 +vn -0.2886 0.9390 -0.1868 +vn 0.9946 0.1021 -0.0203 +vn -0.6314 0.7605 -0.1513 +vn 0.0000 0.9808 -0.1951 +vn 0.0974 0.9761 -0.1942 +vn 0.6314 0.7605 -0.1513 +vn 0.7700 0.6258 -0.1245 +vn -0.7700 0.6258 -0.1245 +vn -0.0974 0.9761 -0.1942 +vn 0.2886 0.9390 -0.1868 +vn -0.9946 0.1021 -0.0203 +vn -0.9552 0.2902 -0.0577 +vn 0.4689 0.8663 -0.1723 +vn -0.8794 0.4670 -0.0929 +g Pipe_Cylinder.002_water +s off +f 12/1/1 29/2/1 13/3/1 14/4/1 15/5/1 16/6/1 17/7/1 30/8/1 18/9/1 19/10/1 20/11/1 31/12/1 21/13/1 32/14/1 22/15/1 23/16/1 24/17/1 25/18/1 26/19/1 1/20/1 2/21/1 3/22/1 4/23/1 5/24/1 6/25/1 7/26/1 8/27/1 9/28/1 27/29/1 10/30/1 28/31/1 11/32/1 +f 258/33/2 37/34/2 58/35/2 161/36/2 +f 260/37/3 45/38/3 46/39/3 163/40/3 +f 161/36/4 58/35/4 59/41/4 165/42/4 +f 163/40/5 46/39/5 47/43/5 166/44/5 +f 165/42/6 59/41/6 60/45/6 167/46/6 +f 166/44/7 47/43/7 48/47/7 168/48/7 +f 266/49/8 33/50/8 34/51/8 169/52/8 +f 167/46/9 60/45/9 61/53/9 171/54/9 +f 168/55/10 48/56/10 49/57/10 172/58/10 +f 169/52/11 34/51/11 35/59/11 173/60/11 +f 171/54/12 61/53/12 62/61/12 174/62/12 +f 172/58/13 49/57/13 33/50/13 266/49/13 +f 173/60/14 35/59/14 36/63/14 175/64/14 +f 174/62/15 62/61/15 63/65/15 176/66/15 +f 274/67/16 50/68/16 51/69/16 177/70/16 +f 175/64/17 36/63/17 37/34/17 258/33/17 +f 176/66/18 63/65/18 64/71/18 179/72/18 +f 177/70/19 51/69/19 52/73/19 180/74/19 +f 278/75/20 38/76/20 39/77/20 181/78/20 +f 179/72/21 64/71/21 50/68/21 274/67/21 +f 180/74/22 52/73/22 53/79/22 183/80/22 +f 181/78/23 39/77/23 40/81/23 184/82/23 +f 183/80/24 53/79/24 54/83/24 185/84/24 +f 184/82/25 40/81/25 41/85/25 186/86/25 +f 185/84/26 54/83/26 55/87/26 187/88/26 +f 186/86/27 41/85/27 42/89/27 188/90/27 +f 187/88/28 55/87/28 56/91/28 189/92/28 +f 188/90/29 42/89/29 43/93/29 190/94/29 +f 189/92/30 56/91/30 57/95/30 191/96/30 +f 190/94/31 43/93/31 44/97/31 192/98/31 +f 191/96/32 57/95/32 38/76/32 278/75/32 +f 192/98/33 44/97/33 45/38/33 260/37/33 +f 224/99/34 96/100/34 68/101/34 228/102/34 +f 223/103/35 95/104/35 86/105/35 246/106/35 +f 222/107/31 94/108/31 96/100/31 224/99/31 +f 221/109/36 93/110/36 95/104/36 223/103/36 +f 220/111/37 92/112/37 94/108/37 222/107/37 +f 219/113/28 91/114/28 93/110/28 221/109/28 +f 218/115/38 90/116/38 92/112/38 220/111/38 +f 217/117/39 89/118/39 91/114/39 219/113/39 +f 216/119/25 88/120/25 90/116/25 218/115/25 +f 215/121/40 87/122/40 89/118/40 217/117/40 +f 213/123/41 85/124/41 88/120/41 216/119/41 +f 212/125/42 84/126/42 87/122/42 215/121/42 +f 211/127/43 83/128/43 82/129/43 242/130/43 +f 246/106/44 86/105/44 85/124/44 213/123/44 +f 209/131/45 81/132/45 84/126/45 212/125/45 +f 208/133/46 80/134/46 83/128/46 211/127/46 +f 207/135/17 79/136/17 66/137/17 226/138/17 +f 242/130/47 82/129/47 81/132/47 209/131/47 +f 206/139/48 78/140/48 80/134/48 208/133/48 +f 205/141/49 77/142/49 79/136/49 207/135/49 +f 204/143/50 76/144/50 74/145/50 234/146/50 +f 203/147/51 75/148/51 78/140/51 206/139/51 +f 201/149/52 73/150/52 77/142/52 205/141/52 +f 200/151/53 72/152/53 76/144/53 204/143/53 +f 199/153/54 71/154/54 75/148/54 203/147/54 +f 234/146/55 74/145/55 73/150/55 201/149/55 +f 198/155/56 70/156/56 72/157/56 200/158/56 +f 197/159/57 69/160/57 71/154/57 199/153/57 +f 195/161/58 67/162/58 70/156/58 198/155/58 +f 193/163/59 65/164/59 69/160/59 197/159/59 +f 228/102/60 68/101/60 67/162/60 195/161/60 +f 226/138/61 66/137/61 65/164/61 193/163/61 +f 162/165/61 98/166/61 129/167/61 257/168/61 +f 164/169/62 100/170/62 131/171/62 259/172/62 +f 257/168/59 129/167/59 133/173/59 261/174/59 +f 259/172/63 131/171/63 134/175/63 262/176/63 +f 261/174/64 133/173/64 135/177/64 263/178/64 +f 262/176/65 134/175/65 136/179/65 264/180/65 +f 170/181/66 106/182/66 137/183/66 265/184/66 +f 263/178/9 135/177/9 139/185/9 267/186/9 +f 264/187/67 136/188/67 140/189/67 268/190/67 +f 265/184/68 137/183/68 141/191/68 269/192/68 +f 267/186/69 139/185/69 142/193/69 270/194/69 +f 268/190/13 140/189/13 106/182/13 170/181/13 +f 269/192/70 141/191/70 143/195/70 271/196/70 +f 270/194/71 142/193/71 144/197/71 272/198/71 +f 178/199/72 114/200/72 145/201/72 273/202/72 +f 271/196/17 143/195/17 98/166/17 162/165/17 +f 272/198/46 144/197/46 147/203/46 275/204/46 +f 273/202/73 145/201/73 148/205/73 276/206/73 +f 182/207/74 118/208/74 149/209/74 277/210/74 +f 275/204/21 147/203/21 114/200/21 178/199/21 +f 276/206/42 148/205/42 151/211/42 279/212/42 +f 277/210/75 149/209/75 152/213/75 280/214/75 +f 279/212/40 151/211/40 153/215/40 281/216/40 +f 280/214/76 152/213/76 154/217/76 282/218/76 +f 281/216/77 153/215/77 155/219/77 283/220/77 +f 282/218/78 154/217/78 156/221/78 284/222/78 +f 283/220/79 155/219/79 157/223/79 285/224/79 +f 284/222/80 156/221/80 158/225/80 286/226/80 +f 285/224/81 157/223/81 159/227/81 287/228/81 +f 286/226/82 158/225/82 160/229/82 288/230/82 +f 287/228/35 159/227/35 118/208/35 182/207/35 +f 288/230/83 160/229/83 100/170/83 164/169/83 +f 256/231/33 128/232/33 132/233/33 196/234/33 +f 255/235/84 127/236/84 150/237/84 214/238/84 +f 254/239/31 126/240/31 128/232/31 256/231/31 +f 253/241/85 125/242/85 127/236/85 255/235/85 +f 252/243/80 124/244/80 126/240/80 254/239/80 +f 251/245/86 123/246/86 125/242/86 253/241/86 +f 250/247/87 122/248/87 124/244/87 252/243/87 +f 249/249/88 121/250/88 123/246/88 251/245/88 +f 248/251/89 120/252/89 122/248/89 250/247/89 +f 247/253/90 119/254/90 121/250/90 249/249/90 +f 245/255/91 117/256/91 120/252/91 248/251/91 +f 244/257/92 116/258/92 119/254/92 247/253/92 +f 243/259/93 115/260/93 146/261/93 210/262/93 +f 214/238/94 150/237/94 117/256/94 245/255/94 +f 241/263/95 113/264/95 116/258/95 244/257/95 +f 240/265/96 112/266/96 115/260/96 243/259/96 +f 239/267/97 111/268/97 130/269/97 194/270/97 +f 210/262/98 146/261/98 113/264/98 241/263/98 +f 238/271/48 110/272/48 112/266/48 240/265/48 +f 237/273/99 109/274/99 111/268/99 239/267/99 +f 236/275/100 108/276/100 138/277/100 202/278/100 +f 235/279/101 107/280/101 110/272/101 238/271/101 +f 233/281/102 105/282/102 109/274/102 237/273/102 +f 232/283/53 104/284/53 108/276/53 236/275/53 +f 231/285/103 103/286/103 107/280/103 235/279/103 +f 202/278/104 138/277/104 105/282/104 233/281/104 +f 230/287/105 102/288/105 104/289/105 232/290/105 +f 229/291/106 101/292/106 103/286/106 231/285/106 +f 227/293/107 99/294/107 102/288/107 230/287/107 +f 225/295/108 97/296/108 101/292/108 229/291/108 +f 196/234/109 132/233/109 99/294/109 227/293/109 +f 194/270/110 130/269/110 97/296/110 225/295/110 +f 66/137/111 194/270/111 225/295/111 65/164/111 +f 68/101/62 196/234/62 227/293/62 67/162/62 +f 65/164/59 225/295/59 229/291/59 69/160/59 +f 67/162/112 227/293/112 230/287/112 70/156/112 +f 69/160/113 229/291/113 231/285/113 71/154/113 +f 70/156/114 230/287/114 232/290/114 72/157/114 +f 74/145/115 202/278/115 233/281/115 73/150/115 +f 71/154/116 231/285/116 235/279/116 75/148/116 +f 72/152/53 232/283/53 236/275/53 76/144/53 +f 73/150/117 233/281/117 237/273/117 77/142/117 +f 75/148/101 235/279/101 238/271/101 78/140/101 +f 76/144/118 236/275/118 202/278/118 74/145/118 +f 77/142/119 237/273/119 239/267/119 79/136/119 +f 78/140/48 238/271/48 240/265/48 80/134/48 +f 82/129/120 210/262/120 241/263/120 81/132/120 +f 79/136/121 239/267/121 194/270/121 66/137/121 +f 80/134/46 240/265/46 243/259/46 83/128/46 +f 81/132/73 241/263/73 244/257/73 84/126/73 +f 86/105/122 214/238/122 245/255/122 85/124/122 +f 83/128/123 243/259/123 210/262/123 82/129/123 +f 84/126/124 244/257/124 247/253/124 87/122/124 +f 85/124/125 245/255/125 248/251/125 88/120/125 +f 87/122/126 247/253/126 249/249/126 89/118/126 +f 88/120/127 248/251/127 250/247/127 90/116/127 +f 89/118/128 249/249/128 251/245/128 91/114/128 +f 90/116/129 250/247/129 252/243/129 92/112/129 +f 91/114/130 251/245/130 253/241/130 93/110/130 +f 92/112/131 252/243/131 254/239/131 94/108/131 +f 93/110/132 253/241/132 255/235/132 95/104/132 +f 94/108/31 254/239/31 256/231/31 96/100/31 +f 95/104/35 255/235/35 214/238/35 86/105/35 +f 96/100/33 256/231/33 196/234/33 68/101/33 +f 8/297/133 288/230/133 164/169/133 9/298/133 +f 1/299/35 287/228/35 182/207/35 2/300/35 +f 7/301/134 286/226/134 288/230/134 8/297/134 +f 26/302/36 285/224/36 287/228/36 1/299/36 +f 6/303/135 284/222/135 286/226/135 7/301/135 +f 25/304/28 283/220/28 285/224/28 26/302/28 +f 5/305/87 282/218/87 284/222/87 6/303/87 +f 24/306/39 281/216/39 283/220/39 25/304/39 +f 4/307/136 280/214/136 282/218/136 5/305/136 +f 23/308/137 279/212/137 281/216/137 24/306/137 +f 3/309/138 277/210/138 280/214/138 4/307/138 +f 22/310/139 276/206/139 279/212/139 23/308/139 +f 31/311/21 275/204/21 178/199/21 21/312/21 +f 2/300/140 182/207/140 277/210/140 3/309/140 +f 32/313/141 273/202/141 276/206/141 22/310/141 +f 20/314/46 272/198/46 275/204/46 31/311/46 +f 14/315/17 271/196/17 162/165/17 15/316/17 +f 21/312/72 178/199/72 273/202/72 32/313/72 +f 19/317/142 270/194/142 272/198/142 20/314/142 +f 13/318/143 269/192/143 271/196/143 14/315/143 +f 11/319/144 268/190/144 170/181/144 12/320/144 +f 18/321/145 267/186/145 270/194/145 19/317/145 +f 29/322/146 265/184/146 269/192/146 13/318/146 +f 28/323/147 264/187/147 268/190/147 11/319/147 +f 30/324/148 263/178/148 267/186/148 18/321/148 +f 12/320/149 170/181/149 265/184/149 29/322/149 +f 10/325/150 262/176/150 264/180/150 28/326/150 +f 17/327/151 261/174/151 263/178/151 30/324/151 +f 27/328/152 259/172/152 262/176/152 10/325/152 +f 16/329/59 257/168/59 261/174/59 17/327/59 +f 9/298/153 164/169/153 259/172/153 27/328/153 +f 15/316/61 162/165/61 257/168/61 16/329/61 +f 98/330/61 226/138/61 193/163/61 129/331/61 +f 100/332/154 228/102/154 195/161/154 131/333/154 +f 129/331/59 193/163/59 197/159/59 133/334/59 +f 131/333/155 195/161/155 198/155/155 134/335/155 +f 133/334/156 197/159/156 199/153/156 135/336/156 +f 134/335/157 198/155/157 200/158/157 136/337/157 +f 106/338/158 234/146/158 201/149/158 137/339/158 +f 135/336/159 199/153/159 203/147/159 139/340/159 +f 136/341/160 200/151/160 204/143/160 140/342/160 +f 137/339/161 201/149/161 205/141/161 141/343/161 +f 139/340/162 203/147/162 206/139/162 142/344/162 +f 140/342/163 204/143/163 234/146/163 106/338/163 +f 141/343/164 205/141/164 207/135/164 143/345/164 +f 142/344/165 206/139/165 208/133/165 144/346/165 +f 114/347/166 242/130/166 209/131/166 145/348/166 +f 143/345/17 207/135/17 226/138/17 98/330/17 +f 144/346/46 208/133/46 211/127/46 147/349/46 +f 145/348/167 209/131/167 212/125/167 148/350/167 +f 118/351/168 246/106/168 213/123/168 149/352/168 +f 147/349/169 211/127/169 242/130/169 114/347/169 +f 148/350/42 212/125/42 215/121/42 151/353/42 +f 149/352/170 213/123/170 216/119/170 152/354/170 +f 151/353/40 215/121/40 217/117/40 153/355/40 +f 152/354/171 216/119/171 218/115/171 154/356/171 +f 153/355/172 217/117/172 219/113/172 155/357/172 +f 154/356/173 218/115/173 220/111/173 156/358/173 +f 155/357/174 219/113/174 221/109/174 157/359/174 +f 156/358/175 220/111/175 222/107/175 158/360/175 +f 157/359/176 221/109/176 223/103/176 159/361/176 +f 158/360/31 222/107/31 224/99/31 160/362/31 +f 159/361/35 223/103/35 246/106/35 118/351/35 +f 160/362/177 224/99/177 228/102/177 100/332/177 +f 128/232/33 192/98/33 260/37/33 132/233/33 +f 127/236/178 191/96/178 278/75/178 150/237/178 +f 126/240/31 190/94/31 192/98/31 128/232/31 +f 125/242/179 189/92/179 191/96/179 127/236/179 +f 124/244/80 188/90/80 190/94/80 126/240/80 +f 123/246/28 187/88/28 189/92/28 125/242/28 +f 122/248/87 186/86/87 188/90/87 124/244/87 +f 121/250/180 185/84/180 187/88/180 123/246/180 +f 120/252/181 184/82/181 186/86/181 122/248/181 +f 119/254/182 183/80/182 185/84/182 121/250/182 +f 117/256/183 181/78/183 184/82/183 120/252/183 +f 116/258/184 180/74/184 183/80/184 119/254/184 +f 115/260/185 179/72/185 274/67/185 146/261/185 +f 150/237/140 278/75/140 181/78/140 117/256/140 +f 113/264/186 177/70/186 180/74/186 116/258/186 +f 112/266/187 176/66/187 179/72/187 115/260/187 +f 111/268/188 175/64/188 258/33/188 130/269/188 +f 146/261/72 274/67/72 177/70/72 113/264/72 +f 110/272/48 174/62/48 176/66/48 112/266/48 +f 109/274/189 173/60/189 175/64/189 111/268/189 +f 108/276/190 172/58/190 266/49/190 138/277/190 +f 107/280/101 171/54/101 174/62/101 110/272/101 +f 105/282/191 169/52/191 173/60/191 109/274/191 +f 104/284/192 168/55/192 172/58/192 108/276/192 +f 103/286/193 167/46/193 171/54/193 107/280/193 +f 138/277/194 266/49/194 169/52/194 105/282/194 +f 102/288/195 166/44/195 168/48/195 104/289/195 +f 101/292/196 165/42/196 167/46/196 103/286/196 +f 99/294/197 163/40/197 166/44/197 102/288/197 +f 97/296/198 161/36/198 165/42/198 101/292/198 +f 132/233/199 260/37/199 163/40/199 99/294/199 +f 130/269/200 258/33/200 161/36/200 97/296/200 +g Pipe_Cylinder.002_pipe +f 353/363/42 356/364/42 357/365/42 358/366/42 359/367/42 360/368/42 +f 365/369/42 368/370/42 369/371/42 370/372/42 371/373/42 372/374/42 +f 377/375/42 380/376/42 381/377/42 382/378/42 383/379/42 384/380/42 +f 389/381/42 392/382/42 393/383/42 394/384/42 395/385/42 396/386/42 +f 401/387/42 404/388/42 405/389/42 406/390/42 407/391/42 408/392/42 +f 413/393/42 416/394/42 417/395/42 418/396/42 419/397/42 420/398/42 +f 425/399/42 428/400/42 429/401/42 430/402/42 431/403/42 432/404/42 +f 437/405/42 440/406/42 441/407/42 442/408/42 443/409/42 444/410/42 +f 471/411/42 481/412/42 486/413/42 490/414/42 494/415/42 499/416/42 498/417/42 503/418/42 507/419/42 511/420/42 515/421/42 520/422/42 529/423/42 530/424/42 528/425/42 522/426/42 517/427/42 513/428/42 509/429/42 505/430/42 501/431/42 496/432/42 492/433/42 488/434/42 483/435/42 479/436/42 472/437/42 473/438/42 470/439/42 467/440/42 468/441/42 469/442/42 +f 475/443/53 474/444/53 480/445/53 485/446/53 484/447/53 489/448/53 493/449/53 497/450/53 502/451/53 506/452/53 510/453/53 514/454/53 518/455/53 523/456/53 519/457/53 525/458/53 524/459/53 526/460/53 527/461/53 521/462/53 516/463/53 512/464/53 508/465/53 504/466/53 500/467/53 495/468/53 491/469/53 487/470/53 482/471/53 478/472/53 477/473/53 476/474/53 +f 531/475/42 534/476/42 535/477/42 536/478/42 537/479/42 538/480/42 +f 543/481/42 546/482/42 547/483/42 548/484/42 549/485/42 550/486/42 +f 555/487/42 558/488/42 559/489/42 560/490/42 561/491/42 562/492/42 +f 567/493/42 570/494/42 571/495/42 572/496/42 573/497/42 574/498/42 +f 579/499/42 582/500/42 583/501/42 584/502/42 585/503/42 586/504/42 +f 591/505/42 594/506/42 595/507/42 596/508/42 597/509/42 598/510/42 +f 603/511/42 606/512/42 607/513/42 608/514/42 609/515/42 610/516/42 +f 615/517/42 618/518/42 619/519/42 620/520/42 621/521/42 622/522/42 +f 746/523/201 747/524/201 777/525/201 776/526/201 774/527/201 775/528/201 773/529/201 772/530/201 771/531/201 770/532/201 768/533/201 769/534/201 767/535/201 766/536/201 765/537/201 764/538/201 763/539/201 762/540/201 761/541/201 760/542/201 759/543/201 758/544/201 757/545/201 756/546/201 755/547/201 754/548/201 753/549/201 752/550/201 751/551/201 750/552/201 749/553/201 748/554/201 +f 725/555/1 742/556/1 726/557/1 727/558/1 728/559/1 729/560/1 730/561/1 743/562/1 731/563/1 732/564/1 733/565/1 744/566/1 734/567/1 745/568/1 735/569/1 736/570/1 737/571/1 738/572/1 739/573/1 714/574/1 715/575/1 716/576/1 717/577/1 718/578/1 719/579/1 720/580/1 721/581/1 722/582/1 740/583/1 723/584/1 741/585/1 724/586/1 +s 1 +f 455/587/202 794/588/25 449/589/203 290/590/204 291/591/205 +f 456/592/206 455/587/202 291/591/205 292/593/207 +f 457/594/208 456/592/206 292/593/207 297/595/209 +f 449/589/203 627/596/210 640/597/211 289/598/212 290/590/204 +f 458/599/213 457/594/208 297/595/209 301/600/214 +f 289/598/212 640/597/211 639/601/215 293/602/216 +f 458/599/213 301/600/214 305/603/217 459/604/218 +f 294/605/219 290/590/204 289/598/212 295/606/220 +f 296/607/221 291/591/205 290/590/204 294/605/219 +f 298/608/222 292/593/207 291/591/205 296/607/221 +f 453/609/223 452/610/224 333/611/225 337/612/226 +f 295/606/220 289/598/212 293/602/216 300/613/227 +f 302/614/228 297/595/209 292/593/207 298/608/222 +f 460/615/229 459/604/218 305/603/217 309/616/230 +f 304/617/231 300/613/227 293/602/216 299/618/232 +f 306/619/233 301/600/214 297/595/209 302/614/228 +f 461/620/234 460/615/229 309/616/230 313/621/235 +f 637/622/236 303/623/237 299/618/232 638/624/238 +f 308/625/239 304/617/231 299/618/232 303/623/237 +f 470/626/240 474/627/241 475/628/242 467/629/243 +f 469/630/244 477/631/245 478/632/246 471/633/247 +f 310/634/248 305/603/217 301/600/214 306/619/233 +f 473/635/249 480/636/250 474/627/241 470/626/240 +f 312/637/251 308/625/239 303/623/237 307/638/252 +f 471/633/247 478/632/246 482/639/253 481/640/254 +f 314/641/255 309/616/230 305/603/217 310/634/248 +f 472/642/256 485/643/257 480/636/250 473/635/249 +f 462/644/258 450/645/259 317/646/260 321/647/261 +f 643/648/262 315/649/263 311/650/264 634/651/265 +f 316/652/266 312/637/251 307/638/252 311/650/264 +f 479/653/267 484/654/268 485/643/257 472/642/256 +f 318/655/269 313/621/235 309/616/230 314/641/255 +f 488/656/270 493/657/271 489/658/272 483/659/273 +f 320/660/274 316/652/266 311/650/264 315/649/263 +f 481/640/254 482/639/253 487/661/275 486/662/276 +f 322/663/277 317/664/260 313/621/235 318/655/269 +f 492/665/278 497/666/279 493/657/271 488/656/270 +f 451/667/280 463/668/281 325/669/282 329/670/283 +f 642/671/284 631/672/285 323/673/286 319/674/287 +f 324/675/288 320/660/274 315/649/263 319/674/287 +f 486/662/276 487/661/275 491/676/289 490/677/290 +f 326/678/291 321/647/261 317/646/260 322/679/277 +f 496/680/292 502/681/293 497/666/279 492/665/278 +f 452/610/224 451/667/280 329/670/283 333/611/225 +f 633/682/294 630/683/295 335/684/296 331/685/297 +f 328/686/298 324/675/288 319/674/287 323/673/286 +f 490/677/290 491/676/289 495/687/299 494/688/300 +f 330/689/301 325/669/282 321/647/261 326/678/291 +f 501/690/302 506/691/303 502/681/293 496/680/292 +f 332/692/304 328/686/298 323/673/286 327/693/305 +f 494/688/300 495/687/299 500/694/306 499/695/307 +f 334/696/308 329/670/283 325/669/282 330/689/301 +f 505/697/309 510/698/310 506/691/303 501/690/302 +f 336/699/311 332/692/304 327/693/305 331/685/297 +f 498/700/312 504/701/313 508/702/314 503/703/315 +f 334/696/308 338/704/316 333/611/225 329/670/283 +f 499/695/307 500/694/306 504/705/313 498/706/312 +f 465/707/317 349/708/318 347/709/319 466/710/320 647/711/64 +f 340/712/321 336/699/311 331/685/297 335/684/296 +f 503/703/315 508/702/314 512/713/322 507/714/323 +f 467/629/243 475/628/242 476/715/324 468/716/325 +f 342/717/326 337/612/226 333/611/225 338/704/316 +f 509/718/327 514/719/328 510/698/310 505/697/309 +f 453/609/223 337/612/226 341/720/329 464/721/330 +f 628/722/331 641/723/332 466/710/320 347/709/319 343/724/333 +f 344/725/334 340/712/321 335/684/296 339/726/335 +f 507/714/323 512/713/322 516/727/336 511/728/337 +f 342/717/326 346/729/338 341/720/329 337/612/226 +f 513/730/339 518/731/340 514/719/328 509/718/327 +f 348/732/341 344/725/334 339/726/335 343/724/333 +f 511/728/337 516/733/336 521/734/342 515/735/343 +f 346/729/338 350/736/344 345/737/345 341/720/329 +f 517/738/346 523/739/347 518/731/340 513/730/339 +f 483/659/273 489/658/272 484/654/268 479/653/267 +f 351/740/348 348/732/341 343/724/333 347/709/319 +f 515/735/343 521/734/342 527/741/349 520/742/350 +f 350/736/344 352/743/351 349/708/318 345/737/345 +f 522/744/352 519/745/353 523/739/347 517/738/346 +f 352/743/351 351/740/348 347/709/319 349/708/318 +f 468/716/325 476/715/324 477/631/245 469/630/244 +f 528/746/354 525/747/355 519/745/353 522/744/352 +f 520/742/350 527/741/349 526/748/356 529/749/357 +f 530/750/358 524/751/359 525/747/355 528/746/354 +f 529/749/357 526/748/356 524/751/359 530/750/358 +f 353/752/360 354/753/361 355/754/362 356/755/363 +f 360/756/364 361/757/365 354/753/361 353/752/360 +f 356/755/363 355/754/362 362/758/366 357/759/367 +f 357/759/367 362/758/366 363/760/368 358/761/369 +f 358/762/369 363/763/368 364/764/370 359/765/371 +f 359/765/371 364/764/370 361/757/365 360/756/364 +f 365/766/372 366/767/373 367/768/374 368/769/375 +f 372/770/376 373/771/377 366/767/373 365/766/372 +f 368/769/375 367/768/374 374/772/378 369/773/379 +f 369/773/379 374/772/378 375/774/380 370/775/381 +f 370/776/381 375/777/380 376/778/382 371/779/383 +f 371/779/383 376/778/382 373/771/377 372/770/376 +f 377/780/384 378/781/385 379/782/386 380/783/387 +f 384/784/388 385/785/389 378/781/385 377/780/384 +f 380/783/387 379/782/386 386/786/390 381/787/391 +f 381/787/391 386/786/390 387/788/392 382/789/393 +f 382/790/393 387/791/392 388/792/394 383/793/395 +f 383/793/395 388/792/394 385/785/389 384/784/388 +f 389/794/396 390/795/397 391/796/398 392/797/399 +f 396/798/400 397/799/401 390/795/397 389/794/396 +f 392/797/399 391/796/398 398/800/402 393/801/403 +f 393/801/403 398/800/402 399/802/404 394/803/405 +f 394/804/405 399/805/404 400/806/406 395/807/407 +f 395/807/407 400/806/406 397/799/401 396/798/400 +f 401/808/369 402/809/368 403/810/370 404/811/371 +f 408/812/367 409/813/366 402/809/368 401/808/369 +f 404/811/371 403/810/370 410/814/365 405/815/364 +f 405/815/364 410/814/365 411/816/361 406/817/360 +f 406/818/360 411/819/361 412/820/362 407/821/363 +f 407/821/363 412/820/362 409/813/366 408/812/367 +f 413/822/381 414/823/380 415/824/382 416/825/383 +f 420/826/379 421/827/378 414/823/380 413/822/381 +f 416/825/383 415/824/382 422/828/377 417/829/376 +f 417/829/376 422/828/377 423/830/373 418/831/372 +f 418/832/372 423/833/373 424/834/374 419/835/375 +f 419/835/375 424/834/374 421/827/378 420/826/379 +f 425/836/393 426/837/392 427/838/394 428/839/395 +f 432/840/391 433/841/390 426/837/392 425/836/393 +f 428/839/395 427/838/394 434/842/389 429/843/388 +f 429/843/388 434/842/389 435/844/385 430/845/384 +f 430/846/384 435/847/385 436/848/386 431/849/387 +f 431/849/387 436/848/386 433/841/390 432/840/391 +f 437/850/405 438/851/404 439/852/406 440/853/407 +f 444/854/403 445/855/402 438/851/404 437/850/405 +f 440/853/407 439/852/406 446/856/401 441/857/400 +f 441/857/400 446/856/401 447/858/397 442/859/396 +f 442/860/396 447/861/397 448/862/398 443/863/399 +f 443/863/399 448/862/398 445/855/402 444/854/403 +f 646/864/25 627/596/210 449/589/203 794/588/25 +f 293/602/216 639/601/215 638/624/238 299/618/232 +f 637/622/236 636/865/408 307/638/252 303/623/237 +f 636/865/408 634/651/265 311/650/264 307/638/252 +f 631/672/285 632/866/409 327/693/305 323/673/286 +f 632/866/409 633/682/294 331/685/297 327/693/305 +f 454/867/410 464/721/330 341/720/329 345/737/345 +f 643/648/262 645/868/411 642/671/284 319/674/287 315/649/263 +f 450/869/259 461/620/234 313/621/235 317/664/260 +f 465/707/317 454/867/410 345/737/345 349/708/318 +f 463/668/281 462/644/258 321/647/261 325/669/282 +f 628/722/331 343/724/333 339/726/335 629/870/412 +f 531/871/413 532/872/414 533/873/415 534/874/416 +f 538/875/417 539/876/418 532/872/414 531/871/413 +f 534/874/416 533/873/415 540/877/419 535/878/420 +f 535/878/420 540/877/419 541/879/421 536/880/422 +f 536/881/422 541/882/421 542/883/423 537/884/424 +f 537/884/424 542/883/423 539/876/418 538/875/417 +f 543/885/425 544/886/1 545/887/426 546/888/427 +f 550/889/428 551/890/429 544/886/1 543/885/425 +f 546/888/427 545/887/426 552/891/430 547/892/431 +f 547/892/431 552/891/430 553/893/201 548/894/432 +f 548/895/432 553/896/201 554/897/433 549/898/434 +f 549/898/434 554/897/433 551/890/429 550/889/428 +f 555/899/435 556/900/436 557/901/437 558/902/438 +f 562/903/439 563/904/440 556/900/436 555/899/435 +f 558/902/438 557/901/437 564/905/441 559/906/442 +f 559/906/442 564/905/441 565/907/443 560/908/444 +f 560/909/444 565/910/443 566/911/445 561/912/446 +f 561/912/446 566/911/445 563/904/440 562/903/439 +f 567/913/447 568/914/25 569/915/448 570/916/449 +f 574/917/450 575/918/451 568/914/25 567/913/447 +f 570/916/449 569/915/448 576/919/452 571/920/453 +f 571/920/453 576/919/452 577/921/64 572/922/454 +f 572/923/454 577/924/64 578/925/455 573/926/456 +f 573/926/456 578/925/455 575/918/451 574/917/450 +f 579/927/422 580/928/421 581/929/423 582/930/424 +f 586/931/420 587/932/419 580/928/421 579/927/422 +f 582/930/424 581/929/423 588/933/418 583/934/417 +f 583/934/417 588/933/418 589/935/414 584/936/413 +f 584/937/413 589/938/414 590/939/415 585/940/416 +f 585/940/416 590/939/415 587/932/419 586/931/420 +f 591/941/432 592/942/201 593/943/433 594/944/434 +f 598/945/431 599/946/430 592/942/201 591/941/432 +f 594/944/434 593/943/433 600/947/429 595/948/428 +f 595/948/428 600/947/429 601/949/1 596/950/425 +f 596/951/425 601/952/1 602/953/426 597/954/427 +f 597/954/427 602/953/426 599/946/430 598/945/431 +f 603/955/444 604/956/443 605/957/445 606/958/446 +f 610/959/442 611/960/441 604/956/443 603/955/444 +f 606/958/446 605/957/445 612/961/440 607/962/439 +f 607/962/439 612/961/440 613/963/436 608/964/435 +f 608/965/435 613/966/436 614/967/437 609/968/438 +f 609/968/438 614/967/437 611/960/441 610/959/442 +f 615/969/454 616/970/64 617/971/455 618/972/456 +f 622/973/453 623/974/452 616/970/64 615/969/454 +f 618/972/456 617/971/455 624/975/451 619/976/450 +f 619/976/450 624/975/451 625/977/25 620/978/447 +f 620/979/447 625/980/25 626/981/448 621/982/449 +f 621/982/449 626/981/448 623/974/452 622/973/453 +f 629/870/412 339/726/335 335/684/296 630/683/295 +f 647/711/64 466/710/320 641/723/332 864/983/64 +f 644/984/25 646/864/25 794/588/25 455/587/202 +f 465/707/317 647/711/64 864/983/64 635/985/64 +f 749/986/457 716/987/458 715/988/459 748/989/460 +f 750/990/461 717/991/462 716/987/458 749/986/457 +f 751/992/463 718/993/464 717/991/462 750/990/461 +f 752/994/465 719/995/466 718/993/464 751/992/463 +f 753/996/467 720/997/468 719/995/466 752/994/465 +f 754/998/469 721/999/470 720/997/468 753/996/467 +f 755/1000/471 722/1001/472 721/999/470 754/998/469 +f 756/1002/473 740/1003/474 722/1001/472 755/1000/471 +f 757/1004/475 723/1005/476 740/1003/474 756/1002/473 +f 758/1006/477 741/1007/478 723/1005/476 757/1004/475 +f 759/1008/479 724/1009/480 741/1007/478 758/1006/477 +f 760/1010/481 725/1011/482 724/1009/480 759/1008/479 +f 761/1012/483 742/1013/484 725/1011/482 760/1010/481 +f 762/1014/485 726/1015/486 742/1013/484 761/1012/483 +f 763/1016/487 727/1017/488 726/1015/486 762/1014/485 +f 764/1018/489 728/1019/490 727/1017/488 763/1016/487 +f 765/1020/491 729/1021/492 728/1022/490 764/1023/489 +f 766/1024/493 730/1025/494 729/1021/492 765/1020/491 +f 767/1026/495 743/1027/496 730/1025/494 766/1024/493 +f 769/1028/497 731/1029/498 743/1027/496 767/1026/495 +f 770/1030/499 733/1031/500 732/1032/501 768/1033/502 +f 768/1033/502 732/1032/501 731/1029/498 769/1028/497 +f 771/1034/503 744/1035/504 733/1031/500 770/1030/499 +f 772/1036/505 734/1037/506 744/1035/504 771/1034/503 +f 773/1038/507 745/1039/508 734/1037/506 772/1036/505 +f 775/1040/509 735/1041/510 745/1039/508 773/1038/507 +f 776/1042/511 737/1043/512 736/1044/513 774/1045/514 +f 774/1045/514 736/1044/513 735/1041/510 775/1040/509 +f 777/1046/515 738/1047/516 737/1043/512 776/1042/511 +f 747/1048/517 739/1049/518 738/1047/516 777/1046/515 +f 677/1050/519 680/1051/520 681/1052/521 648/1053/522 +f 649/1054/523 648/1053/522 681/1052/521 682/1055/524 +f 650/1056/525 649/1054/523 682/1055/524 683/1057/526 +f 651/1058/527 650/1056/525 683/1057/526 684/1059/528 +f 652/1060/529 651/1058/527 684/1059/528 685/1061/530 +f 653/1062/531 652/1060/529 685/1061/530 686/1063/532 +f 653/1062/531 686/1063/532 687/1064/533 654/1065/534 +f 655/1066/535 654/1065/534 687/1064/533 688/1067/536 +f 656/1068/537 655/1066/535 688/1067/536 689/1069/538 +f 657/1070/539 656/1068/537 689/1069/538 690/1071/540 +f 657/1070/539 690/1071/540 691/1072/541 658/1073/542 +f 658/1073/542 691/1072/541 692/1074/543 678/1075/544 +f 659/1076/545 693/1077/546 694/1078/547 660/1079/548 +f 678/1075/544 692/1074/543 693/1077/546 659/1076/545 +f 660/1079/548 694/1078/547 695/1080/549 661/1081/550 +f 662/1082/551 661/1081/550 695/1080/549 696/1083/552 +f 662/1082/551 696/1083/552 697/1084/553 663/1085/554 +f 664/1086/555 663/1085/554 697/1084/553 698/1087/556 +f 664/1088/555 698/1089/556 699/1090/557 665/1091/558 +f 666/1092/559 665/1091/558 699/1090/557 700/1093/560 +f 666/1092/559 700/1093/560 701/1094/561 667/1095/562 +f 667/1095/562 701/1094/561 702/1096/563 669/1097/564 +f 669/1097/564 702/1096/563 703/1098/565 668/1099/566 +f 668/1099/566 703/1098/565 704/1100/567 670/1101/568 +f 670/1101/568 704/1100/567 705/1102/569 671/1103/570 +f 671/1103/570 705/1102/569 706/1104/571 679/1105/572 +f 674/1106/573 672/1107/574 707/1108/575 708/1109/576 +f 672/1107/574 679/1105/572 706/1104/571 707/1108/575 +f 675/1110/577 673/1111/578 709/1112/579 710/1113/580 +f 674/1106/573 708/1109/576 709/1112/579 673/1111/578 +f 676/1114/581 675/1110/577 710/1113/580 711/1115/582 +f 676/1114/581 711/1115/582 680/1051/520 677/1050/519 +f 748/989/460 715/988/459 714/1116/583 746/1117/584 +f 693/1077/546 692/1074/543 456/1118/206 457/1119/208 +f 694/1078/547 693/1077/546 457/1119/208 458/1120/213 +f 793/1121/585 683/1057/526 682/1055/524 792/1122/586 795/1123/587 +f 713/1124/588 707/1108/575 706/1104/571 465/1125/317 635/1126/64 +f 864/1127/64 791/1128/589 713/1124/588 635/1126/64 +f 692/1074/543 691/1072/541 455/1129/202 456/1118/206 +f 788/1130/590 789/1131/591 688/1067/536 687/1064/533 +f 705/1102/569 704/1100/567 464/1132/330 454/1133/410 +f 709/1112/579 708/1109/576 779/1134/592 780/1135/593 +f 784/1136/594 711/1115/582 710/1113/580 781/1137/595 +f 785/1138/596 684/1059/528 683/1057/526 793/1121/585 +f 458/1120/213 459/1139/218 695/1080/549 694/1078/547 +f 706/1104/571 705/1102/569 454/1133/410 465/1125/317 +f 704/1100/567 703/1098/565 453/1140/223 464/1132/330 +f 708/1109/576 707/1108/575 713/1124/588 791/1128/589 779/1134/592 +f 784/1136/594 783/1141/597 680/1051/520 711/1115/582 +f 746/1117/584 714/1116/583 739/1049/518 747/1048/517 +f 787/1142/598 788/1130/590 687/1064/533 686/1063/532 +f 789/1131/591 790/1143/599 689/1069/538 688/1067/536 +f 790/1143/599 778/1144/600 712/1145/601 690/1071/540 689/1069/538 +f 691/1072/541 690/1071/540 712/1145/601 644/1146/25 455/1129/202 +f 459/1139/218 460/1147/229 696/1083/552 695/1080/549 +f 460/1147/229 461/1148/234 697/1084/553 696/1083/552 +f 461/1148/234 450/1149/259 698/1087/556 697/1084/553 +f 450/1150/259 462/1151/258 699/1090/557 698/1089/556 +f 462/1151/258 463/1152/281 700/1093/560 699/1090/557 +f 463/1152/281 451/1153/280 701/1094/561 700/1093/560 +f 451/1153/280 452/1154/224 702/1096/563 701/1094/561 +f 709/1112/579 780/1135/593 781/1137/595 710/1113/580 +f 782/1155/602 681/1052/521 680/1051/520 783/1141/597 +f 782/1155/602 792/1122/586 682/1055/524 681/1052/521 +f 786/1156/603 685/1061/530 684/1059/528 785/1138/596 +f 786/1156/603 787/1142/598 686/1063/532 685/1061/530 +f 644/1146/25 712/1145/601 778/1144/600 646/1157/25 +f 452/1154/224 453/1140/223 703/1098/565 702/1096/563 +f 781/1137/595 780/1135/593 798/1158/604 799/1159/605 +f 789/1131/591 788/1130/590 806/1160/606 807/1161/607 +f 646/1157/25 778/1144/600 796/1162/608 +f 792/1122/586 782/1155/602 800/1163/609 810/1164/610 +f 790/1143/599 789/1131/591 807/1161/607 808/1165/611 +f 791/1128/589 864/1127/64 809/1166/612 +f 782/1155/602 783/1141/597 801/1167/613 800/1163/609 +f 778/1144/600 790/1143/599 808/1165/611 796/1162/608 +f 783/1141/597 784/1136/594 802/1168/614 801/1167/613 +f 793/1121/585 795/1123/587 812/1169/615 811/1170/616 +f 788/1130/590 787/1142/598 805/1171/617 806/1160/606 +f 784/1136/594 781/1137/595 799/1159/605 802/1168/614 +f 785/1138/596 793/1121/585 811/1170/616 803/1172/618 +f 779/1134/592 791/1128/589 809/1166/612 797/1173/619 +f 795/1123/587 792/1122/586 810/1164/610 812/1169/615 +f 786/1156/603 785/1138/596 803/1172/618 804/1174/620 +f 780/1135/593 779/1134/592 797/1173/619 798/1158/604 +f 787/1142/598 786/1156/603 804/1174/620 805/1171/617 +f 808/1165/611 807/1161/607 824/1175/621 825/1176/622 +f 800/1163/609 801/1167/613 818/1177/623 817/1178/624 +f 796/1162/608 808/1165/611 825/1176/622 813/1179/625 +f 801/1167/613 802/1168/614 819/1180/626 818/1177/623 +f 811/1170/616 812/1169/615 829/1181/627 828/1182/628 +f 806/1160/606 805/1171/617 822/1183/629 823/1184/630 +f 802/1168/614 799/1159/605 816/1185/631 819/1180/626 +f 812/1169/615 810/1164/610 827/1186/632 829/1181/627 +f 803/1172/618 811/1170/616 828/1182/628 820/1187/633 +f 797/1173/619 809/1166/612 826/1188/634 814/1189/635 +f 646/1157/25 796/1162/608 813/1179/625 +f 804/1174/620 803/1172/618 820/1187/633 821/1190/636 +f 798/1158/604 797/1173/619 814/1189/635 815/1191/637 +f 809/1166/612 864/1127/64 826/1188/634 +f 805/1171/617 804/1174/620 821/1190/636 822/1183/629 +f 799/1159/605 798/1158/604 815/1191/637 816/1185/631 +f 807/1161/607 806/1160/606 823/1184/630 824/1175/621 +f 810/1164/610 800/1163/609 817/1178/624 827/1186/632 +f 825/1176/622 824/1175/621 841/1192/638 842/1193/639 +f 817/1178/624 818/1177/623 835/1194/640 834/1195/641 +f 813/1179/625 825/1176/622 842/1193/639 830/1196/642 +f 818/1177/623 819/1180/626 836/1197/643 835/1194/640 +f 828/1182/628 829/1181/627 846/1198/644 845/1199/645 +f 823/1184/630 822/1183/629 839/1200/646 840/1201/647 +f 819/1180/626 816/1185/631 833/1202/648 836/1197/643 +f 829/1181/627 827/1186/632 844/1203/649 846/1198/644 +f 820/1187/633 828/1182/628 845/1199/645 837/1204/650 +f 814/1189/635 826/1188/634 843/1205/651 831/1206/652 +f 646/1157/25 813/1179/625 830/1196/642 +f 821/1190/636 820/1187/633 837/1204/650 838/1207/653 +f 815/1191/637 814/1189/635 831/1206/652 832/1208/654 +f 826/1188/634 864/1127/64 843/1205/651 +f 822/1183/629 821/1190/636 838/1207/653 839/1200/646 +f 816/1185/631 815/1191/637 832/1208/654 833/1202/648 +f 824/1175/621 823/1184/630 840/1201/647 841/1192/638 +f 827/1186/632 817/1178/624 834/1195/641 844/1203/649 +f 842/1193/639 841/1192/638 858/1209/655 859/1210/656 +f 834/1195/641 835/1194/640 852/1211/657 851/1212/658 +f 830/1196/642 842/1193/639 859/1210/656 847/1213/659 +f 835/1194/640 836/1197/643 853/1214/660 852/1211/657 +f 845/1199/645 846/1198/644 863/1215/661 862/1216/662 +f 840/1201/647 839/1200/646 856/1217/663 857/1218/664 +f 836/1197/643 833/1202/648 850/1219/665 853/1214/660 +f 846/1198/644 844/1203/649 861/1220/666 863/1215/661 +f 837/1204/650 845/1199/645 862/1216/662 854/1221/667 +f 831/1206/652 843/1205/651 860/1222/668 848/1223/669 +f 646/1157/25 830/1196/642 847/1213/659 +f 838/1207/653 837/1204/650 854/1221/667 855/1224/670 +f 832/1208/654 831/1206/652 848/1223/669 849/1225/671 +f 843/1205/651 864/1127/64 860/1222/668 +f 839/1200/646 838/1207/653 855/1224/670 856/1217/663 +f 833/1202/648 832/1208/654 849/1225/671 850/1219/665 +f 841/1192/638 840/1201/647 857/1218/664 858/1209/655 +f 844/1203/649 834/1195/641 851/1212/658 861/1220/666 +f 859/1210/656 858/1209/655 876/1226/672 877/1227/673 +f 851/1212/658 852/1211/657 870/1228/674 869/1229/675 +f 847/1213/659 859/1210/656 877/1227/673 865/1230/676 +f 852/1211/657 853/1214/660 871/1231/677 870/1228/674 +f 862/1216/662 863/1215/661 881/1232/678 880/1233/679 +f 857/1218/664 856/1217/663 874/1234/680 875/1235/681 +f 853/1214/660 850/1219/665 868/1236/682 871/1231/677 +f 863/1215/661 861/1220/666 879/1237/683 881/1232/678 +f 854/1221/667 862/1216/662 880/1233/679 872/1238/684 +f 848/1223/669 860/1222/668 878/1239/685 866/1240/686 +f 646/1157/25 847/1213/659 865/1230/676 +f 855/1224/670 854/1221/667 872/1238/684 873/1241/687 +f 849/1225/671 848/1223/669 866/1240/686 867/1242/688 +f 860/1222/668 864/1127/64 878/1239/685 +f 856/1217/663 855/1224/670 873/1241/687 874/1234/680 +f 850/1219/665 849/1225/671 867/1242/688 868/1236/682 +f 858/1209/655 857/1218/664 875/1235/681 876/1226/672 +f 861/1220/666 851/1212/658 869/1229/675 879/1237/683 +f 877/1227/673 876/1226/672 893/1243/689 894/1244/690 +f 869/1229/675 870/1228/674 887/1245/691 886/1246/692 +f 865/1230/676 877/1227/673 894/1244/690 882/1247/693 +f 870/1228/674 871/1231/677 888/1248/694 887/1245/691 +f 880/1233/679 881/1232/678 898/1249/695 897/1250/696 +f 875/1235/681 874/1234/680 891/1251/697 892/1252/698 +f 871/1231/677 868/1236/682 885/1253/699 888/1248/694 +f 881/1232/678 879/1237/683 896/1254/700 898/1249/695 +f 872/1238/684 880/1233/679 897/1250/696 889/1255/701 +f 866/1240/686 878/1239/685 895/1256/702 883/1257/703 +f 646/1157/25 865/1230/676 882/1247/693 +f 873/1241/687 872/1238/684 889/1255/701 890/1258/704 +f 867/1242/688 866/1240/686 883/1257/703 884/1259/705 +f 878/1239/685 864/1127/64 895/1256/702 +f 874/1234/680 873/1241/687 890/1258/704 891/1251/697 +f 868/1236/682 867/1242/688 884/1259/705 885/1253/699 +f 876/1226/672 875/1235/681 892/1252/698 893/1243/689 +f 879/1237/683 869/1229/675 886/1246/692 896/1254/700 +f 894/1244/690 893/1243/689 910/1260/706 911/1261/707 +f 886/1246/692 887/1245/691 904/1262/708 903/1263/709 +f 882/1247/693 894/1244/690 911/1261/707 899/1264/710 +f 887/1245/691 888/1248/694 905/1265/711 904/1262/708 +f 897/1250/696 898/1249/695 915/1266/712 914/1267/713 +f 892/1252/698 891/1251/697 908/1268/714 909/1269/715 +f 888/1248/694 885/1253/699 902/1270/716 905/1265/711 +f 898/1249/695 896/1254/700 913/1271/717 915/1266/712 +f 889/1255/701 897/1250/696 914/1267/713 906/1272/718 +f 883/1257/703 895/1256/702 912/1273/719 900/1274/720 +f 646/1157/25 882/1247/693 899/1264/710 +f 890/1258/704 889/1255/701 906/1272/718 907/1275/721 +f 884/1259/705 883/1257/703 900/1274/720 901/1276/722 +f 895/1256/702 864/1127/64 912/1273/719 +f 891/1251/697 890/1258/704 907/1275/721 908/1268/714 +f 885/1253/699 884/1259/705 901/1276/722 902/1270/716 +f 893/1243/689 892/1252/698 909/1269/715 910/1260/706 +f 896/1254/700 886/1246/692 903/1263/709 913/1271/717 +f 911/1261/707 910/1260/706 639/1277/215 640/1278/211 +f 903/1263/709 904/1262/708 632/1279/409 631/1280/285 +f 899/1264/710 911/1261/707 640/1278/211 627/1281/210 +f 904/1262/708 905/1265/711 633/1282/294 632/1279/409 +f 914/1267/713 915/1266/712 645/1283/411 643/1284/262 +f 909/1269/715 908/1268/714 637/1285/236 638/1286/238 +f 905/1265/711 902/1270/716 630/1287/295 633/1282/294 +f 915/1266/712 913/1271/717 642/1288/284 645/1283/411 +f 906/1272/718 914/1267/713 643/1284/262 634/1289/265 +f 900/1274/720 912/1273/719 641/1290/332 628/1291/331 +f 646/1157/25 899/1264/710 627/1281/210 +f 907/1275/721 906/1272/718 634/1289/265 636/1292/408 +f 901/1276/722 900/1274/720 628/1291/331 629/1293/412 +f 912/1273/719 864/1127/64 641/1290/332 +f 908/1268/714 907/1275/721 636/1292/408 637/1285/236 +f 902/1270/716 901/1276/722 629/1293/412 630/1287/295 +f 910/1260/706 909/1269/715 638/1286/238 639/1277/215 +f 913/1271/717 903/1263/709 631/1280/285 642/1288/284 diff --git a/mods/pipeworks/models/pipeworks_spigot_pouring_lowpoly.obj b/mods/pipeworks/models/pipeworks_spigot_pouring_lowpoly.obj new file mode 100644 index 00000000..43787ec1 --- /dev/null +++ b/mods/pipeworks/models/pipeworks_spigot_pouring_lowpoly.obj @@ -0,0 +1,392 @@ +# Blender v2.78 (sub 0) OBJ File: 'pipe-master-lowpoly.blend' +# www.blender.org +o Cylinder.000_Cylinder.000_None_Cylinder.000_Cylinder.000_No.004 +v 0.064721 -0.156250 0.500000 +v 0.156250 -0.064721 0.500000 +v 0.156250 0.064721 0.500000 +v 0.064721 0.156250 0.500000 +v -0.064721 0.156250 0.500000 +v -0.156250 0.064721 0.500000 +v -0.156250 -0.064721 0.500000 +v -0.064721 -0.156250 0.500000 +v 0.156250 -0.064721 0.468750 +v 0.064721 -0.156250 0.468750 +v -0.064721 -0.156250 0.468750 +v -0.156250 -0.064721 0.468750 +v -0.156250 0.064721 0.468750 +v -0.064721 0.156250 0.468750 +v 0.064721 0.156250 0.468750 +v 0.156250 0.064721 0.468750 +v 0.064721 -0.187500 0.156250 +v 0.156250 -0.187500 0.064721 +v 0.156250 -0.187500 -0.064721 +v 0.064721 -0.187500 -0.156250 +v -0.064721 -0.187500 -0.156250 +v -0.156250 -0.187500 -0.064721 +v -0.156250 -0.187500 0.064721 +v -0.064721 -0.187500 0.156250 +v 0.156250 -0.250000 0.064721 +v 0.064721 -0.250000 0.156250 +v -0.064721 -0.250000 0.156250 +v -0.156250 -0.250000 0.064721 +v -0.156250 -0.250000 -0.064721 +v -0.064721 -0.250000 -0.156250 +v 0.064721 -0.250000 -0.156250 +v 0.156250 -0.250000 -0.064721 +v -0.051777 -0.000000 -0.125000 +v -0.125000 -0.000000 -0.051777 +v -0.125000 0.051777 -0.051777 +v -0.088388 0.088388 -0.088388 +v -0.051777 0.051777 -0.125000 +v 0.051777 -0.000000 -0.125000 +v 0.051777 0.051777 -0.125000 +v 0.088388 0.088389 -0.088388 +v 0.125000 0.051777 -0.051777 +v 0.125000 -0.000000 -0.051777 +v 0.125000 0.051777 -0.000000 +v 0.125000 0.000000 0.000000 +v -0.125000 0.000000 0.000000 +v -0.125000 0.051777 -0.000000 +v 0.000000 -0.000000 -0.125000 +v 0.000000 0.051777 -0.125000 +v -0.051777 0.125000 -0.051777 +v 0.051777 0.125000 -0.051777 +v -0.051777 -0.187500 0.125000 +v -0.051777 -0.125000 0.125000 +v -0.125000 -0.051777 0.051777 +v -0.125000 -0.187500 0.051777 +v 0.051777 -0.187500 0.125000 +v 0.125000 -0.187500 0.051777 +v 0.125000 -0.051777 0.051777 +v 0.051777 -0.125000 0.125000 +v -0.125000 -0.051777 0.468750 +v -0.125000 0.051777 0.468750 +v -0.125000 -0.051777 0.000000 +v -0.051777 -0.125000 0.468750 +v 0.125000 -0.051777 0.000000 +v 0.125000 0.051777 0.468750 +v 0.125000 -0.051777 0.468750 +v -0.051777 0.125000 0.468750 +v 0.051777 -0.125000 0.468750 +v 0.051777 0.125000 0.468750 +v 0.125000 -0.051777 -0.051777 +v 0.125000 -0.187500 -0.051777 +v 0.051777 -0.187500 -0.125000 +v -0.125000 -0.051777 -0.051777 +v -0.051777 -0.187500 -0.125000 +v -0.125000 -0.187500 -0.051777 +v 0.091145 -0.250000 0.037754 +v 0.037754 -0.250000 0.091145 +v -0.037754 -0.250000 0.091145 +v -0.091145 -0.250000 0.037754 +v -0.091145 -0.250000 -0.037754 +v -0.037754 -0.250000 -0.091145 +v 0.037754 -0.250000 -0.091145 +v 0.091145 -0.250000 -0.037754 +v 0.037754 -0.562500 0.091145 +v -0.037754 -0.562500 0.091145 +v -0.037754 -0.562500 -0.091145 +v 0.037754 -0.562500 -0.091145 +v 0.091145 -0.562500 0.037754 +v 0.091145 -0.562500 -0.037754 +v -0.091145 -0.562500 0.037754 +v -0.091145 -0.562500 -0.037754 +vt 0.3934 0.4559 +vt 0.4559 0.3934 +vt 0.5441 0.3934 +vt 0.6066 0.4559 +vt 0.6066 0.5441 +vt 0.5441 0.6066 +vt 0.4559 0.6066 +vt 0.3934 0.5441 +vt 0.2500 0.2500 +vt 0.1250 0.2500 +vt 0.1250 -0.0625 +vt 0.2500 -0.0625 +vt 1.0000 0.2500 +vt 0.8750 0.2500 +vt 0.8750 -0.0625 +vt 1.0000 -0.0625 +vt 0.7500 0.2500 +vt 0.6250 0.2500 +vt 0.6250 -0.0625 +vt 0.7500 -0.0625 +vt 0.5000 0.2500 +vt 0.5000 -0.0625 +vt 0.3750 0.2500 +vt 0.3750 -0.0625 +vt 0.0000 0.2500 +vt 0.0000 -0.0625 +vt 0.3438 0.8906 +vt 0.2500 0.9844 +vt 0.1250 0.9844 +vt 0.0312 0.8906 +vt 0.0312 0.7656 +vt 0.1250 0.6719 +vt 0.2500 0.6719 +vt 0.3438 0.7656 +vt 0.6250 0.9844 +vt 0.7188 0.8906 +vt 0.7188 0.7656 +vt 0.6250 0.6719 +vt 0.5000 0.6719 +vt 0.4062 0.7656 +vt 0.4062 0.8906 +vt 0.5000 0.9844 +vt 0.7188 0.8906 +vt 0.6250 0.9844 +vt 0.5000 0.9844 +vt 0.4062 0.8906 +vt 0.4062 0.7656 +vt 0.5000 0.6719 +vt 0.6250 0.6719 +vt 0.7188 0.7656 +vt 0.2500 0.9844 +vt 0.3438 0.8906 +vt 0.3438 0.7656 +vt 0.2500 0.6719 +vt 0.1250 0.6719 +vt 0.0312 0.7656 +vt 0.0312 0.8906 +vt 0.1250 0.9844 +vt 1.0000 0.2656 +vt 0.8750 0.2656 +vt 0.8750 0.2344 +vt 0.9375 0.2188 +vt 1.0000 0.2344 +vt 0.1250 0.2656 +vt 0.1250 0.2344 +vt 0.1875 0.2188 +vt 0.2500 0.2344 +vt 0.2500 0.2656 +vt 0.3125 0.2344 +vt 0.3125 0.2656 +vt 0.7500 0.2344 +vt 0.8125 0.2344 +vt 0.8125 0.2656 +vt 0.7500 0.2656 +vt -0.0000 0.2344 +vt 0.0625 0.2344 +vt 0.0625 0.2656 +vt -0.0000 0.2656 +vt -0.0000 0.2969 +vt 0.0625 0.2969 +vt 0.9375 0.3125 +vt 0.8750 0.2969 +vt 0.8750 0.2344 +vt 0.9375 0.2188 +vt 1.0000 0.2344 +vt 1.0000 0.2656 +vt 1.0000 0.2969 +vt 0.3750 0.5938 +vt 0.3750 0.5625 +vt 0.4375 0.5625 +vt 0.4375 0.5938 +vt 0.3125 0.5938 +vt 0.3125 0.5625 +vt 0.5000 0.5625 +vt 0.5000 0.5938 +vt 0.0000 0.5938 +vt 0.0000 0.5625 +vt 0.0625 0.5625 +vt 0.0625 0.5938 +vt 0.1250 0.5625 +vt 0.1250 0.5938 +vt 0.1875 0.5625 +vt 0.1875 0.5938 +vt 0.2500 0.5625 +vt 0.2500 0.5938 +vt 1.0000 0.0156 +vt 1.0000 0.2031 +vt 0.8750 0.2344 +vt 0.8750 0.0156 +vt 0.1250 0.0156 +vt 0.2500 0.0156 +vt 0.2500 0.2344 +vt 0.1250 0.2031 +vt 0.8750 0.5156 +vt 0.7500 0.5156 +vt 0.8750 0.2656 +vt 0.8750 0.2969 +vt 1.0000 0.5156 +vt 1.0000 0.3281 +vt 0.2500 0.2969 +vt 0.2500 0.2656 +vt 0.3750 0.2656 +vt 0.3750 0.5156 +vt 0.2500 0.5156 +vt 0.6250 0.5156 +vt 0.6250 0.2344 +vt 0.6875 0.2188 +vt 0.1250 0.5156 +vt -0.0000 0.5156 +vt -0.0000 0.3281 +vt 0.1250 0.3281 +vt 0.5000 0.5156 +vt 0.5000 0.2344 +vt 0.8125 0.6094 +vt 0.8125 0.5469 +vt 0.8750 0.5469 +vt 0.8750 0.6094 +vt 0.9375 0.5469 +vt 0.9375 0.6094 +vt 1.0000 0.5469 +vt 1.0000 0.6094 +vt 0.5000 0.6094 +vt 0.5000 0.5469 +vt 0.5625 0.5469 +vt 0.5625 0.6094 +vt 0.6250 0.5469 +vt 0.6250 0.6094 +vt 0.6875 0.5469 +vt 0.6875 0.6094 +vt 0.7500 0.5469 +vt 0.7500 0.6094 +vt 0.5000 0.2656 +vt 0.3750 0.2656 +vt 0.3750 0.2344 +vt 0.3750 0.0156 +vt 0.5000 0.0156 +vt 0.7500 0.2344 +vt 0.7500 0.2656 +vt 0.6250 0.2656 +vt 0.6250 0.0156 +vt 0.7500 0.0156 +vt 0.5625 0.2656 +vt 0.8125 0.2344 +vt 0.3125 0.2344 +vt -0.0000 0.2031 +vt -0.0000 0.0156 +vt 0.3750 0.2344 +vt 0.4375 0.2188 +vn 0.0000 -1.0000 -0.0000 +vn 1.0000 0.0000 0.0000 +vn 0.0000 0.0000 1.0000 +vn -1.0000 0.0000 0.0000 +vn -0.7071 -0.0000 -0.7071 +vn -0.7071 0.0000 0.7071 +vn 0.0000 -0.0000 -1.0000 +vn 0.7071 -0.0000 -0.7071 +vn 0.7071 0.0000 0.7071 +vn 0.0000 1.0000 -0.0000 +vn -0.3827 0.0000 -0.9239 +vn -0.9239 0.0000 -0.3827 +vn -0.6387 0.5441 -0.5441 +vn -0.3251 0.3251 -0.8881 +vn -0.3002 0.3002 -0.9054 +vn 0.3827 0.0000 -0.9239 +vn 0.3002 0.3002 -0.9054 +vn 0.8881 0.3251 -0.3251 +vn 0.9406 -0.1343 -0.3119 +vn 0.9239 0.0000 -0.3827 +vn 0.8171 0.5712 -0.0783 +vn -0.8994 0.3725 -0.2288 +vn -0.0000 0.3827 -0.9239 +vn 0.1343 0.9406 -0.3119 +vn 0.5441 0.6386 -0.5441 +vn 0.2971 -0.7173 -0.6302 +vn 0.2971 -0.7173 0.6302 +vn -0.2971 -0.7173 0.6302 +vn -0.2970 -0.7174 -0.6302 +vn 0.7173 -0.2971 -0.6302 +vn 0.7173 -0.2971 0.6302 +vn -0.7173 -0.2971 0.6302 +vn -0.7173 -0.2971 -0.6302 +vn -0.7173 0.2971 0.6302 +vn -0.7173 0.2971 -0.6302 +vn -0.2971 0.7173 0.6302 +vn -0.2972 0.7173 -0.6302 +vn 0.2971 0.7173 0.6302 +vn 0.2971 0.7173 -0.6302 +vn 0.7173 0.2971 0.6302 +vn 0.7173 0.2971 -0.6302 +vn -0.3827 0.0000 0.9239 +vn -0.5743 -0.5789 0.5789 +vn -0.9878 -0.1101 0.1101 +vn -0.9239 0.0000 0.3827 +vn 0.3827 0.0000 0.9239 +vn 0.9239 0.0000 0.3827 +vn 0.9878 -0.1101 0.1101 +vn 0.5743 -0.5789 0.5789 +vn -0.9239 -0.3827 0.0000 +vn -0.9239 0.3827 -0.0000 +vn -0.3827 -0.9239 0.0000 +vn 0.9239 0.3827 -0.0000 +vn 0.9239 -0.3827 0.0000 +vn -0.3827 0.9239 -0.0000 +vn 0.3827 -0.9239 0.0000 +vn 0.3827 0.9239 -0.0000 +vn 0.7173 -0.6302 0.2971 +vn 0.7173 0.6302 0.2971 +vn 0.2971 0.6302 0.7173 +vn 0.2971 -0.6302 0.7173 +vn -0.2971 0.6302 0.7173 +vn -0.2971 -0.6302 0.7173 +vn -0.7173 0.6302 0.2972 +vn -0.7174 -0.6302 0.2970 +vn -0.7173 0.6302 -0.2971 +vn -0.7173 -0.6302 -0.2971 +vn -0.2971 0.6302 -0.7173 +vn -0.2970 -0.6302 -0.7174 +vn 0.2971 0.6302 -0.7173 +vn 0.2971 -0.6302 -0.7173 +vn 0.7172 0.6302 -0.2973 +vn 0.7174 -0.6302 -0.2969 +g Cylinder.000_Cylinder.000_None_Cylinder.000_Cylinder.000_No.004_Cylinder.000_Cylinder.000_None_Cylinder.000_Cylinder.000_No.004_pipe +s off +f 87/1/1 83/2/1 84/3/1 89/4/1 90/5/1 85/6/1 86/7/1 88/8/1 +f 82/9/2 75/10/2 87/11/2 88/12/2 +f 76/13/3 77/14/3 84/15/3 83/16/3 +f 78/17/4 79/18/4 90/19/4 89/20/4 +f 79/18/5 80/21/5 85/22/5 90/19/5 +f 77/14/6 78/17/6 89/20/6 84/15/6 +f 80/21/7 81/23/7 86/24/7 85/22/7 +f 81/23/8 82/9/8 88/12/8 86/24/8 +f 75/10/9 76/25/9 83/26/9 87/11/9 +g Cylinder.000_Cylinder.000_None_Cylinder.000_Cylinder.000_No.004_Cylinder.000_Cylinder.000_None_Cylinder.000_Cylinder.000_No.004_pipe_pipeworks_pipe_plain.png +f 1/27/3 2/28/3 3/29/3 4/30/3 5/31/3 6/32/3 7/33/3 8/34/3 +f 9/35/7 10/36/7 11/37/7 12/38/7 13/39/7 14/40/7 15/41/7 16/42/7 +f 17/43/10 18/44/10 19/45/10 20/46/10 21/47/10 22/48/10 23/49/10 24/50/10 +f 25/51/1 26/52/1 27/53/1 28/54/1 29/55/1 30/56/1 31/57/1 32/58/1 +s 1 +f 33/59/11 34/60/12 35/61/13 36/62/14 37/63/15 +f 38/64/16 39/65/17 40/66/18 41/67/19 42/68/20 +f 41/67/19 43/69/21 44/70/2 42/68/20 +f 35/71/13 34/72/12 45/73/4 46/74/22 +f 39/75/17 38/76/16 47/77/7 48/78/23 +f 37/79/15 48/78/23 47/77/7 33/80/11 +f 36/81/14 49/82/24 50/83/25 40/84/18 39/85/17 48/86/23 37/87/15 +f 10/88/26 1/89/27 8/90/28 11/91/29 +f 9/92/30 2/93/31 1/89/27 10/88/26 +f 11/91/29 8/90/28 7/94/32 12/95/33 +f 12/96/33 7/97/32 6/98/34 13/99/35 +f 13/99/35 6/98/34 5/100/36 14/101/37 +f 14/101/37 5/100/36 4/102/38 15/103/39 +f 15/103/39 4/102/38 3/104/40 16/105/41 +f 16/105/41 3/104/40 2/93/31 9/92/30 +f 51/106/42 52/107/43 53/108/44 54/109/45 +f 55/110/46 56/111/47 57/112/48 58/113/49 +f 59/114/50 60/115/51 46/74/22 45/73/4 61/116/4 53/117/44 +f 62/118/52 59/114/50 53/117/44 52/119/43 +f 57/120/48 63/121/2 44/70/2 43/122/21 64/123/53 65/124/54 +f 60/115/51 66/125/55 49/126/24 36/127/14 35/71/13 46/74/22 +f 67/128/56 62/129/52 52/130/43 58/131/49 +f 66/125/55 68/132/57 50/133/25 49/126/24 +f 25/134/58 18/135/59 17/136/60 26/137/61 +f 26/137/61 17/136/60 24/138/62 27/139/63 +f 27/139/63 24/138/62 23/140/64 28/141/65 +f 28/142/65 23/143/64 22/144/66 29/145/67 +f 29/145/67 22/144/66 21/146/68 30/147/69 +f 30/147/69 21/146/68 20/148/70 31/149/71 +f 31/149/71 20/148/70 19/150/72 32/151/73 +f 32/151/73 19/150/72 18/135/59 25/134/58 +f 38/152/16 42/153/20 69/154/20 70/155/20 71/156/16 +f 72/157/12 34/158/12 33/159/11 73/160/11 74/161/12 +f 67/128/56 58/131/49 57/120/48 65/124/54 +f 73/160/11 33/159/11 47/162/7 38/152/16 71/156/16 +f 54/109/45 53/108/44 61/163/4 72/157/12 74/161/12 +f 56/111/47 70/155/20 69/154/20 63/164/2 57/112/48 +f 55/110/46 58/113/49 52/165/43 51/166/42 +f 42/153/20 44/70/2 63/164/2 69/154/20 +f 72/157/12 61/163/4 45/73/4 34/158/12 +f 64/123/53 43/122/21 41/167/19 40/168/18 50/133/25 68/132/57 diff --git a/mods/pipeworks/models/pipeworks_straight_pipe.obj b/mods/pipeworks/models/pipeworks_straight_pipe.obj new file mode 100644 index 00000000..82350472 --- /dev/null +++ b/mods/pipeworks/models/pipeworks_straight_pipe.obj @@ -0,0 +1,2507 @@ +# Blender v2.78 (sub 0) OBJ File: '' +# www.blender.org +o Pipe_Cylinder.002_None +v 0.063645 0.130078 -0.460913 +v 0.062468 0.139022 -0.460913 +v 0.054133 0.142474 -0.460913 +v 0.046977 0.136982 -0.460913 +v 0.048154 0.128039 -0.460913 +v 0.056488 0.124587 -0.460913 +v 0.046977 0.136982 0.460913 +v 0.054134 0.142474 0.460913 +v 0.062468 0.139022 0.460913 +v 0.063645 0.130078 0.460913 +v 0.056489 0.124587 0.460913 +v 0.048154 0.128039 0.460913 +v 0.136983 0.046976 -0.460913 +v 0.142475 0.054133 -0.460913 +v 0.139023 0.062467 -0.460913 +v 0.130079 0.063644 -0.460913 +v 0.124588 0.056488 -0.460913 +v 0.128040 0.048154 -0.460913 +v 0.130079 0.063644 0.460913 +v 0.139023 0.062467 0.460913 +v 0.142475 0.054133 0.460913 +v 0.136983 0.046976 0.460913 +v 0.128040 0.048153 0.460913 +v 0.124588 0.056487 0.460913 +v 0.130079 -0.063644 -0.460913 +v 0.139023 -0.062467 -0.460913 +v 0.142475 -0.054132 -0.460913 +v 0.136983 -0.046976 -0.460913 +v 0.128040 -0.048153 -0.460913 +v 0.124588 -0.056487 -0.460913 +v 0.136983 -0.046976 0.460913 +v 0.142475 -0.054133 0.460913 +v 0.139023 -0.062467 0.460913 +v 0.130079 -0.063644 0.460913 +v 0.124588 -0.056488 0.460913 +v 0.128040 -0.048153 0.460913 +v 0.046977 -0.136982 -0.460913 +v 0.054134 -0.142474 -0.460913 +v 0.062468 -0.139022 -0.460913 +v 0.063645 -0.130078 -0.460913 +v 0.056489 -0.124587 -0.460913 +v 0.048154 -0.128039 -0.460913 +v 0.063645 -0.130078 0.460913 +v 0.062468 -0.139022 0.460913 +v 0.054134 -0.142474 0.460913 +v 0.046977 -0.136982 0.460913 +v 0.048154 -0.128039 0.460913 +v 0.056488 -0.124587 0.460913 +v -0.063643 -0.130078 -0.460913 +v -0.062466 -0.139022 -0.460913 +v -0.054131 -0.142474 -0.460913 +v -0.046975 -0.136982 -0.460913 +v -0.048152 -0.128039 -0.460913 +v -0.056486 -0.124587 -0.460913 +v -0.046975 -0.136982 0.460913 +v -0.054132 -0.142474 0.460913 +v -0.062466 -0.139022 0.460913 +v -0.063643 -0.130078 0.460913 +v -0.056486 -0.124587 0.460913 +v -0.048152 -0.128039 0.460913 +v -0.136981 -0.046976 -0.460913 +v -0.142473 -0.054133 -0.460913 +v -0.139021 -0.062467 -0.460913 +v -0.130077 -0.063644 -0.460913 +v -0.124586 -0.056488 -0.460913 +v -0.128038 -0.048153 -0.460913 +v -0.130077 -0.063644 0.460913 +v -0.139021 -0.062467 0.460913 +v -0.142473 -0.054132 0.460913 +v -0.136981 -0.046976 0.460913 +v -0.128038 -0.048153 0.460913 +v -0.124586 -0.056487 0.460913 +v -0.130077 0.063644 -0.460913 +v -0.139021 0.062467 -0.460913 +v -0.142473 0.054132 -0.460913 +v -0.136981 0.046976 -0.460913 +v -0.128038 0.048153 -0.460913 +v -0.124586 0.056487 -0.460913 +v -0.136981 0.046976 0.460913 +v -0.142473 0.054133 0.460913 +v -0.139021 0.062467 0.460913 +v -0.130077 0.063644 0.460913 +v -0.124586 0.056487 0.460913 +v -0.128038 0.048153 0.460913 +v -0.046975 0.136982 -0.460913 +v -0.054132 0.142474 -0.460913 +v -0.062466 0.139022 -0.460913 +v -0.063643 0.130078 -0.460913 +v -0.056487 0.124587 -0.460913 +v -0.048152 0.128039 -0.460913 +v -0.063643 0.130078 0.460913 +v -0.062466 0.139022 0.460913 +v -0.054132 0.142474 0.460913 +v -0.046975 0.136982 0.460913 +v -0.048152 0.128039 0.460913 +v -0.056486 0.124587 0.460913 +v -0.121366 0.099603 0.468749 +v -0.099602 0.121367 0.468749 +v -0.074011 0.138467 0.468749 +v -0.045575 0.150245 0.468749 +v -0.015388 0.156250 0.468749 +v 0.015390 0.156250 0.468749 +v 0.045577 0.150245 0.468749 +v 0.074013 0.138467 0.468749 +v 0.099604 0.121367 0.468749 +v 0.121368 0.099603 0.468749 +v 0.138468 0.074012 0.468749 +v 0.150246 0.045576 0.468749 +v 0.156251 0.015389 0.468749 +v 0.156251 -0.015389 0.468749 +v 0.150246 -0.045576 0.468749 +v 0.138468 -0.074012 0.468749 +v 0.121368 -0.099603 0.468749 +v 0.099604 -0.121367 0.468749 +v 0.074013 -0.138467 0.468749 +v 0.045577 -0.150245 0.468749 +v 0.015390 -0.156250 0.468749 +v -0.015388 -0.156250 0.468749 +v -0.045575 -0.150245 0.468749 +v -0.074011 -0.138466 0.468749 +v -0.099602 -0.121367 0.468749 +v -0.121366 -0.099603 0.468749 +v -0.138466 -0.074012 0.468749 +v -0.150244 -0.045576 0.468749 +v -0.156249 -0.015389 0.468749 +v -0.156249 0.015390 0.468749 +v -0.150244 0.045577 0.468749 +v -0.138466 0.074012 0.468749 +v 0.045577 -0.150245 0.499999 +v 0.074013 -0.138467 0.499999 +v 0.099604 -0.121367 0.499999 +v 0.121368 -0.099603 0.499999 +v 0.138468 -0.074012 0.499999 +v 0.150246 -0.045576 0.499999 +v 0.156251 -0.015389 0.499999 +v 0.156251 0.015389 0.499999 +v 0.150246 0.045576 0.499999 +v 0.138468 0.074012 0.499999 +v 0.121368 0.099603 0.499999 +v 0.099604 0.121367 0.499999 +v 0.074013 0.138467 0.499999 +v 0.045577 0.150245 0.499999 +v 0.015390 0.156250 0.499999 +v -0.015388 0.156250 0.499999 +v -0.045575 0.150245 0.499999 +v -0.074011 0.138467 0.499999 +v -0.099602 0.121367 0.499999 +v -0.121366 0.099603 0.499999 +v -0.138466 0.074012 0.499999 +v -0.150244 0.045577 0.499999 +v -0.156249 0.015390 0.499999 +v -0.156249 -0.015389 0.499999 +v -0.150244 -0.045576 0.499999 +v -0.138466 -0.074012 0.499999 +v -0.121366 -0.099603 0.499999 +v -0.099602 -0.121367 0.499999 +v -0.074011 -0.138466 0.499999 +v -0.045575 -0.150245 0.499999 +v -0.015388 -0.156250 0.499999 +v 0.015390 -0.156250 0.499999 +v 0.015390 -0.156250 -0.468751 +v 0.045577 -0.150245 -0.468751 +v 0.074013 -0.138467 -0.468751 +v 0.099604 -0.121367 -0.468751 +v 0.121368 -0.099603 -0.468751 +v 0.138468 -0.074012 -0.468751 +v 0.150246 -0.045576 -0.468751 +v 0.156251 -0.015389 -0.468751 +v 0.156251 0.015389 -0.468751 +v 0.150246 0.045576 -0.468751 +v 0.138468 0.074012 -0.468751 +v 0.121368 0.099603 -0.468751 +v 0.099604 0.121367 -0.468751 +v 0.074013 0.138467 -0.468751 +v 0.045577 0.150245 -0.468751 +v 0.015390 0.156250 -0.468751 +v -0.015388 0.156249 -0.468751 +v -0.045576 0.150245 -0.468751 +v -0.074011 0.138466 -0.468751 +v -0.099602 0.121367 -0.468751 +v -0.121366 0.099603 -0.468751 +v -0.138466 0.074012 -0.468751 +v -0.150244 0.045576 -0.468751 +v -0.156249 0.015389 -0.468751 +v -0.156249 -0.015389 -0.468751 +v -0.150244 -0.045576 -0.468751 +v -0.138466 -0.074012 -0.468751 +v -0.121366 -0.099603 -0.468751 +v -0.099602 -0.121367 -0.468751 +v -0.074011 -0.138466 -0.468751 +v -0.045575 -0.150245 -0.468751 +v -0.015388 -0.156250 -0.468751 +v -0.074011 -0.138467 -0.500001 +v -0.099602 -0.121367 -0.500001 +v -0.121366 -0.099603 -0.500001 +v -0.138466 -0.074012 -0.500001 +v -0.150244 -0.045576 -0.500001 +v -0.156249 -0.015389 -0.500001 +v -0.156249 0.015389 -0.500001 +v -0.150244 0.045576 -0.500001 +v -0.138466 0.074012 -0.500001 +v -0.121366 0.099603 -0.500001 +v -0.099602 0.121367 -0.500001 +v -0.074011 0.138466 -0.500001 +v -0.045576 0.150245 -0.500001 +v -0.015388 0.156250 -0.500001 +v 0.015390 0.156250 -0.500001 +v 0.045577 0.150245 -0.500001 +v 0.074013 0.138467 -0.500001 +v 0.099604 0.121367 -0.500001 +v 0.121368 0.099603 -0.500001 +v 0.138468 0.074012 -0.500001 +v 0.150246 0.045576 -0.500001 +v 0.156251 0.015389 -0.500001 +v 0.156251 -0.015389 -0.500001 +v 0.150246 -0.045576 -0.500001 +v 0.138468 -0.074012 -0.500001 +v 0.121368 -0.099603 -0.500001 +v 0.099604 -0.121367 -0.500001 +v 0.074013 -0.138467 -0.500001 +v 0.045577 -0.150245 -0.500001 +v 0.015390 -0.156250 -0.500001 +v -0.015388 -0.156250 -0.500001 +v -0.045575 -0.150245 -0.500001 +v 0.108579 0.095821 -0.460913 +v 0.110914 0.104534 -0.460913 +v 0.104535 0.110913 -0.460913 +v 0.095822 0.108578 -0.460913 +v 0.093487 0.099865 -0.460913 +v 0.099866 0.093486 -0.460913 +v 0.095822 0.108578 0.460913 +v 0.104535 0.110913 0.460913 +v 0.110914 0.104534 0.460913 +v 0.108579 0.095821 0.460913 +v 0.099866 0.093486 0.460913 +v 0.093487 0.099865 0.460913 +v 0.144533 -0.009021 -0.460913 +v 0.152345 -0.004510 -0.460913 +v 0.152345 0.004510 -0.460913 +v 0.144533 0.009021 -0.460913 +v 0.136721 0.004510 -0.460913 +v 0.136721 -0.004510 -0.460913 +v 0.144533 0.009021 0.460913 +v 0.152345 0.004510 0.460913 +v 0.152345 -0.004510 0.460913 +v 0.144533 -0.009021 0.460913 +v 0.136721 -0.004510 0.460913 +v 0.136721 0.004510 0.460913 +v 0.095822 -0.108578 -0.460913 +v 0.104535 -0.110913 -0.460913 +v 0.110914 -0.104534 -0.460913 +v 0.108579 -0.095821 -0.460913 +v 0.099866 -0.093486 -0.460913 +v 0.093487 -0.099865 -0.460913 +v 0.108579 -0.095821 0.460913 +v 0.110914 -0.104534 0.460913 +v 0.104535 -0.110913 0.460913 +v 0.095822 -0.108578 0.460913 +v 0.093487 -0.099865 0.460913 +v 0.099866 -0.093486 0.460913 +v -0.009020 -0.144532 -0.460913 +v -0.004509 -0.152344 -0.460913 +v 0.004512 -0.152344 -0.460913 +v 0.009022 -0.144532 -0.460913 +v 0.004511 -0.136720 -0.460913 +v -0.004509 -0.136720 -0.460913 +v 0.009022 -0.144532 0.460913 +v 0.004511 -0.152344 0.460913 +v -0.004509 -0.152344 0.460913 +v -0.009020 -0.144532 0.460913 +v -0.004509 -0.136720 0.460913 +v 0.004511 -0.136720 0.460913 +v -0.108577 -0.095821 -0.460913 +v -0.110912 -0.104534 -0.460913 +v -0.104533 -0.110913 -0.460913 +v -0.095820 -0.108578 -0.460913 +v -0.093485 -0.099865 -0.460913 +v -0.099864 -0.093486 -0.460913 +v -0.095820 -0.108578 0.460913 +v -0.104533 -0.110913 0.460913 +v -0.110912 -0.104534 0.460913 +v -0.108577 -0.095821 0.460913 +v -0.099864 -0.093486 0.460913 +v -0.093485 -0.099865 0.460913 +v -0.144531 0.009021 -0.460913 +v -0.152343 0.004510 -0.460913 +v -0.152343 -0.004510 -0.460913 +v -0.144531 -0.009021 -0.460913 +v -0.136719 -0.004510 -0.460913 +v -0.136719 0.004510 -0.460913 +v -0.144531 -0.009021 0.460913 +v -0.152343 -0.004510 0.460913 +v -0.152343 0.004510 0.460913 +v -0.144531 0.009021 0.460913 +v -0.136719 0.004510 0.460913 +v -0.136719 -0.004510 0.460913 +v -0.095820 0.108578 -0.460913 +v -0.104533 0.110913 -0.460913 +v -0.110912 0.104534 -0.460913 +v -0.108577 0.095821 -0.460913 +v -0.099864 0.093486 -0.460913 +v -0.093485 0.099865 -0.460913 +v -0.108577 0.095821 0.460913 +v -0.110912 0.104534 0.460913 +v -0.104533 0.110913 0.460913 +v -0.095820 0.108578 0.460913 +v -0.093485 0.099865 0.460913 +v -0.099864 0.093486 0.460913 +v 0.009022 0.144532 -0.460913 +v 0.004511 0.152344 -0.460913 +v -0.004509 0.152344 -0.460913 +v -0.009020 0.144532 -0.460913 +v -0.004509 0.136720 -0.460913 +v 0.004511 0.136720 -0.460913 +v -0.009020 0.144532 0.460913 +v -0.004509 0.152344 0.460913 +v 0.004511 0.152344 0.460913 +v 0.009022 0.144532 0.460913 +v 0.004511 0.136720 0.460913 +v -0.004509 0.136720 0.460913 +v 0.062449 0.116832 0.468749 +v 0.059211 0.110774 0.437500 +v 0.036462 0.120197 0.437500 +v 0.038456 0.126770 0.468749 +v 0.012986 0.131837 0.468749 +v 0.012313 0.125000 0.437500 +v -0.012983 0.131837 0.468749 +v -0.012310 0.125001 0.437500 +v -0.038454 0.126770 0.468749 +v -0.036460 0.120197 0.437500 +v -0.062447 0.116832 0.468749 +v -0.059209 0.110774 0.437500 +v -0.084040 0.102404 0.468749 +v -0.079682 0.097094 0.437500 +v -0.097093 0.079683 0.437500 +v -0.102403 0.084041 0.468749 +v -0.116831 0.062448 0.468749 +v -0.110773 0.059210 0.437500 +v -0.126769 0.038455 0.468749 +v -0.120196 0.036461 0.437500 +v -0.131835 0.012985 0.468749 +v -0.124999 0.012312 0.437500 +v -0.124999 -0.012311 0.437500 +v -0.131835 -0.012985 0.468749 +v -0.120196 -0.036461 0.437500 +v -0.126769 -0.038455 0.468749 +v -0.116831 -0.062448 0.468749 +v -0.110773 -0.059210 0.437500 +v -0.097093 -0.079683 0.437500 +v -0.102403 -0.084041 0.468749 +v -0.079682 -0.097094 0.437500 +v -0.084040 -0.102404 0.468749 +v -0.062447 -0.116832 0.468749 +v -0.059209 -0.110774 0.437500 +v -0.036460 -0.120197 0.437500 +v -0.038454 -0.126770 0.468749 +v -0.012984 -0.131836 0.468749 +v -0.012310 -0.125000 0.437500 +v 0.012312 -0.125000 0.437500 +v 0.012986 -0.131836 0.468749 +v 0.038456 -0.126770 0.468749 +v 0.036462 -0.120197 0.437500 +v 0.059211 -0.110774 0.437500 +v 0.062449 -0.116832 0.468749 +v 0.079684 -0.097094 0.437500 +v 0.084042 -0.102404 0.468749 +v 0.097095 -0.079683 0.437500 +v 0.102405 -0.084041 0.468749 +v 0.110775 -0.059210 0.437500 +v 0.116833 -0.062448 0.468749 +v 0.120198 -0.036461 0.437500 +v 0.126771 -0.038455 0.468749 +v 0.125002 -0.012311 0.437500 +v 0.131837 -0.012985 0.468749 +v 0.126771 0.038455 0.468749 +v 0.131838 0.012985 0.468749 +v 0.125002 0.012311 0.437500 +v 0.120198 0.036461 0.437500 +v 0.102405 0.084041 0.468749 +v 0.116833 0.062448 0.468749 +v 0.110775 0.059210 0.437500 +v 0.097095 0.079683 0.437500 +v 0.084042 0.102404 0.468749 +v 0.079684 0.097094 0.437500 +v -0.124999 -0.012311 -0.437502 +v -0.125000 0.012312 -0.437502 +v -0.131835 0.012985 -0.468751 +v -0.120196 0.036461 -0.437502 +v -0.126769 0.038455 -0.468751 +v -0.131835 -0.012985 -0.468751 +v -0.126769 -0.038455 -0.468751 +v -0.120196 -0.036461 -0.437502 +v -0.110773 0.059210 -0.437502 +v -0.097093 0.079683 -0.437502 +v -0.116831 0.062448 -0.468751 +v -0.116831 -0.062448 -0.468751 +v -0.110773 -0.059210 -0.437502 +v -0.102403 0.084041 -0.468751 +v -0.102403 -0.084041 -0.468751 +v -0.097093 -0.079683 -0.437502 +v -0.084040 0.102404 -0.468751 +v -0.079682 0.097094 -0.437502 +v -0.084040 -0.102404 -0.468751 +v -0.079682 -0.097094 -0.437502 +v -0.062447 0.116832 -0.468751 +v -0.059209 0.110774 -0.437502 +v -0.062447 -0.116832 -0.468751 +v -0.059209 -0.110774 -0.437502 +v -0.038454 0.126770 -0.468751 +v -0.036460 0.120197 -0.437502 +v -0.038454 -0.126770 -0.468751 +v -0.036460 -0.120197 -0.437502 +v -0.012984 0.131836 -0.468751 +v -0.012310 0.125000 -0.437502 +v -0.012984 -0.131837 -0.468751 +v -0.012310 -0.125001 -0.437502 +v 0.012986 0.131836 -0.468751 +v 0.012313 0.125000 -0.437502 +v 0.012986 -0.131837 -0.468751 +v 0.012312 -0.125001 -0.437502 +v 0.110775 -0.059210 -0.437502 +v 0.097095 -0.079683 -0.437502 +v 0.038456 0.126770 -0.468751 +v 0.036462 0.120197 -0.437502 +v 0.038456 -0.126770 -0.468751 +v 0.036462 -0.120197 -0.437502 +v 0.062449 0.116832 -0.468751 +v 0.059211 0.110774 -0.437502 +v 0.062449 -0.116832 -0.468751 +v 0.059211 -0.110774 -0.437502 +v 0.084042 0.102404 -0.468751 +v 0.079684 0.097094 -0.437502 +v 0.084042 -0.102404 -0.468751 +v 0.079684 -0.097094 -0.437502 +v 0.102405 0.084041 -0.468751 +v 0.097095 0.079683 -0.437502 +v 0.102405 -0.084041 -0.468751 +v 0.120198 0.036461 -0.437502 +v 0.110775 0.059210 -0.437502 +v 0.116833 0.062448 -0.468751 +v 0.116833 -0.062448 -0.468751 +v 0.126771 0.038455 -0.468751 +v 0.126771 -0.038455 -0.468751 +v 0.120198 -0.036461 -0.437502 +v 0.131838 0.012985 -0.468751 +v 0.125001 0.012311 -0.437502 +v 0.131837 -0.012985 -0.468751 +v 0.125001 -0.012311 -0.437502 +v 0.063645 0.130078 -0.468750 +v 0.062468 0.139022 -0.468750 +v 0.056488 0.124587 -0.468750 +v 0.054133 0.142474 -0.468750 +v 0.046977 0.136982 -0.468750 +v 0.048154 0.128039 -0.468750 +v 0.046977 0.136982 0.468750 +v 0.054134 0.142474 0.468750 +v 0.048154 0.128039 0.468750 +v 0.062468 0.139022 0.468750 +v 0.063645 0.130078 0.468750 +v 0.056489 0.124587 0.468750 +v 0.136983 0.046976 -0.468750 +v 0.142475 0.054133 -0.468750 +v 0.128040 0.048154 -0.468750 +v 0.139023 0.062467 -0.468750 +v 0.130079 0.063644 -0.468750 +v 0.124588 0.056488 -0.468750 +v 0.130079 0.063644 0.468750 +v 0.139023 0.062467 0.468750 +v 0.124588 0.056487 0.468750 +v 0.142475 0.054133 0.468750 +v 0.136983 0.046976 0.468750 +v 0.128040 0.048153 0.468750 +v 0.130079 -0.063644 -0.468750 +v 0.139023 -0.062467 -0.468750 +v 0.124588 -0.056487 -0.468750 +v 0.142475 -0.054132 -0.468750 +v 0.136983 -0.046976 -0.468750 +v 0.128040 -0.048153 -0.468750 +v 0.136983 -0.046976 0.468750 +v 0.142475 -0.054133 0.468750 +v 0.128040 -0.048153 0.468750 +v 0.139023 -0.062467 0.468750 +v 0.130079 -0.063644 0.468750 +v 0.124588 -0.056488 0.468750 +v 0.046977 -0.136982 -0.468750 +v 0.054134 -0.142474 -0.468750 +v 0.048154 -0.128039 -0.468750 +v 0.062468 -0.139022 -0.468750 +v 0.063645 -0.130078 -0.468750 +v 0.056489 -0.124587 -0.468750 +v 0.063645 -0.130078 0.468750 +v 0.062468 -0.139022 0.468750 +v 0.056488 -0.124587 0.468750 +v 0.054134 -0.142474 0.468750 +v 0.046977 -0.136982 0.468750 +v 0.048154 -0.128039 0.468750 +v -0.063643 -0.130078 -0.468750 +v -0.062466 -0.139022 -0.468750 +v -0.056486 -0.124587 -0.468750 +v -0.054131 -0.142474 -0.468750 +v -0.046975 -0.136982 -0.468750 +v -0.048152 -0.128039 -0.468750 +v -0.046975 -0.136982 0.468750 +v -0.054132 -0.142474 0.468750 +v -0.048152 -0.128039 0.468750 +v -0.062466 -0.139022 0.468750 +v -0.063643 -0.130078 0.468750 +v -0.056486 -0.124587 0.468750 +v -0.136981 -0.046976 -0.468750 +v -0.142473 -0.054133 -0.468750 +v -0.128038 -0.048153 -0.468750 +v -0.139021 -0.062467 -0.468750 +v -0.130077 -0.063644 -0.468750 +v -0.124586 -0.056488 -0.468750 +v -0.130077 -0.063644 0.468750 +v -0.139021 -0.062467 0.468750 +v -0.124586 -0.056487 0.468750 +v -0.142473 -0.054132 0.468750 +v -0.136981 -0.046976 0.468750 +v -0.128038 -0.048153 0.468750 +v -0.130077 0.063644 -0.468750 +v -0.139021 0.062467 -0.468750 +v -0.124586 0.056487 -0.468750 +v -0.142473 0.054132 -0.468750 +v -0.136981 0.046976 -0.468750 +v -0.128038 0.048153 -0.468750 +v -0.136981 0.046976 0.468750 +v -0.142473 0.054133 0.468750 +v -0.128038 0.048153 0.468750 +v -0.139021 0.062467 0.468750 +v -0.130077 0.063644 0.468750 +v -0.124586 0.056487 0.468750 +v -0.046975 0.136982 -0.468750 +v -0.054132 0.142474 -0.468750 +v -0.048152 0.128039 -0.468750 +v -0.062466 0.139022 -0.468750 +v -0.063643 0.130078 -0.468750 +v -0.056487 0.124587 -0.468750 +v -0.063643 0.130078 0.468750 +v -0.062466 0.139022 0.468750 +v -0.056486 0.124587 0.468750 +v -0.054132 0.142474 0.468750 +v -0.046975 0.136982 0.468750 +v -0.048152 0.128039 0.468750 +v 0.108579 0.095821 -0.468750 +v 0.110914 0.104534 -0.468750 +v 0.099866 0.093486 -0.468750 +v 0.104535 0.110913 -0.468750 +v 0.095822 0.108578 -0.468750 +v 0.093487 0.099865 -0.468750 +v 0.095822 0.108578 0.468750 +v 0.104535 0.110913 0.468750 +v 0.093487 0.099865 0.468750 +v 0.110914 0.104534 0.468750 +v 0.108579 0.095821 0.468750 +v 0.099866 0.093486 0.468750 +v 0.144533 -0.009021 -0.468750 +v 0.152345 -0.004510 -0.468750 +v 0.136721 -0.004510 -0.468750 +v 0.152345 0.004510 -0.468750 +v 0.144533 0.009021 -0.468750 +v 0.136721 0.004510 -0.468750 +v 0.144533 0.009021 0.468750 +v 0.152345 0.004510 0.468750 +v 0.136721 0.004510 0.468750 +v 0.152345 -0.004510 0.468750 +v 0.144533 -0.009021 0.468750 +v 0.136721 -0.004510 0.468750 +v 0.095822 -0.108578 -0.468750 +v 0.104535 -0.110913 -0.468750 +v 0.093487 -0.099865 -0.468750 +v 0.110914 -0.104534 -0.468750 +v 0.108579 -0.095821 -0.468750 +v 0.099866 -0.093486 -0.468750 +v 0.108579 -0.095821 0.468750 +v 0.110914 -0.104534 0.468750 +v 0.099866 -0.093486 0.468750 +v 0.104535 -0.110913 0.468750 +v 0.095822 -0.108578 0.468750 +v 0.093487 -0.099865 0.468750 +v -0.009020 -0.144532 -0.468750 +v -0.004509 -0.152344 -0.468750 +v -0.004509 -0.136720 -0.468750 +v 0.004512 -0.152344 -0.468750 +v 0.009022 -0.144532 -0.468750 +v 0.004511 -0.136720 -0.468750 +v 0.009022 -0.144532 0.468750 +v 0.004511 -0.152344 0.468750 +v 0.004511 -0.136720 0.468750 +v -0.004509 -0.152344 0.468750 +v -0.009020 -0.144532 0.468750 +v -0.004509 -0.136720 0.468750 +v -0.108577 -0.095821 -0.468750 +v -0.110912 -0.104534 -0.468750 +v -0.099864 -0.093486 -0.468750 +v -0.104533 -0.110913 -0.468750 +v -0.095820 -0.108578 -0.468750 +v -0.093485 -0.099865 -0.468750 +v -0.095820 -0.108578 0.468750 +v -0.104533 -0.110913 0.468750 +v -0.093485 -0.099865 0.468750 +v -0.110912 -0.104534 0.468750 +v -0.108577 -0.095821 0.468750 +v -0.099864 -0.093486 0.468750 +v -0.144531 0.009021 -0.468750 +v -0.152343 0.004510 -0.468750 +v -0.136719 0.004510 -0.468750 +v -0.152343 -0.004510 -0.468750 +v -0.144531 -0.009021 -0.468750 +v -0.136719 -0.004510 -0.468750 +v -0.144531 -0.009021 0.468750 +v -0.152343 -0.004510 0.468750 +v -0.136719 -0.004510 0.468750 +v -0.152343 0.004510 0.468750 +v -0.144531 0.009021 0.468750 +v -0.136719 0.004510 0.468750 +v -0.095820 0.108578 -0.468750 +v -0.104533 0.110913 -0.468750 +v -0.093485 0.099865 -0.468750 +v -0.110912 0.104534 -0.468750 +v -0.108577 0.095821 -0.468750 +v -0.099864 0.093486 -0.468750 +v -0.108577 0.095821 0.468750 +v -0.110912 0.104534 0.468750 +v -0.099864 0.093486 0.468750 +v -0.104533 0.110913 0.468750 +v -0.095820 0.108578 0.468750 +v -0.093485 0.099865 0.468750 +v 0.009022 0.144532 -0.468750 +v 0.004511 0.152344 -0.468750 +v 0.004511 0.136720 -0.468750 +v -0.004509 0.152344 -0.468750 +v -0.009020 0.144532 -0.468750 +v -0.004509 0.136720 -0.468750 +v -0.009020 0.144532 0.468750 +v -0.004509 0.152344 0.468750 +v -0.004509 0.136720 0.468750 +v 0.004511 0.152344 0.468750 +v 0.009022 0.144532 0.468750 +v 0.004511 0.136720 0.468750 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.4412 0.9276 +vt 0.4630 0.9493 +vt 0.4886 0.9664 +vt 0.5170 0.9782 +vt 0.5472 0.9842 +vt 0.5780 0.9842 +vt 0.6082 0.9782 +vt 0.6366 0.9664 +vt 0.6622 0.9493 +vt 0.6840 0.9276 +vt 0.7011 0.9020 +vt 0.7129 0.8735 +vt 0.7189 0.8434 +vt 0.7189 0.8126 +vt 0.7129 0.7824 +vt 0.7011 0.7539 +vt 0.6840 0.7283 +vt 0.6622 0.7066 +vt 0.6366 0.6895 +vt 0.6082 0.6777 +vt 0.5780 0.6717 +vt 0.5472 0.6717 +vt 0.5170 0.6777 +vt 0.4886 0.6895 +vt 0.4630 0.7066 +vt 0.4412 0.7283 +vt 0.4241 0.7539 +vt 0.4124 0.7824 +vt 0.4063 0.8126 +vt 0.4063 0.8434 +vt 0.4124 0.8735 +vt 0.4241 0.9020 +vt 0.2332 0.6777 +vt 0.2616 0.6895 +vt 0.2872 0.7066 +vt 0.3090 0.7283 +vt 0.3261 0.7539 +vt 0.3379 0.7824 +vt 0.3439 0.8126 +vt 0.3439 0.8434 +vt 0.3379 0.8735 +vt 0.3261 0.9020 +vt 0.3090 0.9276 +vt 0.2872 0.9493 +vt 0.2616 0.9664 +vt 0.2332 0.9782 +vt 0.2030 0.9842 +vt 0.1722 0.9842 +vt 0.1420 0.9782 +vt 0.1136 0.9664 +vt 0.0880 0.9493 +vt 0.0662 0.9276 +vt 0.0491 0.9020 +vt 0.0374 0.8735 +vt 0.0313 0.8434 +vt 0.0313 0.8126 +vt 0.0374 0.7824 +vt 0.0491 0.7539 +vt 0.0662 0.7283 +vt 0.0880 0.7066 +vt 0.1136 0.6895 +vt 0.1420 0.6777 +vt 0.1722 0.6717 +vt 0.2030 0.6717 +vt 0.5780 0.6717 +vt 0.6082 0.6777 +vt 0.6366 0.6895 +vt 0.6622 0.7066 +vt 0.6840 0.7283 +vt 0.7011 0.7539 +vt 0.7129 0.7824 +vt 0.7189 0.8126 +vt 0.7189 0.8434 +vt 0.7129 0.8735 +vt 0.7011 0.9020 +vt 0.6840 0.9276 +vt 0.6622 0.9493 +vt 0.6366 0.9664 +vt 0.6082 0.9782 +vt 0.5780 0.9842 +vt 0.5472 0.9842 +vt 0.5170 0.9782 +vt 0.4886 0.9664 +vt 0.4630 0.9493 +vt 0.4412 0.9276 +vt 0.4241 0.9020 +vt 0.4124 0.8735 +vt 0.4063 0.8434 +vt 0.4063 0.8126 +vt 0.4124 0.7824 +vt 0.4241 0.7539 +vt 0.4412 0.7283 +vt 0.4630 0.7066 +vt 0.4886 0.6895 +vt 0.5170 0.6777 +vt 0.5472 0.6717 +vt 0.1136 0.6895 +vt 0.0880 0.7066 +vt 0.0662 0.7283 +vt 0.0491 0.7539 +vt 0.0374 0.7824 +vt 0.0313 0.8126 +vt 0.0313 0.8434 +vt 0.0374 0.8735 +vt 0.0491 0.9020 +vt 0.0662 0.9276 +vt 0.0880 0.9493 +vt 0.1136 0.9664 +vt 0.1420 0.9782 +vt 0.1722 0.9842 +vt 0.2030 0.9842 +vt 0.2332 0.9782 +vt 0.2616 0.9664 +vt 0.2872 0.9493 +vt 0.3090 0.9276 +vt 0.3261 0.9020 +vt 0.3379 0.8735 +vt 0.3439 0.8434 +vt 0.3439 0.8126 +vt 0.3379 0.7824 +vt 0.3261 0.7539 +vt 0.3090 0.7283 +vt 0.2872 0.7066 +vt 0.2616 0.6895 +vt 0.2332 0.6777 +vt 0.2030 0.6717 +vt 0.1722 0.6717 +vt 0.1420 0.6777 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.6875 0.7186 +vt 0.7009 0.7108 +vt 0.7009 0.6953 +vt 0.6875 0.6875 +vt 0.6740 0.6953 +vt 0.6740 0.7108 +vt 0.4688 0.5898 +vt 0.4688 0.5664 +vt 0.5000 0.5664 +vt 0.5000 0.5898 +vt 0.4375 0.5898 +vt 0.4375 0.5664 +vt 0.4062 0.5898 +vt 0.4062 0.5664 +vt 0.3750 0.5898 +vt 0.3750 0.5664 +vt 0.3438 0.5898 +vt 0.3438 0.5664 +vt 0.3125 0.5898 +vt 0.3125 0.5664 +vt 0.2812 0.5898 +vt 0.2812 0.5664 +vt 0.2500 0.5898 +vt 0.2500 0.5664 +vt 0.2188 0.5898 +vt 0.2188 0.5664 +vt 0.1875 0.5898 +vt 0.1875 0.5664 +vt 0.1562 0.5898 +vt 0.1562 0.5664 +vt 0.1250 0.5898 +vt 0.1250 0.5664 +vt 0.0938 0.5898 +vt 0.0938 0.5664 +vt 0.0625 0.5898 +vt 0.0625 0.5664 +vt 0.0937 0.5664 +vt 0.0312 0.5898 +vt 0.0312 0.5664 +vt 0.0000 0.5898 +vt 0.0000 0.5664 +vt 0.9688 0.5898 +vt 0.9688 0.5664 +vt 1.0000 0.5664 +vt 1.0000 0.5898 +vt 0.9375 0.5898 +vt 0.9375 0.5664 +vt 0.9062 0.5898 +vt 0.9062 0.5664 +vt 0.8750 0.5898 +vt 0.8750 0.5664 +vt 0.8125 0.5898 +vt 0.8125 0.5664 +vt 0.8438 0.5664 +vt 0.8438 0.5898 +vt 0.7812 0.5898 +vt 0.7812 0.5664 +vt 0.7500 0.5898 +vt 0.7500 0.5664 +vt 0.7188 0.5898 +vt 0.7188 0.5664 +vt 0.6875 0.5898 +vt 0.6875 0.5664 +vt 0.6250 0.5898 +vt 0.6250 0.5664 +vt 0.6562 0.5664 +vt 0.6562 0.5898 +vt 0.5938 0.5898 +vt 0.5938 0.5664 +vt 0.5625 0.5898 +vt 0.5625 0.5664 +vt 0.6748 0.5124 +vt 0.6748 0.4980 +vt 0.7057 0.4980 +vt 0.7057 0.5123 +vt 0.7367 0.5124 +vt 0.7367 0.4980 +vt 0.7676 0.5123 +vt 0.7676 0.4980 +vt 0.7985 0.5123 +vt 0.7986 0.4980 +vt 0.8294 0.5124 +vt 0.8295 0.4980 +vt 0.8604 0.5125 +vt 0.8604 0.4980 +vt 0.8914 0.4981 +vt 0.8913 0.5124 +vt 0.9222 0.5125 +vt 0.9223 0.4981 +vt 0.9531 0.5126 +vt 0.9533 0.4982 +vt 0.9842 0.5128 +vt 0.9844 0.4983 +vt 1.0155 0.4983 +vt 1.0153 0.5128 +vt 1.0465 0.4984 +vt 1.0463 0.5128 +vt 1.0774 0.5128 +vt 1.0775 0.4984 +vt 1.1085 0.4984 +vt 1.1085 0.5129 +vt 1.1396 0.4984 +vt 1.1396 0.5128 +vt 1.1709 0.5129 +vt 1.1705 0.4983 +vt 1.2015 0.4982 +vt 1.2025 0.5126 +vt 1.2342 0.5121 +vt 1.2320 0.4978 +vt 0.2391 0.5120 +vt 0.2412 0.4977 +vt 0.2718 0.4981 +vt 0.2708 0.5126 +vt 0.3025 0.5129 +vt 0.3029 0.4982 +vt 0.3341 0.4983 +vt 0.3340 0.5129 +vt 0.3652 0.4982 +vt 0.3653 0.5127 +vt 0.3961 0.4982 +vt 0.3962 0.5126 +vt 0.4271 0.4982 +vt 0.4272 0.5126 +vt 0.4580 0.4981 +vt 0.4581 0.5125 +vt 0.4889 0.4981 +vt 0.4890 0.5124 +vt 0.5509 0.5125 +vt 0.5199 0.5124 +vt 0.5198 0.4981 +vt 0.5508 0.4980 +vt 0.6128 0.5124 +vt 0.5818 0.5124 +vt 0.5818 0.4980 +vt 0.6127 0.4980 +vt 0.6438 0.5125 +vt 0.6438 0.4980 +vt 1.0175 0.0339 +vt 0.9866 0.0339 +vt 0.9867 0.0196 +vt 0.9559 0.0339 +vt 0.9559 0.0196 +vt 1.0175 0.0195 +vt 1.0484 0.0195 +vt 1.0483 0.0339 +vt 0.9251 0.0339 +vt 0.8944 0.0338 +vt 0.9252 0.0196 +vt 1.0793 0.0195 +vt 1.0791 0.0339 +vt 0.8945 0.0195 +vt 1.1102 0.0196 +vt 1.1099 0.0339 +vt 0.8637 0.0194 +vt 0.8636 0.0338 +vt 0.6875 0.5898 +vt 0.6875 0.5664 +vt 0.7188 0.5664 +vt 0.7188 0.5898 +vt 0.7812 0.5898 +vt 0.7812 0.5664 +vt 0.8125 0.5664 +vt 0.8125 0.5898 +vt 1.1412 0.0197 +vt 1.1407 0.0340 +vt 0.6562 0.5898 +vt 0.6562 0.5664 +vt 0.8329 0.0194 +vt 0.8328 0.0337 +vt 0.8438 0.5664 +vt 0.8438 0.5898 +vt 1.1722 0.0198 +vt 1.1714 0.0342 +vt 0.6250 0.5898 +vt 0.6250 0.5664 +vt 0.8021 0.0193 +vt 0.8019 0.0336 +vt 0.5938 0.5898 +vt 0.5938 0.5664 +vt 1.2032 0.0202 +vt 1.2018 0.0344 +vt 0.5312 0.5898 +vt 0.5312 0.5664 +vt 0.5625 0.5664 +vt 0.5625 0.5898 +vt 0.7712 0.0192 +vt 0.7710 0.0335 +vt 0.8750 0.5664 +vt 0.8750 0.5898 +vt 1.2342 0.0209 +vt 1.2316 0.0349 +vt 0.5000 0.5898 +vt 0.5000 0.5664 +vt 0.7403 0.0191 +vt 0.7402 0.0334 +vt 0.9062 0.5664 +vt 0.9062 0.5898 +vt 0.2728 0.0171 +vt 0.2735 0.0318 +vt 0.2423 0.0321 +vt 0.2405 0.0175 +vt 0.5312 0.5664 +vt 0.5312 0.5898 +vt 0.4688 0.5898 +vt 0.4688 0.5664 +vt 0.4300 0.0320 +vt 0.3987 0.0320 +vt 0.7094 0.0189 +vt 0.7093 0.0333 +vt 0.9375 0.5664 +vt 0.9375 0.5898 +vt 0.3049 0.0170 +vt 0.3050 0.0317 +vt 0.4375 0.5898 +vt 0.4375 0.5664 +vt 0.6785 0.0188 +vt 0.6783 0.0332 +vt 0.9688 0.5664 +vt 0.9688 0.5898 +vt 0.3366 0.0171 +vt 0.3364 0.0317 +vt 0.4062 0.5898 +vt 0.4062 0.5664 +vt 0.6476 0.0187 +vt 0.6474 0.0331 +vt 0.0000 0.5898 +vt 0.0000 0.5664 +vt 0.0312 0.5664 +vt 0.0312 0.5898 +vt 0.3679 0.0173 +vt 0.3676 0.0318 +vt 1.0000 0.5664 +vt 1.0000 0.5898 +vt 0.6167 0.0186 +vt 0.6165 0.0330 +vt 0.0625 0.5664 +vt 0.0625 0.5898 +vt 0.7500 0.5664 +vt 0.7500 0.5898 +vt 0.3991 0.0174 +vt 0.3750 0.5898 +vt 0.3750 0.5664 +vt 0.5545 0.0327 +vt 0.5855 0.0328 +vt 0.5858 0.0184 +vt 0.0937 0.5664 +vt 0.0938 0.5898 +vt 0.4303 0.0175 +vt 0.3438 0.5898 +vt 0.3438 0.5664 +vt 0.5548 0.0183 +vt 0.0938 0.5664 +vt 0.1250 0.5664 +vt 0.1250 0.5898 +vt 0.4616 0.0177 +vt 0.4612 0.0322 +vt 0.3125 0.5898 +vt 0.3125 0.5664 +vt 0.5238 0.0181 +vt 0.5234 0.0325 +vt 0.1562 0.5664 +vt 0.1562 0.5898 +vt 0.4927 0.0179 +vt 0.4924 0.0324 +vt 0.2812 0.5898 +vt 0.2812 0.5664 +vt 0.2500 0.5898 +vt 0.2500 0.5664 +vt 0.1875 0.5664 +vt 0.1875 0.5898 +vt 0.2188 0.5898 +vt 0.2188 0.5664 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vt 0.6875 0.6719 +vt 0.6875 0.6562 +vt 0.7031 0.6562 +vt 0.7031 0.6719 +vt 0.6719 0.6719 +vt 0.6719 0.6562 +vt 0.7188 0.6562 +vt 0.7188 0.6719 +vt 0.7344 0.6562 +vt 0.7344 0.6719 +vt 0.6406 0.6719 +vt 0.6406 0.6562 +vt 0.6562 0.6562 +vt 0.6562 0.6719 +vn 0.0000 0.0000 1.0000 +vn 0.0000 0.0000 -1.0000 +vn -0.6965 0.2113 -0.6857 +vn -0.6965 0.2113 0.6857 +vn -0.6419 0.3431 0.6857 +vn -0.6419 0.3431 -0.6857 +vn -0.7244 0.0713 -0.6857 +vn -0.7244 0.0713 0.6857 +vn -0.7244 -0.0713 -0.6857 +vn -0.7244 -0.0713 0.6857 +vn -0.6965 -0.2113 -0.6857 +vn -0.6965 -0.2114 0.6857 +vn -0.6419 -0.3431 -0.6857 +vn -0.6419 -0.3431 0.6857 +vn -0.5626 -0.4617 -0.6857 +vn -0.5626 -0.4617 0.6857 +vn -0.4617 -0.5627 -0.6857 +vn -0.4617 -0.5627 0.6857 +vn -0.3429 -0.6420 -0.6857 +vn -0.3433 -0.6418 0.6857 +vn -0.2112 -0.6966 -0.6857 +vn -0.2114 -0.6965 0.6857 +vn -0.0713 -0.7244 -0.6857 +vn -0.0713 -0.7244 0.6857 +vn 0.0713 -0.7244 -0.6857 +vn 0.0713 -0.7244 0.6857 +vn 0.2113 -0.6965 -0.6857 +vn 0.2112 -0.6966 0.6857 +vn 0.3432 -0.6419 -0.6857 +vn 0.3430 -0.6420 0.6857 +vn 0.4617 -0.5626 -0.6857 +vn 0.4618 -0.5626 0.6857 +vn 0.5626 -0.4617 -0.6857 +vn 0.5626 -0.4617 0.6857 +vn 0.6419 -0.3431 -0.6857 +vn 0.6419 -0.3431 0.6857 +vn 0.6965 -0.2114 -0.6857 +vn 0.6965 -0.2114 0.6857 +vn 0.7244 -0.0713 -0.6857 +vn 0.7244 -0.0713 0.6857 +vn 0.7244 0.0713 -0.6857 +vn 0.7244 0.0713 0.6857 +vn 0.6965 0.2113 -0.6857 +vn 0.6965 0.2113 0.6857 +vn 0.5626 0.4617 -0.6857 +vn 0.5626 0.4617 0.6857 +vn 0.6419 0.3431 0.6857 +vn 0.6419 0.3431 -0.6857 +vn 0.4617 0.5626 -0.6857 +vn 0.4616 0.5628 0.6857 +vn 0.3430 0.6420 -0.6857 +vn 0.3432 0.6419 0.6857 +vn 0.2115 0.6965 -0.6857 +vn 0.2113 0.6965 0.6857 +vn 0.0713 0.7244 -0.6857 +vn 0.0713 0.7244 0.6857 +vn -0.2112 0.6966 -0.6857 +vn -0.2114 0.6965 0.6857 +vn -0.0713 0.7244 0.6857 +vn -0.0713 0.7244 -0.6857 +vn -0.3432 0.6419 -0.6857 +vn -0.3430 0.6420 0.6857 +vn -0.4616 0.5628 -0.6857 +vn -0.4618 0.5625 0.6857 +vn 0.4604 0.8614 -0.2147 +vn 0.4686 0.8767 -0.1087 +vn 0.2886 0.9513 -0.1087 +vn 0.2835 0.9346 -0.2147 +vn 0.0957 0.9720 -0.2147 +vn 0.0974 0.9893 -0.1087 +vn -0.0957 0.9720 -0.2147 +vn -0.0974 0.9893 -0.1087 +vn -0.2835 0.9346 -0.2147 +vn -0.2886 0.9513 -0.1087 +vn -0.4604 0.8614 -0.2147 +vn -0.4686 0.8767 -0.1087 +vn -0.6196 0.7550 -0.2147 +vn -0.6306 0.7684 -0.1087 +vn -0.7684 0.6306 -0.1087 +vn -0.7550 0.6196 -0.2147 +vn -0.8614 0.4604 -0.2147 +vn -0.8767 0.4686 -0.1087 +vn -0.9346 0.2835 -0.2147 +vn -0.9513 0.2886 -0.1087 +vn -0.9720 0.0957 -0.2147 +vn -0.9893 0.0974 -0.1087 +vn -0.9893 -0.0974 -0.1087 +vn -0.9720 -0.0957 -0.2147 +vn -0.9513 -0.2886 -0.1087 +vn -0.9346 -0.2835 -0.2147 +vn -0.8614 -0.4604 -0.2147 +vn -0.8767 -0.4686 -0.1087 +vn -0.7684 -0.6306 -0.1087 +vn -0.7550 -0.6196 -0.2147 +vn -0.6306 -0.7684 -0.1087 +vn -0.6196 -0.7550 -0.2147 +vn -0.4604 -0.8614 -0.2147 +vn -0.4686 -0.8767 -0.1087 +vn -0.2886 -0.9513 -0.1087 +vn -0.2835 -0.9346 -0.2147 +vn -0.0957 -0.9720 -0.2147 +vn -0.0974 -0.9893 -0.1087 +vn 0.0974 -0.9893 -0.1087 +vn 0.0957 -0.9720 -0.2147 +vn 0.2835 -0.9346 -0.2147 +vn 0.2886 -0.9513 -0.1087 +vn 0.4686 -0.8767 -0.1087 +vn 0.4604 -0.8614 -0.2147 +vn 0.6306 -0.7684 -0.1087 +vn 0.6196 -0.7550 -0.2147 +vn 0.7684 -0.6306 -0.1087 +vn 0.7550 -0.6196 -0.2147 +vn 0.8767 -0.4686 -0.1087 +vn 0.8614 -0.4604 -0.2147 +vn 0.9513 -0.2886 -0.1087 +vn 0.9346 -0.2835 -0.2147 +vn 0.9893 -0.0974 -0.1087 +vn 0.9720 -0.0957 -0.2147 +vn 0.9346 0.2835 -0.2147 +vn 0.9720 0.0957 -0.2147 +vn 0.9893 0.0974 -0.1087 +vn 0.9513 0.2886 -0.1087 +vn 0.7550 0.6196 -0.2147 +vn 0.8614 0.4604 -0.2147 +vn 0.8767 0.4686 -0.1087 +vn 0.7684 0.6306 -0.1087 +vn 0.6196 0.7550 -0.2147 +vn 0.6306 0.7684 -0.1087 +vn -0.9893 -0.0974 0.1087 +vn -0.9893 0.0974 0.1087 +vn -0.9720 0.0957 0.2147 +vn -0.9513 0.2886 0.1087 +vn -0.9346 0.2835 0.2147 +vn -0.9720 -0.0957 0.2147 +vn -0.9346 -0.2835 0.2147 +vn -0.9513 -0.2886 0.1087 +vn -0.8767 0.4686 0.1087 +vn -0.7684 0.6306 0.1087 +vn -0.8614 0.4604 0.2147 +vn -0.8614 -0.4604 0.2147 +vn -0.8767 -0.4686 0.1087 +vn -0.7550 0.6196 0.2147 +vn -0.7550 -0.6196 0.2147 +vn -0.7684 -0.6306 0.1087 +vn -0.6196 0.7550 0.2147 +vn -0.6306 0.7684 0.1087 +vn -0.4617 -0.5627 0.6858 +vn -0.4616 -0.5627 -0.6857 +vn -0.3432 -0.6419 -0.6857 +vn -0.3430 -0.6420 0.6857 +vn -0.6196 -0.7550 0.2147 +vn -0.6306 -0.7684 0.1087 +vn -0.4604 0.8614 0.2147 +vn -0.4686 0.8767 0.1087 +vn 0.2112 -0.6966 -0.6857 +vn 0.2113 -0.6965 0.6857 +vn -0.4604 -0.8614 0.2147 +vn -0.4686 -0.8767 0.1087 +vn -0.6420 -0.3430 -0.6857 +vn -0.2835 0.9346 0.2147 +vn -0.2886 0.9513 0.1087 +vn -0.6965 -0.2113 0.6857 +vn -0.2835 -0.9346 0.2147 +vn -0.2886 -0.9513 0.1087 +vn -0.0957 0.9720 0.2147 +vn -0.0974 0.9893 0.1087 +vn -0.0957 -0.9720 0.2147 +vn -0.0974 -0.9893 0.1087 +vn 0.0957 0.9720 0.2147 +vn 0.0974 0.9893 0.1087 +vn 0.4617 -0.5626 0.6857 +vn 0.0957 -0.9720 0.2147 +vn 0.0974 -0.9893 0.1087 +vn -0.5628 0.4616 0.6857 +vn -0.5625 0.4618 -0.6857 +vn 0.8767 -0.4686 0.1087 +vn 0.7684 -0.6306 0.1087 +vn 0.2835 0.9346 0.2147 +vn 0.2886 0.9513 0.1087 +vn 0.5625 -0.4618 -0.6857 +vn 0.5628 -0.4616 0.6857 +vn 0.2835 -0.9346 0.2147 +vn 0.2886 -0.9513 0.1087 +vn -0.5626 0.4617 -0.6857 +vn 0.4604 0.8614 0.2147 +vn 0.4686 0.8767 0.1087 +vn 0.6419 -0.3432 -0.6857 +vn 0.6420 -0.3430 0.6857 +vn 0.4604 -0.8614 0.2147 +vn 0.4686 -0.8767 0.1087 +vn -0.4617 0.5627 0.6857 +vn -0.4617 0.5627 -0.6857 +vn 0.6196 0.7550 0.2147 +vn 0.6306 0.7684 0.1087 +vn 0.6965 -0.2113 0.6857 +vn 0.6965 -0.2113 -0.6857 +vn 0.6196 -0.7550 0.2147 +vn 0.6306 -0.7684 0.1087 +vn 0.7550 0.6196 0.2147 +vn 0.7684 0.6306 0.1087 +vn -0.2113 -0.6965 -0.6857 +vn -0.2113 -0.6965 0.6857 +vn 0.7550 -0.6196 0.2147 +vn -0.3431 0.6419 0.6857 +vn -0.3434 0.6418 -0.6857 +vn 0.9513 0.2886 0.1087 +vn 0.8767 0.4686 0.1087 +vn 0.8614 0.4604 0.2147 +vn 0.8614 -0.4604 0.2147 +vn -0.2113 0.6965 0.6857 +vn -0.2113 0.6965 -0.6857 +vn 0.9346 0.2835 0.2147 +vn 0.9346 -0.2835 0.2147 +vn 0.9513 -0.2886 0.1087 +vn 0.9720 0.0957 0.2147 +vn 0.9893 0.0974 0.1087 +vn 0.5628 0.4616 -0.6857 +vn 0.5625 0.4618 0.6857 +vn 0.9720 -0.0957 0.2147 +vn 0.9893 -0.0974 0.1087 +vn 0.0712 0.7244 -0.6857 +vn 0.2112 0.6966 0.6857 +vn 0.2114 0.6965 -0.6857 +vn 0.4617 0.5626 0.6857 +vn 0.7321 -0.3031 0.6100 +vn 0.9239 -0.3827 0.0000 +vn 0.7934 0.6088 0.0000 +vn 0.6287 0.4824 0.6100 +vn 0.1033 -0.7856 0.6100 +vn 0.1305 -0.9914 0.0000 +vn -0.1306 0.9914 -0.0000 +vn -0.1035 0.7856 0.6100 +vn -0.9239 0.3827 -0.0000 +vn -0.7321 0.3032 0.6100 +vn -0.7934 -0.6087 0.0000 +vn -0.6287 -0.4824 0.6100 +vn -0.7321 0.3032 -0.6100 +vn -0.1305 0.9914 0.0000 +vn -0.1035 0.7856 -0.6100 +vn -0.6288 -0.4822 -0.6100 +vn -0.7934 -0.6088 0.0000 +vn 0.7934 0.6087 -0.0000 +vn 0.6286 0.4824 -0.6100 +vn 0.7321 -0.3032 -0.6100 +vn 0.1306 -0.9914 -0.0000 +vn 0.1033 -0.7856 -0.6100 +vn 0.3032 -0.7321 0.6100 +vn 0.3826 -0.9239 0.0000 +vn 0.9914 -0.1305 0.0000 +vn 0.7856 -0.1036 0.6100 +vn -0.4824 -0.6287 0.6100 +vn -0.6088 -0.7933 -0.0000 +vn 0.6087 0.7934 0.0000 +vn 0.4824 0.6287 0.6100 +vn -0.3827 0.9239 0.0000 +vn -0.3031 0.7321 0.6100 +vn -0.9914 0.1305 0.0000 +vn -0.7856 0.1035 0.6100 +vn -0.3033 0.7321 -0.6100 +vn 0.4823 0.6287 -0.6100 +vn -0.7856 0.1035 -0.6100 +vn 0.7856 -0.1036 -0.6100 +vn 0.3827 -0.9239 0.0000 +vn 0.3032 -0.7321 -0.6100 +vn -0.6087 -0.7934 0.0000 +vn -0.4823 -0.6288 -0.6100 +vn -0.3032 -0.7321 0.6100 +vn -0.3827 -0.9239 0.0000 +vn 0.6088 -0.7934 0.0000 +vn 0.4825 -0.6286 0.6100 +vn -0.7856 -0.1035 0.6100 +vn -0.9914 -0.1305 0.0000 +vn 0.9914 0.1306 0.0000 +vn 0.7856 0.1034 0.6100 +vn 0.3827 0.9239 0.0000 +vn 0.3032 0.7321 0.6100 +vn -0.6087 0.7934 -0.0000 +vn -0.4824 0.6287 0.6100 +vn 0.3033 0.7321 -0.6100 +vn 0.9914 0.1305 0.0000 +vn 0.7856 0.1034 -0.6100 +vn -0.4824 0.6287 -0.6100 +vn -0.6088 0.7934 -0.0000 +vn 0.6087 -0.7934 0.0000 +vn 0.4826 -0.6285 -0.6100 +vn -0.3032 -0.7321 -0.6100 +vn -0.7856 -0.1034 -0.6100 +vn -0.7321 -0.3033 0.6100 +vn -0.9239 -0.3827 0.0000 +vn -0.1305 -0.9914 0.0000 +vn -0.1033 -0.7857 0.6100 +vn -0.6287 0.4823 0.6100 +vn -0.7934 0.6088 0.0000 +vn 0.7934 -0.6087 0.0000 +vn 0.6287 -0.4824 0.6100 +vn 0.9239 0.3827 0.0000 +vn 0.7321 0.3033 0.6100 +vn 0.1305 0.9914 0.0000 +vn 0.1035 0.7856 0.6100 +vn 0.7321 0.3032 -0.6100 +vn 0.6287 -0.4823 -0.6100 +vn 0.1034 0.7856 -0.6100 +vn -0.1033 -0.7856 -0.6100 +vn -0.7322 -0.3031 -0.6100 +vn -0.7934 0.6087 0.0000 +vn -0.6286 0.4825 -0.6100 +vn -0.1033 0.7856 0.6100 +vn 0.7321 -0.3032 0.6100 +vn 0.1034 -0.7856 -0.6100 +vn 0.6287 0.4824 -0.6100 +vn -0.6286 -0.4824 -0.6100 +vn -0.1034 0.7856 -0.6100 +vn -0.3031 0.7322 0.6100 +vn -0.7856 0.1036 0.6100 +vn 0.6088 0.7934 0.0000 +vn 0.9914 -0.1306 0.0000 +vn 0.7856 -0.1034 0.6100 +vn 0.3034 -0.7320 -0.6100 +vn -0.6088 -0.7934 -0.0000 +vn -0.4824 -0.6287 -0.6100 +vn 0.7856 -0.1034 -0.6100 +vn -0.9914 0.1306 -0.0000 +vn -0.7856 0.1034 -0.6100 +vn 0.4823 0.6288 -0.6100 +vn -0.4824 0.6286 0.6100 +vn -0.9914 -0.1306 -0.0000 +vn -0.7856 -0.1034 0.6100 +vn -0.3031 -0.7322 0.6100 +vn 0.4824 -0.6287 0.6100 +vn 0.4824 -0.6286 -0.6100 +vn -0.4824 0.6286 -0.6100 +vn 0.3030 0.7322 -0.6100 +vn 0.7321 0.3032 0.6100 +vn 0.7934 -0.6088 0.0000 +vn -0.6287 0.4824 0.6100 +vn -0.7321 -0.3032 0.6100 +vn -0.1306 -0.9914 0.0000 +vn -0.1035 -0.7856 0.6100 +vn -0.7321 -0.3032 -0.6100 +vn -0.6287 0.4823 -0.6100 +vn -0.1034 -0.7856 -0.6100 +vn 0.1035 0.7856 -0.6100 +vn 0.7321 0.3031 -0.6100 +vn 0.6286 -0.4825 -0.6100 +vn 0.5603 -0.5603 0.6100 +vn 0.7071 -0.7071 0.0000 +vn 0.9659 0.2588 0.0000 +vn 0.7654 0.2051 0.6100 +vn -0.2051 -0.7654 0.6100 +vn -0.2588 -0.9659 0.0000 +vn 0.2588 0.9659 0.0000 +vn 0.2051 0.7654 0.6100 +vn -0.7071 0.7071 0.0000 +vn -0.5603 0.5603 0.6100 +vn -0.9659 -0.2588 0.0000 +vn -0.7654 -0.2051 0.6100 +vn -0.5604 0.5602 -0.6100 +vn 0.2050 0.7654 -0.6100 +vn -0.7654 -0.2051 -0.6100 +vn 0.7654 0.2051 -0.6100 +vn 0.5603 -0.5603 -0.6100 +vn -0.2051 -0.7654 -0.6100 +vn 0.0000 -0.7924 0.6100 +vn 0.0000 -1.0000 0.0000 +vn 0.8660 -0.5000 0.0000 +vn 0.6862 -0.3962 0.6100 +vn -0.6862 -0.3963 0.6100 +vn -0.8660 -0.5000 -0.0000 +vn 0.8660 0.5000 0.0000 +vn 0.6863 0.3961 0.6100 +vn 0.0000 1.0000 -0.0000 +vn -0.0002 0.7924 0.6100 +vn -0.8660 0.5000 -0.0000 +vn -0.6862 0.3962 0.6100 +vn -0.0001 0.7924 -0.6100 +vn 0.6861 0.3963 -0.6100 +vn -0.6863 0.3961 -0.6100 +vn 0.6862 -0.3962 -0.6100 +vn -0.0000 -0.7924 -0.6100 +vn -0.6862 -0.3963 -0.6100 +vn -0.5603 -0.5603 0.6100 +vn -0.7071 -0.7071 0.0000 +vn 0.2588 -0.9659 -0.0000 +vn 0.2051 -0.7654 0.6100 +vn -0.7654 0.2051 0.6100 +vn -0.9659 0.2588 0.0000 +vn 0.9659 -0.2588 -0.0000 +vn 0.7654 -0.2050 0.6100 +vn 0.7071 0.7071 -0.0000 +vn 0.5604 0.5602 0.6100 +vn -0.2588 0.9659 0.0000 +vn -0.2051 0.7654 0.6100 +vn 0.5603 0.5603 -0.6100 +vn 0.7654 -0.2051 -0.6100 +vn -0.2051 0.7654 -0.6100 +vn 0.2051 -0.7654 -0.6100 +vn -0.5602 -0.5604 -0.6100 +vn -0.7654 0.2051 -0.6100 +vn -0.7924 0.0001 0.6100 +vn -1.0000 0.0000 0.0000 +vn -0.5000 -0.8660 0.0000 +vn -0.3962 -0.6862 0.6100 +vn -0.3962 0.6862 0.6100 +vn -0.5000 0.8660 0.0000 +vn 0.5000 -0.8660 0.0000 +vn 0.3961 -0.6863 0.6100 +vn 1.0000 0.0000 0.0000 +vn 0.7924 0.0000 0.6100 +vn 0.5000 0.8660 0.0000 +vn 0.3962 0.6862 0.6100 +vn 0.7924 0.0001 -0.6100 +vn 0.3963 -0.6862 -0.6100 +vn 0.3962 0.6862 -0.6100 +vn -0.3962 -0.6862 -0.6100 +vn -0.7924 -0.0001 -0.6100 +vn -0.3962 0.6862 -0.6100 +vn -0.5602 0.5604 0.6100 +vn 0.5602 -0.5604 0.6100 +vn 0.5604 -0.5602 -0.6100 +vn -0.7653 -0.2054 -0.6100 +vn -0.5603 0.5603 -0.6100 +vn 0.2051 0.7654 -0.6100 +vn -0.0001 0.7924 0.6100 +vn 0.6862 0.3962 0.6100 +vn -0.6862 -0.3962 0.6100 +vn 0.0001 -0.7924 0.6100 +vn 0.0001 -0.7924 -0.6100 +vn -0.6863 -0.3961 -0.6100 +vn 0.6863 -0.3960 -0.6100 +vn 0.7654 -0.2051 0.6100 +vn -0.7654 0.2050 0.6100 +vn -0.5603 -0.5603 -0.6100 +vn -0.7654 0.2049 -0.6100 +vn -0.2052 0.7654 -0.6100 +vn 0.5602 0.5604 -0.6100 +vn 0.7924 -0.0001 0.6100 +vn 0.3962 -0.6862 0.6100 +vn 0.3961 0.6863 -0.6100 +vn 0.3962 -0.6862 -0.6100 +g Pipe_Cylinder.002_None_Pipe_Cylinder.002_None_None +s off +f 1/1/1 2/2/1 3/3/1 4/4/1 5/5/1 6/6/1 +f 7/7/2 8/8/2 9/9/2 10/10/2 11/11/2 12/12/2 +f 13/13/1 14/14/1 15/15/1 16/16/1 17/17/1 18/18/1 +f 19/19/2 20/20/2 21/21/2 22/22/2 23/23/2 24/24/2 +f 25/25/1 26/26/1 27/27/1 28/28/1 29/29/1 30/30/1 +f 31/31/2 32/32/2 33/33/2 34/34/2 35/35/2 36/36/2 +f 37/37/1 38/38/1 39/39/1 40/40/1 41/41/1 42/42/1 +f 43/43/2 44/44/2 45/45/2 46/46/2 47/47/2 48/48/2 +f 49/49/1 50/50/1 51/51/1 52/52/1 53/53/1 54/54/1 +f 55/55/2 56/56/2 57/57/2 58/58/2 59/59/2 60/60/2 +f 61/61/1 62/62/1 63/63/1 64/64/1 65/65/1 66/66/1 +f 67/67/2 68/68/2 69/69/2 70/70/2 71/71/2 72/72/2 +f 73/73/1 74/74/1 75/75/1 76/76/1 77/77/1 78/78/1 +f 79/79/2 80/80/2 81/81/2 82/82/2 83/83/2 84/84/2 +f 85/85/1 86/86/1 87/87/1 88/88/1 89/89/1 90/90/1 +f 91/91/2 92/92/2 93/93/2 94/94/2 95/95/2 96/96/2 +f 97/97/2 98/98/2 99/99/2 100/100/2 101/101/2 102/102/2 103/103/2 104/104/2 105/105/2 106/106/2 107/107/2 108/108/2 109/109/2 110/110/2 111/111/2 112/112/2 113/113/2 114/114/2 115/115/2 116/116/2 117/117/2 118/118/2 119/119/2 120/120/2 121/121/2 122/122/2 123/123/2 124/124/2 125/125/2 126/126/2 127/127/2 128/128/2 +f 129/129/1 130/130/1 131/131/1 132/132/1 133/133/1 134/134/1 135/135/1 136/136/1 137/137/1 138/138/1 139/139/1 140/140/1 141/141/1 142/142/1 143/143/1 144/144/1 145/145/1 146/146/1 147/147/1 148/148/1 149/149/1 150/150/1 151/151/1 152/152/1 153/153/1 154/154/1 155/155/1 156/156/1 157/157/1 158/158/1 159/159/1 160/160/1 +f 161/161/1 162/162/1 163/163/1 164/164/1 165/165/1 166/166/1 167/167/1 168/168/1 169/169/1 170/170/1 171/171/1 172/172/1 173/173/1 174/174/1 175/175/1 176/176/1 177/177/1 178/178/1 179/179/1 180/180/1 181/181/1 182/182/1 183/183/1 184/184/1 185/185/1 186/186/1 187/187/1 188/188/1 189/189/1 190/190/1 191/191/1 192/192/1 +f 193/193/2 194/194/2 195/195/2 196/196/2 197/197/2 198/198/2 199/199/2 200/200/2 201/201/2 202/202/2 203/203/2 204/204/2 205/205/2 206/206/2 207/207/2 208/208/2 209/209/2 210/210/2 211/211/2 212/212/2 213/213/2 214/214/2 215/215/2 216/216/2 217/217/2 218/218/2 219/219/2 220/220/2 221/221/2 222/222/2 223/223/2 224/224/2 +f 225/225/1 226/226/1 227/227/1 228/228/1 229/229/1 230/230/1 +f 231/231/2 232/232/2 233/233/2 234/234/2 235/235/2 236/236/2 +f 237/237/1 238/238/1 239/239/1 240/240/1 241/241/1 242/242/1 +f 243/243/2 244/244/2 245/245/2 246/246/2 247/247/2 248/248/2 +f 249/249/1 250/250/1 251/251/1 252/252/1 253/253/1 254/254/1 +f 255/255/2 256/256/2 257/257/2 258/258/2 259/259/2 260/260/2 +f 261/261/1 262/262/1 263/263/1 264/264/1 265/265/1 266/266/1 +f 267/267/2 268/268/2 269/269/2 270/270/2 271/271/2 272/272/2 +f 273/273/1 274/274/1 275/275/1 276/276/1 277/277/1 278/278/1 +f 279/279/2 280/280/2 281/281/2 282/282/2 283/283/2 284/284/2 +f 285/285/1 286/286/1 287/287/1 288/288/1 289/289/1 290/290/1 +f 291/291/2 292/292/2 293/293/2 294/294/2 295/295/2 296/296/2 +f 297/297/1 298/298/1 299/299/1 300/300/1 301/301/1 302/302/1 +f 303/303/2 304/304/2 305/305/2 306/306/2 307/307/2 308/308/2 +f 309/309/1 310/310/1 311/311/1 312/312/1 313/313/1 314/314/1 +f 315/315/2 316/316/2 317/317/2 318/318/2 319/319/2 320/320/2 +s 1 +f 127/321/3 150/322/4 149/323/5 128/324/6 +f 126/325/7 151/326/8 150/322/4 127/321/3 +f 125/327/9 152/328/10 151/326/8 126/325/7 +f 124/329/11 153/330/12 152/328/10 125/327/9 +f 123/331/13 154/332/14 153/330/12 124/329/11 +f 122/333/15 155/334/16 154/332/14 123/331/13 +f 121/335/17 156/336/18 155/334/16 122/333/15 +f 120/337/19 157/338/20 156/336/18 121/335/17 +f 119/339/21 158/340/22 157/338/20 120/337/19 +f 118/341/23 159/342/24 158/340/22 119/339/21 +f 117/343/25 160/344/26 159/342/24 118/341/23 +f 116/345/27 129/346/28 160/344/26 117/343/25 +f 115/347/29 130/348/30 129/346/28 116/345/27 +f 114/349/31 131/350/32 130/351/30 115/347/29 +f 113/352/33 132/353/34 131/350/32 114/349/31 +f 112/354/35 133/355/36 132/353/34 113/352/33 +f 111/356/37 134/357/38 133/358/36 112/359/35 +f 110/360/39 135/361/40 134/357/38 111/356/37 +f 109/362/41 136/363/42 135/361/40 110/360/39 +f 108/364/43 137/365/44 136/363/42 109/362/41 +f 106/366/45 139/367/46 138/368/47 107/369/48 +f 107/369/48 138/368/47 137/365/44 108/364/43 +f 105/370/49 140/371/50 139/367/46 106/366/45 +f 104/372/51 141/373/52 140/371/50 105/370/49 +f 103/374/53 142/375/54 141/373/52 104/372/51 +f 102/376/55 143/377/56 142/375/54 103/374/53 +f 100/378/57 145/379/58 144/380/59 101/381/60 +f 101/381/60 144/380/59 143/377/56 102/376/55 +f 99/382/61 146/383/62 145/379/58 100/378/57 +f 98/384/63 147/385/64 146/383/62 99/382/61 +f 321/386/65 322/387/66 323/388/67 324/389/68 +f 325/390/69 324/389/68 323/388/67 326/391/70 +f 327/392/71 325/390/69 326/391/70 328/393/72 +f 329/394/73 327/392/71 328/393/72 330/395/74 +f 331/396/75 329/394/73 330/395/74 332/397/76 +f 333/398/77 331/396/75 332/397/76 334/399/78 +f 333/398/77 334/399/78 335/400/79 336/401/80 +f 337/402/81 336/401/80 335/400/79 338/403/82 +f 339/404/83 337/402/81 338/403/82 340/405/84 +f 341/406/85 339/404/83 340/405/84 342/407/86 +f 341/406/85 342/407/86 343/408/87 344/409/88 +f 344/409/88 343/408/87 345/410/89 346/411/90 +f 347/412/91 348/413/92 349/414/93 350/415/94 +f 346/411/90 345/410/89 348/413/92 347/412/91 +f 350/415/94 349/414/93 351/416/95 352/417/96 +f 353/418/97 352/417/96 351/416/95 354/419/98 +f 353/418/97 354/419/98 355/420/99 356/421/100 +f 357/422/101 356/421/100 355/420/99 358/423/102 +f 357/424/101 358/425/102 359/426/103 360/427/104 +f 361/428/105 360/427/104 359/426/103 362/429/106 +f 361/428/105 362/429/106 363/430/107 364/431/108 +f 364/431/108 363/430/107 365/432/109 366/433/110 +f 366/433/110 365/432/109 367/434/111 368/435/112 +f 368/435/112 367/434/111 369/436/113 370/437/114 +f 370/437/114 369/436/113 371/438/115 372/439/116 +f 372/439/116 371/438/115 373/440/117 374/441/118 +f 375/442/119 376/443/120 377/444/121 378/445/122 +f 376/443/120 374/441/118 373/440/117 377/444/121 +f 379/446/123 380/447/124 381/448/125 382/449/126 +f 375/442/119 378/445/122 381/448/125 380/447/124 +f 383/450/127 379/446/123 382/449/126 384/451/128 +f 383/450/127 384/451/128 322/387/66 321/386/65 +f 385/452/129 343/408/87 342/407/86 386/453/130 +f 387/454/131 386/453/130 388/455/132 389/456/133 +f 390/457/134 385/452/129 386/453/130 387/454/131 +f 391/458/135 392/459/136 385/452/129 390/457/134 +f 393/460/137 338/403/82 335/400/79 394/461/138 +f 389/456/133 388/455/132 393/460/137 395/462/139 +f 396/463/140 397/464/141 392/459/136 391/458/135 +f 398/465/142 395/462/139 393/460/137 394/461/138 +f 399/466/143 400/467/144 397/464/141 396/463/140 +f 401/468/145 398/465/142 394/461/138 402/469/146 +f 189/470/147 194/471/148 193/472/149 190/473/150 +f 192/474/24 223/475/23 222/476/25 161/477/26 +f 403/478/151 404/479/152 400/467/144 399/466/143 +f 188/480/16 195/481/15 194/471/148 189/470/147 +f 405/482/153 401/468/145 402/469/146 406/483/154 +f 161/477/26 222/476/25 221/484/155 162/485/156 +f 407/486/157 408/487/158 404/479/152 403/478/151 +f 187/488/14 196/489/159 195/481/15 188/480/16 +f 409/490/160 405/482/153 406/483/154 410/491/161 +f 186/492/162 197/493/11 196/489/159 187/488/14 +f 411/494/163 412/495/164 408/487/158 407/486/157 +f 184/496/8 199/497/7 198/498/9 185/499/10 +f 413/500/165 409/490/160 410/491/161 414/501/166 +f 162/485/156 221/484/155 220/502/29 163/503/30 +f 415/504/167 416/505/168 412/495/164 411/494/163 +f 183/506/4 200/507/3 199/497/7 184/496/8 +f 417/508/169 413/500/165 414/501/166 418/509/170 +f 163/503/30 220/502/29 219/510/31 164/511/171 +f 419/512/172 420/513/173 416/514/168 415/515/167 +f 128/324/6 149/323/5 148/516/174 97/517/175 +f 182/518/5 201/519/6 200/507/3 183/506/4 +f 328/393/72 414/501/166 410/491/161 330/395/74 +f 421/520/176 369/436/113 367/434/111 422/521/177 +f 423/522/178 417/508/169 418/509/170 424/523/179 +f 164/511/171 219/510/31 218/524/180 165/525/181 +f 425/526/182 426/527/183 420/513/173 419/512/172 +f 181/528/174 202/529/184 201/519/6 182/518/5 +f 427/530/185 423/522/178 424/523/179 428/531/186 +f 165/525/181 218/524/180 217/532/187 166/533/188 +f 429/534/189 430/535/190 426/527/183 425/526/182 +f 180/536/191 203/537/192 202/529/184 181/528/174 +f 431/538/193 427/530/185 428/531/186 432/539/194 +f 167/540/195 216/541/196 215/542/39 168/543/40 +f 429/534/189 433/544/197 434/545/198 430/535/190 +f 166/533/188 217/532/187 216/546/196 167/547/195 +f 435/548/199 431/538/193 432/539/194 436/549/200 +f 168/543/40 215/542/39 214/550/41 169/551/42 +f 190/473/150 193/472/149 224/552/201 191/553/202 +f 437/554/203 422/521/177 434/545/198 433/544/197 +f 179/555/204 204/556/205 203/537/192 180/536/191 +f 378/445/122 438/557/206 439/558/207 381/448/125 +f 440/559/208 435/548/199 436/549/200 439/558/207 +f 169/551/42 214/550/41 213/560/43 170/561/44 +f 437/554/203 441/562/209 421/520/176 422/521/177 +f 178/563/210 205/564/211 204/556/205 179/555/204 +f 442/565/212 440/559/208 439/558/207 438/557/206 +f 170/561/44 213/566/43 212/567/48 171/568/47 +f 441/562/209 443/569/213 444/570/214 421/520/176 +f 177/571/59 206/572/60 205/564/211 178/563/210 +f 185/499/10 198/498/9 197/493/11 186/492/162 +f 445/573/215 442/565/212 438/557/206 446/574/216 +f 171/568/47 212/567/48 211/575/217 172/576/218 +f 443/569/213 447/577/219 448/578/220 444/570/214 +f 176/579/56 207/580/221 206/572/60 177/571/59 +f 447/577/219 445/573/215 446/574/216 448/578/220 +f 191/553/202 224/552/201 223/475/23 192/474/24 +f 175/581/222 208/582/223 207/580/221 176/579/56 +f 172/576/218 211/575/217 210/583/49 173/584/224 +f 174/585/52 209/586/51 208/582/223 175/581/222 +f 173/584/224 210/583/49 209/586/51 174/585/52 +f 1/587/225 449/588/226 450/589/227 2/590/228 +f 6/591/229 451/592/230 449/588/226 1/587/225 +f 2/590/228 450/589/227 452/593/231 3/594/232 +f 3/594/232 452/593/231 453/595/233 4/596/234 +f 4/597/234 453/598/233 454/599/235 5/600/236 +f 5/600/236 454/599/235 451/592/230 6/591/229 +f 7/601/237 455/602/233 456/603/238 8/604/239 +f 12/605/240 457/606/241 455/602/233 7/601/237 +f 8/604/239 456/603/238 458/607/242 9/608/243 +f 9/608/243 458/607/242 459/609/226 10/610/244 +f 10/611/244 459/612/226 460/613/245 11/614/246 +f 11/614/246 460/613/245 457/606/241 12/605/240 +f 13/615/247 461/616/248 462/617/249 14/618/250 +f 18/619/251 463/620/252 461/616/248 13/615/247 +f 14/618/250 462/617/249 464/621/253 15/622/254 +f 15/622/254 464/621/253 465/623/255 16/624/256 +f 16/625/256 465/626/255 466/627/257 17/628/258 +f 17/628/258 466/627/257 463/620/252 18/619/251 +f 19/629/259 467/630/255 468/631/253 20/632/260 +f 24/633/261 469/634/257 467/630/255 19/629/259 +f 20/632/260 468/631/253 470/635/249 21/636/262 +f 21/636/262 470/635/249 471/637/263 22/638/264 +f 22/639/264 471/640/263 472/641/265 23/642/266 +f 23/642/266 472/641/265 469/634/257 24/633/261 +f 25/643/267 473/644/268 474/645/269 26/646/270 +f 30/647/271 475/648/272 473/644/268 25/643/267 +f 26/646/270 474/645/269 476/649/273 27/650/274 +f 27/650/274 476/649/273 477/651/275 28/652/276 +f 28/653/276 477/654/275 478/655/277 29/656/278 +f 29/656/278 478/655/277 475/648/272 30/647/271 +f 31/657/279 479/658/275 480/659/280 32/660/281 +f 36/661/282 481/662/283 479/658/275 31/657/279 +f 32/660/281 480/659/280 482/663/284 33/664/285 +f 33/664/285 482/663/284 483/665/268 34/666/286 +f 34/667/286 483/668/268 484/669/272 35/670/287 +f 35/670/287 484/669/272 481/662/283 36/661/282 +f 37/671/288 485/672/289 486/673/290 38/674/291 +f 42/675/292 487/676/293 485/672/289 37/671/288 +f 38/674/291 486/673/290 488/677/294 39/678/295 +f 39/678/295 488/677/294 489/679/296 40/680/297 +f 40/681/297 489/682/296 490/683/298 41/684/299 +f 41/684/299 490/683/298 487/676/293 42/675/292 +f 43/685/300 491/686/296 492/687/294 44/688/301 +f 48/689/302 493/690/298 491/686/296 43/685/300 +f 44/688/301 492/687/294 494/691/290 45/692/303 +f 45/692/303 494/691/290 495/693/289 46/694/304 +f 46/695/304 495/696/289 496/697/305 47/698/306 +f 47/698/306 496/697/305 493/690/298 48/689/302 +f 49/699/234 497/700/233 498/701/241 50/702/236 +f 54/703/307 499/704/238 497/700/233 49/699/234 +f 50/702/236 498/701/241 500/705/245 51/706/229 +f 51/706/229 500/705/245 501/707/226 52/708/308 +f 52/709/308 501/710/226 502/711/242 53/712/228 +f 53/712/228 502/711/242 499/704/238 54/703/307 +f 55/713/244 503/714/226 504/715/230 56/716/309 +f 60/717/310 505/718/242 503/714/226 55/713/244 +f 56/716/309 504/715/230 506/719/235 57/720/311 +f 57/720/311 506/719/235 507/721/233 58/722/237 +f 58/723/237 507/724/233 508/725/238 59/726/312 +f 59/726/312 508/725/238 505/718/242 60/717/310 +f 61/727/313 509/728/255 510/729/257 62/730/314 +f 66/731/254 511/732/315 509/728/255 61/727/313 +f 62/730/314 510/729/257 512/733/265 63/734/251 +f 63/734/251 512/733/265 513/735/263 64/736/247 +f 64/737/247 513/738/263 514/739/316 65/740/317 +f 65/740/317 514/739/316 511/732/315 66/731/254 +f 67/741/318 515/742/263 516/743/319 68/744/320 +f 72/745/321 517/746/249 515/742/263 67/741/318 +f 68/744/320 516/743/319 518/747/322 69/748/323 +f 69/748/323 518/747/322 519/749/255 70/750/259 +f 70/751/259 519/752/255 520/753/253 71/754/324 +f 71/754/324 520/753/253 517/746/249 72/745/321 +f 73/755/276 521/756/275 522/757/283 74/758/325 +f 78/759/274 523/760/280 521/756/275 73/755/276 +f 74/758/325 522/757/283 524/761/326 75/762/327 +f 75/762/327 524/761/326 525/763/268 76/764/328 +f 76/765/328 525/766/268 526/767/284 77/768/329 +f 77/768/329 526/767/284 523/760/280 78/759/274 +f 79/769/286 527/770/268 528/771/272 80/772/287 +f 84/773/330 529/774/284 527/770/268 79/769/286 +f 80/772/287 528/771/272 530/775/277 81/776/331 +f 81/776/331 530/775/277 531/777/275 82/778/332 +f 82/779/332 531/780/275 532/781/280 83/782/281 +f 83/782/281 532/781/280 529/774/284 84/773/330 +f 85/783/333 533/784/296 534/785/298 86/786/299 +f 90/787/295 535/788/334 533/784/296 85/783/333 +f 86/786/299 534/785/298 536/789/305 87/790/335 +f 87/790/335 536/789/305 537/791/289 88/792/336 +f 88/793/336 537/794/289 538/795/337 89/796/338 +f 89/796/338 538/795/337 535/788/334 90/787/295 +f 91/797/339 539/798/289 540/799/305 92/800/340 +f 96/801/341 541/802/290 539/798/289 91/797/339 +f 92/800/340 540/799/305 542/803/298 93/804/342 +f 93/804/342 542/803/298 543/805/296 94/806/343 +f 94/807/343 543/808/296 544/809/294 95/810/344 +f 95/810/344 544/809/294 541/802/290 96/801/341 +f 363/430/107 362/429/106 426/527/183 430/535/190 +f 384/451/128 432/539/194 428/531/186 322/387/66 +f 448/578/220 373/440/117 371/438/115 444/570/214 +f 388/455/132 340/405/84 338/403/82 393/460/137 +f 381/448/125 439/558/207 436/549/200 382/449/126 +f 412/495/164 416/505/168 358/423/102 355/420/99 +f 332/397/76 330/395/74 410/491/161 406/483/154 +f 444/570/214 371/438/115 369/436/113 421/520/176 +f 378/445/122 377/444/121 446/574/216 438/557/206 +f 384/451/128 382/449/126 436/549/200 432/539/194 +f 448/578/220 446/574/216 377/444/121 373/440/117 +f 334/399/78 402/469/146 394/461/138 335/400/79 +f 326/391/70 323/388/67 424/523/179 418/509/170 +f 365/432/109 434/545/198 422/521/177 367/434/111 +f 365/432/109 363/430/107 430/535/190 434/545/198 +f 354/419/98 351/416/95 404/479/152 408/487/158 +f 97/517/175 148/516/174 147/385/64 98/384/63 +f 328/393/72 326/391/70 418/509/170 414/501/166 +f 342/407/86 340/405/84 388/455/132 386/453/130 +f 345/410/89 392/459/136 397/464/141 348/413/92 +f 348/413/92 397/464/141 400/467/144 349/414/93 +f 343/408/87 385/452/129 392/459/136 345/410/89 +f 359/426/103 420/513/173 426/527/183 362/429/106 +f 323/388/67 322/387/66 428/531/186 424/523/179 +f 412/495/164 355/420/99 354/419/98 408/487/158 +f 225/811/345 545/812/346 546/813/347 226/814/348 +f 230/815/349 547/816/350 545/812/346 225/811/345 +f 226/814/348 546/813/347 548/817/351 227/818/352 +f 227/818/352 548/817/351 549/819/353 228/820/354 +f 228/821/354 549/822/353 550/823/355 229/824/356 +f 229/824/356 550/823/355 547/816/350 230/815/349 +f 231/825/357 551/826/353 552/827/351 232/828/358 +f 236/829/359 553/830/355 551/826/353 231/825/357 +f 232/828/358 552/827/351 554/831/347 233/832/360 +f 233/832/360 554/831/347 555/833/346 234/834/361 +f 234/835/361 555/836/346 556/837/350 235/838/362 +f 235/838/362 556/837/350 553/830/355 236/829/359 +f 237/839/363 557/840/364 558/841/365 238/842/366 +f 242/843/367 559/844/368 557/840/364 237/839/363 +f 238/842/366 558/841/365 560/845/369 239/846/370 +f 239/846/370 560/845/369 561/847/371 240/848/372 +f 240/849/372 561/850/371 562/851/373 241/852/374 +f 241/852/374 562/851/373 559/844/368 242/843/367 +f 243/853/375 563/854/371 564/855/369 244/856/376 +f 248/857/377 565/858/373 563/854/371 243/853/375 +f 244/856/376 564/855/369 566/859/365 245/860/378 +f 245/860/378 566/859/365 567/861/364 246/862/379 +f 246/863/379 567/864/364 568/865/368 247/866/380 +f 247/866/380 568/865/368 565/858/373 248/857/377 +f 249/867/381 569/868/382 570/869/383 250/870/384 +f 254/871/385 571/872/386 569/868/382 249/867/381 +f 250/870/384 570/869/383 572/873/387 251/874/388 +f 251/874/388 572/873/387 573/875/389 252/876/390 +f 252/877/390 573/878/389 574/879/391 253/880/392 +f 253/880/392 574/879/391 571/872/386 254/871/385 +f 255/881/393 575/882/389 576/883/387 256/884/394 +f 260/885/395 577/886/391 575/882/389 255/881/393 +f 256/884/394 576/883/387 578/887/383 257/888/396 +f 257/888/396 578/887/383 579/889/382 258/890/397 +f 258/891/397 579/892/382 580/893/386 259/894/398 +f 259/894/398 580/893/386 577/886/391 260/885/395 +f 261/895/399 581/896/400 582/897/401 262/898/402 +f 266/899/403 583/900/404 581/896/400 261/895/399 +f 262/898/402 582/897/401 584/901/405 263/902/406 +f 263/902/406 584/901/405 585/903/407 264/904/408 +f 264/905/408 585/906/407 586/907/409 265/908/410 +f 265/908/410 586/907/409 583/900/404 266/899/403 +f 267/909/411 587/910/407 588/911/405 268/912/412 +f 272/913/413 589/914/409 587/910/407 267/909/411 +f 268/912/412 588/911/405 590/915/401 269/916/414 +f 269/916/414 590/915/401 591/917/400 270/918/415 +f 270/919/415 591/920/400 592/921/404 271/922/416 +f 271/922/416 592/921/404 589/914/409 272/913/413 +f 273/923/417 593/924/353 594/925/355 274/926/356 +f 278/927/352 595/928/351 593/924/353 273/923/417 +f 274/926/356 594/925/355 596/929/350 275/930/349 +f 275/930/349 596/929/350 597/931/346 276/932/418 +f 276/933/418 597/934/346 598/935/347 277/936/348 +f 277/936/348 598/935/347 595/928/351 278/927/352 +f 279/937/419 599/938/346 600/939/350 280/940/362 +f 284/941/360 601/942/347 599/938/346 279/937/419 +f 280/940/362 600/939/350 602/943/355 281/944/420 +f 281/944/420 602/943/355 603/945/353 282/946/421 +f 282/947/421 603/948/353 604/949/351 283/950/422 +f 283/950/422 604/949/351 601/942/347 284/941/360 +f 285/951/423 605/952/371 606/953/373 286/954/374 +f 290/955/424 607/956/369 605/952/371 285/951/423 +f 286/954/374 606/953/373 608/957/368 287/958/425 +f 287/958/425 608/957/368 609/959/364 288/960/426 +f 288/961/426 609/962/364 610/963/365 289/964/366 +f 289/964/366 610/963/365 607/956/369 290/955/424 +f 291/965/427 611/966/364 612/967/368 292/968/428 +f 296/969/429 613/970/365 611/966/364 291/965/427 +f 292/968/428 612/967/368 614/971/373 293/972/377 +f 293/972/377 614/971/373 615/973/371 294/974/375 +f 294/975/375 615/976/371 616/977/369 295/978/376 +f 295/978/376 616/977/369 613/970/365 296/969/429 +f 297/979/390 617/980/389 618/981/391 298/982/392 +f 302/983/430 619/984/387 617/980/389 297/979/390 +f 298/982/392 618/981/391 620/985/386 299/986/431 +f 299/986/431 620/985/386 621/987/382 300/988/381 +f 300/989/381 621/990/382 622/991/383 301/992/384 +f 301/992/384 622/991/383 619/984/387 302/983/430 +f 303/993/432 623/994/382 624/995/386 304/996/433 +f 308/997/396 625/998/383 623/994/382 303/993/432 +f 304/996/433 624/995/386 626/999/391 305/1000/434 +f 305/1000/434 626/999/391 627/1001/389 306/1002/435 +f 306/1003/435 627/1004/389 628/1005/387 307/1006/394 +f 307/1006/394 628/1005/387 625/998/383 308/997/396 +f 309/1007/436 629/1008/407 630/1009/409 310/1010/410 +f 314/1011/437 631/1012/405 629/1008/407 309/1007/436 +f 310/1010/410 630/1009/409 632/1013/404 311/1014/403 +f 311/1014/403 632/1013/404 633/1015/400 312/1016/399 +f 312/1017/399 633/1018/400 634/1019/401 313/1020/402 +f 313/1020/402 634/1019/401 631/1012/405 314/1011/437 +f 315/1021/415 635/1022/400 636/1023/404 316/1024/416 +f 320/1025/414 637/1026/401 635/1022/400 315/1021/415 +f 316/1024/416 636/1023/404 638/1027/409 317/1028/438 +f 317/1028/438 638/1027/409 639/1029/407 318/1030/411 +f 318/1031/411 639/1032/407 640/1033/405 319/1034/439 +f 319/1034/439 640/1033/405 637/1026/401 320/1025/414 +f 332/397/76 406/483/154 402/469/146 334/399/78 +f 404/479/152 351/416/95 349/414/93 400/467/144 +f 358/425/102 416/514/168 420/513/173 359/426/103 diff --git a/mods/pipeworks/models/pipeworks_straight_pipe_lowpoly.obj b/mods/pipeworks/models/pipeworks_straight_pipe_lowpoly.obj new file mode 100644 index 00000000..86001470 --- /dev/null +++ b/mods/pipeworks/models/pipeworks_straight_pipe_lowpoly.obj @@ -0,0 +1,194 @@ +# Blender v2.78 (sub 0) OBJ File: '' +# www.blender.org +o Cylinder.000_Cylinder.000_None +v 0.064721 -0.156250 -0.468750 +v 0.156250 -0.064721 -0.468750 +v 0.156250 0.064721 -0.468750 +v 0.064721 0.156250 -0.468750 +v -0.064721 0.156250 -0.468750 +v -0.156250 0.064721 -0.468750 +v -0.156250 -0.064721 -0.468750 +v -0.064721 -0.156250 -0.468750 +v 0.156250 -0.064721 -0.500000 +v 0.064721 -0.156250 -0.500000 +v -0.064721 -0.156250 -0.500000 +v -0.156250 -0.064721 -0.500000 +v -0.156250 0.064721 -0.500000 +v -0.064721 0.156250 -0.500000 +v 0.064721 0.156250 -0.500000 +v 0.156250 0.064721 -0.500000 +v 0.064721 -0.156250 0.500000 +v 0.156250 -0.064721 0.500000 +v 0.156250 0.064721 0.500000 +v 0.064721 0.156250 0.500000 +v -0.064721 0.156250 0.500000 +v -0.156250 0.064721 0.500000 +v -0.156250 -0.064721 0.500000 +v -0.064721 -0.156250 0.500000 +v 0.156250 -0.064721 0.468750 +v 0.064721 -0.156250 0.468750 +v -0.064721 -0.156250 0.468750 +v -0.156250 -0.064721 0.468750 +v -0.156250 0.064721 0.468750 +v -0.064721 0.156250 0.468750 +v 0.064721 0.156250 0.468750 +v 0.156250 0.064721 0.468750 +v -0.125000 -0.051777 0.468750 +v -0.125000 0.051777 0.468750 +v -0.125000 0.051777 -0.468750 +v -0.125000 -0.051777 -0.468750 +v 0.051777 0.125000 0.468750 +v 0.125000 0.051777 0.468750 +v 0.125000 0.051777 -0.468750 +v 0.051777 0.125000 -0.468750 +v -0.051777 0.125000 0.468750 +v -0.051777 0.125000 -0.468750 +v -0.051777 -0.125000 -0.468750 +v -0.051777 -0.125000 0.468750 +v 0.051777 -0.125000 -0.468750 +v 0.125000 -0.051777 -0.468750 +v 0.125000 -0.051777 0.468750 +v 0.051777 -0.125000 0.468750 +vt 0.7188 0.8906 +vt 0.6250 0.9844 +vt 0.5000 0.9844 +vt 0.4062 0.8906 +vt 0.4062 0.7656 +vt 0.5000 0.6719 +vt 0.6250 0.6719 +vt 0.7188 0.7656 +vt 0.2500 0.9844 +vt 0.3438 0.8906 +vt 0.3438 0.7656 +vt 0.2500 0.6719 +vt 0.1250 0.6719 +vt 0.0312 0.7656 +vt 0.0312 0.8906 +vt 0.1250 0.9844 +vt 0.3438 0.8906 +vt 0.2500 0.9844 +vt 0.1250 0.9844 +vt 0.0312 0.8906 +vt 0.0312 0.7656 +vt 0.1250 0.6719 +vt 0.2500 0.6719 +vt 0.3438 0.7656 +vt 0.6250 0.9844 +vt 0.7188 0.8906 +vt 0.7188 0.7656 +vt 0.6250 0.6719 +vt 0.5000 0.6719 +vt 0.4062 0.7656 +vt 0.4062 0.8906 +vt 0.5000 0.9844 +vt 0.8125 0.5938 +vt 0.8125 0.5625 +vt 0.8750 0.5625 +vt 0.8750 0.5938 +vt 0.9375 0.5625 +vt 0.9375 0.5938 +vt 1.0000 0.5625 +vt 1.0000 0.5938 +vt 0.5000 0.5938 +vt 0.5000 0.5625 +vt 0.5625 0.5625 +vt 0.5625 0.5938 +vt 0.6250 0.5625 +vt 0.6250 0.5938 +vt 0.6875 0.5625 +vt 0.6875 0.5938 +vt 0.7500 0.5625 +vt 0.7500 0.5938 +vt 0.3750 0.5938 +vt 0.3750 0.5625 +vt 0.4375 0.5625 +vt 0.4375 0.5938 +vt 0.3125 0.5938 +vt 0.3125 0.5625 +vt 0.5000 0.5625 +vt 0.5000 0.5938 +vt 0.0000 0.5938 +vt 0.0000 0.5625 +vt 0.0625 0.5625 +vt 0.0625 0.5938 +vt 0.1250 0.5625 +vt 0.1250 0.5938 +vt 0.1875 0.5625 +vt 0.1875 0.5938 +vt 0.2500 0.5625 +vt 0.2500 0.5938 +vt 1.0624 0.5135 +vt 0.9370 0.5135 +vt 0.9370 0.0130 +vt 1.0624 0.0130 +vt 0.6862 0.5135 +vt 0.5608 0.5135 +vt 0.5608 0.0130 +vt 0.6862 0.0130 +vt 0.8116 0.5135 +vt 0.8116 0.0130 +vt 1.1878 0.0130 +vt 1.1878 0.5135 +vt 0.3100 0.0130 +vt 0.4354 0.0130 +vt 0.4354 0.5135 +vt 0.3100 0.5135 +vt 0.1846 0.0130 +vt 0.1846 0.5135 +vn -0.0000 0.0000 1.0000 +vn 0.0000 0.0000 -1.0000 +vn 0.7173 -0.2971 -0.6302 +vn 0.7173 -0.2971 0.6302 +vn 0.2971 -0.7173 0.6302 +vn 0.2971 -0.7173 -0.6302 +vn -0.2971 -0.7173 0.6302 +vn -0.2971 -0.7173 -0.6302 +vn -0.7173 -0.2971 0.6302 +vn -0.7173 -0.2971 -0.6302 +vn -0.7173 0.2971 0.6302 +vn -0.7173 0.2971 -0.6302 +vn -0.2971 0.7173 0.6302 +vn -0.2971 0.7173 -0.6302 +vn 0.2971 0.7173 0.6302 +vn 0.2971 0.7173 -0.6302 +vn 0.7173 0.2971 0.6302 +vn 0.7173 0.2971 -0.6302 +vn -0.9239 -0.3827 -0.0000 +vn -0.9239 0.3827 -0.0000 +vn 0.3827 0.9239 0.0000 +vn 0.9239 0.3827 0.0000 +vn -0.3827 0.9239 -0.0000 +vn -0.3827 -0.9239 -0.0000 +vn 0.3827 -0.9239 0.0000 +vn 0.9239 -0.3827 0.0000 +g Cylinder.000_Cylinder.000_None_Cylinder.000_Cylinder.000_None_None +s off +f 1/1/1 2/2/1 3/3/1 4/4/1 5/5/1 6/6/1 7/7/1 8/8/1 +f 9/9/2 10/10/2 11/11/2 12/12/2 13/13/2 14/14/2 15/15/2 16/16/2 +f 17/17/1 18/18/1 19/19/1 20/20/1 21/21/1 22/22/1 23/23/1 24/24/1 +f 25/25/2 26/26/2 27/27/2 28/28/2 29/29/2 30/30/2 31/31/2 32/32/2 +s 1 +f 9/33/3 2/34/4 1/35/5 10/36/6 +f 10/36/6 1/35/5 8/37/7 11/38/8 +f 11/38/8 8/37/7 7/39/9 12/40/10 +f 12/41/10 7/42/9 6/43/11 13/44/12 +f 13/44/12 6/43/11 5/45/13 14/46/14 +f 14/46/14 5/45/13 4/47/15 15/48/16 +f 15/48/16 4/47/15 3/49/17 16/50/18 +f 16/50/18 3/49/17 2/34/4 9/33/3 +f 26/51/6 17/52/5 24/53/7 27/54/8 +f 25/55/3 18/56/4 17/52/5 26/51/6 +f 27/54/8 24/53/7 23/57/9 28/58/10 +f 28/59/10 23/60/9 22/61/11 29/62/12 +f 29/62/12 22/61/11 21/63/13 30/64/14 +f 30/64/14 21/63/13 20/65/15 31/66/16 +f 31/66/16 20/65/15 19/67/17 32/68/18 +f 32/68/18 19/67/17 18/56/4 25/55/3 +f 33/69/19 34/70/20 35/71/20 36/72/19 +f 37/73/21 38/74/22 39/75/22 40/76/21 +f 34/70/20 41/77/23 42/78/23 35/71/20 +f 33/69/19 36/72/19 43/79/24 44/80/24 +f 45/81/25 46/82/26 47/83/26 48/84/25 +f 43/85/24 45/81/25 48/84/25 44/86/24 +f 37/73/21 40/76/21 42/78/23 41/77/23 +f 46/82/26 39/75/22 38/74/22 47/83/26 diff --git a/mods/pipeworks/models/pipeworks_valve_off.obj b/mods/pipeworks/models/pipeworks_valve_off.obj new file mode 100644 index 00000000..bab74ee4 --- /dev/null +++ b/mods/pipeworks/models/pipeworks_valve_off.obj @@ -0,0 +1,8136 @@ +# Blender v2.78 (sub 0) OBJ File: 'pipe-valve-off.blend' +# www.blender.org +o Pipe_Cylinder.002 +v -0.038455 0.126770 -0.468750 +v -0.012985 0.131837 -0.468750 +v 0.012984 0.131837 -0.468750 +v 0.038455 0.126770 -0.468750 +v 0.062448 0.116832 -0.468750 +v 0.084041 0.102404 -0.468750 +v 0.102404 0.084041 -0.468750 +v 0.116832 0.062448 -0.468750 +v 0.126770 0.038455 -0.468750 +v 0.131836 0.012985 -0.468750 +v 0.131836 -0.012985 -0.468750 +v 0.116832 -0.062448 -0.468750 +v 0.102404 -0.084041 -0.468750 +v 0.084041 -0.102404 -0.468750 +v 0.062448 -0.116832 -0.468750 +v 0.038455 -0.126770 -0.468750 +v 0.012985 -0.131836 -0.468750 +v -0.012985 -0.131836 -0.468750 +v -0.038455 -0.126770 -0.468750 +v -0.062448 -0.116832 -0.468750 +v -0.102404 -0.084041 -0.468750 +v -0.084041 -0.102404 -0.468750 +v -0.116832 -0.062448 -0.468750 +v -0.126770 -0.038455 -0.468750 +v -0.131837 0.012985 -0.468750 +v -0.116832 0.062448 -0.468750 +v -0.126770 0.038455 -0.468750 +v -0.102404 0.084041 -0.468750 +v -0.084041 0.102404 -0.468750 +v -0.062448 0.116832 -0.468750 +v 0.126770 -0.038455 -0.468750 +v -0.131837 -0.012985 -0.468750 +v -0.059210 0.110774 -0.437501 +v -0.036461 0.120197 -0.437501 +v -0.012312 0.125000 -0.437501 +v 0.012311 0.125001 -0.437501 +v 0.036461 0.120197 -0.437501 +v 0.059210 0.110774 -0.437501 +v 0.079683 0.097094 -0.437501 +v 0.097094 0.079683 -0.437501 +v 0.110774 0.059210 -0.437501 +v 0.120197 0.036461 -0.437501 +v 0.125000 0.012312 -0.437501 +v 0.125000 -0.012311 -0.437501 +v 0.120197 -0.036461 -0.437501 +v 0.110774 -0.059210 -0.437501 +v 0.097094 -0.079683 -0.437501 +v 0.079683 -0.097094 -0.437501 +v 0.059210 -0.110774 -0.437501 +v 0.036461 -0.120197 -0.437501 +v 0.012311 -0.125000 -0.437501 +v -0.012312 -0.125000 -0.437501 +v -0.036461 -0.120197 -0.437501 +v -0.059210 -0.110774 -0.437501 +v -0.079683 -0.097094 -0.437501 +v -0.097094 -0.079683 -0.437501 +v -0.110774 -0.059210 -0.437501 +v -0.120197 -0.036461 -0.437501 +v -0.125001 -0.012311 -0.437501 +v -0.125001 0.012311 -0.437501 +v -0.120197 0.036461 -0.437501 +v -0.110774 0.059210 -0.437501 +v -0.097094 0.079683 -0.437501 +v -0.079683 0.097094 -0.437501 +v 0.120197 0.036461 0.437501 +v 0.125001 0.012312 0.437501 +v 0.125001 -0.012311 0.437501 +v 0.120197 -0.036461 0.437501 +v 0.110774 0.059210 0.437501 +v 0.131837 0.012985 0.468750 +v 0.126770 0.038455 0.468750 +v 0.131837 -0.012985 0.468750 +v 0.110774 -0.059210 0.437501 +v 0.126770 -0.038455 0.468750 +v 0.097094 0.079683 0.437501 +v 0.116832 0.062448 0.468750 +v 0.097094 -0.079683 0.437501 +v 0.116832 -0.062448 0.468750 +v 0.079683 0.097094 0.437501 +v 0.102404 0.084041 0.468750 +v 0.079683 -0.097094 0.437501 +v 0.102404 -0.084041 0.468750 +v 0.059210 0.110774 0.437501 +v 0.084041 0.102404 0.468750 +v 0.059210 -0.110774 0.437501 +v 0.084041 -0.102404 0.468750 +v 0.036461 0.120197 0.437501 +v 0.062448 0.116832 0.468750 +v 0.036461 -0.120197 0.437501 +v 0.062448 -0.116832 0.468750 +v 0.012311 0.125000 0.437501 +v 0.038455 0.126770 0.468750 +v 0.012311 -0.125001 0.437501 +v 0.038455 -0.126770 0.468750 +v -0.012312 0.125000 0.437501 +v 0.012985 0.131836 0.468750 +v -0.012311 -0.125001 0.437501 +v 0.012985 -0.131837 0.468750 +v -0.036461 0.120197 0.437501 +v -0.012985 0.131836 0.468750 +v -0.036461 -0.120197 0.437501 +v -0.012985 -0.131837 0.468750 +v -0.059210 0.110774 0.437501 +v -0.038455 0.126770 0.468750 +v -0.059210 -0.110774 0.437501 +v -0.038455 -0.126770 0.468750 +v -0.079683 0.097094 0.437501 +v -0.062448 0.116832 0.468750 +v -0.079683 -0.097094 0.437501 +v -0.062448 -0.116832 0.468750 +v -0.097094 0.079683 0.437501 +v -0.084041 0.102404 0.468750 +v -0.097094 -0.079683 0.437501 +v -0.084041 -0.102404 0.468750 +v -0.110774 0.059210 0.437501 +v -0.102404 0.084041 0.468750 +v -0.110774 -0.059210 0.437501 +v -0.102404 -0.084041 0.468750 +v -0.120197 0.036461 0.437501 +v -0.116832 0.062448 0.468750 +v -0.120197 -0.036461 0.437501 +v -0.116832 -0.062448 0.468750 +v -0.125000 0.012311 0.437501 +v -0.126770 0.038455 0.468750 +v -0.125000 -0.012311 0.437501 +v -0.126770 -0.038455 0.468750 +v -0.131836 0.012985 0.468750 +v -0.131836 -0.012985 0.468750 +v -0.063644 0.130078 0.460912 +v -0.063644 0.130078 0.468749 +v -0.062467 0.139022 0.468749 +v -0.062467 0.139022 0.460912 +v -0.054132 0.142474 0.460912 +v -0.046976 0.136982 0.460912 +v -0.048153 0.128039 0.460912 +v -0.056487 0.124587 0.460912 +v -0.056487 0.124587 0.468749 +v -0.054132 0.142474 0.468749 +v -0.046976 0.136982 0.468749 +v -0.048153 0.128039 0.468749 +v -0.046976 0.136982 -0.460914 +v -0.046976 0.136982 -0.468751 +v -0.054133 0.142474 -0.468751 +v -0.054133 0.142474 -0.460914 +v -0.062467 0.139022 -0.460914 +v -0.063644 0.130078 -0.460914 +v -0.056488 0.124587 -0.460914 +v -0.048153 0.128039 -0.460914 +v -0.048153 0.128039 -0.468751 +v -0.062467 0.139022 -0.468751 +v -0.063644 0.130078 -0.468751 +v -0.056488 0.124587 -0.468751 +v -0.136982 0.046976 0.460912 +v -0.136982 0.046976 0.468749 +v -0.142474 0.054133 0.468749 +v -0.142474 0.054133 0.460912 +v -0.139022 0.062467 0.460912 +v -0.130078 0.063644 0.460912 +v -0.124587 0.056488 0.460912 +v -0.128039 0.048154 0.460912 +v -0.128039 0.048154 0.468749 +v -0.139022 0.062467 0.468749 +v -0.130078 0.063644 0.468749 +v -0.124587 0.056488 0.468749 +v -0.130078 0.063644 -0.460914 +v -0.130078 0.063644 -0.468751 +v -0.139022 0.062467 -0.468751 +v -0.139022 0.062467 -0.460914 +v -0.142474 0.054133 -0.460914 +v -0.136982 0.046976 -0.460914 +v -0.128039 0.048153 -0.460914 +v -0.124587 0.056487 -0.460914 +v -0.124587 0.056487 -0.468751 +v -0.142474 0.054133 -0.468751 +v -0.136982 0.046976 -0.468751 +v -0.128039 0.048153 -0.468751 +v -0.130078 -0.063644 0.460912 +v -0.130078 -0.063644 0.468749 +v -0.139022 -0.062467 0.468749 +v -0.139022 -0.062467 0.460912 +v -0.142474 -0.054132 0.460912 +v -0.136982 -0.046976 0.460912 +v -0.128039 -0.048153 0.460912 +v -0.124587 -0.056487 0.460912 +v -0.124587 -0.056487 0.468749 +v -0.142474 -0.054132 0.468749 +v -0.136982 -0.046976 0.468749 +v -0.128039 -0.048153 0.468749 +v -0.136982 -0.046976 -0.460914 +v -0.136982 -0.046976 -0.468751 +v -0.142474 -0.054133 -0.468751 +v -0.142474 -0.054133 -0.460914 +v -0.139022 -0.062467 -0.460914 +v -0.130078 -0.063644 -0.460914 +v -0.124587 -0.056488 -0.460914 +v -0.128039 -0.048153 -0.460914 +v -0.128039 -0.048153 -0.468751 +v -0.139022 -0.062467 -0.468751 +v -0.130078 -0.063644 -0.468751 +v -0.124587 -0.056488 -0.468751 +v -0.046976 -0.136982 0.460912 +v -0.046976 -0.136982 0.468749 +v -0.054133 -0.142474 0.468749 +v -0.054133 -0.142474 0.460912 +v -0.062467 -0.139022 0.460912 +v -0.063644 -0.130078 0.460912 +v -0.056488 -0.124587 0.460912 +v -0.048153 -0.128039 0.460912 +v -0.048153 -0.128039 0.468749 +v -0.062467 -0.139022 0.468749 +v -0.063644 -0.130078 0.468749 +v -0.056488 -0.124587 0.468749 +v -0.063644 -0.130078 -0.460914 +v -0.063644 -0.130078 -0.468751 +v -0.062467 -0.139022 -0.468751 +v -0.062467 -0.139022 -0.460914 +v -0.054133 -0.142474 -0.460914 +v -0.046976 -0.136982 -0.460914 +v -0.048153 -0.128039 -0.460914 +v -0.056487 -0.124587 -0.460914 +v -0.056487 -0.124587 -0.468751 +v -0.054133 -0.142474 -0.468751 +v -0.046976 -0.136982 -0.468751 +v -0.048153 -0.128039 -0.468751 +v 0.063644 -0.130078 0.460912 +v 0.063644 -0.130078 0.468749 +v 0.062467 -0.139022 0.468749 +v 0.062467 -0.139022 0.460912 +v 0.054132 -0.142474 0.460912 +v 0.046976 -0.136982 0.460912 +v 0.048153 -0.128039 0.460912 +v 0.056487 -0.124587 0.460912 +v 0.056487 -0.124587 0.468749 +v 0.054132 -0.142474 0.468749 +v 0.046976 -0.136982 0.468749 +v 0.048153 -0.128039 0.468749 +v 0.046976 -0.136982 -0.460914 +v 0.046976 -0.136982 -0.468751 +v 0.054133 -0.142474 -0.468751 +v 0.054133 -0.142474 -0.460914 +v 0.062467 -0.139022 -0.460914 +v 0.063644 -0.130078 -0.460914 +v 0.056487 -0.124587 -0.460914 +v 0.048153 -0.128039 -0.460914 +v 0.048153 -0.128039 -0.468751 +v 0.062467 -0.139022 -0.468751 +v 0.063644 -0.130078 -0.468751 +v 0.056487 -0.124587 -0.468751 +v 0.136982 -0.046976 0.460912 +v 0.136982 -0.046976 0.468749 +v 0.142474 -0.054133 0.468749 +v 0.142474 -0.054133 0.460912 +v 0.139022 -0.062467 0.460912 +v 0.130078 -0.063644 0.460912 +v 0.124587 -0.056488 0.460912 +v 0.128039 -0.048153 0.460912 +v 0.128039 -0.048153 0.468749 +v 0.139022 -0.062467 0.468749 +v 0.130078 -0.063644 0.468749 +v 0.124587 -0.056488 0.468749 +v 0.130078 -0.063644 -0.460914 +v 0.130078 -0.063644 -0.468751 +v 0.139022 -0.062467 -0.468751 +v 0.139022 -0.062467 -0.460914 +v 0.142474 -0.054132 -0.460914 +v 0.136982 -0.046976 -0.460914 +v 0.128039 -0.048153 -0.460914 +v 0.124587 -0.056487 -0.460914 +v 0.124587 -0.056487 -0.468751 +v 0.142474 -0.054132 -0.468751 +v 0.136982 -0.046976 -0.468751 +v 0.128039 -0.048153 -0.468751 +v 0.130078 0.063644 0.460912 +v 0.130078 0.063644 0.468749 +v 0.139022 0.062467 0.468749 +v 0.139022 0.062467 0.460912 +v 0.142474 0.054132 0.460912 +v 0.136982 0.046976 0.460912 +v 0.128039 0.048153 0.460912 +v 0.124587 0.056487 0.460912 +v 0.124587 0.056487 0.468749 +v 0.142474 0.054132 0.468749 +v 0.136982 0.046976 0.468749 +v 0.128039 0.048153 0.468749 +v 0.136982 0.046976 -0.460914 +v 0.136982 0.046976 -0.468751 +v 0.142474 0.054133 -0.468751 +v 0.142474 0.054133 -0.460914 +v 0.139022 0.062467 -0.460914 +v 0.130078 0.063644 -0.460914 +v 0.124587 0.056487 -0.460914 +v 0.128039 0.048153 -0.460914 +v 0.128039 0.048153 -0.468751 +v 0.139022 0.062467 -0.468751 +v 0.130078 0.063644 -0.468751 +v 0.124587 0.056487 -0.468751 +v 0.046976 0.136982 0.460912 +v 0.046976 0.136982 0.468749 +v 0.054133 0.142474 0.468749 +v 0.054133 0.142474 0.460912 +v 0.062467 0.139022 0.460912 +v 0.063644 0.130078 0.460912 +v 0.056488 0.124587 0.460912 +v 0.048154 0.128039 0.460912 +v 0.048154 0.128039 0.468749 +v 0.062467 0.139022 0.468749 +v 0.063644 0.130078 0.468749 +v 0.056488 0.124587 0.468749 +v 0.063644 0.130078 -0.460914 +v 0.063644 0.130078 -0.468751 +v 0.062467 0.139022 -0.468751 +v 0.062467 0.139022 -0.460914 +v 0.054132 0.142474 -0.460914 +v 0.046976 0.136982 -0.460914 +v 0.048153 0.128039 -0.460914 +v 0.056487 0.124587 -0.460914 +v 0.056487 0.124587 -0.468751 +v 0.054132 0.142474 -0.468751 +v 0.046976 0.136982 -0.468751 +v 0.048153 0.128039 -0.468751 +v 0.121367 0.099603 -0.500000 +v 0.138467 0.074012 -0.500000 +v 0.150245 0.045577 -0.500000 +v 0.156250 0.015390 -0.500000 +v 0.156250 -0.015389 -0.500000 +v 0.150245 -0.045576 -0.500000 +v 0.138467 -0.074012 -0.500000 +v 0.121367 -0.099603 -0.500000 +v 0.099603 -0.121367 -0.500000 +v 0.045576 -0.150245 -0.500000 +v -0.015389 -0.156250 -0.500000 +v -0.045576 -0.150245 -0.500000 +v -0.099603 -0.121367 -0.500000 +v -0.121367 -0.099603 -0.500000 +v -0.138467 -0.074012 -0.500000 +v -0.150245 -0.045576 -0.500000 +v -0.156250 -0.015389 -0.500000 +v -0.150245 0.045576 -0.500000 +v -0.138467 0.074012 -0.500000 +v -0.121367 0.099603 -0.500000 +v -0.074012 0.138467 -0.500000 +v -0.015389 0.156250 -0.500000 +v 0.015389 0.156250 -0.500000 +v 0.045576 0.150245 -0.500000 +v 0.074012 0.138467 -0.500000 +v 0.099603 0.121367 -0.500000 +v 0.074012 -0.138466 -0.500000 +v 0.015389 -0.156250 -0.500000 +v -0.074012 -0.138467 -0.500000 +v -0.156250 0.015389 -0.500000 +v -0.099603 0.121367 -0.500000 +v -0.045576 0.150245 -0.500000 +v 0.121367 0.099603 -0.468750 +v 0.099603 0.121367 -0.468750 +v 0.138467 0.074012 -0.468750 +v 0.150245 0.045577 -0.468750 +v 0.156250 0.015390 -0.468750 +v 0.156250 -0.015389 -0.468750 +v 0.150245 -0.045576 -0.468750 +v 0.138467 -0.074012 -0.468750 +v 0.121367 -0.099603 -0.468750 +v 0.099603 -0.121367 -0.468750 +v 0.074012 -0.138466 -0.468750 +v 0.045576 -0.150245 -0.468750 +v 0.015389 -0.156250 -0.468750 +v -0.015389 -0.156250 -0.468750 +v -0.045576 -0.150245 -0.468750 +v -0.074012 -0.138467 -0.468750 +v -0.099603 -0.121367 -0.468750 +v -0.121367 -0.099603 -0.468750 +v -0.138467 -0.074012 -0.468750 +v -0.150245 -0.045576 -0.468750 +v -0.156250 -0.015389 -0.468750 +v -0.156250 0.015389 -0.468750 +v -0.138467 0.074012 -0.468750 +v -0.150245 0.045576 -0.468750 +v -0.121367 0.099603 -0.468750 +v -0.099603 0.121367 -0.468750 +v -0.074012 0.138467 -0.468750 +v -0.045576 0.150245 -0.468750 +v 0.015389 0.156250 -0.468750 +v -0.015389 0.156250 -0.468750 +v 0.045576 0.150245 -0.468750 +v 0.074012 0.138467 -0.468750 +v 0.074012 -0.138466 0.468750 +v 0.045576 -0.150245 0.468750 +v 0.015389 -0.156250 0.468750 +v 0.099603 -0.121367 0.468750 +v -0.015389 -0.156250 0.468750 +v 0.138467 -0.074012 0.468750 +v 0.121367 -0.099603 0.468750 +v 0.099603 -0.121367 0.500000 +v 0.074012 -0.138467 0.500000 +v 0.045576 -0.150245 0.500000 +v 0.015389 -0.156250 0.500000 +v -0.015389 -0.156250 0.500000 +v 0.150245 -0.045576 0.468750 +v 0.121367 -0.099603 0.500000 +v -0.045576 -0.150245 0.468750 +v -0.045576 -0.150245 0.500000 +v 0.156250 -0.015389 0.468750 +v 0.150245 -0.045576 0.500000 +v 0.138467 -0.074012 0.500000 +v -0.074012 -0.138467 0.468750 +v -0.074012 -0.138467 0.500000 +v 0.156250 0.015389 0.468750 +v 0.156250 -0.015389 0.500000 +v -0.099603 -0.121367 0.468750 +v -0.099603 -0.121367 0.500000 +v 0.150245 0.045576 0.468750 +v 0.156250 0.015389 0.500000 +v -0.121367 -0.099603 0.468750 +v -0.121367 -0.099603 0.500000 +v 0.138467 0.074012 0.468750 +v 0.150245 0.045576 0.500000 +v -0.150245 -0.045576 0.468750 +v -0.138467 -0.074012 0.468750 +v -0.138467 -0.074012 0.500000 +v 0.121367 0.099603 0.468750 +v 0.138467 0.074012 0.500000 +v -0.156250 -0.015389 0.468750 +v -0.150245 -0.045576 0.500000 +v 0.099603 0.121367 0.468750 +v 0.121367 0.099603 0.500000 +v -0.156250 0.015389 0.468750 +v -0.156250 -0.015389 0.500000 +v 0.074012 0.138466 0.468750 +v 0.099604 0.121367 0.500000 +v -0.150245 0.045576 0.468750 +v -0.156250 0.015389 0.500000 +v 0.045577 0.150245 0.468750 +v 0.074012 0.138466 0.500000 +v -0.138467 0.074012 0.468750 +v -0.150245 0.045576 0.500000 +v 0.015389 0.156249 0.468750 +v 0.045577 0.150245 0.500000 +v -0.015389 0.156250 0.500000 +v -0.121367 0.099603 0.468750 +v -0.138467 0.074012 0.500000 +v -0.015389 0.156250 0.468750 +v 0.015389 0.156250 0.500000 +v -0.074012 0.138467 0.500000 +v -0.045576 0.150245 0.500000 +v -0.099603 0.121367 0.500000 +v -0.121367 0.099603 0.500000 +v -0.045576 0.150245 0.468750 +v -0.099603 0.121367 0.468750 +v -0.074012 0.138467 0.468750 +v -0.108578 0.095821 0.460912 +v -0.108578 0.095821 0.468749 +v -0.110913 0.104534 0.468749 +v -0.110913 0.104534 0.460912 +v -0.104534 0.110913 0.460912 +v -0.095821 0.108578 0.460912 +v -0.093486 0.099865 0.460912 +v -0.099865 0.093486 0.460912 +v -0.099865 0.093486 0.468749 +v -0.104534 0.110913 0.468749 +v -0.095821 0.108578 0.468749 +v -0.093486 0.099865 0.468749 +v -0.095821 0.108578 -0.460914 +v -0.095821 0.108578 -0.468751 +v -0.104534 0.110913 -0.468751 +v -0.104534 0.110913 -0.460914 +v -0.110913 0.104534 -0.460914 +v -0.108578 0.095821 -0.460914 +v -0.099865 0.093486 -0.460914 +v -0.093486 0.099865 -0.460914 +v -0.093486 0.099865 -0.468751 +v -0.110913 0.104534 -0.468751 +v -0.108578 0.095821 -0.468751 +v -0.099865 0.093486 -0.468751 +v -0.144532 -0.009021 0.460912 +v -0.144532 -0.009021 0.468749 +v -0.152344 -0.004510 0.468749 +v -0.152344 -0.004510 0.460912 +v -0.152344 0.004510 0.460912 +v -0.144532 0.009021 0.460912 +v -0.136720 0.004510 0.460912 +v -0.136720 -0.004510 0.460912 +v -0.136720 -0.004510 0.468749 +v -0.152344 0.004510 0.468749 +v -0.144532 0.009021 0.468749 +v -0.136720 0.004510 0.468749 +v -0.144532 0.009021 -0.460914 +v -0.144532 0.009021 -0.468751 +v -0.152344 0.004510 -0.468751 +v -0.152344 0.004510 -0.460914 +v -0.152344 -0.004510 -0.460914 +v -0.144532 -0.009021 -0.460914 +v -0.136720 -0.004510 -0.460914 +v -0.136720 0.004510 -0.460914 +v -0.136720 0.004510 -0.468751 +v -0.152344 -0.004510 -0.468751 +v -0.144532 -0.009021 -0.468751 +v -0.136720 -0.004510 -0.468751 +v -0.095821 -0.108578 0.460912 +v -0.095821 -0.108578 0.468749 +v -0.104534 -0.110913 0.468749 +v -0.104534 -0.110913 0.460912 +v -0.110913 -0.104534 0.460912 +v -0.108578 -0.095821 0.460912 +v -0.099865 -0.093486 0.460912 +v -0.093486 -0.099865 0.460912 +v -0.093486 -0.099865 0.468749 +v -0.110913 -0.104534 0.468749 +v -0.108578 -0.095821 0.468749 +v -0.099865 -0.093486 0.468749 +v -0.108578 -0.095821 -0.460914 +v -0.108578 -0.095821 -0.468751 +v -0.110913 -0.104534 -0.468751 +v -0.110913 -0.104534 -0.460914 +v -0.104534 -0.110913 -0.460914 +v -0.095821 -0.108578 -0.460914 +v -0.093486 -0.099865 -0.460914 +v -0.099865 -0.093486 -0.460914 +v -0.099865 -0.093486 -0.468751 +v -0.104534 -0.110913 -0.468751 +v -0.095821 -0.108578 -0.468751 +v -0.093486 -0.099865 -0.468751 +v 0.009021 -0.144532 0.460912 +v 0.009021 -0.144532 0.468749 +v 0.004510 -0.152344 0.468749 +v 0.004510 -0.152344 0.460912 +v -0.004510 -0.152344 0.460912 +v -0.009021 -0.144532 0.460912 +v -0.004510 -0.136720 0.460912 +v 0.004510 -0.136720 0.460912 +v 0.004510 -0.136720 0.468749 +v -0.004510 -0.152344 0.468749 +v -0.009021 -0.144532 0.468749 +v -0.004510 -0.136720 0.468749 +v -0.009021 -0.144532 -0.460914 +v -0.009021 -0.144532 -0.468751 +v -0.004510 -0.152344 -0.468751 +v -0.004510 -0.152344 -0.460914 +v 0.004510 -0.152344 -0.460914 +v 0.009021 -0.144532 -0.460914 +v 0.004510 -0.136720 -0.460914 +v -0.004510 -0.136720 -0.460914 +v -0.004510 -0.136720 -0.468751 +v 0.004510 -0.152344 -0.468751 +v 0.009021 -0.144532 -0.468751 +v 0.004510 -0.136720 -0.468751 +v 0.108578 -0.095821 0.460912 +v 0.108578 -0.095821 0.468749 +v 0.110913 -0.104534 0.468749 +v 0.110913 -0.104534 0.460912 +v 0.104534 -0.110913 0.460912 +v 0.095821 -0.108578 0.460912 +v 0.093486 -0.099865 0.460912 +v 0.099865 -0.093486 0.460912 +v 0.099865 -0.093486 0.468749 +v 0.104534 -0.110913 0.468749 +v 0.095821 -0.108578 0.468749 +v 0.093486 -0.099865 0.468749 +v 0.095821 -0.108578 -0.460914 +v 0.095821 -0.108578 -0.468751 +v 0.104534 -0.110913 -0.468751 +v 0.104534 -0.110913 -0.460914 +v 0.110913 -0.104534 -0.460914 +v 0.108578 -0.095821 -0.460914 +v 0.099865 -0.093486 -0.460914 +v 0.093486 -0.099865 -0.460914 +v 0.093486 -0.099865 -0.468751 +v 0.110913 -0.104534 -0.468751 +v 0.108578 -0.095821 -0.468751 +v 0.099865 -0.093486 -0.468751 +v 0.144532 0.009021 0.460912 +v 0.144532 0.009021 0.468749 +v 0.152344 0.004510 0.468749 +v 0.152344 0.004510 0.460912 +v 0.152344 -0.004510 0.460912 +v 0.144532 -0.009021 0.460912 +v 0.136720 -0.004510 0.460912 +v 0.136720 0.004510 0.460912 +v 0.136720 0.004510 0.468749 +v 0.152344 -0.004510 0.468749 +v 0.144532 -0.009021 0.468749 +v 0.136720 -0.004510 0.468749 +v 0.144532 -0.009021 -0.460914 +v 0.144532 -0.009021 -0.468751 +v 0.152344 -0.004510 -0.468751 +v 0.152344 -0.004510 -0.460914 +v 0.152344 0.004510 -0.460914 +v 0.144532 0.009021 -0.460914 +v 0.136720 0.004510 -0.460914 +v 0.136720 -0.004510 -0.460914 +v 0.136720 -0.004510 -0.468751 +v 0.152344 0.004510 -0.468751 +v 0.144532 0.009021 -0.468751 +v 0.136720 0.004510 -0.468751 +v 0.095821 0.108578 0.460912 +v 0.095821 0.108578 0.468749 +v 0.104534 0.110913 0.468749 +v 0.104534 0.110913 0.460912 +v 0.110913 0.104534 0.460912 +v 0.108578 0.095821 0.460912 +v 0.099865 0.093486 0.460912 +v 0.093486 0.099865 0.460912 +v 0.093486 0.099865 0.468749 +v 0.110913 0.104534 0.468749 +v 0.108578 0.095821 0.468749 +v 0.099865 0.093486 0.468749 +v 0.108578 0.095821 -0.460914 +v 0.108578 0.095821 -0.468751 +v 0.110913 0.104534 -0.468751 +v 0.110913 0.104534 -0.460914 +v 0.104534 0.110913 -0.460914 +v 0.095821 0.108578 -0.460914 +v 0.093486 0.099865 -0.460914 +v 0.099865 0.093486 -0.460914 +v 0.099865 0.093486 -0.468751 +v 0.104534 0.110913 -0.468751 +v 0.095821 0.108578 -0.468751 +v 0.093486 0.099865 -0.468751 +v -0.009021 0.144532 0.460912 +v -0.009021 0.144532 0.468749 +v -0.004510 0.152344 0.468749 +v -0.004510 0.152344 0.460912 +v 0.004511 0.152344 0.460912 +v 0.009021 0.144532 0.460912 +v 0.004511 0.136720 0.460912 +v -0.004510 0.136720 0.460912 +v -0.004510 0.136720 0.468749 +v 0.004511 0.152344 0.468749 +v 0.009021 0.144532 0.468749 +v 0.004511 0.136720 0.468749 +v 0.009021 0.144532 -0.460914 +v 0.009021 0.144532 -0.468751 +v 0.004510 0.152344 -0.468751 +v 0.004510 0.152344 -0.460914 +v -0.004510 0.152344 -0.460914 +v -0.009021 0.144532 -0.460914 +v -0.004510 0.136720 -0.460914 +v 0.004510 0.136720 -0.460914 +v 0.004510 0.136720 -0.468751 +v -0.004510 0.152344 -0.468751 +v -0.009021 0.144532 -0.468751 +v -0.004510 0.136720 -0.468751 +v -0.008307 0.249999 0.031003 +v -0.008307 0.281249 0.031003 +v -0.022696 0.249999 0.022696 +v -0.022696 0.281249 0.022696 +v -0.031003 0.249999 0.008307 +v -0.031003 0.281249 0.008307 +v -0.031003 0.249999 -0.008307 +v -0.031003 0.281249 -0.008307 +v -0.022696 0.249999 -0.022696 +v -0.022696 0.281249 -0.022696 +v -0.008307 0.249999 -0.031003 +v -0.008307 0.281249 -0.031003 +v 0.008307 0.249999 -0.031003 +v 0.008307 0.281249 -0.031003 +v 0.022696 0.249999 -0.022696 +v 0.022696 0.281249 -0.022696 +v 0.031003 0.249999 -0.008307 +v 0.031003 0.281249 -0.008307 +v 0.031003 0.249999 0.008307 +v 0.031003 0.281249 0.008307 +v 0.022696 0.249999 0.022696 +v 0.022696 0.281249 0.022696 +v 0.008307 0.249999 0.031003 +v 0.008307 0.281249 0.031003 +v -0.004629 0.281250 0.047001 +v -0.006156 0.296747 0.062499 +v -0.005101 0.282008 0.051790 +v -0.005526 0.284210 0.056111 +v -0.005864 0.287638 0.059539 +v -0.006081 0.291958 0.061740 +v -0.004629 0.343750 0.047001 +v -0.006156 0.328252 0.062499 +v -0.005101 0.342991 0.051790 +v -0.005526 0.340790 0.056111 +v -0.005864 0.337362 0.059539 +v -0.006081 0.333041 0.061740 +v -0.013710 0.281250 0.045195 +v -0.018230 0.296747 0.060097 +v -0.015107 0.282008 0.049800 +v -0.016367 0.284210 0.053954 +v -0.017367 0.287638 0.057251 +v -0.018009 0.291958 0.059368 +v -0.013710 0.343750 0.045195 +v -0.018230 0.328252 0.060097 +v -0.015107 0.342991 0.049800 +v -0.016367 0.340790 0.053954 +v -0.017367 0.337362 0.057251 +v -0.018009 0.333041 0.059368 +v -0.022264 0.281250 0.041652 +v -0.029604 0.296747 0.055386 +v -0.024532 0.282008 0.045896 +v -0.026578 0.284210 0.049725 +v -0.028202 0.287638 0.052763 +v -0.029245 0.291958 0.054714 +v -0.022264 0.343750 0.041652 +v -0.029604 0.328252 0.055386 +v -0.024532 0.342991 0.045896 +v -0.026578 0.340790 0.049725 +v -0.028202 0.337362 0.052763 +v -0.029245 0.333041 0.054714 +v -0.029962 0.281250 0.036508 +v -0.039841 0.296747 0.048546 +v -0.033014 0.282008 0.040228 +v -0.035768 0.284210 0.043584 +v -0.037954 0.287638 0.046247 +v -0.039357 0.291958 0.047957 +v -0.029962 0.343750 0.036508 +v -0.039841 0.328252 0.048546 +v -0.033014 0.342991 0.040228 +v -0.035768 0.340790 0.043584 +v -0.037954 0.337362 0.046247 +v -0.039357 0.333041 0.047957 +v -0.036508 0.281250 0.029962 +v -0.048546 0.296747 0.039841 +v -0.040228 0.282008 0.033014 +v -0.043584 0.284210 0.035768 +v -0.046247 0.287638 0.037954 +v -0.047957 0.291958 0.039357 +v -0.036508 0.343750 0.029962 +v -0.048546 0.328252 0.039841 +v -0.040228 0.342991 0.033014 +v -0.043584 0.340790 0.035768 +v -0.046247 0.337362 0.037954 +v -0.047957 0.333041 0.039357 +v -0.041652 0.281250 0.022263 +v -0.055386 0.296747 0.029604 +v -0.045896 0.282008 0.024532 +v -0.049725 0.284210 0.026578 +v -0.052763 0.287638 0.028202 +v -0.054714 0.291958 0.029245 +v -0.041652 0.343750 0.022263 +v -0.055386 0.328252 0.029604 +v -0.045896 0.342991 0.024532 +v -0.049725 0.340790 0.026578 +v -0.052763 0.337362 0.028202 +v -0.054714 0.333041 0.029245 +v -0.045195 0.281250 0.013710 +v -0.060097 0.296747 0.018230 +v -0.049800 0.282008 0.015107 +v -0.053954 0.284210 0.016367 +v -0.057251 0.287638 0.017367 +v -0.059368 0.291958 0.018009 +v -0.045195 0.343750 0.013710 +v -0.060097 0.328252 0.018230 +v -0.049800 0.342991 0.015107 +v -0.053954 0.340790 0.016367 +v -0.057251 0.337362 0.017367 +v -0.059368 0.333041 0.018009 +v -0.047001 0.281250 0.004629 +v -0.062499 0.296747 0.006156 +v -0.051790 0.282008 0.005101 +v -0.056111 0.284210 0.005526 +v -0.059539 0.287638 0.005864 +v -0.061740 0.291958 0.006081 +v -0.047001 0.343750 0.004629 +v -0.062499 0.328252 0.006156 +v -0.051790 0.342991 0.005101 +v -0.056111 0.340790 0.005526 +v -0.059539 0.337362 0.005864 +v -0.061740 0.333041 0.006081 +v -0.047001 0.281250 -0.004629 +v -0.062499 0.296747 -0.006156 +v -0.051790 0.282008 -0.005101 +v -0.056111 0.284210 -0.005526 +v -0.059539 0.287638 -0.005864 +v -0.061740 0.291958 -0.006081 +v -0.047001 0.343750 -0.004629 +v -0.062499 0.328252 -0.006156 +v -0.051790 0.342991 -0.005101 +v -0.056111 0.340790 -0.005526 +v -0.059539 0.337362 -0.005864 +v -0.061740 0.333041 -0.006081 +v -0.045195 0.281250 -0.013710 +v -0.060097 0.296747 -0.018230 +v -0.049800 0.282008 -0.015107 +v -0.053954 0.284210 -0.016367 +v -0.057251 0.287638 -0.017367 +v -0.059368 0.291958 -0.018009 +v -0.045195 0.343750 -0.013710 +v -0.060097 0.328252 -0.018230 +v -0.049800 0.342991 -0.015107 +v -0.053954 0.340790 -0.016367 +v -0.057251 0.337362 -0.017367 +v -0.059368 0.333041 -0.018009 +v -0.041652 0.281250 -0.022264 +v -0.055386 0.296747 -0.029604 +v -0.045896 0.282008 -0.024532 +v -0.049725 0.284210 -0.026578 +v -0.052763 0.287638 -0.028202 +v -0.054714 0.291958 -0.029245 +v -0.041652 0.343750 -0.022264 +v -0.055386 0.328252 -0.029604 +v -0.045896 0.342991 -0.024532 +v -0.049725 0.340790 -0.026578 +v -0.052763 0.337362 -0.028202 +v -0.054714 0.333041 -0.029245 +v -0.036508 0.281250 -0.029962 +v -0.048546 0.296747 -0.039841 +v -0.040228 0.282008 -0.033014 +v -0.043584 0.284210 -0.035768 +v -0.046247 0.287638 -0.037954 +v -0.047957 0.291958 -0.039357 +v -0.036508 0.343750 -0.029962 +v -0.048546 0.328252 -0.039841 +v -0.040228 0.342991 -0.033014 +v -0.043584 0.340790 -0.035768 +v -0.046247 0.337362 -0.037954 +v -0.047957 0.333041 -0.039357 +v -0.029962 0.281250 -0.036508 +v -0.039841 0.296747 -0.048546 +v -0.033014 0.282008 -0.040228 +v -0.035768 0.284210 -0.043584 +v -0.037954 0.287638 -0.046247 +v -0.039357 0.291958 -0.047957 +v -0.029962 0.343750 -0.036508 +v -0.039841 0.328252 -0.048546 +v -0.033014 0.342991 -0.040228 +v -0.035768 0.340790 -0.043584 +v -0.037954 0.337362 -0.046247 +v -0.039357 0.333041 -0.047957 +v -0.022264 0.281250 -0.041652 +v -0.029604 0.296747 -0.055386 +v -0.024532 0.282008 -0.045896 +v -0.026578 0.284210 -0.049725 +v -0.028202 0.287638 -0.052763 +v -0.029245 0.291958 -0.054714 +v -0.022264 0.343750 -0.041652 +v -0.029604 0.328252 -0.055386 +v -0.024532 0.342991 -0.045896 +v -0.026578 0.340790 -0.049725 +v -0.028202 0.337362 -0.052763 +v -0.029245 0.333041 -0.054714 +v -0.013710 0.281250 -0.045195 +v -0.018230 0.296747 -0.060097 +v -0.015107 0.282008 -0.049800 +v -0.016367 0.284210 -0.053954 +v -0.017367 0.287638 -0.057251 +v -0.018009 0.291958 -0.059368 +v -0.013710 0.343750 -0.045195 +v -0.018230 0.328252 -0.060097 +v -0.015107 0.342991 -0.049800 +v -0.016367 0.340790 -0.053954 +v -0.017367 0.337362 -0.057251 +v -0.018009 0.333041 -0.059368 +v -0.004629 0.281250 -0.047001 +v -0.006156 0.296747 -0.062499 +v -0.005101 0.282008 -0.051790 +v -0.005526 0.284210 -0.056111 +v -0.005864 0.287638 -0.059539 +v -0.006081 0.291958 -0.061740 +v -0.004629 0.343750 -0.047001 +v -0.006156 0.328252 -0.062499 +v -0.005101 0.342991 -0.051790 +v -0.005526 0.340790 -0.056111 +v -0.005864 0.337362 -0.059539 +v -0.006081 0.333041 -0.061740 +v 0.004629 0.281250 -0.047001 +v 0.006156 0.296747 -0.062499 +v 0.005101 0.282008 -0.051790 +v 0.005526 0.284210 -0.056111 +v 0.005864 0.287638 -0.059539 +v 0.006081 0.291958 -0.061740 +v 0.004629 0.343750 -0.047001 +v 0.006156 0.328252 -0.062499 +v 0.005101 0.342991 -0.051790 +v 0.005526 0.340790 -0.056111 +v 0.005864 0.337362 -0.059539 +v 0.006081 0.333041 -0.061740 +v 0.014490 0.281250 -0.045040 +v 0.018230 0.296747 -0.060097 +v 0.015646 0.282008 -0.049693 +v 0.016688 0.284210 -0.053890 +v 0.017516 0.287638 -0.057221 +v 0.018047 0.291958 -0.059360 +v 0.014490 0.343750 -0.045040 +v 0.018230 0.328252 -0.060097 +v 0.015646 0.342991 -0.049693 +v 0.016688 0.340790 -0.053890 +v 0.017516 0.337362 -0.057221 +v 0.018047 0.333041 -0.059360 +v 0.014490 0.281250 0.045040 +v 0.018230 0.296747 0.060097 +v 0.015646 0.282008 0.049693 +v 0.016688 0.284210 0.053890 +v 0.017516 0.287638 0.057221 +v 0.018047 0.291958 0.059360 +v 0.014490 0.343750 0.045040 +v 0.018230 0.328252 0.060097 +v 0.015646 0.342991 0.049693 +v 0.016688 0.340790 0.053890 +v 0.017516 0.337362 0.057221 +v 0.018047 0.333041 0.059360 +v 0.004629 0.281250 0.047001 +v 0.006156 0.296747 0.062499 +v 0.005101 0.282008 0.051790 +v 0.005526 0.284210 0.056111 +v 0.005864 0.287638 0.059539 +v 0.006081 0.291958 0.061740 +v 0.004629 0.343750 0.047001 +v 0.006156 0.328252 0.062499 +v 0.005101 0.342991 0.051790 +v 0.005526 0.340790 0.056111 +v 0.005864 0.337362 0.059539 +v 0.006081 0.333041 0.061740 +v 0.323211 0.281250 -0.040589 +v 0.324445 0.296747 -0.056053 +v 0.323592 0.282008 -0.045368 +v 0.323937 0.284210 -0.049679 +v 0.324210 0.287638 -0.053100 +v 0.324385 0.291958 -0.055296 +v 0.359503 0.281250 -0.003958 +v 0.375000 0.296747 -0.004827 +v 0.364292 0.282008 -0.004226 +v 0.368612 0.284210 -0.004468 +v 0.372040 0.287638 -0.004661 +v 0.374242 0.291958 -0.004784 +v 0.332037 0.281250 -0.039478 +v 0.335695 0.296747 -0.054637 +v 0.333167 0.282008 -0.044162 +v 0.334187 0.284210 -0.048388 +v 0.334996 0.287638 -0.051742 +v 0.335516 0.291958 -0.053895 +v 0.339466 0.281250 -0.036780 +v 0.346380 0.296747 -0.050757 +v 0.341602 0.282008 -0.041099 +v 0.343530 0.284210 -0.044995 +v 0.345060 0.287638 -0.048087 +v 0.346042 0.291958 -0.050073 +v 0.346146 0.281250 -0.032494 +v 0.355966 0.296747 -0.044607 +v 0.349180 0.282008 -0.036237 +v 0.351918 0.284210 -0.039614 +v 0.354090 0.287638 -0.042293 +v 0.355485 0.291958 -0.044014 +v 0.351729 0.281250 -0.026837 +v 0.363971 0.296747 -0.036495 +v 0.355512 0.282008 -0.029821 +v 0.358924 0.284210 -0.032514 +v 0.361633 0.287638 -0.034651 +v 0.363371 0.291958 -0.036023 +v 0.355927 0.281250 -0.020100 +v 0.369993 0.296747 -0.026830 +v 0.360274 0.282008 -0.022180 +v 0.364195 0.284210 -0.024056 +v 0.367307 0.287638 -0.025544 +v 0.369305 0.291958 -0.026500 +v 0.358526 0.281250 -0.012636 +v 0.373732 0.296747 -0.016094 +v 0.363225 0.282008 -0.013705 +v 0.367464 0.284210 -0.014669 +v 0.370828 0.287638 -0.015433 +v 0.372988 0.291958 -0.015925 +v 0.359503 0.343750 -0.003958 +v 0.375000 0.328252 -0.004827 +v 0.364292 0.342991 -0.004226 +v 0.368612 0.340790 -0.004468 +v 0.372040 0.337362 -0.004661 +v 0.374242 0.333041 -0.004784 +v 0.323211 0.343750 -0.040589 +v 0.324445 0.328252 -0.056053 +v 0.323592 0.342991 -0.045368 +v 0.323937 0.340790 -0.049679 +v 0.324210 0.337362 -0.053100 +v 0.324385 0.333041 -0.055296 +v 0.358526 0.343750 -0.012636 +v 0.373732 0.328252 -0.016094 +v 0.363225 0.342991 -0.013705 +v 0.367464 0.340790 -0.014669 +v 0.370828 0.337362 -0.015433 +v 0.372988 0.333041 -0.015925 +v 0.355927 0.343750 -0.020100 +v 0.369993 0.328252 -0.026830 +v 0.360274 0.342991 -0.022180 +v 0.364195 0.340790 -0.024056 +v 0.367307 0.337362 -0.025544 +v 0.369305 0.333041 -0.026500 +v 0.351729 0.343750 -0.026837 +v 0.363971 0.328252 -0.036495 +v 0.355512 0.342991 -0.029821 +v 0.358924 0.340790 -0.032514 +v 0.361633 0.337362 -0.034651 +v 0.363371 0.333041 -0.036023 +v 0.346146 0.343750 -0.032494 +v 0.355966 0.328252 -0.044607 +v 0.349180 0.342991 -0.036237 +v 0.351918 0.340790 -0.039614 +v 0.354090 0.337362 -0.042293 +v 0.355485 0.333041 -0.044014 +v 0.339466 0.343750 -0.036780 +v 0.346380 0.328252 -0.050757 +v 0.341602 0.342991 -0.041099 +v 0.343530 0.340790 -0.044995 +v 0.345060 0.337362 -0.048087 +v 0.346042 0.333041 -0.050073 +v 0.332037 0.343750 -0.039478 +v 0.335695 0.328252 -0.054637 +v 0.333167 0.342991 -0.044162 +v 0.334187 0.340790 -0.048388 +v 0.334996 0.337362 -0.051742 +v 0.335516 0.333041 -0.053895 +v 0.359503 0.281250 0.003958 +v 0.375000 0.296747 0.004827 +v 0.364292 0.282008 0.004226 +v 0.368612 0.284210 0.004468 +v 0.372040 0.287638 0.004661 +v 0.374242 0.291958 0.004784 +v 0.323211 0.281250 0.040589 +v 0.324445 0.296747 0.056053 +v 0.323592 0.282008 0.045368 +v 0.323937 0.284210 0.049679 +v 0.324210 0.287638 0.053100 +v 0.324385 0.291958 0.055296 +v 0.358526 0.281250 0.012636 +v 0.373732 0.296747 0.016094 +v 0.363225 0.282008 0.013705 +v 0.367464 0.284210 0.014669 +v 0.370828 0.287638 0.015434 +v 0.372988 0.291958 0.015925 +v 0.355927 0.281250 0.020100 +v 0.369993 0.296747 0.026830 +v 0.360274 0.282008 0.022180 +v 0.364195 0.284210 0.024056 +v 0.367307 0.287638 0.025544 +v 0.369305 0.291958 0.026500 +v 0.351729 0.281250 0.026837 +v 0.363971 0.296747 0.036495 +v 0.355512 0.282008 0.029821 +v 0.358924 0.284210 0.032514 +v 0.361633 0.287638 0.034651 +v 0.363371 0.291958 0.036023 +v 0.346146 0.281250 0.032494 +v 0.355966 0.296747 0.044607 +v 0.349180 0.282008 0.036237 +v 0.351918 0.284210 0.039614 +v 0.354090 0.287638 0.042293 +v 0.355485 0.291958 0.044014 +v 0.339466 0.281250 0.036780 +v 0.346380 0.296747 0.050757 +v 0.341602 0.282008 0.041099 +v 0.343530 0.284210 0.044995 +v 0.345060 0.287638 0.048087 +v 0.346042 0.291958 0.050073 +v 0.332037 0.281250 0.039478 +v 0.335695 0.296747 0.054637 +v 0.333167 0.282008 0.044162 +v 0.334187 0.284210 0.048388 +v 0.334996 0.287638 0.051742 +v 0.335516 0.291958 0.053895 +v 0.323211 0.343750 0.040589 +v 0.324445 0.328252 0.056053 +v 0.323592 0.342991 0.045368 +v 0.323937 0.340790 0.049679 +v 0.324210 0.337362 0.053100 +v 0.324385 0.333041 0.055296 +v 0.359503 0.343750 0.003958 +v 0.375000 0.328252 0.004827 +v 0.364292 0.342991 0.004226 +v 0.368612 0.340790 0.004468 +v 0.372040 0.337362 0.004661 +v 0.374242 0.333041 0.004784 +v 0.332037 0.343750 0.039478 +v 0.335695 0.328252 0.054637 +v 0.333167 0.342991 0.044162 +v 0.334187 0.340790 0.048388 +v 0.334996 0.337362 0.051742 +v 0.335516 0.333041 0.053895 +v 0.339466 0.343750 0.036780 +v 0.346380 0.328252 0.050757 +v 0.341602 0.342991 0.041099 +v 0.343530 0.340790 0.044995 +v 0.345060 0.337362 0.048087 +v 0.346042 0.333041 0.050073 +v 0.346146 0.343750 0.032494 +v 0.355966 0.328252 0.044607 +v 0.349180 0.342991 0.036237 +v 0.351918 0.340790 0.039614 +v 0.354090 0.337362 0.042293 +v 0.355485 0.333041 0.044014 +v 0.351729 0.343750 0.026837 +v 0.363971 0.328252 0.036495 +v 0.355512 0.342991 0.029821 +v 0.358924 0.340790 0.032514 +v 0.361633 0.337362 0.034651 +v 0.363371 0.333041 0.036023 +v 0.355927 0.343750 0.020100 +v 0.369993 0.328252 0.026830 +v 0.360274 0.342991 0.022180 +v 0.364195 0.340790 0.024056 +v 0.367307 0.337362 0.025544 +v 0.369305 0.333041 0.026500 +v 0.358526 0.343750 0.012636 +v 0.373732 0.328252 0.016094 +v 0.363225 0.342991 0.013705 +v 0.367464 0.340790 0.014669 +v 0.370828 0.337362 0.015433 +v 0.372988 0.333041 0.015925 +v 0.219651 0.343750 0.036895 +v 0.218008 0.328252 0.052305 +v 0.219143 0.342991 0.041657 +v 0.218685 0.340790 0.045952 +v 0.218322 0.337362 0.049362 +v 0.218088 0.333041 0.051551 +v 0.311965 0.343750 0.040972 +v 0.312492 0.328252 0.056461 +v 0.312128 0.342991 0.045758 +v 0.312275 0.340790 0.050076 +v 0.312391 0.337362 0.053502 +v 0.312466 0.333041 0.055702 +v 0.230936 0.343750 0.038102 +v 0.229673 0.328252 0.053548 +v 0.230545 0.342991 0.042875 +v 0.230193 0.340790 0.047181 +v 0.229914 0.337362 0.050598 +v 0.229735 0.333041 0.052792 +v 0.244087 0.343750 0.039181 +v 0.243130 0.328252 0.054649 +v 0.243791 0.342991 0.043961 +v 0.243524 0.340790 0.048272 +v 0.243312 0.337362 0.051694 +v 0.243177 0.333041 0.053891 +v 0.258385 0.343750 0.040068 +v 0.257704 0.328252 0.055550 +v 0.258175 0.342991 0.044852 +v 0.257985 0.340790 0.049168 +v 0.257834 0.337362 0.052593 +v 0.257737 0.333041 0.054793 +v 0.273069 0.343750 0.040716 +v 0.272665 0.328252 0.056208 +v 0.272944 0.342991 0.045504 +v 0.272832 0.340790 0.049822 +v 0.272742 0.337362 0.053250 +v 0.272685 0.333041 0.055450 +v 0.287360 0.343750 0.041093 +v 0.287262 0.328252 0.056590 +v 0.287330 0.342991 0.045881 +v 0.287302 0.340790 0.050201 +v 0.287281 0.337362 0.053630 +v 0.287267 0.333041 0.055831 +v 0.300480 0.343750 0.041180 +v 0.300763 0.328252 0.056675 +v 0.300567 0.342991 0.045968 +v 0.300646 0.340790 0.050288 +v 0.300709 0.337362 0.053716 +v 0.300749 0.333041 0.055917 +v 0.312209 0.281250 0.040966 +v 0.312492 0.296747 0.056461 +v 0.312296 0.282008 0.045754 +v 0.312375 0.284210 0.050073 +v 0.312438 0.287638 0.053501 +v 0.312478 0.291958 0.055702 +v 0.219893 0.281250 0.036922 +v 0.218008 0.296747 0.052305 +v 0.219311 0.282008 0.041676 +v 0.218785 0.284210 0.045964 +v 0.218368 0.287638 0.049367 +v 0.218100 0.291958 0.051552 +v 0.300861 0.281250 0.041178 +v 0.300763 0.296747 0.056675 +v 0.300831 0.282008 0.045967 +v 0.300804 0.284210 0.050287 +v 0.300782 0.287638 0.053715 +v 0.300768 0.291958 0.055917 +v 0.287667 0.281250 0.041097 +v 0.287262 0.296747 0.056590 +v 0.287542 0.282008 0.045885 +v 0.287429 0.284210 0.050204 +v 0.287339 0.287638 0.053631 +v 0.287282 0.291958 0.055831 +v 0.273346 0.281250 0.040726 +v 0.272665 0.296747 0.056208 +v 0.273135 0.282008 0.045510 +v 0.272945 0.284210 0.049826 +v 0.272795 0.287638 0.053251 +v 0.272698 0.291958 0.055451 +v 0.258661 0.281250 0.040082 +v 0.257704 0.296747 0.055550 +v 0.258365 0.282008 0.044862 +v 0.258098 0.284210 0.049174 +v 0.257887 0.287638 0.052596 +v 0.257751 0.291958 0.054793 +v 0.244393 0.281250 0.039203 +v 0.243130 0.296747 0.054649 +v 0.244002 0.282008 0.043976 +v 0.243650 0.284210 0.048282 +v 0.243371 0.287638 0.051699 +v 0.243192 0.291958 0.053893 +v 0.231316 0.281250 0.038138 +v 0.229673 0.296747 0.053548 +v 0.230808 0.282008 0.042900 +v 0.230350 0.284210 0.047196 +v 0.229987 0.287638 0.050605 +v 0.229753 0.291958 0.052794 +v 0.312209 0.343750 -0.040966 +v 0.312492 0.328252 -0.056460 +v 0.312296 0.342991 -0.045754 +v 0.312375 0.340790 -0.050073 +v 0.312438 0.337362 -0.053501 +v 0.312478 0.333041 -0.055702 +v 0.219894 0.343750 -0.036922 +v 0.218008 0.328252 -0.052305 +v 0.219311 0.342991 -0.041676 +v 0.218785 0.340790 -0.045964 +v 0.218368 0.337362 -0.049367 +v 0.218100 0.333041 -0.051552 +v 0.300862 0.343750 -0.041178 +v 0.300763 0.328252 -0.056675 +v 0.300831 0.342991 -0.045967 +v 0.300804 0.340790 -0.050287 +v 0.300782 0.337362 -0.053715 +v 0.300768 0.333041 -0.055917 +v 0.287667 0.343750 -0.041097 +v 0.287262 0.328252 -0.056590 +v 0.287542 0.342991 -0.045885 +v 0.287429 0.340790 -0.050204 +v 0.287339 0.337362 -0.053631 +v 0.287282 0.333041 -0.055831 +v 0.273346 0.343750 -0.040726 +v 0.272665 0.328252 -0.056208 +v 0.273135 0.342991 -0.045510 +v 0.272945 0.340790 -0.049826 +v 0.272795 0.337362 -0.053251 +v 0.272698 0.333041 -0.055451 +v 0.258661 0.343750 -0.040082 +v 0.257704 0.328252 -0.055550 +v 0.258365 0.342991 -0.044862 +v 0.258098 0.340790 -0.049174 +v 0.257887 0.337362 -0.052596 +v 0.257751 0.333041 -0.054793 +v 0.244393 0.343750 -0.039203 +v 0.243130 0.328252 -0.054649 +v 0.244002 0.342991 -0.043976 +v 0.243650 0.340790 -0.048282 +v 0.243371 0.337362 -0.051699 +v 0.243192 0.333041 -0.053893 +v 0.231316 0.343750 -0.038138 +v 0.229673 0.328252 -0.053548 +v 0.230808 0.342991 -0.042900 +v 0.230350 0.340790 -0.047196 +v 0.229987 0.337362 -0.050605 +v 0.229753 0.333041 -0.052794 +v 0.219651 0.281250 -0.036895 +v 0.218008 0.296747 -0.052305 +v 0.219143 0.282008 -0.041657 +v 0.218685 0.284210 -0.045952 +v 0.218322 0.287638 -0.049362 +v 0.218089 0.291958 -0.051551 +v 0.311965 0.281250 -0.040972 +v 0.312492 0.296747 -0.056460 +v 0.312128 0.282008 -0.045758 +v 0.312275 0.284210 -0.050076 +v 0.312391 0.287638 -0.053502 +v 0.312466 0.291958 -0.055702 +v 0.230936 0.281250 -0.038102 +v 0.229673 0.296747 -0.053548 +v 0.230546 0.282008 -0.042875 +v 0.230193 0.284210 -0.047181 +v 0.229914 0.287638 -0.050598 +v 0.229735 0.291958 -0.052792 +v 0.244087 0.281250 -0.039181 +v 0.243130 0.296747 -0.054649 +v 0.243791 0.282008 -0.043961 +v 0.243524 0.284210 -0.048272 +v 0.243313 0.287638 -0.051694 +v 0.243177 0.291958 -0.053891 +v 0.258385 0.281250 -0.040068 +v 0.257704 0.296747 -0.055550 +v 0.258175 0.282008 -0.044852 +v 0.257985 0.284210 -0.049168 +v 0.257834 0.287638 -0.052593 +v 0.257737 0.291958 -0.054793 +v 0.273070 0.281250 -0.040716 +v 0.272665 0.296747 -0.056208 +v 0.272944 0.282008 -0.045503 +v 0.272832 0.284210 -0.049822 +v 0.272742 0.287638 -0.053250 +v 0.272685 0.291958 -0.055450 +v 0.287360 0.281250 -0.041093 +v 0.287262 0.296747 -0.056590 +v 0.287330 0.282008 -0.045881 +v 0.287302 0.284210 -0.050201 +v 0.287281 0.287638 -0.053630 +v 0.287267 0.291958 -0.055831 +v 0.300480 0.281250 -0.041180 +v 0.300763 0.296747 -0.056675 +v 0.300567 0.282008 -0.045968 +v 0.300647 0.284210 -0.050288 +v 0.300709 0.287638 -0.053716 +v 0.300750 0.291958 -0.055917 +v 0.126339 0.281250 0.025464 +v 0.124954 0.296747 0.040899 +v 0.125911 0.282008 0.030234 +v 0.125525 0.284210 0.034537 +v 0.125218 0.287638 0.037951 +v 0.125022 0.291958 0.040144 +v 0.061222 0.281250 0.031063 +v 0.065663 0.296747 0.045911 +v 0.062594 0.282008 0.035651 +v 0.063832 0.284210 0.039791 +v 0.064815 0.287638 0.043075 +v 0.065446 0.291958 0.045184 +v 0.120244 0.281250 0.024917 +v 0.119272 0.296747 0.040389 +v 0.119944 0.282008 0.029698 +v 0.119673 0.284210 0.034011 +v 0.119458 0.287638 0.037434 +v 0.119320 0.291958 0.039632 +v 0.113093 0.281250 0.024660 +v 0.112879 0.296747 0.040160 +v 0.113027 0.282008 0.029450 +v 0.112967 0.284210 0.033771 +v 0.112920 0.287638 0.037200 +v 0.112889 0.291958 0.039401 +v 0.105535 0.281250 0.024723 +v 0.105967 0.296747 0.040217 +v 0.105669 0.282008 0.029511 +v 0.105789 0.284210 0.033830 +v 0.105885 0.287638 0.037258 +v 0.105946 0.291958 0.039459 +v 0.097727 0.281250 0.025094 +v 0.098748 0.296747 0.040560 +v 0.098043 0.282008 0.029873 +v 0.098327 0.284210 0.034184 +v 0.098553 0.287638 0.037606 +v 0.098698 0.291958 0.039803 +v 0.089850 0.281250 0.025759 +v 0.091440 0.296747 0.041178 +v 0.090341 0.282008 0.030524 +v 0.090784 0.284210 0.034822 +v 0.091136 0.287638 0.038233 +v 0.091362 0.291958 0.040423 +v 0.082091 0.281250 0.026705 +v 0.084265 0.296747 0.042052 +v 0.082763 0.282008 0.031447 +v 0.083369 0.284210 0.035725 +v 0.083850 0.287638 0.039121 +v 0.084159 0.291958 0.041300 +v 0.074630 0.281250 0.027911 +v 0.077442 0.296747 0.043155 +v 0.075499 0.282008 0.032622 +v 0.076283 0.284210 0.036871 +v 0.076905 0.287638 0.040244 +v 0.077305 0.291958 0.042409 +v 0.067623 0.281250 0.029365 +v 0.071178 0.296747 0.044455 +v 0.068722 0.282008 0.034028 +v 0.069713 0.284210 0.038234 +v 0.070499 0.287638 0.041573 +v 0.071004 0.291958 0.043716 +v 0.126339 0.343750 -0.025464 +v 0.124954 0.328252 -0.040899 +v 0.125911 0.342991 -0.030234 +v 0.125525 0.340790 -0.034537 +v 0.125218 0.337362 -0.037951 +v 0.125022 0.333041 -0.040144 +v 0.061222 0.343750 -0.031063 +v 0.065663 0.328252 -0.045911 +v 0.062595 0.342991 -0.035651 +v 0.063832 0.340790 -0.039791 +v 0.064815 0.337362 -0.043075 +v 0.065446 0.333041 -0.045184 +v 0.120244 0.343750 -0.024917 +v 0.119272 0.328252 -0.040389 +v 0.119944 0.342991 -0.029698 +v 0.119673 0.340790 -0.034011 +v 0.119458 0.337362 -0.037434 +v 0.119320 0.333041 -0.039632 +v 0.113093 0.343750 -0.024660 +v 0.112879 0.328252 -0.040160 +v 0.113027 0.342991 -0.029450 +v 0.112967 0.340790 -0.033771 +v 0.112920 0.337362 -0.037200 +v 0.112889 0.333041 -0.039401 +v 0.105535 0.343750 -0.024723 +v 0.105967 0.328252 -0.040217 +v 0.105669 0.342991 -0.029511 +v 0.105789 0.340790 -0.033830 +v 0.105885 0.337362 -0.037258 +v 0.105946 0.333041 -0.039459 +v 0.097728 0.343750 -0.025094 +v 0.098748 0.328252 -0.040560 +v 0.098043 0.342991 -0.029873 +v 0.098327 0.340790 -0.034184 +v 0.098553 0.337362 -0.037606 +v 0.098698 0.333041 -0.039803 +v 0.089850 0.343750 -0.025759 +v 0.091440 0.328252 -0.041178 +v 0.090341 0.342991 -0.030524 +v 0.090785 0.340790 -0.034822 +v 0.091136 0.337362 -0.038233 +v 0.091362 0.333041 -0.040423 +v 0.082091 0.343750 -0.026705 +v 0.084265 0.328252 -0.042052 +v 0.082763 0.342991 -0.031447 +v 0.083369 0.340790 -0.035725 +v 0.083850 0.337362 -0.039121 +v 0.084159 0.333041 -0.041300 +v 0.074630 0.343750 -0.027911 +v 0.077442 0.328252 -0.043155 +v 0.075499 0.342991 -0.032622 +v 0.076283 0.340790 -0.036871 +v 0.076905 0.337362 -0.040244 +v 0.077305 0.333041 -0.042409 +v 0.067623 0.343750 -0.029365 +v 0.071178 0.328252 -0.044455 +v 0.068722 0.342991 -0.034028 +v 0.069713 0.340790 -0.038234 +v 0.070499 0.337362 -0.041573 +v 0.071004 0.333041 -0.043716 +v 0.061707 0.281250 -0.030927 +v 0.065663 0.296747 -0.045911 +v 0.062929 0.282008 -0.035557 +v 0.064032 0.284210 -0.039734 +v 0.064907 0.287638 -0.043049 +v 0.065469 0.291958 -0.045178 +v 0.126839 0.281250 -0.025517 +v 0.124954 0.296747 -0.040899 +v 0.126257 0.282008 -0.030270 +v 0.125731 0.284210 -0.034558 +v 0.125314 0.287638 -0.037962 +v 0.125046 0.291958 -0.040146 +v 0.067623 0.281250 -0.029365 +v 0.071178 0.296747 -0.044455 +v 0.068722 0.282008 -0.034028 +v 0.069713 0.284210 -0.038234 +v 0.070499 0.287638 -0.041573 +v 0.071004 0.291958 -0.043716 +v 0.074630 0.281250 -0.027911 +v 0.077442 0.296747 -0.043155 +v 0.075499 0.282008 -0.032622 +v 0.076283 0.284210 -0.036871 +v 0.076905 0.287638 -0.040244 +v 0.077305 0.291958 -0.042409 +v 0.082091 0.281250 -0.026705 +v 0.084265 0.296747 -0.042052 +v 0.082763 0.282008 -0.031447 +v 0.083369 0.284210 -0.035725 +v 0.083850 0.287638 -0.039121 +v 0.084159 0.291958 -0.041300 +v 0.089850 0.281250 -0.025759 +v 0.091440 0.296747 -0.041178 +v 0.090341 0.282008 -0.030524 +v 0.090785 0.284210 -0.034822 +v 0.091136 0.287638 -0.038233 +v 0.091362 0.291958 -0.040423 +v 0.097728 0.281250 -0.025094 +v 0.098748 0.296747 -0.040560 +v 0.098043 0.282008 -0.029873 +v 0.098327 0.284210 -0.034184 +v 0.098553 0.287638 -0.037606 +v 0.098698 0.291958 -0.039803 +v 0.105535 0.281250 -0.024723 +v 0.105967 0.296747 -0.040217 +v 0.105669 0.282008 -0.029511 +v 0.105789 0.284210 -0.033830 +v 0.105885 0.287638 -0.037258 +v 0.105946 0.291958 -0.039459 +v 0.113093 0.281250 -0.024660 +v 0.112879 0.296747 -0.040160 +v 0.113027 0.282008 -0.029450 +v 0.112967 0.284210 -0.033771 +v 0.112920 0.287638 -0.037200 +v 0.112889 0.291958 -0.039401 +v 0.120244 0.281250 -0.024917 +v 0.119272 0.296747 -0.040389 +v 0.119944 0.282008 -0.029698 +v 0.119673 0.284210 -0.034011 +v 0.119458 0.287638 -0.037434 +v 0.119320 0.291958 -0.039632 +v 0.061707 0.343750 0.030927 +v 0.065663 0.328252 0.045911 +v 0.062929 0.342991 0.035557 +v 0.064032 0.340790 0.039734 +v 0.064907 0.337362 0.043049 +v 0.065469 0.333041 0.045178 +v 0.126839 0.343750 0.025517 +v 0.124954 0.328252 0.040899 +v 0.126256 0.342991 0.030270 +v 0.125731 0.340790 0.034558 +v 0.125314 0.337362 0.037962 +v 0.125046 0.333041 0.040146 +v 0.067623 0.343750 0.029365 +v 0.071178 0.328252 0.044455 +v 0.068722 0.342991 0.034028 +v 0.069713 0.340790 0.038234 +v 0.070499 0.337362 0.041573 +v 0.071004 0.333041 0.043716 +v 0.074630 0.343750 0.027911 +v 0.077442 0.328252 0.043155 +v 0.075499 0.342991 0.032622 +v 0.076283 0.340790 0.036871 +v 0.076905 0.337362 0.040244 +v 0.077305 0.333041 0.042409 +v 0.082091 0.343750 0.026705 +v 0.084265 0.328252 0.042052 +v 0.082763 0.342991 0.031447 +v 0.083369 0.340790 0.035725 +v 0.083850 0.337362 0.039121 +v 0.084159 0.333041 0.041300 +v 0.089850 0.343750 0.025759 +v 0.091440 0.328252 0.041178 +v 0.090341 0.342991 0.030524 +v 0.090784 0.340790 0.034822 +v 0.091136 0.337362 0.038233 +v 0.091362 0.333041 0.040423 +v 0.097727 0.343750 0.025094 +v 0.098748 0.328252 0.040560 +v 0.098043 0.342991 0.029873 +v 0.098327 0.340790 0.034184 +v 0.098553 0.337362 0.037606 +v 0.098698 0.333041 0.039803 +v 0.105535 0.343750 0.024723 +v 0.105967 0.328252 0.040217 +v 0.105669 0.342991 0.029511 +v 0.105789 0.340790 0.033830 +v 0.105885 0.337362 0.037258 +v 0.105946 0.333041 0.039459 +v 0.113093 0.343750 0.024660 +v 0.112879 0.328252 0.040160 +v 0.113027 0.342991 0.029450 +v 0.112967 0.340790 0.033771 +v 0.112920 0.337362 0.037200 +v 0.112889 0.333041 0.039401 +v 0.120244 0.343750 0.024917 +v 0.119272 0.328252 0.040389 +v 0.119944 0.342991 0.029698 +v 0.119673 0.340790 0.034011 +v 0.119458 0.337362 0.037434 +v 0.119320 0.333041 0.039632 +v 0.141506 0.250000 0.168201 +v 0.146099 0.168201 0.250000 +v 0.142694 0.247213 0.189372 +v 0.143802 0.239041 0.209100 +v 0.144754 0.226042 0.226042 +v 0.145484 0.209100 0.239041 +v 0.145943 0.189372 0.247213 +v 0.168201 0.250000 0.141505 +v 0.250000 0.168201 0.146099 +v 0.189372 0.247213 0.142694 +v 0.209100 0.239041 0.143802 +v 0.226042 0.226042 0.144754 +v 0.239041 0.209100 0.145484 +v 0.247213 0.189372 0.145943 +v 0.150902 0.250000 0.167142 +v 0.169219 0.168201 0.247395 +v 0.155643 0.247213 0.187913 +v 0.160061 0.239041 0.207268 +v 0.163854 0.226042 0.223889 +v 0.166765 0.209100 0.236643 +v 0.168595 0.189372 0.244660 +v 0.155464 0.250000 0.165546 +v 0.191180 0.168201 0.239711 +v 0.164708 0.247213 0.184741 +v 0.173322 0.239041 0.202628 +v 0.180719 0.226042 0.217988 +v 0.186395 0.209100 0.229774 +v 0.189963 0.189372 0.237183 +v 0.159557 0.250000 0.162974 +v 0.210880 0.168201 0.227332 +v 0.172840 0.247213 0.179631 +v 0.185218 0.239041 0.195153 +v 0.195848 0.226042 0.208482 +v 0.204004 0.209100 0.218710 +v 0.209132 0.189372 0.225139 +v 0.162974 0.250000 0.159557 +v 0.227332 0.168201 0.210880 +v 0.179631 0.247213 0.172840 +v 0.195153 0.239041 0.185218 +v 0.208482 0.226042 0.195848 +v 0.218710 0.209100 0.204004 +v 0.225139 0.189372 0.209131 +v 0.165546 0.250000 0.155464 +v 0.239711 0.168201 0.191180 +v 0.184741 0.247213 0.164708 +v 0.202628 0.239041 0.173322 +v 0.217988 0.226042 0.180719 +v 0.229774 0.209100 0.186395 +v 0.237183 0.189372 0.189963 +v 0.167142 0.250000 0.150902 +v 0.247395 0.168201 0.169219 +v 0.187913 0.247213 0.155643 +v 0.207268 0.239041 0.160061 +v 0.223889 0.226042 0.163854 +v 0.236643 0.209100 0.166765 +v 0.244660 0.189372 0.168595 +v -0.168201 0.250000 0.141506 +v -0.250000 0.168201 0.146099 +v -0.189372 0.247213 0.142694 +v -0.209100 0.239041 0.143802 +v -0.226042 0.226042 0.144754 +v -0.239041 0.209100 0.145484 +v -0.247213 0.189372 0.145943 +v -0.141506 0.250000 0.168201 +v -0.146099 0.168201 0.250000 +v -0.142694 0.247213 0.189372 +v -0.143802 0.239041 0.209100 +v -0.144754 0.226042 0.226042 +v -0.145484 0.209100 0.239041 +v -0.145943 0.189372 0.247213 +v -0.167142 0.250000 0.150902 +v -0.247395 0.168201 0.169219 +v -0.187913 0.247213 0.155643 +v -0.207269 0.239041 0.160061 +v -0.223889 0.226042 0.163854 +v -0.236643 0.209100 0.166765 +v -0.244660 0.189372 0.168595 +v -0.165546 0.250000 0.155464 +v -0.239711 0.168201 0.191180 +v -0.184741 0.247213 0.164708 +v -0.202628 0.239041 0.173322 +v -0.217988 0.226042 0.180719 +v -0.229774 0.209100 0.186395 +v -0.237183 0.189372 0.189963 +v -0.162974 0.250000 0.159557 +v -0.227332 0.168201 0.210880 +v -0.179631 0.247213 0.172840 +v -0.195153 0.239041 0.185218 +v -0.208482 0.226042 0.195848 +v -0.218710 0.209100 0.204004 +v -0.225139 0.189372 0.209132 +v -0.159557 0.250000 0.162974 +v -0.210880 0.168201 0.227332 +v -0.172840 0.247213 0.179631 +v -0.185218 0.239041 0.195153 +v -0.195848 0.226042 0.208482 +v -0.204004 0.209100 0.218710 +v -0.209132 0.189372 0.225139 +v -0.155464 0.250000 0.165546 +v -0.191180 0.168201 0.239711 +v -0.164708 0.247213 0.184741 +v -0.173322 0.239041 0.202628 +v -0.180719 0.226042 0.217988 +v -0.186395 0.209100 0.229774 +v -0.189963 0.189372 0.237183 +v -0.150902 0.250000 0.167142 +v -0.169219 0.168201 0.247395 +v -0.155643 0.247213 0.187913 +v -0.160061 0.239041 0.207268 +v -0.163854 0.226042 0.223889 +v -0.166765 0.209100 0.236643 +v -0.168595 0.189372 0.244660 +v -0.141505 -0.250000 0.168201 +v -0.146099 -0.168201 0.250000 +v -0.142694 -0.247213 0.189372 +v -0.143802 -0.239041 0.209100 +v -0.144754 -0.226042 0.226042 +v -0.145484 -0.209100 0.239041 +v -0.145943 -0.189372 0.247213 +v -0.168201 -0.250000 0.141506 +v -0.250000 -0.168201 0.146099 +v -0.189372 -0.247213 0.142694 +v -0.209100 -0.239041 0.143802 +v -0.226042 -0.226042 0.144754 +v -0.239041 -0.209100 0.145484 +v -0.247213 -0.189372 0.145943 +v -0.150902 -0.250000 0.167142 +v -0.169219 -0.168201 0.247395 +v -0.155643 -0.247213 0.187913 +v -0.160061 -0.239041 0.207269 +v -0.163854 -0.226042 0.223889 +v -0.166765 -0.209100 0.236643 +v -0.168595 -0.189372 0.244660 +v -0.155464 -0.250000 0.165546 +v -0.191180 -0.168201 0.239711 +v -0.164708 -0.247213 0.184741 +v -0.173322 -0.239041 0.202628 +v -0.180719 -0.226042 0.217988 +v -0.186395 -0.209100 0.229774 +v -0.189963 -0.189372 0.237183 +v -0.159557 -0.250000 0.162974 +v -0.210880 -0.168201 0.227332 +v -0.172840 -0.247213 0.179631 +v -0.185218 -0.239041 0.195153 +v -0.195848 -0.226042 0.208482 +v -0.204004 -0.209100 0.218710 +v -0.209132 -0.189372 0.225139 +v -0.162974 -0.250000 0.159557 +v -0.227332 -0.168201 0.210880 +v -0.179631 -0.247213 0.172840 +v -0.195153 -0.239041 0.185218 +v -0.208482 -0.226042 0.195848 +v -0.218710 -0.209100 0.204004 +v -0.225139 -0.189372 0.209131 +v -0.165546 -0.250000 0.155464 +v -0.239711 -0.168201 0.191180 +v -0.184741 -0.247213 0.164708 +v -0.202628 -0.239041 0.173322 +v -0.217988 -0.226042 0.180719 +v -0.229774 -0.209100 0.186395 +v -0.237184 -0.189372 0.189963 +v -0.167142 -0.250000 0.150902 +v -0.247395 -0.168201 0.169219 +v -0.187913 -0.247213 0.155643 +v -0.207269 -0.239041 0.160061 +v -0.223889 -0.226042 0.163854 +v -0.236643 -0.209100 0.166765 +v -0.244660 -0.189372 0.168595 +v 0.168201 -0.250000 0.141505 +v 0.250000 -0.168201 0.146099 +v 0.189372 -0.247213 0.142694 +v 0.209100 -0.239041 0.143802 +v 0.226042 -0.226042 0.144754 +v 0.239041 -0.209100 0.145484 +v 0.247213 -0.189372 0.145943 +v 0.141506 -0.250000 0.168201 +v 0.146099 -0.168201 0.250000 +v 0.142694 -0.247213 0.189372 +v 0.143802 -0.239041 0.209100 +v 0.144754 -0.226042 0.226042 +v 0.145484 -0.209100 0.239041 +v 0.145943 -0.189372 0.247213 +v 0.167142 -0.250000 0.150902 +v 0.247395 -0.168201 0.169219 +v 0.187913 -0.247213 0.155643 +v 0.207269 -0.239041 0.160061 +v 0.223889 -0.226042 0.163854 +v 0.236643 -0.209100 0.166765 +v 0.244660 -0.189372 0.168595 +v 0.165546 -0.250000 0.155464 +v 0.239711 -0.168201 0.191180 +v 0.184741 -0.247213 0.164708 +v 0.202628 -0.239041 0.173322 +v 0.217988 -0.226042 0.180719 +v 0.229774 -0.209100 0.186395 +v 0.237183 -0.189372 0.189963 +v 0.162974 -0.250000 0.159557 +v 0.227332 -0.168201 0.210880 +v 0.179631 -0.247213 0.172840 +v 0.195153 -0.239041 0.185218 +v 0.208482 -0.226042 0.195848 +v 0.218710 -0.209100 0.204004 +v 0.225139 -0.189372 0.209132 +v 0.159557 -0.250000 0.162974 +v 0.210880 -0.168201 0.227332 +v 0.172840 -0.247213 0.179631 +v 0.185218 -0.239041 0.195153 +v 0.195848 -0.226042 0.208482 +v 0.204004 -0.209100 0.218710 +v 0.209131 -0.189372 0.225139 +v 0.155464 -0.250000 0.165546 +v 0.191180 -0.168201 0.239711 +v 0.164708 -0.247213 0.184741 +v 0.173322 -0.239041 0.202628 +v 0.180719 -0.226042 0.217988 +v 0.186395 -0.209100 0.229774 +v 0.189963 -0.189372 0.237184 +v 0.150902 -0.250000 0.167142 +v 0.169219 -0.168201 0.247395 +v 0.155643 -0.247213 0.187913 +v 0.160061 -0.239041 0.207269 +v 0.163854 -0.226042 0.223889 +v 0.166765 -0.209100 0.236643 +v 0.168595 -0.189372 0.244660 +v -0.141506 0.250000 -0.168201 +v -0.146099 0.168201 -0.250000 +v -0.142694 0.247213 -0.189372 +v -0.143802 0.239041 -0.209100 +v -0.144754 0.226042 -0.226042 +v -0.145484 0.209100 -0.239041 +v -0.145943 0.189372 -0.247213 +v -0.168201 0.250000 -0.141505 +v -0.250000 0.168201 -0.146099 +v -0.189372 0.247213 -0.142694 +v -0.209100 0.239041 -0.143802 +v -0.226042 0.226042 -0.144754 +v -0.239041 0.209100 -0.145484 +v -0.247213 0.189372 -0.145943 +v -0.150902 0.250000 -0.167142 +v -0.169219 0.168201 -0.247395 +v -0.155643 0.247213 -0.187913 +v -0.160061 0.239041 -0.207269 +v -0.163854 0.226042 -0.223889 +v -0.166765 0.209100 -0.236643 +v -0.168595 0.189372 -0.244660 +v -0.155464 0.250000 -0.165546 +v -0.191180 0.168201 -0.239711 +v -0.164708 0.247213 -0.184741 +v -0.173322 0.239041 -0.202628 +v -0.180719 0.226042 -0.217988 +v -0.186395 0.209100 -0.229774 +v -0.189963 0.189372 -0.237183 +v -0.159557 0.250000 -0.162974 +v -0.210880 0.168201 -0.227332 +v -0.172840 0.247213 -0.179631 +v -0.185218 0.239041 -0.195153 +v -0.195848 0.226042 -0.208482 +v -0.204004 0.209100 -0.218710 +v -0.209132 0.189372 -0.225139 +v -0.162974 0.250000 -0.159557 +v -0.227332 0.168201 -0.210880 +v -0.179631 0.247213 -0.172840 +v -0.195153 0.239041 -0.185218 +v -0.208482 0.226042 -0.195848 +v -0.218710 0.209100 -0.204004 +v -0.225139 0.189372 -0.209132 +v -0.165546 0.250000 -0.155464 +v -0.239711 0.168201 -0.191180 +v -0.184741 0.247213 -0.164708 +v -0.202628 0.239041 -0.173322 +v -0.217988 0.226042 -0.180719 +v -0.229774 0.209100 -0.186395 +v -0.237183 0.189372 -0.189963 +v -0.167142 0.250000 -0.150902 +v -0.247395 0.168201 -0.169219 +v -0.187913 0.247213 -0.155643 +v -0.207268 0.239041 -0.160061 +v -0.223889 0.226042 -0.163854 +v -0.236643 0.209100 -0.166765 +v -0.244660 0.189372 -0.168595 +v -0.168201 -0.250000 -0.141505 +v -0.250000 -0.168201 -0.146099 +v -0.189372 -0.247213 -0.142694 +v -0.209100 -0.239041 -0.143802 +v -0.226042 -0.226042 -0.144754 +v -0.239041 -0.209100 -0.145484 +v -0.247213 -0.189372 -0.145943 +v -0.141506 -0.250000 -0.168201 +v -0.146099 -0.168201 -0.250000 +v -0.142694 -0.247213 -0.189372 +v -0.143802 -0.239041 -0.209100 +v -0.144754 -0.226042 -0.226042 +v -0.145484 -0.209100 -0.239041 +v -0.145943 -0.189372 -0.247213 +v -0.167142 -0.250000 -0.150902 +v -0.247395 -0.168201 -0.169219 +v -0.187913 -0.247213 -0.155643 +v -0.207269 -0.239041 -0.160061 +v -0.223889 -0.226042 -0.163854 +v -0.236643 -0.209100 -0.166765 +v -0.244660 -0.189372 -0.168595 +v -0.165546 -0.250000 -0.155464 +v -0.239711 -0.168201 -0.191180 +v -0.184741 -0.247213 -0.164708 +v -0.202628 -0.239041 -0.173322 +v -0.217988 -0.226042 -0.180719 +v -0.229774 -0.209100 -0.186395 +v -0.237183 -0.189372 -0.189963 +v -0.162974 -0.250000 -0.159557 +v -0.227332 -0.168201 -0.210880 +v -0.179631 -0.247213 -0.172840 +v -0.195153 -0.239041 -0.185218 +v -0.208482 -0.226042 -0.195848 +v -0.218710 -0.209100 -0.204004 +v -0.225139 -0.189372 -0.209132 +v -0.159557 -0.250000 -0.162974 +v -0.210880 -0.168201 -0.227332 +v -0.172840 -0.247213 -0.179631 +v -0.185218 -0.239041 -0.195153 +v -0.195848 -0.226042 -0.208482 +v -0.204004 -0.209100 -0.218710 +v -0.209131 -0.189372 -0.225139 +v -0.155464 -0.250000 -0.165546 +v -0.191180 -0.168201 -0.239711 +v -0.164708 -0.247213 -0.184741 +v -0.173322 -0.239041 -0.202628 +v -0.180719 -0.226042 -0.217988 +v -0.186395 -0.209100 -0.229774 +v -0.189963 -0.189372 -0.237183 +v -0.150902 -0.250000 -0.167142 +v -0.169219 -0.168201 -0.247395 +v -0.155643 -0.247213 -0.187913 +v -0.160061 -0.239041 -0.207268 +v -0.163854 -0.226042 -0.223889 +v -0.166765 -0.209100 -0.236643 +v -0.168595 -0.189372 -0.244660 +v 0.168201 0.250000 -0.141506 +v 0.250000 0.168201 -0.146099 +v 0.189372 0.247213 -0.142694 +v 0.209100 0.239041 -0.143802 +v 0.226042 0.226042 -0.144754 +v 0.239041 0.209100 -0.145484 +v 0.247213 0.189372 -0.145943 +v 0.141505 0.250000 -0.168201 +v 0.146099 0.168201 -0.250000 +v 0.142694 0.247213 -0.189372 +v 0.143802 0.239041 -0.209100 +v 0.144754 0.226042 -0.226042 +v 0.145484 0.209100 -0.239041 +v 0.145943 0.189372 -0.247213 +v 0.167142 0.250000 -0.150902 +v 0.247395 0.168201 -0.169219 +v 0.187913 0.247213 -0.155643 +v 0.207269 0.239041 -0.160061 +v 0.223889 0.226042 -0.163854 +v 0.236643 0.209100 -0.166765 +v 0.244660 0.189372 -0.168595 +v 0.165546 0.250000 -0.155464 +v 0.239711 0.168201 -0.191180 +v 0.184741 0.247213 -0.164708 +v 0.202628 0.239041 -0.173322 +v 0.217988 0.226042 -0.180719 +v 0.229774 0.209100 -0.186395 +v 0.237183 0.189372 -0.189963 +v 0.162974 0.250000 -0.159557 +v 0.227332 0.168201 -0.210880 +v 0.179631 0.247213 -0.172840 +v 0.195153 0.239041 -0.185218 +v 0.208482 0.226042 -0.195848 +v 0.218710 0.209100 -0.204004 +v 0.225139 0.189372 -0.209132 +v 0.159557 0.250000 -0.162974 +v 0.210880 0.168201 -0.227332 +v 0.172840 0.247213 -0.179631 +v 0.185218 0.239041 -0.195153 +v 0.195848 0.226042 -0.208482 +v 0.204004 0.209100 -0.218710 +v 0.209132 0.189372 -0.225139 +v 0.155464 0.250000 -0.165546 +v 0.191180 0.168201 -0.239711 +v 0.164708 0.247213 -0.184741 +v 0.173322 0.239041 -0.202628 +v 0.180719 0.226042 -0.217988 +v 0.186395 0.209100 -0.229774 +v 0.189963 0.189372 -0.237183 +v 0.150902 0.250000 -0.167142 +v 0.169219 0.168201 -0.247395 +v 0.155643 0.247213 -0.187913 +v 0.160061 0.239041 -0.207268 +v 0.163854 0.226042 -0.223889 +v 0.166765 0.209100 -0.236643 +v 0.168595 0.189372 -0.244660 +v 0.141506 -0.250000 -0.168201 +v 0.146099 -0.168201 -0.250000 +v 0.142694 -0.247213 -0.189372 +v 0.143802 -0.239041 -0.209100 +v 0.144754 -0.226042 -0.226042 +v 0.145484 -0.209100 -0.239041 +v 0.145943 -0.189372 -0.247213 +v 0.168201 -0.250000 -0.141506 +v 0.250000 -0.168201 -0.146099 +v 0.189372 -0.247213 -0.142694 +v 0.209100 -0.239041 -0.143802 +v 0.226042 -0.226042 -0.144754 +v 0.239041 -0.209100 -0.145484 +v 0.247213 -0.189372 -0.145943 +v 0.150902 -0.250000 -0.167142 +v 0.169219 -0.168201 -0.247395 +v 0.155643 -0.247213 -0.187913 +v 0.160061 -0.239041 -0.207268 +v 0.163854 -0.226042 -0.223889 +v 0.166765 -0.209100 -0.236643 +v 0.168595 -0.189372 -0.244660 +v 0.155464 -0.250000 -0.165546 +v 0.191180 -0.168201 -0.239711 +v 0.164708 -0.247213 -0.184741 +v 0.173322 -0.239041 -0.202628 +v 0.180719 -0.226042 -0.217988 +v 0.186395 -0.209100 -0.229774 +v 0.189963 -0.189372 -0.237183 +v 0.159557 -0.250000 -0.162974 +v 0.210880 -0.168201 -0.227332 +v 0.172840 -0.247213 -0.179631 +v 0.185218 -0.239041 -0.195153 +v 0.195848 -0.226042 -0.208482 +v 0.204004 -0.209100 -0.218710 +v 0.209132 -0.189372 -0.225139 +v 0.162974 -0.250000 -0.159557 +v 0.227332 -0.168201 -0.210880 +v 0.179631 -0.247213 -0.172840 +v 0.195153 -0.239041 -0.185218 +v 0.208482 -0.226042 -0.195848 +v 0.218710 -0.209100 -0.204004 +v 0.225139 -0.189372 -0.209131 +v 0.165546 -0.250000 -0.155464 +v 0.239711 -0.168201 -0.191180 +v 0.184741 -0.247213 -0.164708 +v 0.202628 -0.239041 -0.173322 +v 0.217988 -0.226042 -0.180719 +v 0.229774 -0.209100 -0.186395 +v 0.237184 -0.189372 -0.189963 +v 0.167142 -0.250000 -0.150902 +v 0.247395 -0.168201 -0.169219 +v 0.187913 -0.247213 -0.155643 +v 0.207269 -0.239041 -0.160061 +v 0.223889 -0.226042 -0.163854 +v 0.236643 -0.209100 -0.166765 +v 0.244660 -0.189372 -0.168595 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.7130 0.4637 +vt 0.7238 0.4746 +vt 0.7366 0.4831 +vt 0.7508 0.4890 +vt 0.7659 0.4920 +vt 0.7812 0.4920 +vt 0.7963 0.4890 +vt 0.8105 0.4831 +vt 0.8233 0.4746 +vt 0.8342 0.4637 +vt 0.8427 0.4509 +vt 0.8486 0.4367 +vt 0.8516 0.4217 +vt 0.8516 0.4063 +vt 0.8486 0.3912 +vt 0.8427 0.3770 +vt 0.8342 0.3642 +vt 0.8233 0.3534 +vt 0.8105 0.3448 +vt 0.7963 0.3390 +vt 0.7812 0.3360 +vt 0.7659 0.3360 +vt 0.7508 0.3390 +vt 0.7366 0.3448 +vt 0.7238 0.3534 +vt 0.7130 0.3642 +vt 0.7044 0.3770 +vt 0.6986 0.3912 +vt 0.6956 0.4063 +vt 0.6956 0.4217 +vt 0.6986 0.4367 +vt 0.7044 0.4509 +vt 0.6089 0.3390 +vt 0.6231 0.3448 +vt 0.6358 0.3534 +vt 0.6467 0.3642 +vt 0.6552 0.3770 +vt 0.6611 0.3912 +vt 0.6641 0.4063 +vt 0.6641 0.4217 +vt 0.6611 0.4367 +vt 0.6552 0.4509 +vt 0.6467 0.4637 +vt 0.6358 0.4746 +vt 0.6231 0.4831 +vt 0.6089 0.4890 +vt 0.5938 0.4920 +vt 0.5784 0.4920 +vt 0.5634 0.4890 +vt 0.5492 0.4831 +vt 0.5364 0.4746 +vt 0.5255 0.4637 +vt 0.5170 0.4509 +vt 0.5111 0.4367 +vt 0.5081 0.4217 +vt 0.5081 0.4063 +vt 0.5111 0.3912 +vt 0.5170 0.3770 +vt 0.5255 0.3642 +vt 0.5364 0.3534 +vt 0.5492 0.3448 +vt 0.5634 0.3390 +vt 0.5784 0.3360 +vt 0.5938 0.3360 +vt 0.7812 0.3360 +vt 0.7963 0.3390 +vt 0.8105 0.3448 +vt 0.8233 0.3534 +vt 0.8342 0.3642 +vt 0.8427 0.3770 +vt 0.8486 0.3912 +vt 0.8516 0.4063 +vt 0.8516 0.4217 +vt 0.8486 0.4367 +vt 0.8427 0.4509 +vt 0.8342 0.4637 +vt 0.8233 0.4746 +vt 0.8105 0.4831 +vt 0.7963 0.4890 +vt 0.7812 0.4920 +vt 0.7659 0.4920 +vt 0.7508 0.4890 +vt 0.7366 0.4831 +vt 0.7238 0.4746 +vt 0.7130 0.4637 +vt 0.7044 0.4509 +vt 0.6986 0.4367 +vt 0.6956 0.4217 +vt 0.6956 0.4063 +vt 0.6986 0.3912 +vt 0.7044 0.3770 +vt 0.7130 0.3642 +vt 0.7238 0.3534 +vt 0.7366 0.3448 +vt 0.7508 0.3390 +vt 0.7659 0.3360 +vt 0.5492 0.3448 +vt 0.5364 0.3534 +vt 0.5255 0.3642 +vt 0.5170 0.3770 +vt 0.5111 0.3912 +vt 0.5081 0.4063 +vt 0.5081 0.4217 +vt 0.5111 0.4367 +vt 0.5170 0.4509 +vt 0.5255 0.4637 +vt 0.5364 0.4746 +vt 0.5492 0.4831 +vt 0.5634 0.4890 +vt 0.5784 0.4920 +vt 0.5938 0.4920 +vt 0.6089 0.4890 +vt 0.6231 0.4831 +vt 0.6358 0.4746 +vt 0.6467 0.4637 +vt 0.6552 0.4509 +vt 0.6611 0.4367 +vt 0.6641 0.4217 +vt 0.6641 0.4063 +vt 0.6611 0.3912 +vt 0.6552 0.3770 +vt 0.6467 0.3642 +vt 0.6358 0.3534 +vt 0.6231 0.3448 +vt 0.6089 0.3390 +vt 0.5938 0.3360 +vt 0.5784 0.3360 +vt 0.5634 0.3390 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.4747 0.6940 +vt 0.3065 0.6940 +vt 0.3065 0.6824 +vt 0.4747 0.6824 +vt 0.4636 0.9591 +vt 0.4636 0.7909 +vt 0.4752 0.7909 +vt 0.4752 0.9591 +vt 0.0404 0.6935 +vt 0.0404 0.5253 +vt 0.0520 0.5253 +vt 0.0520 0.6935 +vt 0.0409 0.2592 +vt 0.2091 0.2592 +vt 0.2091 0.2708 +vt 0.0409 0.2708 +vt 0.4747 0.5248 +vt 0.3065 0.5248 +vt 0.3065 0.5138 +vt 0.4747 0.5138 +vt 0.3060 0.9591 +vt 0.3060 0.7909 +vt 0.3176 0.7909 +vt 0.3176 0.9591 +vt 0.2206 0.6935 +vt 0.2206 0.5253 +vt 0.2304 0.5253 +vt 0.2304 0.6935 +vt 0.2500 0.5253 +vt 0.2500 0.6935 +vt 0.2852 0.9591 +vt 0.2852 0.7909 +vt 0.2950 0.7909 +vt 0.2950 0.9591 +vt 0.2096 0.6935 +vt 0.2096 0.5253 +vt 0.4747 0.5364 +vt 0.3065 0.5364 +vt 0.3065 0.5040 +vt 0.4747 0.5040 +vt 0.3065 0.4844 +vt 0.4747 0.4844 +vt 0.0196 0.6935 +vt 0.0196 0.5253 +vt 0.0294 0.5253 +vt 0.0294 0.6935 +vt 0.0409 0.4168 +vt 0.2091 0.4168 +vt 0.2091 0.4284 +vt 0.0409 0.4284 +vt 0.1980 0.6935 +vt 0.1980 0.5253 +vt 0.0409 0.4394 +vt 0.2091 0.4394 +vt 0.2091 0.4492 +vt 0.0409 0.4492 +vt 0.2091 0.4688 +vt 0.0409 0.4688 +vt 0.4747 0.7148 +vt 0.3065 0.7148 +vt 0.3065 0.7050 +vt 0.4747 0.7050 +vt 0.7403 0.9457 +vt 0.7398 0.9504 +vt 0.7390 0.9527 +vt 0.7377 0.9548 +vt 0.7360 0.9565 +vt 0.7340 0.9578 +vt 0.7317 0.9586 +vt 0.7270 0.9591 +vt 0.5855 0.9591 +vt 0.5808 0.9586 +vt 0.5785 0.9578 +vt 0.5765 0.9565 +vt 0.5748 0.9548 +vt 0.5735 0.9527 +vt 0.5727 0.9504 +vt 0.5721 0.9457 +vt 0.5721 0.8042 +vt 0.5727 0.7995 +vt 0.5735 0.7973 +vt 0.5748 0.7952 +vt 0.5765 0.7935 +vt 0.5785 0.7922 +vt 0.5808 0.7914 +vt 0.5855 0.7909 +vt 0.7270 0.7909 +vt 0.7317 0.7914 +vt 0.7340 0.7922 +vt 0.7360 0.7935 +vt 0.7377 0.7952 +vt 0.7390 0.7973 +vt 0.7398 0.7995 +vt 0.7403 0.8042 +vt 0.4862 0.9591 +vt 0.4862 0.7909 +vt 0.4960 0.7909 +vt 0.4960 0.9591 +vt 0.5156 0.7909 +vt 0.5156 0.9591 +vt 0.0409 0.2384 +vt 0.2091 0.2384 +vt 0.2091 0.2482 +vt 0.0409 0.2482 +vt 0.0547 0.2031 +vt 0.0547 0.1875 +vt 0.0703 0.1875 +vt 0.0703 0.2031 +vt 0.0859 0.1875 +vt 0.0859 0.2031 +vt 0.1016 0.2031 +vt 0.1016 0.1875 +vt 0.1172 0.1875 +vt 0.1172 0.2031 +vt 0.1328 0.1875 +vt 0.1328 0.2031 +vt 0.1484 0.2031 +vt 0.1484 0.1875 +vt 0.1641 0.1875 +vt 0.1641 0.2031 +vt 0.1797 0.1875 +vt 0.1797 0.2031 +vt 0.0547 0.2031 +vt 0.0547 0.1875 +vt 0.0703 0.1875 +vt 0.0703 0.2031 +vt 0.0859 0.1875 +vt 0.0859 0.2031 +vt 0.1016 0.2031 +vt 0.1016 0.1875 +vt 0.1172 0.1875 +vt 0.1172 0.2031 +vt 0.1328 0.1875 +vt 0.1328 0.2031 +vt 0.1484 0.2031 +vt 0.1484 0.1875 +vt 0.1641 0.1875 +vt 0.1641 0.2031 +vt 0.1797 0.1875 +vt 0.1797 0.2031 +vt 0.2887 0.2433 +vt 0.2887 0.2594 +vt 0.2829 0.2594 +vt 0.2829 0.2433 +vt 0.2721 0.2433 +vt 0.2721 0.2594 +vt 0.2675 0.2594 +vt 0.2675 0.2433 +vt 0.3127 0.1949 +vt 0.3127 0.2110 +vt 0.3086 0.2110 +vt 0.3086 0.1949 +vt 0.3039 0.2110 +vt 0.3039 0.1949 +vt 0.2986 0.2110 +vt 0.2986 0.1949 +vt 0.2930 0.2110 +vt 0.2930 0.1949 +vt 0.2872 0.2110 +vt 0.2872 0.1949 +vt 0.2816 0.2110 +vt 0.2816 0.1949 +vt 0.2763 0.2110 +vt 0.2763 0.1949 +vt 0.2715 0.2110 +vt 0.2715 0.1949 +vt 0.2675 0.2110 +vt 0.2675 0.1949 +vt 0.4555 0.2905 +vt 0.4555 0.3065 +vt 0.4509 0.3065 +vt 0.4509 0.2905 +vt 0.4457 0.3065 +vt 0.4457 0.2905 +vt 0.4401 0.3065 +vt 0.4401 0.2905 +vt 0.4344 0.3065 +vt 0.4344 0.2905 +vt 0.4287 0.3065 +vt 0.4287 0.2905 +vt 0.4064 0.3065 +vt 0.4064 0.2905 +vt 0.3777 0.2111 +vt 0.3777 0.1951 +vt 0.3830 0.1951 +vt 0.3830 0.2111 +vt 0.4258 0.2594 +vt 0.4258 0.2433 +vt 0.4313 0.2433 +vt 0.4313 0.2594 +vt 0.3732 0.2111 +vt 0.3732 0.1951 +vt 0.3166 0.2433 +vt 0.3166 0.2594 +vt 0.2943 0.2594 +vt 0.2943 0.2433 +vt 0.2902 0.4591 +vt 0.2902 0.4177 +vt 0.2954 0.4175 +vt 0.2759 0.3065 +vt 0.2759 0.2905 +vt 0.2809 0.2905 +vt 0.2809 0.3065 +vt 0.3680 0.2111 +vt 0.3680 0.1951 +vt 0.3880 0.1951 +vt 0.3880 0.2111 +vt 0.3925 0.1951 +vt 0.3925 0.2111 +vt 0.2675 0.3065 +vt 0.2675 0.2905 +vt 0.2714 0.2905 +vt 0.2714 0.3065 +vt 0.2918 0.2905 +vt 0.2918 0.3065 +vt 0.2862 0.3065 +vt 0.2862 0.2905 +vt 0.3630 0.2111 +vt 0.3630 0.1951 +vt 0.3874 0.2594 +vt 0.3874 0.2433 +vt 0.3928 0.2433 +vt 0.3928 0.2594 +vt 0.4421 0.2594 +vt 0.4421 0.2433 +vt 0.4471 0.2433 +vt 0.4471 0.2594 +vt 0.4517 0.2433 +vt 0.4517 0.2594 +vt 0.4555 0.2433 +vt 0.4555 0.2594 +vt 0.3585 0.2111 +vt 0.3585 0.1951 +vt 0.4368 0.2433 +vt 0.4368 0.2594 +vt 0.2972 0.3065 +vt 0.2972 0.2905 +vt 0.3035 0.2905 +vt 0.3035 0.3065 +vt 0.2774 0.2594 +vt 0.2774 0.2433 +vt 0.3302 0.3065 +vt 0.3302 0.2905 +vt 0.3357 0.2905 +vt 0.3357 0.3065 +vt 0.3103 0.2905 +vt 0.3103 0.3065 +vt 0.3172 0.2905 +vt 0.3172 0.3065 +vt 0.3240 0.2905 +vt 0.3240 0.3065 +vt 0.3416 0.2594 +vt 0.3416 0.2433 +vt 0.3443 0.2433 +vt 0.3443 0.2594 +vt 0.3787 0.2905 +vt 0.3787 0.3065 +vt 0.3990 0.2594 +vt 0.3990 0.2433 +vt 0.4058 0.2433 +vt 0.4058 0.2594 +vt 0.4127 0.2433 +vt 0.4127 0.2594 +vt 0.4195 0.2433 +vt 0.4195 0.2594 +vt 0.4038 0.3065 +vt 0.4038 0.2905 +vt 0.3844 0.3065 +vt 0.3844 0.2905 +vt 0.3876 0.2905 +vt 0.3876 0.3065 +vt 0.3909 0.2905 +vt 0.3909 0.3065 +vt 0.3943 0.2905 +vt 0.3943 0.3065 +vt 0.3977 0.2905 +vt 0.3977 0.3065 +vt 0.4009 0.2905 +vt 0.4009 0.3065 +vt 0.3814 0.3065 +vt 0.3814 0.2905 +vt 0.3387 0.2594 +vt 0.3387 0.2433 +vt 0.3192 0.2594 +vt 0.3192 0.2433 +vt 0.3221 0.2433 +vt 0.3221 0.2594 +vt 0.3253 0.2433 +vt 0.3253 0.2594 +vt 0.3287 0.2433 +vt 0.3287 0.2594 +vt 0.3321 0.2433 +vt 0.3321 0.2594 +vt 0.3355 0.2433 +vt 0.3355 0.2594 +vt 0.2775 0.2409 +vt 0.2830 0.2409 +vt 0.2778 0.2387 +vt 0.2831 0.2387 +vt 0.2925 0.3900 +vt 0.2871 0.3888 +vt 0.2876 0.3871 +vt 0.2926 0.3882 +vt 0.2882 0.3850 +vt 0.2928 0.3860 +vt 0.2888 0.3827 +vt 0.2930 0.3836 +vt 0.2830 0.2618 +vt 0.2775 0.2618 +vt 0.2831 0.2640 +vt 0.2778 0.2640 +vt 0.4487 0.4676 +vt 0.4434 0.4688 +vt 0.4432 0.4670 +vt 0.4483 0.4659 +vt 0.4430 0.4648 +vt 0.4477 0.4638 +vt 0.4428 0.4624 +vt 0.4471 0.4615 +vt 0.2723 0.2409 +vt 0.2728 0.2387 +vt 0.2821 0.3865 +vt 0.2828 0.3850 +vt 0.2838 0.3830 +vt 0.2848 0.3809 +vt 0.2723 0.2618 +vt 0.2728 0.2640 +vt 0.4538 0.4653 +vt 0.4530 0.4638 +vt 0.4521 0.4618 +vt 0.4510 0.4596 +vt 0.2677 0.2409 +vt 0.2684 0.2387 +vt 0.2775 0.3832 +vt 0.2785 0.3818 +vt 0.2798 0.3801 +vt 0.2812 0.3782 +vt 0.2677 0.2618 +vt 0.2684 0.2640 +vt 0.4583 0.4620 +vt 0.4573 0.4606 +vt 0.4560 0.4589 +vt 0.4546 0.4570 +vt 0.3084 0.1925 +vt 0.3124 0.1925 +vt 0.3078 0.1903 +vt 0.3116 0.1903 +vt 0.2737 0.3790 +vt 0.2749 0.3779 +vt 0.2765 0.3765 +vt 0.2782 0.3749 +vt 0.3124 0.2134 +vt 0.3084 0.2134 +vt 0.3116 0.2156 +vt 0.3078 0.2156 +vt 0.4622 0.4578 +vt 0.4610 0.4566 +vt 0.4594 0.4552 +vt 0.4577 0.4537 +vt 0.3037 0.1925 +vt 0.3032 0.1903 +vt 0.2706 0.3740 +vt 0.2721 0.3732 +vt 0.2738 0.3721 +vt 0.2758 0.3710 +vt 0.3037 0.2134 +vt 0.3032 0.2156 +vt 0.4652 0.4528 +vt 0.4638 0.4520 +vt 0.4620 0.4509 +vt 0.4601 0.4498 +vt 0.2985 0.1925 +vt 0.2982 0.1903 +vt 0.2686 0.3685 +vt 0.2701 0.3680 +vt 0.2720 0.3673 +vt 0.2741 0.3666 +vt 0.2985 0.2134 +vt 0.2982 0.2156 +vt 0.4673 0.4473 +vt 0.4658 0.4468 +vt 0.4639 0.4461 +vt 0.4617 0.4454 +vt 0.2929 0.1925 +vt 0.2928 0.1903 +vt 0.2675 0.3626 +vt 0.2691 0.3624 +vt 0.2711 0.3622 +vt 0.2733 0.3620 +vt 0.2929 0.2134 +vt 0.2928 0.2156 +vt 0.4684 0.4414 +vt 0.4668 0.4412 +vt 0.4648 0.4410 +vt 0.4626 0.4408 +vt 0.2873 0.1925 +vt 0.2874 0.1903 +vt 0.2875 0.1885 +vt 0.2927 0.1885 +vt 0.2691 0.3568 +vt 0.2711 0.3570 +vt 0.2733 0.3573 +vt 0.2873 0.2134 +vt 0.2874 0.2156 +vt 0.2927 0.2174 +vt 0.2875 0.2174 +vt 0.4668 0.4356 +vt 0.4648 0.4358 +vt 0.4626 0.4361 +vt 0.2817 0.1925 +vt 0.2820 0.1903 +vt 0.2675 0.3566 +vt 0.2686 0.3508 +vt 0.2701 0.3513 +vt 0.2720 0.3519 +vt 0.2741 0.3526 +vt 0.2817 0.2134 +vt 0.2820 0.2156 +vt 0.4673 0.4296 +vt 0.4684 0.4354 +vt 0.4658 0.4301 +vt 0.4639 0.4307 +vt 0.4617 0.4314 +vt 0.2765 0.1925 +vt 0.2770 0.1903 +vt 0.2706 0.3453 +vt 0.2721 0.3461 +vt 0.2738 0.3471 +vt 0.2758 0.3483 +vt 0.2765 0.2134 +vt 0.2770 0.2156 +vt 0.4652 0.4240 +vt 0.4638 0.4249 +vt 0.4620 0.4259 +vt 0.4601 0.4271 +vt 0.2718 0.1925 +vt 0.2724 0.1903 +vt 0.2737 0.3403 +vt 0.2749 0.3414 +vt 0.2765 0.3428 +vt 0.2782 0.3444 +vt 0.2718 0.2134 +vt 0.2724 0.2156 +vt 0.4622 0.4191 +vt 0.4610 0.4202 +vt 0.4594 0.4216 +vt 0.4577 0.4232 +vt 0.2678 0.1925 +vt 0.2686 0.1903 +vt 0.2775 0.3361 +vt 0.2785 0.3374 +vt 0.2798 0.3391 +vt 0.2812 0.3410 +vt 0.2678 0.2134 +vt 0.2686 0.2156 +vt 0.4583 0.4149 +vt 0.4573 0.4162 +vt 0.4560 0.4179 +vt 0.4546 0.4198 +vt 0.4507 0.2880 +vt 0.4553 0.2880 +vt 0.4502 0.2858 +vt 0.4546 0.2858 +vt 0.2821 0.3327 +vt 0.2828 0.3343 +vt 0.2838 0.3362 +vt 0.2848 0.3384 +vt 0.4553 0.3090 +vt 0.4507 0.3090 +vt 0.4546 0.3112 +vt 0.4502 0.3112 +vt 0.4538 0.4115 +vt 0.4530 0.4131 +vt 0.4521 0.4150 +vt 0.4510 0.4172 +vt 0.4456 0.2880 +vt 0.4452 0.2858 +vt 0.2871 0.3305 +vt 0.2876 0.3321 +vt 0.2882 0.3342 +vt 0.2888 0.3366 +vt 0.4456 0.3090 +vt 0.4452 0.3112 +vt 0.4487 0.4092 +vt 0.4483 0.4109 +vt 0.4477 0.4130 +vt 0.4471 0.4154 +vt 0.4400 0.2880 +vt 0.4399 0.2858 +vt 0.2925 0.3293 +vt 0.2926 0.3310 +vt 0.2928 0.3332 +vt 0.2930 0.3357 +vt 0.4400 0.3090 +vt 0.4399 0.3112 +vt 0.4434 0.4081 +vt 0.4432 0.4098 +vt 0.4430 0.4120 +vt 0.4428 0.4145 +vt 0.4344 0.2880 +vt 0.4345 0.2858 +vt 0.2979 0.3293 +vt 0.2978 0.3310 +vt 0.2976 0.3332 +vt 0.2973 0.3357 +vt 0.4344 0.3090 +vt 0.4345 0.3112 +vt 0.4379 0.4081 +vt 0.4381 0.4098 +vt 0.4383 0.4120 +vt 0.4385 0.4145 +vt 0.4288 0.2880 +vt 0.4290 0.2858 +vt 0.3034 0.3305 +vt 0.3030 0.3322 +vt 0.3025 0.3343 +vt 0.3019 0.3367 +vt 0.4288 0.3090 +vt 0.4290 0.3112 +vt 0.4325 0.4093 +vt 0.4329 0.4110 +vt 0.4334 0.4131 +vt 0.4339 0.4155 +vt 0.2886 0.2409 +vt 0.2942 0.2409 +vt 0.2886 0.2387 +vt 0.2940 0.2387 +vt 0.3034 0.3888 +vt 0.2979 0.3900 +vt 0.2978 0.3882 +vt 0.3030 0.3871 +vt 0.2976 0.3860 +vt 0.3025 0.3850 +vt 0.2973 0.3836 +vt 0.3019 0.3826 +vt 0.2942 0.2618 +vt 0.2886 0.2618 +vt 0.2940 0.2640 +vt 0.2886 0.2640 +vt 0.4379 0.4688 +vt 0.4325 0.4676 +vt 0.4329 0.4659 +vt 0.4381 0.4670 +vt 0.4334 0.4637 +vt 0.4383 0.4648 +vt 0.4339 0.4614 +vt 0.4385 0.4624 +vt 0.2738 0.4320 +vt 0.2733 0.4364 +vt 0.2711 0.4363 +vt 0.2716 0.4314 +vt 0.2691 0.4361 +vt 0.2696 0.4309 +vt 0.2675 0.4360 +vt 0.2681 0.4306 +vt 0.3827 0.2158 +vt 0.3777 0.2158 +vt 0.3777 0.2136 +vt 0.3829 0.2136 +vt 0.4625 0.3576 +vt 0.4621 0.3532 +vt 0.4642 0.3526 +vt 0.4647 0.3575 +vt 0.4662 0.3522 +vt 0.4668 0.3574 +vt 0.4678 0.3518 +vt 0.4684 0.3573 +vt 0.3777 0.1904 +vt 0.3827 0.1904 +vt 0.3829 0.1926 +vt 0.3777 0.1926 +vt 0.2750 0.4282 +vt 0.2730 0.4271 +vt 0.2712 0.4262 +vt 0.2697 0.4254 +vt 0.3874 0.2158 +vt 0.3878 0.2136 +vt 0.4608 0.3494 +vt 0.4629 0.3483 +vt 0.4647 0.3474 +vt 0.4662 0.3466 +vt 0.3874 0.1904 +vt 0.3878 0.1926 +vt 0.2770 0.4247 +vt 0.2752 0.4232 +vt 0.2736 0.4219 +vt 0.2723 0.4208 +vt 0.3916 0.2158 +vt 0.3922 0.2136 +vt 0.4589 0.3460 +vt 0.4607 0.3444 +vt 0.4623 0.3431 +vt 0.4635 0.3420 +vt 0.3916 0.1904 +vt 0.3922 0.1926 +vt 0.2796 0.4219 +vt 0.2782 0.4200 +vt 0.2769 0.4182 +vt 0.2758 0.4169 +vt 0.2722 0.3112 +vt 0.2686 0.3112 +vt 0.2678 0.3090 +vt 0.2716 0.3090 +vt 0.4563 0.3431 +vt 0.4577 0.3412 +vt 0.4590 0.3394 +vt 0.4600 0.3381 +vt 0.2686 0.2858 +vt 0.2722 0.2858 +vt 0.2716 0.2880 +vt 0.2678 0.2880 +vt 0.2827 0.4197 +vt 0.2817 0.4175 +vt 0.2808 0.4155 +vt 0.2801 0.4139 +vt 0.2765 0.3112 +vt 0.2761 0.3090 +vt 0.4532 0.3409 +vt 0.4542 0.3387 +vt 0.4551 0.3367 +vt 0.4558 0.3351 +vt 0.2765 0.2858 +vt 0.2761 0.2880 +vt 0.2861 0.4183 +vt 0.2856 0.4159 +vt 0.2851 0.4138 +vt 0.2847 0.4121 +vt 0.2812 0.3112 +vt 0.2810 0.3090 +vt 0.4497 0.3395 +vt 0.4503 0.3371 +vt 0.4507 0.3350 +vt 0.4511 0.3333 +vt 0.2812 0.2858 +vt 0.2810 0.2880 +vt 0.2901 0.4153 +vt 0.2899 0.4131 +vt 0.2898 0.4114 +vt 0.2863 0.3112 +vt 0.2862 0.3090 +vt 0.4456 0.3389 +vt 0.4458 0.3365 +vt 0.4460 0.3343 +vt 0.4461 0.3326 +vt 0.2863 0.2858 +vt 0.2862 0.2880 +vt 0.2861 0.4585 +vt 0.2901 0.4615 +vt 0.2856 0.4609 +vt 0.2899 0.4637 +vt 0.2851 0.4631 +vt 0.2898 0.4655 +vt 0.2847 0.4648 +vt 0.4418 0.2640 +vt 0.4368 0.2640 +vt 0.4368 0.2618 +vt 0.4420 0.2618 +vt 0.4456 0.3803 +vt 0.4497 0.3797 +vt 0.4503 0.3821 +vt 0.4458 0.3827 +vt 0.4507 0.3843 +vt 0.4460 0.3849 +vt 0.4511 0.3860 +vt 0.4461 0.3867 +vt 0.4368 0.2387 +vt 0.4418 0.2387 +vt 0.4420 0.2409 +vt 0.4368 0.2409 +vt 0.2827 0.4572 +vt 0.2817 0.4594 +vt 0.2808 0.4613 +vt 0.2801 0.4629 +vt 0.4465 0.2640 +vt 0.4470 0.2618 +vt 0.4532 0.3784 +vt 0.4542 0.3806 +vt 0.4551 0.3826 +vt 0.4558 0.3841 +vt 0.4465 0.2387 +vt 0.4470 0.2409 +vt 0.2796 0.4550 +vt 0.2782 0.4569 +vt 0.2769 0.4586 +vt 0.2758 0.4600 +vt 0.4508 0.2640 +vt 0.4515 0.2618 +vt 0.4563 0.3762 +vt 0.4577 0.3781 +vt 0.4590 0.3798 +vt 0.4600 0.3812 +vt 0.4508 0.2387 +vt 0.4515 0.2409 +vt 0.2770 0.4521 +vt 0.2752 0.4536 +vt 0.2736 0.4550 +vt 0.2723 0.4561 +vt 0.4545 0.2640 +vt 0.4553 0.2618 +vt 0.4589 0.3733 +vt 0.4607 0.3748 +vt 0.4623 0.3762 +vt 0.4635 0.3773 +vt 0.4545 0.2387 +vt 0.4553 0.2409 +vt 0.2750 0.4487 +vt 0.2730 0.4497 +vt 0.2712 0.4507 +vt 0.2697 0.4514 +vt 0.3636 0.2158 +vt 0.3594 0.2158 +vt 0.3587 0.2136 +vt 0.3631 0.2136 +vt 0.4608 0.3699 +vt 0.4629 0.3709 +vt 0.4647 0.3719 +vt 0.4662 0.3726 +vt 0.3594 0.1904 +vt 0.3636 0.1904 +vt 0.3631 0.1926 +vt 0.3587 0.1926 +vt 0.2738 0.4449 +vt 0.2716 0.4454 +vt 0.2696 0.4459 +vt 0.2681 0.4463 +vt 0.3683 0.2158 +vt 0.3681 0.2136 +vt 0.4621 0.3661 +vt 0.4642 0.3666 +vt 0.4662 0.3671 +vt 0.4678 0.3675 +vt 0.3683 0.1904 +vt 0.3681 0.1926 +vt 0.2733 0.4404 +vt 0.2711 0.4406 +vt 0.2691 0.4407 +vt 0.2675 0.4408 +vt 0.3733 0.2158 +vt 0.3733 0.2136 +vt 0.4625 0.3616 +vt 0.4647 0.3618 +vt 0.4668 0.3619 +vt 0.4684 0.3620 +vt 0.3733 0.1904 +vt 0.3733 0.1926 +vt 0.3006 0.4174 +vt 0.2953 0.4151 +vt 0.3007 0.4150 +vt 0.2953 0.4129 +vt 0.3007 0.4128 +vt 0.2952 0.4112 +vt 0.3007 0.4110 +vt 0.2972 0.3112 +vt 0.2917 0.3112 +vt 0.2918 0.3090 +vt 0.2972 0.3090 +vt 0.4404 0.3387 +vt 0.4350 0.3386 +vt 0.4351 0.3362 +vt 0.4405 0.3363 +vt 0.4351 0.3340 +vt 0.4405 0.3341 +vt 0.4352 0.3323 +vt 0.4406 0.3324 +vt 0.2918 0.2858 +vt 0.2972 0.2858 +vt 0.2972 0.2880 +vt 0.2918 0.2880 +vt 0.3068 0.4175 +vt 0.3068 0.4150 +vt 0.3069 0.4128 +vt 0.3069 0.4111 +vt 0.3034 0.3112 +vt 0.3035 0.3090 +vt 0.4289 0.3387 +vt 0.4289 0.3362 +vt 0.4289 0.3340 +vt 0.4289 0.3323 +vt 0.3034 0.2858 +vt 0.3035 0.2880 +vt 0.3135 0.4177 +vt 0.3135 0.4152 +vt 0.3136 0.4130 +vt 0.3137 0.4113 +vt 0.3102 0.3112 +vt 0.3103 0.3090 +vt 0.4223 0.3389 +vt 0.4222 0.3364 +vt 0.4222 0.3342 +vt 0.4222 0.3325 +vt 0.3102 0.2858 +vt 0.3103 0.2880 +vt 0.3203 0.4180 +vt 0.3204 0.4156 +vt 0.3205 0.4134 +vt 0.3206 0.4116 +vt 0.3171 0.3112 +vt 0.3172 0.3090 +vt 0.4154 0.3392 +vt 0.4154 0.3368 +vt 0.4153 0.3346 +vt 0.4152 0.3328 +vt 0.3171 0.2858 +vt 0.3172 0.2880 +vt 0.3269 0.4184 +vt 0.3271 0.4160 +vt 0.3273 0.4138 +vt 0.3274 0.4121 +vt 0.3238 0.3112 +vt 0.3240 0.3090 +vt 0.4088 0.3397 +vt 0.4087 0.3372 +vt 0.4085 0.3350 +vt 0.4085 0.3333 +vt 0.3239 0.2858 +vt 0.3240 0.2880 +vt 0.3330 0.4190 +vt 0.3332 0.4166 +vt 0.3335 0.4144 +vt 0.3336 0.4126 +vt 0.3301 0.3112 +vt 0.3302 0.3090 +vt 0.4027 0.3402 +vt 0.4025 0.3378 +vt 0.4023 0.3356 +vt 0.4022 0.3338 +vt 0.3301 0.2858 +vt 0.3302 0.2880 +vt 0.3383 0.4196 +vt 0.3386 0.4172 +vt 0.3388 0.4150 +vt 0.3390 0.4133 +vt 0.3354 0.3112 +vt 0.3356 0.3090 +vt 0.3974 0.3408 +vt 0.3972 0.3384 +vt 0.3970 0.3362 +vt 0.3968 0.3345 +vt 0.3355 0.2858 +vt 0.3356 0.2880 +vt 0.3332 0.4578 +vt 0.3384 0.4572 +vt 0.3387 0.4596 +vt 0.3334 0.4603 +vt 0.3389 0.4618 +vt 0.3335 0.4625 +vt 0.3390 0.4636 +vt 0.3336 0.4642 +vt 0.3929 0.2640 +vt 0.3876 0.2640 +vt 0.3874 0.2618 +vt 0.3928 0.2618 +vt 0.3975 0.3784 +vt 0.4028 0.3791 +vt 0.4026 0.3815 +vt 0.3973 0.3809 +vt 0.4024 0.3837 +vt 0.3970 0.3831 +vt 0.4023 0.3854 +vt 0.3968 0.3848 +vt 0.3876 0.2387 +vt 0.3930 0.2387 +vt 0.3928 0.2409 +vt 0.3874 0.2409 +vt 0.3271 0.4584 +vt 0.3272 0.4608 +vt 0.3273 0.4630 +vt 0.3274 0.4648 +vt 0.3992 0.2640 +vt 0.3991 0.2618 +vt 0.4089 0.3796 +vt 0.4088 0.3820 +vt 0.4086 0.3842 +vt 0.4085 0.3860 +vt 0.3992 0.2387 +vt 0.3991 0.2409 +vt 0.3204 0.4588 +vt 0.3205 0.4613 +vt 0.3206 0.4635 +vt 0.3206 0.4652 +vt 0.4059 0.2640 +vt 0.4058 0.2618 +vt 0.4156 0.3801 +vt 0.4154 0.3825 +vt 0.4153 0.3847 +vt 0.4152 0.3864 +vt 0.4059 0.2387 +vt 0.4058 0.2409 +vt 0.3136 0.4592 +vt 0.3136 0.4616 +vt 0.3137 0.4638 +vt 0.3137 0.4656 +vt 0.4128 0.2640 +vt 0.4128 0.2618 +vt 0.4224 0.3804 +vt 0.4223 0.3828 +vt 0.4222 0.3850 +vt 0.4222 0.3868 +vt 0.4128 0.2387 +vt 0.4128 0.2409 +vt 0.3069 0.4594 +vt 0.3069 0.4618 +vt 0.3069 0.4640 +vt 0.3069 0.4657 +vt 0.4196 0.2640 +vt 0.4195 0.2618 +vt 0.4291 0.3806 +vt 0.4290 0.3830 +vt 0.4290 0.3852 +vt 0.4289 0.3870 +vt 0.4196 0.2387 +vt 0.4195 0.2409 +vt 0.3008 0.4594 +vt 0.3008 0.4618 +vt 0.3007 0.4640 +vt 0.3007 0.4658 +vt 0.4258 0.2640 +vt 0.4258 0.2618 +vt 0.4352 0.3806 +vt 0.4352 0.3831 +vt 0.4352 0.3853 +vt 0.4352 0.3870 +vt 0.4259 0.2387 +vt 0.4258 0.2409 +vt 0.2955 0.4593 +vt 0.2954 0.4617 +vt 0.2953 0.4639 +vt 0.2953 0.4657 +vt 0.4313 0.2640 +vt 0.4313 0.2618 +vt 0.4405 0.3805 +vt 0.4405 0.3829 +vt 0.4406 0.3851 +vt 0.4406 0.3869 +vt 0.4313 0.2387 +vt 0.4313 0.2409 +vt 0.3847 0.4257 +vt 0.3819 0.4254 +vt 0.3821 0.4230 +vt 0.3848 0.4233 +vt 0.3822 0.4208 +vt 0.3850 0.4211 +vt 0.3824 0.4191 +vt 0.3851 0.4193 +vt 0.3812 0.3112 +vt 0.3786 0.3112 +vt 0.3787 0.3090 +vt 0.3813 0.3090 +vt 0.3542 0.3466 +vt 0.3512 0.3469 +vt 0.3510 0.3445 +vt 0.3540 0.3442 +vt 0.3509 0.3423 +vt 0.3537 0.3420 +vt 0.3508 0.3406 +vt 0.3535 0.3403 +vt 0.3785 0.2858 +vt 0.3812 0.2858 +vt 0.3813 0.2880 +vt 0.3787 0.2880 +vt 0.3880 0.4259 +vt 0.3881 0.4234 +vt 0.3881 0.4212 +vt 0.3881 0.4195 +vt 0.3843 0.3112 +vt 0.3843 0.3090 +vt 0.3478 0.3471 +vt 0.3478 0.3446 +vt 0.3478 0.3424 +vt 0.3478 0.3407 +vt 0.3843 0.2858 +vt 0.3843 0.2880 +vt 0.3916 0.4258 +vt 0.3915 0.4234 +vt 0.3914 0.4212 +vt 0.3914 0.4194 +vt 0.3876 0.3112 +vt 0.3876 0.3090 +vt 0.3443 0.3470 +vt 0.3444 0.3446 +vt 0.3444 0.3424 +vt 0.3445 0.3406 +vt 0.3876 0.2858 +vt 0.3876 0.2880 +vt 0.3952 0.4256 +vt 0.3950 0.4232 +vt 0.3949 0.4210 +vt 0.3948 0.4193 +vt 0.3910 0.3112 +vt 0.3909 0.3090 +vt 0.3407 0.3468 +vt 0.3408 0.3444 +vt 0.3410 0.3422 +vt 0.3411 0.3405 +vt 0.3910 0.2858 +vt 0.3909 0.2880 +vt 0.3989 0.4253 +vt 0.3986 0.4229 +vt 0.3984 0.4207 +vt 0.3982 0.4189 +vt 0.3944 0.3112 +vt 0.3944 0.3090 +vt 0.3370 0.3465 +vt 0.3372 0.3441 +vt 0.3374 0.3419 +vt 0.3376 0.3401 +vt 0.3944 0.2858 +vt 0.3944 0.2880 +vt 0.4025 0.4248 +vt 0.4022 0.4224 +vt 0.4019 0.4202 +vt 0.4016 0.4185 +vt 0.3978 0.3112 +vt 0.3977 0.3090 +vt 0.3334 0.3460 +vt 0.3337 0.3436 +vt 0.3340 0.3414 +vt 0.3342 0.3397 +vt 0.3978 0.2858 +vt 0.3977 0.2880 +vt 0.4059 0.4242 +vt 0.4055 0.4218 +vt 0.4052 0.4196 +vt 0.4049 0.4179 +vt 0.4011 0.3112 +vt 0.4009 0.3090 +vt 0.3299 0.3454 +vt 0.3303 0.3430 +vt 0.3307 0.3408 +vt 0.3310 0.3391 +vt 0.4011 0.2858 +vt 0.4009 0.2880 +vt 0.4092 0.4235 +vt 0.4087 0.4211 +vt 0.4082 0.4189 +vt 0.4078 0.4172 +vt 0.4041 0.3112 +vt 0.4039 0.3090 +vt 0.3267 0.3447 +vt 0.3272 0.3423 +vt 0.3276 0.3401 +vt 0.3280 0.3384 +vt 0.4041 0.2858 +vt 0.4039 0.2880 +vt 0.4122 0.4226 +vt 0.4115 0.4203 +vt 0.4110 0.4181 +vt 0.4105 0.4165 +vt 0.4068 0.3112 +vt 0.4065 0.3090 +vt 0.3239 0.3439 +vt 0.3245 0.3415 +vt 0.3250 0.3394 +vt 0.3254 0.3377 +vt 0.4067 0.2858 +vt 0.4065 0.2880 +vt 0.4092 0.4534 +vt 0.4120 0.4542 +vt 0.4114 0.4565 +vt 0.4087 0.4558 +vt 0.4109 0.4587 +vt 0.4082 0.4579 +vt 0.4104 0.4604 +vt 0.4078 0.4596 +vt 0.3189 0.2640 +vt 0.3163 0.2640 +vt 0.3165 0.2618 +vt 0.3191 0.2618 +vt 0.3237 0.3755 +vt 0.3267 0.3746 +vt 0.3272 0.3770 +vt 0.3243 0.3778 +vt 0.3276 0.3791 +vt 0.3249 0.3799 +vt 0.3280 0.3808 +vt 0.3254 0.3816 +vt 0.3163 0.2387 +vt 0.3189 0.2387 +vt 0.3191 0.2409 +vt 0.3165 0.2409 +vt 0.4059 0.4526 +vt 0.4055 0.4550 +vt 0.4052 0.4572 +vt 0.4049 0.4589 +vt 0.3219 0.2640 +vt 0.3221 0.2618 +vt 0.3299 0.3739 +vt 0.3303 0.3763 +vt 0.3307 0.3784 +vt 0.3310 0.3801 +vt 0.3219 0.2387 +vt 0.3221 0.2409 +vt 0.4025 0.4520 +vt 0.4022 0.4544 +vt 0.4019 0.4566 +vt 0.4016 0.4584 +vt 0.3252 0.2640 +vt 0.3253 0.2618 +vt 0.3334 0.3732 +vt 0.3337 0.3757 +vt 0.3340 0.3778 +vt 0.3342 0.3796 +vt 0.3252 0.2387 +vt 0.3253 0.2409 +vt 0.3989 0.4515 +vt 0.3986 0.4540 +vt 0.3984 0.4562 +vt 0.3982 0.4579 +vt 0.3286 0.2640 +vt 0.3287 0.2618 +vt 0.3370 0.3728 +vt 0.3372 0.3752 +vt 0.3374 0.3774 +vt 0.3376 0.3791 +vt 0.3286 0.2387 +vt 0.3287 0.2409 +vt 0.3952 0.4512 +vt 0.3950 0.4536 +vt 0.3949 0.4558 +vt 0.3948 0.4576 +vt 0.3320 0.2640 +vt 0.3321 0.2618 +vt 0.3407 0.3724 +vt 0.3408 0.3749 +vt 0.3410 0.3770 +vt 0.3411 0.3788 +vt 0.3320 0.2387 +vt 0.3321 0.2409 +vt 0.3916 0.4510 +vt 0.3915 0.4535 +vt 0.3914 0.4557 +vt 0.3914 0.4574 +vt 0.3355 0.2640 +vt 0.3355 0.2618 +vt 0.3443 0.3722 +vt 0.3444 0.3747 +vt 0.3444 0.3769 +vt 0.3445 0.3786 +vt 0.3355 0.2387 +vt 0.3355 0.2409 +vt 0.3880 0.4510 +vt 0.3881 0.4534 +vt 0.3881 0.4556 +vt 0.3881 0.4574 +vt 0.3387 0.2640 +vt 0.3387 0.2618 +vt 0.3478 0.3722 +vt 0.3478 0.3746 +vt 0.3478 0.3768 +vt 0.3478 0.3786 +vt 0.3387 0.2387 +vt 0.3387 0.2409 +vt 0.3847 0.4511 +vt 0.3848 0.4536 +vt 0.3850 0.4558 +vt 0.3851 0.4575 +vt 0.3418 0.2640 +vt 0.3417 0.2618 +vt 0.3512 0.3723 +vt 0.3510 0.3748 +vt 0.3509 0.3770 +vt 0.3508 0.3787 +vt 0.3418 0.2387 +vt 0.3417 0.2409 +vt 0.3816 0.4514 +vt 0.3819 0.4538 +vt 0.3821 0.4560 +vt 0.3823 0.4578 +vt 0.3445 0.2640 +vt 0.3443 0.2618 +vt 0.3540 0.3726 +vt 0.3538 0.3750 +vt 0.3536 0.3772 +vt 0.3535 0.3790 +vt 0.3444 0.2387 +vt 0.3443 0.2409 +vt 0.0414 0.7996 +vt 0.0409 0.8042 +vt 0.0303 0.8037 +vt 0.0311 0.7972 +vt 0.0205 0.8031 +vt 0.0214 0.7950 +vt 0.0001 0.8013 +vt 0.0012 0.7917 +vt 0.2083 0.7344 +vt 0.1987 0.7344 +vt 0.1984 0.7140 +vt 0.2090 0.7140 +vt 0.1981 0.7041 +vt 0.2095 0.7041 +vt 0.7502 0.7972 +vt 0.7509 0.8036 +vt 0.7599 0.7950 +vt 0.7608 0.8031 +vt 0.7801 0.7917 +vt 0.7812 0.8013 +vt 0.1987 0.4844 +vt 0.2083 0.4844 +vt 0.2090 0.5048 +vt 0.1984 0.5048 +vt 0.2095 0.5147 +vt 0.1981 0.5147 +vt 0.0422 0.7973 +vt 0.0326 0.7927 +vt 0.0237 0.7883 +vt 0.0018 0.7891 +vt 0.0047 0.7807 +vt 0.2193 0.7344 +vt 0.2109 0.7344 +vt 0.2102 0.7140 +vt 0.2200 0.7140 +vt 0.2098 0.7041 +vt 0.2204 0.7041 +vt 0.7486 0.7926 +vt 0.7576 0.7883 +vt 0.7765 0.7807 +vt 0.7795 0.7891 +vt 0.2109 0.4844 +vt 0.2193 0.4844 +vt 0.2200 0.5048 +vt 0.2102 0.5048 +vt 0.2204 0.5147 +vt 0.2098 0.5147 +vt 0.0435 0.7952 +vt 0.0352 0.7886 +vt 0.0274 0.7824 +vt 0.0059 0.7783 +vt 0.0106 0.7707 +vt 0.2293 0.7344 +vt 0.2217 0.7344 +vt 0.2211 0.7140 +vt 0.2299 0.7140 +vt 0.2207 0.7041 +vt 0.2303 0.7041 +vt 0.7461 0.7886 +vt 0.7538 0.7824 +vt 0.7706 0.7707 +vt 0.7754 0.7783 +vt 0.2217 0.4844 +vt 0.2293 0.4844 +vt 0.2299 0.5048 +vt 0.2211 0.5048 +vt 0.2303 0.5147 +vt 0.2207 0.5147 +vt 0.0452 0.7935 +vt 0.0386 0.7852 +vt 0.0324 0.7774 +vt 0.0123 0.7686 +vt 0.0186 0.7623 +vt 0.2477 0.7344 +vt 0.2327 0.7344 +vt 0.2315 0.7140 +vt 0.2490 0.7140 +vt 0.2307 0.7041 +vt 0.2497 0.7041 +vt 0.7427 0.7852 +vt 0.7489 0.7774 +vt 0.7626 0.7623 +vt 0.7690 0.7686 +vt 0.2327 0.4844 +vt 0.2477 0.4844 +vt 0.2490 0.5048 +vt 0.2315 0.5048 +vt 0.2497 0.5147 +vt 0.2307 0.5147 +vt 0.0473 0.7922 +vt 0.0427 0.7826 +vt 0.0384 0.7737 +vt 0.0207 0.7606 +vt 0.0283 0.7559 +vt 0.2939 1.0000 +vt 0.2863 1.0000 +vt 0.2857 0.9796 +vt 0.2945 0.9796 +vt 0.2853 0.9697 +vt 0.2949 0.9697 +vt 0.7386 0.7826 +vt 0.7429 0.7737 +vt 0.7530 0.7558 +vt 0.7605 0.7606 +vt 0.2863 0.7500 +vt 0.2939 0.7500 +vt 0.2945 0.7704 +vt 0.2857 0.7704 +vt 0.2949 0.7803 +vt 0.2853 0.7803 +vt 0.0496 0.7914 +vt 0.0472 0.7811 +vt 0.0450 0.7714 +vt 0.0307 0.7547 +vt 0.0391 0.7518 +vt 0.3047 1.0000 +vt 0.2963 1.0000 +vt 0.2956 0.9796 +vt 0.3054 0.9796 +vt 0.2952 0.9697 +vt 0.3058 0.9697 +vt 0.7341 0.7810 +vt 0.7363 0.7713 +vt 0.7421 0.7517 +vt 0.7506 0.7547 +vt 0.2963 0.7500 +vt 0.3047 0.7500 +vt 0.3054 0.7704 +vt 0.2956 0.7704 +vt 0.3058 0.7803 +vt 0.2952 0.7803 +vt 0.0543 0.7909 +vt 0.0537 0.7803 +vt 0.0531 0.7705 +vt 0.0417 0.7512 +vt 0.0513 0.7501 +vt 0.3169 1.0000 +vt 0.3073 1.0000 +vt 0.3066 0.9796 +vt 0.3172 0.9796 +vt 0.3061 0.9697 +vt 0.3175 0.9697 +vt 0.7276 0.7803 +vt 0.7281 0.7704 +vt 0.7300 0.7501 +vt 0.7395 0.7511 +vt 0.3073 0.7500 +vt 0.3169 0.7500 +vt 0.3172 0.7704 +vt 0.3066 0.7704 +vt 0.3175 0.7803 +vt 0.3061 0.7803 +vt 0.0496 0.9585 +vt 0.0543 0.9591 +vt 0.0537 0.9696 +vt 0.0472 0.9689 +vt 0.0531 0.9795 +vt 0.0450 0.9786 +vt 0.0513 0.9999 +vt 0.0417 0.9988 +vt 0.5156 0.5261 +vt 0.5156 0.5357 +vt 0.4952 0.5360 +vt 0.4952 0.5254 +vt 0.4853 0.5363 +vt 0.4853 0.5249 +vt 0.7341 0.9689 +vt 0.7276 0.9697 +vt 0.7363 0.9786 +vt 0.7281 0.9795 +vt 0.7395 0.9988 +vt 0.7300 0.9999 +vt 0.2656 0.5357 +vt 0.2656 0.5261 +vt 0.2860 0.5254 +vt 0.2860 0.5360 +vt 0.2959 0.5249 +vt 0.2959 0.5363 +vt 0.0473 0.9577 +vt 0.0427 0.9673 +vt 0.0384 0.9763 +vt 0.0391 0.9982 +vt 0.0307 0.9953 +vt 0.5156 0.5151 +vt 0.5156 0.5235 +vt 0.4952 0.5242 +vt 0.4952 0.5144 +vt 0.4853 0.5246 +vt 0.4853 0.5140 +vt 0.7386 0.9674 +vt 0.7429 0.9763 +vt 0.7506 0.9953 +vt 0.7421 0.9982 +vt 0.2656 0.5235 +vt 0.2656 0.5151 +vt 0.2860 0.5144 +vt 0.2860 0.5242 +vt 0.2959 0.5140 +vt 0.2959 0.5246 +vt 0.0452 0.9564 +vt 0.0386 0.9648 +vt 0.0324 0.9725 +vt 0.0283 0.9941 +vt 0.0207 0.9893 +vt 0.5156 0.5051 +vt 0.5156 0.5127 +vt 0.4952 0.5133 +vt 0.4952 0.5045 +vt 0.4853 0.5137 +vt 0.4853 0.5041 +vt 0.7427 0.9648 +vt 0.7489 0.9726 +vt 0.7605 0.9894 +vt 0.7530 0.9941 +vt 0.2656 0.5127 +vt 0.2656 0.5051 +vt 0.2860 0.5045 +vt 0.2860 0.5133 +vt 0.2959 0.5041 +vt 0.2959 0.5137 +vt 0.0435 0.9547 +vt 0.0352 0.9614 +vt 0.0274 0.9676 +vt 0.0186 0.9877 +vt 0.0123 0.9813 +vt 0.5156 0.4867 +vt 0.5156 0.5017 +vt 0.4952 0.5029 +vt 0.4952 0.4854 +vt 0.4853 0.5037 +vt 0.4853 0.4847 +vt 0.7461 0.9614 +vt 0.7538 0.9676 +vt 0.7690 0.9814 +vt 0.7626 0.9877 +vt 0.2656 0.5017 +vt 0.2656 0.4867 +vt 0.2860 0.4854 +vt 0.2860 0.5029 +vt 0.2959 0.4847 +vt 0.2959 0.5037 +vt 0.0422 0.9527 +vt 0.0326 0.9573 +vt 0.0237 0.9616 +vt 0.0106 0.9793 +vt 0.0059 0.9717 +vt 0.0283 0.7344 +vt 0.0207 0.7344 +vt 0.0201 0.7140 +vt 0.0289 0.7140 +vt 0.0197 0.7041 +vt 0.0293 0.7041 +vt 0.7486 0.9573 +vt 0.7576 0.9616 +vt 0.7754 0.9717 +vt 0.7706 0.9793 +vt 0.0207 0.4844 +vt 0.0283 0.4844 +vt 0.0289 0.5048 +vt 0.0201 0.5048 +vt 0.0293 0.5147 +vt 0.0197 0.5147 +vt 0.0414 0.9504 +vt 0.0311 0.9528 +vt 0.0214 0.9550 +vt 0.0047 0.9693 +vt 0.0018 0.9608 +vt 0.0391 0.7344 +vt 0.0307 0.7344 +vt 0.0300 0.7140 +vt 0.0398 0.7140 +vt 0.0296 0.7041 +vt 0.0402 0.7041 +vt 0.7502 0.9528 +vt 0.7599 0.9550 +vt 0.7795 0.9609 +vt 0.7765 0.9693 +vt 0.0307 0.4844 +vt 0.0391 0.4844 +vt 0.0398 0.5048 +vt 0.0300 0.5048 +vt 0.0402 0.5147 +vt 0.0296 0.5147 +vt 0.0409 0.9457 +vt 0.0303 0.9463 +vt 0.0205 0.9469 +vt 0.0012 0.9582 +vt 0.0001 0.9487 +vt 0.0513 0.7344 +vt 0.0417 0.7344 +vt 0.0410 0.7140 +vt 0.0516 0.7140 +vt 0.0405 0.7041 +vt 0.0519 0.7041 +vt 0.7509 0.9463 +vt 0.7608 0.9469 +vt 0.7812 0.9487 +vt 0.7801 0.9583 +vt 0.0417 0.4844 +vt 0.0513 0.4844 +vt 0.0516 0.5048 +vt 0.0410 0.5048 +vt 0.0519 0.5147 +vt 0.0405 0.5147 +vt 0.2085 0.9504 +vt 0.2091 0.9457 +vt 0.2197 0.9463 +vt 0.2189 0.9528 +vt 0.2295 0.9469 +vt 0.2286 0.9550 +vt 0.2499 0.9487 +vt 0.2488 0.9582 +vt 0.0000 0.4271 +vt 0.0000 0.4175 +vt 0.0204 0.4172 +vt 0.0204 0.4278 +vt 0.0303 0.4169 +vt 0.0303 0.4283 +vt 0.5623 0.9528 +vt 0.5616 0.9463 +vt 0.5526 0.9550 +vt 0.5517 0.9469 +vt 0.5324 0.9583 +vt 0.5313 0.9487 +vt 0.2500 0.4175 +vt 0.2500 0.4271 +vt 0.2296 0.4278 +vt 0.2296 0.4172 +vt 0.2197 0.4283 +vt 0.2197 0.4169 +vt 0.2077 0.9527 +vt 0.2173 0.9573 +vt 0.2263 0.9616 +vt 0.2482 0.9608 +vt 0.2453 0.9693 +vt 0.0000 0.4381 +vt 0.0000 0.4297 +vt 0.0204 0.4290 +vt 0.0204 0.4388 +vt 0.0303 0.4286 +vt 0.0303 0.4392 +vt 0.5639 0.9573 +vt 0.5549 0.9616 +vt 0.5359 0.9693 +vt 0.5330 0.9609 +vt 0.2500 0.4297 +vt 0.2500 0.4381 +vt 0.2296 0.4388 +vt 0.2296 0.4290 +vt 0.2197 0.4392 +vt 0.2197 0.4286 +vt 0.2065 0.9547 +vt 0.2148 0.9614 +vt 0.2225 0.9676 +vt 0.2441 0.9717 +vt 0.2393 0.9793 +vt 0.0000 0.4481 +vt 0.0000 0.4405 +vt 0.0204 0.4399 +vt 0.0204 0.4487 +vt 0.0303 0.4395 +vt 0.0303 0.4491 +vt 0.5664 0.9614 +vt 0.5587 0.9676 +vt 0.5419 0.9793 +vt 0.5371 0.9717 +vt 0.2500 0.4405 +vt 0.2500 0.4481 +vt 0.2296 0.4487 +vt 0.2296 0.4399 +vt 0.2197 0.4491 +vt 0.2197 0.4395 +vt 0.2047 0.9564 +vt 0.2114 0.9648 +vt 0.2176 0.9725 +vt 0.2377 0.9813 +vt 0.2314 0.9877 +vt 0.0000 0.4665 +vt 0.0000 0.4515 +vt 0.0204 0.4503 +vt 0.0204 0.4678 +vt 0.0303 0.4495 +vt 0.0303 0.4685 +vt 0.5698 0.9648 +vt 0.5636 0.9726 +vt 0.5498 0.9877 +vt 0.5435 0.9814 +vt 0.2500 0.4515 +vt 0.2500 0.4665 +vt 0.2296 0.4678 +vt 0.2296 0.4503 +vt 0.2197 0.4685 +vt 0.2197 0.4495 +vt 0.2027 0.9577 +vt 0.2073 0.9673 +vt 0.2116 0.9763 +vt 0.2293 0.9893 +vt 0.2217 0.9941 +vt 0.5156 0.7061 +vt 0.5156 0.7137 +vt 0.4952 0.7143 +vt 0.4952 0.7055 +vt 0.4853 0.7147 +vt 0.4853 0.7051 +vt 0.5739 0.9674 +vt 0.5696 0.9763 +vt 0.5595 0.9941 +vt 0.5519 0.9894 +vt 0.2656 0.7137 +vt 0.2656 0.7061 +vt 0.2860 0.7055 +vt 0.2860 0.7143 +vt 0.2959 0.7051 +vt 0.2959 0.7147 +vt 0.2004 0.9585 +vt 0.2028 0.9689 +vt 0.2050 0.9786 +vt 0.2193 0.9953 +vt 0.2109 0.9982 +vt 0.5156 0.6953 +vt 0.5156 0.7037 +vt 0.4952 0.7044 +vt 0.4952 0.6946 +vt 0.4853 0.7048 +vt 0.4853 0.6942 +vt 0.5784 0.9689 +vt 0.5762 0.9786 +vt 0.5704 0.9982 +vt 0.5619 0.9953 +vt 0.2656 0.7037 +vt 0.2656 0.6953 +vt 0.2860 0.6946 +vt 0.2860 0.7044 +vt 0.2959 0.6942 +vt 0.2959 0.7048 +vt 0.1957 0.9591 +vt 0.1963 0.9696 +vt 0.1969 0.9795 +vt 0.2082 0.9988 +vt 0.1987 0.9999 +vt 0.5156 0.6831 +vt 0.5156 0.6927 +vt 0.4952 0.6934 +vt 0.4952 0.6828 +vt 0.4853 0.6939 +vt 0.4853 0.6825 +vt 0.5849 0.9697 +vt 0.5843 0.9795 +vt 0.5825 0.9999 +vt 0.5730 0.9988 +vt 0.2656 0.6927 +vt 0.2656 0.6831 +vt 0.2860 0.6828 +vt 0.2860 0.6934 +vt 0.2959 0.6825 +vt 0.2959 0.6939 +vt 0.2004 0.7914 +vt 0.1957 0.7909 +vt 0.1963 0.7803 +vt 0.2028 0.7811 +vt 0.1969 0.7705 +vt 0.2050 0.7714 +vt 0.1987 0.7501 +vt 0.2082 0.7512 +vt 0.4739 1.0000 +vt 0.4643 1.0000 +vt 0.4640 0.9796 +vt 0.4746 0.9796 +vt 0.4637 0.9697 +vt 0.4751 0.9697 +vt 0.5784 0.7810 +vt 0.5849 0.7803 +vt 0.5762 0.7713 +vt 0.5843 0.7704 +vt 0.5730 0.7511 +vt 0.5825 0.7501 +vt 0.4643 0.7500 +vt 0.4739 0.7500 +vt 0.4746 0.7704 +vt 0.4640 0.7704 +vt 0.4751 0.7803 +vt 0.4637 0.7803 +vt 0.2027 0.7922 +vt 0.2073 0.7826 +vt 0.2116 0.7737 +vt 0.2109 0.7518 +vt 0.2193 0.7547 +vt 0.4849 1.0000 +vt 0.4765 1.0000 +vt 0.4758 0.9796 +vt 0.4856 0.9796 +vt 0.4754 0.9697 +vt 0.4860 0.9697 +vt 0.5739 0.7826 +vt 0.5696 0.7737 +vt 0.5619 0.7547 +vt 0.5704 0.7517 +vt 0.4765 0.7500 +vt 0.4849 0.7500 +vt 0.4856 0.7704 +vt 0.4758 0.7704 +vt 0.4860 0.7803 +vt 0.4754 0.7803 +vt 0.2047 0.7935 +vt 0.2114 0.7852 +vt 0.2176 0.7774 +vt 0.2217 0.7559 +vt 0.2293 0.7606 +vt 0.4949 1.0000 +vt 0.4873 1.0000 +vt 0.4867 0.9796 +vt 0.4955 0.9796 +vt 0.4863 0.9697 +vt 0.4959 0.9697 +vt 0.5698 0.7852 +vt 0.5636 0.7774 +vt 0.5519 0.7606 +vt 0.5595 0.7558 +vt 0.4873 0.7500 +vt 0.4949 0.7500 +vt 0.4955 0.7704 +vt 0.4867 0.7704 +vt 0.4959 0.7803 +vt 0.4863 0.7803 +vt 0.2065 0.7952 +vt 0.2148 0.7886 +vt 0.2225 0.7824 +vt 0.2314 0.7623 +vt 0.2377 0.7686 +vt 0.5133 1.0000 +vt 0.4983 1.0000 +vt 0.4971 0.9796 +vt 0.5146 0.9796 +vt 0.4963 0.9697 +vt 0.5153 0.9697 +vt 0.5664 0.7886 +vt 0.5587 0.7824 +vt 0.5435 0.7686 +vt 0.5498 0.7623 +vt 0.4983 0.7500 +vt 0.5133 0.7500 +vt 0.5146 0.7704 +vt 0.4971 0.7704 +vt 0.5153 0.7803 +vt 0.4963 0.7803 +vt 0.2077 0.7973 +vt 0.2173 0.7927 +vt 0.2263 0.7883 +vt 0.2393 0.7707 +vt 0.2441 0.7783 +vt 0.0000 0.2471 +vt 0.0000 0.2395 +vt 0.0204 0.2389 +vt 0.0204 0.2477 +vt 0.0303 0.2385 +vt 0.0303 0.2481 +vt 0.5639 0.7926 +vt 0.5549 0.7883 +vt 0.5371 0.7783 +vt 0.5419 0.7707 +vt 0.2500 0.2395 +vt 0.2500 0.2471 +vt 0.2296 0.2477 +vt 0.2296 0.2389 +vt 0.2197 0.2481 +vt 0.2197 0.2385 +vt 0.2085 0.7996 +vt 0.2189 0.7972 +vt 0.2286 0.7950 +vt 0.2453 0.7807 +vt 0.2482 0.7891 +vt 0.0000 0.2579 +vt 0.0000 0.2495 +vt 0.0204 0.2488 +vt 0.0204 0.2586 +vt 0.0303 0.2484 +vt 0.0303 0.2590 +vt 0.5623 0.7972 +vt 0.5526 0.7950 +vt 0.5330 0.7891 +vt 0.5359 0.7807 +vt 0.2500 0.2495 +vt 0.2500 0.2579 +vt 0.2296 0.2586 +vt 0.2296 0.2488 +vt 0.2197 0.2590 +vt 0.2197 0.2484 +vt 0.2091 0.8042 +vt 0.2197 0.8037 +vt 0.2295 0.8031 +vt 0.2488 0.7917 +vt 0.2499 0.8013 +vt 0.0000 0.2701 +vt 0.0000 0.2605 +vt 0.0204 0.2598 +vt 0.0204 0.2704 +vt 0.0303 0.2593 +vt 0.0303 0.2707 +vt 0.5616 0.8036 +vt 0.5517 0.8031 +vt 0.5313 0.8013 +vt 0.5324 0.7917 +vt 0.2500 0.2605 +vt 0.2500 0.2701 +vt 0.2296 0.2704 +vt 0.2296 0.2598 +vt 0.2197 0.2707 +vt 0.2197 0.2593 +vt 0.1980 0.7041 +vt 0.0520 0.7041 +vt 0.1977 0.7140 +vt 0.0523 0.7140 +vt 0.1974 0.7344 +vt 0.0526 0.7344 +vt 0.0000 0.9473 +vt 0.0000 0.8026 +vt 0.4636 0.9697 +vt 0.3176 0.9697 +vt 0.4633 0.9796 +vt 0.3179 0.9796 +vt 0.4630 1.0000 +vt 0.3182 1.0000 +vt 0.0526 0.7500 +vt 0.1973 0.7500 +vt 0.0303 0.4168 +vt 0.0303 0.2708 +vt 0.0204 0.4165 +vt 0.0204 0.2711 +vt 0.0000 0.4162 +vt 0.0000 0.2714 +vt 0.2500 0.8026 +vt 0.2500 0.9473 +vt 0.4853 0.5364 +vt 0.4853 0.6824 +vt 0.4952 0.5367 +vt 0.4952 0.6821 +vt 0.5156 0.5370 +vt 0.5156 0.6818 +vt 0.1973 0.9999 +vt 0.0526 0.9999 +vt 0.7812 0.8026 +vt 0.7812 0.9474 +vt 0.0526 0.4844 +vt 0.1974 0.4844 +vt 0.1977 0.5048 +vt 0.0523 0.5048 +vt 0.1980 0.5147 +vt 0.0520 0.5147 +vt 0.7286 1.0000 +vt 0.5839 1.0000 +vt 0.2656 0.6818 +vt 0.2656 0.5370 +vt 0.2860 0.5367 +vt 0.2860 0.6821 +vt 0.2959 0.5364 +vt 0.2959 0.6824 +vt 0.5312 0.9474 +vt 0.5312 0.8026 +vt 0.2500 0.2714 +vt 0.2500 0.4162 +vt 0.2296 0.4165 +vt 0.2296 0.2711 +vt 0.2197 0.4168 +vt 0.2197 0.2708 +vt 0.3176 0.7803 +vt 0.4636 0.7803 +vt 0.3179 0.7704 +vt 0.4633 0.7704 +vt 0.3182 0.7500 +vt 0.4630 0.7500 +vt 0.5839 0.7500 +vt 0.7286 0.7500 +vt 0.7266 0.2969 +vt 0.7266 0.2812 +vt 0.7422 0.2812 +vt 0.7422 0.2969 +vt 0.7109 0.2969 +vt 0.7109 0.2812 +vt 0.6953 0.2969 +vt 0.6953 0.2812 +vt 0.6797 0.2969 +vt 0.6797 0.2812 +vt 0.6641 0.2969 +vt 0.6641 0.2812 +vt 0.6484 0.2969 +vt 0.6484 0.2812 +vt 0.6328 0.2969 +vt 0.6328 0.2812 +vt 0.6172 0.2969 +vt 0.6172 0.2812 +vt 0.6016 0.2969 +vt 0.6016 0.2812 +vt 0.5859 0.2969 +vt 0.5859 0.2812 +vt 0.5703 0.2969 +vt 0.5703 0.2812 +vt 0.5547 0.2969 +vt 0.5547 0.2812 +vt 0.5391 0.2969 +vt 0.5391 0.2812 +vt 0.5234 0.2969 +vt 0.5234 0.2812 +vt 0.5078 0.2969 +vt 0.5078 0.2812 +vt 0.4922 0.2969 +vt 0.4922 0.2812 +vt 0.9766 0.2969 +vt 0.9766 0.2812 +vt 0.9922 0.2812 +vt 0.9922 0.2969 +vt 0.9609 0.2969 +vt 0.9609 0.2812 +vt 0.9453 0.2969 +vt 0.9453 0.2812 +vt 0.9297 0.2969 +vt 0.9297 0.2812 +vt 0.8984 0.2969 +vt 0.8984 0.2812 +vt 0.9141 0.2812 +vt 0.9141 0.2969 +vt 0.8828 0.2969 +vt 0.8828 0.2812 +vt 0.8672 0.2969 +vt 0.8672 0.2812 +vt 0.8516 0.2969 +vt 0.8516 0.2812 +vt 0.8359 0.2969 +vt 0.8359 0.2812 +vt 0.8047 0.2969 +vt 0.8047 0.2812 +vt 0.8203 0.2812 +vt 0.8203 0.2969 +vt 0.7891 0.2969 +vt 0.7891 0.2812 +vt 0.7734 0.2969 +vt 0.7734 0.2812 +vt 0.7120 0.2565 +vt 0.7120 0.2493 +vt 0.7274 0.2493 +vt 0.7274 0.2564 +vt 0.7428 0.2565 +vt 0.7428 0.2493 +vt 0.7582 0.2564 +vt 0.7582 0.2493 +vt 0.7736 0.2564 +vt 0.7736 0.2493 +vt 0.7890 0.2565 +vt 0.7890 0.2493 +vt 0.8044 0.2565 +vt 0.8044 0.2493 +vt 0.8198 0.2493 +vt 0.8198 0.2565 +vt 0.8352 0.2565 +vt 0.8352 0.2494 +vt 0.8506 0.2566 +vt 0.8507 0.2494 +vt 0.8660 0.2567 +vt 0.8661 0.2494 +vt 0.8816 0.2495 +vt 0.8815 0.2567 +vt 0.8970 0.2495 +vt 0.8970 0.2567 +vt 0.9124 0.2567 +vt 0.9125 0.2495 +vt 0.9279 0.2495 +vt 0.9279 0.2567 +vt 0.9434 0.2495 +vt 0.9434 0.2567 +vt 0.9590 0.2567 +vt 0.9588 0.2495 +vt 0.9742 0.2494 +vt 0.9747 0.2566 +vt 0.9905 0.2563 +vt 0.9894 0.2492 +vt 0.4951 0.2563 +vt 0.4962 0.2492 +vt 0.5114 0.2493 +vt 0.5109 0.2566 +vt 0.5267 0.2567 +vt 0.5269 0.2494 +vt 0.5424 0.2495 +vt 0.5424 0.2567 +vt 0.5579 0.2494 +vt 0.5579 0.2566 +vt 0.5733 0.2494 +vt 0.5734 0.2566 +vt 0.5887 0.2494 +vt 0.5888 0.2566 +vt 0.6041 0.2494 +vt 0.6042 0.2565 +vt 0.6195 0.2493 +vt 0.6195 0.2565 +vt 0.6503 0.2565 +vt 0.6349 0.2565 +vt 0.6349 0.2493 +vt 0.6503 0.2493 +vt 0.6811 0.2565 +vt 0.6657 0.2564 +vt 0.6657 0.2493 +vt 0.6811 0.2493 +vt 0.6966 0.2565 +vt 0.6966 0.2493 +vt 0.8826 0.0183 +vt 0.8672 0.0183 +vt 0.8673 0.0112 +vt 0.8519 0.0183 +vt 0.8519 0.0112 +vt 0.8826 0.0111 +vt 0.8980 0.0111 +vt 0.8979 0.0183 +vt 0.8366 0.0183 +vt 0.8213 0.0183 +vt 0.8367 0.0112 +vt 0.9134 0.0112 +vt 0.9133 0.0183 +vt 0.8214 0.0111 +vt 0.9287 0.0112 +vt 0.9286 0.0183 +vt 0.8061 0.0111 +vt 0.8060 0.0182 +vt 0.8359 0.2969 +vt 0.8359 0.2812 +vt 0.8516 0.2812 +vt 0.8516 0.2969 +vt 0.8828 0.2969 +vt 0.8828 0.2812 +vt 0.8984 0.2812 +vt 0.8984 0.2969 +vt 0.9442 0.0112 +vt 0.9439 0.0184 +vt 0.8203 0.2969 +vt 0.8203 0.2812 +vt 0.7907 0.0111 +vt 0.7906 0.0182 +vt 0.9141 0.2812 +vt 0.9141 0.2969 +vt 0.9596 0.0113 +vt 0.9592 0.0184 +vt 0.8047 0.2969 +vt 0.8047 0.2812 +vt 0.7754 0.0110 +vt 0.7753 0.0181 +vt 0.7891 0.2969 +vt 0.7891 0.2812 +vt 0.9750 0.0115 +vt 0.9743 0.0186 +vt 0.7578 0.2969 +vt 0.7578 0.2812 +vt 0.7734 0.2812 +vt 0.7734 0.2969 +vt 0.7600 0.0110 +vt 0.7599 0.0181 +vt 0.9297 0.2812 +vt 0.9297 0.2969 +vt 0.9905 0.0118 +vt 0.9892 0.0188 +vt 0.7422 0.2969 +vt 0.7422 0.2812 +vt 0.7446 0.0109 +vt 0.7446 0.0180 +vt 0.9453 0.2812 +vt 0.9453 0.2969 +vt 0.5119 0.0099 +vt 0.5123 0.0172 +vt 0.4968 0.0174 +vt 0.4958 0.0101 +vt 0.7578 0.2812 +vt 0.7578 0.2969 +vt 0.7266 0.2969 +vt 0.7266 0.2812 +vt 0.5901 0.0174 +vt 0.5746 0.0173 +vt 0.7293 0.0109 +vt 0.7292 0.0180 +vt 0.9609 0.2812 +vt 0.9609 0.2969 +vt 0.5279 0.0099 +vt 0.5279 0.0172 +vt 0.7109 0.2969 +vt 0.7109 0.2812 +vt 0.7139 0.0108 +vt 0.7138 0.0180 +vt 0.9766 0.2812 +vt 0.9766 0.2969 +vt 0.5437 0.0099 +vt 0.5436 0.0172 +vt 0.6953 0.2969 +vt 0.6953 0.2812 +vt 0.6985 0.0107 +vt 0.6984 0.0179 +vt 0.4922 0.2969 +vt 0.4922 0.2812 +vt 0.5078 0.2812 +vt 0.5078 0.2969 +vt 0.5593 0.0100 +vt 0.5591 0.0173 +vt 0.9922 0.2812 +vt 0.9922 0.2969 +vt 0.6831 0.0107 +vt 0.6830 0.0178 +vt 0.5234 0.2812 +vt 0.5234 0.2969 +vt 0.8672 0.2812 +vt 0.8672 0.2969 +vt 0.5748 0.0101 +vt 0.6797 0.2969 +vt 0.6797 0.2812 +vt 0.6521 0.0177 +vt 0.6676 0.0178 +vt 0.6677 0.0106 +vt 0.5391 0.2812 +vt 0.5391 0.2969 +vt 0.5903 0.0102 +vt 0.6641 0.2969 +vt 0.6641 0.2812 +vt 0.6523 0.0105 +vt 0.5547 0.2812 +vt 0.5547 0.2969 +vt 0.6059 0.0102 +vt 0.6057 0.0175 +vt 0.6484 0.2969 +vt 0.6484 0.2812 +vt 0.6369 0.0104 +vt 0.6367 0.0176 +vt 0.5703 0.2812 +vt 0.5703 0.2969 +vt 0.6214 0.0103 +vt 0.6212 0.0175 +vt 0.6328 0.2969 +vt 0.6328 0.2812 +vt 0.6172 0.2969 +vt 0.6172 0.2812 +vt 0.5859 0.2812 +vt 0.5859 0.2969 +vt 0.6016 0.2969 +vt 0.6016 0.2812 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vn -0.0000 0.0000 -1.0000 +vn 0.0000 0.0000 1.0000 +vn -0.1120 0.0000 0.9937 +vn -0.1120 -0.0000 -0.9937 +vn 0.9937 0.0000 0.1120 +vn -0.9937 0.0000 -0.1120 +vn 0.3303 0.0000 0.9439 +vn 0.1120 -0.0000 -0.9937 +vn 0.8467 0.0000 -0.5320 +vn 0.7071 0.0000 -0.7071 +vn 0.5320 -0.0000 -0.8467 +vn 0.3303 -0.0000 -0.9439 +vn 0.9439 0.0000 -0.3303 +vn 0.5320 0.0000 0.8467 +vn 0.7071 0.0000 0.7071 +vn 0.8467 0.0000 0.5320 +vn 0.9439 0.0000 0.3303 +vn -0.9937 -0.0000 0.1120 +vn 1.0000 0.0000 0.0000 +vn -1.0000 -0.0000 -0.0000 +vn -0.8467 0.0000 0.5320 +vn -0.7071 0.0000 0.7071 +vn -0.5320 0.0000 0.8467 +vn -0.3303 0.0000 0.9439 +vn 0.0000 -1.0000 0.0000 +vn -0.9439 0.0000 0.3303 +vn -0.5320 -0.0000 -0.8467 +vn -0.7071 -0.0000 -0.7071 +vn -0.8467 -0.0000 -0.5320 +vn -0.9439 -0.0000 -0.3303 +vn 0.9937 -0.0000 -0.1120 +vn -0.3303 -0.0000 -0.9439 +vn 0.1120 0.0000 0.9937 +vn -0.5000 0.0000 0.8660 +vn -0.8660 0.0000 0.5000 +vn -0.8660 0.0000 -0.5000 +vn -0.5000 0.0000 -0.8660 +vn 0.5000 0.0000 -0.8660 +vn 0.8660 0.0000 -0.5000 +vn 0.8660 0.0000 0.5000 +vn 0.5000 0.0000 0.8660 +vn -0.5556 0.0000 0.8315 +vn -0.8315 0.0000 0.5556 +vn -0.9239 0.0000 0.3827 +vn -0.9808 0.0000 0.1951 +vn -0.9808 0.0000 -0.1951 +vn -0.9239 0.0000 -0.3827 +vn -0.8315 0.0000 -0.5556 +vn -0.5556 0.0000 -0.8315 +vn -0.3827 0.0000 -0.9239 +vn -0.1951 0.0000 -0.9808 +vn 0.1951 0.0000 -0.9808 +vn 0.2865 0.0000 -0.9581 +vn 0.9937 0.0000 -0.1118 +vn 0.0183 -0.0000 0.9998 +vn 0.2865 0.0000 0.9581 +vn 0.0000 1.0000 0.0000 +vn 0.3413 0.0000 -0.9399 +vn 0.9937 0.0000 0.1118 +vn 0.9444 0.0000 -0.3289 +vn 0.8487 -0.0000 -0.5288 +vn 0.7118 -0.0000 -0.7024 +vn 0.5400 -0.0000 -0.8417 +vn 0.0340 0.0000 -0.9994 +vn 0.9444 -0.0000 0.3289 +vn -0.1060 0.0000 0.9944 +vn 0.3413 0.0000 0.9399 +vn 0.5400 0.0000 0.8417 +vn 0.7118 0.0000 0.7024 +vn 0.8487 -0.0000 0.5288 +vn 0.0340 0.0000 0.9994 +vn 0.1951 0.0000 0.9808 +vn -0.0063 -0.0000 -1.0000 +vn -0.1951 0.0000 0.9808 +vn -0.1060 0.0000 -0.9944 +vn -0.0261 -0.0000 -0.9997 +vn -0.0439 -0.0000 -0.9990 +vn -0.0618 -0.0000 -0.9981 +vn -0.0815 -0.0000 -0.9967 +vn -0.0894 0.0000 0.9960 +vn -0.1217 0.0000 -0.9926 +vn -0.1217 0.0000 0.9926 +vn -0.0618 0.0000 0.9981 +vn -0.0439 0.0000 0.9990 +vn -0.0261 0.0000 0.9997 +vn -0.0063 0.0000 1.0000 +vn 0.0183 -0.0000 -0.9998 +vn -0.0815 0.0000 0.9967 +vn 0.1249 0.0000 0.9922 +vn 0.2553 -0.0000 -0.9669 +vn 0.0083 -0.0000 -1.0000 +vn 0.0474 -0.0000 -0.9989 +vn 0.0842 -0.0000 -0.9964 +vn 0.1209 -0.0000 -0.9927 +vn 0.1597 -0.0000 -0.9872 +vn 0.2031 -0.0000 -0.9792 +vn -0.0359 -0.0000 -0.9994 +vn -0.0359 0.0000 0.9994 +vn -0.0894 -0.0000 -0.9960 +vn 0.2031 -0.0000 0.9792 +vn 0.1597 0.0000 0.9872 +vn 0.1209 -0.0000 0.9927 +vn 0.0842 0.0000 0.9964 +vn 0.0474 0.0000 0.9989 +vn 0.0083 0.0000 1.0000 +vn 0.2553 0.0000 0.9669 +vn 0.1249 0.0000 -0.9922 +vn -0.3827 0.0000 0.9239 +vn -0.1927 -0.1564 0.9687 +vn -0.1738 -0.4540 0.8739 +vn -0.1380 -0.7071 0.6935 +vn -0.0886 -0.8910 0.4453 +vn -0.0305 -0.9877 0.1534 +vn -0.1927 0.1564 0.9687 +vn -0.1738 0.4540 0.8739 +vn -0.1379 0.7071 0.6935 +vn -0.0886 0.8910 0.4453 +vn -0.0305 0.9877 0.1534 +vn -0.3780 -0.1564 0.9125 +vn -0.3410 -0.4540 0.8232 +vn -0.2706 -0.7071 0.6533 +vn -0.1737 -0.8910 0.4194 +vn -0.0599 -0.9877 0.1445 +vn -0.3780 0.1564 0.9125 +vn -0.3410 0.4540 0.8232 +vn -0.2706 0.7071 0.6533 +vn -0.1737 0.8910 0.4194 +vn -0.0599 0.9877 0.1445 +vn -0.5487 -0.1564 0.8212 +vn -0.4950 -0.4540 0.7408 +vn -0.3928 -0.7071 0.5879 +vn -0.2522 -0.8910 0.3775 +vn -0.0869 -0.9877 0.1301 +vn -0.5487 0.1564 0.8212 +vn -0.4950 0.4540 0.7408 +vn -0.3928 0.7071 0.5879 +vn -0.2522 0.8910 0.3775 +vn -0.0869 0.9877 0.1301 +vn -0.6984 -0.1564 0.6984 +vn -0.6300 -0.4540 0.6300 +vn -0.5000 -0.7071 0.5000 +vn -0.3210 -0.8910 0.3210 +vn -0.1106 -0.9877 0.1106 +vn -0.6984 0.1564 0.6984 +vn -0.6300 0.4540 0.6300 +vn -0.5000 0.7071 0.5000 +vn -0.3210 0.8910 0.3210 +vn -0.1106 0.9877 0.1106 +vn -0.8212 -0.1564 0.5487 +vn -0.7408 -0.4540 0.4950 +vn -0.5879 -0.7071 0.3928 +vn -0.3775 -0.8910 0.2522 +vn -0.1301 -0.9877 0.0869 +vn -0.8212 0.1564 0.5487 +vn -0.7408 0.4540 0.4950 +vn -0.5879 0.7071 0.3928 +vn -0.3775 0.8910 0.2522 +vn -0.1301 0.9877 0.0869 +vn -0.9125 -0.1564 0.3780 +vn -0.8232 -0.4540 0.3410 +vn -0.6533 -0.7071 0.2706 +vn -0.4194 -0.8910 0.1737 +vn -0.1445 -0.9877 0.0599 +vn -0.9125 0.1564 0.3780 +vn -0.8232 0.4540 0.3410 +vn -0.6533 0.7071 0.2706 +vn -0.4194 0.8910 0.1737 +vn -0.1445 0.9877 0.0599 +vn -0.9687 -0.1564 0.1927 +vn -0.8739 -0.4540 0.1738 +vn -0.6935 -0.7071 0.1379 +vn -0.4453 -0.8910 0.0886 +vn -0.1534 -0.9877 0.0305 +vn -0.9687 0.1564 0.1927 +vn -0.8739 0.4540 0.1738 +vn -0.6935 0.7071 0.1379 +vn -0.4453 0.8910 0.0886 +vn -0.1534 0.9877 0.0305 +vn -0.9877 -0.1564 0.0000 +vn -0.8910 -0.4540 0.0000 +vn -0.7071 -0.7071 0.0000 +vn -0.4540 -0.8910 -0.0000 +vn -0.1564 -0.9877 0.0000 +vn -0.9877 0.1564 0.0000 +vn -0.8910 0.4540 0.0000 +vn -0.7071 0.7071 -0.0000 +vn -0.4540 0.8910 -0.0000 +vn -0.1564 0.9877 -0.0000 +vn -0.9687 -0.1564 -0.1927 +vn -0.8739 -0.4540 -0.1738 +vn -0.6935 -0.7071 -0.1379 +vn -0.4453 -0.8910 -0.0886 +vn -0.1534 -0.9877 -0.0305 +vn -0.9687 0.1564 -0.1927 +vn -0.8739 0.4540 -0.1738 +vn -0.6935 0.7071 -0.1379 +vn -0.4453 0.8910 -0.0886 +vn -0.1534 0.9877 -0.0305 +vn -0.9125 -0.1564 -0.3780 +vn -0.8232 -0.4540 -0.3410 +vn -0.6533 -0.7071 -0.2706 +vn -0.4194 -0.8910 -0.1737 +vn -0.1445 -0.9877 -0.0599 +vn -0.9125 0.1564 -0.3780 +vn -0.8232 0.4540 -0.3410 +vn -0.6533 0.7071 -0.2706 +vn -0.4194 0.8910 -0.1737 +vn -0.1445 0.9877 -0.0599 +vn -0.8212 -0.1564 -0.5487 +vn -0.7408 -0.4540 -0.4950 +vn -0.5879 -0.7071 -0.3928 +vn -0.3775 -0.8910 -0.2522 +vn -0.1301 -0.9877 -0.0869 +vn -0.8212 0.1564 -0.5487 +vn -0.7408 0.4540 -0.4950 +vn -0.5879 0.7071 -0.3928 +vn -0.3775 0.8910 -0.2522 +vn -0.1301 0.9877 -0.0869 +vn -0.6984 -0.1564 -0.6984 +vn -0.6300 -0.4540 -0.6300 +vn -0.5000 -0.7071 -0.5000 +vn -0.3210 -0.8910 -0.3210 +vn -0.1106 -0.9877 -0.1106 +vn -0.6984 0.1564 -0.6984 +vn -0.6300 0.4540 -0.6300 +vn -0.5000 0.7071 -0.5000 +vn -0.3210 0.8910 -0.3210 +vn -0.1106 0.9877 -0.1106 +vn -0.5487 -0.1564 -0.8212 +vn -0.4950 -0.4540 -0.7408 +vn -0.3928 -0.7071 -0.5879 +vn -0.2522 -0.8910 -0.3775 +vn -0.0869 -0.9877 -0.1301 +vn -0.5487 0.1564 -0.8212 +vn -0.4950 0.4540 -0.7408 +vn -0.3928 0.7071 -0.5879 +vn -0.2522 0.8910 -0.3775 +vn -0.0869 0.9877 -0.1301 +vn -0.3780 -0.1564 -0.9125 +vn -0.3410 -0.4540 -0.8232 +vn -0.2706 -0.7071 -0.6533 +vn -0.1737 -0.8910 -0.4194 +vn -0.0599 -0.9877 -0.1445 +vn -0.3780 0.1564 -0.9125 +vn -0.3410 0.4540 -0.8232 +vn -0.2706 0.7071 -0.6533 +vn -0.1737 0.8910 -0.4194 +vn -0.0599 0.9877 -0.1445 +vn -0.1927 -0.1564 -0.9687 +vn -0.1738 -0.4540 -0.8739 +vn -0.1379 -0.7071 -0.6935 +vn -0.0886 -0.8910 -0.4453 +vn -0.0305 -0.9877 -0.1534 +vn -0.1927 0.1564 -0.9687 +vn -0.1738 0.4540 -0.8739 +vn -0.1379 0.7071 -0.6935 +vn -0.0886 0.8910 -0.4453 +vn -0.0305 0.9877 -0.1534 +vn 0.0000 -0.1564 -0.9877 +vn 0.0000 -0.4540 -0.8910 +vn 0.0000 -0.7071 -0.7071 +vn 0.0000 -0.8910 -0.4540 +vn 0.0000 -0.9877 -0.1564 +vn 0.0000 0.1564 -0.9877 +vn 0.0000 0.4540 -0.8910 +vn 0.0000 0.7071 -0.7071 +vn 0.0000 0.8910 -0.4540 +vn 0.0000 0.9877 -0.1564 +vn 0.1927 -0.1564 -0.9687 +vn 0.1738 -0.4540 -0.8739 +vn 0.1380 -0.7071 -0.6935 +vn 0.0886 -0.8910 -0.4453 +vn 0.0305 -0.9877 -0.1534 +vn 0.1927 0.1564 -0.9687 +vn 0.1738 0.4540 -0.8739 +vn 0.1379 0.7071 -0.6935 +vn 0.0886 0.8910 -0.4453 +vn 0.0305 0.9877 -0.1534 +vn 0.1927 -0.1564 0.9687 +vn 0.1738 -0.4540 0.8739 +vn 0.1379 -0.7071 0.6935 +vn 0.0886 -0.8910 0.4453 +vn 0.0305 -0.9877 0.1534 +vn 0.1927 0.1564 0.9687 +vn 0.1738 0.4540 0.8739 +vn 0.1379 0.7071 0.6935 +vn 0.0886 0.8910 0.4453 +vn 0.0305 0.9877 0.1534 +vn -0.0000 -0.1564 0.9877 +vn -0.0000 -0.4540 0.8910 +vn -0.0000 -0.7071 0.7071 +vn -0.0000 -0.8910 0.4540 +vn -0.0000 -0.9877 0.1564 +vn -0.0000 0.1564 0.9877 +vn -0.0000 0.4540 0.8910 +vn -0.0000 0.7071 0.7071 +vn -0.0000 0.8910 0.4540 +vn -0.0000 0.9877 0.1564 +vn 0.1555 0.9877 -0.0175 +vn 0.4511 0.8910 -0.0508 +vn 0.7027 0.7071 -0.0791 +vn 0.8854 0.4540 -0.0996 +vn 0.9815 0.1564 -0.1104 +vn 0.1555 -0.9877 -0.0175 +vn 0.4511 -0.8910 -0.0508 +vn 0.7027 -0.7071 -0.0791 +vn 0.8854 -0.4540 -0.0996 +vn 0.9815 -0.1564 -0.1104 +vn 0.1477 0.9877 -0.0514 +vn 0.4287 0.8910 -0.1493 +vn 0.6678 0.7071 -0.2326 +vn 0.8414 0.4540 -0.2931 +vn 0.9327 0.1564 -0.3248 +vn 0.1477 -0.9877 -0.0514 +vn 0.4287 -0.8910 -0.1493 +vn 0.6678 -0.7071 -0.2326 +vn 0.8414 -0.4540 -0.2931 +vn 0.9327 -0.1564 -0.3248 +vn 0.1328 0.9877 -0.0827 +vn 0.3853 0.8910 -0.2401 +vn 0.6001 0.7071 -0.3740 +vn 0.7562 0.4540 -0.4712 +vn 0.8383 0.1564 -0.5223 +vn 0.1328 -0.9877 -0.0827 +vn 0.3853 -0.8910 -0.2401 +vn 0.6001 -0.7071 -0.3740 +vn 0.7562 -0.4540 -0.4712 +vn 0.8383 -0.1564 -0.5223 +vn 0.1113 0.9877 -0.1099 +vn 0.3231 0.8910 -0.3189 +vn 0.5033 0.7071 -0.4967 +vn 0.6342 0.4540 -0.6259 +vn 0.7030 0.1564 -0.6938 +vn 0.1113 -0.9877 -0.1099 +vn 0.3231 -0.8910 -0.3189 +vn 0.5033 -0.7071 -0.4967 +vn 0.6342 -0.4540 -0.6259 +vn 0.7030 -0.1564 -0.6938 +vn 0.0845 0.9877 -0.1317 +vn 0.2452 0.8910 -0.3821 +vn 0.3818 0.7071 -0.5951 +vn 0.4812 0.4540 -0.7499 +vn 0.5334 0.1564 -0.8313 +vn 0.0845 -0.9877 -0.1317 +vn 0.2452 -0.8910 -0.3821 +vn 0.3818 -0.7071 -0.5951 +vn 0.4812 -0.4540 -0.7499 +vn 0.5334 -0.1564 -0.8313 +vn 0.0534 0.9877 -0.1470 +vn 0.1550 0.8910 -0.4267 +vn 0.2414 0.7071 -0.6646 +vn 0.3041 0.4540 -0.8375 +vn 0.3371 0.1564 -0.9284 +vn 0.0534 -0.9877 -0.1470 +vn 0.1550 -0.8910 -0.4267 +vn 0.2414 -0.7071 -0.6646 +vn 0.3041 -0.4540 -0.8375 +vn 0.3371 -0.1564 -0.9284 +vn 0.0195 0.9877 -0.1552 +vn 0.0567 0.8910 -0.4504 +vn 0.0883 0.7071 -0.7016 +vn 0.1113 0.4540 -0.8840 +vn 0.1234 0.1564 -0.9800 +vn 0.0195 -0.9877 -0.1552 +vn 0.0567 -0.8910 -0.4504 +vn 0.0883 -0.7071 -0.7016 +vn 0.1113 -0.4540 -0.8840 +vn 0.1234 -0.1564 -0.9800 +vn 0.0195 0.9877 0.1552 +vn 0.0567 0.8910 0.4504 +vn 0.0883 0.7071 0.7016 +vn 0.1113 0.4540 0.8840 +vn 0.1234 0.1564 0.9800 +vn 0.0195 -0.9877 0.1552 +vn 0.0567 -0.8910 0.4504 +vn 0.0883 -0.7071 0.7016 +vn 0.1113 -0.4540 0.8840 +vn 0.1234 -0.1564 0.9800 +vn 0.0534 0.9877 0.1470 +vn 0.1550 0.8910 0.4267 +vn 0.2414 0.7071 0.6646 +vn 0.3041 0.4540 0.8375 +vn 0.3371 0.1564 0.9284 +vn 0.0534 -0.9877 0.1470 +vn 0.1550 -0.8910 0.4267 +vn 0.2414 -0.7071 0.6646 +vn 0.3041 -0.4540 0.8375 +vn 0.3371 -0.1564 0.9284 +vn 0.0845 0.9877 0.1317 +vn 0.2452 0.8910 0.3821 +vn 0.3818 0.7071 0.5951 +vn 0.4812 0.4540 0.7499 +vn 0.5334 0.1564 0.8313 +vn 0.0845 -0.9877 0.1317 +vn 0.2452 -0.8910 0.3821 +vn 0.3818 -0.7071 0.5951 +vn 0.4812 -0.4540 0.7499 +vn 0.5334 -0.1564 0.8313 +vn 0.1113 0.9877 0.1099 +vn 0.3231 0.8910 0.3189 +vn 0.5033 0.7071 0.4967 +vn 0.6342 0.4540 0.6259 +vn 0.7030 0.1564 0.6938 +vn 0.1113 -0.9877 0.1099 +vn 0.3231 -0.8910 0.3189 +vn 0.5033 -0.7071 0.4967 +vn 0.6342 -0.4540 0.6259 +vn 0.7030 -0.1564 0.6938 +vn 0.1328 0.9877 0.0827 +vn 0.3853 0.8910 0.2401 +vn 0.6001 0.7071 0.3740 +vn 0.7562 0.4540 0.4712 +vn 0.8383 0.1564 0.5223 +vn 0.1328 -0.9877 0.0827 +vn 0.3853 -0.8910 0.2401 +vn 0.6001 -0.7071 0.3740 +vn 0.7562 -0.4540 0.4712 +vn 0.8383 -0.1564 0.5223 +vn 0.1477 0.9877 0.0515 +vn 0.4287 0.8910 0.1493 +vn 0.6678 0.7071 0.2326 +vn 0.8414 0.4540 0.2931 +vn 0.9327 0.1564 0.3248 +vn 0.1477 -0.9877 0.0514 +vn 0.4287 -0.8910 0.1493 +vn 0.6678 -0.7071 0.2326 +vn 0.8414 -0.4540 0.2931 +vn 0.9327 -0.1564 0.3248 +vn 0.1555 0.9877 0.0175 +vn 0.4511 0.8910 0.0508 +vn 0.7027 0.7071 0.0790 +vn 0.8854 0.4540 0.0996 +vn 0.9815 0.1564 0.1104 +vn 0.1555 -0.9877 0.0175 +vn 0.4511 -0.8910 0.0508 +vn 0.7027 -0.7071 0.0791 +vn 0.8854 -0.4540 0.0996 +vn 0.9815 -0.1564 0.1104 +vn 0.1564 0.9877 0.0000 +vn 0.4540 0.8910 0.0000 +vn 0.7071 0.7071 0.0000 +vn 0.8910 0.4540 0.0000 +vn 0.9877 0.1564 0.0000 +vn 0.1564 -0.9877 0.0000 +vn 0.4540 -0.8910 0.0000 +vn 0.7071 -0.7071 0.0000 +vn 0.8910 -0.4540 0.0000 +vn 0.9877 -0.1564 0.0000 +vn 0.0029 0.9877 -0.1564 +vn 0.0084 0.8910 -0.4540 +vn 0.0130 0.7071 -0.7070 +vn 0.0163 0.4539 -0.8909 +vn 0.0181 0.1564 -0.9875 +vn 0.0028 -0.9877 -0.1564 +vn 0.0083 -0.8910 -0.4539 +vn 0.0129 -0.7071 -0.7070 +vn 0.0163 -0.4540 -0.8909 +vn 0.0181 -0.1564 -0.9875 +vn -0.0010 0.9877 -0.1564 +vn -0.0028 0.8910 -0.4540 +vn -0.0044 0.7071 -0.7071 +vn -0.0056 0.4540 -0.8910 +vn -0.0062 0.1564 -0.9877 +vn -0.0010 -0.9877 -0.1565 +vn -0.0030 -0.8910 -0.4540 +vn -0.0046 -0.7071 -0.7071 +vn -0.0057 -0.4539 -0.8910 +vn -0.0063 -0.1564 -0.9877 +vn -0.0041 0.9877 -0.1564 +vn -0.0118 0.8910 -0.4539 +vn -0.0184 0.7071 -0.7069 +vn -0.0233 0.4540 -0.8907 +vn -0.0258 0.1564 -0.9874 +vn -0.0041 -0.9877 -0.1564 +vn -0.0119 -0.8910 -0.4539 +vn -0.0185 -0.7071 -0.7069 +vn -0.0233 -0.4540 -0.8907 +vn -0.0258 -0.1564 -0.9874 +vn -0.0069 0.9877 -0.1563 +vn -0.0199 0.8910 -0.4536 +vn -0.0310 0.7071 -0.7065 +vn -0.0391 0.4540 -0.8902 +vn -0.0434 0.1564 -0.9867 +vn -0.0069 -0.9877 -0.1563 +vn -0.0200 -0.8910 -0.4536 +vn -0.0311 -0.7071 -0.7064 +vn -0.0392 -0.4540 -0.8902 +vn -0.0434 -0.1564 -0.9867 +vn -0.0096 0.9877 -0.1562 +vn -0.0280 0.8910 -0.4532 +vn -0.0436 0.7071 -0.7058 +vn -0.0550 0.4540 -0.8893 +vn -0.0610 0.1564 -0.9858 +vn -0.0097 -0.9877 -0.1561 +vn -0.0281 -0.8910 -0.4532 +vn -0.0437 -0.7071 -0.7058 +vn -0.0550 -0.4540 -0.8893 +vn -0.0610 -0.1564 -0.9858 +vn -0.0127 0.9877 -0.1559 +vn -0.0369 0.8910 -0.4525 +vn -0.0576 0.7071 -0.7048 +vn -0.0726 0.4539 -0.8881 +vn -0.0805 0.1564 -0.9844 +vn -0.0128 -0.9877 -0.1559 +vn -0.0371 -0.8910 -0.4525 +vn -0.0577 -0.7071 -0.7048 +vn -0.0726 -0.4540 -0.8881 +vn -0.0805 -0.1564 -0.9844 +vn -0.0166 0.9877 -0.1556 +vn -0.0481 0.8910 -0.4515 +vn -0.0749 0.7071 -0.7031 +vn -0.0944 0.4540 -0.8860 +vn -0.1047 0.1564 -0.9821 +vn -0.0166 -0.9877 -0.1556 +vn -0.0482 -0.8910 -0.4515 +vn -0.0751 -0.7071 -0.7032 +vn -0.0945 -0.4539 -0.8860 +vn -0.1047 -0.1564 -0.9821 +vn -0.0166 0.9877 0.1556 +vn -0.0482 0.8910 0.4515 +vn -0.0751 0.7071 0.7032 +vn -0.0945 0.4539 0.8860 +vn -0.1047 0.1564 0.9821 +vn -0.0166 -0.9877 0.1556 +vn -0.0481 -0.8910 0.4515 +vn -0.0749 -0.7071 0.7031 +vn -0.0944 -0.4540 0.8860 +vn -0.1047 -0.1564 0.9821 +vn -0.0128 0.9877 0.1559 +vn -0.0371 0.8910 0.4525 +vn -0.0577 0.7071 0.7048 +vn -0.0726 0.4540 0.8881 +vn -0.0805 0.1564 0.9844 +vn -0.0127 -0.9877 0.1559 +vn -0.0369 -0.8910 0.4525 +vn -0.0576 -0.7071 0.7048 +vn -0.0726 -0.4539 0.8881 +vn -0.0805 -0.1564 0.9844 +vn -0.0097 0.9877 0.1561 +vn -0.0281 0.8910 0.4532 +vn -0.0437 0.7071 0.7058 +vn -0.0550 0.4540 0.8893 +vn -0.0610 0.1564 0.9858 +vn -0.0096 -0.9877 0.1562 +vn -0.0280 -0.8910 0.4532 +vn -0.0436 -0.7071 0.7058 +vn -0.0550 -0.4540 0.8893 +vn -0.0610 -0.1564 0.9858 +vn -0.0069 0.9877 0.1563 +vn -0.0200 0.8910 0.4536 +vn -0.0311 0.7071 0.7065 +vn -0.0392 0.4540 0.8902 +vn -0.0434 0.1564 0.9867 +vn -0.0069 -0.9877 0.1563 +vn -0.0199 -0.8910 0.4536 +vn -0.0310 -0.7071 0.7065 +vn -0.0391 -0.4540 0.8902 +vn -0.0434 -0.1564 0.9867 +vn -0.0041 0.9877 0.1564 +vn -0.0119 0.8910 0.4539 +vn -0.0185 0.7071 0.7069 +vn -0.0233 0.4540 0.8907 +vn -0.0258 0.1564 0.9874 +vn -0.0041 -0.9877 0.1564 +vn -0.0118 -0.8910 0.4539 +vn -0.0184 -0.7071 0.7069 +vn -0.0233 -0.4540 0.8907 +vn -0.0258 -0.1564 0.9874 +vn -0.0010 0.9877 0.1565 +vn -0.0030 0.8910 0.4540 +vn -0.0046 0.7071 0.7071 +vn -0.0057 0.4539 0.8910 +vn -0.0063 0.1564 0.9877 +vn -0.0010 -0.9877 0.1564 +vn -0.0028 -0.8910 0.4540 +vn -0.0044 -0.7071 0.7071 +vn -0.0056 -0.4540 0.8910 +vn -0.0062 -0.1564 0.9877 +vn 0.0028 0.9877 0.1564 +vn 0.0083 0.8910 0.4539 +vn 0.0129 0.7071 0.7070 +vn 0.0163 0.4540 0.8909 +vn 0.0181 0.1564 0.9875 +vn 0.0029 -0.9877 0.1564 +vn 0.0084 -0.8910 0.4540 +vn 0.0130 -0.7071 0.7070 +vn 0.0163 -0.4539 0.8909 +vn 0.0181 -0.1564 0.9875 +vn 0.0053 -0.9877 0.1564 +vn 0.0155 -0.8910 0.4538 +vn 0.0241 -0.7071 0.7067 +vn 0.0304 -0.4540 0.8905 +vn 0.0336 -0.1564 0.9871 +vn 0.0053 0.9877 0.1563 +vn 0.0155 0.8910 0.4537 +vn 0.0241 0.7071 0.7067 +vn 0.0303 0.4540 0.8905 +vn 0.0336 0.1564 0.9871 +vn 0.0053 -0.9877 -0.1563 +vn 0.0155 -0.8910 -0.4537 +vn 0.0241 -0.7071 -0.7067 +vn 0.0303 -0.4540 -0.8905 +vn 0.0336 -0.1564 -0.9871 +vn 0.0053 0.9877 -0.1564 +vn 0.0155 0.8910 -0.4537 +vn 0.0241 0.7071 -0.7067 +vn 0.0304 0.4540 -0.8905 +vn 0.0336 0.1564 -0.9871 +vn -0.0140 0.9877 -0.1558 +vn -0.0406 0.8910 -0.4522 +vn -0.0632 0.7071 -0.7043 +vn -0.0796 0.4540 -0.8874 +vn -0.0883 0.1564 -0.9837 +vn -0.0142 -0.9877 -0.1558 +vn -0.0409 -0.8910 -0.4522 +vn -0.0635 -0.7070 -0.7043 +vn -0.0798 -0.4539 -0.8875 +vn -0.0883 -0.1564 -0.9837 +vn -0.0056 0.9877 -0.1563 +vn -0.0163 0.8910 -0.4537 +vn -0.0254 0.7071 -0.7066 +vn -0.0320 0.4540 -0.8904 +vn -0.0355 0.1564 -0.9871 +vn -0.0056 -0.9877 -0.1563 +vn -0.0163 -0.8910 -0.4537 +vn -0.0254 -0.7071 -0.7067 +vn -0.0320 -0.4540 -0.8904 +vn -0.0355 -0.1564 -0.9871 +vn 0.0013 0.9877 -0.1564 +vn 0.0038 0.8910 -0.4540 +vn 0.0059 0.7071 -0.7071 +vn 0.0074 0.4540 -0.8910 +vn 0.0082 0.1564 -0.9877 +vn 0.0013 -0.9877 -0.1564 +vn 0.0038 -0.8910 -0.4540 +vn 0.0059 -0.7071 -0.7071 +vn 0.0074 -0.4540 -0.8910 +vn 0.0082 -0.1564 -0.9877 +vn 0.0074 0.9877 -0.1563 +vn 0.0215 0.8910 -0.4535 +vn 0.0335 0.7071 -0.7063 +vn 0.0423 0.4540 -0.8900 +vn 0.0468 0.1564 -0.9866 +vn 0.0074 -0.9877 -0.1563 +vn 0.0215 -0.8910 -0.4535 +vn 0.0335 -0.7071 -0.7063 +vn 0.0423 -0.4540 -0.8900 +vn 0.0468 -0.1564 -0.9866 +vn 0.0132 0.9877 -0.1559 +vn 0.0382 0.8910 -0.4524 +vn 0.0596 0.7071 -0.7046 +vn 0.0750 0.4540 -0.8878 +vn 0.0832 0.1564 -0.9842 +vn 0.0132 -0.9877 -0.1559 +vn 0.0382 -0.8910 -0.4524 +vn 0.0596 -0.7071 -0.7046 +vn 0.0750 -0.4540 -0.8878 +vn 0.0832 -0.1564 -0.9842 +vn 0.0189 0.9877 -0.1553 +vn 0.0549 0.8910 -0.4507 +vn 0.0855 0.7071 -0.7019 +vn 0.1077 0.4540 -0.8845 +vn 0.1194 0.1564 -0.9804 +vn 0.0189 -0.9877 -0.1553 +vn 0.0549 -0.8910 -0.4507 +vn 0.0855 -0.7071 -0.7019 +vn 0.1077 -0.4540 -0.8845 +vn 0.1194 -0.1564 -0.9804 +vn 0.0250 0.9877 -0.1544 +vn 0.0725 0.8910 -0.4482 +vn 0.1129 0.7071 -0.6980 +vn 0.1423 0.4540 -0.8796 +vn 0.1577 0.1564 -0.9750 +vn 0.0250 -0.9877 -0.1544 +vn 0.0725 -0.8910 -0.4482 +vn 0.1129 -0.7071 -0.6980 +vn 0.1423 -0.4540 -0.8796 +vn 0.1577 -0.1564 -0.9750 +vn 0.0318 0.9877 -0.1532 +vn 0.0922 0.8910 -0.4445 +vn 0.1436 0.7071 -0.6924 +vn 0.1810 0.4540 -0.8724 +vn 0.2006 0.1564 -0.9671 +vn 0.0318 -0.9877 -0.1532 +vn 0.0922 -0.8910 -0.4445 +vn 0.1436 -0.7071 -0.6924 +vn 0.1810 -0.4540 -0.8724 +vn 0.2006 -0.1564 -0.9671 +vn 0.0401 0.9877 -0.1512 +vn 0.1162 0.8910 -0.4390 +vn 0.1808 0.7070 -0.6837 +vn 0.2276 0.4539 -0.8615 +vn 0.2522 0.1564 -0.9550 +vn 0.0399 -0.9877 -0.1513 +vn 0.1159 -0.8910 -0.4390 +vn 0.1805 -0.7071 -0.6837 +vn 0.2275 -0.4540 -0.8615 +vn 0.2521 -0.1564 -0.9550 +vn 0.0399 0.9877 0.1513 +vn 0.1159 0.8910 0.4389 +vn 0.1805 0.7071 0.6837 +vn 0.2275 0.4540 0.8615 +vn 0.2521 0.1564 0.9550 +vn 0.0401 -0.9877 0.1512 +vn 0.1162 -0.8910 0.4390 +vn 0.1808 -0.7070 0.6837 +vn 0.2276 -0.4539 0.8615 +vn 0.2522 -0.1564 0.9550 +vn 0.0318 0.9877 0.1532 +vn 0.0922 0.8910 0.4445 +vn 0.1436 0.7071 0.6924 +vn 0.1810 0.4540 0.8724 +vn 0.2006 0.1564 0.9671 +vn 0.0318 -0.9877 0.1532 +vn 0.0922 -0.8910 0.4445 +vn 0.1436 -0.7071 0.6924 +vn 0.1810 -0.4540 0.8724 +vn 0.2006 -0.1564 0.9671 +vn 0.0250 0.9877 0.1544 +vn 0.0725 0.8910 0.4482 +vn 0.1129 0.7071 0.6980 +vn 0.1423 0.4540 0.8796 +vn 0.1577 0.1564 0.9750 +vn 0.0250 -0.9877 0.1544 +vn 0.0725 -0.8910 0.4482 +vn 0.1129 -0.7071 0.6980 +vn 0.1423 -0.4540 0.8796 +vn 0.1577 -0.1564 0.9750 +vn 0.0189 0.9877 0.1553 +vn 0.0549 0.8910 0.4507 +vn 0.0855 0.7071 0.7019 +vn 0.1077 0.4540 0.8845 +vn 0.1194 0.1564 0.9804 +vn 0.0189 -0.9877 0.1553 +vn 0.0549 -0.8910 0.4507 +vn 0.0855 -0.7071 0.7019 +vn 0.1077 -0.4540 0.8845 +vn 0.1194 -0.1564 0.9804 +vn 0.0132 0.9877 0.1559 +vn 0.0382 0.8910 0.4524 +vn 0.0596 0.7071 0.7046 +vn 0.0750 0.4540 0.8878 +vn 0.0832 0.1564 0.9842 +vn 0.0132 -0.9877 0.1559 +vn 0.0382 -0.8910 0.4524 +vn 0.0596 -0.7071 0.7046 +vn 0.0750 -0.4540 0.8878 +vn 0.0832 -0.1564 0.9842 +vn 0.0074 0.9877 0.1563 +vn 0.0215 0.8910 0.4535 +vn 0.0335 0.7071 0.7063 +vn 0.0423 0.4540 0.8900 +vn 0.0468 0.1564 0.9866 +vn 0.0074 -0.9877 0.1563 +vn 0.0215 -0.8910 0.4535 +vn 0.0335 -0.7071 0.7063 +vn 0.0423 -0.4540 0.8900 +vn 0.0468 -0.1564 0.9866 +vn 0.0013 0.9877 0.1564 +vn 0.0038 0.8910 0.4540 +vn 0.0059 0.7071 0.7071 +vn 0.0074 0.4540 0.8910 +vn 0.0082 0.1564 0.9877 +vn 0.0013 -0.9877 0.1564 +vn 0.0038 -0.8910 0.4540 +vn 0.0059 -0.7071 0.7071 +vn 0.0074 -0.4540 0.8910 +vn 0.0082 -0.1564 0.9877 +vn -0.0056 0.9877 0.1563 +vn -0.0163 0.8910 0.4537 +vn -0.0254 0.7071 0.7066 +vn -0.0320 0.4540 0.8904 +vn -0.0355 0.1564 0.9871 +vn -0.0056 -0.9877 0.1563 +vn -0.0163 -0.8910 0.4537 +vn -0.0254 -0.7071 0.7067 +vn -0.0320 -0.4540 0.8904 +vn -0.0355 -0.1564 0.9871 +vn -0.0142 0.9877 0.1558 +vn -0.0409 0.8910 0.4522 +vn -0.0635 0.7070 0.7043 +vn -0.0798 0.4539 0.8875 +vn -0.0883 0.1564 0.9837 +vn -0.0140 -0.9877 0.1558 +vn -0.0406 -0.8910 0.4522 +vn -0.0632 -0.7071 0.7043 +vn -0.0796 -0.4540 0.8874 +vn -0.0883 -0.1564 0.9837 +vn 0.0448 -0.9877 0.1499 +vn 0.1301 -0.8910 0.4350 +vn 0.2026 -0.7071 0.6775 +vn 0.2553 -0.4540 0.8536 +vn 0.2830 -0.1564 0.9463 +vn 0.0448 0.9877 0.1499 +vn 0.1301 0.8910 0.4351 +vn 0.2026 0.7070 0.6776 +vn 0.2553 0.4539 0.8537 +vn 0.2830 0.1564 0.9463 +vn -0.0190 -0.9877 0.1553 +vn -0.0552 -0.8910 0.4507 +vn -0.0860 -0.7070 0.7019 +vn -0.1084 -0.4539 0.8844 +vn -0.1202 -0.1564 0.9804 +vn -0.0190 0.9877 0.1553 +vn -0.0552 0.8910 0.4506 +vn -0.0860 0.7071 0.7019 +vn -0.1084 0.4540 0.8844 +vn -0.1202 0.1564 0.9804 +vn 0.0448 -0.9877 -0.1499 +vn 0.1301 -0.8910 -0.4351 +vn 0.2026 -0.7070 -0.6776 +vn 0.2553 -0.4539 -0.8537 +vn 0.2830 -0.1564 -0.9463 +vn 0.0448 0.9877 -0.1499 +vn 0.1301 0.8910 -0.4350 +vn 0.2026 0.7071 -0.6775 +vn 0.2553 0.4540 -0.8536 +vn 0.2830 0.1564 -0.9463 +vn -0.0190 -0.9877 -0.1553 +vn -0.0552 -0.8910 -0.4506 +vn -0.0860 -0.7071 -0.7019 +vn -0.1084 -0.4540 -0.8844 +vn -0.1202 -0.1564 -0.9804 +vn -0.0190 0.9877 -0.1553 +vn -0.0552 0.8910 -0.4507 +vn -0.0860 0.7070 -0.7019 +vn -0.1084 0.4539 -0.8844 +vn -0.1202 0.1564 -0.9804 +vn 0.1297 0.9914 -0.0146 +vn 0.3803 0.9239 -0.0428 +vn 0.6049 0.7934 -0.0682 +vn 0.7884 0.6088 -0.0888 +vn 0.9181 0.3827 -0.1034 +vn 0.9852 0.1305 -0.1110 +vn 0.1297 -0.9914 -0.0146 +vn 0.3803 -0.9239 -0.0428 +vn 0.6049 -0.7934 -0.0682 +vn 0.7884 -0.6088 -0.0888 +vn 0.9181 -0.3827 -0.1034 +vn 0.9852 -0.1305 -0.1110 +vn 0.1232 0.9914 -0.0431 +vn 0.3612 0.9239 -0.1264 +vn 0.5746 0.7934 -0.2011 +vn 0.7488 0.6088 -0.2620 +vn 0.8720 0.3827 -0.3051 +vn 0.9358 0.1305 -0.3275 +vn 0.1232 -0.9914 -0.0431 +vn 0.3612 -0.9239 -0.1264 +vn 0.5746 -0.7934 -0.2011 +vn 0.7488 -0.6088 -0.2620 +vn 0.8720 -0.3827 -0.3051 +vn 0.9358 -0.1305 -0.3275 +vn 0.1105 0.9914 -0.0694 +vn 0.3240 0.9239 -0.2036 +vn 0.5155 0.7934 -0.3239 +vn 0.6718 0.6088 -0.4221 +vn 0.7823 0.3827 -0.4915 +vn 0.8395 0.1305 -0.5275 +vn 0.1105 -0.9914 -0.0694 +vn 0.3240 -0.9239 -0.2036 +vn 0.5155 -0.7934 -0.3239 +vn 0.6718 -0.6088 -0.4221 +vn 0.7823 -0.3827 -0.4915 +vn 0.8395 -0.1305 -0.5275 +vn 0.0923 0.9914 -0.0923 +vn 0.2706 0.9239 -0.2706 +vn 0.4305 0.7934 -0.4305 +vn 0.5610 0.6088 -0.5610 +vn 0.6533 0.3827 -0.6533 +vn 0.7011 0.1305 -0.7011 +vn 0.0923 -0.9914 -0.0923 +vn 0.2706 -0.9239 -0.2706 +vn 0.4305 -0.7934 -0.4305 +vn 0.5610 -0.6088 -0.5610 +vn 0.6533 -0.3827 -0.6533 +vn 0.7011 -0.1305 -0.7011 +vn 0.0694 0.9914 -0.1105 +vn 0.2036 0.9239 -0.3240 +vn 0.3239 0.7934 -0.5155 +vn 0.4221 0.6088 -0.6718 +vn 0.4915 0.3827 -0.7823 +vn 0.5275 0.1305 -0.8395 +vn 0.0694 -0.9914 -0.1105 +vn 0.2036 -0.9239 -0.3240 +vn 0.3239 -0.7934 -0.5155 +vn 0.4221 -0.6088 -0.6718 +vn 0.4915 -0.3827 -0.7823 +vn 0.5275 -0.1305 -0.8395 +vn 0.0431 0.9914 -0.1232 +vn 0.1264 0.9239 -0.3612 +vn 0.2011 0.7934 -0.5746 +vn 0.2620 0.6088 -0.7488 +vn 0.3051 0.3827 -0.8720 +vn 0.3275 0.1305 -0.9358 +vn 0.0431 -0.9914 -0.1232 +vn 0.1264 -0.9239 -0.3612 +vn 0.2011 -0.7934 -0.5746 +vn 0.2620 -0.6088 -0.7488 +vn 0.3051 -0.3827 -0.8720 +vn 0.3275 -0.1305 -0.9358 +vn 0.0146 0.9914 -0.1297 +vn 0.0428 0.9239 -0.3803 +vn 0.0682 0.7934 -0.6049 +vn 0.0888 0.6088 -0.7884 +vn 0.1034 0.3827 -0.9181 +vn 0.1110 0.1305 -0.9852 +vn 0.0146 -0.9914 -0.1297 +vn 0.0428 -0.9239 -0.3803 +vn 0.0682 -0.7934 -0.6049 +vn 0.0888 -0.6088 -0.7884 +vn 0.1034 -0.3827 -0.9181 +vn 0.1110 -0.1305 -0.9852 +vn 0.0146 0.9914 0.1297 +vn 0.0428 0.9239 0.3803 +vn 0.0682 0.7934 0.6049 +vn 0.0888 0.6088 0.7884 +vn 0.1034 0.3827 0.9181 +vn 0.1110 0.1305 0.9852 +vn 0.0146 -0.9914 0.1297 +vn 0.0428 -0.9239 0.3803 +vn 0.0682 -0.7934 0.6049 +vn 0.0888 -0.6088 0.7884 +vn 0.1034 -0.3827 0.9181 +vn 0.1110 -0.1305 0.9852 +vn 0.0431 0.9914 0.1232 +vn 0.1264 0.9239 0.3612 +vn 0.2011 0.7934 0.5746 +vn 0.2620 0.6088 0.7488 +vn 0.3051 0.3827 0.8720 +vn 0.3275 0.1305 0.9358 +vn 0.0431 -0.9914 0.1232 +vn 0.1264 -0.9239 0.3612 +vn 0.2011 -0.7934 0.5746 +vn 0.2620 -0.6088 0.7488 +vn 0.3051 -0.3827 0.8720 +vn 0.3275 -0.1305 0.9358 +vn 0.0694 0.9914 0.1105 +vn 0.2036 0.9239 0.3240 +vn 0.3239 0.7934 0.5155 +vn 0.4221 0.6088 0.6718 +vn 0.4915 0.3827 0.7823 +vn 0.5275 0.1305 0.8395 +vn 0.0694 -0.9914 0.1105 +vn 0.2036 -0.9239 0.3240 +vn 0.3239 -0.7934 0.5155 +vn 0.4221 -0.6088 0.6718 +vn 0.4915 -0.3827 0.7823 +vn 0.5275 -0.1305 0.8395 +vn 0.0923 0.9914 0.0923 +vn 0.2706 0.9239 0.2706 +vn 0.4305 0.7934 0.4305 +vn 0.5610 0.6088 0.5610 +vn 0.6533 0.3827 0.6533 +vn 0.7011 0.1305 0.7011 +vn 0.0923 -0.9914 0.0923 +vn 0.2706 -0.9239 0.2706 +vn 0.4305 -0.7934 0.4305 +vn 0.5610 -0.6088 0.5610 +vn 0.6533 -0.3827 0.6533 +vn 0.7011 -0.1305 0.7011 +vn 0.1105 0.9914 0.0694 +vn 0.3240 0.9239 0.2036 +vn 0.5155 0.7934 0.3239 +vn 0.6718 0.6088 0.4221 +vn 0.7823 0.3827 0.4915 +vn 0.8395 0.1305 0.5275 +vn 0.1105 -0.9914 0.0694 +vn 0.3240 -0.9239 0.2036 +vn 0.5155 -0.7934 0.3239 +vn 0.6718 -0.6088 0.4221 +vn 0.7823 -0.3827 0.4915 +vn 0.8395 -0.1305 0.5275 +vn 0.1232 0.9914 0.0431 +vn 0.3612 0.9239 0.1264 +vn 0.5746 0.7934 0.2011 +vn 0.7488 0.6088 0.2620 +vn 0.8720 0.3827 0.3051 +vn 0.9358 0.1305 0.3275 +vn 0.1232 -0.9914 0.0431 +vn 0.3612 -0.9239 0.1264 +vn 0.5746 -0.7934 0.2011 +vn 0.7488 -0.6088 0.2620 +vn 0.8720 -0.3827 0.3051 +vn 0.9358 -0.1305 0.3275 +vn 0.1297 0.9914 0.0146 +vn 0.3803 0.9239 0.0428 +vn 0.6049 0.7934 0.0682 +vn 0.7884 0.6088 0.0888 +vn 0.9181 0.3827 0.1034 +vn 0.9852 0.1305 0.1110 +vn 0.1297 -0.9914 0.0146 +vn 0.3803 -0.9239 0.0428 +vn 0.6049 -0.7934 0.0682 +vn 0.7884 -0.6088 0.0888 +vn 0.9181 -0.3827 0.1034 +vn 0.9852 -0.1305 0.1110 +vn -0.1297 0.9914 0.0146 +vn -0.3803 0.9239 0.0428 +vn -0.6049 0.7934 0.0682 +vn -0.7884 0.6088 0.0888 +vn -0.9181 0.3827 0.1034 +vn -0.9852 0.1305 0.1110 +vn -0.1297 -0.9914 0.0146 +vn -0.3803 -0.9239 0.0428 +vn -0.6049 -0.7934 0.0682 +vn -0.7884 -0.6088 0.0888 +vn -0.9181 -0.3827 0.1034 +vn -0.9852 -0.1305 0.1110 +vn -0.1232 0.9914 0.0431 +vn -0.3612 0.9239 0.1264 +vn -0.5746 0.7934 0.2011 +vn -0.7488 0.6088 0.2620 +vn -0.8720 0.3827 0.3051 +vn -0.9358 0.1305 0.3275 +vn -0.1232 -0.9914 0.0431 +vn -0.3612 -0.9239 0.1264 +vn -0.5746 -0.7934 0.2011 +vn -0.7488 -0.6088 0.2620 +vn -0.8720 -0.3827 0.3051 +vn -0.9358 -0.1305 0.3275 +vn -0.1105 0.9914 0.0694 +vn -0.3240 0.9239 0.2036 +vn -0.5155 0.7934 0.3239 +vn -0.6718 0.6088 0.4221 +vn -0.7823 0.3827 0.4915 +vn -0.8395 0.1305 0.5275 +vn -0.1105 -0.9914 0.0694 +vn -0.3240 -0.9239 0.2036 +vn -0.5155 -0.7934 0.3239 +vn -0.6718 -0.6088 0.4221 +vn -0.7823 -0.3827 0.4915 +vn -0.8395 -0.1305 0.5275 +vn -0.0923 0.9914 0.0923 +vn -0.2706 0.9239 0.2706 +vn -0.4305 0.7934 0.4305 +vn -0.5610 0.6088 0.5610 +vn -0.6533 0.3827 0.6533 +vn -0.7011 0.1305 0.7011 +vn -0.0923 -0.9914 0.0923 +vn -0.2706 -0.9239 0.2706 +vn -0.4305 -0.7934 0.4305 +vn -0.5610 -0.6088 0.5610 +vn -0.6533 -0.3827 0.6533 +vn -0.7011 -0.1305 0.7011 +vn -0.0694 0.9914 0.1105 +vn -0.2036 0.9239 0.3240 +vn -0.3239 0.7934 0.5155 +vn -0.4221 0.6088 0.6718 +vn -0.4915 0.3827 0.7823 +vn -0.5275 0.1305 0.8395 +vn -0.0694 -0.9914 0.1105 +vn -0.2036 -0.9239 0.3240 +vn -0.3239 -0.7934 0.5155 +vn -0.4221 -0.6088 0.6718 +vn -0.4915 -0.3827 0.7823 +vn -0.5275 -0.1305 0.8395 +vn -0.0431 0.9914 0.1232 +vn -0.1264 0.9239 0.3612 +vn -0.2011 0.7934 0.5746 +vn -0.2620 0.6088 0.7488 +vn -0.3051 0.3827 0.8720 +vn -0.3275 0.1305 0.9358 +vn -0.0431 -0.9914 0.1232 +vn -0.1264 -0.9239 0.3612 +vn -0.2011 -0.7934 0.5746 +vn -0.2620 -0.6088 0.7488 +vn -0.3051 -0.3827 0.8720 +vn -0.3275 -0.1305 0.9358 +vn -0.0146 0.9914 0.1297 +vn -0.0428 0.9239 0.3803 +vn -0.0682 0.7934 0.6049 +vn -0.0888 0.6088 0.7884 +vn -0.1034 0.3827 0.9181 +vn -0.1110 0.1305 0.9852 +vn -0.0146 -0.9914 0.1297 +vn -0.0428 -0.9239 0.3803 +vn -0.0682 -0.7934 0.6049 +vn -0.0888 -0.6088 0.7884 +vn -0.1034 -0.3827 0.9181 +vn -0.1110 -0.1305 0.9852 +vn -0.0146 0.9914 -0.1297 +vn -0.0428 0.9239 -0.3803 +vn -0.0682 0.7934 -0.6049 +vn -0.0888 0.6088 -0.7884 +vn -0.1034 0.3827 -0.9181 +vn -0.1110 0.1305 -0.9852 +vn -0.0146 -0.9914 -0.1297 +vn -0.0428 -0.9239 -0.3803 +vn -0.0682 -0.7934 -0.6049 +vn -0.0888 -0.6088 -0.7884 +vn -0.1034 -0.3827 -0.9181 +vn -0.1110 -0.1305 -0.9852 +vn -0.0431 0.9914 -0.1232 +vn -0.1264 0.9239 -0.3612 +vn -0.2011 0.7934 -0.5746 +vn -0.2620 0.6088 -0.7488 +vn -0.3051 0.3827 -0.8720 +vn -0.3275 0.1305 -0.9358 +vn -0.0431 -0.9914 -0.1232 +vn -0.1264 -0.9239 -0.3612 +vn -0.2011 -0.7934 -0.5746 +vn -0.2620 -0.6088 -0.7488 +vn -0.3051 -0.3827 -0.8720 +vn -0.3275 -0.1305 -0.9358 +vn -0.0694 0.9914 -0.1105 +vn -0.2036 0.9239 -0.3240 +vn -0.3239 0.7934 -0.5155 +vn -0.4221 0.6088 -0.6718 +vn -0.4915 0.3827 -0.7823 +vn -0.5275 0.1305 -0.8395 +vn -0.0694 -0.9914 -0.1105 +vn -0.2036 -0.9239 -0.3240 +vn -0.3239 -0.7934 -0.5155 +vn -0.4221 -0.6088 -0.6718 +vn -0.4915 -0.3827 -0.7823 +vn -0.5275 -0.1305 -0.8395 +vn -0.0923 0.9914 -0.0923 +vn -0.2706 0.9239 -0.2706 +vn -0.4305 0.7934 -0.4305 +vn -0.5610 0.6088 -0.5610 +vn -0.6533 0.3827 -0.6533 +vn -0.7011 0.1305 -0.7011 +vn -0.0923 -0.9914 -0.0923 +vn -0.2706 -0.9239 -0.2706 +vn -0.4305 -0.7934 -0.4305 +vn -0.5610 -0.6088 -0.5610 +vn -0.6533 -0.3827 -0.6533 +vn -0.7011 -0.1305 -0.7011 +vn -0.1105 0.9914 -0.0694 +vn -0.3240 0.9239 -0.2036 +vn -0.5155 0.7934 -0.3239 +vn -0.6718 0.6088 -0.4221 +vn -0.7823 0.3827 -0.4915 +vn -0.8395 0.1305 -0.5275 +vn -0.1105 -0.9914 -0.0694 +vn -0.3240 -0.9239 -0.2036 +vn -0.5155 -0.7934 -0.3239 +vn -0.6718 -0.6088 -0.4221 +vn -0.7823 -0.3827 -0.4915 +vn -0.8395 -0.1305 -0.5275 +vn -0.1232 0.9914 -0.0431 +vn -0.3612 0.9239 -0.1264 +vn -0.5746 0.7934 -0.2011 +vn -0.7488 0.6088 -0.2620 +vn -0.8720 0.3827 -0.3051 +vn -0.9358 0.1305 -0.3275 +vn -0.1232 -0.9914 -0.0431 +vn -0.3612 -0.9239 -0.1264 +vn -0.5746 -0.7934 -0.2011 +vn -0.7488 -0.6088 -0.2620 +vn -0.8720 -0.3827 -0.3051 +vn -0.9358 -0.1305 -0.3275 +vn -0.1297 0.9914 -0.0146 +vn -0.3803 0.9239 -0.0428 +vn -0.6049 0.7934 -0.0682 +vn -0.7884 0.6088 -0.0888 +vn -0.9181 0.3827 -0.1034 +vn -0.9852 0.1305 -0.1110 +vn -0.1297 -0.9914 -0.0146 +vn -0.3803 -0.9239 -0.0428 +vn -0.6049 -0.7934 -0.0682 +vn -0.7884 -0.6088 -0.0888 +vn -0.9181 -0.3827 -0.1034 +vn -0.9852 -0.1305 -0.1110 +vn 0.9914 0.1305 0.0000 +vn 0.9239 0.3827 -0.0000 +vn 0.7934 0.6088 -0.0000 +vn 0.6088 0.7934 -0.0000 +vn 0.3827 0.9239 -0.0000 +vn 0.1305 0.9914 -0.0000 +vn 0.0000 0.1305 -0.9914 +vn 0.0000 0.3827 -0.9239 +vn 0.0000 0.6088 -0.7934 +vn 0.0000 0.7934 -0.6088 +vn 0.0000 0.9239 -0.3827 +vn 0.0000 0.9914 -0.1305 +vn -0.9914 0.1305 -0.0000 +vn -0.9239 0.3827 -0.0000 +vn -0.7934 0.6088 -0.0000 +vn -0.6088 0.7934 -0.0000 +vn -0.3827 0.9239 -0.0000 +vn -0.1305 0.9914 -0.0000 +vn 0.0000 0.1305 0.9914 +vn 0.0000 0.3827 0.9239 +vn 0.0000 0.6088 0.7934 +vn 0.0000 0.7934 0.6088 +vn 0.0000 0.9239 0.3827 +vn 0.0000 0.9914 0.1305 +vn 0.1305 -0.9914 0.0000 +vn 0.3827 -0.9239 0.0000 +vn 0.6088 -0.7934 0.0000 +vn 0.7934 -0.6088 0.0000 +vn 0.9239 -0.3827 0.0000 +vn 0.9914 -0.1305 0.0000 +vn 0.0000 -0.9914 0.1305 +vn 0.0000 -0.9239 0.3827 +vn 0.0000 -0.7934 0.6088 +vn 0.0000 -0.6088 0.7934 +vn 0.0000 -0.3827 0.9239 +vn -0.0000 -0.1305 0.9914 +vn -0.1305 -0.9914 0.0000 +vn -0.3827 -0.9239 0.0000 +vn -0.6088 -0.7934 0.0000 +vn -0.7934 -0.6088 0.0000 +vn -0.9239 -0.3827 0.0000 +vn -0.9914 -0.1305 -0.0000 +vn 0.0000 -0.1305 -0.9914 +vn 0.0000 -0.3827 -0.9239 +vn 0.0000 -0.6088 -0.7934 +vn 0.0000 -0.7934 -0.6088 +vn 0.0000 -0.9239 -0.3827 +vn 0.0000 -0.9914 -0.1305 +vn 0.6965 0.2113 0.6857 +vn 0.6965 0.2113 -0.6857 +vn 0.6419 0.3431 -0.6857 +vn 0.6419 0.3431 0.6857 +vn 0.7244 0.0713 0.6857 +vn 0.7244 0.0713 -0.6857 +vn 0.7244 -0.0713 0.6857 +vn 0.7244 -0.0713 -0.6857 +vn 0.6965 -0.2113 0.6857 +vn 0.6965 -0.2113 -0.6857 +vn 0.6419 -0.3431 0.6857 +vn 0.6419 -0.3431 -0.6857 +vn 0.5626 -0.4617 0.6857 +vn 0.5626 -0.4617 -0.6857 +vn 0.4617 -0.5626 0.6857 +vn 0.4617 -0.5626 -0.6857 +vn 0.3431 -0.6419 0.6857 +vn 0.3431 -0.6419 -0.6857 +vn 0.2113 -0.6965 0.6857 +vn 0.2113 -0.6965 -0.6857 +vn 0.0713 -0.7244 0.6857 +vn 0.0713 -0.7244 -0.6857 +vn -0.0713 -0.7244 0.6857 +vn -0.0713 -0.7244 -0.6857 +vn -0.2113 -0.6965 0.6857 +vn -0.2113 -0.6965 -0.6857 +vn -0.3431 -0.6419 0.6857 +vn -0.3431 -0.6419 -0.6857 +vn -0.4617 -0.5626 0.6857 +vn -0.4617 -0.5626 -0.6857 +vn -0.5626 -0.4617 0.6857 +vn -0.5626 -0.4617 -0.6857 +vn -0.6419 -0.3431 0.6857 +vn -0.6419 -0.3431 -0.6857 +vn -0.6965 -0.2113 0.6857 +vn -0.6965 -0.2113 -0.6857 +vn -0.7244 -0.0713 0.6857 +vn -0.7244 -0.0713 -0.6857 +vn -0.7244 0.0713 0.6857 +vn -0.7244 0.0713 -0.6857 +vn -0.6965 0.2113 0.6857 +vn -0.6965 0.2113 -0.6857 +vn -0.5626 0.4617 0.6857 +vn -0.5626 0.4617 -0.6857 +vn -0.6419 0.3431 -0.6857 +vn -0.6419 0.3431 0.6857 +vn -0.4617 0.5626 0.6857 +vn -0.4617 0.5626 -0.6857 +vn -0.3431 0.6419 0.6857 +vn -0.3431 0.6419 -0.6857 +vn -0.2113 0.6965 0.6857 +vn -0.2113 0.6965 -0.6857 +vn -0.0713 0.7244 0.6857 +vn -0.0713 0.7244 -0.6857 +vn 0.2113 0.6965 0.6857 +vn 0.2113 0.6965 -0.6857 +vn 0.0713 0.7244 -0.6857 +vn 0.0713 0.7244 0.6857 +vn 0.3431 0.6419 0.6857 +vn 0.3431 0.6419 -0.6857 +vn 0.4617 0.5626 0.6857 +vn 0.4617 0.5626 -0.6857 +vn -0.4604 0.8614 0.2147 +vn -0.4686 0.8767 0.1087 +vn -0.2886 0.9513 0.1087 +vn -0.2835 0.9346 0.2147 +vn -0.0957 0.9720 0.2147 +vn -0.0974 0.9893 0.1087 +vn 0.0957 0.9720 0.2147 +vn 0.0974 0.9893 0.1087 +vn 0.2835 0.9346 0.2147 +vn 0.2886 0.9513 0.1087 +vn 0.4604 0.8614 0.2147 +vn 0.4686 0.8767 0.1087 +vn 0.6196 0.7550 0.2147 +vn 0.6306 0.7684 0.1087 +vn 0.7684 0.6306 0.1087 +vn 0.7550 0.6196 0.2147 +vn 0.8614 0.4604 0.2147 +vn 0.8767 0.4686 0.1087 +vn 0.9346 0.2835 0.2147 +vn 0.9513 0.2886 0.1087 +vn 0.9720 0.0957 0.2147 +vn 0.9893 0.0974 0.1087 +vn 0.9893 -0.0974 0.1087 +vn 0.9720 -0.0957 0.2147 +vn 0.9513 -0.2886 0.1087 +vn 0.9346 -0.2835 0.2147 +vn 0.8614 -0.4604 0.2147 +vn 0.8767 -0.4686 0.1087 +vn 0.7684 -0.6306 0.1087 +vn 0.7550 -0.6196 0.2147 +vn 0.6306 -0.7684 0.1087 +vn 0.6196 -0.7550 0.2147 +vn 0.4604 -0.8614 0.2147 +vn 0.4686 -0.8767 0.1087 +vn 0.2886 -0.9513 0.1087 +vn 0.2835 -0.9346 0.2147 +vn 0.0957 -0.9720 0.2147 +vn 0.0974 -0.9893 0.1087 +vn -0.0974 -0.9893 0.1087 +vn -0.0957 -0.9720 0.2147 +vn -0.2835 -0.9346 0.2147 +vn -0.2886 -0.9513 0.1087 +vn -0.4686 -0.8767 0.1087 +vn -0.4604 -0.8614 0.2147 +vn -0.6306 -0.7684 0.1087 +vn -0.6196 -0.7550 0.2147 +vn -0.7684 -0.6306 0.1087 +vn -0.7550 -0.6196 0.2147 +vn -0.8767 -0.4686 0.1087 +vn -0.8614 -0.4604 0.2147 +vn -0.9513 -0.2886 0.1087 +vn -0.9346 -0.2835 0.2147 +vn -0.9893 -0.0974 0.1087 +vn -0.9720 -0.0957 0.2147 +vn -0.9346 0.2835 0.2147 +vn -0.9720 0.0957 0.2147 +vn -0.9893 0.0974 0.1087 +vn -0.9513 0.2886 0.1087 +vn -0.7550 0.6196 0.2147 +vn -0.8614 0.4604 0.2147 +vn -0.8767 0.4686 0.1087 +vn -0.7684 0.6306 0.1087 +vn -0.6196 0.7550 0.2147 +vn -0.6306 0.7684 0.1087 +vn 0.9893 -0.0974 -0.1087 +vn 0.9893 0.0974 -0.1087 +vn 0.9720 0.0957 -0.2147 +vn 0.9513 0.2886 -0.1087 +vn 0.9346 0.2835 -0.2147 +vn 0.9720 -0.0957 -0.2147 +vn 0.9346 -0.2835 -0.2147 +vn 0.9513 -0.2886 -0.1087 +vn 0.8767 0.4686 -0.1087 +vn 0.7684 0.6306 -0.1087 +vn 0.8614 0.4604 -0.2147 +vn 0.8614 -0.4604 -0.2147 +vn 0.8767 -0.4686 -0.1087 +vn 0.7550 0.6196 -0.2147 +vn 0.7550 -0.6196 -0.2147 +vn 0.7684 -0.6306 -0.1087 +vn 0.6196 0.7550 -0.2147 +vn 0.6306 0.7684 -0.1087 +vn 0.6196 -0.7550 -0.2147 +vn 0.6306 -0.7684 -0.1087 +vn 0.4604 0.8614 -0.2147 +vn 0.4686 0.8767 -0.1087 +vn 0.4604 -0.8614 -0.2147 +vn 0.4686 -0.8767 -0.1087 +vn 0.2835 0.9346 -0.2147 +vn 0.2886 0.9513 -0.1087 +vn 0.2835 -0.9346 -0.2147 +vn 0.2886 -0.9513 -0.1087 +vn 0.0957 0.9720 -0.2147 +vn 0.0974 0.9893 -0.1087 +vn 0.0957 -0.9720 -0.2147 +vn 0.0974 -0.9893 -0.1087 +vn -0.0957 0.9720 -0.2147 +vn -0.0974 0.9893 -0.1087 +vn -0.0957 -0.9720 -0.2147 +vn -0.0974 -0.9893 -0.1087 +vn 0.5626 0.4617 -0.6857 +vn 0.5626 0.4617 0.6857 +vn -0.8767 -0.4686 -0.1087 +vn -0.7684 -0.6306 -0.1087 +vn -0.2835 0.9346 -0.2147 +vn -0.2886 0.9513 -0.1087 +vn -0.2835 -0.9346 -0.2147 +vn -0.2886 -0.9513 -0.1087 +vn -0.4604 0.8614 -0.2147 +vn -0.4686 0.8767 -0.1087 +vn -0.4604 -0.8614 -0.2147 +vn -0.4686 -0.8767 -0.1087 +vn -0.6196 0.7550 -0.2147 +vn -0.6306 0.7684 -0.1087 +vn -0.6196 -0.7550 -0.2147 +vn -0.6306 -0.7684 -0.1087 +vn -0.7550 0.6196 -0.2147 +vn -0.7684 0.6306 -0.1087 +vn -0.7550 -0.6196 -0.2147 +vn -0.9513 0.2886 -0.1087 +vn -0.8767 0.4686 -0.1087 +vn -0.8614 0.4604 -0.2147 +vn -0.8614 -0.4604 -0.2147 +vn -0.9346 0.2835 -0.2147 +vn -0.9346 -0.2835 -0.2147 +vn -0.9513 -0.2886 -0.1087 +vn -0.9720 0.0957 -0.2147 +vn -0.9893 0.0974 -0.1087 +vn -0.9720 -0.0957 -0.2147 +vn -0.9893 -0.0974 -0.1087 +vn -0.7321 -0.3032 -0.6100 +vn -0.7933 0.6088 0.0000 +vn -0.6287 0.4824 -0.6100 +vn -0.1034 -0.7856 -0.6100 +vn 0.1034 0.7856 -0.6100 +vn 0.7321 0.3032 -0.6100 +vn 0.7933 -0.6088 0.0000 +vn 0.6287 -0.4824 -0.6100 +vn 0.7321 0.3032 0.6100 +vn 0.1034 0.7856 0.6100 +vn 0.6287 -0.4824 0.6100 +vn -0.6287 0.4824 0.6100 +vn -0.7321 -0.3032 0.6100 +vn -0.1034 -0.7856 0.6100 +vn -0.3032 -0.7321 -0.6100 +vn -0.7856 -0.1034 -0.6100 +vn 0.4824 -0.6287 -0.6100 +vn 0.6088 -0.7933 0.0000 +vn -0.6088 0.7933 0.0000 +vn -0.4824 0.6287 -0.6100 +vn 0.3032 0.7321 -0.6100 +vn 0.7856 0.1034 -0.6100 +vn 0.3032 0.7321 0.6100 +vn -0.4824 0.6287 0.6100 +vn 0.7856 0.1034 0.6100 +vn -0.7856 -0.1034 0.6100 +vn -0.3032 -0.7321 0.6100 +vn 0.4824 -0.6287 0.6100 +vn 0.3032 -0.7321 -0.6100 +vn -0.6088 -0.7933 0.0000 +vn -0.4824 -0.6287 -0.6100 +vn 0.7856 -0.1034 -0.6100 +vn -0.7856 0.1034 -0.6100 +vn -0.3032 0.7321 -0.6100 +vn 0.6088 0.7933 0.0000 +vn 0.4824 0.6287 -0.6100 +vn -0.3032 0.7321 0.6100 +vn -0.7856 0.1034 0.6100 +vn 0.4824 0.6287 0.6100 +vn -0.4824 -0.6287 0.6100 +vn 0.3032 -0.7321 0.6100 +vn 0.7856 -0.1034 0.6100 +vn 0.7321 -0.3032 -0.6100 +vn 0.1034 -0.7856 -0.6100 +vn 0.6287 0.4824 -0.6100 +vn 0.7933 0.6088 0.0000 +vn -0.7933 -0.6088 0.0000 +vn -0.6287 -0.4824 -0.6100 +vn -0.7321 0.3032 -0.6100 +vn -0.1034 0.7856 -0.6100 +vn -0.7321 0.3032 0.6100 +vn -0.6287 -0.4824 0.6100 +vn -0.1034 0.7856 0.6100 +vn 0.1034 -0.7856 0.6100 +vn 0.7321 -0.3032 0.6100 +vn 0.6287 0.4824 0.6100 +vn -0.5603 -0.5603 -0.6100 +vn -0.9659 0.2588 0.0000 +vn -0.7654 0.2051 -0.6100 +vn 0.2051 -0.7654 -0.6100 +vn 0.2588 -0.9659 0.0000 +vn -0.2588 0.9659 0.0000 +vn -0.2051 0.7654 -0.6100 +vn 0.5603 0.5603 -0.6100 +vn 0.9659 -0.2588 0.0000 +vn 0.7654 -0.2051 -0.6100 +vn 0.5603 0.5603 0.6100 +vn -0.2051 0.7654 0.6100 +vn 0.7654 -0.2051 0.6100 +vn -0.7654 0.2051 0.6100 +vn -0.5603 -0.5603 0.6100 +vn 0.2051 -0.7654 0.6100 +vn 0.0000 -0.7924 -0.6100 +vn -0.8660 -0.5000 0.0000 +vn -0.6862 -0.3962 -0.6100 +vn 0.6862 -0.3962 -0.6100 +vn 0.8660 -0.5000 0.0000 +vn -0.8660 0.5000 0.0000 +vn -0.6862 0.3962 -0.6100 +vn 0.0000 0.7924 -0.6100 +vn 0.8660 0.5000 0.0000 +vn 0.6862 0.3962 -0.6100 +vn 0.0000 0.7924 0.6100 +vn -0.6862 0.3962 0.6100 +vn 0.6862 0.3962 0.6100 +vn -0.6862 -0.3962 0.6100 +vn 0.0000 -0.7924 0.6100 +vn 0.6862 -0.3962 0.6100 +vn 0.5603 -0.5603 -0.6100 +vn -0.2588 -0.9659 0.0000 +vn -0.2051 -0.7654 -0.6100 +vn 0.7654 0.2051 -0.6100 +vn 0.9659 0.2588 0.0000 +vn -0.9659 -0.2588 0.0000 +vn -0.7654 -0.2051 -0.6100 +vn -0.5603 0.5603 -0.6100 +vn 0.2588 0.9659 0.0000 +vn 0.2051 0.7654 -0.6100 +vn -0.5603 0.5603 0.6100 +vn -0.7654 -0.2051 0.6100 +vn 0.2051 0.7654 0.6100 +vn -0.2051 -0.7654 0.6100 +vn 0.5603 -0.5603 0.6100 +vn 0.7654 0.2051 0.6100 +vn 0.7924 0.0000 -0.6100 +vn 0.5000 -0.8660 0.0000 +vn 0.3962 -0.6862 -0.6100 +vn 0.3962 0.6862 -0.6100 +vn 0.5000 0.8660 0.0000 +vn -0.5000 -0.8660 0.0000 +vn -0.3962 -0.6862 -0.6100 +vn -0.7924 0.0000 -0.6100 +vn -0.5000 0.8660 0.0000 +vn -0.3962 0.6862 -0.6100 +vn -0.7924 0.0000 0.6100 +vn -0.3962 -0.6862 0.6100 +vn -0.3962 0.6862 0.6100 +vn 0.3962 -0.6862 0.6100 +vn 0.7924 0.0000 0.6100 +vn 0.3962 0.6862 0.6100 +g Pipe_Cylinder.002_None +s off +f 129/1/1 132/2/1 133/3/1 134/4/1 135/5/1 136/6/1 +f 141/7/2 144/8/2 145/9/2 146/10/2 147/11/2 148/12/2 +f 153/13/1 156/14/1 157/15/1 158/16/1 159/17/1 160/18/1 +f 165/19/2 168/20/2 169/21/2 170/22/2 171/23/2 172/24/2 +f 177/25/1 180/26/1 181/27/1 182/28/1 183/29/1 184/30/1 +f 189/31/2 192/32/2 193/33/2 194/34/2 195/35/2 196/36/2 +f 201/37/1 204/38/1 205/39/1 206/40/1 207/41/1 208/42/1 +f 213/43/2 216/44/2 217/45/2 218/46/2 219/47/2 220/48/2 +f 225/49/1 228/50/1 229/51/1 230/52/1 231/53/1 232/54/1 +f 237/55/2 240/56/2 241/57/2 242/58/2 243/59/2 244/60/2 +f 249/61/1 252/62/1 253/63/1 254/64/1 255/65/1 256/66/1 +f 261/67/2 264/68/2 265/69/2 266/70/2 267/71/2 268/72/2 +f 273/73/1 276/74/1 277/75/1 278/76/1 279/77/1 280/78/1 +f 285/79/2 288/80/2 289/81/2 290/82/2 291/83/2 292/84/2 +f 297/85/1 300/86/1 301/87/1 302/88/1 303/89/1 304/90/1 +f 309/91/2 312/92/2 313/93/2 314/94/2 315/95/2 316/96/2 +f 353/97/2 354/98/2 384/99/2 383/100/2 381/101/2 382/102/2 380/103/2 379/104/2 378/105/2 377/106/2 375/107/2 376/108/2 374/109/2 373/110/2 372/111/2 371/112/2 370/113/2 369/114/2 368/115/2 367/116/2 366/117/2 365/118/2 364/119/2 363/120/2 362/121/2 361/122/2 360/123/2 359/124/2 358/125/2 357/126/2 356/127/2 355/128/2 +f 332/129/1 349/130/1 333/131/1 334/132/1 335/133/1 336/134/1 337/135/1 350/136/1 338/137/1 339/138/1 340/139/1 351/140/1 341/141/1 352/142/1 342/143/1 343/144/1 344/145/1 345/146/1 346/147/1 321/148/1 322/149/1 323/150/1 324/151/1 325/152/1 326/153/1 327/154/1 328/155/1 329/156/1 347/157/1 330/158/1 348/159/1 331/160/1 +f 389/161/1 399/162/1 404/163/1 408/164/1 412/165/1 417/166/1 416/167/1 421/168/1 425/169/1 429/170/1 433/171/1 438/172/1 447/173/1 448/174/1 446/175/1 440/176/1 435/177/1 431/178/1 427/179/1 423/180/1 419/181/1 414/182/1 410/183/1 406/184/1 401/185/1 397/186/1 390/187/1 391/188/1 388/189/1 385/190/1 386/191/1 387/192/1 +f 393/193/2 392/194/2 398/195/2 403/196/2 402/197/2 407/198/2 411/199/2 415/200/2 420/201/2 424/202/2 428/203/2 432/204/2 436/205/2 441/206/2 437/207/2 443/208/2 442/209/2 444/210/2 445/211/2 439/212/2 434/213/2 430/214/2 426/215/2 422/216/2 418/217/2 413/218/2 409/219/2 405/220/2 400/221/2 396/222/2 395/223/2 394/224/2 +f 449/225/1 452/226/1 453/227/1 454/228/1 455/229/1 456/230/1 +f 461/231/2 464/232/2 465/233/2 466/234/2 467/235/2 468/236/2 +f 473/237/1 476/238/1 477/239/1 478/240/1 479/241/1 480/242/1 +f 485/243/2 488/244/2 489/245/2 490/246/2 491/247/2 492/248/2 +f 497/249/1 500/250/1 501/251/1 502/252/1 503/253/1 504/254/1 +f 509/255/2 512/256/2 513/257/2 514/258/2 515/259/2 516/260/2 +f 521/261/1 524/262/1 525/263/1 526/264/1 527/265/1 528/266/1 +f 533/267/2 536/268/2 537/269/2 538/270/2 539/271/2 540/272/2 +f 545/273/1 548/274/1 549/275/1 550/276/1 551/277/1 552/278/1 +f 557/279/2 560/280/2 561/281/2 562/282/2 563/283/2 564/284/2 +f 569/285/1 572/286/1 573/287/1 574/288/1 575/289/1 576/290/1 +f 581/291/2 584/292/2 585/293/2 586/294/2 587/295/2 588/296/2 +f 593/297/1 596/298/1 597/299/1 598/300/1 599/301/1 600/302/1 +f 605/303/2 608/304/2 609/305/2 610/306/2 611/307/2 612/308/2 +f 617/309/1 620/310/1 621/311/1 622/312/1 623/313/1 624/314/1 +f 629/315/2 632/316/2 633/317/2 634/318/2 635/319/2 636/320/2 +f 1635/321/3 1656/322/3 1642/323/3 1593/324/3 +f 1754/325/4 1817/326/4 1859/327/4 1768/328/4 +f 1579/329/5 1712/330/5 1698/331/5 1537/332/5 +f 1803/333/6 1824/334/6 1810/335/6 1761/336/6 +f 1544/337/7 1747/338/7 1740/339/7 1551/340/7 +f 1915/341/8 1936/342/8 1922/343/8 1873/344/8 +f 1887/345/9 1964/346/9 1957/347/9 1894/348/9 +f 1894/348/10 1957/347/10 1950/349/10 1901/350/10 +f 1901/351/11 1950/352/11 1943/353/11 1908/354/11 +f 1908/354/12 1943/353/12 1936/342/12 1915/341/12 +f 1880/355/13 1971/356/13 1964/346/13 1887/345/13 +f 1530/357/2 1593/324/2 1642/323/2 1705/358/2 +f 1551/340/14 1740/339/14 1733/359/14 1558/360/14 +f 1558/360/15 1733/359/15 1726/361/15 1565/362/15 +f 1565/363/16 1726/364/16 1719/365/16 1572/366/16 +f 1572/366/17 1719/365/17 1712/330/17 1579/329/17 +f 1586/367/18 1649/368/18 1691/369/18 1600/370/18 +f 1866/371/19 1537/332/19 1698/331/19 1929/372/19 +f 1586/367/20 1761/336/20 1810/335/20 1649/368/20 +f 1607/373/21 1684/374/21 1677/375/21 1614/376/21 +f 1614/376/22 1677/375/22 1670/377/22 1621/378/22 +f 1621/379/23 1670/380/23 1663/381/23 1628/382/23 +f 1628/382/24 1663/381/24 1656/322/24 1635/321/24 +f 1697/383/25 1711/384/25 1718/385/25 1725/386/25 1732/387/25 1739/388/25 1746/389/25 1704/390/25 1641/391/25 1655/392/25 1662/393/25 1669/394/25 1676/395/25 1683/396/25 1690/397/25 1648/398/25 1809/399/25 1823/400/25 1830/401/25 1837/402/25 1844/403/25 1851/404/25 1858/405/25 1816/406/25 1921/407/25 1935/408/25 1942/409/25 1949/410/25 1956/411/25 1963/412/25 1970/413/25 1928/414/25 +f 1600/370/26 1691/369/26 1684/374/26 1607/373/26 +f 1754/325/1 1873/344/1 1922/343/1 1817/326/1 +f 1775/415/27 1852/416/27 1845/417/27 1782/418/27 +f 1782/418/28 1845/417/28 1838/419/28 1789/420/28 +f 1789/421/29 1838/422/29 1831/423/29 1796/424/29 +f 1796/424/30 1831/423/30 1824/334/30 1803/333/30 +f 1866/371/31 1929/372/31 1971/356/31 1880/355/31 +f 1768/328/32 1859/327/32 1852/416/32 1775/415/32 +f 1530/357/33 1705/358/33 1747/338/33 1544/337/33 +f 641/425/34 642/426/34 644/427/34 643/428/34 +f 643/428/35 644/427/35 646/429/35 645/430/35 +f 645/431/20 646/432/20 648/433/20 647/434/20 +f 647/434/36 648/433/36 650/435/36 649/436/36 +f 649/437/37 650/438/37 652/439/37 651/440/37 +f 651/440/1 652/439/1 654/441/1 653/442/1 +f 653/443/38 654/444/38 656/445/38 655/446/38 +f 655/446/39 656/445/39 658/447/39 657/448/39 +f 657/449/19 658/450/19 660/451/19 659/452/19 +f 659/452/40 660/451/40 662/453/40 661/454/40 +f 661/455/41 662/456/41 664/457/41 663/458/41 +f 663/458/2 664/457/2 642/459/2 641/460/2 +f 894/461/2 900/462/2 672/463/2 666/464/2 +f 690/465/42 696/466/42 708/467/42 702/468/42 +f 702/469/22 708/470/22 720/471/22 714/472/22 +f 714/472/43 720/471/43 732/473/43 726/474/43 +f 726/474/44 732/473/44 744/475/44 738/476/44 +f 738/476/45 744/475/45 756/477/45 750/478/45 +f 750/478/20 756/477/20 768/479/20 762/480/20 +f 762/480/46 768/479/46 780/481/46 774/482/46 +f 774/482/47 780/481/47 792/483/47 786/484/47 +f 786/484/48 792/483/48 804/485/48 798/486/48 +f 798/486/28 804/485/28 816/487/28 810/488/28 +f 810/489/49 816/490/49 828/491/49 822/492/49 +f 822/492/50 828/491/50 840/493/50 834/494/50 +f 834/494/51 840/493/51 852/495/51 846/496/51 +f 846/496/1 852/495/1 864/497/1 858/498/1 +f 858/498/52 864/497/52 876/499/52 870/500/52 +f 870/500/53 876/499/53 1356/501/53 1410/502/53 +f 954/503/54 912/504/54 948/505/54 966/506/54 +f 1140/507/55 1158/508/55 1146/509/55 1104/510/55 +f 954/503/19 1056/511/19 1002/512/19 912/504/19 +f 1296/513/56 1470/514/56 888/515/56 882/516/56 +f 1049/517/57 959/518/57 1193/519/57 +f 990/520/58 924/521/58 918/522/58 996/523/58 +f 1092/524/59 1014/525/59 1002/512/59 1056/511/59 +f 966/506/60 948/505/60 942/526/60 972/527/60 +f 972/527/61 942/526/61 936/528/61 978/529/61 +f 978/530/62 936/531/62 930/532/62 984/533/62 +f 984/533/63 930/532/63 924/521/63 990/520/63 +f 1248/534/64 1194/535/64 960/536/64 906/537/64 +f 1086/538/65 1020/539/65 1014/525/65 1092/524/65 +f 1098/540/66 1152/541/66 1188/542/66 1110/543/66 +f 1062/544/67 1044/545/67 1038/546/67 1068/547/67 +f 1068/547/68 1038/546/68 1032/548/68 1074/549/68 +f 1074/549/69 1032/548/69 1026/550/69 1080/551/69 +f 1080/552/70 1026/553/70 1020/539/70 1086/538/70 +f 1008/554/71 1050/555/71 1104/510/71 1146/509/71 +f 882/516/72 888/515/72 900/462/72 894/461/72 +f 1206/556/73 1284/557/73 1278/558/73 1212/559/73 +f 666/464/74 672/463/74 684/560/74 678/561/74 +f 1236/562/75 1254/563/75 1242/564/75 1200/565/75 +f 1212/559/76 1278/558/76 1272/566/76 1218/567/76 +f 1218/567/77 1272/566/77 1266/568/77 1224/569/77 +f 1224/569/78 1266/568/78 1260/570/78 1230/571/78 +f 1230/571/79 1260/570/79 1254/563/79 1236/562/79 +f 1524/572/80 1302/573/80 1290/574/80 1476/575/80 +f 1416/576/81 1350/577/81 1200/565/81 1242/564/81 +f 1152/541/82 1098/540/82 1476/575/82 1290/574/82 +f 1116/578/83 1182/579/83 1176/580/83 1122/581/83 +f 1122/581/84 1176/580/84 1170/582/84 1128/583/84 +f 1128/583/85 1170/582/85 1164/584/85 1134/585/85 +f 1134/585/86 1164/584/86 1158/508/86 1140/507/86 +f 1194/535/87 1248/534/87 1284/557/87 1206/556/87 +f 1110/543/88 1188/542/88 1182/579/88 1116/578/88 +f 1050/555/89 1008/554/89 1044/545/89 1062/544/89 +f 1404/586/90 1422/587/90 1410/502/90 1356/501/90 +f 1368/588/91 1458/589/91 1452/590/91 1374/591/91 +f 1374/591/92 1452/590/92 1446/592/92 1380/593/92 +f 1380/593/93 1446/592/93 1440/594/93 1386/595/93 +f 1386/595/94 1440/594/94 1434/596/94 1392/597/94 +f 1392/597/95 1434/596/95 1428/598/95 1398/599/95 +f 1398/599/96 1428/598/96 1422/587/96 1404/586/96 +f 1362/600/97 1464/601/97 1458/589/97 1368/588/97 +f 1518/602/98 1308/603/98 1302/573/98 1524/572/98 +f 1350/577/99 1416/576/99 1464/601/99 1362/600/99 +f 1482/604/100 1344/605/100 1338/606/100 1488/607/100 +f 1488/607/101 1338/606/101 1332/608/101 1494/609/101 +f 1494/609/102 1332/608/102 1326/610/102 1500/611/102 +f 1500/611/103 1326/610/103 1320/612/103 1506/613/103 +f 1506/613/104 1320/612/104 1314/614/104 1512/615/104 +f 1512/615/105 1314/614/105 1308/603/105 1518/602/105 +f 1470/514/106 1296/513/106 1344/605/106 1482/604/106 +f 996/523/107 918/522/107 906/537/107 960/536/107 +f 678/561/108 684/560/108 696/466/108 690/465/108 +f 666/464/109 678/561/109 682/616/109 670/617/109 +f 670/617/110 682/616/110 681/618/110 669/619/110 +f 669/620/111 681/621/111 680/622/111 668/623/111 +f 668/623/112 680/622/112 679/624/112 667/625/112 +f 667/625/113 679/624/113 677/626/113 665/627/113 +f 684/560/114 672/463/114 676/628/114 688/629/114 +f 688/629/115 676/628/115 675/630/115 687/631/115 +f 687/632/116 675/633/116 674/634/116 686/635/116 +f 686/635/117 674/634/117 673/636/117 685/637/117 +f 685/637/118 673/636/118 671/638/118 683/639/118 +f 678/561/119 690/465/119 694/640/119 682/616/119 +f 682/616/120 694/640/120 693/641/120 681/618/120 +f 681/621/121 693/642/121 692/643/121 680/622/121 +f 680/622/122 692/643/122 691/644/122 679/624/122 +f 679/624/123 691/644/123 689/645/123 677/626/123 +f 696/466/124 684/560/124 688/629/124 700/646/124 +f 700/646/125 688/629/125 687/631/125 699/647/125 +f 699/648/126 687/632/126 686/635/126 698/649/126 +f 698/649/127 686/635/127 685/637/127 697/650/127 +f 697/650/128 685/637/128 683/639/128 695/651/128 +f 690/465/129 702/468/129 706/652/129 694/640/129 +f 694/640/130 706/652/130 705/653/130 693/641/130 +f 693/642/131 705/654/131 704/655/131 692/643/131 +f 692/643/132 704/655/132 703/656/132 691/644/132 +f 691/644/133 703/656/133 701/657/133 689/645/133 +f 708/467/134 696/466/134 700/646/134 712/658/134 +f 712/658/135 700/646/135 699/647/135 711/659/135 +f 711/660/136 699/648/136 698/649/136 710/661/136 +f 710/661/137 698/649/137 697/650/137 709/662/137 +f 709/662/138 697/650/138 695/651/138 707/663/138 +f 702/469/139 714/472/139 718/664/139 706/665/139 +f 706/665/140 718/664/140 717/666/140 705/667/140 +f 705/654/141 717/668/141 716/669/141 704/655/141 +f 704/655/142 716/669/142 715/670/142 703/656/142 +f 703/656/143 715/670/143 713/671/143 701/657/143 +f 720/471/144 708/470/144 712/672/144 724/673/144 +f 724/673/145 712/672/145 711/674/145 723/675/145 +f 723/676/146 711/660/146 710/661/146 722/677/146 +f 722/677/147 710/661/147 709/662/147 721/678/147 +f 721/678/148 709/662/148 707/663/148 719/679/148 +f 714/472/149 726/474/149 730/680/149 718/664/149 +f 718/664/150 730/680/150 729/681/150 717/666/150 +f 717/668/151 729/682/151 728/683/151 716/669/151 +f 716/669/152 728/683/152 727/684/152 715/670/152 +f 715/670/153 727/684/153 725/685/153 713/671/153 +f 732/473/154 720/471/154 724/673/154 736/686/154 +f 736/686/155 724/673/155 723/675/155 735/687/155 +f 735/688/156 723/676/156 722/677/156 734/689/156 +f 734/689/157 722/677/157 721/678/157 733/690/157 +f 733/690/158 721/678/158 719/679/158 731/691/158 +f 726/474/159 738/476/159 742/692/159 730/680/159 +f 730/680/160 742/692/160 741/693/160 729/681/160 +f 729/682/161 741/694/161 740/695/161 728/683/161 +f 728/683/162 740/695/162 739/696/162 727/684/162 +f 727/684/163 739/696/163 737/697/163 725/685/163 +f 744/475/164 732/473/164 736/686/164 748/698/164 +f 748/698/165 736/686/165 735/687/165 747/699/165 +f 747/700/166 735/688/166 734/689/166 746/701/166 +f 746/701/167 734/689/167 733/690/167 745/702/167 +f 745/702/168 733/690/168 731/691/168 743/703/168 +f 738/476/169 750/478/169 754/704/169 742/692/169 +f 742/692/170 754/704/170 753/705/170 741/693/170 +f 741/694/171 753/706/171 752/707/171 740/695/171 +f 740/695/172 752/707/172 751/708/172 739/696/172 +f 739/696/173 751/708/173 749/709/173 737/697/173 +f 756/477/174 744/475/174 748/698/174 760/710/174 +f 760/710/175 748/698/175 747/699/175 759/711/175 +f 759/712/176 747/700/176 746/701/176 758/713/176 +f 758/713/177 746/701/177 745/702/177 757/714/177 +f 757/714/178 745/702/178 743/703/178 755/715/178 +f 750/478/179 762/480/179 766/716/179 754/704/179 +f 754/704/180 766/716/180 765/717/180 753/705/180 +f 753/705/181 765/717/181 764/718/181 752/719/181 +f 752/707/182 764/720/182 763/721/182 751/708/182 +f 751/708/183 763/721/183 761/722/183 749/709/183 +f 768/479/184 756/477/184 760/710/184 772/723/184 +f 772/723/185 760/710/185 759/711/185 771/724/185 +f 771/724/186 759/711/186 758/725/186 770/726/186 +f 770/727/187 758/713/187 757/714/187 769/728/187 +f 769/728/188 757/714/188 755/715/188 767/729/188 +f 762/480/189 774/482/189 778/730/189 766/716/189 +f 766/716/190 778/730/190 777/731/190 765/717/190 +f 765/732/191 777/733/191 776/734/191 764/720/191 +f 764/720/192 776/734/192 775/735/192 763/721/192 +f 763/721/193 775/735/193 773/736/193 761/722/193 +f 780/481/194 768/479/194 772/723/194 784/737/194 +f 784/737/195 772/723/195 771/724/195 783/738/195 +f 783/739/196 771/740/196 770/727/196 782/741/196 +f 782/741/197 770/727/197 769/728/197 781/742/197 +f 781/742/198 769/728/198 767/729/198 779/743/198 +f 774/482/199 786/484/199 790/744/199 778/730/199 +f 778/730/200 790/744/200 789/745/200 777/731/200 +f 777/733/201 789/746/201 788/747/201 776/734/201 +f 776/734/202 788/747/202 787/748/202 775/735/202 +f 775/735/203 787/748/203 785/749/203 773/736/203 +f 792/483/204 780/481/204 784/737/204 796/750/204 +f 796/750/205 784/737/205 783/738/205 795/751/205 +f 795/752/206 783/739/206 782/741/206 794/753/206 +f 794/753/207 782/741/207 781/742/207 793/754/207 +f 793/754/208 781/742/208 779/743/208 791/755/208 +f 786/484/209 798/486/209 802/756/209 790/744/209 +f 790/744/210 802/756/210 801/757/210 789/745/210 +f 789/746/211 801/758/211 800/759/211 788/747/211 +f 788/747/212 800/759/212 799/760/212 787/748/212 +f 787/748/213 799/760/213 797/761/213 785/749/213 +f 804/485/214 792/483/214 796/750/214 808/762/214 +f 808/762/215 796/750/215 795/751/215 807/763/215 +f 807/764/216 795/752/216 794/753/216 806/765/216 +f 806/765/217 794/753/217 793/754/217 805/766/217 +f 805/766/218 793/754/218 791/755/218 803/767/218 +f 798/486/219 810/488/219 814/768/219 802/756/219 +f 802/756/220 814/768/220 813/769/220 801/757/220 +f 801/758/221 813/770/221 812/771/221 800/759/221 +f 800/759/222 812/771/222 811/772/222 799/760/222 +f 799/760/223 811/772/223 809/773/223 797/761/223 +f 816/487/224 804/485/224 808/762/224 820/774/224 +f 820/774/225 808/762/225 807/763/225 819/775/225 +f 819/776/226 807/764/226 806/765/226 818/777/226 +f 818/777/227 806/765/227 805/766/227 817/778/227 +f 817/778/228 805/766/228 803/767/228 815/779/228 +f 810/489/229 822/492/229 826/780/229 814/781/229 +f 814/781/230 826/780/230 825/782/230 813/783/230 +f 813/770/231 825/784/231 824/785/231 812/771/231 +f 812/771/232 824/785/232 823/786/232 811/772/232 +f 811/772/233 823/786/233 821/787/233 809/773/233 +f 828/491/234 816/490/234 820/788/234 832/789/234 +f 832/789/235 820/788/235 819/790/235 831/791/235 +f 831/792/236 819/776/236 818/777/236 830/793/236 +f 830/793/237 818/777/237 817/778/237 829/794/237 +f 829/794/238 817/778/238 815/779/238 827/795/238 +f 822/492/239 834/494/239 838/796/239 826/780/239 +f 826/780/240 838/796/240 837/797/240 825/782/240 +f 825/784/241 837/798/241 836/799/241 824/785/241 +f 824/785/242 836/799/242 835/800/242 823/786/242 +f 823/786/243 835/800/243 833/801/243 821/787/243 +f 840/493/244 828/491/244 832/789/244 844/802/244 +f 844/802/245 832/789/245 831/791/245 843/803/245 +f 843/804/246 831/792/246 830/793/246 842/805/246 +f 842/805/247 830/793/247 829/794/247 841/806/247 +f 841/806/248 829/794/248 827/795/248 839/807/248 +f 834/494/249 846/496/249 850/808/249 838/796/249 +f 838/796/250 850/808/250 849/809/250 837/797/250 +f 837/798/251 849/810/251 848/811/251 836/799/251 +f 836/799/252 848/811/252 847/812/252 835/800/252 +f 835/800/253 847/812/253 845/813/253 833/801/253 +f 852/495/254 840/493/254 844/802/254 856/814/254 +f 856/814/255 844/802/255 843/803/255 855/815/255 +f 855/816/256 843/804/256 842/805/256 854/817/256 +f 854/817/257 842/805/257 841/806/257 853/818/257 +f 853/818/258 841/806/258 839/807/258 851/819/258 +f 846/496/259 858/498/259 862/820/259 850/808/259 +f 850/808/260 862/820/260 861/821/260 849/809/260 +f 849/810/261 861/822/261 860/823/261 848/811/261 +f 848/811/262 860/823/262 859/824/262 847/812/262 +f 847/812/263 859/824/263 857/825/263 845/813/263 +f 864/497/264 852/495/264 856/814/264 868/826/264 +f 868/826/265 856/814/265 855/815/265 867/827/265 +f 867/828/266 855/816/266 854/817/266 866/829/266 +f 866/829/267 854/817/267 853/818/267 865/830/267 +f 865/830/268 853/818/268 851/819/268 863/831/268 +f 858/498/269 870/500/269 874/832/269 862/820/269 +f 862/820/270 874/832/270 873/833/270 861/821/270 +f 861/822/271 873/834/271 872/835/271 860/823/271 +f 860/823/272 872/835/272 871/836/272 859/824/272 +f 859/824/273 871/836/273 869/837/273 857/825/273 +f 876/499/274 864/497/274 868/826/274 880/838/274 +f 880/838/275 868/826/275 867/827/275 879/839/275 +f 879/840/276 867/828/276 866/829/276 878/841/276 +f 878/841/277 866/829/277 865/830/277 877/842/277 +f 877/842/278 865/830/278 863/831/278 875/843/278 +f 882/516/279 894/461/279 898/844/279 886/845/279 +f 886/845/280 898/844/280 897/846/280 885/847/280 +f 885/848/281 897/849/281 896/850/281 884/851/281 +f 884/851/282 896/850/282 895/852/282 883/853/282 +f 883/853/283 895/852/283 893/854/283 881/855/283 +f 900/462/284 888/515/284 892/856/284 904/857/284 +f 904/857/285 892/856/285 891/858/285 903/859/285 +f 903/860/286 891/861/286 890/862/286 902/863/286 +f 902/863/287 890/862/287 889/864/287 901/865/287 +f 901/865/288 889/864/288 887/866/288 899/867/288 +f 894/461/289 666/464/289 670/617/289 898/844/289 +f 898/844/290 670/617/290 669/619/290 897/846/290 +f 897/849/291 669/620/291 668/623/291 896/850/291 +f 896/850/292 668/623/292 667/625/292 895/852/292 +f 895/852/293 667/625/293 665/627/293 893/854/293 +f 672/463/294 900/462/294 904/857/294 676/628/294 +f 676/628/295 904/857/295 903/859/295 675/630/295 +f 675/633/296 903/860/296 902/863/296 674/634/296 +f 674/634/297 902/863/297 901/865/297 673/636/297 +f 673/636/298 901/865/298 899/867/298 671/638/298 +f 965/868/299 953/869/299 955/870/299 967/871/299 +f 967/871/300 955/870/300 956/872/300 968/873/300 +f 968/873/301 956/872/301 957/874/301 969/875/301 +f 969/876/302 957/877/302 958/878/302 970/879/302 +f 970/879/303 958/878/303 954/503/303 966/506/303 +f 911/880/304 947/881/304 949/882/304 913/883/304 +f 913/883/305 949/882/305 950/884/305 914/885/305 +f 914/885/306 950/884/306 951/886/306 915/887/306 +f 915/888/307 951/889/307 952/890/307 916/891/307 +f 916/891/308 952/890/308 948/505/308 912/504/308 +f 971/892/309 965/868/309 967/871/309 973/893/309 +f 973/893/310 967/871/310 968/873/310 974/894/310 +f 974/894/311 968/873/311 969/875/311 975/895/311 +f 975/896/312 969/876/312 970/879/312 976/897/312 +f 976/897/313 970/879/313 966/506/313 972/527/313 +f 947/881/314 941/898/314 943/899/314 949/882/314 +f 949/882/315 943/899/315 944/900/315 950/884/315 +f 950/884/316 944/900/316 945/901/316 951/886/316 +f 951/889/317 945/902/317 946/903/317 952/890/317 +f 952/890/318 946/903/318 942/526/318 948/505/318 +f 977/904/319 971/892/319 973/893/319 979/905/319 +f 979/905/320 973/893/320 974/894/320 980/906/320 +f 980/906/321 974/894/321 975/895/321 981/907/321 +f 981/908/322 975/896/322 976/897/322 982/909/322 +f 982/909/323 976/897/323 972/527/323 978/529/323 +f 941/898/324 935/910/324 937/911/324 943/899/324 +f 943/899/325 937/911/325 938/912/325 944/900/325 +f 944/900/326 938/912/326 939/913/326 945/901/326 +f 945/902/327 939/914/327 940/915/327 946/903/327 +f 946/903/328 940/915/328 936/528/328 942/526/328 +f 983/916/329 977/904/329 979/905/329 985/917/329 +f 985/917/330 979/905/330 980/906/330 986/918/330 +f 986/918/331 980/906/331 981/907/331 987/919/331 +f 987/920/332 981/921/332 982/922/332 988/923/332 +f 988/923/333 982/922/333 978/530/333 984/533/333 +f 935/910/334 929/924/334 931/925/334 937/911/334 +f 937/911/335 931/925/335 932/926/335 938/912/335 +f 938/912/336 932/926/336 933/927/336 939/913/336 +f 939/928/337 933/929/337 934/930/337 940/931/337 +f 940/931/338 934/930/338 930/532/338 936/531/338 +f 989/932/339 983/916/339 985/917/339 991/933/339 +f 991/933/340 985/917/340 986/918/340 992/934/340 +f 992/934/341 986/918/341 987/919/341 993/935/341 +f 993/936/342 987/920/342 988/923/342 994/937/342 +f 994/937/343 988/923/343 984/533/343 990/520/343 +f 929/924/344 923/938/344 925/939/344 931/925/344 +f 931/925/345 925/939/345 926/940/345 932/926/345 +f 932/926/346 926/940/346 927/941/346 933/927/346 +f 933/929/347 927/942/347 928/943/347 934/930/347 +f 934/930/348 928/943/348 924/521/348 930/532/348 +f 995/944/349 989/932/349 991/933/349 997/945/349 +f 997/945/350 991/933/350 992/934/350 998/946/350 +f 998/946/351 992/934/351 993/935/351 999/947/351 +f 999/948/352 993/936/352 994/937/352 1000/949/352 +f 1000/949/353 994/937/353 990/520/353 996/523/353 +f 923/938/354 917/950/354 919/951/354 925/939/354 +f 925/939/355 919/951/355 920/952/355 926/940/355 +f 926/940/356 920/952/356 921/953/356 927/941/356 +f 927/942/357 921/954/357 922/955/357 928/943/357 +f 928/943/358 922/955/358 918/522/358 924/521/358 +f 959/518/359 995/944/359 997/945/359 961/956/359 +f 961/956/360 997/945/360 998/946/360 962/957/360 +f 962/957/361 998/946/361 999/947/361 963/958/361 +f 963/959/362 999/948/362 1000/949/362 964/960/362 +f 964/960/363 1000/949/363 996/523/363 960/536/363 +f 917/950/364 905/961/364 907/962/364 919/951/364 +f 919/951/365 907/962/365 908/963/365 920/952/365 +f 920/952/366 908/963/366 909/964/366 921/953/366 +f 921/954/367 909/965/367 910/966/367 922/955/367 +f 922/955/368 910/966/368 906/537/368 918/522/368 +f 1061/967/369 1049/517/369 1051/968/369 1063/969/369 +f 1063/969/370 1051/968/370 1052/970/370 1064/971/370 +f 1064/971/371 1052/970/371 1053/972/371 1065/973/371 +f 1065/974/372 1053/975/372 1054/976/372 1066/977/372 +f 1066/977/373 1054/976/373 1050/555/373 1062/544/373 +f 1007/978/374 1043/979/374 1045/980/374 1009/981/374 +f 1009/981/375 1045/980/375 1046/982/375 1010/983/375 +f 1010/983/376 1046/982/376 1047/984/376 1011/985/376 +f 1011/986/377 1047/987/377 1048/988/377 1012/989/377 +f 1012/989/378 1048/988/378 1044/545/378 1008/554/378 +f 1067/990/379 1061/967/379 1063/969/379 1069/991/379 +f 1069/991/380 1063/969/380 1064/971/380 1070/992/380 +f 1070/992/381 1064/971/381 1065/973/381 1071/993/381 +f 1071/994/382 1065/974/382 1066/977/382 1072/995/382 +f 1072/995/383 1066/977/383 1062/544/383 1068/547/383 +f 1043/979/384 1037/996/384 1039/997/384 1045/980/384 +f 1045/980/385 1039/997/385 1040/998/385 1046/982/385 +f 1046/982/386 1040/998/386 1041/999/386 1047/984/386 +f 1047/987/387 1041/1000/387 1042/1001/387 1048/988/387 +f 1048/988/388 1042/1001/388 1038/546/388 1044/545/388 +f 1073/1002/389 1067/990/389 1069/991/389 1075/1003/389 +f 1075/1003/390 1069/991/390 1070/992/390 1076/1004/390 +f 1076/1004/391 1070/992/391 1071/993/391 1077/1005/391 +f 1077/1006/392 1071/994/392 1072/995/392 1078/1007/392 +f 1078/1007/393 1072/995/393 1068/547/393 1074/549/393 +f 1037/996/394 1031/1008/394 1033/1009/394 1039/997/394 +f 1039/997/395 1033/1009/395 1034/1010/395 1040/998/395 +f 1040/998/396 1034/1010/396 1035/1011/396 1041/999/396 +f 1041/1000/397 1035/1012/397 1036/1013/397 1042/1001/397 +f 1042/1001/398 1036/1013/398 1032/548/398 1038/546/398 +f 1079/1014/399 1073/1002/399 1075/1003/399 1081/1015/399 +f 1081/1015/400 1075/1003/400 1076/1004/400 1082/1016/400 +f 1082/1016/401 1076/1004/401 1077/1005/401 1083/1017/401 +f 1083/1018/402 1077/1006/402 1078/1007/402 1084/1019/402 +f 1084/1019/403 1078/1007/403 1074/549/403 1080/551/403 +f 1031/1008/404 1025/1020/404 1027/1021/404 1033/1009/404 +f 1033/1009/405 1027/1021/405 1028/1022/405 1034/1010/405 +f 1034/1010/406 1028/1022/406 1029/1023/406 1035/1011/406 +f 1035/1012/407 1029/1024/407 1030/1025/407 1036/1013/407 +f 1036/1013/408 1030/1025/408 1026/550/408 1032/548/408 +f 1085/1026/409 1079/1014/409 1081/1015/409 1087/1027/409 +f 1087/1027/410 1081/1015/410 1082/1016/410 1088/1028/410 +f 1088/1028/411 1082/1016/411 1083/1017/411 1089/1029/411 +f 1089/1030/412 1083/1031/412 1084/1032/412 1090/1033/412 +f 1090/1033/413 1084/1032/413 1080/552/413 1086/538/413 +f 1025/1020/414 1019/1034/414 1021/1035/414 1027/1021/414 +f 1027/1021/415 1021/1035/415 1022/1036/415 1028/1022/415 +f 1028/1022/416 1022/1036/416 1023/1037/416 1029/1023/416 +f 1029/1038/417 1023/1039/417 1024/1040/417 1030/1041/417 +f 1030/1041/418 1024/1040/418 1020/539/418 1026/553/418 +f 1091/1042/419 1085/1026/419 1087/1027/419 1093/1043/419 +f 1093/1043/420 1087/1027/420 1088/1028/420 1094/1044/420 +f 1094/1044/421 1088/1028/421 1089/1029/421 1095/1045/421 +f 1095/1046/422 1089/1030/422 1090/1033/422 1096/1047/422 +f 1096/1047/423 1090/1033/423 1086/538/423 1092/524/423 +f 1019/1034/424 1013/1048/424 1015/1049/424 1021/1035/424 +f 1021/1035/425 1015/1049/425 1016/1050/425 1022/1036/425 +f 1022/1036/426 1016/1050/426 1017/1051/426 1023/1037/426 +f 1023/1039/427 1017/1052/427 1018/1053/427 1024/1040/427 +f 1024/1040/428 1018/1053/428 1014/525/428 1020/539/428 +f 1055/1054/429 1091/1042/429 1093/1043/429 1057/1055/429 +f 1057/1055/430 1093/1043/430 1094/1044/430 1058/1056/430 +f 1058/1056/431 1094/1044/431 1095/1045/431 1059/1057/431 +f 1059/1058/432 1095/1046/432 1096/1047/432 1060/1059/432 +f 1060/1059/433 1096/1047/433 1092/524/433 1056/511/433 +f 1013/1048/434 1001/1060/434 1003/1061/434 1015/1049/434 +f 1015/1049/435 1003/1061/435 1004/1062/435 1016/1050/435 +f 1016/1050/436 1004/1062/436 1005/1063/436 1017/1051/436 +f 1017/1052/437 1005/1064/437 1006/1065/437 1018/1053/437 +f 1018/1053/438 1006/1065/438 1002/512/438 1014/525/438 +f 953/869/439 1055/1054/439 1057/1055/439 955/870/439 +f 955/870/440 1057/1055/440 1058/1056/440 956/872/440 +f 956/872/441 1058/1056/441 1059/1057/441 957/874/441 +f 957/877/442 1059/1058/442 1060/1059/442 958/878/442 +f 958/878/443 1060/1059/443 1056/511/443 954/503/443 +f 1001/1060/444 911/880/444 913/883/444 1003/1061/444 +f 1003/1061/445 913/883/445 914/885/445 1004/1062/445 +f 1004/1062/446 914/885/446 915/887/446 1005/1063/446 +f 1005/1064/447 915/888/447 916/891/447 1006/1065/447 +f 1006/1065/448 916/891/448 912/504/448 1002/512/448 +f 1205/1066/449 1193/519/449 1195/1067/449 1207/1068/449 +f 1207/1068/450 1195/1067/450 1196/1069/450 1208/1070/450 +f 1208/1070/451 1196/1069/451 1197/1071/451 1209/1072/451 +f 1209/1073/452 1197/1074/452 1198/1075/452 1210/1076/452 +f 1210/1076/453 1198/1075/453 1194/535/453 1206/556/453 +f 1247/1077/454 1283/1078/454 1285/1079/454 1249/1080/454 +f 1249/1080/455 1285/1079/455 1286/1081/455 1250/1082/455 +f 1250/1082/456 1286/1081/456 1287/1083/456 1251/1084/456 +f 1251/1085/457 1287/1086/457 1288/1087/457 1252/1088/457 +f 1252/1088/458 1288/1087/458 1284/557/458 1248/534/458 +f 1211/1089/459 1205/1066/459 1207/1068/459 1213/1090/459 +f 1213/1090/460 1207/1068/460 1208/1070/460 1214/1091/460 +f 1214/1091/461 1208/1070/461 1209/1072/461 1215/1092/461 +f 1215/1093/462 1209/1073/462 1210/1076/462 1216/1094/462 +f 1216/1094/463 1210/1076/463 1206/556/463 1212/559/463 +f 1283/1078/464 1277/1095/464 1279/1096/464 1285/1079/464 +f 1285/1079/465 1279/1096/465 1280/1097/465 1286/1081/465 +f 1286/1081/466 1280/1097/466 1281/1098/466 1287/1083/466 +f 1287/1086/467 1281/1099/467 1282/1100/467 1288/1087/467 +f 1288/1087/468 1282/1100/468 1278/558/468 1284/557/468 +f 1217/1101/469 1211/1089/469 1213/1090/469 1219/1102/469 +f 1219/1102/470 1213/1090/470 1214/1091/470 1220/1103/470 +f 1220/1103/471 1214/1091/471 1215/1092/471 1221/1104/471 +f 1221/1105/472 1215/1093/472 1216/1094/472 1222/1106/472 +f 1222/1106/473 1216/1094/473 1212/559/473 1218/567/473 +f 1277/1095/474 1271/1107/474 1273/1108/474 1279/1096/474 +f 1279/1096/475 1273/1108/475 1274/1109/475 1280/1097/475 +f 1280/1097/476 1274/1109/476 1275/1110/476 1281/1098/476 +f 1281/1099/477 1275/1111/477 1276/1112/477 1282/1100/477 +f 1282/1100/478 1276/1112/478 1272/566/478 1278/558/478 +f 1223/1113/479 1217/1101/479 1219/1102/479 1225/1114/479 +f 1225/1114/480 1219/1102/480 1220/1103/480 1226/1115/480 +f 1226/1115/481 1220/1103/481 1221/1104/481 1227/1116/481 +f 1227/1117/482 1221/1105/482 1222/1106/482 1228/1118/482 +f 1228/1118/483 1222/1106/483 1218/567/483 1224/569/483 +f 1271/1107/484 1265/1119/484 1267/1120/484 1273/1108/484 +f 1273/1108/485 1267/1120/485 1268/1121/485 1274/1109/485 +f 1274/1109/486 1268/1121/486 1269/1122/486 1275/1110/486 +f 1275/1111/487 1269/1123/487 1270/1124/487 1276/1112/487 +f 1276/1112/488 1270/1124/488 1266/568/488 1272/566/488 +f 1229/1125/489 1223/1113/489 1225/1114/489 1231/1126/489 +f 1231/1126/490 1225/1114/490 1226/1115/490 1232/1127/490 +f 1232/1127/491 1226/1115/491 1227/1116/491 1233/1128/491 +f 1233/1129/492 1227/1117/492 1228/1118/492 1234/1130/492 +f 1234/1130/493 1228/1118/493 1224/569/493 1230/571/493 +f 1265/1119/494 1259/1131/494 1261/1132/494 1267/1120/494 +f 1267/1120/495 1261/1132/495 1262/1133/495 1268/1121/495 +f 1268/1121/496 1262/1133/496 1263/1134/496 1269/1122/496 +f 1269/1123/497 1263/1135/497 1264/1136/497 1270/1124/497 +f 1270/1124/498 1264/1136/498 1260/570/498 1266/568/498 +f 1235/1137/499 1229/1125/499 1231/1126/499 1237/1138/499 +f 1237/1138/500 1231/1126/500 1232/1127/500 1238/1139/500 +f 1238/1139/501 1232/1127/501 1233/1128/501 1239/1140/501 +f 1239/1141/502 1233/1129/502 1234/1130/502 1240/1142/502 +f 1240/1142/503 1234/1130/503 1230/571/503 1236/562/503 +f 1259/1131/504 1253/1143/504 1255/1144/504 1261/1132/504 +f 1261/1132/505 1255/1144/505 1256/1145/505 1262/1133/505 +f 1262/1133/506 1256/1145/506 1257/1146/506 1263/1134/506 +f 1263/1135/507 1257/1147/507 1258/1148/507 1264/1136/507 +f 1264/1136/508 1258/1148/508 1254/563/508 1260/570/508 +f 1199/1149/509 1235/1137/509 1237/1138/509 1201/1150/509 +f 1201/1150/510 1237/1138/510 1238/1139/510 1202/1151/510 +f 1202/1151/511 1238/1139/511 1239/1140/511 1203/1152/511 +f 1203/1153/512 1239/1141/512 1240/1142/512 1204/1154/512 +f 1204/1154/513 1240/1142/513 1236/562/513 1200/565/513 +f 1253/1143/514 1241/1155/514 1243/1156/514 1255/1144/514 +f 1255/1144/515 1243/1156/515 1244/1157/515 1256/1145/515 +f 1256/1145/516 1244/1157/516 1245/1158/516 1257/1146/516 +f 1257/1147/517 1245/1159/517 1246/1160/517 1258/1148/517 +f 1258/1148/518 1246/1160/518 1242/564/518 1254/563/518 +f 1109/1161/519 1097/1162/519 1099/1163/519 1111/1164/519 +f 1111/1164/520 1099/1163/520 1100/1165/520 1112/1166/520 +f 1112/1166/521 1100/1165/521 1101/1167/521 1113/1168/521 +f 1113/1169/522 1101/1170/522 1102/1171/522 1114/1172/522 +f 1114/1172/523 1102/1171/523 1098/540/523 1110/543/523 +f 1151/1173/524 1187/1174/524 1189/1175/524 1153/1176/524 +f 1153/1176/525 1189/1175/525 1190/1177/525 1154/1178/525 +f 1154/1178/526 1190/1177/526 1191/1179/526 1155/1180/526 +f 1155/1181/527 1191/1182/527 1192/1183/527 1156/1184/527 +f 1156/1184/528 1192/1183/528 1188/542/528 1152/541/528 +f 1115/1185/529 1109/1161/529 1111/1164/529 1117/1186/529 +f 1117/1186/530 1111/1164/530 1112/1166/530 1118/1187/530 +f 1118/1187/531 1112/1166/531 1113/1168/531 1119/1188/531 +f 1119/1189/532 1113/1169/532 1114/1172/532 1120/1190/532 +f 1120/1190/533 1114/1172/533 1110/543/533 1116/578/533 +f 1187/1174/534 1181/1191/534 1183/1192/534 1189/1175/534 +f 1189/1175/535 1183/1192/535 1184/1193/535 1190/1177/535 +f 1190/1177/536 1184/1193/536 1185/1194/536 1191/1179/536 +f 1191/1182/537 1185/1195/537 1186/1196/537 1192/1183/537 +f 1192/1183/538 1186/1196/538 1182/579/538 1188/542/538 +f 1121/1197/539 1115/1185/539 1117/1186/539 1123/1198/539 +f 1123/1198/540 1117/1186/540 1118/1187/540 1124/1199/540 +f 1124/1199/541 1118/1187/541 1119/1188/541 1125/1200/541 +f 1125/1201/542 1119/1189/542 1120/1190/542 1126/1202/542 +f 1126/1202/543 1120/1190/543 1116/578/543 1122/581/543 +f 1181/1191/544 1175/1203/544 1177/1204/544 1183/1192/544 +f 1183/1192/545 1177/1204/545 1178/1205/545 1184/1193/545 +f 1184/1193/546 1178/1205/546 1179/1206/546 1185/1194/546 +f 1185/1195/547 1179/1207/547 1180/1208/547 1186/1196/547 +f 1186/1196/548 1180/1208/548 1176/580/548 1182/579/548 +f 1127/1209/549 1121/1197/549 1123/1198/549 1129/1210/549 +f 1129/1210/550 1123/1198/550 1124/1199/550 1130/1211/550 +f 1130/1211/551 1124/1199/551 1125/1200/551 1131/1212/551 +f 1131/1213/552 1125/1201/552 1126/1202/552 1132/1214/552 +f 1132/1214/553 1126/1202/553 1122/581/553 1128/583/553 +f 1175/1203/554 1169/1215/554 1171/1216/554 1177/1204/554 +f 1177/1204/555 1171/1216/555 1172/1217/555 1178/1205/555 +f 1178/1205/556 1172/1217/556 1173/1218/556 1179/1206/556 +f 1179/1207/557 1173/1219/557 1174/1220/557 1180/1208/557 +f 1180/1208/558 1174/1220/558 1170/582/558 1176/580/558 +f 1133/1221/559 1127/1209/559 1129/1210/559 1135/1222/559 +f 1135/1222/560 1129/1210/560 1130/1211/560 1136/1223/560 +f 1136/1223/561 1130/1211/561 1131/1212/561 1137/1224/561 +f 1137/1225/562 1131/1213/562 1132/1214/562 1138/1226/562 +f 1138/1226/563 1132/1214/563 1128/583/563 1134/585/563 +f 1169/1215/564 1163/1227/564 1165/1228/564 1171/1216/564 +f 1171/1216/565 1165/1228/565 1166/1229/565 1172/1217/565 +f 1172/1217/566 1166/1229/566 1167/1230/566 1173/1218/566 +f 1173/1219/567 1167/1231/567 1168/1232/567 1174/1220/567 +f 1174/1220/568 1168/1232/568 1164/584/568 1170/582/568 +f 1139/1233/569 1133/1221/569 1135/1222/569 1141/1234/569 +f 1141/1234/570 1135/1222/570 1136/1223/570 1142/1235/570 +f 1142/1235/571 1136/1223/571 1137/1224/571 1143/1236/571 +f 1143/1237/572 1137/1225/572 1138/1226/572 1144/1238/572 +f 1144/1238/573 1138/1226/573 1134/585/573 1140/507/573 +f 1163/1227/574 1157/1239/574 1159/1240/574 1165/1228/574 +f 1165/1228/575 1159/1240/575 1160/1241/575 1166/1229/575 +f 1166/1229/576 1160/1241/576 1161/1242/576 1167/1230/576 +f 1167/1231/577 1161/1243/577 1162/1244/577 1168/1232/577 +f 1168/1232/578 1162/1244/578 1158/508/578 1164/584/578 +f 1103/1245/579 1139/1233/579 1141/1234/579 1105/1246/579 +f 1105/1246/580 1141/1234/580 1142/1235/580 1106/1247/580 +f 1106/1247/581 1142/1235/581 1143/1236/581 1107/1248/581 +f 1107/1249/582 1143/1237/582 1144/1238/582 1108/1250/582 +f 1108/1250/583 1144/1238/583 1140/507/583 1104/510/583 +f 1157/1239/584 1145/1251/584 1147/1252/584 1159/1240/584 +f 1159/1240/585 1147/1252/585 1148/1253/585 1160/1241/585 +f 1160/1241/586 1148/1253/586 1149/1254/586 1161/1242/586 +f 1161/1243/587 1149/1255/587 1150/1256/587 1162/1244/587 +f 1162/1244/588 1150/1256/588 1146/509/588 1158/508/588 +f 1145/1251/589 1007/978/589 1009/981/589 1147/1252/589 +f 1147/1252/590 1009/981/590 1010/983/590 1148/1253/590 +f 1148/1253/591 1010/983/591 1011/985/591 1149/1254/591 +f 1149/1255/592 1011/986/592 1012/989/592 1150/1256/592 +f 1150/1256/593 1012/989/593 1008/554/593 1146/509/593 +f 1049/517/594 1103/1245/594 1105/1246/594 1051/968/594 +f 1051/968/595 1105/1246/595 1106/1247/595 1052/970/595 +f 1052/970/596 1106/1247/596 1107/1248/596 1053/972/596 +f 1053/975/597 1107/1249/597 1108/1250/597 1054/976/597 +f 1054/976/598 1108/1250/598 1104/510/598 1050/555/598 +f 905/961/599 1247/1077/599 1249/1080/599 907/962/599 +f 907/962/600 1249/1080/600 1250/1082/600 908/963/600 +f 908/963/601 1250/1082/601 1251/1084/601 909/964/601 +f 909/965/602 1251/1085/602 1252/1088/602 910/966/602 +f 910/966/603 1252/1088/603 1248/534/603 906/537/603 +f 1193/519/604 959/518/604 961/956/604 1195/1067/604 +f 1195/1067/605 961/956/605 962/957/605 1196/1069/605 +f 1196/1069/606 962/957/606 963/958/606 1197/1071/606 +f 1197/1074/607 963/959/607 964/960/607 1198/1075/607 +f 1198/1075/608 964/960/608 960/536/608 1194/535/608 +f 1361/1257/609 1349/1258/609 1351/1259/609 1363/1260/609 +f 1363/1260/610 1351/1259/610 1352/1261/610 1364/1262/610 +f 1364/1262/611 1352/1261/611 1353/1263/611 1365/1264/611 +f 1365/1265/612 1353/1266/612 1354/1267/612 1366/1268/612 +f 1366/1268/613 1354/1267/613 1350/577/613 1362/600/613 +f 1415/1269/614 1463/1270/614 1465/1271/614 1417/1272/614 +f 1417/1272/615 1465/1271/615 1466/1273/615 1418/1274/615 +f 1418/1274/616 1466/1273/616 1467/1275/616 1419/1276/616 +f 1419/1277/617 1467/1278/617 1468/1279/617 1420/1280/617 +f 1420/1280/618 1468/1279/618 1464/601/618 1416/576/618 +f 1367/1281/619 1361/1257/619 1363/1260/619 1369/1282/619 +f 1369/1282/620 1363/1260/620 1364/1262/620 1370/1283/620 +f 1370/1283/621 1364/1262/621 1365/1264/621 1371/1284/621 +f 1371/1285/622 1365/1265/622 1366/1268/622 1372/1286/622 +f 1372/1286/623 1366/1268/623 1362/600/623 1368/588/623 +f 1463/1270/624 1457/1287/624 1459/1288/624 1465/1271/624 +f 1465/1271/625 1459/1288/625 1460/1289/625 1466/1273/625 +f 1466/1273/626 1460/1289/626 1461/1290/626 1467/1275/626 +f 1467/1278/627 1461/1291/627 1462/1292/627 1468/1279/627 +f 1468/1279/628 1462/1292/628 1458/589/628 1464/601/628 +f 1373/1293/629 1367/1281/629 1369/1282/629 1375/1294/629 +f 1375/1294/630 1369/1282/630 1370/1283/630 1376/1295/630 +f 1376/1295/631 1370/1283/631 1371/1284/631 1377/1296/631 +f 1377/1297/632 1371/1285/632 1372/1286/632 1378/1298/632 +f 1378/1298/633 1372/1286/633 1368/588/633 1374/591/633 +f 1457/1287/634 1451/1299/634 1453/1300/634 1459/1288/634 +f 1459/1288/635 1453/1300/635 1454/1301/635 1460/1289/635 +f 1460/1289/636 1454/1301/636 1455/1302/636 1461/1290/636 +f 1461/1291/637 1455/1303/637 1456/1304/637 1462/1292/637 +f 1462/1292/638 1456/1304/638 1452/590/638 1458/589/638 +f 1379/1305/639 1373/1293/639 1375/1294/639 1381/1306/639 +f 1381/1306/640 1375/1294/640 1376/1295/640 1382/1307/640 +f 1382/1307/641 1376/1295/641 1377/1296/641 1383/1308/641 +f 1383/1309/642 1377/1297/642 1378/1298/642 1384/1310/642 +f 1384/1310/643 1378/1298/643 1374/591/643 1380/593/643 +f 1451/1299/644 1445/1311/644 1447/1312/644 1453/1300/644 +f 1453/1300/645 1447/1312/645 1448/1313/645 1454/1301/645 +f 1454/1301/646 1448/1313/646 1449/1314/646 1455/1302/646 +f 1455/1303/647 1449/1315/647 1450/1316/647 1456/1304/647 +f 1456/1304/648 1450/1316/648 1446/592/648 1452/590/648 +f 1385/1317/649 1379/1305/649 1381/1306/649 1387/1318/649 +f 1387/1318/650 1381/1306/650 1382/1307/650 1388/1319/650 +f 1388/1319/651 1382/1307/651 1383/1308/651 1389/1320/651 +f 1389/1321/652 1383/1309/652 1384/1310/652 1390/1322/652 +f 1390/1322/653 1384/1310/653 1380/593/653 1386/595/653 +f 1445/1311/654 1439/1323/654 1441/1324/654 1447/1312/654 +f 1447/1312/655 1441/1324/655 1442/1325/655 1448/1313/655 +f 1448/1313/656 1442/1325/656 1443/1326/656 1449/1314/656 +f 1449/1315/657 1443/1327/657 1444/1328/657 1450/1316/657 +f 1450/1316/658 1444/1328/658 1440/594/658 1446/592/658 +f 1391/1329/659 1385/1317/659 1387/1318/659 1393/1330/659 +f 1393/1330/660 1387/1318/660 1388/1319/660 1394/1331/660 +f 1394/1331/661 1388/1319/661 1389/1320/661 1395/1332/661 +f 1395/1333/662 1389/1321/662 1390/1322/662 1396/1334/662 +f 1396/1334/663 1390/1322/663 1386/595/663 1392/597/663 +f 1439/1323/664 1433/1335/664 1435/1336/664 1441/1324/664 +f 1441/1324/665 1435/1336/665 1436/1337/665 1442/1325/665 +f 1442/1325/666 1436/1337/666 1437/1338/666 1443/1326/666 +f 1443/1327/667 1437/1339/667 1438/1340/667 1444/1328/667 +f 1444/1328/668 1438/1340/668 1434/596/668 1440/594/668 +f 1397/1341/669 1391/1329/669 1393/1330/669 1399/1342/669 +f 1399/1342/670 1393/1330/670 1394/1331/670 1400/1343/670 +f 1400/1343/671 1394/1331/671 1395/1332/671 1401/1344/671 +f 1401/1345/672 1395/1333/672 1396/1334/672 1402/1346/672 +f 1402/1346/673 1396/1334/673 1392/597/673 1398/599/673 +f 1433/1335/674 1427/1347/674 1429/1348/674 1435/1336/674 +f 1435/1336/675 1429/1348/675 1430/1349/675 1436/1337/675 +f 1436/1337/676 1430/1349/676 1431/1350/676 1437/1338/676 +f 1437/1339/677 1431/1351/677 1432/1352/677 1438/1340/677 +f 1438/1340/678 1432/1352/678 1428/598/678 1434/596/678 +f 1403/1353/679 1397/1341/679 1399/1342/679 1405/1354/679 +f 1405/1354/680 1399/1342/680 1400/1343/680 1406/1355/680 +f 1406/1355/681 1400/1343/681 1401/1344/681 1407/1356/681 +f 1407/1357/682 1401/1345/682 1402/1346/682 1408/1358/682 +f 1408/1358/683 1402/1346/683 1398/599/683 1404/586/683 +f 1427/1347/684 1421/1359/684 1423/1360/684 1429/1348/684 +f 1429/1348/685 1423/1360/685 1424/1361/685 1430/1349/685 +f 1430/1349/686 1424/1361/686 1425/1362/686 1431/1350/686 +f 1431/1351/687 1425/1363/687 1426/1364/687 1432/1352/687 +f 1432/1352/688 1426/1364/688 1422/587/688 1428/598/688 +f 1355/1365/689 1403/1353/689 1405/1354/689 1357/1366/689 +f 1357/1366/690 1405/1354/690 1406/1355/690 1358/1367/690 +f 1358/1367/691 1406/1355/691 1407/1356/691 1359/1368/691 +f 1359/1369/692 1407/1357/692 1408/1358/692 1360/1370/692 +f 1360/1370/693 1408/1358/693 1404/586/693 1356/501/693 +f 1421/1359/694 1409/1371/694 1411/1372/694 1423/1360/694 +f 1423/1360/695 1411/1372/695 1412/1373/695 1424/1361/695 +f 1424/1361/696 1412/1373/696 1413/1374/696 1425/1362/696 +f 1425/1363/697 1413/1375/697 1414/1376/697 1426/1364/697 +f 1426/1364/698 1414/1376/698 1410/502/698 1422/587/698 +f 1481/1377/699 1469/1378/699 1471/1379/699 1483/1380/699 +f 1483/1380/700 1471/1379/700 1472/1381/700 1484/1382/700 +f 1484/1382/701 1472/1381/701 1473/1383/701 1485/1384/701 +f 1485/1385/702 1473/1386/702 1474/1387/702 1486/1388/702 +f 1486/1388/703 1474/1387/703 1470/514/703 1482/604/703 +f 1295/1389/704 1343/1390/704 1345/1391/704 1297/1392/704 +f 1297/1392/705 1345/1391/705 1346/1393/705 1298/1394/705 +f 1298/1394/706 1346/1393/706 1347/1395/706 1299/1396/706 +f 1299/1397/707 1347/1398/707 1348/1399/707 1300/1400/707 +f 1300/1400/708 1348/1399/708 1344/605/708 1296/513/708 +f 1487/1401/709 1481/1377/709 1483/1380/709 1489/1402/709 +f 1489/1402/710 1483/1380/710 1484/1382/710 1490/1403/710 +f 1490/1403/711 1484/1382/711 1485/1384/711 1491/1404/711 +f 1491/1405/712 1485/1385/712 1486/1388/712 1492/1406/712 +f 1492/1406/713 1486/1388/713 1482/604/713 1488/607/713 +f 1343/1390/714 1337/1407/714 1339/1408/714 1345/1391/714 +f 1345/1391/715 1339/1408/715 1340/1409/715 1346/1393/715 +f 1346/1393/716 1340/1409/716 1341/1410/716 1347/1395/716 +f 1347/1398/717 1341/1411/717 1342/1412/717 1348/1399/717 +f 1348/1399/718 1342/1412/718 1338/606/718 1344/605/718 +f 1493/1413/719 1487/1401/719 1489/1402/719 1495/1414/719 +f 1495/1414/720 1489/1402/720 1490/1403/720 1496/1415/720 +f 1496/1415/721 1490/1403/721 1491/1404/721 1497/1416/721 +f 1497/1417/722 1491/1405/722 1492/1406/722 1498/1418/722 +f 1498/1418/723 1492/1406/723 1488/607/723 1494/609/723 +f 1337/1407/724 1331/1419/724 1333/1420/724 1339/1408/724 +f 1339/1408/725 1333/1420/725 1334/1421/725 1340/1409/725 +f 1340/1409/726 1334/1421/726 1335/1422/726 1341/1410/726 +f 1341/1411/727 1335/1423/727 1336/1424/727 1342/1412/727 +f 1342/1412/728 1336/1424/728 1332/608/728 1338/606/728 +f 1499/1425/729 1493/1413/729 1495/1414/729 1501/1426/729 +f 1501/1426/730 1495/1414/730 1496/1415/730 1502/1427/730 +f 1502/1427/731 1496/1415/731 1497/1416/731 1503/1428/731 +f 1503/1429/732 1497/1417/732 1498/1418/732 1504/1430/732 +f 1504/1430/733 1498/1418/733 1494/609/733 1500/611/733 +f 1331/1419/734 1325/1431/734 1327/1432/734 1333/1420/734 +f 1333/1420/735 1327/1432/735 1328/1433/735 1334/1421/735 +f 1334/1421/736 1328/1433/736 1329/1434/736 1335/1422/736 +f 1335/1423/737 1329/1435/737 1330/1436/737 1336/1424/737 +f 1336/1424/738 1330/1436/738 1326/610/738 1332/608/738 +f 1505/1437/739 1499/1425/739 1501/1426/739 1507/1438/739 +f 1507/1438/740 1501/1426/740 1502/1427/740 1508/1439/740 +f 1508/1439/741 1502/1427/741 1503/1428/741 1509/1440/741 +f 1509/1441/742 1503/1429/742 1504/1430/742 1510/1442/742 +f 1510/1442/743 1504/1430/743 1500/611/743 1506/613/743 +f 1325/1431/744 1319/1443/744 1321/1444/744 1327/1432/744 +f 1327/1432/745 1321/1444/745 1322/1445/745 1328/1433/745 +f 1328/1433/746 1322/1445/746 1323/1446/746 1329/1434/746 +f 1329/1435/747 1323/1447/747 1324/1448/747 1330/1436/747 +f 1330/1436/748 1324/1448/748 1320/612/748 1326/610/748 +f 1511/1449/749 1505/1437/749 1507/1438/749 1513/1450/749 +f 1513/1450/750 1507/1438/750 1508/1439/750 1514/1451/750 +f 1514/1451/751 1508/1439/751 1509/1440/751 1515/1452/751 +f 1515/1453/752 1509/1441/752 1510/1442/752 1516/1454/752 +f 1516/1454/753 1510/1442/753 1506/613/753 1512/615/753 +f 1319/1443/754 1313/1455/754 1315/1456/754 1321/1444/754 +f 1321/1444/755 1315/1456/755 1316/1457/755 1322/1445/755 +f 1322/1445/756 1316/1457/756 1317/1458/756 1323/1446/756 +f 1323/1447/757 1317/1459/757 1318/1460/757 1324/1448/757 +f 1324/1448/758 1318/1460/758 1314/614/758 1320/612/758 +f 1517/1461/759 1511/1449/759 1513/1450/759 1519/1462/759 +f 1519/1462/760 1513/1450/760 1514/1451/760 1520/1463/760 +f 1520/1463/761 1514/1451/761 1515/1452/761 1521/1464/761 +f 1521/1465/762 1515/1453/762 1516/1454/762 1522/1466/762 +f 1522/1466/763 1516/1454/763 1512/615/763 1518/602/763 +f 1313/1455/764 1307/1467/764 1309/1468/764 1315/1456/764 +f 1315/1456/765 1309/1468/765 1310/1469/765 1316/1457/765 +f 1316/1457/766 1310/1469/766 1311/1470/766 1317/1458/766 +f 1317/1459/767 1311/1471/767 1312/1472/767 1318/1460/767 +f 1318/1460/768 1312/1472/768 1308/603/768 1314/614/768 +f 1523/1473/769 1517/1461/769 1519/1462/769 1525/1474/769 +f 1525/1474/770 1519/1462/770 1520/1463/770 1526/1475/770 +f 1526/1475/771 1520/1463/771 1521/1464/771 1527/1476/771 +f 1527/1477/772 1521/1465/772 1522/1466/772 1528/1478/772 +f 1528/1478/773 1522/1466/773 1518/602/773 1524/572/773 +f 1307/1467/774 1301/1479/774 1303/1480/774 1309/1468/774 +f 1309/1468/775 1303/1480/775 1304/1481/775 1310/1469/775 +f 1310/1469/776 1304/1481/776 1305/1482/776 1311/1470/776 +f 1311/1471/777 1305/1483/777 1306/1484/777 1312/1472/777 +f 1312/1472/778 1306/1484/778 1302/573/778 1308/603/778 +f 1475/1485/779 1523/1473/779 1525/1474/779 1477/1486/779 +f 1477/1486/780 1525/1474/780 1526/1475/780 1478/1487/780 +f 1478/1487/781 1526/1475/781 1527/1476/781 1479/1488/781 +f 1479/1489/782 1527/1477/782 1528/1478/782 1480/1490/782 +f 1480/1490/783 1528/1478/783 1524/572/783 1476/575/783 +f 1301/1479/784 1289/1491/784 1291/1492/784 1303/1480/784 +f 1303/1480/785 1291/1492/785 1292/1493/785 1304/1481/785 +f 1304/1481/786 1292/1493/786 1293/1494/786 1305/1482/786 +f 1305/1483/787 1293/1495/787 1294/1496/787 1306/1484/787 +f 1306/1484/788 1294/1496/788 1290/574/788 1302/573/788 +f 881/855/789 1295/1389/789 1297/1392/789 883/853/789 +f 883/853/790 1297/1392/790 1298/1394/790 884/851/790 +f 884/851/791 1298/1394/791 1299/1396/791 885/848/791 +f 885/847/792 1299/1397/792 1300/1400/792 886/845/792 +f 886/845/793 1300/1400/793 1296/513/793 882/516/793 +f 1469/1378/794 887/866/794 889/864/794 1471/1379/794 +f 1471/1379/795 889/864/795 890/862/795 1472/1381/795 +f 1472/1381/796 890/862/796 891/861/796 1473/1383/796 +f 1473/1386/797 891/858/797 892/856/797 1474/1387/797 +f 1474/1387/798 892/856/798 888/515/798 1470/514/798 +f 1289/1491/799 1151/1173/799 1153/1176/799 1291/1492/799 +f 1291/1492/800 1153/1176/800 1154/1178/800 1292/1493/800 +f 1292/1493/801 1154/1178/801 1155/1180/801 1293/1494/801 +f 1293/1495/802 1155/1181/802 1156/1184/802 1294/1496/802 +f 1294/1496/803 1156/1184/803 1152/541/803 1290/574/803 +f 1097/1162/804 1475/1485/804 1477/1486/804 1099/1163/804 +f 1099/1163/805 1477/1486/805 1478/1487/805 1100/1165/805 +f 1100/1165/806 1478/1487/806 1479/1488/806 1101/1167/806 +f 1101/1170/807 1479/1489/807 1480/1490/807 1102/1171/807 +f 1102/1171/808 1480/1490/808 1476/575/808 1098/540/808 +f 1409/1371/809 869/837/809 871/836/809 1411/1372/809 +f 1411/1372/810 871/836/810 872/835/810 1412/1373/810 +f 1412/1373/811 872/835/811 873/834/811 1413/1374/811 +f 1413/1375/812 873/833/812 874/832/812 1414/1376/812 +f 1414/1376/813 874/832/813 870/500/813 1410/502/813 +f 875/843/814 1355/1365/814 1357/1366/814 877/842/814 +f 877/842/815 1357/1366/815 1358/1367/815 878/841/815 +f 878/841/816 1358/1367/816 1359/1368/816 879/840/816 +f 879/839/817 1359/1369/817 1360/1370/817 880/838/817 +f 880/838/818 1360/1370/818 1356/501/818 876/499/818 +f 1241/1155/819 1415/1269/819 1417/1272/819 1243/1156/819 +f 1243/1156/820 1417/1272/820 1418/1274/820 1244/1157/820 +f 1244/1157/821 1418/1274/821 1419/1276/821 1245/1158/821 +f 1245/1159/822 1419/1277/822 1420/1280/822 1246/1160/822 +f 1246/1160/823 1420/1280/823 1416/576/823 1242/564/823 +f 1349/1258/824 1199/1149/824 1201/1150/824 1351/1259/824 +f 1351/1259/825 1201/1150/825 1202/1151/825 1352/1261/825 +f 1352/1261/826 1202/1151/826 1203/1152/826 1353/1263/826 +f 1353/1266/827 1203/1153/827 1204/1154/827 1354/1267/827 +f 1354/1267/828 1204/1154/828 1200/565/828 1350/577/828 +f 1163/1227/25 1169/1215/25 1277/1095/25 +f 1879/1497/829 1865/1498/829 1867/1499/829 1881/1500/829 +f 1881/1500/830 1867/1499/830 1868/1501/830 1882/1502/830 +f 1882/1502/831 1868/1501/831 1869/1503/831 1883/1504/831 +f 1883/1505/832 1869/1506/832 1870/1507/832 1884/1508/832 +f 1884/1508/833 1870/1507/833 1871/1509/833 1885/1510/833 +f 1885/1510/834 1871/1509/834 1866/371/834 1880/355/834 +f 1928/414/835 1970/413/835 1972/1511/835 1930/1512/835 +f 1930/1512/836 1972/1511/836 1973/1513/836 1931/1514/836 +f 1931/1514/837 1973/1513/837 1974/1515/837 1932/1516/837 +f 1932/1517/838 1974/1518/838 1975/1519/838 1933/1520/838 +f 1933/1520/839 1975/1519/839 1976/1521/839 1934/1522/839 +f 1934/1522/840 1976/1521/840 1971/356/840 1929/372/840 +f 1886/1523/841 1879/1497/841 1881/1500/841 1888/1524/841 +f 1888/1524/842 1881/1500/842 1882/1502/842 1889/1525/842 +f 1889/1525/843 1882/1502/843 1883/1526/843 1890/1527/843 +f 1890/1528/844 1883/1529/844 1884/1530/844 1891/1531/844 +f 1891/1531/845 1884/1530/845 1885/1532/845 1892/1533/845 +f 1892/1533/846 1885/1532/846 1880/355/846 1887/345/846 +f 1970/413/847 1963/412/847 1965/1534/847 1972/1511/847 +f 1972/1511/848 1965/1534/848 1966/1535/848 1973/1513/848 +f 1973/1513/849 1966/1535/849 1967/1536/849 1974/1537/849 +f 1974/1538/850 1967/1539/850 1968/1540/850 1975/1541/850 +f 1975/1541/851 1968/1540/851 1969/1542/851 1976/1543/851 +f 1976/1543/852 1969/1542/852 1964/346/852 1971/356/852 +f 1893/1544/853 1886/1523/853 1888/1524/853 1895/1545/853 +f 1895/1545/854 1888/1524/854 1889/1525/854 1896/1546/854 +f 1896/1546/855 1889/1525/855 1890/1547/855 1897/1548/855 +f 1897/1549/856 1890/1550/856 1891/1551/856 1898/1552/856 +f 1898/1552/857 1891/1551/857 1892/1553/857 1899/1554/857 +f 1899/1554/858 1892/1553/858 1887/345/858 1894/348/858 +f 1963/412/859 1956/411/859 1958/1555/859 1965/1534/859 +f 1965/1534/860 1958/1555/860 1959/1556/860 1966/1535/860 +f 1966/1535/861 1959/1556/861 1960/1557/861 1967/1558/861 +f 1967/1559/862 1960/1560/862 1961/1561/862 1968/1562/862 +f 1968/1562/863 1961/1561/863 1962/1563/863 1969/1564/863 +f 1969/1564/864 1962/1563/864 1957/347/864 1964/346/864 +f 1900/1565/865 1893/1544/865 1895/1545/865 1902/1566/865 +f 1902/1566/866 1895/1545/866 1896/1546/866 1903/1567/866 +f 1903/1567/867 1896/1546/867 1897/1568/867 1904/1569/867 +f 1904/1570/868 1897/1571/868 1898/1572/868 1905/1573/868 +f 1905/1573/869 1898/1572/869 1899/1574/869 1906/1575/869 +f 1906/1575/870 1899/1574/870 1894/348/870 1901/350/870 +f 1956/411/871 1949/410/871 1951/1576/871 1958/1555/871 +f 1958/1555/872 1951/1576/872 1952/1577/872 1959/1556/872 +f 1959/1556/873 1952/1577/873 1953/1578/873 1960/1579/873 +f 1960/1580/874 1953/1581/874 1954/1582/874 1961/1583/874 +f 1961/1583/875 1954/1582/875 1955/1584/875 1962/1585/875 +f 1962/1585/876 1955/1584/876 1950/349/876 1957/347/876 +f 1907/1586/877 1900/1565/877 1902/1566/877 1909/1587/877 +f 1909/1587/878 1902/1566/878 1903/1567/878 1910/1588/878 +f 1910/1588/879 1903/1567/879 1904/1589/879 1911/1590/879 +f 1911/1591/880 1904/1592/880 1905/1593/880 1912/1594/880 +f 1912/1594/881 1905/1593/881 1906/1595/881 1913/1596/881 +f 1913/1596/882 1906/1595/882 1901/351/882 1908/354/882 +f 1949/410/883 1942/409/883 1944/1597/883 1951/1576/883 +f 1951/1576/884 1944/1597/884 1945/1598/884 1952/1577/884 +f 1952/1577/885 1945/1598/885 1946/1599/885 1953/1600/885 +f 1953/1601/886 1946/1602/886 1947/1603/886 1954/1604/886 +f 1954/1604/887 1947/1603/887 1948/1605/887 1955/1606/887 +f 1955/1606/888 1948/1605/888 1943/353/888 1950/352/888 +f 1914/1607/889 1907/1586/889 1909/1587/889 1916/1608/889 +f 1916/1608/890 1909/1587/890 1910/1588/890 1917/1609/890 +f 1917/1609/891 1910/1588/891 1911/1610/891 1918/1611/891 +f 1918/1612/892 1911/1613/892 1912/1614/892 1919/1615/892 +f 1919/1615/893 1912/1614/893 1913/1616/893 1920/1617/893 +f 1920/1617/894 1913/1616/894 1908/354/894 1915/341/894 +f 1942/409/895 1935/408/895 1937/1618/895 1944/1597/895 +f 1944/1597/896 1937/1618/896 1938/1619/896 1945/1598/896 +f 1945/1598/897 1938/1619/897 1939/1620/897 1946/1621/897 +f 1946/1622/898 1939/1623/898 1940/1624/898 1947/1625/898 +f 1947/1625/899 1940/1624/899 1941/1626/899 1948/1627/899 +f 1948/1627/900 1941/1626/900 1936/342/900 1943/353/900 +f 1872/1628/901 1914/1607/901 1916/1608/901 1874/1629/901 +f 1874/1629/902 1916/1608/902 1917/1609/902 1875/1630/902 +f 1875/1630/903 1917/1609/903 1918/1631/903 1876/1632/903 +f 1876/1633/904 1918/1634/904 1919/1635/904 1877/1636/904 +f 1877/1636/905 1919/1635/905 1920/1637/905 1878/1638/905 +f 1878/1638/906 1920/1637/906 1915/341/906 1873/344/906 +f 1935/408/907 1921/407/907 1923/1639/907 1937/1618/907 +f 1937/1618/908 1923/1639/908 1924/1640/908 1938/1619/908 +f 1938/1619/909 1924/1640/909 1925/1641/909 1939/1642/909 +f 1939/1643/910 1925/1644/910 1926/1645/910 1940/1646/910 +f 1940/1646/911 1926/1645/911 1927/1647/911 1941/1648/911 +f 1941/1648/912 1927/1647/912 1922/343/912 1936/342/912 +f 1543/1649/913 1529/1650/913 1531/1651/913 1545/1652/913 +f 1545/1652/914 1531/1651/914 1532/1653/914 1546/1654/914 +f 1546/1654/915 1532/1653/915 1533/1655/915 1547/1656/915 +f 1547/1657/916 1533/1658/916 1534/1659/916 1548/1660/916 +f 1548/1660/917 1534/1659/917 1535/1661/917 1549/1662/917 +f 1549/1662/918 1535/1661/918 1530/357/918 1544/337/918 +f 1704/390/919 1746/389/919 1748/1663/919 1706/1664/919 +f 1706/1664/920 1748/1663/920 1749/1665/920 1707/1666/920 +f 1707/1666/921 1749/1665/921 1750/1667/921 1708/1668/921 +f 1708/1669/922 1750/1670/922 1751/1671/922 1709/1672/922 +f 1709/1672/923 1751/1671/923 1752/1673/923 1710/1674/923 +f 1710/1674/924 1752/1673/924 1747/338/924 1705/358/924 +f 1550/1675/925 1543/1649/925 1545/1652/925 1552/1676/925 +f 1552/1676/926 1545/1652/926 1546/1654/926 1553/1677/926 +f 1553/1677/927 1546/1654/927 1547/1678/927 1554/1679/927 +f 1554/1680/928 1547/1681/928 1548/1682/928 1555/1683/928 +f 1555/1683/929 1548/1682/929 1549/1684/929 1556/1685/929 +f 1556/1685/930 1549/1684/930 1544/337/930 1551/340/930 +f 1746/389/931 1739/388/931 1741/1686/931 1748/1663/931 +f 1748/1663/932 1741/1686/932 1742/1687/932 1749/1665/932 +f 1749/1665/933 1742/1687/933 1743/1688/933 1750/1689/933 +f 1750/1690/934 1743/1691/934 1744/1692/934 1751/1693/934 +f 1751/1693/935 1744/1692/935 1745/1694/935 1752/1695/935 +f 1752/1695/936 1745/1694/936 1740/339/936 1747/338/936 +f 1557/1696/937 1550/1675/937 1552/1676/937 1559/1697/937 +f 1559/1697/938 1552/1676/938 1553/1677/938 1560/1698/938 +f 1560/1698/939 1553/1677/939 1554/1699/939 1561/1700/939 +f 1561/1701/940 1554/1702/940 1555/1703/940 1562/1704/940 +f 1562/1704/941 1555/1703/941 1556/1705/941 1563/1706/941 +f 1563/1706/942 1556/1705/942 1551/340/942 1558/360/942 +f 1739/388/943 1732/387/943 1734/1707/943 1741/1686/943 +f 1741/1686/944 1734/1707/944 1735/1708/944 1742/1687/944 +f 1742/1687/945 1735/1708/945 1736/1709/945 1743/1710/945 +f 1743/1711/946 1736/1712/946 1737/1713/946 1744/1714/946 +f 1744/1714/947 1737/1713/947 1738/1715/947 1745/1716/947 +f 1745/1716/948 1738/1715/948 1733/359/948 1740/339/948 +f 1564/1717/949 1557/1696/949 1559/1697/949 1566/1718/949 +f 1566/1718/950 1559/1697/950 1560/1698/950 1567/1719/950 +f 1567/1719/951 1560/1698/951 1561/1720/951 1568/1721/951 +f 1568/1722/952 1561/1723/952 1562/1724/952 1569/1725/952 +f 1569/1725/953 1562/1724/953 1563/1726/953 1570/1727/953 +f 1570/1727/954 1563/1726/954 1558/360/954 1565/362/954 +f 1732/387/955 1725/386/955 1727/1728/955 1734/1707/955 +f 1734/1707/956 1727/1728/956 1728/1729/956 1735/1708/956 +f 1735/1708/957 1728/1729/957 1729/1730/957 1736/1731/957 +f 1736/1732/958 1729/1733/958 1730/1734/958 1737/1735/958 +f 1737/1735/959 1730/1734/959 1731/1736/959 1738/1737/959 +f 1738/1737/960 1731/1736/960 1726/361/960 1733/359/960 +f 1571/1738/961 1564/1717/961 1566/1718/961 1573/1739/961 +f 1573/1739/962 1566/1718/962 1567/1719/962 1574/1740/962 +f 1574/1740/963 1567/1719/963 1568/1741/963 1575/1742/963 +f 1575/1743/964 1568/1744/964 1569/1745/964 1576/1746/964 +f 1576/1746/965 1569/1745/965 1570/1747/965 1577/1748/965 +f 1577/1748/966 1570/1747/966 1565/363/966 1572/366/966 +f 1725/386/967 1718/385/967 1720/1749/967 1727/1728/967 +f 1727/1728/968 1720/1749/968 1721/1750/968 1728/1729/968 +f 1728/1729/969 1721/1750/969 1722/1751/969 1729/1752/969 +f 1729/1753/970 1722/1754/970 1723/1755/970 1730/1756/970 +f 1730/1756/971 1723/1755/971 1724/1757/971 1731/1758/971 +f 1731/1758/972 1724/1757/972 1719/365/972 1726/364/972 +f 1578/1759/973 1571/1738/973 1573/1739/973 1580/1760/973 +f 1580/1760/974 1573/1739/974 1574/1740/974 1581/1761/974 +f 1581/1761/975 1574/1740/975 1575/1762/975 1582/1763/975 +f 1582/1764/976 1575/1765/976 1576/1766/976 1583/1767/976 +f 1583/1767/977 1576/1766/977 1577/1768/977 1584/1769/977 +f 1584/1769/978 1577/1768/978 1572/366/978 1579/329/978 +f 1718/385/979 1711/384/979 1713/1770/979 1720/1749/979 +f 1720/1749/980 1713/1770/980 1714/1771/980 1721/1750/980 +f 1721/1750/981 1714/1771/981 1715/1772/981 1722/1773/981 +f 1722/1774/982 1715/1775/982 1716/1776/982 1723/1777/982 +f 1723/1777/983 1716/1776/983 1717/1778/983 1724/1779/983 +f 1724/1779/984 1717/1778/984 1712/330/984 1719/365/984 +f 1536/1780/985 1578/1759/985 1580/1760/985 1538/1781/985 +f 1538/1781/986 1580/1760/986 1581/1761/986 1539/1782/986 +f 1539/1782/987 1581/1761/987 1582/1783/987 1540/1784/987 +f 1540/1785/988 1582/1786/988 1583/1787/988 1541/1788/988 +f 1541/1788/989 1583/1787/989 1584/1789/989 1542/1790/989 +f 1542/1790/990 1584/1789/990 1579/329/990 1537/332/990 +f 1711/384/991 1697/383/991 1699/1791/991 1713/1770/991 +f 1713/1770/992 1699/1791/992 1700/1792/992 1714/1771/992 +f 1714/1771/993 1700/1792/993 1701/1793/993 1715/1794/993 +f 1715/1795/994 1701/1796/994 1702/1797/994 1716/1798/994 +f 1716/1798/995 1702/1797/995 1703/1799/995 1717/1800/995 +f 1717/1800/996 1703/1799/996 1698/331/996 1712/330/996 +f 1599/1801/997 1585/1802/997 1587/1803/997 1601/1804/997 +f 1601/1804/998 1587/1803/998 1588/1805/998 1602/1806/998 +f 1602/1806/999 1588/1805/999 1589/1807/999 1603/1808/999 +f 1603/1809/1000 1589/1810/1000 1590/1811/1000 1604/1812/1000 +f 1604/1812/1001 1590/1811/1001 1591/1813/1001 1605/1814/1001 +f 1605/1814/1002 1591/1813/1002 1586/367/1002 1600/370/1002 +f 1648/398/1003 1690/397/1003 1692/1815/1003 1650/1816/1003 +f 1650/1816/1004 1692/1815/1004 1693/1817/1004 1651/1818/1004 +f 1651/1818/1005 1693/1817/1005 1694/1819/1005 1652/1820/1005 +f 1652/1821/1006 1694/1822/1006 1695/1823/1006 1653/1824/1006 +f 1653/1824/1007 1695/1823/1007 1696/1825/1007 1654/1826/1007 +f 1654/1826/1008 1696/1825/1008 1691/369/1008 1649/368/1008 +f 1606/1827/1009 1599/1801/1009 1601/1804/1009 1608/1828/1009 +f 1608/1828/1010 1601/1804/1010 1602/1806/1010 1609/1829/1010 +f 1609/1829/1011 1602/1806/1011 1603/1830/1011 1610/1831/1011 +f 1610/1832/1012 1603/1833/1012 1604/1834/1012 1611/1835/1012 +f 1611/1835/1013 1604/1834/1013 1605/1836/1013 1612/1837/1013 +f 1612/1837/1014 1605/1836/1014 1600/370/1014 1607/373/1014 +f 1690/397/1015 1683/396/1015 1685/1838/1015 1692/1815/1015 +f 1692/1815/1016 1685/1838/1016 1686/1839/1016 1693/1817/1016 +f 1693/1817/1017 1686/1839/1017 1687/1840/1017 1694/1841/1017 +f 1694/1842/1018 1687/1843/1018 1688/1844/1018 1695/1845/1018 +f 1695/1845/1019 1688/1844/1019 1689/1846/1019 1696/1847/1019 +f 1696/1847/1020 1689/1846/1020 1684/374/1020 1691/369/1020 +f 1613/1848/1021 1606/1827/1021 1608/1828/1021 1615/1849/1021 +f 1615/1849/1022 1608/1828/1022 1609/1829/1022 1616/1850/1022 +f 1616/1850/1023 1609/1829/1023 1610/1851/1023 1617/1852/1023 +f 1617/1853/1024 1610/1854/1024 1611/1855/1024 1618/1856/1024 +f 1618/1856/1025 1611/1855/1025 1612/1857/1025 1619/1858/1025 +f 1619/1858/1026 1612/1857/1026 1607/373/1026 1614/376/1026 +f 1683/396/1027 1676/395/1027 1678/1859/1027 1685/1838/1027 +f 1685/1838/1028 1678/1859/1028 1679/1860/1028 1686/1839/1028 +f 1686/1839/1029 1679/1860/1029 1680/1861/1029 1687/1862/1029 +f 1687/1863/1030 1680/1864/1030 1681/1865/1030 1688/1866/1030 +f 1688/1866/1031 1681/1865/1031 1682/1867/1031 1689/1868/1031 +f 1689/1868/1032 1682/1867/1032 1677/375/1032 1684/374/1032 +f 1620/1869/1033 1613/1848/1033 1615/1849/1033 1622/1870/1033 +f 1622/1870/1034 1615/1849/1034 1616/1850/1034 1623/1871/1034 +f 1623/1871/1035 1616/1850/1035 1617/1872/1035 1624/1873/1035 +f 1624/1874/1036 1617/1875/1036 1618/1876/1036 1625/1877/1036 +f 1625/1877/1037 1618/1876/1037 1619/1878/1037 1626/1879/1037 +f 1626/1879/1038 1619/1878/1038 1614/376/1038 1621/378/1038 +f 1676/395/1039 1669/394/1039 1671/1880/1039 1678/1859/1039 +f 1678/1859/1040 1671/1880/1040 1672/1881/1040 1679/1860/1040 +f 1679/1860/1041 1672/1881/1041 1673/1882/1041 1680/1883/1041 +f 1680/1884/1042 1673/1885/1042 1674/1886/1042 1681/1887/1042 +f 1681/1887/1043 1674/1886/1043 1675/1888/1043 1682/1889/1043 +f 1682/1889/1044 1675/1888/1044 1670/377/1044 1677/375/1044 +f 1627/1890/1045 1620/1869/1045 1622/1870/1045 1629/1891/1045 +f 1629/1891/1046 1622/1870/1046 1623/1871/1046 1630/1892/1046 +f 1630/1892/1047 1623/1871/1047 1624/1893/1047 1631/1894/1047 +f 1631/1895/1048 1624/1896/1048 1625/1897/1048 1632/1898/1048 +f 1632/1898/1049 1625/1897/1049 1626/1899/1049 1633/1900/1049 +f 1633/1900/1050 1626/1899/1050 1621/379/1050 1628/382/1050 +f 1669/394/1051 1662/393/1051 1664/1901/1051 1671/1880/1051 +f 1671/1880/1052 1664/1901/1052 1665/1902/1052 1672/1881/1052 +f 1672/1881/1053 1665/1902/1053 1666/1903/1053 1673/1904/1053 +f 1673/1905/1054 1666/1906/1054 1667/1907/1054 1674/1908/1054 +f 1674/1908/1055 1667/1907/1055 1668/1909/1055 1675/1910/1055 +f 1675/1910/1056 1668/1909/1056 1663/381/1056 1670/380/1056 +f 1634/1911/1057 1627/1890/1057 1629/1891/1057 1636/1912/1057 +f 1636/1912/1058 1629/1891/1058 1630/1892/1058 1637/1913/1058 +f 1637/1913/1059 1630/1892/1059 1631/1914/1059 1638/1915/1059 +f 1638/1916/1060 1631/1917/1060 1632/1918/1060 1639/1919/1060 +f 1639/1919/1061 1632/1918/1061 1633/1920/1061 1640/1921/1061 +f 1640/1921/1062 1633/1920/1062 1628/382/1062 1635/321/1062 +f 1662/393/1063 1655/392/1063 1657/1922/1063 1664/1901/1063 +f 1664/1901/1064 1657/1922/1064 1658/1923/1064 1665/1902/1064 +f 1665/1902/1065 1658/1923/1065 1659/1924/1065 1666/1925/1065 +f 1666/1926/1066 1659/1927/1066 1660/1928/1066 1667/1929/1066 +f 1667/1929/1067 1660/1928/1067 1661/1930/1067 1668/1931/1067 +f 1668/1931/1068 1661/1930/1068 1656/322/1068 1663/381/1068 +f 1592/1932/1069 1634/1911/1069 1636/1912/1069 1594/1933/1069 +f 1594/1933/1070 1636/1912/1070 1637/1913/1070 1595/1934/1070 +f 1595/1934/1071 1637/1913/1071 1638/1935/1071 1596/1936/1071 +f 1596/1937/1072 1638/1938/1072 1639/1939/1072 1597/1940/1072 +f 1597/1940/1073 1639/1939/1073 1640/1941/1073 1598/1942/1073 +f 1598/1942/1074 1640/1941/1074 1635/321/1074 1593/324/1074 +f 1655/392/1075 1641/391/1075 1643/1943/1075 1657/1922/1075 +f 1657/1922/1076 1643/1943/1076 1644/1944/1076 1658/1923/1076 +f 1658/1923/1077 1644/1944/1077 1645/1945/1077 1659/1946/1077 +f 1659/1947/1078 1645/1948/1078 1646/1949/1078 1660/1950/1078 +f 1660/1950/1079 1646/1949/1079 1647/1951/1079 1661/1952/1079 +f 1661/1952/1080 1647/1951/1080 1642/323/1080 1656/322/1080 +f 1767/1953/1081 1753/1954/1081 1755/1955/1081 1769/1956/1081 +f 1769/1956/1082 1755/1955/1082 1756/1957/1082 1770/1958/1082 +f 1770/1958/1083 1756/1957/1083 1757/1959/1083 1771/1960/1083 +f 1771/1961/1084 1757/1962/1084 1758/1963/1084 1772/1964/1084 +f 1772/1964/1085 1758/1963/1085 1759/1965/1085 1773/1966/1085 +f 1773/1966/1086 1759/1965/1086 1754/325/1086 1768/328/1086 +f 1816/406/1087 1858/405/1087 1860/1967/1087 1818/1968/1087 +f 1818/1968/1088 1860/1967/1088 1861/1969/1088 1819/1970/1088 +f 1819/1970/1089 1861/1969/1089 1862/1971/1089 1820/1972/1089 +f 1820/1973/1090 1862/1974/1090 1863/1975/1090 1821/1976/1090 +f 1821/1976/1091 1863/1975/1091 1864/1977/1091 1822/1978/1091 +f 1822/1978/1092 1864/1977/1092 1859/327/1092 1817/326/1092 +f 1774/1979/1093 1767/1953/1093 1769/1956/1093 1776/1980/1093 +f 1776/1980/1094 1769/1956/1094 1770/1958/1094 1777/1981/1094 +f 1777/1981/1095 1770/1958/1095 1771/1982/1095 1778/1983/1095 +f 1778/1984/1096 1771/1985/1096 1772/1986/1096 1779/1987/1096 +f 1779/1987/1097 1772/1986/1097 1773/1988/1097 1780/1989/1097 +f 1780/1989/1098 1773/1988/1098 1768/328/1098 1775/415/1098 +f 1858/405/1099 1851/404/1099 1853/1990/1099 1860/1967/1099 +f 1860/1967/1100 1853/1990/1100 1854/1991/1100 1861/1969/1100 +f 1861/1969/1101 1854/1991/1101 1855/1992/1101 1862/1993/1101 +f 1862/1994/1102 1855/1995/1102 1856/1996/1102 1863/1997/1102 +f 1863/1997/1103 1856/1996/1103 1857/1998/1103 1864/1999/1103 +f 1864/1999/1104 1857/1998/1104 1852/416/1104 1859/327/1104 +f 1781/2000/1105 1774/1979/1105 1776/1980/1105 1783/2001/1105 +f 1783/2001/1106 1776/1980/1106 1777/1981/1106 1784/2002/1106 +f 1784/2002/1107 1777/1981/1107 1778/2003/1107 1785/2004/1107 +f 1785/2005/1108 1778/2006/1108 1779/2007/1108 1786/2008/1108 +f 1786/2008/1109 1779/2007/1109 1780/2009/1109 1787/2010/1109 +f 1787/2010/1110 1780/2009/1110 1775/415/1110 1782/418/1110 +f 1851/404/1111 1844/403/1111 1846/2011/1111 1853/1990/1111 +f 1853/1990/1112 1846/2011/1112 1847/2012/1112 1854/1991/1112 +f 1854/1991/1113 1847/2012/1113 1848/2013/1113 1855/2014/1113 +f 1855/2015/1114 1848/2016/1114 1849/2017/1114 1856/2018/1114 +f 1856/2018/1115 1849/2017/1115 1850/2019/1115 1857/2020/1115 +f 1857/2020/1116 1850/2019/1116 1845/417/1116 1852/416/1116 +f 1788/2021/1117 1781/2000/1117 1783/2001/1117 1790/2022/1117 +f 1790/2022/1118 1783/2001/1118 1784/2002/1118 1791/2023/1118 +f 1791/2023/1119 1784/2002/1119 1785/2024/1119 1792/2025/1119 +f 1792/2026/1120 1785/2027/1120 1786/2028/1120 1793/2029/1120 +f 1793/2029/1121 1786/2028/1121 1787/2030/1121 1794/2031/1121 +f 1794/2031/1122 1787/2030/1122 1782/418/1122 1789/420/1122 +f 1844/403/1123 1837/402/1123 1839/2032/1123 1846/2011/1123 +f 1846/2011/1124 1839/2032/1124 1840/2033/1124 1847/2012/1124 +f 1847/2012/1125 1840/2033/1125 1841/2034/1125 1848/2035/1125 +f 1848/2036/1126 1841/2037/1126 1842/2038/1126 1849/2039/1126 +f 1849/2039/1127 1842/2038/1127 1843/2040/1127 1850/2041/1127 +f 1850/2041/1128 1843/2040/1128 1838/419/1128 1845/417/1128 +f 1795/2042/1129 1788/2021/1129 1790/2022/1129 1797/2043/1129 +f 1797/2043/1130 1790/2022/1130 1791/2023/1130 1798/2044/1130 +f 1798/2044/1131 1791/2023/1131 1792/2045/1131 1799/2046/1131 +f 1799/2047/1132 1792/2048/1132 1793/2049/1132 1800/2050/1132 +f 1800/2050/1133 1793/2049/1133 1794/2051/1133 1801/2052/1133 +f 1801/2052/1134 1794/2051/1134 1789/421/1134 1796/424/1134 +f 1837/402/1135 1830/401/1135 1832/2053/1135 1839/2032/1135 +f 1839/2032/1136 1832/2053/1136 1833/2054/1136 1840/2033/1136 +f 1840/2033/1137 1833/2054/1137 1834/2055/1137 1841/2056/1137 +f 1841/2057/1138 1834/2058/1138 1835/2059/1138 1842/2060/1138 +f 1842/2060/1139 1835/2059/1139 1836/2061/1139 1843/2062/1139 +f 1843/2062/1140 1836/2061/1140 1831/423/1140 1838/422/1140 +f 1802/2063/1141 1795/2042/1141 1797/2043/1141 1804/2064/1141 +f 1804/2064/1142 1797/2043/1142 1798/2044/1142 1805/2065/1142 +f 1805/2065/1143 1798/2044/1143 1799/2066/1143 1806/2067/1143 +f 1806/2068/1144 1799/2069/1144 1800/2070/1144 1807/2071/1144 +f 1807/2071/1145 1800/2070/1145 1801/2072/1145 1808/2073/1145 +f 1808/2073/1146 1801/2072/1146 1796/424/1146 1803/333/1146 +f 1830/401/1147 1823/400/1147 1825/2074/1147 1832/2053/1147 +f 1832/2053/1148 1825/2074/1148 1826/2075/1148 1833/2054/1148 +f 1833/2054/1149 1826/2075/1149 1827/2076/1149 1834/2077/1149 +f 1834/2078/1150 1827/2079/1150 1828/2080/1150 1835/2081/1150 +f 1835/2081/1151 1828/2080/1151 1829/2082/1151 1836/2083/1151 +f 1836/2083/1152 1829/2082/1152 1824/334/1152 1831/423/1152 +f 1760/2084/1153 1802/2063/1153 1804/2064/1153 1762/2085/1153 +f 1762/2085/1154 1804/2064/1154 1805/2065/1154 1763/2086/1154 +f 1763/2086/1155 1805/2065/1155 1806/2087/1155 1764/2088/1155 +f 1764/2089/1156 1806/2090/1156 1807/2091/1156 1765/2092/1156 +f 1765/2092/1157 1807/2091/1157 1808/2093/1157 1766/2094/1157 +f 1766/2094/1158 1808/2093/1158 1803/333/1158 1761/336/1158 +f 1823/400/1159 1809/399/1159 1811/2095/1159 1825/2074/1159 +f 1825/2074/1160 1811/2095/1160 1812/2096/1160 1826/2075/1160 +f 1826/2075/1161 1812/2096/1161 1813/2097/1161 1827/2098/1161 +f 1827/2099/1162 1813/2100/1162 1814/2101/1162 1828/2102/1162 +f 1828/2102/1163 1814/2101/1163 1815/2103/1163 1829/2104/1163 +f 1829/2104/1164 1815/2103/1164 1810/335/1164 1824/334/1164 +f 1537/332/1165 1866/371/1165 1871/2105/1165 1542/2106/1165 +f 1542/2106/1166 1871/2105/1166 1870/2107/1166 1541/2108/1166 +f 1541/2108/1167 1870/2107/1167 1869/2109/1167 1540/2110/1167 +f 1540/2111/1168 1869/2112/1168 1868/1501/1168 1539/1782/1168 +f 1539/1782/1169 1868/1501/1169 1867/1499/1169 1538/1781/1169 +f 1538/1781/1170 1867/1499/1170 1865/1498/1170 1536/1780/1170 +f 1873/344/1171 1754/325/1171 1759/2113/1171 1878/2114/1171 +f 1878/2114/1172 1759/2113/1172 1758/2115/1172 1877/2116/1172 +f 1877/2116/1173 1758/2115/1173 1757/2117/1173 1876/2118/1173 +f 1876/2119/1174 1757/2120/1174 1756/1957/1174 1875/1630/1174 +f 1875/1630/1175 1756/1957/1175 1755/1955/1175 1874/1629/1175 +f 1874/1629/1176 1755/1955/1176 1753/1954/1176 1872/1628/1176 +f 1761/336/1177 1586/367/1177 1591/2121/1177 1766/2122/1177 +f 1766/2122/1178 1591/2121/1178 1590/2123/1178 1765/2124/1178 +f 1765/2124/1179 1590/2123/1179 1589/2125/1179 1764/2126/1179 +f 1764/2127/1180 1589/2128/1180 1588/1805/1180 1763/2086/1180 +f 1763/2086/1181 1588/1805/1181 1587/1803/1181 1762/2085/1181 +f 1762/2085/1182 1587/1803/1182 1585/1802/1182 1760/2084/1182 +f 1593/324/1183 1530/357/1183 1535/2129/1183 1598/2130/1183 +f 1598/2130/1184 1535/2129/1184 1534/2131/1184 1597/2132/1184 +f 1597/2132/1185 1534/2131/1185 1533/2133/1185 1596/2134/1185 +f 1596/2135/1186 1533/2136/1186 1532/1653/1186 1595/1934/1186 +f 1595/1934/1187 1532/1653/1187 1531/1651/1187 1594/1933/1187 +f 1594/1933/1188 1531/1651/1188 1529/1650/1188 1592/1932/1188 +f 1697/383/1189 1928/414/1189 1930/1512/1189 1699/1791/1189 +f 1699/1791/1190 1930/1512/1190 1931/1514/1190 1700/1792/1190 +f 1700/1792/1191 1931/1514/1191 1932/2137/1191 1701/2138/1191 +f 1701/2139/1192 1932/2140/1192 1933/2141/1192 1702/2142/1192 +f 1702/2142/1193 1933/2141/1193 1934/2143/1193 1703/2144/1193 +f 1703/2144/1194 1934/2143/1194 1929/372/1194 1698/331/1194 +f 1641/391/1195 1704/390/1195 1706/1664/1195 1643/1943/1195 +f 1643/1943/1196 1706/1664/1196 1707/1666/1196 1644/1944/1196 +f 1644/1944/1197 1707/1666/1197 1708/2145/1197 1645/2146/1197 +f 1645/2147/1198 1708/2148/1198 1709/2149/1198 1646/2150/1198 +f 1646/2150/1199 1709/2149/1199 1710/2151/1199 1647/2152/1199 +f 1647/2152/1200 1710/2151/1200 1705/358/1200 1642/323/1200 +f 1809/399/1201 1648/398/1201 1650/1816/1201 1811/2095/1201 +f 1811/2095/1202 1650/1816/1202 1651/1818/1202 1812/2096/1202 +f 1812/2096/1203 1651/1818/1203 1652/2153/1203 1813/2154/1203 +f 1813/2155/1204 1652/2156/1204 1653/2157/1204 1814/2158/1204 +f 1814/2158/1205 1653/2157/1205 1654/2159/1205 1815/2160/1205 +f 1815/2160/1206 1654/2159/1206 1649/368/1206 1810/335/1206 +f 1817/326/1207 1922/343/1207 1927/2161/1207 1822/2162/1207 +f 1822/2162/1208 1927/2161/1208 1926/2163/1208 1821/2164/1208 +f 1821/2164/1209 1926/2163/1209 1925/2165/1209 1820/2166/1209 +f 1820/2167/1210 1925/2168/1210 1924/1640/1210 1819/1970/1210 +f 1819/1970/1211 1924/1640/1211 1923/1639/1211 1818/1968/1211 +f 1818/1968/1212 1923/1639/1212 1921/407/1212 1816/406/1212 +f 1865/1498/57 1879/1497/57 1886/1523/57 1893/1544/57 1900/1565/57 1907/1586/57 1914/1607/57 1872/1628/57 1753/1954/57 1767/1953/57 1774/1979/57 1781/2000/57 1788/2021/57 1795/2042/57 1802/2063/57 1760/2084/57 1585/1802/57 1599/1801/57 1606/1827/57 1613/1848/57 1620/1869/57 1627/1890/57 1634/1911/57 1592/1932/57 1529/1650/57 1543/1649/57 1550/1675/57 1557/1696/57 1564/1717/57 1571/1738/57 1578/1759/57 1536/1780/57 +f 683/639/57 671/638/57 899/867/57 +f 899/867/57 887/866/57 875/843/57 +f 683/639/57 899/867/57 863/831/57 +f 707/663/57 695/651/57 683/639/57 +f 731/691/57 719/679/57 755/715/57 +f 755/715/57 743/703/57 731/691/57 +f 779/743/57 767/729/57 755/715/57 +f 803/767/57 791/755/57 755/715/57 +f 827/795/57 815/779/57 851/819/57 +f 851/819/57 839/807/57 827/795/57 +f 875/843/57 863/831/57 899/867/57 +f 1355/1365/57 1469/1378/57 1403/1353/57 +f 851/819/57 815/779/57 803/767/57 +f 791/755/57 779/743/57 755/715/57 +f 755/715/57 719/679/57 707/663/57 +f 707/663/57 683/639/57 863/831/57 +f 887/866/57 1355/1365/57 875/843/57 +f 803/767/57 755/715/57 707/663/57 +f 887/866/57 1469/1378/57 1355/1365/57 +f 1403/1353/57 1469/1378/57 1481/1377/57 +f 803/767/57 707/663/57 851/819/57 +f 707/663/57 863/831/57 851/819/57 +f 1397/1341/57 1403/1353/57 1487/1401/57 +f 1391/1329/57 1397/1341/57 1493/1413/57 +f 1481/1377/57 1487/1401/57 1403/1353/57 +f 1487/1401/57 1493/1413/57 1397/1341/57 +f 1385/1317/57 1391/1329/57 1499/1425/57 +f 1379/1305/57 1385/1317/57 1505/1437/57 +f 1493/1413/57 1499/1425/57 1391/1329/57 +f 1499/1425/57 1505/1437/57 1385/1317/57 +f 1373/1293/57 1379/1305/57 1511/1449/57 +f 1379/1305/57 1505/1437/57 1511/1449/57 +f 1373/1293/57 1511/1449/57 1517/1461/57 +f 1367/1281/57 1373/1293/57 1517/1461/57 +f 1367/1281/57 1517/1461/57 1523/1473/57 +f 1361/1257/57 1367/1281/57 1523/1473/57 +f 1475/1485/57 1097/1162/57 1199/1149/57 +f 1361/1257/57 1523/1473/57 1349/1258/57 +f 1235/1137/57 1199/1149/57 1109/1161/57 +f 1349/1258/57 1523/1473/57 1475/1485/57 +f 1097/1162/57 1109/1161/57 1199/1149/57 +f 1115/1185/57 1121/1197/57 1229/1125/57 +f 1127/1209/57 1133/1221/57 1217/1101/57 +f 1139/1233/57 1103/1245/57 1205/1066/57 +f 1049/517/57 1061/967/57 1055/1054/57 +f 1067/990/57 1073/1002/57 1079/1014/57 +f 1079/1014/57 1085/1026/57 1091/1042/57 +f 1091/1042/57 1055/1054/57 1061/967/57 +f 953/869/57 965/868/57 995/944/57 +f 971/892/57 977/904/57 983/916/57 +f 983/916/57 989/932/57 995/944/57 +f 995/944/57 959/518/57 953/869/57 +f 1193/519/57 1205/1066/57 1103/1245/57 +f 1211/1089/57 1217/1101/57 1133/1221/57 +f 1223/1113/57 1229/1125/57 1121/1197/57 +f 1199/1149/57 1349/1258/57 1475/1485/57 +f 1109/1161/57 1115/1185/57 1235/1137/57 +f 1133/1221/57 1139/1233/57 1211/1089/57 +f 1061/967/57 1067/990/57 1079/1014/57 +f 1079/1014/57 1091/1042/57 1061/967/57 +f 965/868/57 971/892/57 983/916/57 +f 983/916/57 995/944/57 965/868/57 +f 1205/1066/57 1211/1089/57 1139/1233/57 +f 1229/1125/57 1235/1137/57 1115/1185/57 +f 1121/1197/57 1127/1209/57 1223/1113/57 +f 1049/517/57 1055/1054/57 953/869/57 +f 953/869/57 959/518/57 1049/517/57 +f 1217/1101/57 1223/1113/57 1127/1209/57 +f 1103/1245/57 1049/517/57 1193/519/57 +f 665/627/25 677/626/25 893/854/25 +f 689/645/25 701/657/25 713/671/25 +f 713/671/25 725/685/25 737/697/25 +f 737/697/25 749/709/25 785/749/25 +f 761/722/25 773/736/25 785/749/25 +f 785/749/25 797/761/25 809/773/25 +f 809/773/25 821/787/25 785/749/25 +f 833/801/25 845/813/25 857/825/25 +f 857/825/25 869/837/25 893/854/25 +f 833/801/25 857/825/25 893/854/25 +f 785/749/25 821/787/25 833/801/25 +f 749/709/25 761/722/25 785/749/25 +f 689/645/25 713/671/25 785/749/25 +f 893/854/25 677/626/25 689/645/25 +f 1295/1389/25 869/837/25 1409/1371/25 +f 881/855/25 869/837/25 1295/1389/25 +f 713/671/25 737/697/25 785/749/25 +f 785/749/25 833/801/25 893/854/25 +f 869/837/25 881/855/25 893/854/25 +f 893/854/25 689/645/25 785/749/25 +f 1343/1390/25 1295/1389/25 1409/1371/25 +f 1409/1371/25 1421/1359/25 1343/1390/25 +f 1421/1359/25 1427/1347/25 1337/1407/25 +f 1337/1407/25 1343/1390/25 1421/1359/25 +f 1331/1419/25 1337/1407/25 1427/1347/25 +f 1427/1347/25 1433/1335/25 1331/1419/25 +f 1433/1335/25 1439/1323/25 1325/1431/25 +f 1325/1431/25 1331/1419/25 1433/1335/25 +f 1319/1443/25 1325/1431/25 1439/1323/25 +f 1439/1323/25 1445/1311/25 1319/1443/25 +f 1445/1311/25 1451/1299/25 1313/1455/25 +f 1313/1455/25 1319/1443/25 1445/1311/25 +f 1307/1467/25 1313/1455/25 1451/1299/25 +f 1307/1467/25 1451/1299/25 1457/1287/25 +f 1301/1479/25 1307/1467/25 1457/1287/25 +f 1301/1479/25 1457/1287/25 1463/1270/25 +f 1187/1174/25 1151/1173/25 1253/1143/25 +f 1289/1491/25 1301/1479/25 1463/1270/25 +f 1415/1269/25 1151/1173/25 1289/1491/25 +f 1289/1491/25 1463/1270/25 1415/1269/25 +f 1181/1191/25 1187/1174/25 1259/1131/25 +f 1169/1215/25 1175/1203/25 1271/1107/25 +f 1157/1239/25 1283/1078/25 1247/1077/25 +f 1007/978/25 1145/1251/25 905/961/25 +f 1037/996/25 1043/979/25 1025/1020/25 +f 1025/1020/25 1031/1008/25 1037/996/25 +f 1013/1048/25 1019/1034/25 1025/1020/25 +f 911/880/25 1001/1060/25 1007/978/25 +f 941/898/25 947/881/25 929/924/25 +f 929/924/25 935/910/25 941/898/25 +f 917/950/25 923/938/25 929/924/25 +f 1247/1077/25 905/961/25 1145/1251/25 +f 1277/1095/25 1283/1078/25 1163/1227/25 +f 1265/1119/25 1271/1107/25 1175/1203/25 +f 1253/1143/25 1259/1131/25 1187/1174/25 +f 1415/1269/25 1241/1155/25 1151/1173/25 +f 1175/1203/25 1181/1191/25 1265/1119/25 +f 1145/1251/25 1157/1239/25 1247/1077/25 +f 1025/1020/25 1043/979/25 1013/1048/25 +f 1001/1060/25 1043/979/25 1007/978/25 +f 929/924/25 947/881/25 917/950/25 +f 905/961/25 917/950/25 911/880/25 +f 1271/1107/25 1277/1095/25 1169/1215/25 +f 1241/1155/25 1253/1143/25 1151/1173/25 +f 1163/1227/25 1283/1078/25 1157/1239/25 +f 1013/1048/25 1043/979/25 1001/1060/25 +f 917/950/25 947/881/25 911/880/25 +f 1259/1131/25 1265/1119/25 1181/1191/25 +f 911/880/25 1007/978/25 905/961/25 +s 1 +f 356/2169/1213 323/2170/1214 322/2171/1215 355/2172/1216 +f 357/2173/1217 324/2174/1218 323/2170/1214 356/2169/1213 +f 358/2175/1219 325/2176/1220 324/2174/1218 357/2173/1217 +f 359/2177/1221 326/2178/1222 325/2176/1220 358/2175/1219 +f 360/2179/1223 327/2180/1224 326/2178/1222 359/2177/1221 +f 361/2181/1225 328/2182/1226 327/2180/1224 360/2179/1223 +f 362/2183/1227 329/2184/1228 328/2182/1226 361/2181/1225 +f 363/2185/1229 347/2186/1230 329/2184/1228 362/2183/1227 +f 364/2187/1231 330/2188/1232 347/2186/1230 363/2185/1229 +f 365/2189/1233 348/2190/1234 330/2188/1232 364/2187/1231 +f 366/2191/1235 331/2192/1236 348/2190/1234 365/2189/1233 +f 367/2193/1237 332/2194/1238 331/2192/1236 366/2191/1235 +f 368/2195/1239 349/2196/1240 332/2194/1238 367/2193/1237 +f 369/2197/1241 333/2198/1242 349/2196/1240 368/2195/1239 +f 370/2199/1243 334/2200/1244 333/2198/1242 369/2197/1241 +f 371/2201/1245 335/2202/1246 334/2200/1244 370/2199/1243 +f 372/2203/1247 336/2204/1248 335/2205/1246 371/2206/1245 +f 373/2207/1249 337/2208/1250 336/2204/1248 372/2203/1247 +f 374/2209/1251 350/2210/1252 337/2208/1250 373/2207/1249 +f 376/2211/1253 338/2212/1254 350/2210/1252 374/2209/1251 +f 377/2213/1255 340/2214/1256 339/2215/1257 375/2216/1258 +f 375/2216/1258 339/2215/1257 338/2212/1254 376/2211/1253 +f 378/2217/1259 351/2218/1260 340/2214/1256 377/2213/1255 +f 379/2219/1261 341/2220/1262 351/2218/1260 378/2217/1259 +f 380/2221/1263 352/2222/1264 341/2220/1262 379/2219/1261 +f 382/2223/1265 342/2224/1266 352/2222/1264 380/2221/1263 +f 383/2225/1267 344/2226/1268 343/2227/1269 381/2228/1270 +f 381/2228/1270 343/2227/1269 342/2224/1266 382/2223/1265 +f 384/2229/1271 345/2230/1272 344/2226/1268 383/2225/1267 +f 354/2231/1273 346/2232/1274 345/2230/1272 384/2229/1271 +f 30/2233/1275 33/2234/1276 34/2235/1277 1/2236/1278 +f 2/2237/1279 1/2236/1278 34/2235/1277 35/2238/1280 +f 3/2239/1281 2/2237/1279 35/2238/1280 36/2240/1282 +f 4/2241/1283 3/2239/1281 36/2240/1282 37/2242/1284 +f 5/2243/1285 4/2241/1283 37/2242/1284 38/2244/1286 +f 6/2245/1287 5/2243/1285 38/2244/1286 39/2246/1288 +f 6/2245/1287 39/2246/1288 40/2247/1289 7/2248/1290 +f 8/2249/1291 7/2248/1290 40/2247/1289 41/2250/1292 +f 9/2251/1293 8/2249/1291 41/2250/1292 42/2252/1294 +f 10/2253/1295 9/2251/1293 42/2252/1294 43/2254/1296 +f 10/2253/1295 43/2254/1296 44/2255/1297 11/2256/1298 +f 11/2256/1298 44/2255/1297 45/2257/1299 31/2258/1300 +f 12/2259/1301 46/2260/1302 47/2261/1303 13/2262/1304 +f 31/2258/1300 45/2257/1299 46/2260/1302 12/2259/1301 +f 13/2262/1304 47/2261/1303 48/2263/1305 14/2264/1306 +f 15/2265/1307 14/2264/1306 48/2263/1305 49/2266/1308 +f 15/2265/1307 49/2266/1308 50/2267/1309 16/2268/1310 +f 17/2269/1311 16/2268/1310 50/2267/1309 51/2270/1312 +f 17/2271/1311 51/2272/1312 52/2273/1313 18/2274/1314 +f 19/2275/1315 18/2274/1314 52/2273/1313 53/2276/1316 +f 19/2275/1315 53/2276/1316 54/2277/1317 20/2278/1318 +f 20/2278/1318 54/2277/1317 55/2279/1319 22/2280/1320 +f 22/2280/1320 55/2279/1319 56/2281/1321 21/2282/1322 +f 21/2282/1322 56/2281/1321 57/2283/1323 23/2284/1324 +f 23/2284/1324 57/2283/1323 58/2285/1325 24/2286/1326 +f 24/2286/1326 58/2285/1325 59/2287/1327 32/2288/1328 +f 27/2289/1329 25/2290/1330 60/2291/1331 61/2292/1332 +f 25/2290/1330 32/2288/1328 59/2287/1327 60/2291/1331 +f 28/2293/1333 26/2294/1334 62/2295/1335 63/2296/1336 +f 27/2289/1329 61/2292/1332 62/2295/1335 26/2294/1334 +f 29/2297/1337 28/2293/1333 63/2296/1336 64/2298/1338 +f 29/2297/1337 64/2298/1338 33/2234/1276 30/2233/1275 +f 67/2299/1339 44/2255/1297 43/2254/1296 66/2300/1340 +f 70/2301/1341 66/2300/1340 65/2302/1342 71/2303/1343 +f 72/2304/1344 67/2299/1339 66/2300/1340 70/2301/1341 +f 74/2305/1345 68/2306/1346 67/2299/1339 72/2304/1344 +f 69/2307/1347 41/2250/1292 40/2247/1289 75/2308/1348 +f 71/2303/1343 65/2302/1342 69/2307/1347 76/2309/1349 +f 78/2310/1350 73/2311/1351 68/2306/1346 74/2305/1345 +f 80/2312/1352 76/2309/1349 69/2307/1347 75/2308/1348 +f 82/2313/1353 77/2314/1354 73/2311/1351 78/2310/1350 +f 84/2315/1355 80/2312/1352 75/2308/1348 79/2316/1356 +f 388/2317/1228 392/2318/1227 393/2319/1229 385/2320/1230 +f 387/2321/1234 395/2322/1233 396/2323/1235 389/2324/1236 +f 86/2325/1357 81/2326/1358 77/2314/1354 82/2313/1353 +f 391/2327/1226 398/2328/1225 392/2318/1227 388/2317/1228 +f 88/2329/1359 84/2315/1355 79/2316/1356 83/2330/1360 +f 389/2324/1236 396/2323/1235 400/2331/1237 399/2332/1238 +f 90/2333/1361 85/2334/1362 81/2326/1358 86/2325/1357 +f 390/2335/1224 403/2336/1223 398/2328/1225 391/2327/1226 +f 92/2337/1363 88/2329/1359 83/2330/1360 87/2338/1364 +f 397/2339/1222 402/2340/1221 403/2336/1223 390/2335/1224 +f 94/2341/1365 89/2342/1366 85/2334/1362 90/2333/1361 +f 406/2343/1218 411/2344/1217 407/2345/1219 401/2346/1220 +f 96/2347/1367 92/2337/1363 87/2338/1364 91/2348/1368 +f 399/2332/1238 400/2331/1237 405/2349/1239 404/2350/1240 +f 98/2351/1369 93/2352/1370 89/2342/1366 94/2341/1365 +f 410/2353/1214 415/2354/1213 411/2344/1217 406/2343/1218 +f 100/2355/1371 96/2347/1367 91/2348/1368 95/2356/1372 +f 404/2350/1240 405/2349/1239 409/2357/1241 408/2358/1242 +f 102/2359/1373 97/2360/1374 93/2361/1370 98/2362/1369 +f 355/2172/1216 322/2171/1215 321/2363/1375 353/2364/1376 +f 414/2365/1215 420/2366/1216 415/2354/1213 410/2353/1214 +f 36/2240/1282 91/2348/1368 87/2338/1364 37/2242/1284 +f 117/2367/1377 57/2283/1323 56/2281/1321 113/2368/1378 +f 104/2369/1379 100/2355/1371 95/2356/1372 99/2370/1380 +f 408/2358/1242 409/2357/1241 413/2371/1243 412/2372/1244 +f 106/2373/1381 101/2374/1382 97/2360/1374 102/2359/1373 +f 419/2375/1375 424/2376/1376 420/2366/1216 414/2365/1215 +f 108/2377/1383 104/2369/1379 99/2370/1380 103/2378/1384 +f 412/2372/1244 413/2371/1243 418/2379/1245 417/2380/1246 +f 110/2381/1385 105/2382/1386 101/2374/1382 106/2373/1381 +f 423/2383/1274 428/2384/1273 424/2376/1376 419/2375/1375 +f 112/2385/1387 108/2377/1383 103/2378/1384 107/2386/1388 +f 416/2387/1248 422/2388/1247 426/2389/1249 421/2390/1250 +f 110/2381/1385 114/2391/1389 109/2392/1390 105/2382/1386 +f 417/2380/1246 418/2379/1245 422/2393/1247 416/2394/1248 +f 116/2395/1391 112/2385/1387 107/2386/1388 111/2396/1392 +f 421/2390/1250 426/2389/1249 430/2397/1251 425/2398/1252 +f 385/2320/1230 393/2319/1229 394/2399/1231 386/2400/1232 +f 118/2401/1393 113/2368/1378 109/2392/1390 114/2391/1389 +f 427/2402/1272 432/2403/1271 428/2384/1273 423/2383/1274 +f 61/2292/1332 119/2404/1394 115/2405/1395 62/2295/1335 +f 120/2406/1396 116/2395/1391 111/2396/1392 115/2405/1395 +f 425/2398/1252 430/2397/1251 434/2407/1253 429/2408/1254 +f 118/2401/1393 122/2409/1397 117/2367/1377 113/2368/1378 +f 431/2410/1268 436/2411/1267 432/2403/1271 427/2402/1272 +f 124/2412/1398 120/2406/1396 115/2405/1395 119/2404/1394 +f 429/2408/1254 434/2407/1253 439/2413/1258 433/2414/1257 +f 122/2409/1397 126/2415/1399 121/2416/1400 117/2367/1377 +f 435/2417/1269 441/2418/1270 436/2411/1267 431/2410/1268 +f 401/2346/1220 407/2345/1219 402/2340/1221 397/2339/1222 +f 127/2419/1401 124/2412/1398 119/2404/1394 123/2420/1402 +f 433/2414/1257 439/2413/1258 445/2421/1255 438/2422/1256 +f 126/2415/1399 128/2423/1403 125/2424/1404 121/2416/1400 +f 440/2425/1266 437/2426/1265 441/2418/1270 435/2417/1269 +f 128/2423/1403 127/2419/1401 123/2420/1402 125/2424/1404 +f 386/2400/1232 394/2399/1231 395/2322/1233 387/2321/1234 +f 446/2427/1264 443/2428/1263 437/2426/1265 440/2425/1266 +f 438/2422/1256 445/2421/1255 444/2429/1259 447/2430/1260 +f 448/2431/1262 442/2432/1261 443/2428/1263 446/2427/1264 +f 447/2430/1260 444/2429/1259 442/2432/1261 448/2431/1262 +f 129/2433/1405 130/2434/1205 131/2435/1406 132/2436/1407 +f 136/2437/1408 137/2438/1201 130/2434/1205 129/2433/1405 +f 132/2436/1407 131/2435/1406 138/2439/1170 133/2440/1409 +f 133/2440/1409 138/2439/1170 139/2441/1166 134/2442/1410 +f 134/2443/1410 139/2444/1166 140/2445/1411 135/2446/1412 +f 135/2446/1412 140/2445/1411 137/2438/1201 136/2437/1408 +f 141/2447/1413 142/2448/1166 143/2449/1170 144/2450/1414 +f 148/2451/1415 149/2452/1411 142/2448/1166 141/2447/1413 +f 144/2450/1414 143/2449/1170 150/2453/1406 145/2454/1416 +f 145/2454/1416 150/2453/1406 151/2455/1205 146/2456/1417 +f 146/2457/1417 151/2458/1205 152/2459/1201 147/2460/1418 +f 147/2460/1418 152/2459/1201 149/2452/1411 148/2451/1415 +f 153/2461/1419 154/2462/1202 155/2463/1206 156/2464/1420 +f 160/2465/1421 161/2466/1422 154/2462/1202 153/2461/1419 +f 156/2464/1420 155/2463/1206 162/2467/1423 157/2468/1424 +f 157/2468/1424 162/2467/1423 163/2469/1169 158/2470/1425 +f 158/2471/1425 163/2472/1169 164/2473/1165 159/2474/1426 +f 159/2474/1426 164/2473/1165 161/2466/1422 160/2465/1421 +f 165/2475/1427 166/2476/1169 167/2477/1423 168/2478/1428 +f 172/2479/1429 173/2480/1165 166/2476/1169 165/2475/1427 +f 168/2478/1428 167/2477/1423 174/2481/1206 169/2482/1430 +f 169/2482/1430 174/2481/1206 175/2483/1202 170/2484/1431 +f 170/2485/1431 175/2486/1202 176/2487/1422 171/2488/1432 +f 171/2488/1432 176/2487/1422 173/2480/1165 172/2479/1429 +f 177/2489/1433 178/2490/1190 179/2491/1434 180/2492/1435 +f 184/2493/1436 185/2494/1194 178/2490/1190 177/2489/1433 +f 180/2492/1435 179/2491/1434 186/2495/1177 181/2496/1437 +f 181/2496/1437 186/2495/1177 187/2497/1181 182/2498/1438 +f 182/2499/1438 187/2500/1181 188/2501/1439 183/2502/1440 +f 183/2502/1440 188/2501/1439 185/2494/1194 184/2493/1436 +f 189/2503/1441 190/2504/1181 191/2505/1177 192/2506/1442 +f 196/2507/1443 197/2508/1439 190/2504/1181 189/2503/1441 +f 192/2506/1442 191/2505/1177 198/2509/1434 193/2510/1444 +f 193/2510/1444 198/2509/1434 199/2511/1190 194/2512/1445 +f 194/2513/1445 199/2514/1190 200/2515/1194 195/2516/1446 +f 195/2516/1446 200/2515/1194 197/2508/1439 196/2507/1443 +f 201/2517/1447 202/2518/1193 203/2519/1189 204/2520/1448 +f 208/2521/1449 209/2522/1450 202/2518/1193 201/2517/1447 +f 204/2520/1448 203/2519/1189 210/2523/1451 205/2524/1452 +f 205/2524/1452 210/2523/1451 211/2525/1178 206/2526/1453 +f 206/2527/1453 211/2528/1178 212/2529/1182 207/2530/1454 +f 207/2530/1454 212/2529/1182 209/2522/1450 208/2521/1449 +f 213/2531/1455 214/2532/1178 215/2533/1451 216/2534/1456 +f 220/2535/1457 221/2536/1182 214/2532/1178 213/2531/1455 +f 216/2534/1456 215/2533/1451 222/2537/1189 217/2538/1458 +f 217/2538/1458 222/2537/1189 223/2539/1193 218/2540/1459 +f 218/2541/1459 223/2542/1193 224/2543/1450 219/2544/1460 +f 219/2544/1460 224/2543/1450 221/2536/1182 220/2535/1457 +f 225/2545/1410 226/2546/1166 227/2547/1411 228/2548/1412 +f 232/2549/1409 233/2550/1170 226/2546/1166 225/2545/1410 +f 228/2548/1412 227/2547/1411 234/2551/1201 229/2552/1408 +f 229/2552/1408 234/2551/1201 235/2553/1205 230/2554/1405 +f 230/2555/1405 235/2556/1205 236/2557/1406 231/2558/1407 +f 231/2558/1407 236/2557/1406 233/2550/1170 232/2549/1409 +f 237/2559/1417 238/2560/1205 239/2561/1201 240/2562/1418 +f 244/2563/1416 245/2564/1406 238/2560/1205 237/2559/1417 +f 240/2562/1418 239/2561/1201 246/2565/1411 241/2566/1415 +f 241/2566/1415 246/2565/1411 247/2567/1166 242/2568/1413 +f 242/2569/1413 247/2570/1166 248/2571/1170 243/2572/1414 +f 243/2572/1414 248/2571/1170 245/2564/1406 244/2563/1416 +f 249/2573/1425 250/2574/1169 251/2575/1165 252/2576/1426 +f 256/2577/1424 257/2578/1423 250/2574/1169 249/2573/1425 +f 252/2576/1426 251/2575/1165 258/2579/1422 253/2580/1421 +f 253/2580/1421 258/2579/1422 259/2581/1202 254/2582/1419 +f 254/2583/1419 259/2584/1202 260/2585/1206 255/2586/1420 +f 255/2586/1420 260/2585/1206 257/2578/1423 256/2577/1424 +f 261/2587/1431 262/2588/1202 263/2589/1422 264/2590/1432 +f 268/2591/1430 269/2592/1206 262/2588/1202 261/2587/1431 +f 264/2590/1432 263/2589/1422 270/2593/1165 265/2594/1429 +f 265/2594/1429 270/2593/1165 271/2595/1169 266/2596/1427 +f 266/2597/1427 271/2598/1169 272/2599/1423 267/2600/1428 +f 267/2600/1428 272/2599/1423 269/2592/1206 268/2591/1430 +f 273/2601/1438 274/2602/1181 275/2603/1439 276/2604/1440 +f 280/2605/1437 281/2606/1177 274/2602/1181 273/2601/1438 +f 276/2604/1440 275/2603/1439 282/2607/1194 277/2608/1436 +f 277/2608/1436 282/2607/1194 283/2609/1190 278/2610/1433 +f 278/2611/1433 283/2612/1190 284/2613/1434 279/2614/1435 +f 279/2614/1435 284/2613/1434 281/2606/1177 280/2605/1437 +f 285/2615/1445 286/2616/1190 287/2617/1194 288/2618/1446 +f 292/2619/1444 293/2620/1434 286/2616/1190 285/2615/1445 +f 288/2618/1446 287/2617/1194 294/2621/1439 289/2622/1443 +f 289/2622/1443 294/2621/1439 295/2623/1181 290/2624/1441 +f 290/2625/1441 295/2626/1181 296/2627/1177 291/2628/1442 +f 291/2628/1442 296/2627/1177 293/2620/1434 292/2619/1444 +f 297/2629/1453 298/2630/1178 299/2631/1182 300/2632/1454 +f 304/2633/1452 305/2634/1451 298/2630/1178 297/2629/1453 +f 300/2632/1454 299/2631/1182 306/2635/1450 301/2636/1449 +f 301/2636/1449 306/2635/1450 307/2637/1193 302/2638/1447 +f 302/2639/1447 307/2640/1193 308/2641/1189 303/2642/1448 +f 303/2642/1448 308/2641/1189 305/2634/1451 304/2633/1452 +f 309/2643/1459 310/2644/1193 311/2645/1450 312/2646/1460 +f 316/2647/1458 317/2648/1189 310/2644/1193 309/2643/1459 +f 312/2646/1460 311/2645/1450 318/2649/1182 313/2650/1457 +f 313/2650/1457 318/2649/1182 319/2651/1178 314/2652/1455 +f 314/2653/1455 319/2654/1178 320/2655/1451 315/2656/1456 +f 315/2656/1456 320/2655/1451 317/2648/1189 316/2647/1458 +f 54/2277/1317 53/2276/1316 101/2374/1382 105/2382/1386 +f 64/2298/1338 107/2386/1388 103/2378/1384 33/2234/1276 +f 125/2424/1404 59/2287/1327 58/2285/1325 121/2416/1400 +f 65/2302/1342 42/2252/1294 41/2250/1292 69/2307/1347 +f 62/2295/1335 115/2405/1395 111/2396/1392 63/2296/1336 +f 89/2342/1366 93/2352/1370 51/2270/1312 50/2267/1309 +f 38/2244/1286 37/2242/1284 87/2338/1364 83/2330/1360 +f 121/2416/1400 58/2285/1325 57/2283/1323 117/2367/1377 +f 61/2292/1332 60/2291/1331 123/2420/1402 119/2404/1394 +f 64/2298/1338 63/2296/1336 111/2396/1392 107/2386/1388 +f 125/2424/1404 123/2420/1402 60/2291/1331 59/2287/1327 +f 39/2246/1288 79/2316/1356 75/2308/1348 40/2247/1289 +f 35/2238/1280 34/2235/1277 99/2370/1380 95/2356/1372 +f 55/2279/1319 109/2392/1390 113/2368/1378 56/2281/1321 +f 55/2279/1319 54/2277/1317 105/2382/1386 109/2392/1390 +f 49/2266/1308 48/2263/1305 81/2326/1358 85/2334/1362 +f 353/2364/1376 321/2363/1375 346/2232/1274 354/2231/1273 +f 36/2240/1282 35/2238/1280 95/2356/1372 91/2348/1368 +f 43/2254/1296 42/2252/1294 65/2302/1342 66/2300/1340 +f 45/2257/1299 68/2306/1346 73/2311/1351 46/2260/1302 +f 46/2260/1302 73/2311/1351 77/2314/1354 47/2261/1303 +f 44/2255/1297 67/2299/1339 68/2306/1346 45/2257/1299 +f 52/2273/1313 97/2360/1374 101/2374/1382 53/2276/1316 +f 34/2235/1277 33/2234/1276 103/2378/1384 99/2370/1380 +f 89/2342/1366 50/2267/1309 49/2266/1308 85/2334/1362 +f 449/2657/1461 450/2658/181 451/2659/1462 452/2660/1463 +f 456/2661/1464 457/2662/1465 450/2658/181 449/2657/1461 +f 452/2660/1463 451/2659/1462 458/2663/1466 453/2664/1467 +f 453/2664/1467 458/2663/1466 459/2665/441 454/2666/1468 +f 454/2667/1468 459/2668/441 460/2669/1469 455/2670/1470 +f 455/2670/1470 460/2669/1469 457/2662/1465 456/2661/1464 +f 461/2671/1471 462/2672/441 463/2673/1466 464/2674/1472 +f 468/2675/1473 469/2676/1469 462/2672/441 461/2671/1471 +f 464/2674/1472 463/2673/1466 470/2677/1462 465/2678/1474 +f 465/2678/1474 470/2677/1462 471/2679/181 466/2680/1475 +f 466/2681/1475 471/2682/181 472/2683/1465 467/2684/1476 +f 467/2684/1476 472/2683/1465 469/2676/1469 468/2675/1473 +f 473/2685/1477 474/2686/25 475/2687/1478 476/2688/1479 +f 480/2689/1480 481/2690/1481 474/2686/25 473/2685/1477 +f 476/2688/1479 475/2687/1478 482/2691/1482 477/2692/1483 +f 477/2692/1483 482/2691/1482 483/2693/57 478/2694/1484 +f 478/2695/1484 483/2696/57 484/2697/1485 479/2698/1486 +f 479/2698/1486 484/2697/1485 481/2690/1481 480/2689/1480 +f 485/2699/1487 486/2700/57 487/2701/1482 488/2702/1488 +f 492/2703/1489 493/2704/1485 486/2700/57 485/2699/1487 +f 488/2702/1488 487/2701/1482 494/2705/1478 489/2706/1490 +f 489/2706/1490 494/2705/1478 495/2707/25 490/2708/1491 +f 490/2709/1491 495/2710/25 496/2711/1481 491/2712/1492 +f 491/2712/1492 496/2711/1481 493/2704/1485 492/2703/1489 +f 497/2713/1493 498/2714/446 499/2715/1494 500/2716/1495 +f 504/2717/1496 505/2718/1497 498/2714/446 497/2713/1493 +f 500/2716/1495 499/2715/1494 506/2719/1498 501/2720/1499 +f 501/2720/1499 506/2719/1498 507/2721/186 502/2722/1500 +f 502/2723/1500 507/2724/186 508/2725/1501 503/2726/1502 +f 503/2726/1502 508/2725/1501 505/2718/1497 504/2717/1496 +f 509/2727/1503 510/2728/186 511/2729/1498 512/2730/1504 +f 516/2731/1505 517/2732/1501 510/2728/186 509/2727/1503 +f 512/2730/1504 511/2729/1498 518/2733/1494 513/2734/1506 +f 513/2734/1506 518/2733/1494 519/2735/446 514/2736/1507 +f 514/2737/1507 519/2738/446 520/2739/1497 515/2740/1508 +f 515/2740/1508 520/2739/1497 517/2732/1501 516/2731/1505 +f 521/2741/1509 522/2742/19 523/2743/1510 524/2744/1511 +f 528/2745/1512 529/2746/1513 522/2742/19 521/2741/1509 +f 524/2744/1511 523/2743/1510 530/2747/1514 525/2748/1515 +f 525/2748/1515 530/2747/1514 531/2749/20 526/2750/1516 +f 526/2751/1516 531/2752/20 532/2753/1517 527/2754/1518 +f 527/2754/1518 532/2753/1517 529/2746/1513 528/2745/1512 +f 533/2755/1519 534/2756/20 535/2757/1514 536/2758/1520 +f 540/2759/1521 541/2760/1517 534/2756/20 533/2755/1519 +f 536/2758/1520 535/2757/1514 542/2761/1510 537/2762/1522 +f 537/2762/1522 542/2761/1510 543/2763/19 538/2764/1523 +f 538/2765/1523 543/2766/19 544/2767/1513 539/2768/1524 +f 539/2768/1524 544/2767/1513 541/2760/1517 540/2759/1521 +f 545/2769/1468 546/2770/441 547/2771/1469 548/2772/1470 +f 552/2773/1467 553/2774/1466 546/2770/441 545/2769/1468 +f 548/2772/1470 547/2771/1469 554/2775/1465 549/2776/1464 +f 549/2776/1464 554/2775/1465 555/2777/181 550/2778/1461 +f 550/2779/1461 555/2780/181 556/2781/1462 551/2782/1463 +f 551/2782/1463 556/2781/1462 553/2774/1466 552/2773/1467 +f 557/2783/1475 558/2784/181 559/2785/1465 560/2786/1476 +f 564/2787/1474 565/2788/1462 558/2784/181 557/2783/1475 +f 560/2786/1476 559/2785/1465 566/2789/1469 561/2790/1473 +f 561/2790/1473 566/2789/1469 567/2791/441 562/2792/1471 +f 562/2793/1471 567/2794/441 568/2795/1466 563/2796/1472 +f 563/2796/1472 568/2795/1466 565/2788/1462 564/2787/1474 +f 569/2797/1484 570/2798/57 571/2799/1485 572/2800/1486 +f 576/2801/1483 577/2802/1482 570/2798/57 569/2797/1484 +f 572/2800/1486 571/2799/1485 578/2803/1481 573/2804/1480 +f 573/2804/1480 578/2803/1481 579/2805/25 574/2806/1477 +f 574/2807/1477 579/2808/25 580/2809/1478 575/2810/1479 +f 575/2810/1479 580/2809/1478 577/2802/1482 576/2801/1483 +f 581/2811/1491 582/2812/25 583/2813/1481 584/2814/1492 +f 588/2815/1490 589/2816/1478 582/2812/25 581/2811/1491 +f 584/2814/1492 583/2813/1481 590/2817/1485 585/2818/1489 +f 585/2818/1489 590/2817/1485 591/2819/57 586/2820/1487 +f 586/2821/1487 591/2822/57 592/2823/1482 587/2824/1488 +f 587/2824/1488 592/2823/1482 589/2816/1478 588/2815/1490 +f 593/2825/1500 594/2826/186 595/2827/1501 596/2828/1502 +f 600/2829/1499 601/2830/1498 594/2826/186 593/2825/1500 +f 596/2828/1502 595/2827/1501 602/2831/1497 597/2832/1496 +f 597/2832/1496 602/2831/1497 603/2833/446 598/2834/1493 +f 598/2835/1493 603/2836/446 604/2837/1494 599/2838/1495 +f 599/2838/1495 604/2837/1494 601/2830/1498 600/2829/1499 +f 605/2839/1507 606/2840/446 607/2841/1497 608/2842/1508 +f 612/2843/1506 613/2844/1494 606/2840/446 605/2839/1507 +f 608/2842/1508 607/2841/1497 614/2845/1501 609/2846/1505 +f 609/2846/1505 614/2845/1501 615/2847/186 610/2848/1503 +f 610/2849/1503 615/2850/186 616/2851/1498 611/2852/1504 +f 611/2852/1504 616/2851/1498 613/2844/1494 612/2843/1506 +f 617/2853/1516 618/2854/20 619/2855/1517 620/2856/1518 +f 624/2857/1515 625/2858/1514 618/2854/20 617/2853/1516 +f 620/2856/1518 619/2855/1517 626/2859/1513 621/2860/1512 +f 621/2860/1512 626/2859/1513 627/2861/19 622/2862/1509 +f 622/2863/1509 627/2864/19 628/2865/1510 623/2866/1511 +f 623/2866/1511 628/2865/1510 625/2858/1514 624/2857/1515 +f 629/2867/1523 630/2868/19 631/2869/1513 632/2870/1524 +f 636/2871/1522 637/2872/1510 630/2868/19 629/2867/1523 +f 632/2870/1524 631/2869/1513 638/2873/1517 633/2874/1521 +f 633/2874/1521 638/2873/1517 639/2875/20 634/2876/1519 +f 634/2877/1519 639/2878/20 640/2879/1514 635/2880/1520 +f 635/2880/1520 640/2879/1514 637/2872/1510 636/2871/1522 +f 38/2244/1286 83/2330/1360 79/2316/1356 39/2246/1288 +f 81/2326/1358 48/2263/1305 47/2261/1303 77/2314/1354 +f 51/2272/1312 93/2361/1370 97/2360/1374 52/2273/1313 diff --git a/mods/pipeworks/models/pipeworks_valve_off_lowpoly.obj b/mods/pipeworks/models/pipeworks_valve_off_lowpoly.obj new file mode 100644 index 00000000..c86d8dae --- /dev/null +++ b/mods/pipeworks/models/pipeworks_valve_off_lowpoly.obj @@ -0,0 +1,286 @@ +# Blender v2.78 (sub 0) OBJ File: 'pipe-valve-off.blend' +# www.blender.org +o Cube.003_Cube.003_None +v 0.312500 0.343750 0.062500 +v -0.093750 0.343750 0.062500 +v -0.093750 0.281250 0.062500 +v 0.312500 0.281250 0.062500 +v -0.093750 0.343750 -0.062500 +v -0.093750 0.281250 -0.062500 +v 0.312500 0.343750 -0.062500 +v 0.312500 0.281250 -0.062500 +v 0.031250 0.281250 0.031250 +v -0.031250 0.281250 0.031250 +v -0.031250 0.250000 0.031250 +v 0.031250 0.250000 0.031250 +v -0.031250 0.281250 -0.031250 +v -0.031250 0.250000 -0.031250 +v 0.031250 0.281250 -0.031250 +v 0.031250 0.250000 -0.031250 +v 0.250000 0.250000 0.250000 +v -0.250000 0.250000 0.250000 +v -0.250000 -0.250000 0.250000 +v 0.250000 -0.250000 0.250000 +v -0.250000 0.250000 -0.250000 +v -0.250000 -0.250000 -0.250000 +v 0.250000 0.250000 -0.250000 +v 0.250000 -0.250000 -0.250000 +v -0.156250 -0.064721 0.500000 +v -0.156250 -0.064721 0.468750 +v -0.064721 -0.156250 0.500000 +v -0.064721 -0.156250 0.468750 +v 0.064721 -0.156250 0.500000 +v 0.064721 -0.156250 0.468750 +v 0.156250 -0.064721 0.500000 +v 0.156250 -0.064721 0.468750 +v 0.156250 0.064721 0.500000 +v 0.156250 0.064721 0.468750 +v 0.064721 0.156250 0.500000 +v 0.064721 0.156250 0.468750 +v -0.064721 0.156250 0.500000 +v -0.064721 0.156250 0.468750 +v -0.156250 0.064721 0.500000 +v -0.156250 0.064721 0.468750 +v -0.125000 -0.051777 0.468750 +v -0.125000 -0.051777 -0.468750 +v -0.051777 -0.125000 0.468750 +v -0.051777 -0.125000 -0.468750 +v 0.051777 -0.125000 0.468750 +v 0.051777 -0.125000 -0.468750 +v 0.125000 -0.051777 0.468750 +v 0.125000 -0.051777 -0.468750 +v 0.125000 0.051777 0.468750 +v 0.125000 0.051777 -0.468750 +v 0.051777 0.125000 0.468750 +v 0.051777 0.125000 -0.468750 +v -0.051777 0.125000 0.468750 +v -0.051777 0.125000 -0.468750 +v -0.125000 0.051777 0.468750 +v -0.125000 0.051777 -0.468750 +v -0.156250 -0.064721 -0.468750 +v -0.156250 -0.064721 -0.500000 +v -0.064721 -0.156250 -0.468750 +v -0.064721 -0.156250 -0.500000 +v 0.064721 -0.156250 -0.468750 +v 0.064721 -0.156250 -0.500000 +v 0.156250 -0.064721 -0.468750 +v 0.156250 -0.064721 -0.500000 +v 0.156250 0.064721 -0.468750 +v 0.156250 0.064721 -0.500000 +v 0.064721 0.156250 -0.468750 +v 0.064721 0.156250 -0.500000 +v -0.064721 0.156250 -0.468750 +v -0.064721 0.156250 -0.500000 +v -0.156250 0.064721 -0.468750 +v -0.156250 0.064721 -0.500000 +vt 0.2656 0.2344 +vt 0.4688 0.2344 +vt 0.4688 0.2656 +vt 0.2656 0.2656 +vt 0.2656 0.1875 +vt 0.3281 0.1875 +vt 0.3281 0.2188 +vt 0.2656 0.2188 +vt 0.4688 0.3125 +vt 0.2656 0.3125 +vt 0.2656 0.2812 +vt 0.4688 0.2812 +vt 0.4062 0.2188 +vt 0.3438 0.2188 +vt 0.3438 0.1875 +vt 0.4062 0.1875 +vt 0.4688 0.4688 +vt 0.2656 0.4688 +vt 0.2656 0.4062 +vt 0.4688 0.4062 +vt 0.4688 0.3906 +vt 0.2656 0.3906 +vt 0.2656 0.3281 +vt 0.4688 0.3281 +vt 0.0391 0.2031 +vt 0.0078 0.2031 +vt 0.0078 0.1875 +vt 0.0391 0.1875 +vt 0.0859 0.2031 +vt 0.0547 0.2031 +vt 0.0547 0.1875 +vt 0.0859 0.1875 +vt 0.1484 0.1875 +vt 0.1797 0.1875 +vt 0.1797 0.2031 +vt 0.1484 0.2031 +vt 0.1328 0.2031 +vt 0.1016 0.2031 +vt 0.1016 0.1875 +vt 0.1328 0.1875 +vt 0.5156 0.4844 +vt 0.5156 0.7344 +vt 0.2656 0.7344 +vt 0.2656 0.4844 +vt 0.0000 0.4688 +vt 0.0000 0.2188 +vt 0.2500 0.2188 +vt 0.2500 0.4688 +vt 0.5156 1.0000 +vt 0.2656 1.0000 +vt 0.2656 0.7500 +vt 0.5156 0.7500 +vt 0.2500 0.7344 +vt 0.0000 0.7344 +vt 0.0000 0.4844 +vt 0.2500 0.4844 +vt 0.7812 1.0000 +vt 0.5312 1.0000 +vt 0.5312 0.7500 +vt 0.7812 0.7500 +vt 0.0008 0.7500 +vt 0.2502 0.7500 +vt 0.2502 0.9994 +vt 0.0008 0.9994 +vt 0.8516 0.4453 +vt 0.8047 0.4922 +vt 0.7422 0.4922 +vt 0.6953 0.4453 +vt 0.6953 0.3828 +vt 0.7422 0.3359 +vt 0.8047 0.3359 +vt 0.8516 0.3828 +vt 0.6172 0.4922 +vt 0.6641 0.4453 +vt 0.6641 0.3828 +vt 0.6172 0.3359 +vt 0.5547 0.3359 +vt 0.5078 0.3828 +vt 0.5078 0.4453 +vt 0.5547 0.4922 +vt 0.6641 0.4453 +vt 0.6172 0.4922 +vt 0.5547 0.4922 +vt 0.5078 0.4453 +vt 0.5078 0.3828 +vt 0.5547 0.3359 +vt 0.6172 0.3359 +vt 0.6641 0.3828 +vt 0.8047 0.4922 +vt 0.8516 0.4453 +vt 0.8516 0.3828 +vt 0.8047 0.3359 +vt 0.7422 0.3359 +vt 0.6953 0.3828 +vt 0.6953 0.4453 +vt 0.7422 0.4922 +vt 0.8984 0.2969 +vt 0.8984 0.2812 +vt 0.9297 0.2812 +vt 0.9297 0.2969 +vt 0.9609 0.2812 +vt 0.9609 0.2969 +vt 0.9922 0.2812 +vt 0.9922 0.2969 +vt 0.7422 0.2969 +vt 0.7422 0.2812 +vt 0.7734 0.2812 +vt 0.7734 0.2969 +vt 0.8047 0.2812 +vt 0.8047 0.2969 +vt 0.8359 0.2812 +vt 0.8359 0.2969 +vt 0.8672 0.2812 +vt 0.8672 0.2969 +vt 0.6797 0.2969 +vt 0.6797 0.2812 +vt 0.7109 0.2812 +vt 0.7109 0.2969 +vt 0.6484 0.2969 +vt 0.6484 0.2812 +vt 0.7422 0.2812 +vt 0.7422 0.2969 +vt 0.4922 0.2969 +vt 0.4922 0.2812 +vt 0.5234 0.2812 +vt 0.5234 0.2969 +vt 0.5547 0.2812 +vt 0.5547 0.2969 +vt 0.5859 0.2812 +vt 0.5859 0.2969 +vt 0.6172 0.2812 +vt 0.6172 0.2969 +vt 0.4922 0.1328 +vt 0.4922 0.1016 +vt 0.9922 0.1016 +vt 0.9922 0.1328 +vt 0.4922 0.1953 +vt 0.4922 0.1641 +vt 0.9922 0.1641 +vt 0.9922 0.1953 +vt 0.4922 0.2266 +vt 0.9922 0.2266 +vt 0.9922 0.2578 +vt 0.4922 0.2578 +vt 0.9922 0.0391 +vt 0.9922 0.0703 +vt 0.4922 0.0703 +vt 0.4922 0.0391 +vt 0.9922 0.0078 +vt 0.4922 0.0078 +vn 0.0000 0.0000 1.0000 +vn -1.0000 0.0000 0.0000 +vn 0.0000 0.0000 -1.0000 +vn 1.0000 0.0000 0.0000 +vn 0.0000 -1.0000 0.0000 +vn 0.0000 1.0000 0.0000 +vn -0.9239 -0.3827 -0.0000 +vn -0.3827 -0.9239 0.0000 +vn 0.3827 -0.9239 0.0000 +vn 0.9239 -0.3827 0.0000 +vn 0.9239 0.3827 0.0000 +vn 0.3827 0.9239 0.0000 +vn -0.3827 0.9239 -0.0000 +vn -0.9239 0.3827 -0.0000 +g Cube.003_Cube.003_None_Cube.003_Cube.003_None_None +s off +f 1/1/1 2/2/1 3/3/1 4/4/1 +f 2/5/2 5/6/2 6/7/2 3/8/2 +f 5/9/3 7/10/3 8/11/3 6/12/3 +f 7/13/4 1/14/4 4/15/4 8/16/4 +f 4/17/5 3/18/5 6/19/5 8/20/5 +f 7/21/6 5/22/6 2/23/6 1/24/6 +f 9/25/1 10/26/1 11/27/1 12/28/1 +f 10/29/2 13/30/2 14/31/2 11/32/2 +f 13/33/3 15/34/3 16/35/3 14/36/3 +f 15/37/4 9/38/4 12/39/4 16/40/4 +f 17/41/1 18/42/1 19/43/1 20/44/1 +f 18/45/2 21/46/2 22/47/2 19/48/2 +f 21/49/3 23/50/3 24/51/3 22/52/3 +f 23/53/4 17/54/4 20/55/4 24/56/4 +f 20/57/5 19/58/5 22/59/5 24/60/5 +f 23/61/6 21/62/6 18/63/6 17/64/6 +f 28/65/3 26/66/3 40/67/3 38/68/3 36/69/3 34/70/3 32/71/3 30/72/3 +f 25/73/1 27/74/1 29/75/1 31/76/1 33/77/1 35/78/1 37/79/1 39/80/1 +f 60/81/3 58/82/3 72/83/3 70/84/3 68/85/3 66/86/3 64/87/3 62/88/3 +f 57/89/1 59/90/1 61/91/1 63/92/1 65/93/1 67/94/1 69/95/1 71/96/1 +s 1 +f 25/97/7 26/98/7 28/99/8 27/100/8 +f 27/100/8 28/99/8 30/101/9 29/102/9 +f 29/102/9 30/101/9 32/103/10 31/104/10 +f 31/105/10 32/106/10 34/107/11 33/108/11 +f 33/108/11 34/107/11 36/109/12 35/110/12 +f 35/110/12 36/109/12 38/111/13 37/112/13 +f 37/112/13 38/111/13 40/113/14 39/114/14 +f 39/114/14 40/113/14 26/98/7 25/97/7 +f 59/115/8 60/116/8 62/117/9 61/118/9 +f 57/119/7 58/120/7 60/116/8 59/115/8 +f 61/118/9 62/117/9 64/121/10 63/122/10 +f 63/123/10 64/124/10 66/125/11 65/126/11 +f 65/126/11 66/125/11 68/127/12 67/128/12 +f 67/128/12 68/127/12 70/129/13 69/130/13 +f 69/130/13 70/129/13 72/131/14 71/132/14 +f 71/132/14 72/131/14 58/120/7 57/119/7 +f 54/133/13 56/134/14 55/135/14 53/136/13 +f 50/137/11 52/138/12 51/139/12 49/140/11 +f 48/141/10 47/142/10 45/143/9 46/144/9 +f 54/133/13 53/136/13 51/139/12 52/138/12 +f 43/145/8 41/146/7 42/147/7 44/148/8 +f 45/149/9 43/145/8 44/148/8 46/150/9 +f 48/141/10 50/137/11 49/140/11 47/142/10 +f 41/146/7 55/135/14 56/134/14 42/147/7 diff --git a/mods/pipeworks/models/pipeworks_valve_on.obj b/mods/pipeworks/models/pipeworks_valve_on.obj new file mode 100644 index 00000000..61681f82 --- /dev/null +++ b/mods/pipeworks/models/pipeworks_valve_on.obj @@ -0,0 +1,8136 @@ +# Blender v2.78 (sub 0) OBJ File: 'pipe-valve-on.blend' +# www.blender.org +o Pipe_Cylinder.002 +v -0.038455 0.126770 -0.468750 +v -0.012985 0.131837 -0.468750 +v 0.012984 0.131837 -0.468750 +v 0.038455 0.126770 -0.468750 +v 0.062448 0.116832 -0.468750 +v 0.084041 0.102404 -0.468750 +v 0.102404 0.084041 -0.468750 +v 0.116832 0.062448 -0.468750 +v 0.126770 0.038455 -0.468750 +v 0.131836 0.012985 -0.468750 +v 0.131836 -0.012985 -0.468750 +v 0.116832 -0.062448 -0.468750 +v 0.102404 -0.084041 -0.468750 +v 0.084041 -0.102404 -0.468750 +v 0.062448 -0.116832 -0.468750 +v 0.038455 -0.126770 -0.468750 +v 0.012985 -0.131836 -0.468750 +v -0.012985 -0.131836 -0.468750 +v -0.038455 -0.126770 -0.468750 +v -0.062448 -0.116832 -0.468750 +v -0.102404 -0.084041 -0.468750 +v -0.084041 -0.102404 -0.468750 +v -0.116832 -0.062448 -0.468750 +v -0.126770 -0.038455 -0.468750 +v -0.131837 0.012985 -0.468750 +v -0.116832 0.062448 -0.468750 +v -0.126770 0.038455 -0.468750 +v -0.102404 0.084041 -0.468750 +v -0.084041 0.102404 -0.468750 +v -0.062448 0.116832 -0.468750 +v 0.126770 -0.038455 -0.468750 +v -0.131837 -0.012985 -0.468750 +v -0.059210 0.110774 -0.437501 +v -0.036461 0.120197 -0.437501 +v -0.012312 0.125000 -0.437501 +v 0.012311 0.125001 -0.437501 +v 0.036461 0.120197 -0.437501 +v 0.059210 0.110774 -0.437501 +v 0.079683 0.097094 -0.437501 +v 0.097094 0.079683 -0.437501 +v 0.110774 0.059210 -0.437501 +v 0.120197 0.036461 -0.437501 +v 0.125000 0.012312 -0.437501 +v 0.125000 -0.012311 -0.437501 +v 0.120197 -0.036461 -0.437501 +v 0.110774 -0.059210 -0.437501 +v 0.097094 -0.079683 -0.437501 +v 0.079683 -0.097094 -0.437501 +v 0.059210 -0.110774 -0.437501 +v 0.036461 -0.120197 -0.437501 +v 0.012311 -0.125000 -0.437501 +v -0.012312 -0.125000 -0.437501 +v -0.036461 -0.120197 -0.437501 +v -0.059210 -0.110774 -0.437501 +v -0.079683 -0.097094 -0.437501 +v -0.097094 -0.079683 -0.437501 +v -0.110774 -0.059210 -0.437501 +v -0.120197 -0.036461 -0.437501 +v -0.125001 -0.012311 -0.437501 +v -0.125001 0.012311 -0.437501 +v -0.120197 0.036461 -0.437501 +v -0.110774 0.059210 -0.437501 +v -0.097094 0.079683 -0.437501 +v -0.079683 0.097094 -0.437501 +v 0.120197 0.036461 0.437501 +v 0.125001 0.012312 0.437501 +v 0.125001 -0.012311 0.437501 +v 0.120197 -0.036461 0.437501 +v 0.110774 0.059210 0.437501 +v 0.131837 0.012985 0.468750 +v 0.126770 0.038455 0.468750 +v 0.131837 -0.012985 0.468750 +v 0.110774 -0.059210 0.437501 +v 0.126770 -0.038455 0.468750 +v 0.097094 0.079683 0.437501 +v 0.116832 0.062448 0.468750 +v 0.097094 -0.079683 0.437501 +v 0.116832 -0.062448 0.468750 +v 0.079683 0.097094 0.437501 +v 0.102404 0.084041 0.468750 +v 0.079683 -0.097094 0.437501 +v 0.102404 -0.084041 0.468750 +v 0.059210 0.110774 0.437501 +v 0.084041 0.102404 0.468750 +v 0.059210 -0.110774 0.437501 +v 0.084041 -0.102404 0.468750 +v 0.036461 0.120197 0.437501 +v 0.062448 0.116832 0.468750 +v 0.036461 -0.120197 0.437501 +v 0.062448 -0.116832 0.468750 +v 0.012311 0.125000 0.437501 +v 0.038455 0.126770 0.468750 +v 0.012311 -0.125001 0.437501 +v 0.038455 -0.126770 0.468750 +v -0.012312 0.125000 0.437501 +v 0.012985 0.131836 0.468750 +v -0.012311 -0.125001 0.437501 +v 0.012985 -0.131837 0.468750 +v -0.036461 0.120197 0.437501 +v -0.012985 0.131836 0.468750 +v -0.036461 -0.120197 0.437501 +v -0.012985 -0.131837 0.468750 +v -0.059210 0.110774 0.437501 +v -0.038455 0.126770 0.468750 +v -0.059210 -0.110774 0.437501 +v -0.038455 -0.126770 0.468750 +v -0.079683 0.097094 0.437501 +v -0.062448 0.116832 0.468750 +v -0.079683 -0.097094 0.437501 +v -0.062448 -0.116832 0.468750 +v -0.097094 0.079683 0.437501 +v -0.084041 0.102404 0.468750 +v -0.097094 -0.079683 0.437501 +v -0.084041 -0.102404 0.468750 +v -0.110774 0.059210 0.437501 +v -0.102404 0.084041 0.468750 +v -0.110774 -0.059210 0.437501 +v -0.102404 -0.084041 0.468750 +v -0.120197 0.036461 0.437501 +v -0.116832 0.062448 0.468750 +v -0.120197 -0.036461 0.437501 +v -0.116832 -0.062448 0.468750 +v -0.125000 0.012311 0.437501 +v -0.126770 0.038455 0.468750 +v -0.125000 -0.012311 0.437501 +v -0.126770 -0.038455 0.468750 +v -0.131836 0.012985 0.468750 +v -0.131836 -0.012985 0.468750 +v -0.063644 0.130078 0.460912 +v -0.063644 0.130078 0.468749 +v -0.062467 0.139022 0.468749 +v -0.062467 0.139022 0.460912 +v -0.054132 0.142474 0.460912 +v -0.046976 0.136982 0.460912 +v -0.048153 0.128039 0.460912 +v -0.056487 0.124587 0.460912 +v -0.056487 0.124587 0.468749 +v -0.054132 0.142474 0.468749 +v -0.046976 0.136982 0.468749 +v -0.048153 0.128039 0.468749 +v -0.046976 0.136982 -0.460914 +v -0.046976 0.136982 -0.468751 +v -0.054133 0.142474 -0.468751 +v -0.054133 0.142474 -0.460914 +v -0.062467 0.139022 -0.460914 +v -0.063644 0.130078 -0.460914 +v -0.056488 0.124587 -0.460914 +v -0.048153 0.128039 -0.460914 +v -0.048153 0.128039 -0.468751 +v -0.062467 0.139022 -0.468751 +v -0.063644 0.130078 -0.468751 +v -0.056488 0.124587 -0.468751 +v -0.136982 0.046976 0.460912 +v -0.136982 0.046976 0.468749 +v -0.142474 0.054133 0.468749 +v -0.142474 0.054133 0.460912 +v -0.139022 0.062467 0.460912 +v -0.130078 0.063644 0.460912 +v -0.124587 0.056488 0.460912 +v -0.128039 0.048154 0.460912 +v -0.128039 0.048154 0.468749 +v -0.139022 0.062467 0.468749 +v -0.130078 0.063644 0.468749 +v -0.124587 0.056488 0.468749 +v -0.130078 0.063644 -0.460914 +v -0.130078 0.063644 -0.468751 +v -0.139022 0.062467 -0.468751 +v -0.139022 0.062467 -0.460914 +v -0.142474 0.054133 -0.460914 +v -0.136982 0.046976 -0.460914 +v -0.128039 0.048153 -0.460914 +v -0.124587 0.056487 -0.460914 +v -0.124587 0.056487 -0.468751 +v -0.142474 0.054133 -0.468751 +v -0.136982 0.046976 -0.468751 +v -0.128039 0.048153 -0.468751 +v -0.130078 -0.063644 0.460912 +v -0.130078 -0.063644 0.468749 +v -0.139022 -0.062467 0.468749 +v -0.139022 -0.062467 0.460912 +v -0.142474 -0.054132 0.460912 +v -0.136982 -0.046976 0.460912 +v -0.128039 -0.048153 0.460912 +v -0.124587 -0.056487 0.460912 +v -0.124587 -0.056487 0.468749 +v -0.142474 -0.054132 0.468749 +v -0.136982 -0.046976 0.468749 +v -0.128039 -0.048153 0.468749 +v -0.136982 -0.046976 -0.460914 +v -0.136982 -0.046976 -0.468751 +v -0.142474 -0.054133 -0.468751 +v -0.142474 -0.054133 -0.460914 +v -0.139022 -0.062467 -0.460914 +v -0.130078 -0.063644 -0.460914 +v -0.124587 -0.056488 -0.460914 +v -0.128039 -0.048153 -0.460914 +v -0.128039 -0.048153 -0.468751 +v -0.139022 -0.062467 -0.468751 +v -0.130078 -0.063644 -0.468751 +v -0.124587 -0.056488 -0.468751 +v -0.046976 -0.136982 0.460912 +v -0.046976 -0.136982 0.468749 +v -0.054133 -0.142474 0.468749 +v -0.054133 -0.142474 0.460912 +v -0.062467 -0.139022 0.460912 +v -0.063644 -0.130078 0.460912 +v -0.056488 -0.124587 0.460912 +v -0.048153 -0.128039 0.460912 +v -0.048153 -0.128039 0.468749 +v -0.062467 -0.139022 0.468749 +v -0.063644 -0.130078 0.468749 +v -0.056488 -0.124587 0.468749 +v -0.063644 -0.130078 -0.460914 +v -0.063644 -0.130078 -0.468751 +v -0.062467 -0.139022 -0.468751 +v -0.062467 -0.139022 -0.460914 +v -0.054133 -0.142474 -0.460914 +v -0.046976 -0.136982 -0.460914 +v -0.048153 -0.128039 -0.460914 +v -0.056487 -0.124587 -0.460914 +v -0.056487 -0.124587 -0.468751 +v -0.054133 -0.142474 -0.468751 +v -0.046976 -0.136982 -0.468751 +v -0.048153 -0.128039 -0.468751 +v 0.063644 -0.130078 0.460912 +v 0.063644 -0.130078 0.468749 +v 0.062467 -0.139022 0.468749 +v 0.062467 -0.139022 0.460912 +v 0.054132 -0.142474 0.460912 +v 0.046976 -0.136982 0.460912 +v 0.048153 -0.128039 0.460912 +v 0.056487 -0.124587 0.460912 +v 0.056487 -0.124587 0.468749 +v 0.054132 -0.142474 0.468749 +v 0.046976 -0.136982 0.468749 +v 0.048153 -0.128039 0.468749 +v 0.046976 -0.136982 -0.460914 +v 0.046976 -0.136982 -0.468751 +v 0.054133 -0.142474 -0.468751 +v 0.054133 -0.142474 -0.460914 +v 0.062467 -0.139022 -0.460914 +v 0.063644 -0.130078 -0.460914 +v 0.056487 -0.124587 -0.460914 +v 0.048153 -0.128039 -0.460914 +v 0.048153 -0.128039 -0.468751 +v 0.062467 -0.139022 -0.468751 +v 0.063644 -0.130078 -0.468751 +v 0.056487 -0.124587 -0.468751 +v 0.136982 -0.046976 0.460912 +v 0.136982 -0.046976 0.468749 +v 0.142474 -0.054133 0.468749 +v 0.142474 -0.054133 0.460912 +v 0.139022 -0.062467 0.460912 +v 0.130078 -0.063644 0.460912 +v 0.124587 -0.056488 0.460912 +v 0.128039 -0.048153 0.460912 +v 0.128039 -0.048153 0.468749 +v 0.139022 -0.062467 0.468749 +v 0.130078 -0.063644 0.468749 +v 0.124587 -0.056488 0.468749 +v 0.130078 -0.063644 -0.460914 +v 0.130078 -0.063644 -0.468751 +v 0.139022 -0.062467 -0.468751 +v 0.139022 -0.062467 -0.460914 +v 0.142474 -0.054132 -0.460914 +v 0.136982 -0.046976 -0.460914 +v 0.128039 -0.048153 -0.460914 +v 0.124587 -0.056487 -0.460914 +v 0.124587 -0.056487 -0.468751 +v 0.142474 -0.054132 -0.468751 +v 0.136982 -0.046976 -0.468751 +v 0.128039 -0.048153 -0.468751 +v 0.130078 0.063644 0.460912 +v 0.130078 0.063644 0.468749 +v 0.139022 0.062467 0.468749 +v 0.139022 0.062467 0.460912 +v 0.142474 0.054132 0.460912 +v 0.136982 0.046976 0.460912 +v 0.128039 0.048153 0.460912 +v 0.124587 0.056487 0.460912 +v 0.124587 0.056487 0.468749 +v 0.142474 0.054132 0.468749 +v 0.136982 0.046976 0.468749 +v 0.128039 0.048153 0.468749 +v 0.136982 0.046976 -0.460914 +v 0.136982 0.046976 -0.468751 +v 0.142474 0.054133 -0.468751 +v 0.142474 0.054133 -0.460914 +v 0.139022 0.062467 -0.460914 +v 0.130078 0.063644 -0.460914 +v 0.124587 0.056487 -0.460914 +v 0.128039 0.048153 -0.460914 +v 0.128039 0.048153 -0.468751 +v 0.139022 0.062467 -0.468751 +v 0.130078 0.063644 -0.468751 +v 0.124587 0.056487 -0.468751 +v 0.046976 0.136982 0.460912 +v 0.046976 0.136982 0.468749 +v 0.054133 0.142474 0.468749 +v 0.054133 0.142474 0.460912 +v 0.062467 0.139022 0.460912 +v 0.063644 0.130078 0.460912 +v 0.056488 0.124587 0.460912 +v 0.048154 0.128039 0.460912 +v 0.048154 0.128039 0.468749 +v 0.062467 0.139022 0.468749 +v 0.063644 0.130078 0.468749 +v 0.056488 0.124587 0.468749 +v 0.063644 0.130078 -0.460914 +v 0.063644 0.130078 -0.468751 +v 0.062467 0.139022 -0.468751 +v 0.062467 0.139022 -0.460914 +v 0.054132 0.142474 -0.460914 +v 0.046976 0.136982 -0.460914 +v 0.048153 0.128039 -0.460914 +v 0.056487 0.124587 -0.460914 +v 0.056487 0.124587 -0.468751 +v 0.054132 0.142474 -0.468751 +v 0.046976 0.136982 -0.468751 +v 0.048153 0.128039 -0.468751 +v 0.121367 0.099603 -0.500000 +v 0.138467 0.074012 -0.500000 +v 0.150245 0.045577 -0.500000 +v 0.156250 0.015390 -0.500000 +v 0.156250 -0.015389 -0.500000 +v 0.150245 -0.045576 -0.500000 +v 0.138467 -0.074012 -0.500000 +v 0.121367 -0.099603 -0.500000 +v 0.099603 -0.121367 -0.500000 +v 0.045576 -0.150245 -0.500000 +v -0.015389 -0.156250 -0.500000 +v -0.045576 -0.150245 -0.500000 +v -0.099603 -0.121367 -0.500000 +v -0.121367 -0.099603 -0.500000 +v -0.138467 -0.074012 -0.500000 +v -0.150245 -0.045576 -0.500000 +v -0.156250 -0.015389 -0.500000 +v -0.150245 0.045576 -0.500000 +v -0.138467 0.074012 -0.500000 +v -0.121367 0.099603 -0.500000 +v -0.074012 0.138467 -0.500000 +v -0.015389 0.156250 -0.500000 +v 0.015389 0.156250 -0.500000 +v 0.045576 0.150245 -0.500000 +v 0.074012 0.138467 -0.500000 +v 0.099603 0.121367 -0.500000 +v 0.074012 -0.138466 -0.500000 +v 0.015389 -0.156250 -0.500000 +v -0.074012 -0.138467 -0.500000 +v -0.156250 0.015389 -0.500000 +v -0.099603 0.121367 -0.500000 +v -0.045576 0.150245 -0.500000 +v 0.121367 0.099603 -0.468750 +v 0.099603 0.121367 -0.468750 +v 0.138467 0.074012 -0.468750 +v 0.150245 0.045577 -0.468750 +v 0.156250 0.015390 -0.468750 +v 0.156250 -0.015389 -0.468750 +v 0.150245 -0.045576 -0.468750 +v 0.138467 -0.074012 -0.468750 +v 0.121367 -0.099603 -0.468750 +v 0.099603 -0.121367 -0.468750 +v 0.074012 -0.138466 -0.468750 +v 0.045576 -0.150245 -0.468750 +v 0.015389 -0.156250 -0.468750 +v -0.015389 -0.156250 -0.468750 +v -0.045576 -0.150245 -0.468750 +v -0.074012 -0.138467 -0.468750 +v -0.099603 -0.121367 -0.468750 +v -0.121367 -0.099603 -0.468750 +v -0.138467 -0.074012 -0.468750 +v -0.150245 -0.045576 -0.468750 +v -0.156250 -0.015389 -0.468750 +v -0.156250 0.015389 -0.468750 +v -0.138467 0.074012 -0.468750 +v -0.150245 0.045576 -0.468750 +v -0.121367 0.099603 -0.468750 +v -0.099603 0.121367 -0.468750 +v -0.074012 0.138467 -0.468750 +v -0.045576 0.150245 -0.468750 +v 0.015389 0.156250 -0.468750 +v -0.015389 0.156250 -0.468750 +v 0.045576 0.150245 -0.468750 +v 0.074012 0.138467 -0.468750 +v 0.074012 -0.138466 0.468750 +v 0.045576 -0.150245 0.468750 +v 0.015389 -0.156250 0.468750 +v 0.099603 -0.121367 0.468750 +v -0.015389 -0.156250 0.468750 +v 0.138467 -0.074012 0.468750 +v 0.121367 -0.099603 0.468750 +v 0.099603 -0.121367 0.500000 +v 0.074012 -0.138467 0.500000 +v 0.045576 -0.150245 0.500000 +v 0.015389 -0.156250 0.500000 +v -0.015389 -0.156250 0.500000 +v 0.150245 -0.045576 0.468750 +v 0.121367 -0.099603 0.500000 +v -0.045576 -0.150245 0.468750 +v -0.045576 -0.150245 0.500000 +v 0.156250 -0.015389 0.468750 +v 0.150245 -0.045576 0.500000 +v 0.138467 -0.074012 0.500000 +v -0.074012 -0.138467 0.468750 +v -0.074012 -0.138467 0.500000 +v 0.156250 0.015389 0.468750 +v 0.156250 -0.015389 0.500000 +v -0.099603 -0.121367 0.468750 +v -0.099603 -0.121367 0.500000 +v 0.150245 0.045576 0.468750 +v 0.156250 0.015389 0.500000 +v -0.121367 -0.099603 0.468750 +v -0.121367 -0.099603 0.500000 +v 0.138467 0.074012 0.468750 +v 0.150245 0.045576 0.500000 +v -0.150245 -0.045576 0.468750 +v -0.138467 -0.074012 0.468750 +v -0.138467 -0.074012 0.500000 +v 0.121367 0.099603 0.468750 +v 0.138467 0.074012 0.500000 +v -0.156250 -0.015389 0.468750 +v -0.150245 -0.045576 0.500000 +v 0.099603 0.121367 0.468750 +v 0.121367 0.099603 0.500000 +v -0.156250 0.015389 0.468750 +v -0.156250 -0.015389 0.500000 +v 0.074012 0.138466 0.468750 +v 0.099604 0.121367 0.500000 +v -0.150245 0.045576 0.468750 +v -0.156250 0.015389 0.500000 +v 0.045577 0.150245 0.468750 +v 0.074012 0.138466 0.500000 +v -0.138467 0.074012 0.468750 +v -0.150245 0.045576 0.500000 +v 0.015389 0.156249 0.468750 +v 0.045577 0.150245 0.500000 +v -0.015389 0.156250 0.500000 +v -0.121367 0.099603 0.468750 +v -0.138467 0.074012 0.500000 +v -0.015389 0.156250 0.468750 +v 0.015389 0.156250 0.500000 +v -0.074012 0.138467 0.500000 +v -0.045576 0.150245 0.500000 +v -0.099603 0.121367 0.500000 +v -0.121367 0.099603 0.500000 +v -0.045576 0.150245 0.468750 +v -0.099603 0.121367 0.468750 +v -0.074012 0.138467 0.468750 +v -0.108578 0.095821 0.460912 +v -0.108578 0.095821 0.468749 +v -0.110913 0.104534 0.468749 +v -0.110913 0.104534 0.460912 +v -0.104534 0.110913 0.460912 +v -0.095821 0.108578 0.460912 +v -0.093486 0.099865 0.460912 +v -0.099865 0.093486 0.460912 +v -0.099865 0.093486 0.468749 +v -0.104534 0.110913 0.468749 +v -0.095821 0.108578 0.468749 +v -0.093486 0.099865 0.468749 +v -0.095821 0.108578 -0.460914 +v -0.095821 0.108578 -0.468751 +v -0.104534 0.110913 -0.468751 +v -0.104534 0.110913 -0.460914 +v -0.110913 0.104534 -0.460914 +v -0.108578 0.095821 -0.460914 +v -0.099865 0.093486 -0.460914 +v -0.093486 0.099865 -0.460914 +v -0.093486 0.099865 -0.468751 +v -0.110913 0.104534 -0.468751 +v -0.108578 0.095821 -0.468751 +v -0.099865 0.093486 -0.468751 +v -0.144532 -0.009021 0.460912 +v -0.144532 -0.009021 0.468749 +v -0.152344 -0.004510 0.468749 +v -0.152344 -0.004510 0.460912 +v -0.152344 0.004510 0.460912 +v -0.144532 0.009021 0.460912 +v -0.136720 0.004510 0.460912 +v -0.136720 -0.004510 0.460912 +v -0.136720 -0.004510 0.468749 +v -0.152344 0.004510 0.468749 +v -0.144532 0.009021 0.468749 +v -0.136720 0.004510 0.468749 +v -0.144532 0.009021 -0.460914 +v -0.144532 0.009021 -0.468751 +v -0.152344 0.004510 -0.468751 +v -0.152344 0.004510 -0.460914 +v -0.152344 -0.004510 -0.460914 +v -0.144532 -0.009021 -0.460914 +v -0.136720 -0.004510 -0.460914 +v -0.136720 0.004510 -0.460914 +v -0.136720 0.004510 -0.468751 +v -0.152344 -0.004510 -0.468751 +v -0.144532 -0.009021 -0.468751 +v -0.136720 -0.004510 -0.468751 +v -0.095821 -0.108578 0.460912 +v -0.095821 -0.108578 0.468749 +v -0.104534 -0.110913 0.468749 +v -0.104534 -0.110913 0.460912 +v -0.110913 -0.104534 0.460912 +v -0.108578 -0.095821 0.460912 +v -0.099865 -0.093486 0.460912 +v -0.093486 -0.099865 0.460912 +v -0.093486 -0.099865 0.468749 +v -0.110913 -0.104534 0.468749 +v -0.108578 -0.095821 0.468749 +v -0.099865 -0.093486 0.468749 +v -0.108578 -0.095821 -0.460914 +v -0.108578 -0.095821 -0.468751 +v -0.110913 -0.104534 -0.468751 +v -0.110913 -0.104534 -0.460914 +v -0.104534 -0.110913 -0.460914 +v -0.095821 -0.108578 -0.460914 +v -0.093486 -0.099865 -0.460914 +v -0.099865 -0.093486 -0.460914 +v -0.099865 -0.093486 -0.468751 +v -0.104534 -0.110913 -0.468751 +v -0.095821 -0.108578 -0.468751 +v -0.093486 -0.099865 -0.468751 +v 0.009021 -0.144532 0.460912 +v 0.009021 -0.144532 0.468749 +v 0.004510 -0.152344 0.468749 +v 0.004510 -0.152344 0.460912 +v -0.004510 -0.152344 0.460912 +v -0.009021 -0.144532 0.460912 +v -0.004510 -0.136720 0.460912 +v 0.004510 -0.136720 0.460912 +v 0.004510 -0.136720 0.468749 +v -0.004510 -0.152344 0.468749 +v -0.009021 -0.144532 0.468749 +v -0.004510 -0.136720 0.468749 +v -0.009021 -0.144532 -0.460914 +v -0.009021 -0.144532 -0.468751 +v -0.004510 -0.152344 -0.468751 +v -0.004510 -0.152344 -0.460914 +v 0.004510 -0.152344 -0.460914 +v 0.009021 -0.144532 -0.460914 +v 0.004510 -0.136720 -0.460914 +v -0.004510 -0.136720 -0.460914 +v -0.004510 -0.136720 -0.468751 +v 0.004510 -0.152344 -0.468751 +v 0.009021 -0.144532 -0.468751 +v 0.004510 -0.136720 -0.468751 +v 0.108578 -0.095821 0.460912 +v 0.108578 -0.095821 0.468749 +v 0.110913 -0.104534 0.468749 +v 0.110913 -0.104534 0.460912 +v 0.104534 -0.110913 0.460912 +v 0.095821 -0.108578 0.460912 +v 0.093486 -0.099865 0.460912 +v 0.099865 -0.093486 0.460912 +v 0.099865 -0.093486 0.468749 +v 0.104534 -0.110913 0.468749 +v 0.095821 -0.108578 0.468749 +v 0.093486 -0.099865 0.468749 +v 0.095821 -0.108578 -0.460914 +v 0.095821 -0.108578 -0.468751 +v 0.104534 -0.110913 -0.468751 +v 0.104534 -0.110913 -0.460914 +v 0.110913 -0.104534 -0.460914 +v 0.108578 -0.095821 -0.460914 +v 0.099865 -0.093486 -0.460914 +v 0.093486 -0.099865 -0.460914 +v 0.093486 -0.099865 -0.468751 +v 0.110913 -0.104534 -0.468751 +v 0.108578 -0.095821 -0.468751 +v 0.099865 -0.093486 -0.468751 +v 0.144532 0.009021 0.460912 +v 0.144532 0.009021 0.468749 +v 0.152344 0.004510 0.468749 +v 0.152344 0.004510 0.460912 +v 0.152344 -0.004510 0.460912 +v 0.144532 -0.009021 0.460912 +v 0.136720 -0.004510 0.460912 +v 0.136720 0.004510 0.460912 +v 0.136720 0.004510 0.468749 +v 0.152344 -0.004510 0.468749 +v 0.144532 -0.009021 0.468749 +v 0.136720 -0.004510 0.468749 +v 0.144532 -0.009021 -0.460914 +v 0.144532 -0.009021 -0.468751 +v 0.152344 -0.004510 -0.468751 +v 0.152344 -0.004510 -0.460914 +v 0.152344 0.004510 -0.460914 +v 0.144532 0.009021 -0.460914 +v 0.136720 0.004510 -0.460914 +v 0.136720 -0.004510 -0.460914 +v 0.136720 -0.004510 -0.468751 +v 0.152344 0.004510 -0.468751 +v 0.144532 0.009021 -0.468751 +v 0.136720 0.004510 -0.468751 +v 0.095821 0.108578 0.460912 +v 0.095821 0.108578 0.468749 +v 0.104534 0.110913 0.468749 +v 0.104534 0.110913 0.460912 +v 0.110913 0.104534 0.460912 +v 0.108578 0.095821 0.460912 +v 0.099865 0.093486 0.460912 +v 0.093486 0.099865 0.460912 +v 0.093486 0.099865 0.468749 +v 0.110913 0.104534 0.468749 +v 0.108578 0.095821 0.468749 +v 0.099865 0.093486 0.468749 +v 0.108578 0.095821 -0.460914 +v 0.108578 0.095821 -0.468751 +v 0.110913 0.104534 -0.468751 +v 0.110913 0.104534 -0.460914 +v 0.104534 0.110913 -0.460914 +v 0.095821 0.108578 -0.460914 +v 0.093486 0.099865 -0.460914 +v 0.099865 0.093486 -0.460914 +v 0.099865 0.093486 -0.468751 +v 0.104534 0.110913 -0.468751 +v 0.095821 0.108578 -0.468751 +v 0.093486 0.099865 -0.468751 +v -0.009021 0.144532 0.460912 +v -0.009021 0.144532 0.468749 +v -0.004510 0.152344 0.468749 +v -0.004510 0.152344 0.460912 +v 0.004511 0.152344 0.460912 +v 0.009021 0.144532 0.460912 +v 0.004511 0.136720 0.460912 +v -0.004510 0.136720 0.460912 +v -0.004510 0.136720 0.468749 +v 0.004511 0.152344 0.468749 +v 0.009021 0.144532 0.468749 +v 0.004511 0.136720 0.468749 +v 0.009021 0.144532 -0.460914 +v 0.009021 0.144532 -0.468751 +v 0.004510 0.152344 -0.468751 +v 0.004510 0.152344 -0.460914 +v -0.004510 0.152344 -0.460914 +v -0.009021 0.144532 -0.460914 +v -0.004510 0.136720 -0.460914 +v 0.004510 0.136720 -0.460914 +v 0.004510 0.136720 -0.468751 +v -0.004510 0.152344 -0.468751 +v -0.009021 0.144532 -0.468751 +v -0.004510 0.136720 -0.468751 +v -0.008307 0.249999 0.031003 +v -0.008307 0.281249 0.031003 +v -0.022696 0.249999 0.022696 +v -0.022696 0.281249 0.022696 +v -0.031003 0.249999 0.008307 +v -0.031003 0.281249 0.008307 +v -0.031003 0.249999 -0.008307 +v -0.031003 0.281249 -0.008307 +v -0.022696 0.249999 -0.022696 +v -0.022696 0.281249 -0.022696 +v -0.008307 0.249999 -0.031003 +v -0.008307 0.281249 -0.031003 +v 0.008307 0.249999 -0.031003 +v 0.008307 0.281249 -0.031003 +v 0.022696 0.249999 -0.022696 +v 0.022696 0.281249 -0.022696 +v 0.031003 0.249999 -0.008307 +v 0.031003 0.281249 -0.008307 +v 0.031003 0.249999 0.008307 +v 0.031003 0.281249 0.008307 +v 0.022696 0.249999 0.022696 +v 0.022696 0.281249 0.022696 +v 0.008307 0.249999 0.031003 +v 0.008307 0.281249 0.031003 +v -0.047001 0.281250 -0.004629 +v -0.062499 0.296747 -0.006156 +v -0.051790 0.282008 -0.005101 +v -0.056111 0.284210 -0.005526 +v -0.059539 0.287638 -0.005864 +v -0.061740 0.291958 -0.006081 +v -0.047001 0.343750 -0.004629 +v -0.062499 0.328252 -0.006156 +v -0.051790 0.342991 -0.005101 +v -0.056111 0.340790 -0.005526 +v -0.059539 0.337362 -0.005864 +v -0.061740 0.333041 -0.006081 +v -0.045195 0.281250 -0.013710 +v -0.060097 0.296747 -0.018230 +v -0.049800 0.282008 -0.015107 +v -0.053954 0.284210 -0.016367 +v -0.057251 0.287638 -0.017367 +v -0.059368 0.291958 -0.018009 +v -0.045195 0.343750 -0.013710 +v -0.060097 0.328252 -0.018230 +v -0.049800 0.342991 -0.015107 +v -0.053954 0.340790 -0.016367 +v -0.057251 0.337362 -0.017367 +v -0.059368 0.333041 -0.018009 +v -0.041652 0.281250 -0.022264 +v -0.055386 0.296747 -0.029604 +v -0.045896 0.282008 -0.024532 +v -0.049725 0.284210 -0.026578 +v -0.052763 0.287638 -0.028202 +v -0.054714 0.291958 -0.029245 +v -0.041652 0.343750 -0.022264 +v -0.055386 0.328252 -0.029604 +v -0.045896 0.342991 -0.024532 +v -0.049725 0.340790 -0.026578 +v -0.052763 0.337362 -0.028202 +v -0.054714 0.333041 -0.029245 +v -0.036508 0.281250 -0.029962 +v -0.048546 0.296747 -0.039841 +v -0.040228 0.282008 -0.033014 +v -0.043584 0.284210 -0.035768 +v -0.046247 0.287638 -0.037954 +v -0.047957 0.291958 -0.039357 +v -0.036508 0.343750 -0.029962 +v -0.048546 0.328252 -0.039841 +v -0.040228 0.342991 -0.033014 +v -0.043584 0.340790 -0.035768 +v -0.046247 0.337362 -0.037954 +v -0.047957 0.333041 -0.039357 +v -0.029962 0.281250 -0.036508 +v -0.039841 0.296747 -0.048546 +v -0.033014 0.282008 -0.040228 +v -0.035768 0.284210 -0.043584 +v -0.037954 0.287638 -0.046247 +v -0.039357 0.291958 -0.047957 +v -0.029962 0.343750 -0.036508 +v -0.039841 0.328252 -0.048546 +v -0.033014 0.342991 -0.040228 +v -0.035768 0.340790 -0.043584 +v -0.037954 0.337362 -0.046247 +v -0.039357 0.333041 -0.047957 +v -0.022263 0.281250 -0.041652 +v -0.029604 0.296747 -0.055386 +v -0.024532 0.282008 -0.045896 +v -0.026578 0.284210 -0.049725 +v -0.028202 0.287638 -0.052763 +v -0.029245 0.291958 -0.054714 +v -0.022263 0.343750 -0.041652 +v -0.029604 0.328252 -0.055386 +v -0.024532 0.342991 -0.045896 +v -0.026578 0.340790 -0.049725 +v -0.028202 0.337362 -0.052763 +v -0.029245 0.333041 -0.054714 +v -0.013710 0.281250 -0.045195 +v -0.018230 0.296747 -0.060097 +v -0.015107 0.282008 -0.049800 +v -0.016367 0.284210 -0.053954 +v -0.017367 0.287638 -0.057251 +v -0.018009 0.291958 -0.059368 +v -0.013710 0.343750 -0.045195 +v -0.018230 0.328252 -0.060097 +v -0.015107 0.342991 -0.049800 +v -0.016367 0.340790 -0.053954 +v -0.017367 0.337362 -0.057251 +v -0.018009 0.333041 -0.059368 +v -0.004629 0.281250 -0.047001 +v -0.006156 0.296747 -0.062499 +v -0.005101 0.282008 -0.051790 +v -0.005526 0.284210 -0.056111 +v -0.005864 0.287638 -0.059539 +v -0.006081 0.291958 -0.061740 +v -0.004629 0.343750 -0.047001 +v -0.006156 0.328252 -0.062499 +v -0.005101 0.342991 -0.051790 +v -0.005526 0.340790 -0.056111 +v -0.005864 0.337362 -0.059539 +v -0.006081 0.333041 -0.061740 +v 0.004629 0.281250 -0.047001 +v 0.006156 0.296747 -0.062499 +v 0.005101 0.282008 -0.051790 +v 0.005526 0.284210 -0.056111 +v 0.005864 0.287638 -0.059539 +v 0.006081 0.291958 -0.061740 +v 0.004629 0.343750 -0.047001 +v 0.006156 0.328252 -0.062499 +v 0.005101 0.342991 -0.051790 +v 0.005526 0.340790 -0.056111 +v 0.005864 0.337362 -0.059539 +v 0.006081 0.333041 -0.061740 +v 0.013710 0.281250 -0.045195 +v 0.018230 0.296747 -0.060097 +v 0.015107 0.282008 -0.049800 +v 0.016367 0.284210 -0.053954 +v 0.017367 0.287638 -0.057251 +v 0.018009 0.291958 -0.059368 +v 0.013710 0.343750 -0.045195 +v 0.018230 0.328252 -0.060097 +v 0.015107 0.342991 -0.049800 +v 0.016367 0.340790 -0.053954 +v 0.017367 0.337362 -0.057251 +v 0.018009 0.333041 -0.059368 +v 0.022263 0.281250 -0.041652 +v 0.029604 0.296747 -0.055386 +v 0.024532 0.282008 -0.045896 +v 0.026578 0.284210 -0.049725 +v 0.028202 0.287638 -0.052763 +v 0.029245 0.291958 -0.054714 +v 0.022263 0.343750 -0.041652 +v 0.029604 0.328252 -0.055386 +v 0.024532 0.342991 -0.045896 +v 0.026578 0.340790 -0.049725 +v 0.028202 0.337362 -0.052763 +v 0.029245 0.333041 -0.054714 +v 0.029962 0.281250 -0.036508 +v 0.039841 0.296747 -0.048546 +v 0.033014 0.282008 -0.040228 +v 0.035768 0.284210 -0.043584 +v 0.037954 0.287638 -0.046247 +v 0.039357 0.291958 -0.047957 +v 0.029962 0.343750 -0.036508 +v 0.039841 0.328252 -0.048546 +v 0.033014 0.342991 -0.040228 +v 0.035768 0.340790 -0.043584 +v 0.037954 0.337362 -0.046247 +v 0.039357 0.333041 -0.047957 +v 0.036508 0.281250 -0.029962 +v 0.048546 0.296747 -0.039841 +v 0.040228 0.282008 -0.033014 +v 0.043584 0.284210 -0.035768 +v 0.046247 0.287638 -0.037954 +v 0.047957 0.291958 -0.039357 +v 0.036508 0.343750 -0.029962 +v 0.048546 0.328252 -0.039841 +v 0.040228 0.342991 -0.033014 +v 0.043584 0.340790 -0.035768 +v 0.046247 0.337362 -0.037954 +v 0.047957 0.333041 -0.039357 +v 0.041652 0.281250 -0.022264 +v 0.055386 0.296747 -0.029604 +v 0.045896 0.282008 -0.024532 +v 0.049725 0.284210 -0.026578 +v 0.052763 0.287638 -0.028202 +v 0.054714 0.291958 -0.029245 +v 0.041652 0.343750 -0.022264 +v 0.055386 0.328252 -0.029604 +v 0.045896 0.342991 -0.024532 +v 0.049725 0.340790 -0.026578 +v 0.052763 0.337362 -0.028202 +v 0.054714 0.333041 -0.029245 +v 0.045195 0.281250 -0.013710 +v 0.060097 0.296747 -0.018230 +v 0.049800 0.282008 -0.015107 +v 0.053954 0.284210 -0.016367 +v 0.057251 0.287638 -0.017367 +v 0.059368 0.291958 -0.018009 +v 0.045195 0.343750 -0.013710 +v 0.060097 0.328252 -0.018230 +v 0.049800 0.342991 -0.015107 +v 0.053954 0.340790 -0.016367 +v 0.057251 0.337362 -0.017367 +v 0.059368 0.333041 -0.018009 +v 0.047001 0.281250 -0.004629 +v 0.062499 0.296747 -0.006156 +v 0.051790 0.282008 -0.005101 +v 0.056111 0.284210 -0.005526 +v 0.059539 0.287638 -0.005864 +v 0.061740 0.291958 -0.006081 +v 0.047001 0.343750 -0.004629 +v 0.062499 0.328252 -0.006156 +v 0.051790 0.342991 -0.005101 +v 0.056111 0.340790 -0.005526 +v 0.059539 0.337362 -0.005864 +v 0.061740 0.333041 -0.006081 +v 0.047001 0.281250 0.004629 +v 0.062499 0.296747 0.006156 +v 0.051790 0.282008 0.005101 +v 0.056111 0.284210 0.005526 +v 0.059539 0.287638 0.005864 +v 0.061740 0.291958 0.006081 +v 0.047001 0.343750 0.004629 +v 0.062499 0.328252 0.006156 +v 0.051790 0.342991 0.005101 +v 0.056111 0.340790 0.005526 +v 0.059539 0.337362 0.005864 +v 0.061740 0.333041 0.006081 +v 0.045040 0.281250 0.014490 +v 0.060097 0.296747 0.018230 +v 0.049693 0.282008 0.015646 +v 0.053890 0.284210 0.016688 +v 0.057221 0.287638 0.017516 +v 0.059360 0.291958 0.018047 +v 0.045040 0.343750 0.014490 +v 0.060097 0.328252 0.018230 +v 0.049693 0.342991 0.015646 +v 0.053890 0.340790 0.016688 +v 0.057221 0.337362 0.017516 +v 0.059360 0.333041 0.018047 +v -0.045040 0.281250 0.014490 +v -0.060097 0.296747 0.018230 +v -0.049693 0.282008 0.015646 +v -0.053890 0.284210 0.016688 +v -0.057221 0.287638 0.017516 +v -0.059360 0.291958 0.018047 +v -0.045040 0.343750 0.014490 +v -0.060097 0.328252 0.018230 +v -0.049693 0.342991 0.015646 +v -0.053890 0.340790 0.016688 +v -0.057221 0.337362 0.017516 +v -0.059360 0.333041 0.018047 +v -0.047001 0.281250 0.004629 +v -0.062499 0.296747 0.006155 +v -0.051790 0.282008 0.005101 +v -0.056111 0.284210 0.005526 +v -0.059539 0.287638 0.005864 +v -0.061740 0.291958 0.006081 +v -0.047001 0.343750 0.004629 +v -0.062499 0.328252 0.006155 +v -0.051790 0.342991 0.005101 +v -0.056111 0.340790 0.005526 +v -0.059539 0.337362 0.005864 +v -0.061740 0.333041 0.006081 +v 0.040589 0.281250 0.323211 +v 0.056053 0.296747 0.324445 +v 0.045368 0.282008 0.323592 +v 0.049679 0.284210 0.323937 +v 0.053100 0.287638 0.324210 +v 0.055296 0.291958 0.324385 +v 0.003958 0.281250 0.359503 +v 0.004827 0.296747 0.375000 +v 0.004226 0.282008 0.364292 +v 0.004468 0.284210 0.368612 +v 0.004661 0.287638 0.372040 +v 0.004784 0.291958 0.374242 +v 0.039478 0.281250 0.332037 +v 0.054637 0.296747 0.335695 +v 0.044162 0.282008 0.333167 +v 0.048388 0.284210 0.334187 +v 0.051742 0.287638 0.334996 +v 0.053895 0.291958 0.335516 +v 0.036780 0.281250 0.339466 +v 0.050757 0.296747 0.346380 +v 0.041099 0.282008 0.341602 +v 0.044995 0.284210 0.343530 +v 0.048087 0.287638 0.345060 +v 0.050073 0.291958 0.346042 +v 0.032494 0.281250 0.346146 +v 0.044607 0.296747 0.355966 +v 0.036237 0.282008 0.349180 +v 0.039614 0.284210 0.351918 +v 0.042293 0.287638 0.354090 +v 0.044014 0.291958 0.355485 +v 0.026837 0.281250 0.351729 +v 0.036495 0.296747 0.363971 +v 0.029821 0.282008 0.355512 +v 0.032514 0.284210 0.358924 +v 0.034651 0.287638 0.361633 +v 0.036023 0.291958 0.363371 +v 0.020100 0.281250 0.355927 +v 0.026830 0.296747 0.369993 +v 0.022180 0.282008 0.360274 +v 0.024056 0.284210 0.364195 +v 0.025544 0.287638 0.367307 +v 0.026500 0.291958 0.369305 +v 0.012636 0.281250 0.358526 +v 0.016094 0.296747 0.373732 +v 0.013705 0.282008 0.363225 +v 0.014669 0.284210 0.367464 +v 0.015434 0.287638 0.370828 +v 0.015925 0.291958 0.372988 +v 0.003958 0.343750 0.359503 +v 0.004827 0.328252 0.375000 +v 0.004226 0.342991 0.364292 +v 0.004468 0.340790 0.368612 +v 0.004661 0.337362 0.372040 +v 0.004784 0.333041 0.374242 +v 0.040589 0.343750 0.323211 +v 0.056053 0.328252 0.324445 +v 0.045368 0.342991 0.323592 +v 0.049679 0.340790 0.323937 +v 0.053100 0.337362 0.324210 +v 0.055296 0.333041 0.324385 +v 0.012636 0.343750 0.358526 +v 0.016094 0.328252 0.373732 +v 0.013705 0.342991 0.363225 +v 0.014669 0.340790 0.367464 +v 0.015434 0.337362 0.370828 +v 0.015925 0.333041 0.372988 +v 0.020100 0.343750 0.355927 +v 0.026830 0.328252 0.369993 +v 0.022180 0.342991 0.360274 +v 0.024056 0.340790 0.364195 +v 0.025544 0.337362 0.367307 +v 0.026500 0.333041 0.369305 +v 0.026837 0.343750 0.351729 +v 0.036495 0.328252 0.363971 +v 0.029821 0.342991 0.355512 +v 0.032514 0.340790 0.358924 +v 0.034651 0.337362 0.361633 +v 0.036023 0.333041 0.363371 +v 0.032494 0.343750 0.346146 +v 0.044607 0.328252 0.355966 +v 0.036237 0.342991 0.349180 +v 0.039614 0.340790 0.351918 +v 0.042293 0.337362 0.354090 +v 0.044014 0.333041 0.355485 +v 0.036780 0.343750 0.339466 +v 0.050757 0.328252 0.346380 +v 0.041099 0.342991 0.341603 +v 0.044995 0.340790 0.343530 +v 0.048087 0.337362 0.345060 +v 0.050073 0.333041 0.346042 +v 0.039478 0.343750 0.332037 +v 0.054637 0.328252 0.335695 +v 0.044162 0.342991 0.333167 +v 0.048388 0.340790 0.334187 +v 0.051742 0.337362 0.334996 +v 0.053895 0.333041 0.335516 +v -0.003958 0.281250 0.359503 +v -0.004827 0.296747 0.375000 +v -0.004226 0.282008 0.364292 +v -0.004468 0.284210 0.368612 +v -0.004661 0.287638 0.372040 +v -0.004784 0.291958 0.374242 +v -0.040589 0.281250 0.323211 +v -0.056053 0.296747 0.324445 +v -0.045368 0.282008 0.323592 +v -0.049679 0.284210 0.323937 +v -0.053100 0.287638 0.324210 +v -0.055296 0.291958 0.324385 +v -0.012636 0.281250 0.358526 +v -0.016094 0.296747 0.373732 +v -0.013705 0.282008 0.363225 +v -0.014669 0.284210 0.367464 +v -0.015433 0.287638 0.370828 +v -0.015925 0.291958 0.372988 +v -0.020100 0.281250 0.355927 +v -0.026830 0.296747 0.369993 +v -0.022180 0.282008 0.360274 +v -0.024056 0.284210 0.364195 +v -0.025544 0.287638 0.367307 +v -0.026500 0.291958 0.369305 +v -0.026837 0.281250 0.351729 +v -0.036495 0.296747 0.363971 +v -0.029821 0.282008 0.355512 +v -0.032514 0.284210 0.358924 +v -0.034651 0.287638 0.361633 +v -0.036023 0.291958 0.363371 +v -0.032494 0.281250 0.346146 +v -0.044607 0.296747 0.355966 +v -0.036237 0.282008 0.349180 +v -0.039614 0.284210 0.351918 +v -0.042293 0.287638 0.354090 +v -0.044014 0.291958 0.355485 +v -0.036780 0.281250 0.339466 +v -0.050757 0.296747 0.346380 +v -0.041099 0.282008 0.341602 +v -0.044995 0.284210 0.343530 +v -0.048087 0.287638 0.345060 +v -0.050073 0.291958 0.346042 +v -0.039478 0.281250 0.332037 +v -0.054637 0.296747 0.335695 +v -0.044162 0.282008 0.333167 +v -0.048388 0.284210 0.334187 +v -0.051742 0.287638 0.334996 +v -0.053895 0.291958 0.335516 +v -0.040589 0.343750 0.323211 +v -0.056053 0.328252 0.324445 +v -0.045368 0.342991 0.323592 +v -0.049679 0.340790 0.323937 +v -0.053100 0.337362 0.324210 +v -0.055296 0.333041 0.324385 +v -0.003958 0.343750 0.359503 +v -0.004827 0.328252 0.375000 +v -0.004226 0.342991 0.364292 +v -0.004468 0.340790 0.368612 +v -0.004661 0.337362 0.372040 +v -0.004784 0.333041 0.374242 +v -0.039478 0.343750 0.332037 +v -0.054637 0.328252 0.335695 +v -0.044162 0.342991 0.333167 +v -0.048388 0.340790 0.334187 +v -0.051742 0.337362 0.334996 +v -0.053895 0.333041 0.335516 +v -0.036780 0.343750 0.339466 +v -0.050757 0.328252 0.346380 +v -0.041099 0.342991 0.341602 +v -0.044995 0.340790 0.343530 +v -0.048087 0.337362 0.345060 +v -0.050073 0.333041 0.346042 +v -0.032494 0.343750 0.346146 +v -0.044607 0.328252 0.355966 +v -0.036237 0.342991 0.349180 +v -0.039614 0.340790 0.351918 +v -0.042293 0.337362 0.354090 +v -0.044014 0.333041 0.355485 +v -0.026837 0.343750 0.351729 +v -0.036495 0.328252 0.363971 +v -0.029821 0.342991 0.355512 +v -0.032514 0.340790 0.358924 +v -0.034651 0.337362 0.361633 +v -0.036023 0.333041 0.363371 +v -0.020100 0.343750 0.355927 +v -0.026830 0.328252 0.369993 +v -0.022180 0.342991 0.360274 +v -0.024056 0.340790 0.364195 +v -0.025544 0.337362 0.367307 +v -0.026500 0.333041 0.369305 +v -0.012636 0.343750 0.358526 +v -0.016094 0.328252 0.373732 +v -0.013705 0.342991 0.363225 +v -0.014669 0.340790 0.367464 +v -0.015433 0.337362 0.370828 +v -0.015925 0.333041 0.372988 +v -0.036895 0.343750 0.219651 +v -0.052305 0.328252 0.218008 +v -0.041657 0.342991 0.219143 +v -0.045952 0.340790 0.218685 +v -0.049362 0.337362 0.218322 +v -0.051551 0.333041 0.218088 +v -0.040972 0.343750 0.311965 +v -0.056460 0.328252 0.312492 +v -0.045758 0.342991 0.312128 +v -0.050076 0.340790 0.312275 +v -0.053502 0.337362 0.312391 +v -0.055702 0.333041 0.312466 +v -0.038102 0.343750 0.230936 +v -0.053548 0.328252 0.229673 +v -0.042875 0.342991 0.230545 +v -0.047181 0.340790 0.230193 +v -0.050598 0.337362 0.229914 +v -0.052792 0.333041 0.229735 +v -0.039181 0.343750 0.244087 +v -0.054649 0.328252 0.243130 +v -0.043961 0.342991 0.243791 +v -0.048272 0.340790 0.243524 +v -0.051694 0.337362 0.243312 +v -0.053891 0.333041 0.243177 +v -0.040068 0.343750 0.258385 +v -0.055550 0.328252 0.257704 +v -0.044852 0.342991 0.258175 +v -0.049168 0.340790 0.257985 +v -0.052593 0.337362 0.257834 +v -0.054793 0.333041 0.257737 +v -0.040716 0.343750 0.273069 +v -0.056208 0.328252 0.272665 +v -0.045503 0.342991 0.272944 +v -0.049822 0.340790 0.272832 +v -0.053250 0.337362 0.272742 +v -0.055450 0.333041 0.272685 +v -0.041092 0.343750 0.287360 +v -0.056590 0.328252 0.287262 +v -0.045881 0.342991 0.287330 +v -0.050201 0.340790 0.287302 +v -0.053630 0.337362 0.287281 +v -0.055831 0.333041 0.287267 +v -0.041180 0.343750 0.300480 +v -0.056675 0.328252 0.300763 +v -0.045968 0.342991 0.300567 +v -0.050288 0.340790 0.300646 +v -0.053716 0.337362 0.300709 +v -0.055917 0.333041 0.300749 +v -0.040966 0.281250 0.312209 +v -0.056460 0.296747 0.312492 +v -0.045754 0.282008 0.312296 +v -0.050073 0.284210 0.312375 +v -0.053501 0.287638 0.312438 +v -0.055702 0.291958 0.312478 +v -0.036922 0.281250 0.219893 +v -0.052305 0.296747 0.218008 +v -0.041676 0.282008 0.219311 +v -0.045964 0.284210 0.218785 +v -0.049367 0.287638 0.218368 +v -0.051552 0.291958 0.218100 +v -0.041178 0.281250 0.300861 +v -0.056675 0.296747 0.300763 +v -0.045967 0.282008 0.300831 +v -0.050287 0.284210 0.300804 +v -0.053715 0.287638 0.300782 +v -0.055917 0.291958 0.300768 +v -0.041097 0.281250 0.287667 +v -0.056590 0.296747 0.287262 +v -0.045885 0.282008 0.287542 +v -0.050204 0.284210 0.287429 +v -0.053631 0.287638 0.287339 +v -0.055831 0.291958 0.287282 +v -0.040726 0.281250 0.273346 +v -0.056208 0.296747 0.272665 +v -0.045510 0.282008 0.273135 +v -0.049826 0.284210 0.272945 +v -0.053251 0.287638 0.272795 +v -0.055451 0.291958 0.272698 +v -0.040082 0.281250 0.258661 +v -0.055550 0.296747 0.257704 +v -0.044862 0.282008 0.258365 +v -0.049174 0.284210 0.258098 +v -0.052596 0.287638 0.257887 +v -0.054793 0.291958 0.257751 +v -0.039203 0.281250 0.244393 +v -0.054649 0.296747 0.243130 +v -0.043976 0.282008 0.244002 +v -0.048282 0.284210 0.243650 +v -0.051699 0.287638 0.243371 +v -0.053893 0.291958 0.243192 +v -0.038138 0.281250 0.231316 +v -0.053548 0.296747 0.229673 +v -0.042900 0.282008 0.230808 +v -0.047196 0.284210 0.230350 +v -0.050605 0.287638 0.229987 +v -0.052794 0.291958 0.229753 +v 0.040966 0.343750 0.312209 +v 0.056461 0.328252 0.312492 +v 0.045754 0.342991 0.312296 +v 0.050073 0.340790 0.312375 +v 0.053501 0.337362 0.312438 +v 0.055702 0.333041 0.312478 +v 0.036922 0.343750 0.219894 +v 0.052305 0.328252 0.218008 +v 0.041676 0.342991 0.219311 +v 0.045964 0.340790 0.218785 +v 0.049367 0.337362 0.218368 +v 0.051552 0.333041 0.218100 +v 0.041178 0.343750 0.300861 +v 0.056675 0.328252 0.300763 +v 0.045967 0.342991 0.300831 +v 0.050287 0.340790 0.300804 +v 0.053715 0.337362 0.300782 +v 0.055917 0.333041 0.300768 +v 0.041097 0.343750 0.287667 +v 0.056590 0.328252 0.287262 +v 0.045885 0.342991 0.287542 +v 0.050204 0.340790 0.287429 +v 0.053631 0.337362 0.287339 +v 0.055831 0.333041 0.287282 +v 0.040726 0.343750 0.273346 +v 0.056208 0.328252 0.272665 +v 0.045510 0.342991 0.273135 +v 0.049826 0.340790 0.272945 +v 0.053251 0.337362 0.272795 +v 0.055451 0.333041 0.272698 +v 0.040082 0.343750 0.258661 +v 0.055550 0.328252 0.257704 +v 0.044862 0.342991 0.258365 +v 0.049174 0.340790 0.258098 +v 0.052596 0.337362 0.257887 +v 0.054793 0.333041 0.257751 +v 0.039203 0.343750 0.244393 +v 0.054649 0.328252 0.243130 +v 0.043976 0.342991 0.244002 +v 0.048282 0.340790 0.243650 +v 0.051699 0.337362 0.243371 +v 0.053893 0.333041 0.243192 +v 0.038138 0.343750 0.231316 +v 0.053548 0.328252 0.229673 +v 0.042900 0.342991 0.230808 +v 0.047196 0.340790 0.230350 +v 0.050605 0.337362 0.229987 +v 0.052794 0.333041 0.229753 +v 0.036895 0.281250 0.219651 +v 0.052305 0.296747 0.218008 +v 0.041657 0.282008 0.219143 +v 0.045952 0.284210 0.218685 +v 0.049362 0.287638 0.218322 +v 0.051551 0.291958 0.218089 +v 0.040972 0.281250 0.311965 +v 0.056461 0.296747 0.312492 +v 0.045758 0.282008 0.312128 +v 0.050076 0.284210 0.312275 +v 0.053502 0.287638 0.312391 +v 0.055702 0.291958 0.312466 +v 0.038102 0.281250 0.230936 +v 0.053548 0.296747 0.229673 +v 0.042875 0.282008 0.230546 +v 0.047181 0.284210 0.230193 +v 0.050598 0.287638 0.229914 +v 0.052792 0.291958 0.229735 +v 0.039181 0.281250 0.244087 +v 0.054649 0.296747 0.243130 +v 0.043961 0.282008 0.243791 +v 0.048272 0.284210 0.243524 +v 0.051694 0.287638 0.243313 +v 0.053891 0.291958 0.243177 +v 0.040068 0.281250 0.258385 +v 0.055550 0.296747 0.257704 +v 0.044852 0.282008 0.258175 +v 0.049168 0.284210 0.257985 +v 0.052593 0.287638 0.257834 +v 0.054793 0.291958 0.257737 +v 0.040716 0.281250 0.273070 +v 0.056208 0.296747 0.272665 +v 0.045504 0.282008 0.272944 +v 0.049822 0.284210 0.272832 +v 0.053250 0.287638 0.272742 +v 0.055450 0.291958 0.272685 +v 0.041093 0.281250 0.287360 +v 0.056590 0.296747 0.287262 +v 0.045881 0.282008 0.287330 +v 0.050201 0.284210 0.287302 +v 0.053630 0.287638 0.287281 +v 0.055831 0.291958 0.287267 +v 0.041180 0.281250 0.300480 +v 0.056675 0.296747 0.300763 +v 0.045968 0.282008 0.300567 +v 0.050288 0.284210 0.300646 +v 0.053716 0.287638 0.300709 +v 0.055917 0.291958 0.300750 +v -0.025464 0.281250 0.126339 +v -0.040899 0.296747 0.124954 +v -0.030234 0.282008 0.125911 +v -0.034537 0.284210 0.125525 +v -0.037951 0.287638 0.125218 +v -0.040144 0.291958 0.125021 +v -0.031063 0.281250 0.061222 +v -0.045911 0.296747 0.065663 +v -0.035651 0.282008 0.062594 +v -0.039790 0.284210 0.063832 +v -0.043075 0.287638 0.064815 +v -0.045184 0.291958 0.065446 +v -0.024917 0.281250 0.120244 +v -0.040389 0.296747 0.119272 +v -0.029698 0.282008 0.119944 +v -0.034011 0.284210 0.119673 +v -0.037434 0.287638 0.119458 +v -0.039632 0.291958 0.119320 +v -0.024660 0.281250 0.113093 +v -0.040160 0.296747 0.112879 +v -0.029450 0.282008 0.113027 +v -0.033771 0.284210 0.112967 +v -0.037200 0.287638 0.112920 +v -0.039401 0.291958 0.112889 +v -0.024723 0.281250 0.105535 +v -0.040217 0.296747 0.105967 +v -0.029511 0.282008 0.105669 +v -0.033830 0.284210 0.105789 +v -0.037258 0.287638 0.105885 +v -0.039459 0.291958 0.105946 +v -0.025094 0.281250 0.097727 +v -0.040560 0.296747 0.098748 +v -0.029873 0.282008 0.098043 +v -0.034184 0.284210 0.098327 +v -0.037606 0.287638 0.098553 +v -0.039803 0.291958 0.098698 +v -0.025759 0.281250 0.089850 +v -0.041178 0.296747 0.091440 +v -0.030524 0.282008 0.090341 +v -0.034822 0.284210 0.090784 +v -0.038233 0.287638 0.091136 +v -0.040423 0.291958 0.091362 +v -0.026705 0.281250 0.082090 +v -0.042052 0.296747 0.084265 +v -0.031447 0.282008 0.082763 +v -0.035725 0.284210 0.083369 +v -0.039121 0.287638 0.083850 +v -0.041300 0.291958 0.084159 +v -0.027911 0.281250 0.074630 +v -0.043155 0.296747 0.077442 +v -0.032622 0.282008 0.075499 +v -0.036871 0.284210 0.076283 +v -0.040244 0.287638 0.076905 +v -0.042409 0.291958 0.077305 +v -0.029365 0.281250 0.067623 +v -0.044455 0.296747 0.071178 +v -0.034028 0.282008 0.068722 +v -0.038234 0.284210 0.069713 +v -0.041573 0.287638 0.070499 +v -0.043716 0.291958 0.071004 +v 0.025464 0.343750 0.126339 +v 0.040899 0.328252 0.124954 +v 0.030234 0.342991 0.125911 +v 0.034537 0.340790 0.125525 +v 0.037951 0.337362 0.125218 +v 0.040144 0.333041 0.125022 +v 0.031063 0.343750 0.061222 +v 0.045911 0.328252 0.065663 +v 0.035651 0.342991 0.062595 +v 0.039791 0.340790 0.063832 +v 0.043075 0.337362 0.064815 +v 0.045184 0.333041 0.065446 +v 0.024917 0.343750 0.120244 +v 0.040389 0.328252 0.119272 +v 0.029698 0.342991 0.119944 +v 0.034011 0.340790 0.119673 +v 0.037434 0.337362 0.119458 +v 0.039632 0.333041 0.119320 +v 0.024660 0.343750 0.113093 +v 0.040160 0.328252 0.112879 +v 0.029450 0.342991 0.113027 +v 0.033771 0.340790 0.112967 +v 0.037200 0.337362 0.112920 +v 0.039401 0.333041 0.112889 +v 0.024723 0.343750 0.105535 +v 0.040217 0.328252 0.105967 +v 0.029511 0.342991 0.105669 +v 0.033830 0.340790 0.105789 +v 0.037258 0.337362 0.105885 +v 0.039459 0.333041 0.105946 +v 0.025094 0.343750 0.097728 +v 0.040560 0.328252 0.098748 +v 0.029873 0.342991 0.098043 +v 0.034184 0.340790 0.098327 +v 0.037606 0.337362 0.098553 +v 0.039803 0.333041 0.098698 +v 0.025759 0.343750 0.089850 +v 0.041178 0.328252 0.091440 +v 0.030524 0.342991 0.090341 +v 0.034822 0.340790 0.090785 +v 0.038233 0.337362 0.091136 +v 0.040423 0.333041 0.091362 +v 0.026705 0.343750 0.082091 +v 0.042052 0.328252 0.084265 +v 0.031447 0.342991 0.082763 +v 0.035725 0.340790 0.083369 +v 0.039121 0.337362 0.083850 +v 0.041300 0.333041 0.084159 +v 0.027911 0.343750 0.074630 +v 0.043155 0.328252 0.077442 +v 0.032622 0.342991 0.075499 +v 0.036871 0.340790 0.076283 +v 0.040244 0.337362 0.076905 +v 0.042409 0.333041 0.077305 +v 0.029365 0.343750 0.067623 +v 0.044455 0.328252 0.071178 +v 0.034028 0.342991 0.068722 +v 0.038234 0.340790 0.069713 +v 0.041573 0.337362 0.070499 +v 0.043716 0.333041 0.071004 +v 0.030927 0.281250 0.061707 +v 0.045911 0.296747 0.065663 +v 0.035557 0.282008 0.062929 +v 0.039734 0.284210 0.064032 +v 0.043049 0.287638 0.064907 +v 0.045178 0.291958 0.065469 +v 0.025517 0.281250 0.126839 +v 0.040899 0.296747 0.124954 +v 0.030270 0.282008 0.126257 +v 0.034558 0.284210 0.125731 +v 0.037962 0.287638 0.125314 +v 0.040146 0.291958 0.125046 +v 0.029365 0.281250 0.067623 +v 0.044455 0.296747 0.071178 +v 0.034028 0.282008 0.068722 +v 0.038234 0.284210 0.069713 +v 0.041573 0.287638 0.070499 +v 0.043716 0.291958 0.071004 +v 0.027911 0.281250 0.074630 +v 0.043155 0.296747 0.077442 +v 0.032622 0.282008 0.075499 +v 0.036871 0.284210 0.076283 +v 0.040244 0.287638 0.076905 +v 0.042409 0.291958 0.077305 +v 0.026705 0.281250 0.082091 +v 0.042052 0.296747 0.084265 +v 0.031447 0.282008 0.082763 +v 0.035725 0.284210 0.083369 +v 0.039121 0.287638 0.083850 +v 0.041300 0.291958 0.084159 +v 0.025759 0.281250 0.089850 +v 0.041178 0.296747 0.091440 +v 0.030524 0.282008 0.090341 +v 0.034822 0.284210 0.090785 +v 0.038233 0.287638 0.091136 +v 0.040423 0.291958 0.091362 +v 0.025094 0.281250 0.097727 +v 0.040560 0.296747 0.098748 +v 0.029873 0.282008 0.098043 +v 0.034184 0.284210 0.098327 +v 0.037606 0.287638 0.098553 +v 0.039803 0.291958 0.098698 +v 0.024723 0.281250 0.105535 +v 0.040217 0.296747 0.105967 +v 0.029511 0.282008 0.105669 +v 0.033830 0.284210 0.105789 +v 0.037258 0.287638 0.105885 +v 0.039459 0.291958 0.105946 +v 0.024660 0.281250 0.113093 +v 0.040160 0.296747 0.112879 +v 0.029450 0.282008 0.113027 +v 0.033771 0.284210 0.112967 +v 0.037200 0.287638 0.112920 +v 0.039401 0.291958 0.112889 +v 0.024917 0.281250 0.120244 +v 0.040389 0.296747 0.119272 +v 0.029698 0.282008 0.119944 +v 0.034011 0.284210 0.119673 +v 0.037434 0.287638 0.119458 +v 0.039632 0.291958 0.119320 +v -0.030927 0.343750 0.061707 +v -0.045911 0.328252 0.065663 +v -0.035557 0.342991 0.062929 +v -0.039734 0.340790 0.064032 +v -0.043049 0.337362 0.064907 +v -0.045178 0.333041 0.065469 +v -0.025517 0.343750 0.126839 +v -0.040899 0.328252 0.124954 +v -0.030270 0.342991 0.126256 +v -0.034558 0.340790 0.125731 +v -0.037961 0.337362 0.125314 +v -0.040146 0.333041 0.125046 +v -0.029365 0.343750 0.067623 +v -0.044455 0.328252 0.071178 +v -0.034028 0.342991 0.068722 +v -0.038234 0.340790 0.069713 +v -0.041573 0.337362 0.070499 +v -0.043716 0.333041 0.071004 +v -0.027911 0.343750 0.074630 +v -0.043155 0.328252 0.077442 +v -0.032622 0.342991 0.075499 +v -0.036871 0.340790 0.076283 +v -0.040244 0.337362 0.076905 +v -0.042409 0.333041 0.077305 +v -0.026705 0.343750 0.082091 +v -0.042052 0.328252 0.084265 +v -0.031447 0.342991 0.082763 +v -0.035725 0.340790 0.083369 +v -0.039121 0.337362 0.083850 +v -0.041300 0.333041 0.084159 +v -0.025759 0.343750 0.089850 +v -0.041178 0.328252 0.091440 +v -0.030524 0.342991 0.090341 +v -0.034822 0.340790 0.090784 +v -0.038233 0.337362 0.091136 +v -0.040423 0.333041 0.091362 +v -0.025094 0.343750 0.097727 +v -0.040560 0.328252 0.098748 +v -0.029873 0.342991 0.098043 +v -0.034184 0.340790 0.098327 +v -0.037606 0.337362 0.098553 +v -0.039803 0.333041 0.098698 +v -0.024723 0.343750 0.105535 +v -0.040217 0.328252 0.105967 +v -0.029511 0.342991 0.105669 +v -0.033830 0.340790 0.105789 +v -0.037258 0.337362 0.105885 +v -0.039459 0.333041 0.105946 +v -0.024660 0.343750 0.113093 +v -0.040160 0.328252 0.112879 +v -0.029450 0.342991 0.113027 +v -0.033771 0.340790 0.112967 +v -0.037200 0.337362 0.112920 +v -0.039401 0.333041 0.112889 +v -0.024917 0.343750 0.120244 +v -0.040389 0.328252 0.119272 +v -0.029698 0.342991 0.119944 +v -0.034011 0.340790 0.119673 +v -0.037434 0.337362 0.119458 +v -0.039632 0.333041 0.119320 +v 0.141506 0.250000 0.168201 +v 0.146099 0.168201 0.250000 +v 0.142694 0.247213 0.189372 +v 0.143802 0.239041 0.209100 +v 0.144754 0.226042 0.226042 +v 0.145484 0.209100 0.239041 +v 0.145943 0.189372 0.247213 +v 0.168201 0.250000 0.141505 +v 0.250000 0.168201 0.146099 +v 0.189372 0.247213 0.142694 +v 0.209100 0.239041 0.143802 +v 0.226042 0.226042 0.144754 +v 0.239041 0.209100 0.145484 +v 0.247213 0.189372 0.145943 +v 0.150902 0.250000 0.167142 +v 0.169219 0.168201 0.247395 +v 0.155643 0.247213 0.187913 +v 0.160061 0.239041 0.207268 +v 0.163854 0.226042 0.223889 +v 0.166765 0.209100 0.236643 +v 0.168595 0.189372 0.244660 +v 0.155464 0.250000 0.165546 +v 0.191180 0.168201 0.239711 +v 0.164708 0.247213 0.184741 +v 0.173322 0.239041 0.202628 +v 0.180719 0.226042 0.217988 +v 0.186395 0.209100 0.229774 +v 0.189963 0.189372 0.237183 +v 0.159557 0.250000 0.162974 +v 0.210880 0.168201 0.227332 +v 0.172840 0.247213 0.179631 +v 0.185218 0.239041 0.195153 +v 0.195848 0.226042 0.208482 +v 0.204004 0.209100 0.218710 +v 0.209132 0.189372 0.225139 +v 0.162974 0.250000 0.159557 +v 0.227332 0.168201 0.210880 +v 0.179631 0.247213 0.172840 +v 0.195153 0.239041 0.185218 +v 0.208482 0.226042 0.195848 +v 0.218710 0.209100 0.204004 +v 0.225139 0.189372 0.209131 +v 0.165546 0.250000 0.155464 +v 0.239711 0.168201 0.191180 +v 0.184741 0.247213 0.164708 +v 0.202628 0.239041 0.173322 +v 0.217988 0.226042 0.180719 +v 0.229774 0.209100 0.186395 +v 0.237183 0.189372 0.189963 +v 0.167142 0.250000 0.150902 +v 0.247395 0.168201 0.169219 +v 0.187913 0.247213 0.155643 +v 0.207268 0.239041 0.160061 +v 0.223889 0.226042 0.163854 +v 0.236643 0.209100 0.166765 +v 0.244660 0.189372 0.168595 +v -0.168201 0.250000 0.141506 +v -0.250000 0.168201 0.146099 +v -0.189372 0.247213 0.142694 +v -0.209100 0.239041 0.143802 +v -0.226042 0.226042 0.144754 +v -0.239041 0.209100 0.145484 +v -0.247213 0.189372 0.145943 +v -0.141506 0.250000 0.168201 +v -0.146099 0.168201 0.250000 +v -0.142694 0.247213 0.189372 +v -0.143802 0.239041 0.209100 +v -0.144754 0.226042 0.226042 +v -0.145484 0.209100 0.239041 +v -0.145943 0.189372 0.247213 +v -0.167142 0.250000 0.150902 +v -0.247395 0.168201 0.169219 +v -0.187913 0.247213 0.155643 +v -0.207269 0.239041 0.160061 +v -0.223889 0.226042 0.163854 +v -0.236643 0.209100 0.166765 +v -0.244660 0.189372 0.168595 +v -0.165546 0.250000 0.155464 +v -0.239711 0.168201 0.191180 +v -0.184741 0.247213 0.164708 +v -0.202628 0.239041 0.173322 +v -0.217988 0.226042 0.180719 +v -0.229774 0.209100 0.186395 +v -0.237183 0.189372 0.189963 +v -0.162974 0.250000 0.159557 +v -0.227332 0.168201 0.210880 +v -0.179631 0.247213 0.172840 +v -0.195153 0.239041 0.185218 +v -0.208482 0.226042 0.195848 +v -0.218710 0.209100 0.204004 +v -0.225139 0.189372 0.209132 +v -0.159557 0.250000 0.162974 +v -0.210880 0.168201 0.227332 +v -0.172840 0.247213 0.179631 +v -0.185218 0.239041 0.195153 +v -0.195848 0.226042 0.208482 +v -0.204004 0.209100 0.218710 +v -0.209132 0.189372 0.225139 +v -0.155464 0.250000 0.165546 +v -0.191180 0.168201 0.239711 +v -0.164708 0.247213 0.184741 +v -0.173322 0.239041 0.202628 +v -0.180719 0.226042 0.217988 +v -0.186395 0.209100 0.229774 +v -0.189963 0.189372 0.237183 +v -0.150902 0.250000 0.167142 +v -0.169219 0.168201 0.247395 +v -0.155643 0.247213 0.187913 +v -0.160061 0.239041 0.207268 +v -0.163854 0.226042 0.223889 +v -0.166765 0.209100 0.236643 +v -0.168595 0.189372 0.244660 +v -0.141505 -0.250000 0.168201 +v -0.146099 -0.168201 0.250000 +v -0.142694 -0.247213 0.189372 +v -0.143802 -0.239041 0.209100 +v -0.144754 -0.226042 0.226042 +v -0.145484 -0.209100 0.239041 +v -0.145943 -0.189372 0.247213 +v -0.168201 -0.250000 0.141506 +v -0.250000 -0.168201 0.146099 +v -0.189372 -0.247213 0.142694 +v -0.209100 -0.239041 0.143802 +v -0.226042 -0.226042 0.144754 +v -0.239041 -0.209100 0.145484 +v -0.247213 -0.189372 0.145943 +v -0.150902 -0.250000 0.167142 +v -0.169219 -0.168201 0.247395 +v -0.155643 -0.247213 0.187913 +v -0.160061 -0.239041 0.207269 +v -0.163854 -0.226042 0.223889 +v -0.166765 -0.209100 0.236643 +v -0.168595 -0.189372 0.244660 +v -0.155464 -0.250000 0.165546 +v -0.191180 -0.168201 0.239711 +v -0.164708 -0.247213 0.184741 +v -0.173322 -0.239041 0.202628 +v -0.180719 -0.226042 0.217988 +v -0.186395 -0.209100 0.229774 +v -0.189963 -0.189372 0.237183 +v -0.159557 -0.250000 0.162974 +v -0.210880 -0.168201 0.227332 +v -0.172840 -0.247213 0.179631 +v -0.185218 -0.239041 0.195153 +v -0.195848 -0.226042 0.208482 +v -0.204004 -0.209100 0.218710 +v -0.209132 -0.189372 0.225139 +v -0.162974 -0.250000 0.159557 +v -0.227332 -0.168201 0.210880 +v -0.179631 -0.247213 0.172840 +v -0.195153 -0.239041 0.185218 +v -0.208482 -0.226042 0.195848 +v -0.218710 -0.209100 0.204004 +v -0.225139 -0.189372 0.209131 +v -0.165546 -0.250000 0.155464 +v -0.239711 -0.168201 0.191180 +v -0.184741 -0.247213 0.164708 +v -0.202628 -0.239041 0.173322 +v -0.217988 -0.226042 0.180719 +v -0.229774 -0.209100 0.186395 +v -0.237184 -0.189372 0.189963 +v -0.167142 -0.250000 0.150902 +v -0.247395 -0.168201 0.169219 +v -0.187913 -0.247213 0.155643 +v -0.207269 -0.239041 0.160061 +v -0.223889 -0.226042 0.163854 +v -0.236643 -0.209100 0.166765 +v -0.244660 -0.189372 0.168595 +v 0.168201 -0.250000 0.141505 +v 0.250000 -0.168201 0.146099 +v 0.189372 -0.247213 0.142694 +v 0.209100 -0.239041 0.143802 +v 0.226042 -0.226042 0.144754 +v 0.239041 -0.209100 0.145484 +v 0.247213 -0.189372 0.145943 +v 0.141506 -0.250000 0.168201 +v 0.146099 -0.168201 0.250000 +v 0.142694 -0.247213 0.189372 +v 0.143802 -0.239041 0.209100 +v 0.144754 -0.226042 0.226042 +v 0.145484 -0.209100 0.239041 +v 0.145943 -0.189372 0.247213 +v 0.167142 -0.250000 0.150902 +v 0.247395 -0.168201 0.169219 +v 0.187913 -0.247213 0.155643 +v 0.207269 -0.239041 0.160061 +v 0.223889 -0.226042 0.163854 +v 0.236643 -0.209100 0.166765 +v 0.244660 -0.189372 0.168595 +v 0.165546 -0.250000 0.155464 +v 0.239711 -0.168201 0.191180 +v 0.184741 -0.247213 0.164708 +v 0.202628 -0.239041 0.173322 +v 0.217988 -0.226042 0.180719 +v 0.229774 -0.209100 0.186395 +v 0.237183 -0.189372 0.189963 +v 0.162974 -0.250000 0.159557 +v 0.227332 -0.168201 0.210880 +v 0.179631 -0.247213 0.172840 +v 0.195153 -0.239041 0.185218 +v 0.208482 -0.226042 0.195848 +v 0.218710 -0.209100 0.204004 +v 0.225139 -0.189372 0.209132 +v 0.159557 -0.250000 0.162974 +v 0.210880 -0.168201 0.227332 +v 0.172840 -0.247213 0.179631 +v 0.185218 -0.239041 0.195153 +v 0.195848 -0.226042 0.208482 +v 0.204004 -0.209100 0.218710 +v 0.209131 -0.189372 0.225139 +v 0.155464 -0.250000 0.165546 +v 0.191180 -0.168201 0.239711 +v 0.164708 -0.247213 0.184741 +v 0.173322 -0.239041 0.202628 +v 0.180719 -0.226042 0.217988 +v 0.186395 -0.209100 0.229774 +v 0.189963 -0.189372 0.237184 +v 0.150902 -0.250000 0.167142 +v 0.169219 -0.168201 0.247395 +v 0.155643 -0.247213 0.187913 +v 0.160061 -0.239041 0.207269 +v 0.163854 -0.226042 0.223889 +v 0.166765 -0.209100 0.236643 +v 0.168595 -0.189372 0.244660 +v -0.141506 0.250000 -0.168201 +v -0.146099 0.168201 -0.250000 +v -0.142694 0.247213 -0.189372 +v -0.143802 0.239041 -0.209100 +v -0.144754 0.226042 -0.226042 +v -0.145484 0.209100 -0.239041 +v -0.145943 0.189372 -0.247213 +v -0.168201 0.250000 -0.141505 +v -0.250000 0.168201 -0.146099 +v -0.189372 0.247213 -0.142694 +v -0.209100 0.239041 -0.143802 +v -0.226042 0.226042 -0.144754 +v -0.239041 0.209100 -0.145484 +v -0.247213 0.189372 -0.145943 +v -0.150902 0.250000 -0.167142 +v -0.169219 0.168201 -0.247395 +v -0.155643 0.247213 -0.187913 +v -0.160061 0.239041 -0.207269 +v -0.163854 0.226042 -0.223889 +v -0.166765 0.209100 -0.236643 +v -0.168595 0.189372 -0.244660 +v -0.155464 0.250000 -0.165546 +v -0.191180 0.168201 -0.239711 +v -0.164708 0.247213 -0.184741 +v -0.173322 0.239041 -0.202628 +v -0.180719 0.226042 -0.217988 +v -0.186395 0.209100 -0.229774 +v -0.189963 0.189372 -0.237183 +v -0.159557 0.250000 -0.162974 +v -0.210880 0.168201 -0.227332 +v -0.172840 0.247213 -0.179631 +v -0.185218 0.239041 -0.195153 +v -0.195848 0.226042 -0.208482 +v -0.204004 0.209100 -0.218710 +v -0.209132 0.189372 -0.225139 +v -0.162974 0.250000 -0.159557 +v -0.227332 0.168201 -0.210880 +v -0.179631 0.247213 -0.172840 +v -0.195153 0.239041 -0.185218 +v -0.208482 0.226042 -0.195848 +v -0.218710 0.209100 -0.204004 +v -0.225139 0.189372 -0.209132 +v -0.165546 0.250000 -0.155464 +v -0.239711 0.168201 -0.191180 +v -0.184741 0.247213 -0.164708 +v -0.202628 0.239041 -0.173322 +v -0.217988 0.226042 -0.180719 +v -0.229774 0.209100 -0.186395 +v -0.237183 0.189372 -0.189963 +v -0.167142 0.250000 -0.150902 +v -0.247395 0.168201 -0.169219 +v -0.187913 0.247213 -0.155643 +v -0.207268 0.239041 -0.160061 +v -0.223889 0.226042 -0.163854 +v -0.236643 0.209100 -0.166765 +v -0.244660 0.189372 -0.168595 +v -0.168201 -0.250000 -0.141505 +v -0.250000 -0.168201 -0.146099 +v -0.189372 -0.247213 -0.142694 +v -0.209100 -0.239041 -0.143802 +v -0.226042 -0.226042 -0.144754 +v -0.239041 -0.209100 -0.145484 +v -0.247213 -0.189372 -0.145943 +v -0.141506 -0.250000 -0.168201 +v -0.146099 -0.168201 -0.250000 +v -0.142694 -0.247213 -0.189372 +v -0.143802 -0.239041 -0.209100 +v -0.144754 -0.226042 -0.226042 +v -0.145484 -0.209100 -0.239041 +v -0.145943 -0.189372 -0.247213 +v -0.167142 -0.250000 -0.150902 +v -0.247395 -0.168201 -0.169219 +v -0.187913 -0.247213 -0.155643 +v -0.207269 -0.239041 -0.160061 +v -0.223889 -0.226042 -0.163854 +v -0.236643 -0.209100 -0.166765 +v -0.244660 -0.189372 -0.168595 +v -0.165546 -0.250000 -0.155464 +v -0.239711 -0.168201 -0.191180 +v -0.184741 -0.247213 -0.164708 +v -0.202628 -0.239041 -0.173322 +v -0.217988 -0.226042 -0.180719 +v -0.229774 -0.209100 -0.186395 +v -0.237183 -0.189372 -0.189963 +v -0.162974 -0.250000 -0.159557 +v -0.227332 -0.168201 -0.210880 +v -0.179631 -0.247213 -0.172840 +v -0.195153 -0.239041 -0.185218 +v -0.208482 -0.226042 -0.195848 +v -0.218710 -0.209100 -0.204004 +v -0.225139 -0.189372 -0.209132 +v -0.159557 -0.250000 -0.162974 +v -0.210880 -0.168201 -0.227332 +v -0.172840 -0.247213 -0.179631 +v -0.185218 -0.239041 -0.195153 +v -0.195848 -0.226042 -0.208482 +v -0.204004 -0.209100 -0.218710 +v -0.209131 -0.189372 -0.225139 +v -0.155464 -0.250000 -0.165546 +v -0.191180 -0.168201 -0.239711 +v -0.164708 -0.247213 -0.184741 +v -0.173322 -0.239041 -0.202628 +v -0.180719 -0.226042 -0.217988 +v -0.186395 -0.209100 -0.229774 +v -0.189963 -0.189372 -0.237183 +v -0.150902 -0.250000 -0.167142 +v -0.169219 -0.168201 -0.247395 +v -0.155643 -0.247213 -0.187913 +v -0.160061 -0.239041 -0.207268 +v -0.163854 -0.226042 -0.223889 +v -0.166765 -0.209100 -0.236643 +v -0.168595 -0.189372 -0.244660 +v 0.168201 0.250000 -0.141506 +v 0.250000 0.168201 -0.146099 +v 0.189372 0.247213 -0.142694 +v 0.209100 0.239041 -0.143802 +v 0.226042 0.226042 -0.144754 +v 0.239041 0.209100 -0.145484 +v 0.247213 0.189372 -0.145943 +v 0.141505 0.250000 -0.168201 +v 0.146099 0.168201 -0.250000 +v 0.142694 0.247213 -0.189372 +v 0.143802 0.239041 -0.209100 +v 0.144754 0.226042 -0.226042 +v 0.145484 0.209100 -0.239041 +v 0.145943 0.189372 -0.247213 +v 0.167142 0.250000 -0.150902 +v 0.247395 0.168201 -0.169219 +v 0.187913 0.247213 -0.155643 +v 0.207269 0.239041 -0.160061 +v 0.223889 0.226042 -0.163854 +v 0.236643 0.209100 -0.166765 +v 0.244660 0.189372 -0.168595 +v 0.165546 0.250000 -0.155464 +v 0.239711 0.168201 -0.191180 +v 0.184741 0.247213 -0.164708 +v 0.202628 0.239041 -0.173322 +v 0.217988 0.226042 -0.180719 +v 0.229774 0.209100 -0.186395 +v 0.237183 0.189372 -0.189963 +v 0.162974 0.250000 -0.159557 +v 0.227332 0.168201 -0.210880 +v 0.179631 0.247213 -0.172840 +v 0.195153 0.239041 -0.185218 +v 0.208482 0.226042 -0.195848 +v 0.218710 0.209100 -0.204004 +v 0.225139 0.189372 -0.209132 +v 0.159557 0.250000 -0.162974 +v 0.210880 0.168201 -0.227332 +v 0.172840 0.247213 -0.179631 +v 0.185218 0.239041 -0.195153 +v 0.195848 0.226042 -0.208482 +v 0.204004 0.209100 -0.218710 +v 0.209132 0.189372 -0.225139 +v 0.155464 0.250000 -0.165546 +v 0.191180 0.168201 -0.239711 +v 0.164708 0.247213 -0.184741 +v 0.173322 0.239041 -0.202628 +v 0.180719 0.226042 -0.217988 +v 0.186395 0.209100 -0.229774 +v 0.189963 0.189372 -0.237183 +v 0.150902 0.250000 -0.167142 +v 0.169219 0.168201 -0.247395 +v 0.155643 0.247213 -0.187913 +v 0.160061 0.239041 -0.207268 +v 0.163854 0.226042 -0.223889 +v 0.166765 0.209100 -0.236643 +v 0.168595 0.189372 -0.244660 +v 0.141506 -0.250000 -0.168201 +v 0.146099 -0.168201 -0.250000 +v 0.142694 -0.247213 -0.189372 +v 0.143802 -0.239041 -0.209100 +v 0.144754 -0.226042 -0.226042 +v 0.145484 -0.209100 -0.239041 +v 0.145943 -0.189372 -0.247213 +v 0.168201 -0.250000 -0.141506 +v 0.250000 -0.168201 -0.146099 +v 0.189372 -0.247213 -0.142694 +v 0.209100 -0.239041 -0.143802 +v 0.226042 -0.226042 -0.144754 +v 0.239041 -0.209100 -0.145484 +v 0.247213 -0.189372 -0.145943 +v 0.150902 -0.250000 -0.167142 +v 0.169219 -0.168201 -0.247395 +v 0.155643 -0.247213 -0.187913 +v 0.160061 -0.239041 -0.207268 +v 0.163854 -0.226042 -0.223889 +v 0.166765 -0.209100 -0.236643 +v 0.168595 -0.189372 -0.244660 +v 0.155464 -0.250000 -0.165546 +v 0.191180 -0.168201 -0.239711 +v 0.164708 -0.247213 -0.184741 +v 0.173322 -0.239041 -0.202628 +v 0.180719 -0.226042 -0.217988 +v 0.186395 -0.209100 -0.229774 +v 0.189963 -0.189372 -0.237183 +v 0.159557 -0.250000 -0.162974 +v 0.210880 -0.168201 -0.227332 +v 0.172840 -0.247213 -0.179631 +v 0.185218 -0.239041 -0.195153 +v 0.195848 -0.226042 -0.208482 +v 0.204004 -0.209100 -0.218710 +v 0.209132 -0.189372 -0.225139 +v 0.162974 -0.250000 -0.159557 +v 0.227332 -0.168201 -0.210880 +v 0.179631 -0.247213 -0.172840 +v 0.195153 -0.239041 -0.185218 +v 0.208482 -0.226042 -0.195848 +v 0.218710 -0.209100 -0.204004 +v 0.225139 -0.189372 -0.209131 +v 0.165546 -0.250000 -0.155464 +v 0.239711 -0.168201 -0.191180 +v 0.184741 -0.247213 -0.164708 +v 0.202628 -0.239041 -0.173322 +v 0.217988 -0.226042 -0.180719 +v 0.229774 -0.209100 -0.186395 +v 0.237184 -0.189372 -0.189963 +v 0.167142 -0.250000 -0.150902 +v 0.247395 -0.168201 -0.169219 +v 0.187913 -0.247213 -0.155643 +v 0.207269 -0.239041 -0.160061 +v 0.223889 -0.226042 -0.163854 +v 0.236643 -0.209100 -0.166765 +v 0.244660 -0.189372 -0.168595 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.7130 0.4637 +vt 0.7238 0.4746 +vt 0.7366 0.4831 +vt 0.7508 0.4890 +vt 0.7659 0.4920 +vt 0.7812 0.4920 +vt 0.7963 0.4890 +vt 0.8105 0.4831 +vt 0.8233 0.4746 +vt 0.8342 0.4637 +vt 0.8427 0.4509 +vt 0.8486 0.4367 +vt 0.8516 0.4217 +vt 0.8516 0.4063 +vt 0.8486 0.3912 +vt 0.8427 0.3770 +vt 0.8342 0.3642 +vt 0.8233 0.3534 +vt 0.8105 0.3448 +vt 0.7963 0.3390 +vt 0.7812 0.3360 +vt 0.7659 0.3360 +vt 0.7508 0.3390 +vt 0.7366 0.3448 +vt 0.7238 0.3534 +vt 0.7130 0.3642 +vt 0.7044 0.3770 +vt 0.6986 0.3912 +vt 0.6956 0.4063 +vt 0.6956 0.4217 +vt 0.6986 0.4367 +vt 0.7044 0.4509 +vt 0.6089 0.3390 +vt 0.6231 0.3448 +vt 0.6358 0.3534 +vt 0.6467 0.3642 +vt 0.6552 0.3770 +vt 0.6611 0.3912 +vt 0.6641 0.4063 +vt 0.6641 0.4217 +vt 0.6611 0.4367 +vt 0.6552 0.4509 +vt 0.6467 0.4637 +vt 0.6358 0.4746 +vt 0.6231 0.4831 +vt 0.6089 0.4890 +vt 0.5938 0.4920 +vt 0.5784 0.4920 +vt 0.5634 0.4890 +vt 0.5492 0.4831 +vt 0.5364 0.4746 +vt 0.5255 0.4637 +vt 0.5170 0.4509 +vt 0.5111 0.4367 +vt 0.5081 0.4217 +vt 0.5081 0.4063 +vt 0.5111 0.3912 +vt 0.5170 0.3770 +vt 0.5255 0.3642 +vt 0.5364 0.3534 +vt 0.5492 0.3448 +vt 0.5634 0.3390 +vt 0.5784 0.3360 +vt 0.5938 0.3360 +vt 0.7812 0.3360 +vt 0.7963 0.3390 +vt 0.8105 0.3448 +vt 0.8233 0.3534 +vt 0.8342 0.3642 +vt 0.8427 0.3770 +vt 0.8486 0.3912 +vt 0.8516 0.4063 +vt 0.8516 0.4217 +vt 0.8486 0.4367 +vt 0.8427 0.4509 +vt 0.8342 0.4637 +vt 0.8233 0.4746 +vt 0.8105 0.4831 +vt 0.7963 0.4890 +vt 0.7812 0.4920 +vt 0.7659 0.4920 +vt 0.7508 0.4890 +vt 0.7366 0.4831 +vt 0.7238 0.4746 +vt 0.7130 0.4637 +vt 0.7044 0.4509 +vt 0.6986 0.4367 +vt 0.6956 0.4217 +vt 0.6956 0.4063 +vt 0.6986 0.3912 +vt 0.7044 0.3770 +vt 0.7130 0.3642 +vt 0.7238 0.3534 +vt 0.7366 0.3448 +vt 0.7508 0.3390 +vt 0.7659 0.3360 +vt 0.5492 0.3448 +vt 0.5364 0.3534 +vt 0.5255 0.3642 +vt 0.5170 0.3770 +vt 0.5111 0.3912 +vt 0.5081 0.4063 +vt 0.5081 0.4217 +vt 0.5111 0.4367 +vt 0.5170 0.4509 +vt 0.5255 0.4637 +vt 0.5364 0.4746 +vt 0.5492 0.4831 +vt 0.5634 0.4890 +vt 0.5784 0.4920 +vt 0.5938 0.4920 +vt 0.6089 0.4890 +vt 0.6231 0.4831 +vt 0.6358 0.4746 +vt 0.6467 0.4637 +vt 0.6552 0.4509 +vt 0.6611 0.4367 +vt 0.6641 0.4217 +vt 0.6641 0.4063 +vt 0.6611 0.3912 +vt 0.6552 0.3770 +vt 0.6467 0.3642 +vt 0.6358 0.3534 +vt 0.6231 0.3448 +vt 0.6089 0.3390 +vt 0.5938 0.3360 +vt 0.5784 0.3360 +vt 0.5634 0.3390 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.8359 0.3594 +vt 0.8426 0.3555 +vt 0.8426 0.3478 +vt 0.8359 0.3439 +vt 0.8292 0.3478 +vt 0.8292 0.3555 +vt 0.4747 0.6940 +vt 0.3065 0.6940 +vt 0.3065 0.6824 +vt 0.4747 0.6824 +vt 0.4636 0.9591 +vt 0.4636 0.7909 +vt 0.4752 0.7909 +vt 0.4752 0.9591 +vt 0.0404 0.6935 +vt 0.0404 0.5253 +vt 0.0520 0.5253 +vt 0.0520 0.6935 +vt 0.0409 0.2592 +vt 0.2091 0.2592 +vt 0.2091 0.2708 +vt 0.0409 0.2708 +vt 0.4747 0.5248 +vt 0.3065 0.5248 +vt 0.3065 0.5138 +vt 0.4747 0.5138 +vt 0.3060 0.9591 +vt 0.3060 0.7909 +vt 0.3176 0.7909 +vt 0.3176 0.9591 +vt 0.2206 0.6935 +vt 0.2206 0.5253 +vt 0.2304 0.5253 +vt 0.2304 0.6935 +vt 0.2500 0.5253 +vt 0.2500 0.6935 +vt 0.2852 0.9591 +vt 0.2852 0.7909 +vt 0.2950 0.7909 +vt 0.2950 0.9591 +vt 0.2096 0.6935 +vt 0.2096 0.5253 +vt 0.4747 0.5364 +vt 0.3065 0.5364 +vt 0.3065 0.5040 +vt 0.4747 0.5040 +vt 0.3065 0.4844 +vt 0.4747 0.4844 +vt 0.0196 0.6935 +vt 0.0196 0.5253 +vt 0.0294 0.5253 +vt 0.0294 0.6935 +vt 0.0409 0.4168 +vt 0.2091 0.4168 +vt 0.2091 0.4284 +vt 0.0409 0.4284 +vt 0.1980 0.6935 +vt 0.1980 0.5253 +vt 0.0409 0.4394 +vt 0.2091 0.4394 +vt 0.2091 0.4492 +vt 0.0409 0.4492 +vt 0.2091 0.4688 +vt 0.0409 0.4688 +vt 0.4747 0.7148 +vt 0.3065 0.7148 +vt 0.3065 0.7050 +vt 0.4747 0.7050 +vt 0.7403 0.9457 +vt 0.7398 0.9504 +vt 0.7390 0.9527 +vt 0.7377 0.9548 +vt 0.7360 0.9565 +vt 0.7340 0.9578 +vt 0.7317 0.9586 +vt 0.7270 0.9591 +vt 0.5855 0.9591 +vt 0.5808 0.9586 +vt 0.5785 0.9578 +vt 0.5765 0.9565 +vt 0.5748 0.9548 +vt 0.5735 0.9527 +vt 0.5727 0.9504 +vt 0.5721 0.9457 +vt 0.5721 0.8042 +vt 0.5727 0.7995 +vt 0.5735 0.7973 +vt 0.5748 0.7952 +vt 0.5765 0.7935 +vt 0.5785 0.7922 +vt 0.5808 0.7914 +vt 0.5855 0.7909 +vt 0.7270 0.7909 +vt 0.7317 0.7914 +vt 0.7340 0.7922 +vt 0.7360 0.7935 +vt 0.7377 0.7952 +vt 0.7390 0.7973 +vt 0.7398 0.7995 +vt 0.7403 0.8042 +vt 0.4862 0.9591 +vt 0.4862 0.7909 +vt 0.4960 0.7909 +vt 0.4960 0.9591 +vt 0.5156 0.7909 +vt 0.5156 0.9591 +vt 0.0409 0.2384 +vt 0.2091 0.2384 +vt 0.2091 0.2482 +vt 0.0409 0.2482 +vt 0.0547 0.2031 +vt 0.0547 0.1875 +vt 0.0703 0.1875 +vt 0.0703 0.2031 +vt 0.0859 0.1875 +vt 0.0859 0.2031 +vt 0.1016 0.2031 +vt 0.1016 0.1875 +vt 0.1172 0.1875 +vt 0.1172 0.2031 +vt 0.1328 0.1875 +vt 0.1328 0.2031 +vt 0.1484 0.2031 +vt 0.1484 0.1875 +vt 0.1641 0.1875 +vt 0.1641 0.2031 +vt 0.1797 0.1875 +vt 0.1797 0.2031 +vt 0.0547 0.2031 +vt 0.0547 0.1875 +vt 0.0703 0.1875 +vt 0.0703 0.2031 +vt 0.0859 0.1875 +vt 0.0859 0.2031 +vt 0.1016 0.2031 +vt 0.1016 0.1875 +vt 0.1172 0.1875 +vt 0.1172 0.2031 +vt 0.1328 0.1875 +vt 0.1328 0.2031 +vt 0.1484 0.2031 +vt 0.1484 0.1875 +vt 0.1641 0.1875 +vt 0.1641 0.2031 +vt 0.1797 0.1875 +vt 0.1797 0.2031 +vt 0.2887 0.2433 +vt 0.2887 0.2594 +vt 0.2829 0.2594 +vt 0.2829 0.2433 +vt 0.2721 0.2433 +vt 0.2721 0.2594 +vt 0.2675 0.2594 +vt 0.2675 0.2433 +vt 0.3127 0.1949 +vt 0.3127 0.2110 +vt 0.3086 0.2110 +vt 0.3086 0.1949 +vt 0.3039 0.2110 +vt 0.3039 0.1949 +vt 0.2986 0.2110 +vt 0.2986 0.1949 +vt 0.2930 0.2110 +vt 0.2930 0.1949 +vt 0.2872 0.2110 +vt 0.2872 0.1949 +vt 0.2816 0.2110 +vt 0.2816 0.1949 +vt 0.2763 0.2110 +vt 0.2763 0.1949 +vt 0.2715 0.2110 +vt 0.2715 0.1949 +vt 0.2675 0.2110 +vt 0.2675 0.1949 +vt 0.4555 0.2905 +vt 0.4555 0.3065 +vt 0.4509 0.3065 +vt 0.4509 0.2905 +vt 0.4457 0.3065 +vt 0.4457 0.2905 +vt 0.4401 0.3065 +vt 0.4401 0.2905 +vt 0.4344 0.3065 +vt 0.4344 0.2905 +vt 0.4287 0.3065 +vt 0.4287 0.2905 +vt 0.4064 0.3065 +vt 0.4064 0.2905 +vt 0.3777 0.2111 +vt 0.3777 0.1951 +vt 0.3830 0.1951 +vt 0.3830 0.2111 +vt 0.4258 0.2594 +vt 0.4258 0.2433 +vt 0.4313 0.2433 +vt 0.4313 0.2594 +vt 0.3732 0.2111 +vt 0.3732 0.1951 +vt 0.3166 0.2433 +vt 0.3166 0.2594 +vt 0.2943 0.2594 +vt 0.2943 0.2433 +vt 0.2902 0.4591 +vt 0.2902 0.4177 +vt 0.2954 0.4175 +vt 0.2759 0.3065 +vt 0.2759 0.2905 +vt 0.2809 0.2905 +vt 0.2809 0.3065 +vt 0.3680 0.2111 +vt 0.3680 0.1951 +vt 0.3880 0.1951 +vt 0.3880 0.2111 +vt 0.3925 0.1951 +vt 0.3925 0.2111 +vt 0.2675 0.3065 +vt 0.2675 0.2905 +vt 0.2714 0.2905 +vt 0.2714 0.3065 +vt 0.2918 0.2905 +vt 0.2918 0.3065 +vt 0.2862 0.3065 +vt 0.2862 0.2905 +vt 0.3630 0.2111 +vt 0.3630 0.1951 +vt 0.3874 0.2594 +vt 0.3874 0.2433 +vt 0.3928 0.2433 +vt 0.3928 0.2594 +vt 0.4421 0.2594 +vt 0.4421 0.2433 +vt 0.4471 0.2433 +vt 0.4471 0.2594 +vt 0.4517 0.2433 +vt 0.4517 0.2594 +vt 0.4555 0.2433 +vt 0.4555 0.2594 +vt 0.3585 0.2111 +vt 0.3585 0.1951 +vt 0.4368 0.2433 +vt 0.4368 0.2594 +vt 0.2972 0.3065 +vt 0.2972 0.2905 +vt 0.3035 0.2905 +vt 0.3035 0.3065 +vt 0.2774 0.2594 +vt 0.2774 0.2433 +vt 0.3302 0.3065 +vt 0.3302 0.2905 +vt 0.3357 0.2905 +vt 0.3357 0.3065 +vt 0.3103 0.2905 +vt 0.3103 0.3065 +vt 0.3172 0.2905 +vt 0.3172 0.3065 +vt 0.3240 0.2905 +vt 0.3240 0.3065 +vt 0.3416 0.2594 +vt 0.3416 0.2433 +vt 0.3443 0.2433 +vt 0.3443 0.2594 +vt 0.3787 0.2905 +vt 0.3787 0.3065 +vt 0.3990 0.2594 +vt 0.3990 0.2433 +vt 0.4058 0.2433 +vt 0.4058 0.2594 +vt 0.4127 0.2433 +vt 0.4127 0.2594 +vt 0.4195 0.2433 +vt 0.4195 0.2594 +vt 0.4038 0.3065 +vt 0.4038 0.2905 +vt 0.3844 0.3065 +vt 0.3844 0.2905 +vt 0.3876 0.2905 +vt 0.3876 0.3065 +vt 0.3909 0.2905 +vt 0.3909 0.3065 +vt 0.3943 0.2905 +vt 0.3943 0.3065 +vt 0.3977 0.2905 +vt 0.3977 0.3065 +vt 0.4009 0.2905 +vt 0.4009 0.3065 +vt 0.3814 0.3065 +vt 0.3814 0.2905 +vt 0.3387 0.2594 +vt 0.3387 0.2433 +vt 0.3192 0.2594 +vt 0.3192 0.2433 +vt 0.3221 0.2433 +vt 0.3221 0.2594 +vt 0.3253 0.2433 +vt 0.3253 0.2594 +vt 0.3287 0.2433 +vt 0.3287 0.2594 +vt 0.3321 0.2433 +vt 0.3321 0.2594 +vt 0.3355 0.2433 +vt 0.3355 0.2594 +vt 0.2775 0.2409 +vt 0.2830 0.2409 +vt 0.2778 0.2387 +vt 0.2831 0.2387 +vt 0.2925 0.3900 +vt 0.2871 0.3888 +vt 0.2876 0.3871 +vt 0.2926 0.3882 +vt 0.2882 0.3850 +vt 0.2928 0.3860 +vt 0.2888 0.3827 +vt 0.2930 0.3836 +vt 0.2830 0.2618 +vt 0.2775 0.2618 +vt 0.2831 0.2640 +vt 0.2778 0.2640 +vt 0.4487 0.4676 +vt 0.4434 0.4688 +vt 0.4432 0.4670 +vt 0.4483 0.4659 +vt 0.4430 0.4648 +vt 0.4477 0.4638 +vt 0.4428 0.4624 +vt 0.4471 0.4615 +vt 0.2723 0.2409 +vt 0.2728 0.2387 +vt 0.2821 0.3865 +vt 0.2828 0.3850 +vt 0.2838 0.3830 +vt 0.2848 0.3809 +vt 0.2723 0.2618 +vt 0.2728 0.2640 +vt 0.4538 0.4653 +vt 0.4530 0.4638 +vt 0.4521 0.4618 +vt 0.4510 0.4596 +vt 0.2677 0.2409 +vt 0.2684 0.2387 +vt 0.2775 0.3832 +vt 0.2785 0.3818 +vt 0.2798 0.3801 +vt 0.2812 0.3782 +vt 0.2677 0.2618 +vt 0.2684 0.2640 +vt 0.4583 0.4620 +vt 0.4573 0.4606 +vt 0.4560 0.4589 +vt 0.4546 0.4570 +vt 0.3084 0.1925 +vt 0.3124 0.1925 +vt 0.3078 0.1903 +vt 0.3116 0.1903 +vt 0.2737 0.3790 +vt 0.2749 0.3779 +vt 0.2765 0.3765 +vt 0.2782 0.3749 +vt 0.3124 0.2134 +vt 0.3084 0.2134 +vt 0.3116 0.2156 +vt 0.3078 0.2156 +vt 0.4622 0.4578 +vt 0.4610 0.4566 +vt 0.4594 0.4552 +vt 0.4577 0.4537 +vt 0.3037 0.1925 +vt 0.3032 0.1903 +vt 0.2706 0.3740 +vt 0.2721 0.3732 +vt 0.2738 0.3721 +vt 0.2758 0.3710 +vt 0.3037 0.2134 +vt 0.3032 0.2156 +vt 0.4652 0.4528 +vt 0.4638 0.4520 +vt 0.4620 0.4509 +vt 0.4601 0.4498 +vt 0.2985 0.1925 +vt 0.2982 0.1903 +vt 0.2686 0.3685 +vt 0.2701 0.3680 +vt 0.2720 0.3673 +vt 0.2741 0.3666 +vt 0.2985 0.2134 +vt 0.2982 0.2156 +vt 0.4673 0.4473 +vt 0.4658 0.4468 +vt 0.4639 0.4461 +vt 0.4617 0.4454 +vt 0.2929 0.1925 +vt 0.2928 0.1903 +vt 0.2675 0.3626 +vt 0.2691 0.3624 +vt 0.2711 0.3622 +vt 0.2733 0.3620 +vt 0.2929 0.2134 +vt 0.2928 0.2156 +vt 0.4684 0.4414 +vt 0.4668 0.4412 +vt 0.4648 0.4410 +vt 0.4626 0.4408 +vt 0.2873 0.1925 +vt 0.2874 0.1903 +vt 0.2875 0.1885 +vt 0.2927 0.1885 +vt 0.2691 0.3568 +vt 0.2711 0.3570 +vt 0.2733 0.3573 +vt 0.2873 0.2134 +vt 0.2874 0.2156 +vt 0.2927 0.2174 +vt 0.2875 0.2174 +vt 0.4668 0.4356 +vt 0.4648 0.4358 +vt 0.4626 0.4361 +vt 0.2817 0.1925 +vt 0.2820 0.1903 +vt 0.2675 0.3566 +vt 0.2686 0.3508 +vt 0.2701 0.3513 +vt 0.2720 0.3519 +vt 0.2741 0.3526 +vt 0.2817 0.2134 +vt 0.2820 0.2156 +vt 0.4673 0.4296 +vt 0.4684 0.4354 +vt 0.4658 0.4301 +vt 0.4639 0.4307 +vt 0.4617 0.4314 +vt 0.2765 0.1925 +vt 0.2770 0.1903 +vt 0.2706 0.3453 +vt 0.2721 0.3461 +vt 0.2738 0.3471 +vt 0.2758 0.3483 +vt 0.2765 0.2134 +vt 0.2770 0.2156 +vt 0.4652 0.4240 +vt 0.4638 0.4249 +vt 0.4620 0.4259 +vt 0.4601 0.4271 +vt 0.2718 0.1925 +vt 0.2724 0.1903 +vt 0.2737 0.3403 +vt 0.2749 0.3414 +vt 0.2765 0.3428 +vt 0.2782 0.3444 +vt 0.2718 0.2134 +vt 0.2724 0.2156 +vt 0.4622 0.4191 +vt 0.4610 0.4202 +vt 0.4594 0.4216 +vt 0.4577 0.4232 +vt 0.2678 0.1925 +vt 0.2686 0.1903 +vt 0.2775 0.3361 +vt 0.2785 0.3374 +vt 0.2798 0.3391 +vt 0.2812 0.3410 +vt 0.2678 0.2134 +vt 0.2686 0.2156 +vt 0.4583 0.4149 +vt 0.4573 0.4162 +vt 0.4560 0.4179 +vt 0.4546 0.4198 +vt 0.4507 0.2880 +vt 0.4553 0.2880 +vt 0.4502 0.2858 +vt 0.4546 0.2858 +vt 0.2821 0.3327 +vt 0.2828 0.3343 +vt 0.2838 0.3362 +vt 0.2848 0.3384 +vt 0.4553 0.3090 +vt 0.4507 0.3090 +vt 0.4546 0.3112 +vt 0.4502 0.3112 +vt 0.4538 0.4115 +vt 0.4530 0.4131 +vt 0.4521 0.4150 +vt 0.4510 0.4172 +vt 0.4456 0.2880 +vt 0.4452 0.2858 +vt 0.2871 0.3305 +vt 0.2876 0.3321 +vt 0.2882 0.3342 +vt 0.2888 0.3366 +vt 0.4456 0.3090 +vt 0.4452 0.3112 +vt 0.4487 0.4092 +vt 0.4483 0.4109 +vt 0.4477 0.4130 +vt 0.4471 0.4154 +vt 0.4400 0.2880 +vt 0.4399 0.2858 +vt 0.2925 0.3293 +vt 0.2926 0.3310 +vt 0.2928 0.3332 +vt 0.2930 0.3357 +vt 0.4400 0.3090 +vt 0.4399 0.3112 +vt 0.4434 0.4081 +vt 0.4432 0.4098 +vt 0.4430 0.4120 +vt 0.4428 0.4145 +vt 0.4344 0.2880 +vt 0.4345 0.2858 +vt 0.2979 0.3293 +vt 0.2978 0.3310 +vt 0.2976 0.3332 +vt 0.2973 0.3357 +vt 0.4344 0.3090 +vt 0.4345 0.3112 +vt 0.4379 0.4081 +vt 0.4381 0.4098 +vt 0.4383 0.4120 +vt 0.4385 0.4145 +vt 0.4288 0.2880 +vt 0.4290 0.2858 +vt 0.3034 0.3305 +vt 0.3030 0.3322 +vt 0.3025 0.3343 +vt 0.3019 0.3367 +vt 0.4288 0.3090 +vt 0.4290 0.3112 +vt 0.4325 0.4093 +vt 0.4329 0.4110 +vt 0.4334 0.4131 +vt 0.4339 0.4155 +vt 0.2886 0.2409 +vt 0.2942 0.2409 +vt 0.2886 0.2387 +vt 0.2940 0.2387 +vt 0.3034 0.3888 +vt 0.2979 0.3900 +vt 0.2978 0.3882 +vt 0.3030 0.3871 +vt 0.2976 0.3860 +vt 0.3025 0.3850 +vt 0.2973 0.3836 +vt 0.3019 0.3826 +vt 0.2942 0.2618 +vt 0.2886 0.2618 +vt 0.2940 0.2640 +vt 0.2886 0.2640 +vt 0.4379 0.4688 +vt 0.4325 0.4676 +vt 0.4329 0.4659 +vt 0.4381 0.4670 +vt 0.4334 0.4637 +vt 0.4383 0.4648 +vt 0.4339 0.4614 +vt 0.4385 0.4624 +vt 0.2738 0.4320 +vt 0.2733 0.4364 +vt 0.2711 0.4363 +vt 0.2716 0.4314 +vt 0.2691 0.4361 +vt 0.2696 0.4309 +vt 0.2675 0.4360 +vt 0.2681 0.4306 +vt 0.3827 0.2158 +vt 0.3777 0.2158 +vt 0.3777 0.2136 +vt 0.3829 0.2136 +vt 0.4625 0.3576 +vt 0.4621 0.3532 +vt 0.4642 0.3526 +vt 0.4647 0.3575 +vt 0.4662 0.3522 +vt 0.4668 0.3574 +vt 0.4678 0.3518 +vt 0.4684 0.3573 +vt 0.3777 0.1904 +vt 0.3827 0.1904 +vt 0.3829 0.1926 +vt 0.3777 0.1926 +vt 0.2750 0.4282 +vt 0.2730 0.4271 +vt 0.2712 0.4262 +vt 0.2697 0.4254 +vt 0.3874 0.2158 +vt 0.3878 0.2136 +vt 0.4608 0.3494 +vt 0.4629 0.3483 +vt 0.4647 0.3474 +vt 0.4662 0.3466 +vt 0.3874 0.1904 +vt 0.3878 0.1926 +vt 0.2770 0.4247 +vt 0.2752 0.4232 +vt 0.2736 0.4219 +vt 0.2723 0.4208 +vt 0.3916 0.2158 +vt 0.3922 0.2136 +vt 0.4589 0.3460 +vt 0.4607 0.3444 +vt 0.4623 0.3431 +vt 0.4635 0.3420 +vt 0.3916 0.1904 +vt 0.3922 0.1926 +vt 0.2796 0.4219 +vt 0.2782 0.4200 +vt 0.2769 0.4182 +vt 0.2758 0.4169 +vt 0.2722 0.3112 +vt 0.2686 0.3112 +vt 0.2678 0.3090 +vt 0.2716 0.3090 +vt 0.4563 0.3431 +vt 0.4577 0.3412 +vt 0.4590 0.3394 +vt 0.4600 0.3381 +vt 0.2686 0.2858 +vt 0.2722 0.2858 +vt 0.2716 0.2880 +vt 0.2678 0.2880 +vt 0.2827 0.4197 +vt 0.2817 0.4175 +vt 0.2808 0.4155 +vt 0.2801 0.4139 +vt 0.2765 0.3112 +vt 0.2761 0.3090 +vt 0.4532 0.3409 +vt 0.4542 0.3387 +vt 0.4551 0.3367 +vt 0.4558 0.3351 +vt 0.2765 0.2858 +vt 0.2761 0.2880 +vt 0.2861 0.4183 +vt 0.2856 0.4159 +vt 0.2851 0.4138 +vt 0.2847 0.4121 +vt 0.2812 0.3112 +vt 0.2810 0.3090 +vt 0.4497 0.3395 +vt 0.4503 0.3371 +vt 0.4507 0.3350 +vt 0.4511 0.3333 +vt 0.2812 0.2858 +vt 0.2810 0.2880 +vt 0.2901 0.4153 +vt 0.2899 0.4131 +vt 0.2898 0.4114 +vt 0.2863 0.3112 +vt 0.2862 0.3090 +vt 0.4456 0.3389 +vt 0.4458 0.3365 +vt 0.4460 0.3343 +vt 0.4461 0.3326 +vt 0.2863 0.2858 +vt 0.2862 0.2880 +vt 0.2861 0.4585 +vt 0.2901 0.4615 +vt 0.2856 0.4609 +vt 0.2899 0.4637 +vt 0.2851 0.4631 +vt 0.2898 0.4655 +vt 0.2847 0.4648 +vt 0.4418 0.2640 +vt 0.4368 0.2640 +vt 0.4368 0.2618 +vt 0.4420 0.2618 +vt 0.4456 0.3803 +vt 0.4497 0.3797 +vt 0.4503 0.3821 +vt 0.4458 0.3827 +vt 0.4507 0.3843 +vt 0.4460 0.3849 +vt 0.4511 0.3860 +vt 0.4461 0.3867 +vt 0.4368 0.2387 +vt 0.4418 0.2387 +vt 0.4420 0.2409 +vt 0.4368 0.2409 +vt 0.2827 0.4572 +vt 0.2817 0.4594 +vt 0.2808 0.4613 +vt 0.2801 0.4629 +vt 0.4465 0.2640 +vt 0.4470 0.2618 +vt 0.4532 0.3784 +vt 0.4542 0.3806 +vt 0.4551 0.3826 +vt 0.4558 0.3841 +vt 0.4465 0.2387 +vt 0.4470 0.2409 +vt 0.2796 0.4550 +vt 0.2782 0.4569 +vt 0.2769 0.4586 +vt 0.2758 0.4600 +vt 0.4508 0.2640 +vt 0.4515 0.2618 +vt 0.4563 0.3762 +vt 0.4577 0.3781 +vt 0.4590 0.3798 +vt 0.4600 0.3812 +vt 0.4508 0.2387 +vt 0.4515 0.2409 +vt 0.2770 0.4521 +vt 0.2752 0.4536 +vt 0.2736 0.4550 +vt 0.2723 0.4561 +vt 0.4545 0.2640 +vt 0.4553 0.2618 +vt 0.4589 0.3733 +vt 0.4607 0.3748 +vt 0.4623 0.3762 +vt 0.4635 0.3773 +vt 0.4545 0.2387 +vt 0.4553 0.2409 +vt 0.2750 0.4487 +vt 0.2730 0.4497 +vt 0.2712 0.4507 +vt 0.2697 0.4514 +vt 0.3636 0.2158 +vt 0.3594 0.2158 +vt 0.3587 0.2136 +vt 0.3631 0.2136 +vt 0.4608 0.3699 +vt 0.4629 0.3709 +vt 0.4647 0.3719 +vt 0.4662 0.3726 +vt 0.3594 0.1904 +vt 0.3636 0.1904 +vt 0.3631 0.1926 +vt 0.3587 0.1926 +vt 0.2738 0.4449 +vt 0.2716 0.4454 +vt 0.2696 0.4459 +vt 0.2681 0.4463 +vt 0.3683 0.2158 +vt 0.3681 0.2136 +vt 0.4621 0.3661 +vt 0.4642 0.3666 +vt 0.4662 0.3671 +vt 0.4678 0.3675 +vt 0.3683 0.1904 +vt 0.3681 0.1926 +vt 0.2733 0.4404 +vt 0.2711 0.4406 +vt 0.2691 0.4407 +vt 0.2675 0.4408 +vt 0.3733 0.2158 +vt 0.3733 0.2136 +vt 0.4625 0.3616 +vt 0.4647 0.3618 +vt 0.4668 0.3619 +vt 0.4684 0.3620 +vt 0.3733 0.1904 +vt 0.3733 0.1926 +vt 0.3006 0.4174 +vt 0.2953 0.4151 +vt 0.3007 0.4150 +vt 0.2953 0.4129 +vt 0.3007 0.4128 +vt 0.2952 0.4112 +vt 0.3007 0.4110 +vt 0.2972 0.3112 +vt 0.2917 0.3112 +vt 0.2918 0.3090 +vt 0.2972 0.3090 +vt 0.4404 0.3387 +vt 0.4350 0.3386 +vt 0.4351 0.3362 +vt 0.4405 0.3363 +vt 0.4351 0.3340 +vt 0.4405 0.3341 +vt 0.4352 0.3323 +vt 0.4406 0.3324 +vt 0.2918 0.2858 +vt 0.2972 0.2858 +vt 0.2972 0.2880 +vt 0.2918 0.2880 +vt 0.3068 0.4175 +vt 0.3068 0.4150 +vt 0.3069 0.4128 +vt 0.3069 0.4111 +vt 0.3034 0.3112 +vt 0.3035 0.3090 +vt 0.4289 0.3387 +vt 0.4289 0.3362 +vt 0.4289 0.3340 +vt 0.4289 0.3323 +vt 0.3034 0.2858 +vt 0.3035 0.2880 +vt 0.3135 0.4177 +vt 0.3135 0.4152 +vt 0.3136 0.4130 +vt 0.3137 0.4113 +vt 0.3102 0.3112 +vt 0.3103 0.3090 +vt 0.4223 0.3389 +vt 0.4222 0.3364 +vt 0.4222 0.3342 +vt 0.4222 0.3325 +vt 0.3102 0.2858 +vt 0.3103 0.2880 +vt 0.3203 0.4180 +vt 0.3204 0.4156 +vt 0.3205 0.4134 +vt 0.3206 0.4116 +vt 0.3171 0.3112 +vt 0.3172 0.3090 +vt 0.4154 0.3392 +vt 0.4154 0.3368 +vt 0.4153 0.3346 +vt 0.4152 0.3328 +vt 0.3171 0.2858 +vt 0.3172 0.2880 +vt 0.3269 0.4184 +vt 0.3271 0.4160 +vt 0.3273 0.4138 +vt 0.3274 0.4121 +vt 0.3238 0.3112 +vt 0.3240 0.3090 +vt 0.4088 0.3397 +vt 0.4087 0.3372 +vt 0.4085 0.3350 +vt 0.4085 0.3333 +vt 0.3239 0.2858 +vt 0.3240 0.2880 +vt 0.3330 0.4190 +vt 0.3332 0.4166 +vt 0.3335 0.4144 +vt 0.3336 0.4126 +vt 0.3301 0.3112 +vt 0.3302 0.3090 +vt 0.4027 0.3402 +vt 0.4025 0.3378 +vt 0.4023 0.3356 +vt 0.4022 0.3338 +vt 0.3301 0.2858 +vt 0.3302 0.2880 +vt 0.3383 0.4196 +vt 0.3386 0.4172 +vt 0.3388 0.4150 +vt 0.3390 0.4133 +vt 0.3354 0.3112 +vt 0.3356 0.3090 +vt 0.3974 0.3408 +vt 0.3972 0.3384 +vt 0.3970 0.3362 +vt 0.3968 0.3345 +vt 0.3355 0.2858 +vt 0.3356 0.2880 +vt 0.3332 0.4578 +vt 0.3384 0.4572 +vt 0.3387 0.4596 +vt 0.3334 0.4603 +vt 0.3389 0.4618 +vt 0.3335 0.4625 +vt 0.3390 0.4636 +vt 0.3336 0.4642 +vt 0.3929 0.2640 +vt 0.3876 0.2640 +vt 0.3874 0.2618 +vt 0.3928 0.2618 +vt 0.3975 0.3784 +vt 0.4028 0.3791 +vt 0.4026 0.3815 +vt 0.3973 0.3809 +vt 0.4024 0.3837 +vt 0.3970 0.3831 +vt 0.4023 0.3854 +vt 0.3968 0.3848 +vt 0.3876 0.2387 +vt 0.3930 0.2387 +vt 0.3928 0.2409 +vt 0.3874 0.2409 +vt 0.3271 0.4584 +vt 0.3272 0.4608 +vt 0.3273 0.4630 +vt 0.3274 0.4648 +vt 0.3992 0.2640 +vt 0.3991 0.2618 +vt 0.4089 0.3796 +vt 0.4088 0.3820 +vt 0.4086 0.3842 +vt 0.4085 0.3860 +vt 0.3992 0.2387 +vt 0.3991 0.2409 +vt 0.3204 0.4588 +vt 0.3205 0.4613 +vt 0.3206 0.4635 +vt 0.3206 0.4652 +vt 0.4059 0.2640 +vt 0.4058 0.2618 +vt 0.4156 0.3801 +vt 0.4154 0.3825 +vt 0.4153 0.3847 +vt 0.4152 0.3864 +vt 0.4059 0.2387 +vt 0.4058 0.2409 +vt 0.3136 0.4592 +vt 0.3136 0.4616 +vt 0.3137 0.4638 +vt 0.3137 0.4656 +vt 0.4128 0.2640 +vt 0.4128 0.2618 +vt 0.4224 0.3804 +vt 0.4223 0.3828 +vt 0.4222 0.3850 +vt 0.4222 0.3868 +vt 0.4128 0.2387 +vt 0.4128 0.2409 +vt 0.3069 0.4594 +vt 0.3069 0.4618 +vt 0.3069 0.4640 +vt 0.3069 0.4657 +vt 0.4196 0.2640 +vt 0.4195 0.2618 +vt 0.4291 0.3806 +vt 0.4290 0.3830 +vt 0.4290 0.3852 +vt 0.4289 0.3870 +vt 0.4196 0.2387 +vt 0.4195 0.2409 +vt 0.3008 0.4594 +vt 0.3008 0.4618 +vt 0.3007 0.4640 +vt 0.3007 0.4658 +vt 0.4258 0.2640 +vt 0.4258 0.2618 +vt 0.4352 0.3806 +vt 0.4352 0.3831 +vt 0.4352 0.3853 +vt 0.4352 0.3870 +vt 0.4259 0.2387 +vt 0.4258 0.2409 +vt 0.2955 0.4593 +vt 0.2954 0.4617 +vt 0.2953 0.4639 +vt 0.2953 0.4657 +vt 0.4313 0.2640 +vt 0.4313 0.2618 +vt 0.4405 0.3805 +vt 0.4405 0.3829 +vt 0.4406 0.3851 +vt 0.4406 0.3869 +vt 0.4313 0.2387 +vt 0.4313 0.2409 +vt 0.3847 0.4257 +vt 0.3819 0.4254 +vt 0.3821 0.4230 +vt 0.3848 0.4233 +vt 0.3822 0.4208 +vt 0.3850 0.4211 +vt 0.3824 0.4191 +vt 0.3851 0.4193 +vt 0.3812 0.3112 +vt 0.3786 0.3112 +vt 0.3787 0.3090 +vt 0.3813 0.3090 +vt 0.3542 0.3466 +vt 0.3512 0.3469 +vt 0.3510 0.3445 +vt 0.3540 0.3442 +vt 0.3509 0.3423 +vt 0.3537 0.3420 +vt 0.3508 0.3406 +vt 0.3535 0.3403 +vt 0.3785 0.2858 +vt 0.3812 0.2858 +vt 0.3813 0.2880 +vt 0.3787 0.2880 +vt 0.3880 0.4259 +vt 0.3881 0.4234 +vt 0.3881 0.4212 +vt 0.3881 0.4195 +vt 0.3843 0.3112 +vt 0.3843 0.3090 +vt 0.3478 0.3471 +vt 0.3478 0.3446 +vt 0.3478 0.3424 +vt 0.3478 0.3407 +vt 0.3843 0.2858 +vt 0.3843 0.2880 +vt 0.3916 0.4258 +vt 0.3915 0.4234 +vt 0.3914 0.4212 +vt 0.3914 0.4194 +vt 0.3876 0.3112 +vt 0.3876 0.3090 +vt 0.3443 0.3470 +vt 0.3444 0.3446 +vt 0.3444 0.3424 +vt 0.3445 0.3406 +vt 0.3876 0.2858 +vt 0.3876 0.2880 +vt 0.3952 0.4256 +vt 0.3950 0.4232 +vt 0.3949 0.4210 +vt 0.3948 0.4193 +vt 0.3910 0.3112 +vt 0.3909 0.3090 +vt 0.3407 0.3468 +vt 0.3408 0.3444 +vt 0.3410 0.3422 +vt 0.3411 0.3405 +vt 0.3910 0.2858 +vt 0.3909 0.2880 +vt 0.3989 0.4253 +vt 0.3986 0.4229 +vt 0.3984 0.4207 +vt 0.3982 0.4189 +vt 0.3944 0.3112 +vt 0.3944 0.3090 +vt 0.3370 0.3465 +vt 0.3372 0.3441 +vt 0.3374 0.3419 +vt 0.3376 0.3401 +vt 0.3944 0.2858 +vt 0.3944 0.2880 +vt 0.4025 0.4248 +vt 0.4022 0.4224 +vt 0.4019 0.4202 +vt 0.4016 0.4185 +vt 0.3978 0.3112 +vt 0.3977 0.3090 +vt 0.3334 0.3460 +vt 0.3337 0.3436 +vt 0.3340 0.3414 +vt 0.3342 0.3397 +vt 0.3978 0.2858 +vt 0.3977 0.2880 +vt 0.4059 0.4242 +vt 0.4055 0.4218 +vt 0.4052 0.4196 +vt 0.4049 0.4179 +vt 0.4011 0.3112 +vt 0.4009 0.3090 +vt 0.3299 0.3454 +vt 0.3303 0.3430 +vt 0.3307 0.3408 +vt 0.3310 0.3391 +vt 0.4011 0.2858 +vt 0.4009 0.2880 +vt 0.4092 0.4235 +vt 0.4087 0.4211 +vt 0.4082 0.4189 +vt 0.4078 0.4172 +vt 0.4041 0.3112 +vt 0.4039 0.3090 +vt 0.3267 0.3447 +vt 0.3272 0.3423 +vt 0.3276 0.3401 +vt 0.3280 0.3384 +vt 0.4041 0.2858 +vt 0.4039 0.2880 +vt 0.4122 0.4226 +vt 0.4115 0.4203 +vt 0.4110 0.4181 +vt 0.4105 0.4165 +vt 0.4068 0.3112 +vt 0.4065 0.3090 +vt 0.3239 0.3439 +vt 0.3245 0.3415 +vt 0.3250 0.3394 +vt 0.3254 0.3377 +vt 0.4067 0.2858 +vt 0.4065 0.2880 +vt 0.4092 0.4534 +vt 0.4120 0.4542 +vt 0.4114 0.4565 +vt 0.4087 0.4558 +vt 0.4109 0.4587 +vt 0.4082 0.4579 +vt 0.4104 0.4604 +vt 0.4078 0.4596 +vt 0.3189 0.2640 +vt 0.3163 0.2640 +vt 0.3165 0.2618 +vt 0.3191 0.2618 +vt 0.3237 0.3755 +vt 0.3267 0.3746 +vt 0.3272 0.3770 +vt 0.3243 0.3778 +vt 0.3276 0.3791 +vt 0.3249 0.3799 +vt 0.3280 0.3808 +vt 0.3254 0.3816 +vt 0.3163 0.2387 +vt 0.3189 0.2387 +vt 0.3191 0.2409 +vt 0.3165 0.2409 +vt 0.4059 0.4526 +vt 0.4055 0.4550 +vt 0.4052 0.4572 +vt 0.4049 0.4589 +vt 0.3219 0.2640 +vt 0.3221 0.2618 +vt 0.3299 0.3739 +vt 0.3303 0.3763 +vt 0.3307 0.3784 +vt 0.3310 0.3801 +vt 0.3219 0.2387 +vt 0.3221 0.2409 +vt 0.4025 0.4520 +vt 0.4022 0.4544 +vt 0.4019 0.4566 +vt 0.4016 0.4584 +vt 0.3252 0.2640 +vt 0.3253 0.2618 +vt 0.3334 0.3732 +vt 0.3337 0.3757 +vt 0.3340 0.3778 +vt 0.3342 0.3796 +vt 0.3252 0.2387 +vt 0.3253 0.2409 +vt 0.3989 0.4515 +vt 0.3986 0.4540 +vt 0.3984 0.4562 +vt 0.3982 0.4579 +vt 0.3286 0.2640 +vt 0.3287 0.2618 +vt 0.3370 0.3728 +vt 0.3372 0.3752 +vt 0.3374 0.3774 +vt 0.3376 0.3791 +vt 0.3286 0.2387 +vt 0.3287 0.2409 +vt 0.3952 0.4512 +vt 0.3950 0.4536 +vt 0.3949 0.4558 +vt 0.3948 0.4576 +vt 0.3320 0.2640 +vt 0.3321 0.2618 +vt 0.3407 0.3724 +vt 0.3408 0.3749 +vt 0.3410 0.3770 +vt 0.3411 0.3788 +vt 0.3320 0.2387 +vt 0.3321 0.2409 +vt 0.3916 0.4510 +vt 0.3915 0.4535 +vt 0.3914 0.4557 +vt 0.3914 0.4574 +vt 0.3355 0.2640 +vt 0.3355 0.2618 +vt 0.3443 0.3722 +vt 0.3444 0.3747 +vt 0.3444 0.3769 +vt 0.3445 0.3786 +vt 0.3355 0.2387 +vt 0.3355 0.2409 +vt 0.3880 0.4510 +vt 0.3881 0.4534 +vt 0.3881 0.4556 +vt 0.3881 0.4574 +vt 0.3387 0.2640 +vt 0.3387 0.2618 +vt 0.3478 0.3722 +vt 0.3478 0.3746 +vt 0.3478 0.3768 +vt 0.3478 0.3786 +vt 0.3387 0.2387 +vt 0.3387 0.2409 +vt 0.3847 0.4511 +vt 0.3848 0.4536 +vt 0.3850 0.4558 +vt 0.3851 0.4575 +vt 0.3418 0.2640 +vt 0.3417 0.2618 +vt 0.3512 0.3723 +vt 0.3510 0.3748 +vt 0.3509 0.3770 +vt 0.3508 0.3787 +vt 0.3418 0.2387 +vt 0.3417 0.2409 +vt 0.3816 0.4514 +vt 0.3819 0.4538 +vt 0.3821 0.4560 +vt 0.3823 0.4578 +vt 0.3445 0.2640 +vt 0.3443 0.2618 +vt 0.3540 0.3726 +vt 0.3538 0.3750 +vt 0.3536 0.3772 +vt 0.3535 0.3790 +vt 0.3444 0.2387 +vt 0.3443 0.2409 +vt 0.0414 0.7996 +vt 0.0409 0.8042 +vt 0.0303 0.8037 +vt 0.0311 0.7972 +vt 0.0205 0.8031 +vt 0.0214 0.7950 +vt 0.0001 0.8013 +vt 0.0012 0.7917 +vt 0.2083 0.7344 +vt 0.1987 0.7344 +vt 0.1984 0.7140 +vt 0.2090 0.7140 +vt 0.1981 0.7041 +vt 0.2095 0.7041 +vt 0.7502 0.7972 +vt 0.7509 0.8036 +vt 0.7599 0.7950 +vt 0.7608 0.8031 +vt 0.7801 0.7917 +vt 0.7812 0.8013 +vt 0.1987 0.4844 +vt 0.2083 0.4844 +vt 0.2090 0.5048 +vt 0.1984 0.5048 +vt 0.2095 0.5147 +vt 0.1981 0.5147 +vt 0.0422 0.7973 +vt 0.0326 0.7927 +vt 0.0237 0.7883 +vt 0.0018 0.7891 +vt 0.0047 0.7807 +vt 0.2193 0.7344 +vt 0.2109 0.7344 +vt 0.2102 0.7140 +vt 0.2200 0.7140 +vt 0.2098 0.7041 +vt 0.2204 0.7041 +vt 0.7486 0.7926 +vt 0.7576 0.7883 +vt 0.7765 0.7807 +vt 0.7795 0.7891 +vt 0.2109 0.4844 +vt 0.2193 0.4844 +vt 0.2200 0.5048 +vt 0.2102 0.5048 +vt 0.2204 0.5147 +vt 0.2098 0.5147 +vt 0.0435 0.7952 +vt 0.0352 0.7886 +vt 0.0274 0.7824 +vt 0.0059 0.7783 +vt 0.0106 0.7707 +vt 0.2293 0.7344 +vt 0.2217 0.7344 +vt 0.2211 0.7140 +vt 0.2299 0.7140 +vt 0.2207 0.7041 +vt 0.2303 0.7041 +vt 0.7461 0.7886 +vt 0.7538 0.7824 +vt 0.7706 0.7707 +vt 0.7754 0.7783 +vt 0.2217 0.4844 +vt 0.2293 0.4844 +vt 0.2299 0.5048 +vt 0.2211 0.5048 +vt 0.2303 0.5147 +vt 0.2207 0.5147 +vt 0.0452 0.7935 +vt 0.0386 0.7852 +vt 0.0324 0.7774 +vt 0.0123 0.7686 +vt 0.0186 0.7623 +vt 0.2477 0.7344 +vt 0.2327 0.7344 +vt 0.2315 0.7140 +vt 0.2490 0.7140 +vt 0.2307 0.7041 +vt 0.2497 0.7041 +vt 0.7427 0.7852 +vt 0.7489 0.7774 +vt 0.7626 0.7623 +vt 0.7690 0.7686 +vt 0.2327 0.4844 +vt 0.2477 0.4844 +vt 0.2490 0.5048 +vt 0.2315 0.5048 +vt 0.2497 0.5147 +vt 0.2307 0.5147 +vt 0.0473 0.7922 +vt 0.0427 0.7826 +vt 0.0384 0.7737 +vt 0.0207 0.7606 +vt 0.0283 0.7559 +vt 0.2939 1.0000 +vt 0.2863 1.0000 +vt 0.2857 0.9796 +vt 0.2945 0.9796 +vt 0.2853 0.9697 +vt 0.2949 0.9697 +vt 0.7386 0.7826 +vt 0.7429 0.7737 +vt 0.7530 0.7558 +vt 0.7605 0.7606 +vt 0.2863 0.7500 +vt 0.2939 0.7500 +vt 0.2945 0.7704 +vt 0.2857 0.7704 +vt 0.2949 0.7803 +vt 0.2853 0.7803 +vt 0.0496 0.7914 +vt 0.0472 0.7811 +vt 0.0450 0.7714 +vt 0.0307 0.7547 +vt 0.0391 0.7518 +vt 0.3047 1.0000 +vt 0.2963 1.0000 +vt 0.2956 0.9796 +vt 0.3054 0.9796 +vt 0.2952 0.9697 +vt 0.3058 0.9697 +vt 0.7341 0.7810 +vt 0.7363 0.7713 +vt 0.7421 0.7517 +vt 0.7506 0.7547 +vt 0.2963 0.7500 +vt 0.3047 0.7500 +vt 0.3054 0.7704 +vt 0.2956 0.7704 +vt 0.3058 0.7803 +vt 0.2952 0.7803 +vt 0.0543 0.7909 +vt 0.0537 0.7803 +vt 0.0531 0.7705 +vt 0.0417 0.7512 +vt 0.0513 0.7501 +vt 0.3169 1.0000 +vt 0.3073 1.0000 +vt 0.3066 0.9796 +vt 0.3172 0.9796 +vt 0.3061 0.9697 +vt 0.3175 0.9697 +vt 0.7276 0.7803 +vt 0.7281 0.7704 +vt 0.7300 0.7501 +vt 0.7395 0.7511 +vt 0.3073 0.7500 +vt 0.3169 0.7500 +vt 0.3172 0.7704 +vt 0.3066 0.7704 +vt 0.3175 0.7803 +vt 0.3061 0.7803 +vt 0.0496 0.9585 +vt 0.0543 0.9591 +vt 0.0537 0.9696 +vt 0.0472 0.9689 +vt 0.0531 0.9795 +vt 0.0450 0.9786 +vt 0.0513 0.9999 +vt 0.0417 0.9988 +vt 0.5156 0.5261 +vt 0.5156 0.5357 +vt 0.4952 0.5360 +vt 0.4952 0.5254 +vt 0.4853 0.5363 +vt 0.4853 0.5249 +vt 0.7341 0.9689 +vt 0.7276 0.9697 +vt 0.7363 0.9786 +vt 0.7281 0.9795 +vt 0.7395 0.9988 +vt 0.7300 0.9999 +vt 0.2656 0.5357 +vt 0.2656 0.5261 +vt 0.2860 0.5254 +vt 0.2860 0.5360 +vt 0.2959 0.5249 +vt 0.2959 0.5363 +vt 0.0473 0.9577 +vt 0.0427 0.9673 +vt 0.0384 0.9763 +vt 0.0391 0.9982 +vt 0.0307 0.9953 +vt 0.5156 0.5151 +vt 0.5156 0.5235 +vt 0.4952 0.5242 +vt 0.4952 0.5144 +vt 0.4853 0.5246 +vt 0.4853 0.5140 +vt 0.7386 0.9674 +vt 0.7429 0.9763 +vt 0.7506 0.9953 +vt 0.7421 0.9982 +vt 0.2656 0.5235 +vt 0.2656 0.5151 +vt 0.2860 0.5144 +vt 0.2860 0.5242 +vt 0.2959 0.5140 +vt 0.2959 0.5246 +vt 0.0452 0.9564 +vt 0.0386 0.9648 +vt 0.0324 0.9725 +vt 0.0283 0.9941 +vt 0.0207 0.9893 +vt 0.5156 0.5051 +vt 0.5156 0.5127 +vt 0.4952 0.5133 +vt 0.4952 0.5045 +vt 0.4853 0.5137 +vt 0.4853 0.5041 +vt 0.7427 0.9648 +vt 0.7489 0.9726 +vt 0.7605 0.9894 +vt 0.7530 0.9941 +vt 0.2656 0.5127 +vt 0.2656 0.5051 +vt 0.2860 0.5045 +vt 0.2860 0.5133 +vt 0.2959 0.5041 +vt 0.2959 0.5137 +vt 0.0435 0.9547 +vt 0.0352 0.9614 +vt 0.0274 0.9676 +vt 0.0186 0.9877 +vt 0.0123 0.9813 +vt 0.5156 0.4867 +vt 0.5156 0.5017 +vt 0.4952 0.5029 +vt 0.4952 0.4854 +vt 0.4853 0.5037 +vt 0.4853 0.4847 +vt 0.7461 0.9614 +vt 0.7538 0.9676 +vt 0.7690 0.9814 +vt 0.7626 0.9877 +vt 0.2656 0.5017 +vt 0.2656 0.4867 +vt 0.2860 0.4854 +vt 0.2860 0.5029 +vt 0.2959 0.4847 +vt 0.2959 0.5037 +vt 0.0422 0.9527 +vt 0.0326 0.9573 +vt 0.0237 0.9616 +vt 0.0106 0.9793 +vt 0.0059 0.9717 +vt 0.0283 0.7344 +vt 0.0207 0.7344 +vt 0.0201 0.7140 +vt 0.0289 0.7140 +vt 0.0197 0.7041 +vt 0.0293 0.7041 +vt 0.7486 0.9573 +vt 0.7576 0.9616 +vt 0.7754 0.9717 +vt 0.7706 0.9793 +vt 0.0207 0.4844 +vt 0.0283 0.4844 +vt 0.0289 0.5048 +vt 0.0201 0.5048 +vt 0.0293 0.5147 +vt 0.0197 0.5147 +vt 0.0414 0.9504 +vt 0.0311 0.9528 +vt 0.0214 0.9550 +vt 0.0047 0.9693 +vt 0.0018 0.9608 +vt 0.0391 0.7344 +vt 0.0307 0.7344 +vt 0.0300 0.7140 +vt 0.0398 0.7140 +vt 0.0296 0.7041 +vt 0.0402 0.7041 +vt 0.7502 0.9528 +vt 0.7599 0.9550 +vt 0.7795 0.9609 +vt 0.7765 0.9693 +vt 0.0307 0.4844 +vt 0.0391 0.4844 +vt 0.0398 0.5048 +vt 0.0300 0.5048 +vt 0.0402 0.5147 +vt 0.0296 0.5147 +vt 0.0409 0.9457 +vt 0.0303 0.9463 +vt 0.0205 0.9469 +vt 0.0012 0.9582 +vt 0.0001 0.9487 +vt 0.0513 0.7344 +vt 0.0417 0.7344 +vt 0.0410 0.7140 +vt 0.0516 0.7140 +vt 0.0405 0.7041 +vt 0.0519 0.7041 +vt 0.7509 0.9463 +vt 0.7608 0.9469 +vt 0.7812 0.9487 +vt 0.7801 0.9583 +vt 0.0417 0.4844 +vt 0.0513 0.4844 +vt 0.0516 0.5048 +vt 0.0410 0.5048 +vt 0.0519 0.5147 +vt 0.0405 0.5147 +vt 0.2085 0.9504 +vt 0.2091 0.9457 +vt 0.2197 0.9463 +vt 0.2189 0.9528 +vt 0.2295 0.9469 +vt 0.2286 0.9550 +vt 0.2499 0.9487 +vt 0.2488 0.9582 +vt 0.0000 0.4271 +vt 0.0000 0.4175 +vt 0.0204 0.4172 +vt 0.0204 0.4278 +vt 0.0303 0.4169 +vt 0.0303 0.4283 +vt 0.5623 0.9528 +vt 0.5616 0.9463 +vt 0.5526 0.9550 +vt 0.5517 0.9469 +vt 0.5324 0.9583 +vt 0.5313 0.9487 +vt 0.2500 0.4175 +vt 0.2500 0.4271 +vt 0.2296 0.4278 +vt 0.2296 0.4172 +vt 0.2197 0.4283 +vt 0.2197 0.4169 +vt 0.2077 0.9527 +vt 0.2173 0.9573 +vt 0.2263 0.9616 +vt 0.2482 0.9608 +vt 0.2453 0.9693 +vt 0.0000 0.4381 +vt 0.0000 0.4297 +vt 0.0204 0.4290 +vt 0.0204 0.4388 +vt 0.0303 0.4286 +vt 0.0303 0.4392 +vt 0.5639 0.9573 +vt 0.5549 0.9616 +vt 0.5359 0.9693 +vt 0.5330 0.9609 +vt 0.2500 0.4297 +vt 0.2500 0.4381 +vt 0.2296 0.4388 +vt 0.2296 0.4290 +vt 0.2197 0.4392 +vt 0.2197 0.4286 +vt 0.2065 0.9547 +vt 0.2148 0.9614 +vt 0.2225 0.9676 +vt 0.2441 0.9717 +vt 0.2393 0.9793 +vt 0.0000 0.4481 +vt 0.0000 0.4405 +vt 0.0204 0.4399 +vt 0.0204 0.4487 +vt 0.0303 0.4395 +vt 0.0303 0.4491 +vt 0.5664 0.9614 +vt 0.5587 0.9676 +vt 0.5419 0.9793 +vt 0.5371 0.9717 +vt 0.2500 0.4405 +vt 0.2500 0.4481 +vt 0.2296 0.4487 +vt 0.2296 0.4399 +vt 0.2197 0.4491 +vt 0.2197 0.4395 +vt 0.2047 0.9564 +vt 0.2114 0.9648 +vt 0.2176 0.9725 +vt 0.2377 0.9813 +vt 0.2314 0.9877 +vt 0.0000 0.4665 +vt 0.0000 0.4515 +vt 0.0204 0.4503 +vt 0.0204 0.4678 +vt 0.0303 0.4495 +vt 0.0303 0.4685 +vt 0.5698 0.9648 +vt 0.5636 0.9726 +vt 0.5498 0.9877 +vt 0.5435 0.9814 +vt 0.2500 0.4515 +vt 0.2500 0.4665 +vt 0.2296 0.4678 +vt 0.2296 0.4503 +vt 0.2197 0.4685 +vt 0.2197 0.4495 +vt 0.2027 0.9577 +vt 0.2073 0.9673 +vt 0.2116 0.9763 +vt 0.2293 0.9893 +vt 0.2217 0.9941 +vt 0.5156 0.7061 +vt 0.5156 0.7137 +vt 0.4952 0.7143 +vt 0.4952 0.7055 +vt 0.4853 0.7147 +vt 0.4853 0.7051 +vt 0.5739 0.9674 +vt 0.5696 0.9763 +vt 0.5595 0.9941 +vt 0.5519 0.9894 +vt 0.2656 0.7137 +vt 0.2656 0.7061 +vt 0.2860 0.7055 +vt 0.2860 0.7143 +vt 0.2959 0.7051 +vt 0.2959 0.7147 +vt 0.2004 0.9585 +vt 0.2028 0.9689 +vt 0.2050 0.9786 +vt 0.2193 0.9953 +vt 0.2109 0.9982 +vt 0.5156 0.6953 +vt 0.5156 0.7037 +vt 0.4952 0.7044 +vt 0.4952 0.6946 +vt 0.4853 0.7048 +vt 0.4853 0.6942 +vt 0.5784 0.9689 +vt 0.5762 0.9786 +vt 0.5704 0.9982 +vt 0.5619 0.9953 +vt 0.2656 0.7037 +vt 0.2656 0.6953 +vt 0.2860 0.6946 +vt 0.2860 0.7044 +vt 0.2959 0.6942 +vt 0.2959 0.7048 +vt 0.1957 0.9591 +vt 0.1963 0.9696 +vt 0.1969 0.9795 +vt 0.2082 0.9988 +vt 0.1987 0.9999 +vt 0.5156 0.6831 +vt 0.5156 0.6927 +vt 0.4952 0.6934 +vt 0.4952 0.6828 +vt 0.4853 0.6939 +vt 0.4853 0.6825 +vt 0.5849 0.9697 +vt 0.5843 0.9795 +vt 0.5825 0.9999 +vt 0.5730 0.9988 +vt 0.2656 0.6927 +vt 0.2656 0.6831 +vt 0.2860 0.6828 +vt 0.2860 0.6934 +vt 0.2959 0.6825 +vt 0.2959 0.6939 +vt 0.2004 0.7914 +vt 0.1957 0.7909 +vt 0.1963 0.7803 +vt 0.2028 0.7811 +vt 0.1969 0.7705 +vt 0.2050 0.7714 +vt 0.1987 0.7501 +vt 0.2082 0.7512 +vt 0.4739 1.0000 +vt 0.4643 1.0000 +vt 0.4640 0.9796 +vt 0.4746 0.9796 +vt 0.4637 0.9697 +vt 0.4751 0.9697 +vt 0.5784 0.7810 +vt 0.5849 0.7803 +vt 0.5762 0.7713 +vt 0.5843 0.7704 +vt 0.5730 0.7511 +vt 0.5825 0.7501 +vt 0.4643 0.7500 +vt 0.4739 0.7500 +vt 0.4746 0.7704 +vt 0.4640 0.7704 +vt 0.4751 0.7803 +vt 0.4637 0.7803 +vt 0.2027 0.7922 +vt 0.2073 0.7826 +vt 0.2116 0.7737 +vt 0.2109 0.7518 +vt 0.2193 0.7547 +vt 0.4849 1.0000 +vt 0.4765 1.0000 +vt 0.4758 0.9796 +vt 0.4856 0.9796 +vt 0.4754 0.9697 +vt 0.4860 0.9697 +vt 0.5739 0.7826 +vt 0.5696 0.7737 +vt 0.5619 0.7547 +vt 0.5704 0.7517 +vt 0.4765 0.7500 +vt 0.4849 0.7500 +vt 0.4856 0.7704 +vt 0.4758 0.7704 +vt 0.4860 0.7803 +vt 0.4754 0.7803 +vt 0.2047 0.7935 +vt 0.2114 0.7852 +vt 0.2176 0.7774 +vt 0.2217 0.7559 +vt 0.2293 0.7606 +vt 0.4949 1.0000 +vt 0.4873 1.0000 +vt 0.4867 0.9796 +vt 0.4955 0.9796 +vt 0.4863 0.9697 +vt 0.4959 0.9697 +vt 0.5698 0.7852 +vt 0.5636 0.7774 +vt 0.5519 0.7606 +vt 0.5595 0.7558 +vt 0.4873 0.7500 +vt 0.4949 0.7500 +vt 0.4955 0.7704 +vt 0.4867 0.7704 +vt 0.4959 0.7803 +vt 0.4863 0.7803 +vt 0.2065 0.7952 +vt 0.2148 0.7886 +vt 0.2225 0.7824 +vt 0.2314 0.7623 +vt 0.2377 0.7686 +vt 0.5133 1.0000 +vt 0.4983 1.0000 +vt 0.4971 0.9796 +vt 0.5146 0.9796 +vt 0.4963 0.9697 +vt 0.5153 0.9697 +vt 0.5664 0.7886 +vt 0.5587 0.7824 +vt 0.5435 0.7686 +vt 0.5498 0.7623 +vt 0.4983 0.7500 +vt 0.5133 0.7500 +vt 0.5146 0.7704 +vt 0.4971 0.7704 +vt 0.5153 0.7803 +vt 0.4963 0.7803 +vt 0.2077 0.7973 +vt 0.2173 0.7927 +vt 0.2263 0.7883 +vt 0.2393 0.7707 +vt 0.2441 0.7783 +vt 0.0000 0.2471 +vt 0.0000 0.2395 +vt 0.0204 0.2389 +vt 0.0204 0.2477 +vt 0.0303 0.2385 +vt 0.0303 0.2481 +vt 0.5639 0.7926 +vt 0.5549 0.7883 +vt 0.5371 0.7783 +vt 0.5419 0.7707 +vt 0.2500 0.2395 +vt 0.2500 0.2471 +vt 0.2296 0.2477 +vt 0.2296 0.2389 +vt 0.2197 0.2481 +vt 0.2197 0.2385 +vt 0.2085 0.7996 +vt 0.2189 0.7972 +vt 0.2286 0.7950 +vt 0.2453 0.7807 +vt 0.2482 0.7891 +vt 0.0000 0.2579 +vt 0.0000 0.2495 +vt 0.0204 0.2488 +vt 0.0204 0.2586 +vt 0.0303 0.2484 +vt 0.0303 0.2590 +vt 0.5623 0.7972 +vt 0.5526 0.7950 +vt 0.5330 0.7891 +vt 0.5359 0.7807 +vt 0.2500 0.2495 +vt 0.2500 0.2579 +vt 0.2296 0.2586 +vt 0.2296 0.2488 +vt 0.2197 0.2590 +vt 0.2197 0.2484 +vt 0.2091 0.8042 +vt 0.2197 0.8037 +vt 0.2295 0.8031 +vt 0.2488 0.7917 +vt 0.2499 0.8013 +vt 0.0000 0.2701 +vt 0.0000 0.2605 +vt 0.0204 0.2598 +vt 0.0204 0.2704 +vt 0.0303 0.2593 +vt 0.0303 0.2707 +vt 0.5616 0.8036 +vt 0.5517 0.8031 +vt 0.5313 0.8013 +vt 0.5324 0.7917 +vt 0.2500 0.2605 +vt 0.2500 0.2701 +vt 0.2296 0.2704 +vt 0.2296 0.2598 +vt 0.2197 0.2707 +vt 0.2197 0.2593 +vt 0.1980 0.7041 +vt 0.0520 0.7041 +vt 0.1977 0.7140 +vt 0.0523 0.7140 +vt 0.1974 0.7344 +vt 0.0526 0.7344 +vt 0.0000 0.9473 +vt 0.0000 0.8026 +vt 0.4636 0.9697 +vt 0.3176 0.9697 +vt 0.4633 0.9796 +vt 0.3179 0.9796 +vt 0.4630 1.0000 +vt 0.3182 1.0000 +vt 0.0526 0.7500 +vt 0.1973 0.7500 +vt 0.0303 0.4168 +vt 0.0303 0.2708 +vt 0.0204 0.4165 +vt 0.0204 0.2711 +vt 0.0000 0.4162 +vt 0.0000 0.2714 +vt 0.2500 0.8026 +vt 0.2500 0.9473 +vt 0.4853 0.5364 +vt 0.4853 0.6824 +vt 0.4952 0.5367 +vt 0.4952 0.6821 +vt 0.5156 0.5370 +vt 0.5156 0.6818 +vt 0.1973 0.9999 +vt 0.0526 0.9999 +vt 0.7812 0.8026 +vt 0.7812 0.9474 +vt 0.0526 0.4844 +vt 0.1974 0.4844 +vt 0.1977 0.5048 +vt 0.0523 0.5048 +vt 0.1980 0.5147 +vt 0.0520 0.5147 +vt 0.7286 1.0000 +vt 0.5839 1.0000 +vt 0.2656 0.6818 +vt 0.2656 0.5370 +vt 0.2860 0.5367 +vt 0.2860 0.6821 +vt 0.2959 0.5364 +vt 0.2959 0.6824 +vt 0.5312 0.9474 +vt 0.5312 0.8026 +vt 0.2500 0.2714 +vt 0.2500 0.4162 +vt 0.2296 0.4165 +vt 0.2296 0.2711 +vt 0.2197 0.4168 +vt 0.2197 0.2708 +vt 0.3176 0.7803 +vt 0.4636 0.7803 +vt 0.3179 0.7704 +vt 0.4633 0.7704 +vt 0.3182 0.7500 +vt 0.4630 0.7500 +vt 0.5839 0.7500 +vt 0.7286 0.7500 +vt 0.7266 0.2969 +vt 0.7266 0.2812 +vt 0.7422 0.2812 +vt 0.7422 0.2969 +vt 0.7109 0.2969 +vt 0.7109 0.2812 +vt 0.6953 0.2969 +vt 0.6953 0.2812 +vt 0.6797 0.2969 +vt 0.6797 0.2812 +vt 0.6641 0.2969 +vt 0.6641 0.2812 +vt 0.6484 0.2969 +vt 0.6484 0.2812 +vt 0.6328 0.2969 +vt 0.6328 0.2812 +vt 0.6172 0.2969 +vt 0.6172 0.2812 +vt 0.6016 0.2969 +vt 0.6016 0.2812 +vt 0.5859 0.2969 +vt 0.5859 0.2812 +vt 0.5703 0.2969 +vt 0.5703 0.2812 +vt 0.5547 0.2969 +vt 0.5547 0.2812 +vt 0.5391 0.2969 +vt 0.5391 0.2812 +vt 0.5234 0.2969 +vt 0.5234 0.2812 +vt 0.5078 0.2969 +vt 0.5078 0.2812 +vt 0.4922 0.2969 +vt 0.4922 0.2812 +vt 0.9766 0.2969 +vt 0.9766 0.2812 +vt 0.9922 0.2812 +vt 0.9922 0.2969 +vt 0.9609 0.2969 +vt 0.9609 0.2812 +vt 0.9453 0.2969 +vt 0.9453 0.2812 +vt 0.9297 0.2969 +vt 0.9297 0.2812 +vt 0.8984 0.2969 +vt 0.8984 0.2812 +vt 0.9141 0.2812 +vt 0.9141 0.2969 +vt 0.8828 0.2969 +vt 0.8828 0.2812 +vt 0.8672 0.2969 +vt 0.8672 0.2812 +vt 0.8516 0.2969 +vt 0.8516 0.2812 +vt 0.8359 0.2969 +vt 0.8359 0.2812 +vt 0.8047 0.2969 +vt 0.8047 0.2812 +vt 0.8203 0.2812 +vt 0.8203 0.2969 +vt 0.7891 0.2969 +vt 0.7891 0.2812 +vt 0.7734 0.2969 +vt 0.7734 0.2812 +vt 0.7120 0.2565 +vt 0.7120 0.2493 +vt 0.7274 0.2493 +vt 0.7274 0.2564 +vt 0.7428 0.2565 +vt 0.7428 0.2493 +vt 0.7582 0.2564 +vt 0.7582 0.2493 +vt 0.7736 0.2564 +vt 0.7736 0.2493 +vt 0.7890 0.2565 +vt 0.7890 0.2493 +vt 0.8044 0.2565 +vt 0.8044 0.2493 +vt 0.8198 0.2493 +vt 0.8198 0.2565 +vt 0.8352 0.2565 +vt 0.8352 0.2494 +vt 0.8506 0.2566 +vt 0.8507 0.2494 +vt 0.8660 0.2567 +vt 0.8661 0.2494 +vt 0.8816 0.2495 +vt 0.8815 0.2567 +vt 0.8970 0.2495 +vt 0.8970 0.2567 +vt 0.9124 0.2567 +vt 0.9125 0.2495 +vt 0.9279 0.2495 +vt 0.9279 0.2567 +vt 0.9434 0.2495 +vt 0.9434 0.2567 +vt 0.9590 0.2567 +vt 0.9588 0.2495 +vt 0.9742 0.2494 +vt 0.9747 0.2566 +vt 0.9905 0.2563 +vt 0.9894 0.2492 +vt 0.4951 0.2563 +vt 0.4962 0.2492 +vt 0.5114 0.2493 +vt 0.5109 0.2566 +vt 0.5267 0.2567 +vt 0.5269 0.2494 +vt 0.5424 0.2495 +vt 0.5424 0.2567 +vt 0.5579 0.2494 +vt 0.5579 0.2566 +vt 0.5733 0.2494 +vt 0.5734 0.2566 +vt 0.5887 0.2494 +vt 0.5888 0.2566 +vt 0.6041 0.2494 +vt 0.6042 0.2565 +vt 0.6195 0.2493 +vt 0.6195 0.2565 +vt 0.6503 0.2565 +vt 0.6349 0.2565 +vt 0.6349 0.2493 +vt 0.6503 0.2493 +vt 0.6811 0.2565 +vt 0.6657 0.2564 +vt 0.6657 0.2493 +vt 0.6811 0.2493 +vt 0.6966 0.2565 +vt 0.6966 0.2493 +vt 0.8826 0.0183 +vt 0.8672 0.0183 +vt 0.8673 0.0112 +vt 0.8519 0.0183 +vt 0.8519 0.0112 +vt 0.8826 0.0111 +vt 0.8980 0.0111 +vt 0.8979 0.0183 +vt 0.8366 0.0183 +vt 0.8213 0.0183 +vt 0.8367 0.0112 +vt 0.9134 0.0112 +vt 0.9133 0.0183 +vt 0.8214 0.0111 +vt 0.9287 0.0112 +vt 0.9286 0.0183 +vt 0.8061 0.0111 +vt 0.8060 0.0182 +vt 0.8359 0.2969 +vt 0.8359 0.2812 +vt 0.8516 0.2812 +vt 0.8516 0.2969 +vt 0.8828 0.2969 +vt 0.8828 0.2812 +vt 0.8984 0.2812 +vt 0.8984 0.2969 +vt 0.9442 0.0112 +vt 0.9439 0.0184 +vt 0.8203 0.2969 +vt 0.8203 0.2812 +vt 0.7907 0.0111 +vt 0.7906 0.0182 +vt 0.9141 0.2812 +vt 0.9141 0.2969 +vt 0.9596 0.0113 +vt 0.9592 0.0184 +vt 0.8047 0.2969 +vt 0.8047 0.2812 +vt 0.7754 0.0110 +vt 0.7753 0.0181 +vt 0.7891 0.2969 +vt 0.7891 0.2812 +vt 0.9750 0.0115 +vt 0.9743 0.0186 +vt 0.7578 0.2969 +vt 0.7578 0.2812 +vt 0.7734 0.2812 +vt 0.7734 0.2969 +vt 0.7600 0.0110 +vt 0.7599 0.0181 +vt 0.9297 0.2812 +vt 0.9297 0.2969 +vt 0.9905 0.0118 +vt 0.9892 0.0188 +vt 0.7422 0.2969 +vt 0.7422 0.2812 +vt 0.7446 0.0109 +vt 0.7446 0.0180 +vt 0.9453 0.2812 +vt 0.9453 0.2969 +vt 0.5119 0.0099 +vt 0.5123 0.0172 +vt 0.4968 0.0174 +vt 0.4958 0.0101 +vt 0.7578 0.2812 +vt 0.7578 0.2969 +vt 0.7266 0.2969 +vt 0.7266 0.2812 +vt 0.5901 0.0174 +vt 0.5746 0.0173 +vt 0.7293 0.0109 +vt 0.7292 0.0180 +vt 0.9609 0.2812 +vt 0.9609 0.2969 +vt 0.5279 0.0099 +vt 0.5279 0.0172 +vt 0.7109 0.2969 +vt 0.7109 0.2812 +vt 0.7139 0.0108 +vt 0.7138 0.0180 +vt 0.9766 0.2812 +vt 0.9766 0.2969 +vt 0.5437 0.0099 +vt 0.5436 0.0172 +vt 0.6953 0.2969 +vt 0.6953 0.2812 +vt 0.6985 0.0107 +vt 0.6984 0.0179 +vt 0.4922 0.2969 +vt 0.4922 0.2812 +vt 0.5078 0.2812 +vt 0.5078 0.2969 +vt 0.5593 0.0100 +vt 0.5591 0.0173 +vt 0.9922 0.2812 +vt 0.9922 0.2969 +vt 0.6831 0.0107 +vt 0.6830 0.0178 +vt 0.5234 0.2812 +vt 0.5234 0.2969 +vt 0.8672 0.2812 +vt 0.8672 0.2969 +vt 0.5748 0.0101 +vt 0.6797 0.2969 +vt 0.6797 0.2812 +vt 0.6521 0.0177 +vt 0.6676 0.0178 +vt 0.6677 0.0106 +vt 0.5391 0.2812 +vt 0.5391 0.2969 +vt 0.5903 0.0102 +vt 0.6641 0.2969 +vt 0.6641 0.2812 +vt 0.6523 0.0105 +vt 0.5547 0.2812 +vt 0.5547 0.2969 +vt 0.6059 0.0102 +vt 0.6057 0.0175 +vt 0.6484 0.2969 +vt 0.6484 0.2812 +vt 0.6369 0.0104 +vt 0.6367 0.0176 +vt 0.5703 0.2812 +vt 0.5703 0.2969 +vt 0.6214 0.0103 +vt 0.6212 0.0175 +vt 0.6328 0.2969 +vt 0.6328 0.2812 +vt 0.6172 0.2969 +vt 0.6172 0.2812 +vt 0.5859 0.2812 +vt 0.5859 0.2969 +vt 0.6016 0.2969 +vt 0.6016 0.2812 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vt 0.8359 0.3361 +vt 0.8359 0.3283 +vt 0.8437 0.3283 +vt 0.8437 0.3361 +vt 0.8281 0.3361 +vt 0.8281 0.3283 +vt 0.8515 0.3283 +vt 0.8515 0.3361 +vt 0.8593 0.3283 +vt 0.8593 0.3361 +vt 0.8125 0.3361 +vt 0.8125 0.3283 +vt 0.8203 0.3283 +vt 0.8203 0.3361 +vn -0.0000 0.0000 -1.0000 +vn 0.0000 0.0000 1.0000 +vn -0.1120 0.0000 0.9937 +vn -0.1120 -0.0000 -0.9937 +vn 0.9937 0.0000 0.1120 +vn -0.9937 0.0000 -0.1120 +vn 0.3303 0.0000 0.9439 +vn 0.1120 -0.0000 -0.9937 +vn 0.8467 0.0000 -0.5320 +vn 0.7071 0.0000 -0.7071 +vn 0.5320 -0.0000 -0.8467 +vn 0.3303 -0.0000 -0.9439 +vn 0.9439 0.0000 -0.3303 +vn 0.5320 0.0000 0.8467 +vn 0.7071 0.0000 0.7071 +vn 0.8467 0.0000 0.5320 +vn 0.9439 0.0000 0.3303 +vn -0.9937 -0.0000 0.1120 +vn 1.0000 0.0000 0.0000 +vn -1.0000 -0.0000 -0.0000 +vn -0.8467 0.0000 0.5320 +vn -0.7071 0.0000 0.7071 +vn -0.5320 0.0000 0.8467 +vn -0.3303 0.0000 0.9439 +vn 0.0000 -1.0000 0.0000 +vn -0.9439 0.0000 0.3303 +vn -0.5320 -0.0000 -0.8467 +vn -0.7071 -0.0000 -0.7071 +vn -0.8467 -0.0000 -0.5320 +vn -0.9439 -0.0000 -0.3303 +vn 0.9937 -0.0000 -0.1120 +vn -0.3303 -0.0000 -0.9439 +vn 0.1120 0.0000 0.9937 +vn -0.5000 0.0000 0.8660 +vn -0.8660 0.0000 0.5000 +vn -0.8660 0.0000 -0.5000 +vn -0.5000 0.0000 -0.8660 +vn 0.5000 0.0000 -0.8660 +vn 0.8660 0.0000 -0.5000 +vn 0.8660 0.0000 0.5000 +vn 0.5000 0.0000 0.8660 +vn -0.8315 0.0000 -0.5556 +vn -0.5556 0.0000 -0.8315 +vn -0.3827 0.0000 -0.9239 +vn -0.1951 0.0000 -0.9808 +vn 0.1951 0.0000 -0.9808 +vn 0.3827 0.0000 -0.9239 +vn 0.5556 0.0000 -0.8315 +vn 0.8315 0.0000 -0.5556 +vn 0.9239 0.0000 -0.3827 +vn 0.9808 0.0000 -0.1951 +vn 0.9808 0.0000 0.1951 +vn 0.9581 -0.0000 0.2865 +vn 0.1118 0.0000 0.9937 +vn -0.9998 0.0000 0.0183 +vn -0.9581 0.0000 0.2865 +vn 0.0000 1.0000 0.0000 +vn 0.9399 0.0000 0.3413 +vn -0.1118 0.0000 0.9937 +vn 0.3289 0.0000 0.9444 +vn 0.5288 0.0000 0.8487 +vn 0.7024 0.0000 0.7118 +vn 0.8417 0.0000 0.5400 +vn 0.9994 0.0000 0.0340 +vn -0.3289 0.0000 0.9444 +vn -0.9944 0.0000 -0.1060 +vn -0.9399 0.0000 0.3413 +vn -0.8417 0.0000 0.5400 +vn -0.7024 0.0000 0.7118 +vn -0.5288 0.0000 0.8487 +vn -0.9994 0.0000 0.0340 +vn -0.9808 0.0000 0.1951 +vn 1.0000 0.0000 -0.0063 +vn -0.9808 0.0000 -0.1951 +vn 0.9944 0.0000 -0.1060 +vn 0.9997 -0.0000 -0.0261 +vn 0.9990 -0.0000 -0.0439 +vn 0.9981 0.0000 -0.0618 +vn 0.9967 0.0000 -0.0815 +vn -0.9960 0.0000 -0.0894 +vn 0.9926 0.0000 -0.1217 +vn -0.9926 0.0000 -0.1217 +vn -0.9981 0.0000 -0.0618 +vn -0.9990 0.0000 -0.0439 +vn -0.9997 0.0000 -0.0261 +vn -1.0000 0.0000 -0.0063 +vn 0.9998 0.0000 0.0183 +vn -0.9967 0.0000 -0.0815 +vn -0.9922 0.0000 0.1249 +vn 0.9669 -0.0000 0.2553 +vn 1.0000 -0.0000 0.0083 +vn 0.9989 -0.0000 0.0474 +vn 0.9964 -0.0000 0.0842 +vn 0.9927 -0.0000 0.1209 +vn 0.9872 -0.0000 0.1597 +vn 0.9792 0.0000 0.2031 +vn 0.9994 -0.0000 -0.0359 +vn -0.9994 0.0000 -0.0359 +vn 0.9960 0.0000 -0.0894 +vn -0.9792 0.0000 0.2031 +vn -0.9872 0.0000 0.1597 +vn -0.9927 0.0000 0.1209 +vn -0.9964 0.0000 0.0842 +vn -0.9989 0.0000 0.0474 +vn -1.0000 0.0000 0.0083 +vn -0.9669 0.0000 0.2553 +vn 0.9922 0.0000 0.1249 +vn -0.9239 0.0000 -0.3827 +vn -0.9687 -0.1564 -0.1927 +vn -0.8739 -0.4540 -0.1738 +vn -0.6935 -0.7071 -0.1380 +vn -0.4453 -0.8910 -0.0886 +vn -0.1534 -0.9877 -0.0305 +vn -0.9687 0.1564 -0.1927 +vn -0.8739 0.4540 -0.1738 +vn -0.6935 0.7071 -0.1379 +vn -0.4453 0.8910 -0.0886 +vn -0.1534 0.9877 -0.0305 +vn -0.9125 -0.1564 -0.3780 +vn -0.8232 -0.4540 -0.3410 +vn -0.6533 -0.7071 -0.2706 +vn -0.4194 -0.8910 -0.1737 +vn -0.1445 -0.9877 -0.0599 +vn -0.9125 0.1564 -0.3780 +vn -0.8232 0.4540 -0.3410 +vn -0.6533 0.7071 -0.2706 +vn -0.4194 0.8910 -0.1737 +vn -0.1445 0.9877 -0.0599 +vn -0.8212 -0.1564 -0.5487 +vn -0.7408 -0.4540 -0.4950 +vn -0.5879 -0.7071 -0.3928 +vn -0.3775 -0.8910 -0.2522 +vn -0.1301 -0.9877 -0.0869 +vn -0.8212 0.1564 -0.5487 +vn -0.7408 0.4540 -0.4950 +vn -0.5879 0.7071 -0.3928 +vn -0.3775 0.8910 -0.2522 +vn -0.1301 0.9877 -0.0869 +vn -0.6984 -0.1564 -0.6984 +vn -0.6300 -0.4540 -0.6300 +vn -0.5000 -0.7071 -0.5000 +vn -0.3210 -0.8910 -0.3210 +vn -0.1106 -0.9877 -0.1106 +vn -0.6984 0.1564 -0.6984 +vn -0.6300 0.4540 -0.6300 +vn -0.5000 0.7071 -0.5000 +vn -0.3210 0.8910 -0.3210 +vn -0.1106 0.9877 -0.1106 +vn -0.5487 -0.1564 -0.8212 +vn -0.4950 -0.4540 -0.7408 +vn -0.3928 -0.7071 -0.5879 +vn -0.2522 -0.8910 -0.3775 +vn -0.0869 -0.9877 -0.1301 +vn -0.5487 0.1564 -0.8212 +vn -0.4950 0.4540 -0.7408 +vn -0.3928 0.7071 -0.5879 +vn -0.2522 0.8910 -0.3775 +vn -0.0869 0.9877 -0.1301 +vn -0.3780 -0.1564 -0.9125 +vn -0.3410 -0.4540 -0.8232 +vn -0.2706 -0.7071 -0.6533 +vn -0.1737 -0.8910 -0.4194 +vn -0.0599 -0.9877 -0.1445 +vn -0.3780 0.1564 -0.9125 +vn -0.3410 0.4540 -0.8232 +vn -0.2706 0.7071 -0.6533 +vn -0.1737 0.8910 -0.4194 +vn -0.0599 0.9877 -0.1445 +vn -0.1927 -0.1564 -0.9687 +vn -0.1738 -0.4540 -0.8739 +vn -0.1379 -0.7071 -0.6935 +vn -0.0886 -0.8910 -0.4453 +vn -0.0305 -0.9877 -0.1534 +vn -0.1927 0.1564 -0.9687 +vn -0.1738 0.4540 -0.8739 +vn -0.1379 0.7071 -0.6935 +vn -0.0886 0.8910 -0.4453 +vn -0.0305 0.9877 -0.1534 +vn 0.0000 -0.1564 -0.9877 +vn -0.0000 -0.4540 -0.8910 +vn -0.0000 -0.7071 -0.7071 +vn -0.0000 -0.8910 -0.4540 +vn -0.0000 -0.9877 -0.1564 +vn 0.0000 0.1564 -0.9877 +vn -0.0000 0.4540 -0.8910 +vn -0.0000 0.7071 -0.7071 +vn -0.0000 0.8910 -0.4540 +vn -0.0000 0.9877 -0.1564 +vn 0.1927 -0.1564 -0.9687 +vn 0.1738 -0.4540 -0.8739 +vn 0.1379 -0.7071 -0.6935 +vn 0.0886 -0.8910 -0.4453 +vn 0.0305 -0.9877 -0.1534 +vn 0.1927 0.1564 -0.9687 +vn 0.1738 0.4540 -0.8739 +vn 0.1379 0.7071 -0.6935 +vn 0.0886 0.8910 -0.4453 +vn 0.0305 0.9877 -0.1534 +vn 0.3780 -0.1564 -0.9125 +vn 0.3410 -0.4540 -0.8232 +vn 0.2706 -0.7071 -0.6533 +vn 0.1737 -0.8910 -0.4194 +vn 0.0599 -0.9877 -0.1445 +vn 0.3780 0.1564 -0.9125 +vn 0.3410 0.4540 -0.8232 +vn 0.2706 0.7071 -0.6533 +vn 0.1737 0.8910 -0.4194 +vn 0.0599 0.9877 -0.1445 +vn 0.5487 -0.1564 -0.8212 +vn 0.4950 -0.4540 -0.7408 +vn 0.3928 -0.7071 -0.5879 +vn 0.2522 -0.8910 -0.3775 +vn 0.0869 -0.9877 -0.1301 +vn 0.5487 0.1564 -0.8212 +vn 0.4950 0.4540 -0.7408 +vn 0.3928 0.7071 -0.5879 +vn 0.2522 0.8910 -0.3775 +vn 0.0869 0.9877 -0.1301 +vn 0.6984 -0.1564 -0.6984 +vn 0.6300 -0.4540 -0.6300 +vn 0.5000 -0.7071 -0.5000 +vn 0.3210 -0.8910 -0.3210 +vn 0.1106 -0.9877 -0.1106 +vn 0.6984 0.1564 -0.6984 +vn 0.6300 0.4540 -0.6300 +vn 0.5000 0.7071 -0.5000 +vn 0.3210 0.8910 -0.3210 +vn 0.1106 0.9877 -0.1106 +vn 0.8212 -0.1564 -0.5487 +vn 0.7408 -0.4540 -0.4950 +vn 0.5879 -0.7071 -0.3928 +vn 0.3775 -0.8910 -0.2522 +vn 0.1301 -0.9877 -0.0869 +vn 0.8212 0.1564 -0.5487 +vn 0.7408 0.4540 -0.4950 +vn 0.5879 0.7071 -0.3928 +vn 0.3775 0.8910 -0.2522 +vn 0.1301 0.9877 -0.0869 +vn 0.9125 -0.1564 -0.3780 +vn 0.8232 -0.4540 -0.3410 +vn 0.6533 -0.7071 -0.2706 +vn 0.4194 -0.8910 -0.1737 +vn 0.1445 -0.9877 -0.0599 +vn 0.9125 0.1564 -0.3780 +vn 0.8232 0.4540 -0.3410 +vn 0.6533 0.7071 -0.2706 +vn 0.4194 0.8910 -0.1737 +vn 0.1445 0.9877 -0.0599 +vn 0.9687 -0.1564 -0.1927 +vn 0.8739 -0.4540 -0.1738 +vn 0.6935 -0.7071 -0.1379 +vn 0.4453 -0.8910 -0.0886 +vn 0.1534 -0.9877 -0.0305 +vn 0.9687 0.1564 -0.1927 +vn 0.8739 0.4540 -0.1738 +vn 0.6935 0.7071 -0.1379 +vn 0.4453 0.8910 -0.0886 +vn 0.1534 0.9877 -0.0305 +vn 0.9877 -0.1564 0.0000 +vn 0.8910 -0.4540 0.0000 +vn 0.7071 -0.7071 0.0000 +vn 0.4540 -0.8910 0.0000 +vn 0.1564 -0.9877 0.0000 +vn 0.9877 0.1564 0.0000 +vn 0.8910 0.4540 0.0000 +vn 0.7071 0.7071 0.0000 +vn 0.4540 0.8910 0.0000 +vn 0.1564 0.9877 0.0000 +vn 0.9687 -0.1564 0.1927 +vn 0.8739 -0.4540 0.1738 +vn 0.6935 -0.7071 0.1380 +vn 0.4453 -0.8910 0.0886 +vn 0.1534 -0.9877 0.0305 +vn 0.9687 0.1564 0.1927 +vn 0.8739 0.4540 0.1738 +vn 0.6935 0.7071 0.1380 +vn 0.4453 0.8910 0.0886 +vn 0.1534 0.9877 0.0305 +vn -0.9687 -0.1564 0.1927 +vn -0.8739 -0.4540 0.1738 +vn -0.6935 -0.7071 0.1379 +vn -0.4453 -0.8910 0.0886 +vn -0.1534 -0.9877 0.0305 +vn -0.9687 0.1564 0.1927 +vn -0.8739 0.4540 0.1738 +vn -0.6935 0.7071 0.1380 +vn -0.4453 0.8910 0.0886 +vn -0.1534 0.9877 0.0305 +vn -0.9877 -0.1564 -0.0000 +vn -0.8910 -0.4540 0.0000 +vn -0.7071 -0.7071 0.0000 +vn -0.4540 -0.8910 0.0000 +vn -0.1564 -0.9877 -0.0000 +vn -0.9877 0.1564 -0.0000 +vn -0.8910 0.4540 0.0000 +vn -0.7071 0.7071 0.0000 +vn -0.4540 0.8910 0.0000 +vn -0.1564 0.9877 0.0000 +vn 0.0175 0.9877 0.1555 +vn 0.0508 0.8910 0.4511 +vn 0.0790 0.7071 0.7027 +vn 0.0996 0.4540 0.8854 +vn 0.1104 0.1564 0.9815 +vn 0.0175 -0.9877 0.1555 +vn 0.0508 -0.8910 0.4511 +vn 0.0790 -0.7071 0.7027 +vn 0.0996 -0.4540 0.8854 +vn 0.1104 -0.1564 0.9815 +vn 0.0515 0.9877 0.1477 +vn 0.1493 0.8910 0.4287 +vn 0.2326 0.7071 0.6678 +vn 0.2930 0.4540 0.8414 +vn 0.3249 0.1564 0.9327 +vn 0.0515 -0.9877 0.1477 +vn 0.1493 -0.8910 0.4287 +vn 0.2326 -0.7071 0.6678 +vn 0.2930 -0.4540 0.8414 +vn 0.3248 -0.1564 0.9327 +vn 0.0827 0.9877 0.1328 +vn 0.2401 0.8910 0.3853 +vn 0.3740 0.7071 0.6001 +vn 0.4712 0.4540 0.7562 +vn 0.5223 0.1564 0.8383 +vn 0.0827 -0.9877 0.1328 +vn 0.2401 -0.8910 0.3853 +vn 0.3740 -0.7071 0.6001 +vn 0.4712 -0.4540 0.7562 +vn 0.5223 -0.1564 0.8383 +vn 0.1099 0.9877 0.1113 +vn 0.3189 0.8910 0.3231 +vn 0.4967 0.7071 0.5033 +vn 0.6259 0.4540 0.6342 +vn 0.6938 0.1564 0.7030 +vn 0.1099 -0.9877 0.1113 +vn 0.3189 -0.8910 0.3231 +vn 0.4967 -0.7071 0.5033 +vn 0.6259 -0.4540 0.6342 +vn 0.6938 -0.1564 0.7030 +vn 0.1317 0.9877 0.0845 +vn 0.3821 0.8910 0.2452 +vn 0.5951 0.7071 0.3818 +vn 0.7499 0.4540 0.4811 +vn 0.8313 0.1564 0.5334 +vn 0.1317 -0.9877 0.0845 +vn 0.3821 -0.8910 0.2452 +vn 0.5951 -0.7071 0.3818 +vn 0.7499 -0.4540 0.4812 +vn 0.8313 -0.1564 0.5334 +vn 0.1470 0.9877 0.0534 +vn 0.4267 0.8910 0.1550 +vn 0.6646 0.7071 0.2414 +vn 0.8375 0.4540 0.3041 +vn 0.9284 0.1564 0.3371 +vn 0.1470 -0.9877 0.0534 +vn 0.4267 -0.8910 0.1550 +vn 0.6646 -0.7071 0.2414 +vn 0.8375 -0.4540 0.3041 +vn 0.9284 -0.1564 0.3371 +vn 0.1552 0.9877 0.0195 +vn 0.4504 0.8910 0.0567 +vn 0.7016 0.7071 0.0883 +vn 0.8840 0.4540 0.1113 +vn 0.9800 0.1564 0.1234 +vn 0.1552 -0.9877 0.0195 +vn 0.4504 -0.8910 0.0567 +vn 0.7016 -0.7071 0.0883 +vn 0.8840 -0.4540 0.1113 +vn 0.9800 -0.1564 0.1234 +vn -0.1552 0.9877 0.0195 +vn -0.4504 0.8910 0.0567 +vn -0.7016 0.7071 0.0883 +vn -0.8840 0.4540 0.1113 +vn -0.9800 0.1564 0.1234 +vn -0.1552 -0.9877 0.0195 +vn -0.4504 -0.8910 0.0567 +vn -0.7016 -0.7071 0.0883 +vn -0.8840 -0.4540 0.1113 +vn -0.9800 -0.1564 0.1234 +vn -0.1470 0.9877 0.0534 +vn -0.4267 0.8910 0.1550 +vn -0.6646 0.7071 0.2414 +vn -0.8375 0.4540 0.3041 +vn -0.9284 0.1564 0.3371 +vn -0.1470 -0.9877 0.0534 +vn -0.4267 -0.8910 0.1550 +vn -0.6646 -0.7071 0.2414 +vn -0.8375 -0.4540 0.3041 +vn -0.9284 -0.1564 0.3371 +vn -0.1317 0.9877 0.0845 +vn -0.3821 0.8910 0.2452 +vn -0.5951 0.7071 0.3818 +vn -0.7499 0.4540 0.4811 +vn -0.8313 0.1564 0.5334 +vn -0.1317 -0.9877 0.0845 +vn -0.3821 -0.8910 0.2452 +vn -0.5951 -0.7071 0.3818 +vn -0.7499 -0.4540 0.4812 +vn -0.8313 -0.1564 0.5334 +vn -0.1099 0.9877 0.1113 +vn -0.3189 0.8910 0.3231 +vn -0.4967 0.7071 0.5033 +vn -0.6259 0.4540 0.6342 +vn -0.6938 0.1564 0.7030 +vn -0.1099 -0.9877 0.1113 +vn -0.3189 -0.8910 0.3231 +vn -0.4967 -0.7071 0.5033 +vn -0.6259 -0.4540 0.6342 +vn -0.6938 -0.1564 0.7030 +vn -0.0827 0.9877 0.1328 +vn -0.2401 0.8910 0.3853 +vn -0.3740 0.7071 0.6001 +vn -0.4712 0.4540 0.7562 +vn -0.5223 0.1564 0.8383 +vn -0.0827 -0.9877 0.1328 +vn -0.2401 -0.8910 0.3853 +vn -0.3740 -0.7071 0.6001 +vn -0.4712 -0.4540 0.7562 +vn -0.5223 -0.1564 0.8383 +vn -0.0515 0.9877 0.1477 +vn -0.1493 0.8910 0.4287 +vn -0.2326 0.7071 0.6678 +vn -0.2930 0.4540 0.8414 +vn -0.3248 0.1564 0.9327 +vn -0.0515 -0.9877 0.1477 +vn -0.1493 -0.8910 0.4287 +vn -0.2326 -0.7071 0.6678 +vn -0.2930 -0.4540 0.8414 +vn -0.3248 -0.1564 0.9327 +vn -0.0175 0.9877 0.1555 +vn -0.0508 0.8910 0.4511 +vn -0.0790 0.7071 0.7027 +vn -0.0996 0.4540 0.8854 +vn -0.1104 0.1564 0.9815 +vn -0.0175 -0.9877 0.1554 +vn -0.0508 -0.8910 0.4512 +vn -0.0790 -0.7071 0.7027 +vn -0.0996 -0.4540 0.8854 +vn -0.1104 -0.1564 0.9815 +vn 0.0000 0.9877 0.1564 +vn 0.0000 0.8910 0.4540 +vn 0.0000 0.7071 0.7071 +vn 0.0000 0.4540 0.8910 +vn 0.0000 0.1564 0.9877 +vn 0.0000 -0.9877 0.1564 +vn 0.0000 -0.8910 0.4540 +vn 0.0000 -0.7071 0.7071 +vn 0.0000 -0.4540 0.8910 +vn 0.0000 -0.1564 0.9877 +vn 0.1564 0.9877 0.0029 +vn 0.4540 0.8910 0.0084 +vn 0.7070 0.7071 0.0130 +vn 0.8909 0.4539 0.0163 +vn 0.9875 0.1564 0.0181 +vn 0.1564 -0.9877 0.0028 +vn 0.4539 -0.8910 0.0083 +vn 0.7070 -0.7071 0.0129 +vn 0.8909 -0.4540 0.0163 +vn 0.9875 -0.1564 0.0181 +vn 0.1564 0.9877 -0.0010 +vn 0.4540 0.8910 -0.0028 +vn 0.7071 0.7071 -0.0044 +vn 0.8910 0.4540 -0.0056 +vn 0.9877 0.1564 -0.0062 +vn 0.1565 -0.9877 -0.0010 +vn 0.4540 -0.8910 -0.0030 +vn 0.7071 -0.7071 -0.0046 +vn 0.8910 -0.4539 -0.0057 +vn 0.9877 -0.1564 -0.0063 +vn 0.1564 0.9877 -0.0041 +vn 0.4539 0.8910 -0.0118 +vn 0.7069 0.7071 -0.0184 +vn 0.8907 0.4540 -0.0233 +vn 0.9874 0.1564 -0.0258 +vn 0.1564 -0.9877 -0.0041 +vn 0.4539 -0.8910 -0.0119 +vn 0.7069 -0.7071 -0.0185 +vn 0.8907 -0.4540 -0.0233 +vn 0.9874 -0.1564 -0.0258 +vn 0.1563 0.9877 -0.0069 +vn 0.4536 0.8910 -0.0199 +vn 0.7065 0.7071 -0.0310 +vn 0.8902 0.4540 -0.0391 +vn 0.9867 0.1564 -0.0434 +vn 0.1563 -0.9877 -0.0069 +vn 0.4536 -0.8910 -0.0200 +vn 0.7065 -0.7071 -0.0311 +vn 0.8902 -0.4540 -0.0392 +vn 0.9867 -0.1564 -0.0434 +vn 0.1562 0.9877 -0.0096 +vn 0.4532 0.8910 -0.0280 +vn 0.7058 0.7071 -0.0436 +vn 0.8893 0.4540 -0.0550 +vn 0.9858 0.1564 -0.0610 +vn 0.1561 -0.9877 -0.0097 +vn 0.4532 -0.8910 -0.0281 +vn 0.7058 -0.7071 -0.0437 +vn 0.8893 -0.4540 -0.0550 +vn 0.9858 -0.1564 -0.0610 +vn 0.1559 0.9877 -0.0127 +vn 0.4525 0.8910 -0.0369 +vn 0.7048 0.7071 -0.0576 +vn 0.8881 0.4539 -0.0726 +vn 0.9844 0.1564 -0.0805 +vn 0.1559 -0.9877 -0.0128 +vn 0.4525 -0.8910 -0.0371 +vn 0.7048 -0.7071 -0.0577 +vn 0.8881 -0.4540 -0.0726 +vn 0.9844 -0.1564 -0.0805 +vn 0.1556 0.9877 -0.0166 +vn 0.4515 0.8910 -0.0481 +vn 0.7031 0.7071 -0.0749 +vn 0.8860 0.4540 -0.0944 +vn 0.9821 0.1564 -0.1047 +vn 0.1556 -0.9877 -0.0166 +vn 0.4515 -0.8910 -0.0482 +vn 0.7032 -0.7071 -0.0751 +vn 0.8860 -0.4539 -0.0945 +vn 0.9821 -0.1564 -0.1047 +vn -0.1556 0.9877 -0.0166 +vn -0.4515 0.8910 -0.0482 +vn -0.7032 0.7071 -0.0751 +vn -0.8860 0.4539 -0.0945 +vn -0.9821 0.1564 -0.1047 +vn -0.1556 -0.9877 -0.0166 +vn -0.4515 -0.8910 -0.0481 +vn -0.7031 -0.7071 -0.0749 +vn -0.8860 -0.4540 -0.0944 +vn -0.9821 -0.1564 -0.1047 +vn -0.1559 0.9877 -0.0128 +vn -0.4525 0.8910 -0.0371 +vn -0.7048 0.7071 -0.0577 +vn -0.8881 0.4540 -0.0726 +vn -0.9844 0.1564 -0.0805 +vn -0.1559 -0.9877 -0.0127 +vn -0.4525 -0.8910 -0.0369 +vn -0.7048 -0.7071 -0.0576 +vn -0.8881 -0.4539 -0.0726 +vn -0.9844 -0.1564 -0.0805 +vn -0.1561 0.9877 -0.0097 +vn -0.4532 0.8910 -0.0281 +vn -0.7058 0.7071 -0.0437 +vn -0.8893 0.4540 -0.0550 +vn -0.9858 0.1564 -0.0610 +vn -0.1562 -0.9877 -0.0096 +vn -0.4532 -0.8910 -0.0280 +vn -0.7058 -0.7071 -0.0436 +vn -0.8893 -0.4540 -0.0550 +vn -0.9858 -0.1564 -0.0610 +vn -0.1563 0.9877 -0.0069 +vn -0.4536 0.8910 -0.0200 +vn -0.7064 0.7071 -0.0311 +vn -0.8902 0.4540 -0.0392 +vn -0.9867 0.1564 -0.0434 +vn -0.1563 -0.9877 -0.0069 +vn -0.4536 -0.8910 -0.0199 +vn -0.7065 -0.7071 -0.0310 +vn -0.8902 -0.4540 -0.0391 +vn -0.9867 -0.1564 -0.0434 +vn -0.1564 0.9877 -0.0041 +vn -0.4539 0.8910 -0.0119 +vn -0.7069 0.7071 -0.0185 +vn -0.8907 0.4540 -0.0233 +vn -0.9874 0.1564 -0.0258 +vn -0.1564 -0.9877 -0.0041 +vn -0.4539 -0.8910 -0.0118 +vn -0.7069 -0.7071 -0.0184 +vn -0.8907 -0.4540 -0.0232 +vn -0.9874 -0.1564 -0.0258 +vn -0.1565 0.9877 -0.0010 +vn -0.4540 0.8910 -0.0030 +vn -0.7071 0.7071 -0.0046 +vn -0.8910 0.4539 -0.0057 +vn -0.9877 0.1564 -0.0063 +vn -0.1564 -0.9877 -0.0010 +vn -0.4540 -0.8910 -0.0028 +vn -0.7071 -0.7071 -0.0044 +vn -0.8910 -0.4540 -0.0056 +vn -0.9877 -0.1564 -0.0062 +vn -0.1564 0.9877 0.0028 +vn -0.4539 0.8910 0.0083 +vn -0.7070 0.7071 0.0129 +vn -0.8909 0.4540 0.0163 +vn -0.9875 0.1564 0.0181 +vn -0.1564 -0.9877 0.0029 +vn -0.4540 -0.8910 0.0084 +vn -0.7070 -0.7071 0.0130 +vn -0.8909 -0.4539 0.0163 +vn -0.9875 -0.1564 0.0181 +vn -0.1564 -0.9877 0.0053 +vn -0.4537 -0.8910 0.0155 +vn -0.7067 -0.7071 0.0241 +vn -0.8905 -0.4540 0.0304 +vn -0.9871 -0.1564 0.0336 +vn -0.1563 0.9877 0.0053 +vn -0.4537 0.8910 0.0155 +vn -0.7067 0.7071 0.0241 +vn -0.8905 0.4540 0.0303 +vn -0.9871 0.1564 0.0336 +vn 0.1563 -0.9877 0.0053 +vn 0.4537 -0.8910 0.0155 +vn 0.7067 -0.7071 0.0241 +vn 0.8905 -0.4540 0.0303 +vn 0.9871 -0.1564 0.0336 +vn 0.1564 0.9877 0.0053 +vn 0.4538 0.8910 0.0155 +vn 0.7067 0.7071 0.0241 +vn 0.8905 0.4540 0.0304 +vn 0.9871 0.1564 0.0336 +vn 0.1558 0.9877 -0.0140 +vn 0.4522 0.8910 -0.0406 +vn 0.7043 0.7071 -0.0632 +vn 0.8874 0.4540 -0.0796 +vn 0.9837 0.1564 -0.0883 +vn 0.1558 -0.9877 -0.0142 +vn 0.4522 -0.8910 -0.0409 +vn 0.7043 -0.7070 -0.0635 +vn 0.8875 -0.4539 -0.0798 +vn 0.9837 -0.1564 -0.0883 +vn 0.1563 0.9877 -0.0056 +vn 0.4537 0.8910 -0.0163 +vn 0.7067 0.7071 -0.0254 +vn 0.8904 0.4540 -0.0320 +vn 0.9871 0.1564 -0.0355 +vn 0.1563 -0.9877 -0.0056 +vn 0.4537 -0.8910 -0.0163 +vn 0.7066 -0.7071 -0.0254 +vn 0.8904 -0.4540 -0.0320 +vn 0.9871 -0.1564 -0.0355 +vn 0.1564 0.9877 0.0013 +vn 0.4540 0.8910 0.0038 +vn 0.7071 0.7071 0.0059 +vn 0.8910 0.4540 0.0074 +vn 0.9877 0.1564 0.0082 +vn 0.1564 -0.9877 0.0013 +vn 0.4540 -0.8910 0.0038 +vn 0.7071 -0.7071 0.0059 +vn 0.8910 -0.4540 0.0074 +vn 0.9877 -0.1564 0.0082 +vn 0.1563 0.9877 0.0074 +vn 0.4535 0.8910 0.0215 +vn 0.7063 0.7071 0.0335 +vn 0.8900 0.4540 0.0423 +vn 0.9866 0.1564 0.0468 +vn 0.1563 -0.9877 0.0074 +vn 0.4535 -0.8910 0.0215 +vn 0.7063 -0.7071 0.0335 +vn 0.8900 -0.4540 0.0423 +vn 0.9866 -0.1564 0.0468 +vn 0.1559 0.9877 0.0132 +vn 0.4524 0.8910 0.0382 +vn 0.7046 0.7071 0.0596 +vn 0.8878 0.4540 0.0750 +vn 0.9842 0.1564 0.0832 +vn 0.1559 -0.9877 0.0132 +vn 0.4524 -0.8910 0.0382 +vn 0.7046 -0.7071 0.0596 +vn 0.8878 -0.4540 0.0750 +vn 0.9842 -0.1564 0.0832 +vn 0.1553 0.9877 0.0189 +vn 0.4507 0.8910 0.0549 +vn 0.7019 0.7071 0.0855 +vn 0.8845 0.4540 0.1077 +vn 0.9804 0.1564 0.1194 +vn 0.1553 -0.9877 0.0189 +vn 0.4507 -0.8910 0.0549 +vn 0.7019 -0.7071 0.0855 +vn 0.8845 -0.4540 0.1077 +vn 0.9804 -0.1564 0.1194 +vn 0.1544 0.9877 0.0250 +vn 0.4482 0.8910 0.0725 +vn 0.6980 0.7071 0.1129 +vn 0.8796 0.4540 0.1423 +vn 0.9750 0.1564 0.1577 +vn 0.1544 -0.9877 0.0250 +vn 0.4482 -0.8910 0.0725 +vn 0.6980 -0.7071 0.1129 +vn 0.8796 -0.4540 0.1423 +vn 0.9750 -0.1564 0.1577 +vn 0.1532 0.9877 0.0318 +vn 0.4445 0.8910 0.0922 +vn 0.6924 0.7071 0.1436 +vn 0.8724 0.4540 0.1810 +vn 0.9671 0.1564 0.2006 +vn 0.1532 -0.9877 0.0318 +vn 0.4445 -0.8910 0.0922 +vn 0.6924 -0.7071 0.1436 +vn 0.8724 -0.4540 0.1810 +vn 0.9671 -0.1564 0.2006 +vn 0.1512 0.9877 0.0401 +vn 0.4390 0.8910 0.1162 +vn 0.6837 0.7070 0.1808 +vn 0.8615 0.4539 0.2276 +vn 0.9550 0.1564 0.2522 +vn 0.1513 -0.9877 0.0399 +vn 0.4389 -0.8910 0.1159 +vn 0.6837 -0.7071 0.1805 +vn 0.8615 -0.4540 0.2275 +vn 0.9550 -0.1564 0.2521 +vn -0.1513 0.9877 0.0399 +vn -0.4389 0.8910 0.1159 +vn -0.6837 0.7071 0.1805 +vn -0.8615 0.4540 0.2275 +vn -0.9550 0.1564 0.2521 +vn -0.1512 -0.9877 0.0401 +vn -0.4390 -0.8910 0.1162 +vn -0.6837 -0.7070 0.1808 +vn -0.8615 -0.4539 0.2276 +vn -0.9550 -0.1564 0.2522 +vn -0.1532 0.9877 0.0318 +vn -0.4445 0.8910 0.0922 +vn -0.6924 0.7071 0.1436 +vn -0.8724 0.4540 0.1810 +vn -0.9671 0.1564 0.2006 +vn -0.1532 -0.9877 0.0318 +vn -0.4445 -0.8910 0.0922 +vn -0.6924 -0.7071 0.1436 +vn -0.8724 -0.4540 0.1810 +vn -0.9671 -0.1564 0.2006 +vn -0.1544 0.9877 0.0250 +vn -0.4482 0.8910 0.0725 +vn -0.6980 0.7071 0.1129 +vn -0.8796 0.4540 0.1423 +vn -0.9750 0.1564 0.1577 +vn -0.1544 -0.9877 0.0250 +vn -0.4482 -0.8910 0.0725 +vn -0.6980 -0.7071 0.1129 +vn -0.8796 -0.4540 0.1423 +vn -0.9750 -0.1564 0.1577 +vn -0.1553 0.9877 0.0189 +vn -0.4507 0.8910 0.0549 +vn -0.7019 0.7071 0.0855 +vn -0.8845 0.4540 0.1077 +vn -0.9804 0.1564 0.1194 +vn -0.1553 -0.9877 0.0189 +vn -0.4507 -0.8910 0.0549 +vn -0.7019 -0.7071 0.0855 +vn -0.8845 -0.4540 0.1077 +vn -0.9804 -0.1564 0.1194 +vn -0.1559 0.9877 0.0132 +vn -0.4524 0.8910 0.0382 +vn -0.7046 0.7071 0.0596 +vn -0.8878 0.4540 0.0750 +vn -0.9842 0.1564 0.0832 +vn -0.1559 -0.9877 0.0132 +vn -0.4524 -0.8910 0.0382 +vn -0.7046 -0.7071 0.0596 +vn -0.8878 -0.4540 0.0750 +vn -0.9842 -0.1564 0.0832 +vn -0.1563 0.9877 0.0074 +vn -0.4535 0.8910 0.0215 +vn -0.7063 0.7071 0.0335 +vn -0.8900 0.4540 0.0423 +vn -0.9866 0.1564 0.0468 +vn -0.1563 -0.9877 0.0074 +vn -0.4535 -0.8910 0.0215 +vn -0.7063 -0.7071 0.0335 +vn -0.8900 -0.4540 0.0423 +vn -0.9866 -0.1564 0.0468 +vn -0.1564 0.9877 0.0013 +vn -0.4540 0.8910 0.0038 +vn -0.7071 0.7071 0.0059 +vn -0.8910 0.4540 0.0074 +vn -0.9877 0.1564 0.0082 +vn -0.1564 -0.9877 0.0013 +vn -0.4540 -0.8910 0.0038 +vn -0.7071 -0.7071 0.0059 +vn -0.8910 -0.4540 0.0074 +vn -0.9877 -0.1564 0.0082 +vn -0.1563 0.9877 -0.0056 +vn -0.4537 0.8910 -0.0163 +vn -0.7066 0.7071 -0.0254 +vn -0.8904 0.4540 -0.0320 +vn -0.9871 0.1564 -0.0355 +vn -0.1563 -0.9877 -0.0056 +vn -0.4537 -0.8910 -0.0163 +vn -0.7066 -0.7071 -0.0254 +vn -0.8904 -0.4540 -0.0320 +vn -0.9871 -0.1564 -0.0355 +vn -0.1558 0.9877 -0.0142 +vn -0.4522 0.8910 -0.0409 +vn -0.7043 0.7070 -0.0635 +vn -0.8875 0.4539 -0.0798 +vn -0.9837 0.1564 -0.0883 +vn -0.1558 -0.9877 -0.0140 +vn -0.4522 -0.8910 -0.0406 +vn -0.7043 -0.7071 -0.0632 +vn -0.8874 -0.4540 -0.0796 +vn -0.9837 -0.1564 -0.0883 +vn -0.1499 -0.9877 0.0448 +vn -0.4350 -0.8910 0.1301 +vn -0.6775 -0.7071 0.2026 +vn -0.8536 -0.4540 0.2553 +vn -0.9463 -0.1564 0.2830 +vn -0.1499 0.9877 0.0448 +vn -0.4351 0.8910 0.1301 +vn -0.6776 0.7070 0.2026 +vn -0.8537 0.4539 0.2553 +vn -0.9463 0.1564 0.2830 +vn -0.1553 -0.9877 -0.0190 +vn -0.4507 -0.8910 -0.0552 +vn -0.7019 -0.7070 -0.0860 +vn -0.8844 -0.4539 -0.1084 +vn -0.9804 -0.1564 -0.1202 +vn -0.1553 0.9877 -0.0190 +vn -0.4506 0.8910 -0.0552 +vn -0.7019 0.7071 -0.0860 +vn -0.8844 0.4540 -0.1084 +vn -0.9804 0.1564 -0.1202 +vn 0.1499 -0.9877 0.0448 +vn 0.4351 -0.8910 0.1301 +vn 0.6776 -0.7070 0.2026 +vn 0.8537 -0.4539 0.2553 +vn 0.9463 -0.1564 0.2830 +vn 0.1499 0.9877 0.0448 +vn 0.4350 0.8910 0.1301 +vn 0.6775 0.7071 0.2026 +vn 0.8536 0.4540 0.2553 +vn 0.9463 0.1564 0.2830 +vn 0.1553 -0.9877 -0.0190 +vn 0.4506 -0.8910 -0.0552 +vn 0.7019 -0.7071 -0.0860 +vn 0.8844 -0.4540 -0.1084 +vn 0.9804 -0.1564 -0.1202 +vn 0.1553 0.9877 -0.0190 +vn 0.4507 0.8910 -0.0552 +vn 0.7019 0.7070 -0.0860 +vn 0.8844 0.4539 -0.1084 +vn 0.9804 0.1564 -0.1202 +vn 0.1297 0.9914 -0.0146 +vn 0.3803 0.9239 -0.0428 +vn 0.6049 0.7934 -0.0682 +vn 0.7884 0.6088 -0.0888 +vn 0.9181 0.3827 -0.1034 +vn 0.9852 0.1305 -0.1110 +vn 0.1297 -0.9914 -0.0146 +vn 0.3803 -0.9239 -0.0428 +vn 0.6049 -0.7934 -0.0682 +vn 0.7884 -0.6088 -0.0888 +vn 0.9181 -0.3827 -0.1034 +vn 0.9852 -0.1305 -0.1110 +vn 0.1232 0.9914 -0.0431 +vn 0.3612 0.9239 -0.1264 +vn 0.5746 0.7934 -0.2011 +vn 0.7488 0.6088 -0.2620 +vn 0.8720 0.3827 -0.3051 +vn 0.9358 0.1305 -0.3275 +vn 0.1232 -0.9914 -0.0431 +vn 0.3612 -0.9239 -0.1264 +vn 0.5746 -0.7934 -0.2011 +vn 0.7488 -0.6088 -0.2620 +vn 0.8720 -0.3827 -0.3051 +vn 0.9358 -0.1305 -0.3275 +vn 0.1105 0.9914 -0.0694 +vn 0.3240 0.9239 -0.2036 +vn 0.5155 0.7934 -0.3239 +vn 0.6718 0.6088 -0.4221 +vn 0.7823 0.3827 -0.4915 +vn 0.8395 0.1305 -0.5275 +vn 0.1105 -0.9914 -0.0694 +vn 0.3240 -0.9239 -0.2036 +vn 0.5155 -0.7934 -0.3239 +vn 0.6718 -0.6088 -0.4221 +vn 0.7823 -0.3827 -0.4915 +vn 0.8395 -0.1305 -0.5275 +vn 0.0923 0.9914 -0.0923 +vn 0.2706 0.9239 -0.2706 +vn 0.4305 0.7934 -0.4305 +vn 0.5610 0.6088 -0.5610 +vn 0.6533 0.3827 -0.6533 +vn 0.7011 0.1305 -0.7011 +vn 0.0923 -0.9914 -0.0923 +vn 0.2706 -0.9239 -0.2706 +vn 0.4305 -0.7934 -0.4305 +vn 0.5610 -0.6088 -0.5610 +vn 0.6533 -0.3827 -0.6533 +vn 0.7011 -0.1305 -0.7011 +vn 0.0694 0.9914 -0.1105 +vn 0.2036 0.9239 -0.3240 +vn 0.3239 0.7934 -0.5155 +vn 0.4221 0.6088 -0.6718 +vn 0.4915 0.3827 -0.7823 +vn 0.5275 0.1305 -0.8395 +vn 0.0694 -0.9914 -0.1105 +vn 0.2036 -0.9239 -0.3240 +vn 0.3239 -0.7934 -0.5155 +vn 0.4221 -0.6088 -0.6718 +vn 0.4915 -0.3827 -0.7823 +vn 0.5275 -0.1305 -0.8395 +vn 0.0431 0.9914 -0.1232 +vn 0.1264 0.9239 -0.3612 +vn 0.2011 0.7934 -0.5746 +vn 0.2620 0.6088 -0.7488 +vn 0.3051 0.3827 -0.8720 +vn 0.3275 0.1305 -0.9358 +vn 0.0431 -0.9914 -0.1232 +vn 0.1264 -0.9239 -0.3612 +vn 0.2011 -0.7934 -0.5746 +vn 0.2620 -0.6088 -0.7488 +vn 0.3051 -0.3827 -0.8720 +vn 0.3275 -0.1305 -0.9358 +vn 0.0146 0.9914 -0.1297 +vn 0.0428 0.9239 -0.3803 +vn 0.0682 0.7934 -0.6049 +vn 0.0888 0.6088 -0.7884 +vn 0.1034 0.3827 -0.9181 +vn 0.1110 0.1305 -0.9852 +vn 0.0146 -0.9914 -0.1297 +vn 0.0428 -0.9239 -0.3803 +vn 0.0682 -0.7934 -0.6049 +vn 0.0888 -0.6088 -0.7884 +vn 0.1034 -0.3827 -0.9181 +vn 0.1110 -0.1305 -0.9852 +vn 0.0146 0.9914 0.1297 +vn 0.0428 0.9239 0.3803 +vn 0.0682 0.7934 0.6049 +vn 0.0888 0.6088 0.7884 +vn 0.1034 0.3827 0.9181 +vn 0.1110 0.1305 0.9852 +vn 0.0146 -0.9914 0.1297 +vn 0.0428 -0.9239 0.3803 +vn 0.0682 -0.7934 0.6049 +vn 0.0888 -0.6088 0.7884 +vn 0.1034 -0.3827 0.9181 +vn 0.1110 -0.1305 0.9852 +vn 0.0431 0.9914 0.1232 +vn 0.1264 0.9239 0.3612 +vn 0.2011 0.7934 0.5746 +vn 0.2620 0.6088 0.7488 +vn 0.3051 0.3827 0.8720 +vn 0.3275 0.1305 0.9358 +vn 0.0431 -0.9914 0.1232 +vn 0.1264 -0.9239 0.3612 +vn 0.2011 -0.7934 0.5746 +vn 0.2620 -0.6088 0.7488 +vn 0.3051 -0.3827 0.8720 +vn 0.3275 -0.1305 0.9358 +vn 0.0694 0.9914 0.1105 +vn 0.2036 0.9239 0.3240 +vn 0.3239 0.7934 0.5155 +vn 0.4221 0.6088 0.6718 +vn 0.4915 0.3827 0.7823 +vn 0.5275 0.1305 0.8395 +vn 0.0694 -0.9914 0.1105 +vn 0.2036 -0.9239 0.3240 +vn 0.3239 -0.7934 0.5155 +vn 0.4221 -0.6088 0.6718 +vn 0.4915 -0.3827 0.7823 +vn 0.5275 -0.1305 0.8395 +vn 0.0923 0.9914 0.0923 +vn 0.2706 0.9239 0.2706 +vn 0.4305 0.7934 0.4305 +vn 0.5610 0.6088 0.5610 +vn 0.6533 0.3827 0.6533 +vn 0.7011 0.1305 0.7011 +vn 0.0923 -0.9914 0.0923 +vn 0.2706 -0.9239 0.2706 +vn 0.4305 -0.7934 0.4305 +vn 0.5610 -0.6088 0.5610 +vn 0.6533 -0.3827 0.6533 +vn 0.7011 -0.1305 0.7011 +vn 0.1105 0.9914 0.0694 +vn 0.3240 0.9239 0.2036 +vn 0.5155 0.7934 0.3239 +vn 0.6718 0.6088 0.4221 +vn 0.7823 0.3827 0.4915 +vn 0.8395 0.1305 0.5275 +vn 0.1105 -0.9914 0.0694 +vn 0.3240 -0.9239 0.2036 +vn 0.5155 -0.7934 0.3239 +vn 0.6718 -0.6088 0.4221 +vn 0.7823 -0.3827 0.4915 +vn 0.8395 -0.1305 0.5275 +vn 0.1232 0.9914 0.0431 +vn 0.3612 0.9239 0.1264 +vn 0.5746 0.7934 0.2011 +vn 0.7488 0.6088 0.2620 +vn 0.8720 0.3827 0.3051 +vn 0.9358 0.1305 0.3275 +vn 0.1232 -0.9914 0.0431 +vn 0.3612 -0.9239 0.1264 +vn 0.5746 -0.7934 0.2011 +vn 0.7488 -0.6088 0.2620 +vn 0.8720 -0.3827 0.3051 +vn 0.9358 -0.1305 0.3275 +vn 0.1297 0.9914 0.0146 +vn 0.3803 0.9239 0.0428 +vn 0.6049 0.7934 0.0682 +vn 0.7884 0.6088 0.0888 +vn 0.9181 0.3827 0.1034 +vn 0.9852 0.1305 0.1110 +vn 0.1297 -0.9914 0.0146 +vn 0.3803 -0.9239 0.0428 +vn 0.6049 -0.7934 0.0682 +vn 0.7884 -0.6088 0.0888 +vn 0.9181 -0.3827 0.1034 +vn 0.9852 -0.1305 0.1110 +vn -0.1297 0.9914 0.0146 +vn -0.3803 0.9239 0.0428 +vn -0.6049 0.7934 0.0682 +vn -0.7884 0.6088 0.0888 +vn -0.9181 0.3827 0.1034 +vn -0.9852 0.1305 0.1110 +vn -0.1297 -0.9914 0.0146 +vn -0.3803 -0.9239 0.0428 +vn -0.6049 -0.7934 0.0682 +vn -0.7884 -0.6088 0.0888 +vn -0.9181 -0.3827 0.1034 +vn -0.9852 -0.1305 0.1110 +vn -0.1232 0.9914 0.0431 +vn -0.3612 0.9239 0.1264 +vn -0.5746 0.7934 0.2011 +vn -0.7488 0.6088 0.2620 +vn -0.8720 0.3827 0.3051 +vn -0.9358 0.1305 0.3275 +vn -0.1232 -0.9914 0.0431 +vn -0.3612 -0.9239 0.1264 +vn -0.5746 -0.7934 0.2011 +vn -0.7488 -0.6088 0.2620 +vn -0.8720 -0.3827 0.3051 +vn -0.9358 -0.1305 0.3275 +vn -0.1105 0.9914 0.0694 +vn -0.3240 0.9239 0.2036 +vn -0.5155 0.7934 0.3239 +vn -0.6718 0.6088 0.4221 +vn -0.7823 0.3827 0.4915 +vn -0.8395 0.1305 0.5275 +vn -0.1105 -0.9914 0.0694 +vn -0.3240 -0.9239 0.2036 +vn -0.5155 -0.7934 0.3239 +vn -0.6718 -0.6088 0.4221 +vn -0.7823 -0.3827 0.4915 +vn -0.8395 -0.1305 0.5275 +vn -0.0923 0.9914 0.0923 +vn -0.2706 0.9239 0.2706 +vn -0.4305 0.7934 0.4305 +vn -0.5610 0.6088 0.5610 +vn -0.6533 0.3827 0.6533 +vn -0.7011 0.1305 0.7011 +vn -0.0923 -0.9914 0.0923 +vn -0.2706 -0.9239 0.2706 +vn -0.4305 -0.7934 0.4305 +vn -0.5610 -0.6088 0.5610 +vn -0.6533 -0.3827 0.6533 +vn -0.7011 -0.1305 0.7011 +vn -0.0694 0.9914 0.1105 +vn -0.2036 0.9239 0.3240 +vn -0.3239 0.7934 0.5155 +vn -0.4221 0.6088 0.6718 +vn -0.4915 0.3827 0.7823 +vn -0.5275 0.1305 0.8395 +vn -0.0694 -0.9914 0.1105 +vn -0.2036 -0.9239 0.3240 +vn -0.3239 -0.7934 0.5155 +vn -0.4221 -0.6088 0.6718 +vn -0.4915 -0.3827 0.7823 +vn -0.5275 -0.1305 0.8395 +vn -0.0431 0.9914 0.1232 +vn -0.1264 0.9239 0.3612 +vn -0.2011 0.7934 0.5746 +vn -0.2620 0.6088 0.7488 +vn -0.3051 0.3827 0.8720 +vn -0.3275 0.1305 0.9358 +vn -0.0431 -0.9914 0.1232 +vn -0.1264 -0.9239 0.3612 +vn -0.2011 -0.7934 0.5746 +vn -0.2620 -0.6088 0.7488 +vn -0.3051 -0.3827 0.8720 +vn -0.3275 -0.1305 0.9358 +vn -0.0146 0.9914 0.1297 +vn -0.0428 0.9239 0.3803 +vn -0.0682 0.7934 0.6049 +vn -0.0888 0.6088 0.7884 +vn -0.1034 0.3827 0.9181 +vn -0.1110 0.1305 0.9852 +vn -0.0146 -0.9914 0.1297 +vn -0.0428 -0.9239 0.3803 +vn -0.0682 -0.7934 0.6049 +vn -0.0888 -0.6088 0.7884 +vn -0.1034 -0.3827 0.9181 +vn -0.1110 -0.1305 0.9852 +vn -0.0146 0.9914 -0.1297 +vn -0.0428 0.9239 -0.3803 +vn -0.0682 0.7934 -0.6049 +vn -0.0888 0.6088 -0.7884 +vn -0.1034 0.3827 -0.9181 +vn -0.1110 0.1305 -0.9852 +vn -0.0146 -0.9914 -0.1297 +vn -0.0428 -0.9239 -0.3803 +vn -0.0682 -0.7934 -0.6049 +vn -0.0888 -0.6088 -0.7884 +vn -0.1034 -0.3827 -0.9181 +vn -0.1110 -0.1305 -0.9852 +vn -0.0431 0.9914 -0.1232 +vn -0.1264 0.9239 -0.3612 +vn -0.2011 0.7934 -0.5746 +vn -0.2620 0.6088 -0.7488 +vn -0.3051 0.3827 -0.8720 +vn -0.3275 0.1305 -0.9358 +vn -0.0431 -0.9914 -0.1232 +vn -0.1264 -0.9239 -0.3612 +vn -0.2011 -0.7934 -0.5746 +vn -0.2620 -0.6088 -0.7488 +vn -0.3051 -0.3827 -0.8720 +vn -0.3275 -0.1305 -0.9358 +vn -0.0694 0.9914 -0.1105 +vn -0.2036 0.9239 -0.3240 +vn -0.3239 0.7934 -0.5155 +vn -0.4221 0.6088 -0.6718 +vn -0.4915 0.3827 -0.7823 +vn -0.5275 0.1305 -0.8395 +vn -0.0694 -0.9914 -0.1105 +vn -0.2036 -0.9239 -0.3240 +vn -0.3239 -0.7934 -0.5155 +vn -0.4221 -0.6088 -0.6718 +vn -0.4915 -0.3827 -0.7823 +vn -0.5275 -0.1305 -0.8395 +vn -0.0923 0.9914 -0.0923 +vn -0.2706 0.9239 -0.2706 +vn -0.4305 0.7934 -0.4305 +vn -0.5610 0.6088 -0.5610 +vn -0.6533 0.3827 -0.6533 +vn -0.7011 0.1305 -0.7011 +vn -0.0923 -0.9914 -0.0923 +vn -0.2706 -0.9239 -0.2706 +vn -0.4305 -0.7934 -0.4305 +vn -0.5610 -0.6088 -0.5610 +vn -0.6533 -0.3827 -0.6533 +vn -0.7011 -0.1305 -0.7011 +vn -0.1105 0.9914 -0.0694 +vn -0.3240 0.9239 -0.2036 +vn -0.5155 0.7934 -0.3239 +vn -0.6718 0.6088 -0.4221 +vn -0.7823 0.3827 -0.4915 +vn -0.8395 0.1305 -0.5275 +vn -0.1105 -0.9914 -0.0694 +vn -0.3240 -0.9239 -0.2036 +vn -0.5155 -0.7934 -0.3239 +vn -0.6718 -0.6088 -0.4221 +vn -0.7823 -0.3827 -0.4915 +vn -0.8395 -0.1305 -0.5275 +vn -0.1232 0.9914 -0.0431 +vn -0.3612 0.9239 -0.1264 +vn -0.5746 0.7934 -0.2011 +vn -0.7488 0.6088 -0.2620 +vn -0.8720 0.3827 -0.3051 +vn -0.9358 0.1305 -0.3275 +vn -0.1232 -0.9914 -0.0431 +vn -0.3612 -0.9239 -0.1264 +vn -0.5746 -0.7934 -0.2011 +vn -0.7488 -0.6088 -0.2620 +vn -0.8720 -0.3827 -0.3051 +vn -0.9358 -0.1305 -0.3275 +vn -0.1297 0.9914 -0.0146 +vn -0.3803 0.9239 -0.0428 +vn -0.6049 0.7934 -0.0682 +vn -0.7884 0.6088 -0.0888 +vn -0.9181 0.3827 -0.1034 +vn -0.9852 0.1305 -0.1110 +vn -0.1297 -0.9914 -0.0146 +vn -0.3803 -0.9239 -0.0428 +vn -0.6049 -0.7934 -0.0682 +vn -0.7884 -0.6088 -0.0888 +vn -0.9181 -0.3827 -0.1034 +vn -0.9852 -0.1305 -0.1110 +vn 0.9914 0.1305 0.0000 +vn 0.9239 0.3827 -0.0000 +vn 0.7934 0.6088 -0.0000 +vn 0.6088 0.7934 -0.0000 +vn 0.3827 0.9239 -0.0000 +vn 0.1305 0.9914 -0.0000 +vn 0.0000 0.1305 -0.9914 +vn 0.0000 0.3827 -0.9239 +vn 0.0000 0.6088 -0.7934 +vn 0.0000 0.7934 -0.6088 +vn 0.0000 0.9239 -0.3827 +vn 0.0000 0.9914 -0.1305 +vn -0.9914 0.1305 -0.0000 +vn -0.9239 0.3827 -0.0000 +vn -0.7934 0.6088 -0.0000 +vn -0.6088 0.7934 -0.0000 +vn -0.3827 0.9239 -0.0000 +vn -0.1305 0.9914 -0.0000 +vn 0.0000 0.1305 0.9914 +vn 0.0000 0.3827 0.9239 +vn 0.0000 0.6088 0.7934 +vn 0.0000 0.7934 0.6088 +vn 0.0000 0.9239 0.3827 +vn 0.0000 0.9914 0.1305 +vn 0.1305 -0.9914 0.0000 +vn 0.3827 -0.9239 0.0000 +vn 0.6088 -0.7934 0.0000 +vn 0.7934 -0.6088 0.0000 +vn 0.9239 -0.3827 0.0000 +vn 0.9914 -0.1305 0.0000 +vn 0.0000 -0.9914 0.1305 +vn 0.0000 -0.9239 0.3827 +vn 0.0000 -0.7934 0.6088 +vn 0.0000 -0.6088 0.7934 +vn 0.0000 -0.3827 0.9239 +vn -0.0000 -0.1305 0.9914 +vn -0.1305 -0.9914 0.0000 +vn -0.3827 -0.9239 0.0000 +vn -0.6088 -0.7934 0.0000 +vn -0.7934 -0.6088 0.0000 +vn -0.9239 -0.3827 0.0000 +vn -0.9914 -0.1305 -0.0000 +vn 0.0000 -0.1305 -0.9914 +vn 0.0000 -0.3827 -0.9239 +vn 0.0000 -0.6088 -0.7934 +vn 0.0000 -0.7934 -0.6088 +vn 0.0000 -0.9239 -0.3827 +vn 0.0000 -0.9914 -0.1305 +vn 0.6965 0.2113 0.6857 +vn 0.6965 0.2113 -0.6857 +vn 0.6419 0.3431 -0.6857 +vn 0.6419 0.3431 0.6857 +vn 0.7244 0.0713 0.6857 +vn 0.7244 0.0713 -0.6857 +vn 0.7244 -0.0713 0.6857 +vn 0.7244 -0.0713 -0.6857 +vn 0.6965 -0.2113 0.6857 +vn 0.6965 -0.2113 -0.6857 +vn 0.6419 -0.3431 0.6857 +vn 0.6419 -0.3431 -0.6857 +vn 0.5626 -0.4617 0.6857 +vn 0.5626 -0.4617 -0.6857 +vn 0.4617 -0.5626 0.6857 +vn 0.4617 -0.5626 -0.6857 +vn 0.3431 -0.6419 0.6857 +vn 0.3431 -0.6419 -0.6857 +vn 0.2113 -0.6965 0.6857 +vn 0.2113 -0.6965 -0.6857 +vn 0.0713 -0.7244 0.6857 +vn 0.0713 -0.7244 -0.6857 +vn -0.0713 -0.7244 0.6857 +vn -0.0713 -0.7244 -0.6857 +vn -0.2113 -0.6965 0.6857 +vn -0.2113 -0.6965 -0.6857 +vn -0.3431 -0.6419 0.6857 +vn -0.3431 -0.6419 -0.6857 +vn -0.4617 -0.5626 0.6857 +vn -0.4617 -0.5626 -0.6857 +vn -0.5626 -0.4617 0.6857 +vn -0.5626 -0.4617 -0.6857 +vn -0.6419 -0.3431 0.6857 +vn -0.6419 -0.3431 -0.6857 +vn -0.6965 -0.2113 0.6857 +vn -0.6965 -0.2113 -0.6857 +vn -0.7244 -0.0713 0.6857 +vn -0.7244 -0.0713 -0.6857 +vn -0.7244 0.0713 0.6857 +vn -0.7244 0.0713 -0.6857 +vn -0.6965 0.2113 0.6857 +vn -0.6965 0.2113 -0.6857 +vn -0.5626 0.4617 0.6857 +vn -0.5626 0.4617 -0.6857 +vn -0.6419 0.3431 -0.6857 +vn -0.6419 0.3431 0.6857 +vn -0.4617 0.5626 0.6857 +vn -0.4617 0.5626 -0.6857 +vn -0.3431 0.6419 0.6857 +vn -0.3431 0.6419 -0.6857 +vn -0.2113 0.6965 0.6857 +vn -0.2113 0.6965 -0.6857 +vn -0.0713 0.7244 0.6857 +vn -0.0713 0.7244 -0.6857 +vn 0.2113 0.6965 0.6857 +vn 0.2113 0.6965 -0.6857 +vn 0.0713 0.7244 -0.6857 +vn 0.0713 0.7244 0.6857 +vn 0.3431 0.6419 0.6857 +vn 0.3431 0.6419 -0.6857 +vn 0.4617 0.5626 0.6857 +vn 0.4617 0.5626 -0.6857 +vn -0.4604 0.8614 0.2147 +vn -0.4686 0.8767 0.1087 +vn -0.2886 0.9513 0.1087 +vn -0.2835 0.9346 0.2147 +vn -0.0957 0.9720 0.2147 +vn -0.0974 0.9893 0.1087 +vn 0.0957 0.9720 0.2147 +vn 0.0974 0.9893 0.1087 +vn 0.2835 0.9346 0.2147 +vn 0.2886 0.9513 0.1087 +vn 0.4604 0.8614 0.2147 +vn 0.4686 0.8767 0.1087 +vn 0.6196 0.7550 0.2147 +vn 0.6306 0.7684 0.1087 +vn 0.7684 0.6306 0.1087 +vn 0.7550 0.6196 0.2147 +vn 0.8614 0.4604 0.2147 +vn 0.8767 0.4686 0.1087 +vn 0.9346 0.2835 0.2147 +vn 0.9513 0.2886 0.1087 +vn 0.9720 0.0957 0.2147 +vn 0.9893 0.0974 0.1087 +vn 0.9893 -0.0974 0.1087 +vn 0.9720 -0.0957 0.2147 +vn 0.9513 -0.2886 0.1087 +vn 0.9346 -0.2835 0.2147 +vn 0.8614 -0.4604 0.2147 +vn 0.8767 -0.4686 0.1087 +vn 0.7684 -0.6306 0.1087 +vn 0.7550 -0.6196 0.2147 +vn 0.6306 -0.7684 0.1087 +vn 0.6196 -0.7550 0.2147 +vn 0.4604 -0.8614 0.2147 +vn 0.4686 -0.8767 0.1087 +vn 0.2886 -0.9513 0.1087 +vn 0.2835 -0.9346 0.2147 +vn 0.0957 -0.9720 0.2147 +vn 0.0974 -0.9893 0.1087 +vn -0.0974 -0.9893 0.1087 +vn -0.0957 -0.9720 0.2147 +vn -0.2835 -0.9346 0.2147 +vn -0.2886 -0.9513 0.1087 +vn -0.4686 -0.8767 0.1087 +vn -0.4604 -0.8614 0.2147 +vn -0.6306 -0.7684 0.1087 +vn -0.6196 -0.7550 0.2147 +vn -0.7684 -0.6306 0.1087 +vn -0.7550 -0.6196 0.2147 +vn -0.8767 -0.4686 0.1087 +vn -0.8614 -0.4604 0.2147 +vn -0.9513 -0.2886 0.1087 +vn -0.9346 -0.2835 0.2147 +vn -0.9893 -0.0974 0.1087 +vn -0.9720 -0.0957 0.2147 +vn -0.9346 0.2835 0.2147 +vn -0.9720 0.0957 0.2147 +vn -0.9893 0.0974 0.1087 +vn -0.9513 0.2886 0.1087 +vn -0.7550 0.6196 0.2147 +vn -0.8614 0.4604 0.2147 +vn -0.8767 0.4686 0.1087 +vn -0.7684 0.6306 0.1087 +vn -0.6196 0.7550 0.2147 +vn -0.6306 0.7684 0.1087 +vn 0.9893 -0.0974 -0.1087 +vn 0.9893 0.0974 -0.1087 +vn 0.9720 0.0957 -0.2147 +vn 0.9513 0.2886 -0.1087 +vn 0.9346 0.2835 -0.2147 +vn 0.9720 -0.0957 -0.2147 +vn 0.9346 -0.2835 -0.2147 +vn 0.9513 -0.2886 -0.1087 +vn 0.8767 0.4686 -0.1087 +vn 0.7684 0.6306 -0.1087 +vn 0.8614 0.4604 -0.2147 +vn 0.8614 -0.4604 -0.2147 +vn 0.8767 -0.4686 -0.1087 +vn 0.7550 0.6196 -0.2147 +vn 0.7550 -0.6196 -0.2147 +vn 0.7684 -0.6306 -0.1087 +vn 0.6196 0.7550 -0.2147 +vn 0.6306 0.7684 -0.1087 +vn 0.6196 -0.7550 -0.2147 +vn 0.6306 -0.7684 -0.1087 +vn 0.4604 0.8614 -0.2147 +vn 0.4686 0.8767 -0.1087 +vn 0.4604 -0.8614 -0.2147 +vn 0.4686 -0.8767 -0.1087 +vn 0.2835 0.9346 -0.2147 +vn 0.2886 0.9513 -0.1087 +vn 0.2835 -0.9346 -0.2147 +vn 0.2886 -0.9513 -0.1087 +vn 0.0957 0.9720 -0.2147 +vn 0.0974 0.9893 -0.1087 +vn 0.0957 -0.9720 -0.2147 +vn 0.0974 -0.9893 -0.1087 +vn -0.0957 0.9720 -0.2147 +vn -0.0974 0.9893 -0.1087 +vn -0.0957 -0.9720 -0.2147 +vn -0.0974 -0.9893 -0.1087 +vn 0.5626 0.4617 -0.6857 +vn 0.5626 0.4617 0.6857 +vn -0.8767 -0.4686 -0.1087 +vn -0.7684 -0.6306 -0.1087 +vn -0.2835 0.9346 -0.2147 +vn -0.2886 0.9513 -0.1087 +vn -0.2835 -0.9346 -0.2147 +vn -0.2886 -0.9513 -0.1087 +vn -0.4604 0.8614 -0.2147 +vn -0.4686 0.8767 -0.1087 +vn -0.4604 -0.8614 -0.2147 +vn -0.4686 -0.8767 -0.1087 +vn -0.6196 0.7550 -0.2147 +vn -0.6306 0.7684 -0.1087 +vn -0.6196 -0.7550 -0.2147 +vn -0.6306 -0.7684 -0.1087 +vn -0.7550 0.6196 -0.2147 +vn -0.7684 0.6306 -0.1087 +vn -0.7550 -0.6196 -0.2147 +vn -0.9513 0.2886 -0.1087 +vn -0.8767 0.4686 -0.1087 +vn -0.8614 0.4604 -0.2147 +vn -0.8614 -0.4604 -0.2147 +vn -0.9346 0.2835 -0.2147 +vn -0.9346 -0.2835 -0.2147 +vn -0.9513 -0.2886 -0.1087 +vn -0.9720 0.0957 -0.2147 +vn -0.9893 0.0974 -0.1087 +vn -0.9720 -0.0957 -0.2147 +vn -0.9893 -0.0974 -0.1087 +vn -0.7321 -0.3032 -0.6100 +vn -0.7933 0.6088 0.0000 +vn -0.6287 0.4824 -0.6100 +vn -0.1034 -0.7856 -0.6100 +vn 0.1034 0.7856 -0.6100 +vn 0.7321 0.3032 -0.6100 +vn 0.7933 -0.6088 0.0000 +vn 0.6287 -0.4824 -0.6100 +vn 0.7321 0.3032 0.6100 +vn 0.1034 0.7856 0.6100 +vn 0.6287 -0.4824 0.6100 +vn -0.6287 0.4824 0.6100 +vn -0.7321 -0.3032 0.6100 +vn -0.1034 -0.7856 0.6100 +vn -0.3032 -0.7321 -0.6100 +vn -0.7856 -0.1034 -0.6100 +vn 0.4824 -0.6287 -0.6100 +vn 0.6088 -0.7933 0.0000 +vn -0.6088 0.7933 0.0000 +vn -0.4824 0.6287 -0.6100 +vn 0.3032 0.7321 -0.6100 +vn 0.7856 0.1034 -0.6100 +vn 0.3032 0.7321 0.6100 +vn -0.4824 0.6287 0.6100 +vn 0.7856 0.1034 0.6100 +vn -0.7856 -0.1034 0.6100 +vn -0.3032 -0.7321 0.6100 +vn 0.4824 -0.6287 0.6100 +vn 0.3032 -0.7321 -0.6100 +vn -0.6088 -0.7933 0.0000 +vn -0.4824 -0.6287 -0.6100 +vn 0.7856 -0.1034 -0.6100 +vn -0.7856 0.1034 -0.6100 +vn -0.3032 0.7321 -0.6100 +vn 0.6088 0.7933 0.0000 +vn 0.4824 0.6287 -0.6100 +vn -0.3032 0.7321 0.6100 +vn -0.7856 0.1034 0.6100 +vn 0.4824 0.6287 0.6100 +vn -0.4824 -0.6287 0.6100 +vn 0.3032 -0.7321 0.6100 +vn 0.7856 -0.1034 0.6100 +vn 0.7321 -0.3032 -0.6100 +vn 0.1034 -0.7856 -0.6100 +vn 0.6287 0.4824 -0.6100 +vn 0.7933 0.6088 0.0000 +vn -0.7933 -0.6088 0.0000 +vn -0.6287 -0.4824 -0.6100 +vn -0.7321 0.3032 -0.6100 +vn -0.1034 0.7856 -0.6100 +vn -0.7321 0.3032 0.6100 +vn -0.6287 -0.4824 0.6100 +vn -0.1034 0.7856 0.6100 +vn 0.1034 -0.7856 0.6100 +vn 0.7321 -0.3032 0.6100 +vn 0.6287 0.4824 0.6100 +vn -0.5603 -0.5603 -0.6100 +vn -0.9659 0.2588 0.0000 +vn -0.7654 0.2051 -0.6100 +vn 0.2051 -0.7654 -0.6100 +vn 0.2588 -0.9659 0.0000 +vn -0.2588 0.9659 0.0000 +vn -0.2051 0.7654 -0.6100 +vn 0.5603 0.5603 -0.6100 +vn 0.9659 -0.2588 0.0000 +vn 0.7654 -0.2051 -0.6100 +vn 0.5603 0.5603 0.6100 +vn -0.2051 0.7654 0.6100 +vn 0.7654 -0.2051 0.6100 +vn -0.7654 0.2051 0.6100 +vn -0.5603 -0.5603 0.6100 +vn 0.2051 -0.7654 0.6100 +vn 0.0000 -0.7924 -0.6100 +vn -0.8660 -0.5000 0.0000 +vn -0.6862 -0.3962 -0.6100 +vn 0.6862 -0.3962 -0.6100 +vn 0.8660 -0.5000 0.0000 +vn -0.8660 0.5000 0.0000 +vn -0.6862 0.3962 -0.6100 +vn 0.0000 0.7924 -0.6100 +vn 0.8660 0.5000 0.0000 +vn 0.6862 0.3962 -0.6100 +vn 0.0000 0.7924 0.6100 +vn -0.6862 0.3962 0.6100 +vn 0.6862 0.3962 0.6100 +vn -0.6862 -0.3962 0.6100 +vn 0.0000 -0.7924 0.6100 +vn 0.6862 -0.3962 0.6100 +vn 0.5603 -0.5603 -0.6100 +vn -0.2588 -0.9659 0.0000 +vn -0.2051 -0.7654 -0.6100 +vn 0.7654 0.2051 -0.6100 +vn 0.9659 0.2588 0.0000 +vn -0.9659 -0.2588 0.0000 +vn -0.7654 -0.2051 -0.6100 +vn -0.5603 0.5603 -0.6100 +vn 0.2588 0.9659 0.0000 +vn 0.2051 0.7654 -0.6100 +vn -0.5603 0.5603 0.6100 +vn -0.7654 -0.2051 0.6100 +vn 0.2051 0.7654 0.6100 +vn -0.2051 -0.7654 0.6100 +vn 0.5603 -0.5603 0.6100 +vn 0.7654 0.2051 0.6100 +vn 0.7924 0.0000 -0.6100 +vn 0.5000 -0.8660 0.0000 +vn 0.3962 -0.6862 -0.6100 +vn 0.3962 0.6862 -0.6100 +vn 0.5000 0.8660 0.0000 +vn -0.5000 -0.8660 0.0000 +vn -0.3962 -0.6862 -0.6100 +vn -0.7924 0.0000 -0.6100 +vn -0.5000 0.8660 0.0000 +vn -0.3962 0.6862 -0.6100 +vn -0.7924 0.0000 0.6100 +vn -0.3962 -0.6862 0.6100 +vn -0.3962 0.6862 0.6100 +vn 0.3962 -0.6862 0.6100 +vn 0.7924 0.0000 0.6100 +vn 0.3962 0.6862 0.6100 +g Pipe_Cylinder.002_None +s off +f 129/1/1 132/2/1 133/3/1 134/4/1 135/5/1 136/6/1 +f 141/7/2 144/8/2 145/9/2 146/10/2 147/11/2 148/12/2 +f 153/13/1 156/14/1 157/15/1 158/16/1 159/17/1 160/18/1 +f 165/19/2 168/20/2 169/21/2 170/22/2 171/23/2 172/24/2 +f 177/25/1 180/26/1 181/27/1 182/28/1 183/29/1 184/30/1 +f 189/31/2 192/32/2 193/33/2 194/34/2 195/35/2 196/36/2 +f 201/37/1 204/38/1 205/39/1 206/40/1 207/41/1 208/42/1 +f 213/43/2 216/44/2 217/45/2 218/46/2 219/47/2 220/48/2 +f 225/49/1 228/50/1 229/51/1 230/52/1 231/53/1 232/54/1 +f 237/55/2 240/56/2 241/57/2 242/58/2 243/59/2 244/60/2 +f 249/61/1 252/62/1 253/63/1 254/64/1 255/65/1 256/66/1 +f 261/67/2 264/68/2 265/69/2 266/70/2 267/71/2 268/72/2 +f 273/73/1 276/74/1 277/75/1 278/76/1 279/77/1 280/78/1 +f 285/79/2 288/80/2 289/81/2 290/82/2 291/83/2 292/84/2 +f 297/85/1 300/86/1 301/87/1 302/88/1 303/89/1 304/90/1 +f 309/91/2 312/92/2 313/93/2 314/94/2 315/95/2 316/96/2 +f 353/97/2 354/98/2 384/99/2 383/100/2 381/101/2 382/102/2 380/103/2 379/104/2 378/105/2 377/106/2 375/107/2 376/108/2 374/109/2 373/110/2 372/111/2 371/112/2 370/113/2 369/114/2 368/115/2 367/116/2 366/117/2 365/118/2 364/119/2 363/120/2 362/121/2 361/122/2 360/123/2 359/124/2 358/125/2 357/126/2 356/127/2 355/128/2 +f 332/129/1 349/130/1 333/131/1 334/132/1 335/133/1 336/134/1 337/135/1 350/136/1 338/137/1 339/138/1 340/139/1 351/140/1 341/141/1 352/142/1 342/143/1 343/144/1 344/145/1 345/146/1 346/147/1 321/148/1 322/149/1 323/150/1 324/151/1 325/152/1 326/153/1 327/154/1 328/155/1 329/156/1 347/157/1 330/158/1 348/159/1 331/160/1 +f 389/161/1 399/162/1 404/163/1 408/164/1 412/165/1 417/166/1 416/167/1 421/168/1 425/169/1 429/170/1 433/171/1 438/172/1 447/173/1 448/174/1 446/175/1 440/176/1 435/177/1 431/178/1 427/179/1 423/180/1 419/181/1 414/182/1 410/183/1 406/184/1 401/185/1 397/186/1 390/187/1 391/188/1 388/189/1 385/190/1 386/191/1 387/192/1 +f 393/193/2 392/194/2 398/195/2 403/196/2 402/197/2 407/198/2 411/199/2 415/200/2 420/201/2 424/202/2 428/203/2 432/204/2 436/205/2 441/206/2 437/207/2 443/208/2 442/209/2 444/210/2 445/211/2 439/212/2 434/213/2 430/214/2 426/215/2 422/216/2 418/217/2 413/218/2 409/219/2 405/220/2 400/221/2 396/222/2 395/223/2 394/224/2 +f 449/225/1 452/226/1 453/227/1 454/228/1 455/229/1 456/230/1 +f 461/231/2 464/232/2 465/233/2 466/234/2 467/235/2 468/236/2 +f 473/237/1 476/238/1 477/239/1 478/240/1 479/241/1 480/242/1 +f 485/243/2 488/244/2 489/245/2 490/246/2 491/247/2 492/248/2 +f 497/249/1 500/250/1 501/251/1 502/252/1 503/253/1 504/254/1 +f 509/255/2 512/256/2 513/257/2 514/258/2 515/259/2 516/260/2 +f 521/261/1 524/262/1 525/263/1 526/264/1 527/265/1 528/266/1 +f 533/267/2 536/268/2 537/269/2 538/270/2 539/271/2 540/272/2 +f 545/273/1 548/274/1 549/275/1 550/276/1 551/277/1 552/278/1 +f 557/279/2 560/280/2 561/281/2 562/282/2 563/283/2 564/284/2 +f 569/285/1 572/286/1 573/287/1 574/288/1 575/289/1 576/290/1 +f 581/291/2 584/292/2 585/293/2 586/294/2 587/295/2 588/296/2 +f 593/297/1 596/298/1 597/299/1 598/300/1 599/301/1 600/302/1 +f 605/303/2 608/304/2 609/305/2 610/306/2 611/307/2 612/308/2 +f 617/309/1 620/310/1 621/311/1 622/312/1 623/313/1 624/314/1 +f 629/315/2 632/316/2 633/317/2 634/318/2 635/319/2 636/320/2 +f 1635/321/3 1656/322/3 1642/323/3 1593/324/3 +f 1754/325/4 1817/326/4 1859/327/4 1768/328/4 +f 1579/329/5 1712/330/5 1698/331/5 1537/332/5 +f 1803/333/6 1824/334/6 1810/335/6 1761/336/6 +f 1544/337/7 1747/338/7 1740/339/7 1551/340/7 +f 1915/341/8 1936/342/8 1922/343/8 1873/344/8 +f 1887/345/9 1964/346/9 1957/347/9 1894/348/9 +f 1894/348/10 1957/347/10 1950/349/10 1901/350/10 +f 1901/351/11 1950/352/11 1943/353/11 1908/354/11 +f 1908/354/12 1943/353/12 1936/342/12 1915/341/12 +f 1880/355/13 1971/356/13 1964/346/13 1887/345/13 +f 1530/357/2 1593/324/2 1642/323/2 1705/358/2 +f 1551/340/14 1740/339/14 1733/359/14 1558/360/14 +f 1558/360/15 1733/359/15 1726/361/15 1565/362/15 +f 1565/363/16 1726/364/16 1719/365/16 1572/366/16 +f 1572/366/17 1719/365/17 1712/330/17 1579/329/17 +f 1586/367/18 1649/368/18 1691/369/18 1600/370/18 +f 1866/371/19 1537/332/19 1698/331/19 1929/372/19 +f 1586/367/20 1761/336/20 1810/335/20 1649/368/20 +f 1607/373/21 1684/374/21 1677/375/21 1614/376/21 +f 1614/376/22 1677/375/22 1670/377/22 1621/378/22 +f 1621/379/23 1670/380/23 1663/381/23 1628/382/23 +f 1628/382/24 1663/381/24 1656/322/24 1635/321/24 +f 1697/383/25 1711/384/25 1718/385/25 1725/386/25 1732/387/25 1739/388/25 1746/389/25 1704/390/25 1641/391/25 1655/392/25 1662/393/25 1669/394/25 1676/395/25 1683/396/25 1690/397/25 1648/398/25 1809/399/25 1823/400/25 1830/401/25 1837/402/25 1844/403/25 1851/404/25 1858/405/25 1816/406/25 1921/407/25 1935/408/25 1942/409/25 1949/410/25 1956/411/25 1963/412/25 1970/413/25 1928/414/25 +f 1600/370/26 1691/369/26 1684/374/26 1607/373/26 +f 1754/325/1 1873/344/1 1922/343/1 1817/326/1 +f 1775/415/27 1852/416/27 1845/417/27 1782/418/27 +f 1782/418/28 1845/417/28 1838/419/28 1789/420/28 +f 1789/421/29 1838/422/29 1831/423/29 1796/424/29 +f 1796/424/30 1831/423/30 1824/334/30 1803/333/30 +f 1866/371/31 1929/372/31 1971/356/31 1880/355/31 +f 1768/328/32 1859/327/32 1852/416/32 1775/415/32 +f 1530/357/33 1705/358/33 1747/338/33 1544/337/33 +f 641/425/34 642/426/34 644/427/34 643/428/34 +f 643/428/35 644/427/35 646/429/35 645/430/35 +f 645/431/20 646/432/20 648/433/20 647/434/20 +f 647/434/36 648/433/36 650/435/36 649/436/36 +f 649/437/37 650/438/37 652/439/37 651/440/37 +f 651/440/1 652/439/1 654/441/1 653/442/1 +f 653/443/38 654/444/38 656/445/38 655/446/38 +f 655/446/39 656/445/39 658/447/39 657/448/39 +f 657/449/19 658/450/19 660/451/19 659/452/19 +f 659/452/40 660/451/40 662/453/40 661/454/40 +f 661/455/41 662/456/41 664/457/41 663/458/41 +f 663/458/2 664/457/2 642/459/2 641/460/2 +f 894/461/20 900/462/20 672/463/20 666/464/20 +f 690/465/42 696/466/42 708/467/42 702/468/42 +f 702/469/28 708/470/28 720/471/28 714/472/28 +f 714/472/43 720/471/43 732/473/43 726/474/43 +f 726/474/44 732/473/44 744/475/44 738/476/44 +f 738/476/45 744/475/45 756/477/45 750/478/45 +f 750/478/1 756/477/1 768/479/1 762/480/1 +f 762/480/46 768/479/46 780/481/46 774/482/46 +f 774/482/47 780/481/47 792/483/47 786/484/47 +f 786/484/48 792/483/48 804/485/48 798/486/48 +f 798/486/10 804/485/10 816/487/10 810/488/10 +f 810/489/49 816/490/49 828/491/49 822/492/49 +f 822/492/50 828/491/50 840/493/50 834/494/50 +f 834/494/51 840/493/51 852/495/51 846/496/51 +f 846/496/19 852/495/19 864/497/19 858/498/19 +f 858/498/52 864/497/52 876/499/52 870/500/52 +f 870/500/53 876/499/53 1356/501/53 1410/502/53 +f 954/503/54 912/504/54 948/505/54 966/506/54 +f 1140/507/55 1158/508/55 1146/509/55 1104/510/55 +f 954/503/2 1056/511/2 1002/512/2 912/504/2 +f 1296/513/56 1470/514/56 888/515/56 882/516/56 +f 1049/517/57 959/518/57 1193/519/57 +f 990/520/58 924/521/58 918/522/58 996/523/58 +f 1092/524/59 1014/525/59 1002/512/59 1056/511/59 +f 966/506/60 948/505/60 942/526/60 972/527/60 +f 972/527/61 942/526/61 936/528/61 978/529/61 +f 978/530/62 936/531/62 930/532/62 984/533/62 +f 984/533/63 930/532/63 924/521/63 990/520/63 +f 1248/534/64 1194/535/64 960/536/64 906/537/64 +f 1086/538/65 1020/539/65 1014/525/65 1092/524/65 +f 1098/540/66 1152/541/66 1188/542/66 1110/543/66 +f 1062/544/67 1044/545/67 1038/546/67 1068/547/67 +f 1068/547/68 1038/546/68 1032/548/68 1074/549/68 +f 1074/549/69 1032/548/69 1026/550/69 1080/551/69 +f 1080/552/70 1026/553/70 1020/539/70 1086/538/70 +f 1008/554/71 1050/555/71 1104/510/71 1146/509/71 +f 882/516/72 888/515/72 900/462/72 894/461/72 +f 1206/556/73 1284/557/73 1278/558/73 1212/559/73 +f 666/464/74 672/463/74 684/560/74 678/561/74 +f 1236/562/75 1254/563/75 1242/564/75 1200/565/75 +f 1212/559/76 1278/558/76 1272/566/76 1218/567/76 +f 1218/567/77 1272/566/77 1266/568/77 1224/569/77 +f 1224/569/78 1266/568/78 1260/570/78 1230/571/78 +f 1230/571/79 1260/570/79 1254/563/79 1236/562/79 +f 1524/572/80 1302/573/80 1290/574/80 1476/575/80 +f 1416/576/81 1350/577/81 1200/565/81 1242/564/81 +f 1152/541/82 1098/540/82 1476/575/82 1290/574/82 +f 1116/578/83 1182/579/83 1176/580/83 1122/581/83 +f 1122/581/84 1176/580/84 1170/582/84 1128/583/84 +f 1128/583/85 1170/582/85 1164/584/85 1134/585/85 +f 1134/585/86 1164/584/86 1158/508/86 1140/507/86 +f 1194/535/87 1248/534/87 1284/557/87 1206/556/87 +f 1110/543/88 1188/542/88 1182/579/88 1116/578/88 +f 1050/555/89 1008/554/89 1044/545/89 1062/544/89 +f 1404/586/90 1422/587/90 1410/502/90 1356/501/90 +f 1368/588/91 1458/589/91 1452/590/91 1374/591/91 +f 1374/591/92 1452/590/92 1446/592/92 1380/593/92 +f 1380/593/93 1446/592/93 1440/594/93 1386/595/93 +f 1386/595/94 1440/594/94 1434/596/94 1392/597/94 +f 1392/597/95 1434/596/95 1428/598/95 1398/599/95 +f 1398/599/96 1428/598/96 1422/587/96 1404/586/96 +f 1362/600/97 1464/601/97 1458/589/97 1368/588/97 +f 1518/602/98 1308/603/98 1302/573/98 1524/572/98 +f 1350/577/99 1416/576/99 1464/601/99 1362/600/99 +f 1482/604/100 1344/605/100 1338/606/100 1488/607/100 +f 1488/607/101 1338/606/101 1332/608/101 1494/609/101 +f 1494/609/102 1332/608/102 1326/610/102 1500/611/102 +f 1500/611/103 1326/610/103 1320/612/103 1506/613/103 +f 1506/613/104 1320/612/104 1314/614/104 1512/615/104 +f 1512/615/105 1314/614/105 1308/603/105 1518/602/105 +f 1470/514/106 1296/513/106 1344/605/106 1482/604/106 +f 996/523/107 918/522/107 906/537/107 960/536/107 +f 678/561/108 684/560/108 696/466/108 690/465/108 +f 666/464/109 678/561/109 682/616/109 670/617/109 +f 670/617/110 682/616/110 681/618/110 669/619/110 +f 669/620/111 681/621/111 680/622/111 668/623/111 +f 668/623/112 680/622/112 679/624/112 667/625/112 +f 667/625/113 679/624/113 677/626/113 665/627/113 +f 684/560/114 672/463/114 676/628/114 688/629/114 +f 688/629/115 676/628/115 675/630/115 687/631/115 +f 687/632/116 675/633/116 674/634/116 686/635/116 +f 686/635/117 674/634/117 673/636/117 685/637/117 +f 685/637/118 673/636/118 671/638/118 683/639/118 +f 678/561/119 690/465/119 694/640/119 682/616/119 +f 682/616/120 694/640/120 693/641/120 681/618/120 +f 681/621/121 693/642/121 692/643/121 680/622/121 +f 680/622/122 692/643/122 691/644/122 679/624/122 +f 679/624/123 691/644/123 689/645/123 677/626/123 +f 696/466/124 684/560/124 688/629/124 700/646/124 +f 700/646/125 688/629/125 687/631/125 699/647/125 +f 699/648/126 687/632/126 686/635/126 698/649/126 +f 698/649/127 686/635/127 685/637/127 697/650/127 +f 697/650/128 685/637/128 683/639/128 695/651/128 +f 690/465/129 702/468/129 706/652/129 694/640/129 +f 694/640/130 706/652/130 705/653/130 693/641/130 +f 693/642/131 705/654/131 704/655/131 692/643/131 +f 692/643/132 704/655/132 703/656/132 691/644/132 +f 691/644/133 703/656/133 701/657/133 689/645/133 +f 708/467/134 696/466/134 700/646/134 712/658/134 +f 712/658/135 700/646/135 699/647/135 711/659/135 +f 711/660/136 699/648/136 698/649/136 710/661/136 +f 710/661/137 698/649/137 697/650/137 709/662/137 +f 709/662/138 697/650/138 695/651/138 707/663/138 +f 702/469/139 714/472/139 718/664/139 706/665/139 +f 706/665/140 718/664/140 717/666/140 705/667/140 +f 705/654/141 717/668/141 716/669/141 704/655/141 +f 704/655/142 716/669/142 715/670/142 703/656/142 +f 703/656/143 715/670/143 713/671/143 701/657/143 +f 720/471/144 708/470/144 712/672/144 724/673/144 +f 724/673/145 712/672/145 711/674/145 723/675/145 +f 723/676/146 711/660/146 710/661/146 722/677/146 +f 722/677/147 710/661/147 709/662/147 721/678/147 +f 721/678/148 709/662/148 707/663/148 719/679/148 +f 714/472/149 726/474/149 730/680/149 718/664/149 +f 718/664/150 730/680/150 729/681/150 717/666/150 +f 717/668/151 729/682/151 728/683/151 716/669/151 +f 716/669/152 728/683/152 727/684/152 715/670/152 +f 715/670/153 727/684/153 725/685/153 713/671/153 +f 732/473/154 720/471/154 724/673/154 736/686/154 +f 736/686/155 724/673/155 723/675/155 735/687/155 +f 735/688/156 723/676/156 722/677/156 734/689/156 +f 734/689/157 722/677/157 721/678/157 733/690/157 +f 733/690/158 721/678/158 719/679/158 731/691/158 +f 726/474/159 738/476/159 742/692/159 730/680/159 +f 730/680/160 742/692/160 741/693/160 729/681/160 +f 729/682/161 741/694/161 740/695/161 728/683/161 +f 728/683/162 740/695/162 739/696/162 727/684/162 +f 727/684/163 739/696/163 737/697/163 725/685/163 +f 744/475/164 732/473/164 736/686/164 748/698/164 +f 748/698/165 736/686/165 735/687/165 747/699/165 +f 747/700/166 735/688/166 734/689/166 746/701/166 +f 746/701/167 734/689/167 733/690/167 745/702/167 +f 745/702/168 733/690/168 731/691/168 743/703/168 +f 738/476/169 750/478/169 754/704/169 742/692/169 +f 742/692/170 754/704/170 753/705/170 741/693/170 +f 741/694/171 753/706/171 752/707/171 740/695/171 +f 740/695/172 752/707/172 751/708/172 739/696/172 +f 739/696/173 751/708/173 749/709/173 737/697/173 +f 756/477/174 744/475/174 748/698/174 760/710/174 +f 760/710/175 748/698/175 747/699/175 759/711/175 +f 759/712/176 747/700/176 746/701/176 758/713/176 +f 758/713/177 746/701/177 745/702/177 757/714/177 +f 757/714/178 745/702/178 743/703/178 755/715/178 +f 750/478/179 762/480/179 766/716/179 754/704/179 +f 754/704/180 766/716/180 765/717/180 753/705/180 +f 753/705/181 765/717/181 764/718/181 752/719/181 +f 752/707/182 764/720/182 763/721/182 751/708/182 +f 751/708/183 763/721/183 761/722/183 749/709/183 +f 768/479/184 756/477/184 760/710/184 772/723/184 +f 772/723/185 760/710/185 759/711/185 771/724/185 +f 771/724/186 759/711/186 758/725/186 770/726/186 +f 770/727/187 758/713/187 757/714/187 769/728/187 +f 769/728/188 757/714/188 755/715/188 767/729/188 +f 762/480/189 774/482/189 778/730/189 766/716/189 +f 766/716/190 778/730/190 777/731/190 765/717/190 +f 765/732/191 777/733/191 776/734/191 764/720/191 +f 764/720/192 776/734/192 775/735/192 763/721/192 +f 763/721/193 775/735/193 773/736/193 761/722/193 +f 780/481/194 768/479/194 772/723/194 784/737/194 +f 784/737/195 772/723/195 771/724/195 783/738/195 +f 783/739/196 771/740/196 770/727/196 782/741/196 +f 782/741/197 770/727/197 769/728/197 781/742/197 +f 781/742/198 769/728/198 767/729/198 779/743/198 +f 774/482/199 786/484/199 790/744/199 778/730/199 +f 778/730/200 790/744/200 789/745/200 777/731/200 +f 777/733/201 789/746/201 788/747/201 776/734/201 +f 776/734/202 788/747/202 787/748/202 775/735/202 +f 775/735/203 787/748/203 785/749/203 773/736/203 +f 792/483/204 780/481/204 784/737/204 796/750/204 +f 796/750/205 784/737/205 783/738/205 795/751/205 +f 795/752/206 783/739/206 782/741/206 794/753/206 +f 794/753/207 782/741/207 781/742/207 793/754/207 +f 793/754/208 781/742/208 779/743/208 791/755/208 +f 786/484/209 798/486/209 802/756/209 790/744/209 +f 790/744/210 802/756/210 801/757/210 789/745/210 +f 789/746/211 801/758/211 800/759/211 788/747/211 +f 788/747/212 800/759/212 799/760/212 787/748/212 +f 787/748/213 799/760/213 797/761/213 785/749/213 +f 804/485/214 792/483/214 796/750/214 808/762/214 +f 808/762/215 796/750/215 795/751/215 807/763/215 +f 807/764/216 795/752/216 794/753/216 806/765/216 +f 806/765/217 794/753/217 793/754/217 805/766/217 +f 805/766/218 793/754/218 791/755/218 803/767/218 +f 798/486/219 810/488/219 814/768/219 802/756/219 +f 802/756/220 814/768/220 813/769/220 801/757/220 +f 801/758/221 813/770/221 812/771/221 800/759/221 +f 800/759/222 812/771/222 811/772/222 799/760/222 +f 799/760/223 811/772/223 809/773/223 797/761/223 +f 816/487/224 804/485/224 808/762/224 820/774/224 +f 820/774/225 808/762/225 807/763/225 819/775/225 +f 819/776/226 807/764/226 806/765/226 818/777/226 +f 818/777/227 806/765/227 805/766/227 817/778/227 +f 817/778/228 805/766/228 803/767/228 815/779/228 +f 810/489/229 822/492/229 826/780/229 814/781/229 +f 814/781/230 826/780/230 825/782/230 813/783/230 +f 813/770/231 825/784/231 824/785/231 812/771/231 +f 812/771/232 824/785/232 823/786/232 811/772/232 +f 811/772/233 823/786/233 821/787/233 809/773/233 +f 828/491/234 816/490/234 820/788/234 832/789/234 +f 832/789/235 820/788/235 819/790/235 831/791/235 +f 831/792/236 819/776/236 818/777/236 830/793/236 +f 830/793/237 818/777/237 817/778/237 829/794/237 +f 829/794/238 817/778/238 815/779/238 827/795/238 +f 822/492/239 834/494/239 838/796/239 826/780/239 +f 826/780/240 838/796/240 837/797/240 825/782/240 +f 825/784/241 837/798/241 836/799/241 824/785/241 +f 824/785/242 836/799/242 835/800/242 823/786/242 +f 823/786/243 835/800/243 833/801/243 821/787/243 +f 840/493/244 828/491/244 832/789/244 844/802/244 +f 844/802/245 832/789/245 831/791/245 843/803/245 +f 843/804/246 831/792/246 830/793/246 842/805/246 +f 842/805/247 830/793/247 829/794/247 841/806/247 +f 841/806/248 829/794/248 827/795/248 839/807/248 +f 834/494/249 846/496/249 850/808/249 838/796/249 +f 838/796/250 850/808/250 849/809/250 837/797/250 +f 837/798/251 849/810/251 848/811/251 836/799/251 +f 836/799/252 848/811/252 847/812/252 835/800/252 +f 835/800/253 847/812/253 845/813/253 833/801/253 +f 852/495/254 840/493/254 844/802/254 856/814/254 +f 856/814/255 844/802/255 843/803/255 855/815/255 +f 855/816/256 843/804/256 842/805/256 854/817/256 +f 854/817/257 842/805/257 841/806/257 853/818/257 +f 853/818/258 841/806/258 839/807/258 851/819/258 +f 846/496/259 858/498/259 862/820/259 850/808/259 +f 850/808/260 862/820/260 861/821/260 849/809/260 +f 849/810/261 861/822/261 860/823/261 848/811/261 +f 848/811/262 860/823/262 859/824/262 847/812/262 +f 847/812/263 859/824/263 857/825/263 845/813/263 +f 864/497/264 852/495/264 856/814/264 868/826/264 +f 868/826/265 856/814/265 855/815/265 867/827/265 +f 867/828/266 855/816/266 854/817/266 866/829/266 +f 866/829/267 854/817/267 853/818/267 865/830/267 +f 865/830/268 853/818/268 851/819/268 863/831/268 +f 858/498/269 870/500/269 874/832/269 862/820/269 +f 862/820/270 874/832/270 873/833/270 861/821/270 +f 861/822/271 873/834/271 872/835/271 860/823/271 +f 860/823/272 872/835/272 871/836/272 859/824/272 +f 859/824/273 871/836/273 869/837/273 857/825/273 +f 876/499/274 864/497/274 868/826/274 880/838/274 +f 880/838/275 868/826/275 867/827/275 879/839/275 +f 879/840/276 867/828/276 866/829/276 878/841/276 +f 878/841/277 866/829/277 865/830/277 877/842/277 +f 877/842/278 865/830/278 863/831/278 875/843/278 +f 882/516/279 894/461/279 898/844/279 886/845/279 +f 886/845/280 898/844/280 897/846/280 885/847/280 +f 885/848/281 897/849/281 896/850/281 884/851/281 +f 884/851/282 896/850/282 895/852/282 883/853/282 +f 883/853/283 895/852/283 893/854/283 881/855/283 +f 900/462/284 888/515/284 892/856/284 904/857/284 +f 904/857/285 892/856/285 891/858/285 903/859/285 +f 903/860/286 891/861/286 890/862/286 902/863/286 +f 902/863/287 890/862/287 889/864/287 901/865/287 +f 901/865/288 889/864/288 887/866/288 899/867/288 +f 894/461/289 666/464/289 670/617/289 898/844/289 +f 898/844/290 670/617/290 669/619/290 897/846/290 +f 897/849/291 669/620/291 668/623/291 896/850/291 +f 896/850/292 668/623/292 667/625/292 895/852/292 +f 895/852/293 667/625/293 665/627/293 893/854/293 +f 672/463/294 900/462/294 904/857/294 676/628/294 +f 676/628/295 904/857/295 903/859/295 675/630/295 +f 675/633/296 903/860/296 902/863/296 674/634/296 +f 674/634/297 902/863/297 901/865/297 673/636/297 +f 673/636/298 901/865/298 899/867/298 671/638/298 +f 965/868/299 953/869/299 955/870/299 967/871/299 +f 967/871/300 955/870/300 956/872/300 968/873/300 +f 968/873/301 956/872/301 957/874/301 969/875/301 +f 969/876/302 957/877/302 958/878/302 970/879/302 +f 970/879/303 958/878/303 954/503/303 966/506/303 +f 911/880/304 947/881/304 949/882/304 913/883/304 +f 913/883/305 949/882/305 950/884/305 914/885/305 +f 914/885/306 950/884/306 951/886/306 915/887/306 +f 915/888/307 951/889/307 952/890/307 916/891/307 +f 916/891/308 952/890/308 948/505/308 912/504/308 +f 971/892/309 965/868/309 967/871/309 973/893/309 +f 973/893/310 967/871/310 968/873/310 974/894/310 +f 974/894/311 968/873/311 969/875/311 975/895/311 +f 975/896/312 969/876/312 970/879/312 976/897/312 +f 976/897/313 970/879/313 966/506/313 972/527/313 +f 947/881/314 941/898/314 943/899/314 949/882/314 +f 949/882/315 943/899/315 944/900/315 950/884/315 +f 950/884/316 944/900/316 945/901/316 951/886/316 +f 951/889/317 945/902/317 946/903/317 952/890/317 +f 952/890/318 946/903/318 942/526/318 948/505/318 +f 977/904/319 971/892/319 973/893/319 979/905/319 +f 979/905/320 973/893/320 974/894/320 980/906/320 +f 980/906/321 974/894/321 975/895/321 981/907/321 +f 981/908/322 975/896/322 976/897/322 982/909/322 +f 982/909/323 976/897/323 972/527/323 978/529/323 +f 941/898/324 935/910/324 937/911/324 943/899/324 +f 943/899/325 937/911/325 938/912/325 944/900/325 +f 944/900/326 938/912/326 939/913/326 945/901/326 +f 945/902/327 939/914/327 940/915/327 946/903/327 +f 946/903/328 940/915/328 936/528/328 942/526/328 +f 983/916/329 977/904/329 979/905/329 985/917/329 +f 985/917/330 979/905/330 980/906/330 986/918/330 +f 986/918/331 980/906/331 981/907/331 987/919/331 +f 987/920/332 981/921/332 982/922/332 988/923/332 +f 988/923/333 982/922/333 978/530/333 984/533/333 +f 935/910/334 929/924/334 931/925/334 937/911/334 +f 937/911/335 931/925/335 932/926/335 938/912/335 +f 938/912/336 932/926/336 933/927/336 939/913/336 +f 939/928/337 933/929/337 934/930/337 940/931/337 +f 940/931/338 934/930/338 930/532/338 936/531/338 +f 989/932/339 983/916/339 985/917/339 991/933/339 +f 991/933/340 985/917/340 986/918/340 992/934/340 +f 992/934/341 986/918/341 987/919/341 993/935/341 +f 993/936/342 987/920/342 988/923/342 994/937/342 +f 994/937/343 988/923/343 984/533/343 990/520/343 +f 929/924/344 923/938/344 925/939/344 931/925/344 +f 931/925/345 925/939/345 926/940/345 932/926/345 +f 932/926/346 926/940/346 927/941/346 933/927/346 +f 933/929/347 927/942/347 928/943/347 934/930/347 +f 934/930/348 928/943/348 924/521/348 930/532/348 +f 995/944/349 989/932/349 991/933/349 997/945/349 +f 997/945/350 991/933/350 992/934/350 998/946/350 +f 998/946/351 992/934/351 993/935/351 999/947/351 +f 999/948/352 993/936/352 994/937/352 1000/949/352 +f 1000/949/353 994/937/353 990/520/353 996/523/353 +f 923/938/354 917/950/354 919/951/354 925/939/354 +f 925/939/355 919/951/355 920/952/355 926/940/355 +f 926/940/356 920/952/356 921/953/356 927/941/356 +f 927/942/357 921/954/357 922/955/357 928/943/357 +f 928/943/358 922/955/358 918/522/358 924/521/358 +f 959/518/359 995/944/359 997/945/359 961/956/359 +f 961/956/360 997/945/360 998/946/360 962/957/360 +f 962/957/361 998/946/361 999/947/361 963/958/361 +f 963/959/362 999/948/362 1000/949/362 964/960/362 +f 964/960/363 1000/949/363 996/523/363 960/536/363 +f 917/950/364 905/961/364 907/962/364 919/951/364 +f 919/951/365 907/962/365 908/963/365 920/952/365 +f 920/952/366 908/963/366 909/964/366 921/953/366 +f 921/954/367 909/965/367 910/966/367 922/955/367 +f 922/955/368 910/966/368 906/537/368 918/522/368 +f 1061/967/369 1049/517/369 1051/968/369 1063/969/369 +f 1063/969/370 1051/968/370 1052/970/370 1064/971/370 +f 1064/971/371 1052/970/371 1053/972/371 1065/973/371 +f 1065/974/372 1053/975/372 1054/976/372 1066/977/372 +f 1066/977/373 1054/976/373 1050/555/373 1062/544/373 +f 1007/978/374 1043/979/374 1045/980/374 1009/981/374 +f 1009/981/375 1045/980/375 1046/982/375 1010/983/375 +f 1010/983/376 1046/982/376 1047/984/376 1011/985/376 +f 1011/986/377 1047/987/377 1048/988/377 1012/989/377 +f 1012/989/378 1048/988/378 1044/545/378 1008/554/378 +f 1067/990/379 1061/967/379 1063/969/379 1069/991/379 +f 1069/991/380 1063/969/380 1064/971/380 1070/992/380 +f 1070/992/381 1064/971/381 1065/973/381 1071/993/381 +f 1071/994/382 1065/974/382 1066/977/382 1072/995/382 +f 1072/995/383 1066/977/383 1062/544/383 1068/547/383 +f 1043/979/384 1037/996/384 1039/997/384 1045/980/384 +f 1045/980/385 1039/997/385 1040/998/385 1046/982/385 +f 1046/982/386 1040/998/386 1041/999/386 1047/984/386 +f 1047/987/387 1041/1000/387 1042/1001/387 1048/988/387 +f 1048/988/388 1042/1001/388 1038/546/388 1044/545/388 +f 1073/1002/389 1067/990/389 1069/991/389 1075/1003/389 +f 1075/1003/390 1069/991/390 1070/992/390 1076/1004/390 +f 1076/1004/391 1070/992/391 1071/993/391 1077/1005/391 +f 1077/1006/392 1071/994/392 1072/995/392 1078/1007/392 +f 1078/1007/393 1072/995/393 1068/547/393 1074/549/393 +f 1037/996/394 1031/1008/394 1033/1009/394 1039/997/394 +f 1039/997/395 1033/1009/395 1034/1010/395 1040/998/395 +f 1040/998/396 1034/1010/396 1035/1011/396 1041/999/396 +f 1041/1000/397 1035/1012/397 1036/1013/397 1042/1001/397 +f 1042/1001/398 1036/1013/398 1032/548/398 1038/546/398 +f 1079/1014/399 1073/1002/399 1075/1003/399 1081/1015/399 +f 1081/1015/400 1075/1003/400 1076/1004/400 1082/1016/400 +f 1082/1016/401 1076/1004/401 1077/1005/401 1083/1017/401 +f 1083/1018/402 1077/1006/402 1078/1007/402 1084/1019/402 +f 1084/1019/403 1078/1007/403 1074/549/403 1080/551/403 +f 1031/1008/404 1025/1020/404 1027/1021/404 1033/1009/404 +f 1033/1009/405 1027/1021/405 1028/1022/405 1034/1010/405 +f 1034/1010/406 1028/1022/406 1029/1023/406 1035/1011/406 +f 1035/1012/407 1029/1024/407 1030/1025/407 1036/1013/407 +f 1036/1013/408 1030/1025/408 1026/550/408 1032/548/408 +f 1085/1026/409 1079/1014/409 1081/1015/409 1087/1027/409 +f 1087/1027/410 1081/1015/410 1082/1016/410 1088/1028/410 +f 1088/1028/411 1082/1016/411 1083/1017/411 1089/1029/411 +f 1089/1030/412 1083/1031/412 1084/1032/412 1090/1033/412 +f 1090/1033/413 1084/1032/413 1080/552/413 1086/538/413 +f 1025/1020/414 1019/1034/414 1021/1035/414 1027/1021/414 +f 1027/1021/415 1021/1035/415 1022/1036/415 1028/1022/415 +f 1028/1022/416 1022/1036/416 1023/1037/416 1029/1023/416 +f 1029/1038/417 1023/1039/417 1024/1040/417 1030/1041/417 +f 1030/1041/418 1024/1040/418 1020/539/418 1026/553/418 +f 1091/1042/419 1085/1026/419 1087/1027/419 1093/1043/419 +f 1093/1043/420 1087/1027/420 1088/1028/420 1094/1044/420 +f 1094/1044/421 1088/1028/421 1089/1029/421 1095/1045/421 +f 1095/1046/422 1089/1030/422 1090/1033/422 1096/1047/422 +f 1096/1047/423 1090/1033/423 1086/538/423 1092/524/423 +f 1019/1034/424 1013/1048/424 1015/1049/424 1021/1035/424 +f 1021/1035/425 1015/1049/425 1016/1050/425 1022/1036/425 +f 1022/1036/426 1016/1050/426 1017/1051/426 1023/1037/426 +f 1023/1039/427 1017/1052/427 1018/1053/427 1024/1040/427 +f 1024/1040/428 1018/1053/428 1014/525/428 1020/539/428 +f 1055/1054/429 1091/1042/429 1093/1043/429 1057/1055/429 +f 1057/1055/430 1093/1043/430 1094/1044/430 1058/1056/430 +f 1058/1056/431 1094/1044/431 1095/1045/431 1059/1057/431 +f 1059/1058/432 1095/1046/432 1096/1047/432 1060/1059/432 +f 1060/1059/433 1096/1047/433 1092/524/433 1056/511/433 +f 1013/1048/434 1001/1060/434 1003/1061/434 1015/1049/434 +f 1015/1049/435 1003/1061/435 1004/1062/435 1016/1050/435 +f 1016/1050/436 1004/1062/436 1005/1063/436 1017/1051/436 +f 1017/1052/437 1005/1064/437 1006/1065/437 1018/1053/437 +f 1018/1053/438 1006/1065/438 1002/512/438 1014/525/438 +f 953/869/439 1055/1054/439 1057/1055/439 955/870/439 +f 955/870/440 1057/1055/440 1058/1056/440 956/872/440 +f 956/872/441 1058/1056/441 1059/1057/441 957/874/441 +f 957/877/442 1059/1058/442 1060/1059/442 958/878/442 +f 958/878/443 1060/1059/443 1056/511/443 954/503/443 +f 1001/1060/444 911/880/444 913/883/444 1003/1061/444 +f 1003/1061/445 913/883/445 914/885/445 1004/1062/445 +f 1004/1062/446 914/885/446 915/887/446 1005/1063/446 +f 1005/1064/447 915/888/447 916/891/447 1006/1065/447 +f 1006/1065/448 916/891/448 912/504/448 1002/512/448 +f 1205/1066/449 1193/519/449 1195/1067/449 1207/1068/449 +f 1207/1068/450 1195/1067/450 1196/1069/450 1208/1070/450 +f 1208/1070/451 1196/1069/451 1197/1071/451 1209/1072/451 +f 1209/1073/452 1197/1074/452 1198/1075/452 1210/1076/452 +f 1210/1076/453 1198/1075/453 1194/535/453 1206/556/453 +f 1247/1077/454 1283/1078/454 1285/1079/454 1249/1080/454 +f 1249/1080/455 1285/1079/455 1286/1081/455 1250/1082/455 +f 1250/1082/456 1286/1081/456 1287/1083/456 1251/1084/456 +f 1251/1085/457 1287/1086/457 1288/1087/457 1252/1088/457 +f 1252/1088/458 1288/1087/458 1284/557/458 1248/534/458 +f 1211/1089/459 1205/1066/459 1207/1068/459 1213/1090/459 +f 1213/1090/460 1207/1068/460 1208/1070/460 1214/1091/460 +f 1214/1091/461 1208/1070/461 1209/1072/461 1215/1092/461 +f 1215/1093/462 1209/1073/462 1210/1076/462 1216/1094/462 +f 1216/1094/463 1210/1076/463 1206/556/463 1212/559/463 +f 1283/1078/464 1277/1095/464 1279/1096/464 1285/1079/464 +f 1285/1079/465 1279/1096/465 1280/1097/465 1286/1081/465 +f 1286/1081/466 1280/1097/466 1281/1098/466 1287/1083/466 +f 1287/1086/467 1281/1099/467 1282/1100/467 1288/1087/467 +f 1288/1087/468 1282/1100/468 1278/558/468 1284/557/468 +f 1217/1101/469 1211/1089/469 1213/1090/469 1219/1102/469 +f 1219/1102/470 1213/1090/470 1214/1091/470 1220/1103/470 +f 1220/1103/471 1214/1091/471 1215/1092/471 1221/1104/471 +f 1221/1105/472 1215/1093/472 1216/1094/472 1222/1106/472 +f 1222/1106/473 1216/1094/473 1212/559/473 1218/567/473 +f 1277/1095/474 1271/1107/474 1273/1108/474 1279/1096/474 +f 1279/1096/475 1273/1108/475 1274/1109/475 1280/1097/475 +f 1280/1097/476 1274/1109/476 1275/1110/476 1281/1098/476 +f 1281/1099/477 1275/1111/477 1276/1112/477 1282/1100/477 +f 1282/1100/478 1276/1112/478 1272/566/478 1278/558/478 +f 1223/1113/479 1217/1101/479 1219/1102/479 1225/1114/479 +f 1225/1114/480 1219/1102/480 1220/1103/480 1226/1115/480 +f 1226/1115/481 1220/1103/481 1221/1104/481 1227/1116/481 +f 1227/1117/482 1221/1105/482 1222/1106/482 1228/1118/482 +f 1228/1118/483 1222/1106/483 1218/567/483 1224/569/483 +f 1271/1107/484 1265/1119/484 1267/1120/484 1273/1108/484 +f 1273/1108/485 1267/1120/485 1268/1121/485 1274/1109/485 +f 1274/1109/486 1268/1121/486 1269/1122/486 1275/1110/486 +f 1275/1111/487 1269/1123/487 1270/1124/487 1276/1112/487 +f 1276/1112/488 1270/1124/488 1266/568/488 1272/566/488 +f 1229/1125/489 1223/1113/489 1225/1114/489 1231/1126/489 +f 1231/1126/490 1225/1114/490 1226/1115/490 1232/1127/490 +f 1232/1127/491 1226/1115/491 1227/1116/491 1233/1128/491 +f 1233/1129/492 1227/1117/492 1228/1118/492 1234/1130/492 +f 1234/1130/493 1228/1118/493 1224/569/493 1230/571/493 +f 1265/1119/494 1259/1131/494 1261/1132/494 1267/1120/494 +f 1267/1120/495 1261/1132/495 1262/1133/495 1268/1121/495 +f 1268/1121/496 1262/1133/496 1263/1134/496 1269/1122/496 +f 1269/1123/497 1263/1135/497 1264/1136/497 1270/1124/497 +f 1270/1124/498 1264/1136/498 1260/570/498 1266/568/498 +f 1235/1137/499 1229/1125/499 1231/1126/499 1237/1138/499 +f 1237/1138/500 1231/1126/500 1232/1127/500 1238/1139/500 +f 1238/1139/501 1232/1127/501 1233/1128/501 1239/1140/501 +f 1239/1141/502 1233/1129/502 1234/1130/502 1240/1142/502 +f 1240/1142/503 1234/1130/503 1230/571/503 1236/562/503 +f 1259/1131/504 1253/1143/504 1255/1144/504 1261/1132/504 +f 1261/1132/505 1255/1144/505 1256/1145/505 1262/1133/505 +f 1262/1133/506 1256/1145/506 1257/1146/506 1263/1134/506 +f 1263/1135/507 1257/1147/507 1258/1148/507 1264/1136/507 +f 1264/1136/508 1258/1148/508 1254/563/508 1260/570/508 +f 1199/1149/509 1235/1137/509 1237/1138/509 1201/1150/509 +f 1201/1150/510 1237/1138/510 1238/1139/510 1202/1151/510 +f 1202/1151/511 1238/1139/511 1239/1140/511 1203/1152/511 +f 1203/1153/512 1239/1141/512 1240/1142/512 1204/1154/512 +f 1204/1154/513 1240/1142/513 1236/562/513 1200/565/513 +f 1253/1143/514 1241/1155/514 1243/1156/514 1255/1144/514 +f 1255/1144/515 1243/1156/515 1244/1157/515 1256/1145/515 +f 1256/1145/516 1244/1157/516 1245/1158/516 1257/1146/516 +f 1257/1147/517 1245/1159/517 1246/1160/517 1258/1148/517 +f 1258/1148/518 1246/1160/518 1242/564/518 1254/563/518 +f 1109/1161/519 1097/1162/519 1099/1163/519 1111/1164/519 +f 1111/1164/520 1099/1163/520 1100/1165/520 1112/1166/520 +f 1112/1166/521 1100/1165/521 1101/1167/521 1113/1168/521 +f 1113/1169/522 1101/1170/522 1102/1171/522 1114/1172/522 +f 1114/1172/523 1102/1171/523 1098/540/523 1110/543/523 +f 1151/1173/524 1187/1174/524 1189/1175/524 1153/1176/524 +f 1153/1176/525 1189/1175/525 1190/1177/525 1154/1178/525 +f 1154/1178/526 1190/1177/526 1191/1179/526 1155/1180/526 +f 1155/1181/527 1191/1182/527 1192/1183/527 1156/1184/527 +f 1156/1184/528 1192/1183/528 1188/542/528 1152/541/528 +f 1115/1185/529 1109/1161/529 1111/1164/529 1117/1186/529 +f 1117/1186/530 1111/1164/530 1112/1166/530 1118/1187/530 +f 1118/1187/531 1112/1166/531 1113/1168/531 1119/1188/531 +f 1119/1189/532 1113/1169/532 1114/1172/532 1120/1190/532 +f 1120/1190/533 1114/1172/533 1110/543/533 1116/578/533 +f 1187/1174/534 1181/1191/534 1183/1192/534 1189/1175/534 +f 1189/1175/535 1183/1192/535 1184/1193/535 1190/1177/535 +f 1190/1177/536 1184/1193/536 1185/1194/536 1191/1179/536 +f 1191/1182/537 1185/1195/537 1186/1196/537 1192/1183/537 +f 1192/1183/538 1186/1196/538 1182/579/538 1188/542/538 +f 1121/1197/539 1115/1185/539 1117/1186/539 1123/1198/539 +f 1123/1198/540 1117/1186/540 1118/1187/540 1124/1199/540 +f 1124/1199/541 1118/1187/541 1119/1188/541 1125/1200/541 +f 1125/1201/542 1119/1189/542 1120/1190/542 1126/1202/542 +f 1126/1202/543 1120/1190/543 1116/578/543 1122/581/543 +f 1181/1191/544 1175/1203/544 1177/1204/544 1183/1192/544 +f 1183/1192/545 1177/1204/545 1178/1205/545 1184/1193/545 +f 1184/1193/546 1178/1205/546 1179/1206/546 1185/1194/546 +f 1185/1195/547 1179/1207/547 1180/1208/547 1186/1196/547 +f 1186/1196/548 1180/1208/548 1176/580/548 1182/579/548 +f 1127/1209/549 1121/1197/549 1123/1198/549 1129/1210/549 +f 1129/1210/550 1123/1198/550 1124/1199/550 1130/1211/550 +f 1130/1211/551 1124/1199/551 1125/1200/551 1131/1212/551 +f 1131/1213/552 1125/1201/552 1126/1202/552 1132/1214/552 +f 1132/1214/553 1126/1202/553 1122/581/553 1128/583/553 +f 1175/1203/554 1169/1215/554 1171/1216/554 1177/1204/554 +f 1177/1204/555 1171/1216/555 1172/1217/555 1178/1205/555 +f 1178/1205/556 1172/1217/556 1173/1218/556 1179/1206/556 +f 1179/1207/557 1173/1219/557 1174/1220/557 1180/1208/557 +f 1180/1208/558 1174/1220/558 1170/582/558 1176/580/558 +f 1133/1221/559 1127/1209/559 1129/1210/559 1135/1222/559 +f 1135/1222/560 1129/1210/560 1130/1211/560 1136/1223/560 +f 1136/1223/561 1130/1211/561 1131/1212/561 1137/1224/561 +f 1137/1225/562 1131/1213/562 1132/1214/562 1138/1226/562 +f 1138/1226/563 1132/1214/563 1128/583/563 1134/585/563 +f 1169/1215/564 1163/1227/564 1165/1228/564 1171/1216/564 +f 1171/1216/565 1165/1228/565 1166/1229/565 1172/1217/565 +f 1172/1217/566 1166/1229/566 1167/1230/566 1173/1218/566 +f 1173/1219/567 1167/1231/567 1168/1232/567 1174/1220/567 +f 1174/1220/568 1168/1232/568 1164/584/568 1170/582/568 +f 1139/1233/569 1133/1221/569 1135/1222/569 1141/1234/569 +f 1141/1234/570 1135/1222/570 1136/1223/570 1142/1235/570 +f 1142/1235/571 1136/1223/571 1137/1224/571 1143/1236/571 +f 1143/1237/572 1137/1225/572 1138/1226/572 1144/1238/572 +f 1144/1238/573 1138/1226/573 1134/585/573 1140/507/573 +f 1163/1227/574 1157/1239/574 1159/1240/574 1165/1228/574 +f 1165/1228/575 1159/1240/575 1160/1241/575 1166/1229/575 +f 1166/1229/576 1160/1241/576 1161/1242/576 1167/1230/576 +f 1167/1231/577 1161/1243/577 1162/1244/577 1168/1232/577 +f 1168/1232/578 1162/1244/578 1158/508/578 1164/584/578 +f 1103/1245/579 1139/1233/579 1141/1234/579 1105/1246/579 +f 1105/1246/580 1141/1234/580 1142/1235/580 1106/1247/580 +f 1106/1247/581 1142/1235/581 1143/1236/581 1107/1248/581 +f 1107/1249/582 1143/1237/582 1144/1238/582 1108/1250/582 +f 1108/1250/583 1144/1238/583 1140/507/583 1104/510/583 +f 1157/1239/584 1145/1251/584 1147/1252/584 1159/1240/584 +f 1159/1240/585 1147/1252/585 1148/1253/585 1160/1241/585 +f 1160/1241/586 1148/1253/586 1149/1254/586 1161/1242/586 +f 1161/1243/587 1149/1255/587 1150/1256/587 1162/1244/587 +f 1162/1244/588 1150/1256/588 1146/509/588 1158/508/588 +f 1145/1251/589 1007/978/589 1009/981/589 1147/1252/589 +f 1147/1252/590 1009/981/590 1010/983/590 1148/1253/590 +f 1148/1253/591 1010/983/591 1011/985/591 1149/1254/591 +f 1149/1255/592 1011/986/592 1012/989/592 1150/1256/592 +f 1150/1256/593 1012/989/593 1008/554/593 1146/509/593 +f 1049/517/594 1103/1245/594 1105/1246/594 1051/968/594 +f 1051/968/595 1105/1246/595 1106/1247/595 1052/970/595 +f 1052/970/596 1106/1247/596 1107/1248/596 1053/972/596 +f 1053/975/597 1107/1249/597 1108/1250/597 1054/976/597 +f 1054/976/598 1108/1250/598 1104/510/598 1050/555/598 +f 905/961/599 1247/1077/599 1249/1080/599 907/962/599 +f 907/962/600 1249/1080/600 1250/1082/600 908/963/600 +f 908/963/601 1250/1082/601 1251/1084/601 909/964/601 +f 909/965/602 1251/1085/602 1252/1088/602 910/966/602 +f 910/966/603 1252/1088/603 1248/534/603 906/537/603 +f 1193/519/604 959/518/604 961/956/604 1195/1067/604 +f 1195/1067/605 961/956/605 962/957/605 1196/1069/605 +f 1196/1069/606 962/957/606 963/958/606 1197/1071/606 +f 1197/1074/607 963/959/607 964/960/607 1198/1075/607 +f 1198/1075/608 964/960/608 960/536/608 1194/535/608 +f 1361/1257/609 1349/1258/609 1351/1259/609 1363/1260/609 +f 1363/1260/610 1351/1259/610 1352/1261/610 1364/1262/610 +f 1364/1262/611 1352/1261/611 1353/1263/611 1365/1264/611 +f 1365/1265/612 1353/1266/612 1354/1267/612 1366/1268/612 +f 1366/1268/613 1354/1267/613 1350/577/613 1362/600/613 +f 1415/1269/614 1463/1270/614 1465/1271/614 1417/1272/614 +f 1417/1272/615 1465/1271/615 1466/1273/615 1418/1274/615 +f 1418/1274/616 1466/1273/616 1467/1275/616 1419/1276/616 +f 1419/1277/617 1467/1278/617 1468/1279/617 1420/1280/617 +f 1420/1280/618 1468/1279/618 1464/601/618 1416/576/618 +f 1367/1281/619 1361/1257/619 1363/1260/619 1369/1282/619 +f 1369/1282/620 1363/1260/620 1364/1262/620 1370/1283/620 +f 1370/1283/621 1364/1262/621 1365/1264/621 1371/1284/621 +f 1371/1285/622 1365/1265/622 1366/1268/622 1372/1286/622 +f 1372/1286/623 1366/1268/623 1362/600/623 1368/588/623 +f 1463/1270/624 1457/1287/624 1459/1288/624 1465/1271/624 +f 1465/1271/625 1459/1288/625 1460/1289/625 1466/1273/625 +f 1466/1273/626 1460/1289/626 1461/1290/626 1467/1275/626 +f 1467/1278/627 1461/1291/627 1462/1292/627 1468/1279/627 +f 1468/1279/628 1462/1292/628 1458/589/628 1464/601/628 +f 1373/1293/629 1367/1281/629 1369/1282/629 1375/1294/629 +f 1375/1294/630 1369/1282/630 1370/1283/630 1376/1295/630 +f 1376/1295/631 1370/1283/631 1371/1284/631 1377/1296/631 +f 1377/1297/632 1371/1285/632 1372/1286/632 1378/1298/632 +f 1378/1298/633 1372/1286/633 1368/588/633 1374/591/633 +f 1457/1287/634 1451/1299/634 1453/1300/634 1459/1288/634 +f 1459/1288/635 1453/1300/635 1454/1301/635 1460/1289/635 +f 1460/1289/636 1454/1301/636 1455/1302/636 1461/1290/636 +f 1461/1291/637 1455/1303/637 1456/1304/637 1462/1292/637 +f 1462/1292/638 1456/1304/638 1452/590/638 1458/589/638 +f 1379/1305/639 1373/1293/639 1375/1294/639 1381/1306/639 +f 1381/1306/640 1375/1294/640 1376/1295/640 1382/1307/640 +f 1382/1307/641 1376/1295/641 1377/1296/641 1383/1308/641 +f 1383/1309/642 1377/1297/642 1378/1298/642 1384/1310/642 +f 1384/1310/643 1378/1298/643 1374/591/643 1380/593/643 +f 1451/1299/644 1445/1311/644 1447/1312/644 1453/1300/644 +f 1453/1300/645 1447/1312/645 1448/1313/645 1454/1301/645 +f 1454/1301/646 1448/1313/646 1449/1314/646 1455/1302/646 +f 1455/1303/647 1449/1315/647 1450/1316/647 1456/1304/647 +f 1456/1304/648 1450/1316/648 1446/592/648 1452/590/648 +f 1385/1317/649 1379/1305/649 1381/1306/649 1387/1318/649 +f 1387/1318/650 1381/1306/650 1382/1307/650 1388/1319/650 +f 1388/1319/651 1382/1307/651 1383/1308/651 1389/1320/651 +f 1389/1321/652 1383/1309/652 1384/1310/652 1390/1322/652 +f 1390/1322/653 1384/1310/653 1380/593/653 1386/595/653 +f 1445/1311/654 1439/1323/654 1441/1324/654 1447/1312/654 +f 1447/1312/655 1441/1324/655 1442/1325/655 1448/1313/655 +f 1448/1313/656 1442/1325/656 1443/1326/656 1449/1314/656 +f 1449/1315/657 1443/1327/657 1444/1328/657 1450/1316/657 +f 1450/1316/658 1444/1328/658 1440/594/658 1446/592/658 +f 1391/1329/659 1385/1317/659 1387/1318/659 1393/1330/659 +f 1393/1330/660 1387/1318/660 1388/1319/660 1394/1331/660 +f 1394/1331/661 1388/1319/661 1389/1320/661 1395/1332/661 +f 1395/1333/662 1389/1321/662 1390/1322/662 1396/1334/662 +f 1396/1334/663 1390/1322/663 1386/595/663 1392/597/663 +f 1439/1323/664 1433/1335/664 1435/1336/664 1441/1324/664 +f 1441/1324/665 1435/1336/665 1436/1337/665 1442/1325/665 +f 1442/1325/666 1436/1337/666 1437/1338/666 1443/1326/666 +f 1443/1327/667 1437/1339/667 1438/1340/667 1444/1328/667 +f 1444/1328/668 1438/1340/668 1434/596/668 1440/594/668 +f 1397/1341/669 1391/1329/669 1393/1330/669 1399/1342/669 +f 1399/1342/670 1393/1330/670 1394/1331/670 1400/1343/670 +f 1400/1343/671 1394/1331/671 1395/1332/671 1401/1344/671 +f 1401/1345/672 1395/1333/672 1396/1334/672 1402/1346/672 +f 1402/1346/673 1396/1334/673 1392/597/673 1398/599/673 +f 1433/1335/674 1427/1347/674 1429/1348/674 1435/1336/674 +f 1435/1336/675 1429/1348/675 1430/1349/675 1436/1337/675 +f 1436/1337/676 1430/1349/676 1431/1350/676 1437/1338/676 +f 1437/1339/677 1431/1351/677 1432/1352/677 1438/1340/677 +f 1438/1340/678 1432/1352/678 1428/598/678 1434/596/678 +f 1403/1353/679 1397/1341/679 1399/1342/679 1405/1354/679 +f 1405/1354/680 1399/1342/680 1400/1343/680 1406/1355/680 +f 1406/1355/681 1400/1343/681 1401/1344/681 1407/1356/681 +f 1407/1357/682 1401/1345/682 1402/1346/682 1408/1358/682 +f 1408/1358/683 1402/1346/683 1398/599/683 1404/586/683 +f 1427/1347/684 1421/1359/684 1423/1360/684 1429/1348/684 +f 1429/1348/685 1423/1360/685 1424/1361/685 1430/1349/685 +f 1430/1349/686 1424/1361/686 1425/1362/686 1431/1350/686 +f 1431/1351/687 1425/1363/687 1426/1364/687 1432/1352/687 +f 1432/1352/688 1426/1364/688 1422/587/688 1428/598/688 +f 1355/1365/689 1403/1353/689 1405/1354/689 1357/1366/689 +f 1357/1366/690 1405/1354/690 1406/1355/690 1358/1367/690 +f 1358/1367/691 1406/1355/691 1407/1356/691 1359/1368/691 +f 1359/1369/692 1407/1357/692 1408/1358/692 1360/1370/692 +f 1360/1370/693 1408/1358/693 1404/586/693 1356/501/693 +f 1421/1359/694 1409/1371/694 1411/1372/694 1423/1360/694 +f 1423/1360/695 1411/1372/695 1412/1373/695 1424/1361/695 +f 1424/1361/696 1412/1373/696 1413/1374/696 1425/1362/696 +f 1425/1363/697 1413/1375/697 1414/1376/697 1426/1364/697 +f 1426/1364/698 1414/1376/698 1410/502/698 1422/587/698 +f 1481/1377/699 1469/1378/699 1471/1379/699 1483/1380/699 +f 1483/1380/700 1471/1379/700 1472/1381/700 1484/1382/700 +f 1484/1382/701 1472/1381/701 1473/1383/701 1485/1384/701 +f 1485/1385/702 1473/1386/702 1474/1387/702 1486/1388/702 +f 1486/1388/703 1474/1387/703 1470/514/703 1482/604/703 +f 1295/1389/704 1343/1390/704 1345/1391/704 1297/1392/704 +f 1297/1392/705 1345/1391/705 1346/1393/705 1298/1394/705 +f 1298/1394/706 1346/1393/706 1347/1395/706 1299/1396/706 +f 1299/1397/707 1347/1398/707 1348/1399/707 1300/1400/707 +f 1300/1400/708 1348/1399/708 1344/605/708 1296/513/708 +f 1487/1401/709 1481/1377/709 1483/1380/709 1489/1402/709 +f 1489/1402/710 1483/1380/710 1484/1382/710 1490/1403/710 +f 1490/1403/711 1484/1382/711 1485/1384/711 1491/1404/711 +f 1491/1405/712 1485/1385/712 1486/1388/712 1492/1406/712 +f 1492/1406/713 1486/1388/713 1482/604/713 1488/607/713 +f 1343/1390/714 1337/1407/714 1339/1408/714 1345/1391/714 +f 1345/1391/715 1339/1408/715 1340/1409/715 1346/1393/715 +f 1346/1393/716 1340/1409/716 1341/1410/716 1347/1395/716 +f 1347/1398/717 1341/1411/717 1342/1412/717 1348/1399/717 +f 1348/1399/718 1342/1412/718 1338/606/718 1344/605/718 +f 1493/1413/719 1487/1401/719 1489/1402/719 1495/1414/719 +f 1495/1414/720 1489/1402/720 1490/1403/720 1496/1415/720 +f 1496/1415/721 1490/1403/721 1491/1404/721 1497/1416/721 +f 1497/1417/722 1491/1405/722 1492/1406/722 1498/1418/722 +f 1498/1418/723 1492/1406/723 1488/607/723 1494/609/723 +f 1337/1407/724 1331/1419/724 1333/1420/724 1339/1408/724 +f 1339/1408/725 1333/1420/725 1334/1421/725 1340/1409/725 +f 1340/1409/726 1334/1421/726 1335/1422/726 1341/1410/726 +f 1341/1411/727 1335/1423/727 1336/1424/727 1342/1412/727 +f 1342/1412/728 1336/1424/728 1332/608/728 1338/606/728 +f 1499/1425/729 1493/1413/729 1495/1414/729 1501/1426/729 +f 1501/1426/730 1495/1414/730 1496/1415/730 1502/1427/730 +f 1502/1427/731 1496/1415/731 1497/1416/731 1503/1428/731 +f 1503/1429/732 1497/1417/732 1498/1418/732 1504/1430/732 +f 1504/1430/733 1498/1418/733 1494/609/733 1500/611/733 +f 1331/1419/734 1325/1431/734 1327/1432/734 1333/1420/734 +f 1333/1420/735 1327/1432/735 1328/1433/735 1334/1421/735 +f 1334/1421/736 1328/1433/736 1329/1434/736 1335/1422/736 +f 1335/1423/737 1329/1435/737 1330/1436/737 1336/1424/737 +f 1336/1424/738 1330/1436/738 1326/610/738 1332/608/738 +f 1505/1437/739 1499/1425/739 1501/1426/739 1507/1438/739 +f 1507/1438/740 1501/1426/740 1502/1427/740 1508/1439/740 +f 1508/1439/741 1502/1427/741 1503/1428/741 1509/1440/741 +f 1509/1441/742 1503/1429/742 1504/1430/742 1510/1442/742 +f 1510/1442/743 1504/1430/743 1500/611/743 1506/613/743 +f 1325/1431/744 1319/1443/744 1321/1444/744 1327/1432/744 +f 1327/1432/745 1321/1444/745 1322/1445/745 1328/1433/745 +f 1328/1433/746 1322/1445/746 1323/1446/746 1329/1434/746 +f 1329/1435/747 1323/1447/747 1324/1448/747 1330/1436/747 +f 1330/1436/748 1324/1448/748 1320/612/748 1326/610/748 +f 1511/1449/749 1505/1437/749 1507/1438/749 1513/1450/749 +f 1513/1450/750 1507/1438/750 1508/1439/750 1514/1451/750 +f 1514/1451/751 1508/1439/751 1509/1440/751 1515/1452/751 +f 1515/1453/752 1509/1441/752 1510/1442/752 1516/1454/752 +f 1516/1454/753 1510/1442/753 1506/613/753 1512/615/753 +f 1319/1443/754 1313/1455/754 1315/1456/754 1321/1444/754 +f 1321/1444/755 1315/1456/755 1316/1457/755 1322/1445/755 +f 1322/1445/756 1316/1457/756 1317/1458/756 1323/1446/756 +f 1323/1447/757 1317/1459/757 1318/1460/757 1324/1448/757 +f 1324/1448/758 1318/1460/758 1314/614/758 1320/612/758 +f 1517/1461/759 1511/1449/759 1513/1450/759 1519/1462/759 +f 1519/1462/760 1513/1450/760 1514/1451/760 1520/1463/760 +f 1520/1463/761 1514/1451/761 1515/1452/761 1521/1464/761 +f 1521/1465/762 1515/1453/762 1516/1454/762 1522/1466/762 +f 1522/1466/763 1516/1454/763 1512/615/763 1518/602/763 +f 1313/1455/764 1307/1467/764 1309/1468/764 1315/1456/764 +f 1315/1456/765 1309/1468/765 1310/1469/765 1316/1457/765 +f 1316/1457/766 1310/1469/766 1311/1470/766 1317/1458/766 +f 1317/1459/767 1311/1471/767 1312/1472/767 1318/1460/767 +f 1318/1460/768 1312/1472/768 1308/603/768 1314/614/768 +f 1523/1473/769 1517/1461/769 1519/1462/769 1525/1474/769 +f 1525/1474/770 1519/1462/770 1520/1463/770 1526/1475/770 +f 1526/1475/771 1520/1463/771 1521/1464/771 1527/1476/771 +f 1527/1477/772 1521/1465/772 1522/1466/772 1528/1478/772 +f 1528/1478/773 1522/1466/773 1518/602/773 1524/572/773 +f 1307/1467/774 1301/1479/774 1303/1480/774 1309/1468/774 +f 1309/1468/775 1303/1480/775 1304/1481/775 1310/1469/775 +f 1310/1469/776 1304/1481/776 1305/1482/776 1311/1470/776 +f 1311/1471/777 1305/1483/777 1306/1484/777 1312/1472/777 +f 1312/1472/778 1306/1484/778 1302/573/778 1308/603/778 +f 1475/1485/779 1523/1473/779 1525/1474/779 1477/1486/779 +f 1477/1486/780 1525/1474/780 1526/1475/780 1478/1487/780 +f 1478/1487/781 1526/1475/781 1527/1476/781 1479/1488/781 +f 1479/1489/782 1527/1477/782 1528/1478/782 1480/1490/782 +f 1480/1490/783 1528/1478/783 1524/572/783 1476/575/783 +f 1301/1479/784 1289/1491/784 1291/1492/784 1303/1480/784 +f 1303/1480/785 1291/1492/785 1292/1493/785 1304/1481/785 +f 1304/1481/786 1292/1493/786 1293/1494/786 1305/1482/786 +f 1305/1483/787 1293/1495/787 1294/1496/787 1306/1484/787 +f 1306/1484/788 1294/1496/788 1290/574/788 1302/573/788 +f 881/855/789 1295/1389/789 1297/1392/789 883/853/789 +f 883/853/790 1297/1392/790 1298/1394/790 884/851/790 +f 884/851/791 1298/1394/791 1299/1396/791 885/848/791 +f 885/847/792 1299/1397/792 1300/1400/792 886/845/792 +f 886/845/793 1300/1400/793 1296/513/793 882/516/793 +f 1469/1378/794 887/866/794 889/864/794 1471/1379/794 +f 1471/1379/795 889/864/795 890/862/795 1472/1381/795 +f 1472/1381/796 890/862/796 891/861/796 1473/1383/796 +f 1473/1386/797 891/858/797 892/856/797 1474/1387/797 +f 1474/1387/798 892/856/798 888/515/798 1470/514/798 +f 1289/1491/799 1151/1173/799 1153/1176/799 1291/1492/799 +f 1291/1492/800 1153/1176/800 1154/1178/800 1292/1493/800 +f 1292/1493/801 1154/1178/801 1155/1180/801 1293/1494/801 +f 1293/1495/802 1155/1181/802 1156/1184/802 1294/1496/802 +f 1294/1496/803 1156/1184/803 1152/541/803 1290/574/803 +f 1097/1162/804 1475/1485/804 1477/1486/804 1099/1163/804 +f 1099/1163/805 1477/1486/805 1478/1487/805 1100/1165/805 +f 1100/1165/806 1478/1487/806 1479/1488/806 1101/1167/806 +f 1101/1170/807 1479/1489/807 1480/1490/807 1102/1171/807 +f 1102/1171/808 1480/1490/808 1476/575/808 1098/540/808 +f 1409/1371/809 869/837/809 871/836/809 1411/1372/809 +f 1411/1372/810 871/836/810 872/835/810 1412/1373/810 +f 1412/1373/811 872/835/811 873/834/811 1413/1374/811 +f 1413/1375/812 873/833/812 874/832/812 1414/1376/812 +f 1414/1376/813 874/832/813 870/500/813 1410/502/813 +f 875/843/814 1355/1365/814 1357/1366/814 877/842/814 +f 877/842/815 1357/1366/815 1358/1367/815 878/841/815 +f 878/841/816 1358/1367/816 1359/1368/816 879/840/816 +f 879/839/817 1359/1369/817 1360/1370/817 880/838/817 +f 880/838/818 1360/1370/818 1356/501/818 876/499/818 +f 1241/1155/819 1415/1269/819 1417/1272/819 1243/1156/819 +f 1243/1156/820 1417/1272/820 1418/1274/820 1244/1157/820 +f 1244/1157/821 1418/1274/821 1419/1276/821 1245/1158/821 +f 1245/1159/822 1419/1277/822 1420/1280/822 1246/1160/822 +f 1246/1160/823 1420/1280/823 1416/576/823 1242/564/823 +f 1349/1258/824 1199/1149/824 1201/1150/824 1351/1259/824 +f 1351/1259/825 1201/1150/825 1202/1151/825 1352/1261/825 +f 1352/1261/826 1202/1151/826 1203/1152/826 1353/1263/826 +f 1353/1266/827 1203/1153/827 1204/1154/827 1354/1267/827 +f 1354/1267/828 1204/1154/828 1200/565/828 1350/577/828 +f 1163/1227/25 1169/1215/25 1277/1095/25 +f 1879/1497/829 1865/1498/829 1867/1499/829 1881/1500/829 +f 1881/1500/830 1867/1499/830 1868/1501/830 1882/1502/830 +f 1882/1502/831 1868/1501/831 1869/1503/831 1883/1504/831 +f 1883/1505/832 1869/1506/832 1870/1507/832 1884/1508/832 +f 1884/1508/833 1870/1507/833 1871/1509/833 1885/1510/833 +f 1885/1510/834 1871/1509/834 1866/371/834 1880/355/834 +f 1928/414/835 1970/413/835 1972/1511/835 1930/1512/835 +f 1930/1512/836 1972/1511/836 1973/1513/836 1931/1514/836 +f 1931/1514/837 1973/1513/837 1974/1515/837 1932/1516/837 +f 1932/1517/838 1974/1518/838 1975/1519/838 1933/1520/838 +f 1933/1520/839 1975/1519/839 1976/1521/839 1934/1522/839 +f 1934/1522/840 1976/1521/840 1971/356/840 1929/372/840 +f 1886/1523/841 1879/1497/841 1881/1500/841 1888/1524/841 +f 1888/1524/842 1881/1500/842 1882/1502/842 1889/1525/842 +f 1889/1525/843 1882/1502/843 1883/1526/843 1890/1527/843 +f 1890/1528/844 1883/1529/844 1884/1530/844 1891/1531/844 +f 1891/1531/845 1884/1530/845 1885/1532/845 1892/1533/845 +f 1892/1533/846 1885/1532/846 1880/355/846 1887/345/846 +f 1970/413/847 1963/412/847 1965/1534/847 1972/1511/847 +f 1972/1511/848 1965/1534/848 1966/1535/848 1973/1513/848 +f 1973/1513/849 1966/1535/849 1967/1536/849 1974/1537/849 +f 1974/1538/850 1967/1539/850 1968/1540/850 1975/1541/850 +f 1975/1541/851 1968/1540/851 1969/1542/851 1976/1543/851 +f 1976/1543/852 1969/1542/852 1964/346/852 1971/356/852 +f 1893/1544/853 1886/1523/853 1888/1524/853 1895/1545/853 +f 1895/1545/854 1888/1524/854 1889/1525/854 1896/1546/854 +f 1896/1546/855 1889/1525/855 1890/1547/855 1897/1548/855 +f 1897/1549/856 1890/1550/856 1891/1551/856 1898/1552/856 +f 1898/1552/857 1891/1551/857 1892/1553/857 1899/1554/857 +f 1899/1554/858 1892/1553/858 1887/345/858 1894/348/858 +f 1963/412/859 1956/411/859 1958/1555/859 1965/1534/859 +f 1965/1534/860 1958/1555/860 1959/1556/860 1966/1535/860 +f 1966/1535/861 1959/1556/861 1960/1557/861 1967/1558/861 +f 1967/1559/862 1960/1560/862 1961/1561/862 1968/1562/862 +f 1968/1562/863 1961/1561/863 1962/1563/863 1969/1564/863 +f 1969/1564/864 1962/1563/864 1957/347/864 1964/346/864 +f 1900/1565/865 1893/1544/865 1895/1545/865 1902/1566/865 +f 1902/1566/866 1895/1545/866 1896/1546/866 1903/1567/866 +f 1903/1567/867 1896/1546/867 1897/1568/867 1904/1569/867 +f 1904/1570/868 1897/1571/868 1898/1572/868 1905/1573/868 +f 1905/1573/869 1898/1572/869 1899/1574/869 1906/1575/869 +f 1906/1575/870 1899/1574/870 1894/348/870 1901/350/870 +f 1956/411/871 1949/410/871 1951/1576/871 1958/1555/871 +f 1958/1555/872 1951/1576/872 1952/1577/872 1959/1556/872 +f 1959/1556/873 1952/1577/873 1953/1578/873 1960/1579/873 +f 1960/1580/874 1953/1581/874 1954/1582/874 1961/1583/874 +f 1961/1583/875 1954/1582/875 1955/1584/875 1962/1585/875 +f 1962/1585/876 1955/1584/876 1950/349/876 1957/347/876 +f 1907/1586/877 1900/1565/877 1902/1566/877 1909/1587/877 +f 1909/1587/878 1902/1566/878 1903/1567/878 1910/1588/878 +f 1910/1588/879 1903/1567/879 1904/1589/879 1911/1590/879 +f 1911/1591/880 1904/1592/880 1905/1593/880 1912/1594/880 +f 1912/1594/881 1905/1593/881 1906/1595/881 1913/1596/881 +f 1913/1596/882 1906/1595/882 1901/351/882 1908/354/882 +f 1949/410/883 1942/409/883 1944/1597/883 1951/1576/883 +f 1951/1576/884 1944/1597/884 1945/1598/884 1952/1577/884 +f 1952/1577/885 1945/1598/885 1946/1599/885 1953/1600/885 +f 1953/1601/886 1946/1602/886 1947/1603/886 1954/1604/886 +f 1954/1604/887 1947/1603/887 1948/1605/887 1955/1606/887 +f 1955/1606/888 1948/1605/888 1943/353/888 1950/352/888 +f 1914/1607/889 1907/1586/889 1909/1587/889 1916/1608/889 +f 1916/1608/890 1909/1587/890 1910/1588/890 1917/1609/890 +f 1917/1609/891 1910/1588/891 1911/1610/891 1918/1611/891 +f 1918/1612/892 1911/1613/892 1912/1614/892 1919/1615/892 +f 1919/1615/893 1912/1614/893 1913/1616/893 1920/1617/893 +f 1920/1617/894 1913/1616/894 1908/354/894 1915/341/894 +f 1942/409/895 1935/408/895 1937/1618/895 1944/1597/895 +f 1944/1597/896 1937/1618/896 1938/1619/896 1945/1598/896 +f 1945/1598/897 1938/1619/897 1939/1620/897 1946/1621/897 +f 1946/1622/898 1939/1623/898 1940/1624/898 1947/1625/898 +f 1947/1625/899 1940/1624/899 1941/1626/899 1948/1627/899 +f 1948/1627/900 1941/1626/900 1936/342/900 1943/353/900 +f 1872/1628/901 1914/1607/901 1916/1608/901 1874/1629/901 +f 1874/1629/902 1916/1608/902 1917/1609/902 1875/1630/902 +f 1875/1630/903 1917/1609/903 1918/1631/903 1876/1632/903 +f 1876/1633/904 1918/1634/904 1919/1635/904 1877/1636/904 +f 1877/1636/905 1919/1635/905 1920/1637/905 1878/1638/905 +f 1878/1638/906 1920/1637/906 1915/341/906 1873/344/906 +f 1935/408/907 1921/407/907 1923/1639/907 1937/1618/907 +f 1937/1618/908 1923/1639/908 1924/1640/908 1938/1619/908 +f 1938/1619/909 1924/1640/909 1925/1641/909 1939/1642/909 +f 1939/1643/910 1925/1644/910 1926/1645/910 1940/1646/910 +f 1940/1646/911 1926/1645/911 1927/1647/911 1941/1648/911 +f 1941/1648/912 1927/1647/912 1922/343/912 1936/342/912 +f 1543/1649/913 1529/1650/913 1531/1651/913 1545/1652/913 +f 1545/1652/914 1531/1651/914 1532/1653/914 1546/1654/914 +f 1546/1654/915 1532/1653/915 1533/1655/915 1547/1656/915 +f 1547/1657/916 1533/1658/916 1534/1659/916 1548/1660/916 +f 1548/1660/917 1534/1659/917 1535/1661/917 1549/1662/917 +f 1549/1662/918 1535/1661/918 1530/357/918 1544/337/918 +f 1704/390/919 1746/389/919 1748/1663/919 1706/1664/919 +f 1706/1664/920 1748/1663/920 1749/1665/920 1707/1666/920 +f 1707/1666/921 1749/1665/921 1750/1667/921 1708/1668/921 +f 1708/1669/922 1750/1670/922 1751/1671/922 1709/1672/922 +f 1709/1672/923 1751/1671/923 1752/1673/923 1710/1674/923 +f 1710/1674/924 1752/1673/924 1747/338/924 1705/358/924 +f 1550/1675/925 1543/1649/925 1545/1652/925 1552/1676/925 +f 1552/1676/926 1545/1652/926 1546/1654/926 1553/1677/926 +f 1553/1677/927 1546/1654/927 1547/1678/927 1554/1679/927 +f 1554/1680/928 1547/1681/928 1548/1682/928 1555/1683/928 +f 1555/1683/929 1548/1682/929 1549/1684/929 1556/1685/929 +f 1556/1685/930 1549/1684/930 1544/337/930 1551/340/930 +f 1746/389/931 1739/388/931 1741/1686/931 1748/1663/931 +f 1748/1663/932 1741/1686/932 1742/1687/932 1749/1665/932 +f 1749/1665/933 1742/1687/933 1743/1688/933 1750/1689/933 +f 1750/1690/934 1743/1691/934 1744/1692/934 1751/1693/934 +f 1751/1693/935 1744/1692/935 1745/1694/935 1752/1695/935 +f 1752/1695/936 1745/1694/936 1740/339/936 1747/338/936 +f 1557/1696/937 1550/1675/937 1552/1676/937 1559/1697/937 +f 1559/1697/938 1552/1676/938 1553/1677/938 1560/1698/938 +f 1560/1698/939 1553/1677/939 1554/1699/939 1561/1700/939 +f 1561/1701/940 1554/1702/940 1555/1703/940 1562/1704/940 +f 1562/1704/941 1555/1703/941 1556/1705/941 1563/1706/941 +f 1563/1706/942 1556/1705/942 1551/340/942 1558/360/942 +f 1739/388/943 1732/387/943 1734/1707/943 1741/1686/943 +f 1741/1686/944 1734/1707/944 1735/1708/944 1742/1687/944 +f 1742/1687/945 1735/1708/945 1736/1709/945 1743/1710/945 +f 1743/1711/946 1736/1712/946 1737/1713/946 1744/1714/946 +f 1744/1714/947 1737/1713/947 1738/1715/947 1745/1716/947 +f 1745/1716/948 1738/1715/948 1733/359/948 1740/339/948 +f 1564/1717/949 1557/1696/949 1559/1697/949 1566/1718/949 +f 1566/1718/950 1559/1697/950 1560/1698/950 1567/1719/950 +f 1567/1719/951 1560/1698/951 1561/1720/951 1568/1721/951 +f 1568/1722/952 1561/1723/952 1562/1724/952 1569/1725/952 +f 1569/1725/953 1562/1724/953 1563/1726/953 1570/1727/953 +f 1570/1727/954 1563/1726/954 1558/360/954 1565/362/954 +f 1732/387/955 1725/386/955 1727/1728/955 1734/1707/955 +f 1734/1707/956 1727/1728/956 1728/1729/956 1735/1708/956 +f 1735/1708/957 1728/1729/957 1729/1730/957 1736/1731/957 +f 1736/1732/958 1729/1733/958 1730/1734/958 1737/1735/958 +f 1737/1735/959 1730/1734/959 1731/1736/959 1738/1737/959 +f 1738/1737/960 1731/1736/960 1726/361/960 1733/359/960 +f 1571/1738/961 1564/1717/961 1566/1718/961 1573/1739/961 +f 1573/1739/962 1566/1718/962 1567/1719/962 1574/1740/962 +f 1574/1740/963 1567/1719/963 1568/1741/963 1575/1742/963 +f 1575/1743/964 1568/1744/964 1569/1745/964 1576/1746/964 +f 1576/1746/965 1569/1745/965 1570/1747/965 1577/1748/965 +f 1577/1748/966 1570/1747/966 1565/363/966 1572/366/966 +f 1725/386/967 1718/385/967 1720/1749/967 1727/1728/967 +f 1727/1728/968 1720/1749/968 1721/1750/968 1728/1729/968 +f 1728/1729/969 1721/1750/969 1722/1751/969 1729/1752/969 +f 1729/1753/970 1722/1754/970 1723/1755/970 1730/1756/970 +f 1730/1756/971 1723/1755/971 1724/1757/971 1731/1758/971 +f 1731/1758/972 1724/1757/972 1719/365/972 1726/364/972 +f 1578/1759/973 1571/1738/973 1573/1739/973 1580/1760/973 +f 1580/1760/974 1573/1739/974 1574/1740/974 1581/1761/974 +f 1581/1761/975 1574/1740/975 1575/1762/975 1582/1763/975 +f 1582/1764/976 1575/1765/976 1576/1766/976 1583/1767/976 +f 1583/1767/977 1576/1766/977 1577/1768/977 1584/1769/977 +f 1584/1769/978 1577/1768/978 1572/366/978 1579/329/978 +f 1718/385/979 1711/384/979 1713/1770/979 1720/1749/979 +f 1720/1749/980 1713/1770/980 1714/1771/980 1721/1750/980 +f 1721/1750/981 1714/1771/981 1715/1772/981 1722/1773/981 +f 1722/1774/982 1715/1775/982 1716/1776/982 1723/1777/982 +f 1723/1777/983 1716/1776/983 1717/1778/983 1724/1779/983 +f 1724/1779/984 1717/1778/984 1712/330/984 1719/365/984 +f 1536/1780/985 1578/1759/985 1580/1760/985 1538/1781/985 +f 1538/1781/986 1580/1760/986 1581/1761/986 1539/1782/986 +f 1539/1782/987 1581/1761/987 1582/1783/987 1540/1784/987 +f 1540/1785/988 1582/1786/988 1583/1787/988 1541/1788/988 +f 1541/1788/989 1583/1787/989 1584/1789/989 1542/1790/989 +f 1542/1790/990 1584/1789/990 1579/329/990 1537/332/990 +f 1711/384/991 1697/383/991 1699/1791/991 1713/1770/991 +f 1713/1770/992 1699/1791/992 1700/1792/992 1714/1771/992 +f 1714/1771/993 1700/1792/993 1701/1793/993 1715/1794/993 +f 1715/1795/994 1701/1796/994 1702/1797/994 1716/1798/994 +f 1716/1798/995 1702/1797/995 1703/1799/995 1717/1800/995 +f 1717/1800/996 1703/1799/996 1698/331/996 1712/330/996 +f 1599/1801/997 1585/1802/997 1587/1803/997 1601/1804/997 +f 1601/1804/998 1587/1803/998 1588/1805/998 1602/1806/998 +f 1602/1806/999 1588/1805/999 1589/1807/999 1603/1808/999 +f 1603/1809/1000 1589/1810/1000 1590/1811/1000 1604/1812/1000 +f 1604/1812/1001 1590/1811/1001 1591/1813/1001 1605/1814/1001 +f 1605/1814/1002 1591/1813/1002 1586/367/1002 1600/370/1002 +f 1648/398/1003 1690/397/1003 1692/1815/1003 1650/1816/1003 +f 1650/1816/1004 1692/1815/1004 1693/1817/1004 1651/1818/1004 +f 1651/1818/1005 1693/1817/1005 1694/1819/1005 1652/1820/1005 +f 1652/1821/1006 1694/1822/1006 1695/1823/1006 1653/1824/1006 +f 1653/1824/1007 1695/1823/1007 1696/1825/1007 1654/1826/1007 +f 1654/1826/1008 1696/1825/1008 1691/369/1008 1649/368/1008 +f 1606/1827/1009 1599/1801/1009 1601/1804/1009 1608/1828/1009 +f 1608/1828/1010 1601/1804/1010 1602/1806/1010 1609/1829/1010 +f 1609/1829/1011 1602/1806/1011 1603/1830/1011 1610/1831/1011 +f 1610/1832/1012 1603/1833/1012 1604/1834/1012 1611/1835/1012 +f 1611/1835/1013 1604/1834/1013 1605/1836/1013 1612/1837/1013 +f 1612/1837/1014 1605/1836/1014 1600/370/1014 1607/373/1014 +f 1690/397/1015 1683/396/1015 1685/1838/1015 1692/1815/1015 +f 1692/1815/1016 1685/1838/1016 1686/1839/1016 1693/1817/1016 +f 1693/1817/1017 1686/1839/1017 1687/1840/1017 1694/1841/1017 +f 1694/1842/1018 1687/1843/1018 1688/1844/1018 1695/1845/1018 +f 1695/1845/1019 1688/1844/1019 1689/1846/1019 1696/1847/1019 +f 1696/1847/1020 1689/1846/1020 1684/374/1020 1691/369/1020 +f 1613/1848/1021 1606/1827/1021 1608/1828/1021 1615/1849/1021 +f 1615/1849/1022 1608/1828/1022 1609/1829/1022 1616/1850/1022 +f 1616/1850/1023 1609/1829/1023 1610/1851/1023 1617/1852/1023 +f 1617/1853/1024 1610/1854/1024 1611/1855/1024 1618/1856/1024 +f 1618/1856/1025 1611/1855/1025 1612/1857/1025 1619/1858/1025 +f 1619/1858/1026 1612/1857/1026 1607/373/1026 1614/376/1026 +f 1683/396/1027 1676/395/1027 1678/1859/1027 1685/1838/1027 +f 1685/1838/1028 1678/1859/1028 1679/1860/1028 1686/1839/1028 +f 1686/1839/1029 1679/1860/1029 1680/1861/1029 1687/1862/1029 +f 1687/1863/1030 1680/1864/1030 1681/1865/1030 1688/1866/1030 +f 1688/1866/1031 1681/1865/1031 1682/1867/1031 1689/1868/1031 +f 1689/1868/1032 1682/1867/1032 1677/375/1032 1684/374/1032 +f 1620/1869/1033 1613/1848/1033 1615/1849/1033 1622/1870/1033 +f 1622/1870/1034 1615/1849/1034 1616/1850/1034 1623/1871/1034 +f 1623/1871/1035 1616/1850/1035 1617/1872/1035 1624/1873/1035 +f 1624/1874/1036 1617/1875/1036 1618/1876/1036 1625/1877/1036 +f 1625/1877/1037 1618/1876/1037 1619/1878/1037 1626/1879/1037 +f 1626/1879/1038 1619/1878/1038 1614/376/1038 1621/378/1038 +f 1676/395/1039 1669/394/1039 1671/1880/1039 1678/1859/1039 +f 1678/1859/1040 1671/1880/1040 1672/1881/1040 1679/1860/1040 +f 1679/1860/1041 1672/1881/1041 1673/1882/1041 1680/1883/1041 +f 1680/1884/1042 1673/1885/1042 1674/1886/1042 1681/1887/1042 +f 1681/1887/1043 1674/1886/1043 1675/1888/1043 1682/1889/1043 +f 1682/1889/1044 1675/1888/1044 1670/377/1044 1677/375/1044 +f 1627/1890/1045 1620/1869/1045 1622/1870/1045 1629/1891/1045 +f 1629/1891/1046 1622/1870/1046 1623/1871/1046 1630/1892/1046 +f 1630/1892/1047 1623/1871/1047 1624/1893/1047 1631/1894/1047 +f 1631/1895/1048 1624/1896/1048 1625/1897/1048 1632/1898/1048 +f 1632/1898/1049 1625/1897/1049 1626/1899/1049 1633/1900/1049 +f 1633/1900/1050 1626/1899/1050 1621/379/1050 1628/382/1050 +f 1669/394/1051 1662/393/1051 1664/1901/1051 1671/1880/1051 +f 1671/1880/1052 1664/1901/1052 1665/1902/1052 1672/1881/1052 +f 1672/1881/1053 1665/1902/1053 1666/1903/1053 1673/1904/1053 +f 1673/1905/1054 1666/1906/1054 1667/1907/1054 1674/1908/1054 +f 1674/1908/1055 1667/1907/1055 1668/1909/1055 1675/1910/1055 +f 1675/1910/1056 1668/1909/1056 1663/381/1056 1670/380/1056 +f 1634/1911/1057 1627/1890/1057 1629/1891/1057 1636/1912/1057 +f 1636/1912/1058 1629/1891/1058 1630/1892/1058 1637/1913/1058 +f 1637/1913/1059 1630/1892/1059 1631/1914/1059 1638/1915/1059 +f 1638/1916/1060 1631/1917/1060 1632/1918/1060 1639/1919/1060 +f 1639/1919/1061 1632/1918/1061 1633/1920/1061 1640/1921/1061 +f 1640/1921/1062 1633/1920/1062 1628/382/1062 1635/321/1062 +f 1662/393/1063 1655/392/1063 1657/1922/1063 1664/1901/1063 +f 1664/1901/1064 1657/1922/1064 1658/1923/1064 1665/1902/1064 +f 1665/1902/1065 1658/1923/1065 1659/1924/1065 1666/1925/1065 +f 1666/1926/1066 1659/1927/1066 1660/1928/1066 1667/1929/1066 +f 1667/1929/1067 1660/1928/1067 1661/1930/1067 1668/1931/1067 +f 1668/1931/1068 1661/1930/1068 1656/322/1068 1663/381/1068 +f 1592/1932/1069 1634/1911/1069 1636/1912/1069 1594/1933/1069 +f 1594/1933/1070 1636/1912/1070 1637/1913/1070 1595/1934/1070 +f 1595/1934/1071 1637/1913/1071 1638/1935/1071 1596/1936/1071 +f 1596/1937/1072 1638/1938/1072 1639/1939/1072 1597/1940/1072 +f 1597/1940/1073 1639/1939/1073 1640/1941/1073 1598/1942/1073 +f 1598/1942/1074 1640/1941/1074 1635/321/1074 1593/324/1074 +f 1655/392/1075 1641/391/1075 1643/1943/1075 1657/1922/1075 +f 1657/1922/1076 1643/1943/1076 1644/1944/1076 1658/1923/1076 +f 1658/1923/1077 1644/1944/1077 1645/1945/1077 1659/1946/1077 +f 1659/1947/1078 1645/1948/1078 1646/1949/1078 1660/1950/1078 +f 1660/1950/1079 1646/1949/1079 1647/1951/1079 1661/1952/1079 +f 1661/1952/1080 1647/1951/1080 1642/323/1080 1656/322/1080 +f 1767/1953/1081 1753/1954/1081 1755/1955/1081 1769/1956/1081 +f 1769/1956/1082 1755/1955/1082 1756/1957/1082 1770/1958/1082 +f 1770/1958/1083 1756/1957/1083 1757/1959/1083 1771/1960/1083 +f 1771/1961/1084 1757/1962/1084 1758/1963/1084 1772/1964/1084 +f 1772/1964/1085 1758/1963/1085 1759/1965/1085 1773/1966/1085 +f 1773/1966/1086 1759/1965/1086 1754/325/1086 1768/328/1086 +f 1816/406/1087 1858/405/1087 1860/1967/1087 1818/1968/1087 +f 1818/1968/1088 1860/1967/1088 1861/1969/1088 1819/1970/1088 +f 1819/1970/1089 1861/1969/1089 1862/1971/1089 1820/1972/1089 +f 1820/1973/1090 1862/1974/1090 1863/1975/1090 1821/1976/1090 +f 1821/1976/1091 1863/1975/1091 1864/1977/1091 1822/1978/1091 +f 1822/1978/1092 1864/1977/1092 1859/327/1092 1817/326/1092 +f 1774/1979/1093 1767/1953/1093 1769/1956/1093 1776/1980/1093 +f 1776/1980/1094 1769/1956/1094 1770/1958/1094 1777/1981/1094 +f 1777/1981/1095 1770/1958/1095 1771/1982/1095 1778/1983/1095 +f 1778/1984/1096 1771/1985/1096 1772/1986/1096 1779/1987/1096 +f 1779/1987/1097 1772/1986/1097 1773/1988/1097 1780/1989/1097 +f 1780/1989/1098 1773/1988/1098 1768/328/1098 1775/415/1098 +f 1858/405/1099 1851/404/1099 1853/1990/1099 1860/1967/1099 +f 1860/1967/1100 1853/1990/1100 1854/1991/1100 1861/1969/1100 +f 1861/1969/1101 1854/1991/1101 1855/1992/1101 1862/1993/1101 +f 1862/1994/1102 1855/1995/1102 1856/1996/1102 1863/1997/1102 +f 1863/1997/1103 1856/1996/1103 1857/1998/1103 1864/1999/1103 +f 1864/1999/1104 1857/1998/1104 1852/416/1104 1859/327/1104 +f 1781/2000/1105 1774/1979/1105 1776/1980/1105 1783/2001/1105 +f 1783/2001/1106 1776/1980/1106 1777/1981/1106 1784/2002/1106 +f 1784/2002/1107 1777/1981/1107 1778/2003/1107 1785/2004/1107 +f 1785/2005/1108 1778/2006/1108 1779/2007/1108 1786/2008/1108 +f 1786/2008/1109 1779/2007/1109 1780/2009/1109 1787/2010/1109 +f 1787/2010/1110 1780/2009/1110 1775/415/1110 1782/418/1110 +f 1851/404/1111 1844/403/1111 1846/2011/1111 1853/1990/1111 +f 1853/1990/1112 1846/2011/1112 1847/2012/1112 1854/1991/1112 +f 1854/1991/1113 1847/2012/1113 1848/2013/1113 1855/2014/1113 +f 1855/2015/1114 1848/2016/1114 1849/2017/1114 1856/2018/1114 +f 1856/2018/1115 1849/2017/1115 1850/2019/1115 1857/2020/1115 +f 1857/2020/1116 1850/2019/1116 1845/417/1116 1852/416/1116 +f 1788/2021/1117 1781/2000/1117 1783/2001/1117 1790/2022/1117 +f 1790/2022/1118 1783/2001/1118 1784/2002/1118 1791/2023/1118 +f 1791/2023/1119 1784/2002/1119 1785/2024/1119 1792/2025/1119 +f 1792/2026/1120 1785/2027/1120 1786/2028/1120 1793/2029/1120 +f 1793/2029/1121 1786/2028/1121 1787/2030/1121 1794/2031/1121 +f 1794/2031/1122 1787/2030/1122 1782/418/1122 1789/420/1122 +f 1844/403/1123 1837/402/1123 1839/2032/1123 1846/2011/1123 +f 1846/2011/1124 1839/2032/1124 1840/2033/1124 1847/2012/1124 +f 1847/2012/1125 1840/2033/1125 1841/2034/1125 1848/2035/1125 +f 1848/2036/1126 1841/2037/1126 1842/2038/1126 1849/2039/1126 +f 1849/2039/1127 1842/2038/1127 1843/2040/1127 1850/2041/1127 +f 1850/2041/1128 1843/2040/1128 1838/419/1128 1845/417/1128 +f 1795/2042/1129 1788/2021/1129 1790/2022/1129 1797/2043/1129 +f 1797/2043/1130 1790/2022/1130 1791/2023/1130 1798/2044/1130 +f 1798/2044/1131 1791/2023/1131 1792/2045/1131 1799/2046/1131 +f 1799/2047/1132 1792/2048/1132 1793/2049/1132 1800/2050/1132 +f 1800/2050/1133 1793/2049/1133 1794/2051/1133 1801/2052/1133 +f 1801/2052/1134 1794/2051/1134 1789/421/1134 1796/424/1134 +f 1837/402/1135 1830/401/1135 1832/2053/1135 1839/2032/1135 +f 1839/2032/1136 1832/2053/1136 1833/2054/1136 1840/2033/1136 +f 1840/2033/1137 1833/2054/1137 1834/2055/1137 1841/2056/1137 +f 1841/2057/1138 1834/2058/1138 1835/2059/1138 1842/2060/1138 +f 1842/2060/1139 1835/2059/1139 1836/2061/1139 1843/2062/1139 +f 1843/2062/1140 1836/2061/1140 1831/423/1140 1838/422/1140 +f 1802/2063/1141 1795/2042/1141 1797/2043/1141 1804/2064/1141 +f 1804/2064/1142 1797/2043/1142 1798/2044/1142 1805/2065/1142 +f 1805/2065/1143 1798/2044/1143 1799/2066/1143 1806/2067/1143 +f 1806/2068/1144 1799/2069/1144 1800/2070/1144 1807/2071/1144 +f 1807/2071/1145 1800/2070/1145 1801/2072/1145 1808/2073/1145 +f 1808/2073/1146 1801/2072/1146 1796/424/1146 1803/333/1146 +f 1830/401/1147 1823/400/1147 1825/2074/1147 1832/2053/1147 +f 1832/2053/1148 1825/2074/1148 1826/2075/1148 1833/2054/1148 +f 1833/2054/1149 1826/2075/1149 1827/2076/1149 1834/2077/1149 +f 1834/2078/1150 1827/2079/1150 1828/2080/1150 1835/2081/1150 +f 1835/2081/1151 1828/2080/1151 1829/2082/1151 1836/2083/1151 +f 1836/2083/1152 1829/2082/1152 1824/334/1152 1831/423/1152 +f 1760/2084/1153 1802/2063/1153 1804/2064/1153 1762/2085/1153 +f 1762/2085/1154 1804/2064/1154 1805/2065/1154 1763/2086/1154 +f 1763/2086/1155 1805/2065/1155 1806/2087/1155 1764/2088/1155 +f 1764/2089/1156 1806/2090/1156 1807/2091/1156 1765/2092/1156 +f 1765/2092/1157 1807/2091/1157 1808/2093/1157 1766/2094/1157 +f 1766/2094/1158 1808/2093/1158 1803/333/1158 1761/336/1158 +f 1823/400/1159 1809/399/1159 1811/2095/1159 1825/2074/1159 +f 1825/2074/1160 1811/2095/1160 1812/2096/1160 1826/2075/1160 +f 1826/2075/1161 1812/2096/1161 1813/2097/1161 1827/2098/1161 +f 1827/2099/1162 1813/2100/1162 1814/2101/1162 1828/2102/1162 +f 1828/2102/1163 1814/2101/1163 1815/2103/1163 1829/2104/1163 +f 1829/2104/1164 1815/2103/1164 1810/335/1164 1824/334/1164 +f 1537/332/1165 1866/371/1165 1871/2105/1165 1542/2106/1165 +f 1542/2106/1166 1871/2105/1166 1870/2107/1166 1541/2108/1166 +f 1541/2108/1167 1870/2107/1167 1869/2109/1167 1540/2110/1167 +f 1540/2111/1168 1869/2112/1168 1868/1501/1168 1539/1782/1168 +f 1539/1782/1169 1868/1501/1169 1867/1499/1169 1538/1781/1169 +f 1538/1781/1170 1867/1499/1170 1865/1498/1170 1536/1780/1170 +f 1873/344/1171 1754/325/1171 1759/2113/1171 1878/2114/1171 +f 1878/2114/1172 1759/2113/1172 1758/2115/1172 1877/2116/1172 +f 1877/2116/1173 1758/2115/1173 1757/2117/1173 1876/2118/1173 +f 1876/2119/1174 1757/2120/1174 1756/1957/1174 1875/1630/1174 +f 1875/1630/1175 1756/1957/1175 1755/1955/1175 1874/1629/1175 +f 1874/1629/1176 1755/1955/1176 1753/1954/1176 1872/1628/1176 +f 1761/336/1177 1586/367/1177 1591/2121/1177 1766/2122/1177 +f 1766/2122/1178 1591/2121/1178 1590/2123/1178 1765/2124/1178 +f 1765/2124/1179 1590/2123/1179 1589/2125/1179 1764/2126/1179 +f 1764/2127/1180 1589/2128/1180 1588/1805/1180 1763/2086/1180 +f 1763/2086/1181 1588/1805/1181 1587/1803/1181 1762/2085/1181 +f 1762/2085/1182 1587/1803/1182 1585/1802/1182 1760/2084/1182 +f 1593/324/1183 1530/357/1183 1535/2129/1183 1598/2130/1183 +f 1598/2130/1184 1535/2129/1184 1534/2131/1184 1597/2132/1184 +f 1597/2132/1185 1534/2131/1185 1533/2133/1185 1596/2134/1185 +f 1596/2135/1186 1533/2136/1186 1532/1653/1186 1595/1934/1186 +f 1595/1934/1187 1532/1653/1187 1531/1651/1187 1594/1933/1187 +f 1594/1933/1188 1531/1651/1188 1529/1650/1188 1592/1932/1188 +f 1697/383/1189 1928/414/1189 1930/1512/1189 1699/1791/1189 +f 1699/1791/1190 1930/1512/1190 1931/1514/1190 1700/1792/1190 +f 1700/1792/1191 1931/1514/1191 1932/2137/1191 1701/2138/1191 +f 1701/2139/1192 1932/2140/1192 1933/2141/1192 1702/2142/1192 +f 1702/2142/1193 1933/2141/1193 1934/2143/1193 1703/2144/1193 +f 1703/2144/1194 1934/2143/1194 1929/372/1194 1698/331/1194 +f 1641/391/1195 1704/390/1195 1706/1664/1195 1643/1943/1195 +f 1643/1943/1196 1706/1664/1196 1707/1666/1196 1644/1944/1196 +f 1644/1944/1197 1707/1666/1197 1708/2145/1197 1645/2146/1197 +f 1645/2147/1198 1708/2148/1198 1709/2149/1198 1646/2150/1198 +f 1646/2150/1199 1709/2149/1199 1710/2151/1199 1647/2152/1199 +f 1647/2152/1200 1710/2151/1200 1705/358/1200 1642/323/1200 +f 1809/399/1201 1648/398/1201 1650/1816/1201 1811/2095/1201 +f 1811/2095/1202 1650/1816/1202 1651/1818/1202 1812/2096/1202 +f 1812/2096/1203 1651/1818/1203 1652/2153/1203 1813/2154/1203 +f 1813/2155/1204 1652/2156/1204 1653/2157/1204 1814/2158/1204 +f 1814/2158/1205 1653/2157/1205 1654/2159/1205 1815/2160/1205 +f 1815/2160/1206 1654/2159/1206 1649/368/1206 1810/335/1206 +f 1817/326/1207 1922/343/1207 1927/2161/1207 1822/2162/1207 +f 1822/2162/1208 1927/2161/1208 1926/2163/1208 1821/2164/1208 +f 1821/2164/1209 1926/2163/1209 1925/2165/1209 1820/2166/1209 +f 1820/2167/1210 1925/2168/1210 1924/1640/1210 1819/1970/1210 +f 1819/1970/1211 1924/1640/1211 1923/1639/1211 1818/1968/1211 +f 1818/1968/1212 1923/1639/1212 1921/407/1212 1816/406/1212 +f 1865/1498/57 1879/1497/57 1886/1523/57 1893/1544/57 1900/1565/57 1907/1586/57 1914/1607/57 1872/1628/57 1753/1954/57 1767/1953/57 1774/1979/57 1781/2000/57 1788/2021/57 1795/2042/57 1802/2063/57 1760/2084/57 1585/1802/57 1599/1801/57 1606/1827/57 1613/1848/57 1620/1869/57 1627/1890/57 1634/1911/57 1592/1932/57 1529/1650/57 1543/1649/57 1550/1675/57 1557/1696/57 1564/1717/57 1571/1738/57 1578/1759/57 1536/1780/57 +f 683/639/57 671/638/57 899/867/57 +f 899/867/57 887/866/57 875/843/57 +f 683/639/57 899/867/57 863/831/57 +f 707/663/57 695/651/57 683/639/57 +f 731/691/57 719/679/57 755/715/57 +f 755/715/57 743/703/57 731/691/57 +f 779/743/57 767/729/57 755/715/57 +f 803/767/57 791/755/57 755/715/57 +f 827/795/57 815/779/57 851/819/57 +f 851/819/57 839/807/57 827/795/57 +f 875/843/57 863/831/57 899/867/57 +f 1355/1365/57 1469/1378/57 1403/1353/57 +f 851/819/57 815/779/57 803/767/57 +f 791/755/57 779/743/57 755/715/57 +f 755/715/57 719/679/57 707/663/57 +f 707/663/57 683/639/57 863/831/57 +f 887/866/57 1355/1365/57 875/843/57 +f 803/767/57 755/715/57 707/663/57 +f 887/866/57 1469/1378/57 1355/1365/57 +f 1403/1353/57 1469/1378/57 1481/1377/57 +f 803/767/57 707/663/57 851/819/57 +f 707/663/57 863/831/57 851/819/57 +f 1397/1341/57 1403/1353/57 1487/1401/57 +f 1391/1329/57 1397/1341/57 1493/1413/57 +f 1481/1377/57 1487/1401/57 1403/1353/57 +f 1487/1401/57 1493/1413/57 1397/1341/57 +f 1385/1317/57 1391/1329/57 1499/1425/57 +f 1379/1305/57 1385/1317/57 1505/1437/57 +f 1493/1413/57 1499/1425/57 1391/1329/57 +f 1499/1425/57 1505/1437/57 1385/1317/57 +f 1373/1293/57 1379/1305/57 1511/1449/57 +f 1379/1305/57 1505/1437/57 1511/1449/57 +f 1373/1293/57 1511/1449/57 1517/1461/57 +f 1367/1281/57 1373/1293/57 1517/1461/57 +f 1367/1281/57 1517/1461/57 1523/1473/57 +f 1361/1257/57 1367/1281/57 1523/1473/57 +f 1475/1485/57 1097/1162/57 1199/1149/57 +f 1361/1257/57 1523/1473/57 1349/1258/57 +f 1235/1137/57 1199/1149/57 1109/1161/57 +f 1349/1258/57 1523/1473/57 1475/1485/57 +f 1097/1162/57 1109/1161/57 1199/1149/57 +f 1115/1185/57 1121/1197/57 1229/1125/57 +f 1127/1209/57 1133/1221/57 1217/1101/57 +f 1139/1233/57 1103/1245/57 1205/1066/57 +f 1049/517/57 1061/967/57 1055/1054/57 +f 1067/990/57 1073/1002/57 1079/1014/57 +f 1079/1014/57 1085/1026/57 1091/1042/57 +f 1091/1042/57 1055/1054/57 1061/967/57 +f 953/869/57 965/868/57 995/944/57 +f 971/892/57 977/904/57 983/916/57 +f 983/916/57 989/932/57 995/944/57 +f 995/944/57 959/518/57 953/869/57 +f 1193/519/57 1205/1066/57 1103/1245/57 +f 1211/1089/57 1217/1101/57 1133/1221/57 +f 1223/1113/57 1229/1125/57 1121/1197/57 +f 1199/1149/57 1349/1258/57 1475/1485/57 +f 1109/1161/57 1115/1185/57 1235/1137/57 +f 1133/1221/57 1139/1233/57 1211/1089/57 +f 1061/967/57 1067/990/57 1079/1014/57 +f 1079/1014/57 1091/1042/57 1061/967/57 +f 965/868/57 971/892/57 983/916/57 +f 983/916/57 995/944/57 965/868/57 +f 1205/1066/57 1211/1089/57 1139/1233/57 +f 1229/1125/57 1235/1137/57 1115/1185/57 +f 1121/1197/57 1127/1209/57 1223/1113/57 +f 1049/517/57 1055/1054/57 953/869/57 +f 953/869/57 959/518/57 1049/517/57 +f 1217/1101/57 1223/1113/57 1127/1209/57 +f 1103/1245/57 1049/517/57 1193/519/57 +f 665/627/25 677/626/25 893/854/25 +f 689/645/25 701/657/25 713/671/25 +f 713/671/25 725/685/25 737/697/25 +f 737/697/25 749/709/25 785/749/25 +f 761/722/25 773/736/25 785/749/25 +f 785/749/25 797/761/25 809/773/25 +f 809/773/25 821/787/25 785/749/25 +f 833/801/25 845/813/25 857/825/25 +f 857/825/25 869/837/25 893/854/25 +f 833/801/25 857/825/25 893/854/25 +f 785/749/25 821/787/25 833/801/25 +f 749/709/25 761/722/25 785/749/25 +f 689/645/25 713/671/25 785/749/25 +f 893/854/25 677/626/25 689/645/25 +f 1295/1389/25 869/837/25 1409/1371/25 +f 881/855/25 869/837/25 1295/1389/25 +f 713/671/25 737/697/25 785/749/25 +f 785/749/25 833/801/25 893/854/25 +f 869/837/25 881/855/25 893/854/25 +f 893/854/25 689/645/25 785/749/25 +f 1343/1390/25 1295/1389/25 1409/1371/25 +f 1409/1371/25 1421/1359/25 1343/1390/25 +f 1421/1359/25 1427/1347/25 1337/1407/25 +f 1337/1407/25 1343/1390/25 1421/1359/25 +f 1331/1419/25 1337/1407/25 1427/1347/25 +f 1427/1347/25 1433/1335/25 1331/1419/25 +f 1433/1335/25 1439/1323/25 1325/1431/25 +f 1325/1431/25 1331/1419/25 1433/1335/25 +f 1319/1443/25 1325/1431/25 1439/1323/25 +f 1439/1323/25 1445/1311/25 1319/1443/25 +f 1445/1311/25 1451/1299/25 1313/1455/25 +f 1313/1455/25 1319/1443/25 1445/1311/25 +f 1307/1467/25 1313/1455/25 1451/1299/25 +f 1307/1467/25 1451/1299/25 1457/1287/25 +f 1301/1479/25 1307/1467/25 1457/1287/25 +f 1301/1479/25 1457/1287/25 1463/1270/25 +f 1187/1174/25 1151/1173/25 1253/1143/25 +f 1289/1491/25 1301/1479/25 1463/1270/25 +f 1415/1269/25 1151/1173/25 1289/1491/25 +f 1289/1491/25 1463/1270/25 1415/1269/25 +f 1181/1191/25 1187/1174/25 1259/1131/25 +f 1169/1215/25 1175/1203/25 1271/1107/25 +f 1157/1239/25 1283/1078/25 1247/1077/25 +f 1007/978/25 1145/1251/25 905/961/25 +f 1037/996/25 1043/979/25 1025/1020/25 +f 1025/1020/25 1031/1008/25 1037/996/25 +f 1013/1048/25 1019/1034/25 1025/1020/25 +f 911/880/25 1001/1060/25 1007/978/25 +f 941/898/25 947/881/25 929/924/25 +f 929/924/25 935/910/25 941/898/25 +f 917/950/25 923/938/25 929/924/25 +f 1247/1077/25 905/961/25 1145/1251/25 +f 1277/1095/25 1283/1078/25 1163/1227/25 +f 1265/1119/25 1271/1107/25 1175/1203/25 +f 1253/1143/25 1259/1131/25 1187/1174/25 +f 1415/1269/25 1241/1155/25 1151/1173/25 +f 1175/1203/25 1181/1191/25 1265/1119/25 +f 1145/1251/25 1157/1239/25 1247/1077/25 +f 1025/1020/25 1043/979/25 1013/1048/25 +f 1001/1060/25 1043/979/25 1007/978/25 +f 929/924/25 947/881/25 917/950/25 +f 905/961/25 917/950/25 911/880/25 +f 1271/1107/25 1277/1095/25 1169/1215/25 +f 1241/1155/25 1253/1143/25 1151/1173/25 +f 1163/1227/25 1283/1078/25 1157/1239/25 +f 1013/1048/25 1043/979/25 1001/1060/25 +f 917/950/25 947/881/25 911/880/25 +f 1259/1131/25 1265/1119/25 1181/1191/25 +f 911/880/25 1007/978/25 905/961/25 +s 1 +f 356/2169/1213 323/2170/1214 322/2171/1215 355/2172/1216 +f 357/2173/1217 324/2174/1218 323/2170/1214 356/2169/1213 +f 358/2175/1219 325/2176/1220 324/2174/1218 357/2173/1217 +f 359/2177/1221 326/2178/1222 325/2176/1220 358/2175/1219 +f 360/2179/1223 327/2180/1224 326/2178/1222 359/2177/1221 +f 361/2181/1225 328/2182/1226 327/2180/1224 360/2179/1223 +f 362/2183/1227 329/2184/1228 328/2182/1226 361/2181/1225 +f 363/2185/1229 347/2186/1230 329/2184/1228 362/2183/1227 +f 364/2187/1231 330/2188/1232 347/2186/1230 363/2185/1229 +f 365/2189/1233 348/2190/1234 330/2188/1232 364/2187/1231 +f 366/2191/1235 331/2192/1236 348/2190/1234 365/2189/1233 +f 367/2193/1237 332/2194/1238 331/2192/1236 366/2191/1235 +f 368/2195/1239 349/2196/1240 332/2194/1238 367/2193/1237 +f 369/2197/1241 333/2198/1242 349/2196/1240 368/2195/1239 +f 370/2199/1243 334/2200/1244 333/2198/1242 369/2197/1241 +f 371/2201/1245 335/2202/1246 334/2200/1244 370/2199/1243 +f 372/2203/1247 336/2204/1248 335/2205/1246 371/2206/1245 +f 373/2207/1249 337/2208/1250 336/2204/1248 372/2203/1247 +f 374/2209/1251 350/2210/1252 337/2208/1250 373/2207/1249 +f 376/2211/1253 338/2212/1254 350/2210/1252 374/2209/1251 +f 377/2213/1255 340/2214/1256 339/2215/1257 375/2216/1258 +f 375/2216/1258 339/2215/1257 338/2212/1254 376/2211/1253 +f 378/2217/1259 351/2218/1260 340/2214/1256 377/2213/1255 +f 379/2219/1261 341/2220/1262 351/2218/1260 378/2217/1259 +f 380/2221/1263 352/2222/1264 341/2220/1262 379/2219/1261 +f 382/2223/1265 342/2224/1266 352/2222/1264 380/2221/1263 +f 383/2225/1267 344/2226/1268 343/2227/1269 381/2228/1270 +f 381/2228/1270 343/2227/1269 342/2224/1266 382/2223/1265 +f 384/2229/1271 345/2230/1272 344/2226/1268 383/2225/1267 +f 354/2231/1273 346/2232/1274 345/2230/1272 384/2229/1271 +f 30/2233/1275 33/2234/1276 34/2235/1277 1/2236/1278 +f 2/2237/1279 1/2236/1278 34/2235/1277 35/2238/1280 +f 3/2239/1281 2/2237/1279 35/2238/1280 36/2240/1282 +f 4/2241/1283 3/2239/1281 36/2240/1282 37/2242/1284 +f 5/2243/1285 4/2241/1283 37/2242/1284 38/2244/1286 +f 6/2245/1287 5/2243/1285 38/2244/1286 39/2246/1288 +f 6/2245/1287 39/2246/1288 40/2247/1289 7/2248/1290 +f 8/2249/1291 7/2248/1290 40/2247/1289 41/2250/1292 +f 9/2251/1293 8/2249/1291 41/2250/1292 42/2252/1294 +f 10/2253/1295 9/2251/1293 42/2252/1294 43/2254/1296 +f 10/2253/1295 43/2254/1296 44/2255/1297 11/2256/1298 +f 11/2256/1298 44/2255/1297 45/2257/1299 31/2258/1300 +f 12/2259/1301 46/2260/1302 47/2261/1303 13/2262/1304 +f 31/2258/1300 45/2257/1299 46/2260/1302 12/2259/1301 +f 13/2262/1304 47/2261/1303 48/2263/1305 14/2264/1306 +f 15/2265/1307 14/2264/1306 48/2263/1305 49/2266/1308 +f 15/2265/1307 49/2266/1308 50/2267/1309 16/2268/1310 +f 17/2269/1311 16/2268/1310 50/2267/1309 51/2270/1312 +f 17/2271/1311 51/2272/1312 52/2273/1313 18/2274/1314 +f 19/2275/1315 18/2274/1314 52/2273/1313 53/2276/1316 +f 19/2275/1315 53/2276/1316 54/2277/1317 20/2278/1318 +f 20/2278/1318 54/2277/1317 55/2279/1319 22/2280/1320 +f 22/2280/1320 55/2279/1319 56/2281/1321 21/2282/1322 +f 21/2282/1322 56/2281/1321 57/2283/1323 23/2284/1324 +f 23/2284/1324 57/2283/1323 58/2285/1325 24/2286/1326 +f 24/2286/1326 58/2285/1325 59/2287/1327 32/2288/1328 +f 27/2289/1329 25/2290/1330 60/2291/1331 61/2292/1332 +f 25/2290/1330 32/2288/1328 59/2287/1327 60/2291/1331 +f 28/2293/1333 26/2294/1334 62/2295/1335 63/2296/1336 +f 27/2289/1329 61/2292/1332 62/2295/1335 26/2294/1334 +f 29/2297/1337 28/2293/1333 63/2296/1336 64/2298/1338 +f 29/2297/1337 64/2298/1338 33/2234/1276 30/2233/1275 +f 67/2299/1339 44/2255/1297 43/2254/1296 66/2300/1340 +f 70/2301/1341 66/2300/1340 65/2302/1342 71/2303/1343 +f 72/2304/1344 67/2299/1339 66/2300/1340 70/2301/1341 +f 74/2305/1345 68/2306/1346 67/2299/1339 72/2304/1344 +f 69/2307/1347 41/2250/1292 40/2247/1289 75/2308/1348 +f 71/2303/1343 65/2302/1342 69/2307/1347 76/2309/1349 +f 78/2310/1350 73/2311/1351 68/2306/1346 74/2305/1345 +f 80/2312/1352 76/2309/1349 69/2307/1347 75/2308/1348 +f 82/2313/1353 77/2314/1354 73/2311/1351 78/2310/1350 +f 84/2315/1355 80/2312/1352 75/2308/1348 79/2316/1356 +f 388/2317/1228 392/2318/1227 393/2319/1229 385/2320/1230 +f 387/2321/1234 395/2322/1233 396/2323/1235 389/2324/1236 +f 86/2325/1357 81/2326/1358 77/2314/1354 82/2313/1353 +f 391/2327/1226 398/2328/1225 392/2318/1227 388/2317/1228 +f 88/2329/1359 84/2315/1355 79/2316/1356 83/2330/1360 +f 389/2324/1236 396/2323/1235 400/2331/1237 399/2332/1238 +f 90/2333/1361 85/2334/1362 81/2326/1358 86/2325/1357 +f 390/2335/1224 403/2336/1223 398/2328/1225 391/2327/1226 +f 92/2337/1363 88/2329/1359 83/2330/1360 87/2338/1364 +f 397/2339/1222 402/2340/1221 403/2336/1223 390/2335/1224 +f 94/2341/1365 89/2342/1366 85/2334/1362 90/2333/1361 +f 406/2343/1218 411/2344/1217 407/2345/1219 401/2346/1220 +f 96/2347/1367 92/2337/1363 87/2338/1364 91/2348/1368 +f 399/2332/1238 400/2331/1237 405/2349/1239 404/2350/1240 +f 98/2351/1369 93/2352/1370 89/2342/1366 94/2341/1365 +f 410/2353/1214 415/2354/1213 411/2344/1217 406/2343/1218 +f 100/2355/1371 96/2347/1367 91/2348/1368 95/2356/1372 +f 404/2350/1240 405/2349/1239 409/2357/1241 408/2358/1242 +f 102/2359/1373 97/2360/1374 93/2361/1370 98/2362/1369 +f 355/2172/1216 322/2171/1215 321/2363/1375 353/2364/1376 +f 414/2365/1215 420/2366/1216 415/2354/1213 410/2353/1214 +f 36/2240/1282 91/2348/1368 87/2338/1364 37/2242/1284 +f 117/2367/1377 57/2283/1323 56/2281/1321 113/2368/1378 +f 104/2369/1379 100/2355/1371 95/2356/1372 99/2370/1380 +f 408/2358/1242 409/2357/1241 413/2371/1243 412/2372/1244 +f 106/2373/1381 101/2374/1382 97/2360/1374 102/2359/1373 +f 419/2375/1375 424/2376/1376 420/2366/1216 414/2365/1215 +f 108/2377/1383 104/2369/1379 99/2370/1380 103/2378/1384 +f 412/2372/1244 413/2371/1243 418/2379/1245 417/2380/1246 +f 110/2381/1385 105/2382/1386 101/2374/1382 106/2373/1381 +f 423/2383/1274 428/2384/1273 424/2376/1376 419/2375/1375 +f 112/2385/1387 108/2377/1383 103/2378/1384 107/2386/1388 +f 416/2387/1248 422/2388/1247 426/2389/1249 421/2390/1250 +f 110/2381/1385 114/2391/1389 109/2392/1390 105/2382/1386 +f 417/2380/1246 418/2379/1245 422/2393/1247 416/2394/1248 +f 116/2395/1391 112/2385/1387 107/2386/1388 111/2396/1392 +f 421/2390/1250 426/2389/1249 430/2397/1251 425/2398/1252 +f 385/2320/1230 393/2319/1229 394/2399/1231 386/2400/1232 +f 118/2401/1393 113/2368/1378 109/2392/1390 114/2391/1389 +f 427/2402/1272 432/2403/1271 428/2384/1273 423/2383/1274 +f 61/2292/1332 119/2404/1394 115/2405/1395 62/2295/1335 +f 120/2406/1396 116/2395/1391 111/2396/1392 115/2405/1395 +f 425/2398/1252 430/2397/1251 434/2407/1253 429/2408/1254 +f 118/2401/1393 122/2409/1397 117/2367/1377 113/2368/1378 +f 431/2410/1268 436/2411/1267 432/2403/1271 427/2402/1272 +f 124/2412/1398 120/2406/1396 115/2405/1395 119/2404/1394 +f 429/2408/1254 434/2407/1253 439/2413/1258 433/2414/1257 +f 122/2409/1397 126/2415/1399 121/2416/1400 117/2367/1377 +f 435/2417/1269 441/2418/1270 436/2411/1267 431/2410/1268 +f 401/2346/1220 407/2345/1219 402/2340/1221 397/2339/1222 +f 127/2419/1401 124/2412/1398 119/2404/1394 123/2420/1402 +f 433/2414/1257 439/2413/1258 445/2421/1255 438/2422/1256 +f 126/2415/1399 128/2423/1403 125/2424/1404 121/2416/1400 +f 440/2425/1266 437/2426/1265 441/2418/1270 435/2417/1269 +f 128/2423/1403 127/2419/1401 123/2420/1402 125/2424/1404 +f 386/2400/1232 394/2399/1231 395/2322/1233 387/2321/1234 +f 446/2427/1264 443/2428/1263 437/2426/1265 440/2425/1266 +f 438/2422/1256 445/2421/1255 444/2429/1259 447/2430/1260 +f 448/2431/1262 442/2432/1261 443/2428/1263 446/2427/1264 +f 447/2430/1260 444/2429/1259 442/2432/1261 448/2431/1262 +f 129/2433/1405 130/2434/1205 131/2435/1406 132/2436/1407 +f 136/2437/1408 137/2438/1201 130/2434/1205 129/2433/1405 +f 132/2436/1407 131/2435/1406 138/2439/1170 133/2440/1409 +f 133/2440/1409 138/2439/1170 139/2441/1166 134/2442/1410 +f 134/2443/1410 139/2444/1166 140/2445/1411 135/2446/1412 +f 135/2446/1412 140/2445/1411 137/2438/1201 136/2437/1408 +f 141/2447/1413 142/2448/1166 143/2449/1170 144/2450/1414 +f 148/2451/1415 149/2452/1411 142/2448/1166 141/2447/1413 +f 144/2450/1414 143/2449/1170 150/2453/1406 145/2454/1416 +f 145/2454/1416 150/2453/1406 151/2455/1205 146/2456/1417 +f 146/2457/1417 151/2458/1205 152/2459/1201 147/2460/1418 +f 147/2460/1418 152/2459/1201 149/2452/1411 148/2451/1415 +f 153/2461/1419 154/2462/1202 155/2463/1206 156/2464/1420 +f 160/2465/1421 161/2466/1422 154/2462/1202 153/2461/1419 +f 156/2464/1420 155/2463/1206 162/2467/1423 157/2468/1424 +f 157/2468/1424 162/2467/1423 163/2469/1169 158/2470/1425 +f 158/2471/1425 163/2472/1169 164/2473/1165 159/2474/1426 +f 159/2474/1426 164/2473/1165 161/2466/1422 160/2465/1421 +f 165/2475/1427 166/2476/1169 167/2477/1423 168/2478/1428 +f 172/2479/1429 173/2480/1165 166/2476/1169 165/2475/1427 +f 168/2478/1428 167/2477/1423 174/2481/1206 169/2482/1430 +f 169/2482/1430 174/2481/1206 175/2483/1202 170/2484/1431 +f 170/2485/1431 175/2486/1202 176/2487/1422 171/2488/1432 +f 171/2488/1432 176/2487/1422 173/2480/1165 172/2479/1429 +f 177/2489/1433 178/2490/1190 179/2491/1434 180/2492/1435 +f 184/2493/1436 185/2494/1194 178/2490/1190 177/2489/1433 +f 180/2492/1435 179/2491/1434 186/2495/1177 181/2496/1437 +f 181/2496/1437 186/2495/1177 187/2497/1181 182/2498/1438 +f 182/2499/1438 187/2500/1181 188/2501/1439 183/2502/1440 +f 183/2502/1440 188/2501/1439 185/2494/1194 184/2493/1436 +f 189/2503/1441 190/2504/1181 191/2505/1177 192/2506/1442 +f 196/2507/1443 197/2508/1439 190/2504/1181 189/2503/1441 +f 192/2506/1442 191/2505/1177 198/2509/1434 193/2510/1444 +f 193/2510/1444 198/2509/1434 199/2511/1190 194/2512/1445 +f 194/2513/1445 199/2514/1190 200/2515/1194 195/2516/1446 +f 195/2516/1446 200/2515/1194 197/2508/1439 196/2507/1443 +f 201/2517/1447 202/2518/1193 203/2519/1189 204/2520/1448 +f 208/2521/1449 209/2522/1450 202/2518/1193 201/2517/1447 +f 204/2520/1448 203/2519/1189 210/2523/1451 205/2524/1452 +f 205/2524/1452 210/2523/1451 211/2525/1178 206/2526/1453 +f 206/2527/1453 211/2528/1178 212/2529/1182 207/2530/1454 +f 207/2530/1454 212/2529/1182 209/2522/1450 208/2521/1449 +f 213/2531/1455 214/2532/1178 215/2533/1451 216/2534/1456 +f 220/2535/1457 221/2536/1182 214/2532/1178 213/2531/1455 +f 216/2534/1456 215/2533/1451 222/2537/1189 217/2538/1458 +f 217/2538/1458 222/2537/1189 223/2539/1193 218/2540/1459 +f 218/2541/1459 223/2542/1193 224/2543/1450 219/2544/1460 +f 219/2544/1460 224/2543/1450 221/2536/1182 220/2535/1457 +f 225/2545/1410 226/2546/1166 227/2547/1411 228/2548/1412 +f 232/2549/1409 233/2550/1170 226/2546/1166 225/2545/1410 +f 228/2548/1412 227/2547/1411 234/2551/1201 229/2552/1408 +f 229/2552/1408 234/2551/1201 235/2553/1205 230/2554/1405 +f 230/2555/1405 235/2556/1205 236/2557/1406 231/2558/1407 +f 231/2558/1407 236/2557/1406 233/2550/1170 232/2549/1409 +f 237/2559/1417 238/2560/1205 239/2561/1201 240/2562/1418 +f 244/2563/1416 245/2564/1406 238/2560/1205 237/2559/1417 +f 240/2562/1418 239/2561/1201 246/2565/1411 241/2566/1415 +f 241/2566/1415 246/2565/1411 247/2567/1166 242/2568/1413 +f 242/2569/1413 247/2570/1166 248/2571/1170 243/2572/1414 +f 243/2572/1414 248/2571/1170 245/2564/1406 244/2563/1416 +f 249/2573/1425 250/2574/1169 251/2575/1165 252/2576/1426 +f 256/2577/1424 257/2578/1423 250/2574/1169 249/2573/1425 +f 252/2576/1426 251/2575/1165 258/2579/1422 253/2580/1421 +f 253/2580/1421 258/2579/1422 259/2581/1202 254/2582/1419 +f 254/2583/1419 259/2584/1202 260/2585/1206 255/2586/1420 +f 255/2586/1420 260/2585/1206 257/2578/1423 256/2577/1424 +f 261/2587/1431 262/2588/1202 263/2589/1422 264/2590/1432 +f 268/2591/1430 269/2592/1206 262/2588/1202 261/2587/1431 +f 264/2590/1432 263/2589/1422 270/2593/1165 265/2594/1429 +f 265/2594/1429 270/2593/1165 271/2595/1169 266/2596/1427 +f 266/2597/1427 271/2598/1169 272/2599/1423 267/2600/1428 +f 267/2600/1428 272/2599/1423 269/2592/1206 268/2591/1430 +f 273/2601/1438 274/2602/1181 275/2603/1439 276/2604/1440 +f 280/2605/1437 281/2606/1177 274/2602/1181 273/2601/1438 +f 276/2604/1440 275/2603/1439 282/2607/1194 277/2608/1436 +f 277/2608/1436 282/2607/1194 283/2609/1190 278/2610/1433 +f 278/2611/1433 283/2612/1190 284/2613/1434 279/2614/1435 +f 279/2614/1435 284/2613/1434 281/2606/1177 280/2605/1437 +f 285/2615/1445 286/2616/1190 287/2617/1194 288/2618/1446 +f 292/2619/1444 293/2620/1434 286/2616/1190 285/2615/1445 +f 288/2618/1446 287/2617/1194 294/2621/1439 289/2622/1443 +f 289/2622/1443 294/2621/1439 295/2623/1181 290/2624/1441 +f 290/2625/1441 295/2626/1181 296/2627/1177 291/2628/1442 +f 291/2628/1442 296/2627/1177 293/2620/1434 292/2619/1444 +f 297/2629/1453 298/2630/1178 299/2631/1182 300/2632/1454 +f 304/2633/1452 305/2634/1451 298/2630/1178 297/2629/1453 +f 300/2632/1454 299/2631/1182 306/2635/1450 301/2636/1449 +f 301/2636/1449 306/2635/1450 307/2637/1193 302/2638/1447 +f 302/2639/1447 307/2640/1193 308/2641/1189 303/2642/1448 +f 303/2642/1448 308/2641/1189 305/2634/1451 304/2633/1452 +f 309/2643/1459 310/2644/1193 311/2645/1450 312/2646/1460 +f 316/2647/1458 317/2648/1189 310/2644/1193 309/2643/1459 +f 312/2646/1460 311/2645/1450 318/2649/1182 313/2650/1457 +f 313/2650/1457 318/2649/1182 319/2651/1178 314/2652/1455 +f 314/2653/1455 319/2654/1178 320/2655/1451 315/2656/1456 +f 315/2656/1456 320/2655/1451 317/2648/1189 316/2647/1458 +f 54/2277/1317 53/2276/1316 101/2374/1382 105/2382/1386 +f 64/2298/1338 107/2386/1388 103/2378/1384 33/2234/1276 +f 125/2424/1404 59/2287/1327 58/2285/1325 121/2416/1400 +f 65/2302/1342 42/2252/1294 41/2250/1292 69/2307/1347 +f 62/2295/1335 115/2405/1395 111/2396/1392 63/2296/1336 +f 89/2342/1366 93/2352/1370 51/2270/1312 50/2267/1309 +f 38/2244/1286 37/2242/1284 87/2338/1364 83/2330/1360 +f 121/2416/1400 58/2285/1325 57/2283/1323 117/2367/1377 +f 61/2292/1332 60/2291/1331 123/2420/1402 119/2404/1394 +f 64/2298/1338 63/2296/1336 111/2396/1392 107/2386/1388 +f 125/2424/1404 123/2420/1402 60/2291/1331 59/2287/1327 +f 39/2246/1288 79/2316/1356 75/2308/1348 40/2247/1289 +f 35/2238/1280 34/2235/1277 99/2370/1380 95/2356/1372 +f 55/2279/1319 109/2392/1390 113/2368/1378 56/2281/1321 +f 55/2279/1319 54/2277/1317 105/2382/1386 109/2392/1390 +f 49/2266/1308 48/2263/1305 81/2326/1358 85/2334/1362 +f 353/2364/1376 321/2363/1375 346/2232/1274 354/2231/1273 +f 36/2240/1282 35/2238/1280 95/2356/1372 91/2348/1368 +f 43/2254/1296 42/2252/1294 65/2302/1342 66/2300/1340 +f 45/2257/1299 68/2306/1346 73/2311/1351 46/2260/1302 +f 46/2260/1302 73/2311/1351 77/2314/1354 47/2261/1303 +f 44/2255/1297 67/2299/1339 68/2306/1346 45/2257/1299 +f 52/2273/1313 97/2360/1374 101/2374/1382 53/2276/1316 +f 34/2235/1277 33/2234/1276 103/2378/1384 99/2370/1380 +f 89/2342/1366 50/2267/1309 49/2266/1308 85/2334/1362 +f 449/2657/1461 450/2658/291 451/2659/1462 452/2660/1463 +f 456/2661/1464 457/2662/1465 450/2658/291 449/2657/1461 +f 452/2660/1463 451/2659/1462 458/2663/1466 453/2664/1467 +f 453/2664/1467 458/2663/1466 459/2665/266 454/2666/1468 +f 454/2667/1468 459/2668/266 460/2669/1469 455/2670/1470 +f 455/2670/1470 460/2669/1469 457/2662/1465 456/2661/1464 +f 461/2671/1471 462/2672/266 463/2673/1466 464/2674/1472 +f 468/2675/1473 469/2676/1469 462/2672/266 461/2671/1471 +f 464/2674/1472 463/2673/1466 470/2677/1462 465/2678/1474 +f 465/2678/1474 470/2677/1462 471/2679/291 466/2680/1475 +f 466/2681/1475 471/2682/291 472/2683/1465 467/2684/1476 +f 467/2684/1476 472/2683/1465 469/2676/1469 468/2675/1473 +f 473/2685/1477 474/2686/25 475/2687/1478 476/2688/1479 +f 480/2689/1480 481/2690/1481 474/2686/25 473/2685/1477 +f 476/2688/1479 475/2687/1478 482/2691/1482 477/2692/1483 +f 477/2692/1483 482/2691/1482 483/2693/57 478/2694/1484 +f 478/2695/1484 483/2696/57 484/2697/1485 479/2698/1486 +f 479/2698/1486 484/2697/1485 481/2690/1481 480/2689/1480 +f 485/2699/1487 486/2700/57 487/2701/1482 488/2702/1488 +f 492/2703/1489 493/2704/1485 486/2700/57 485/2699/1487 +f 488/2702/1488 487/2701/1482 494/2705/1478 489/2706/1490 +f 489/2706/1490 494/2705/1478 495/2707/25 490/2708/1491 +f 490/2709/1491 495/2710/25 496/2711/1481 491/2712/1492 +f 491/2712/1492 496/2711/1481 493/2704/1485 492/2703/1489 +f 497/2713/1493 498/2714/261 499/2715/1494 500/2716/1495 +f 504/2717/1496 505/2718/1497 498/2714/261 497/2713/1493 +f 500/2716/1495 499/2715/1494 506/2719/1498 501/2720/1499 +f 501/2720/1499 506/2719/1498 507/2721/296 502/2722/1500 +f 502/2723/1500 507/2724/296 508/2725/1501 503/2726/1502 +f 503/2726/1502 508/2725/1501 505/2718/1497 504/2717/1496 +f 509/2727/1503 510/2728/296 511/2729/1498 512/2730/1504 +f 516/2731/1505 517/2732/1501 510/2728/296 509/2727/1503 +f 512/2730/1504 511/2729/1498 518/2733/1494 513/2734/1506 +f 513/2734/1506 518/2733/1494 519/2735/261 514/2736/1507 +f 514/2737/1507 519/2738/261 520/2739/1497 515/2740/1508 +f 515/2740/1508 520/2739/1497 517/2732/1501 516/2731/1505 +f 521/2741/1509 522/2742/19 523/2743/1510 524/2744/1511 +f 528/2745/1512 529/2746/1513 522/2742/19 521/2741/1509 +f 524/2744/1511 523/2743/1510 530/2747/1514 525/2748/1515 +f 525/2748/1515 530/2747/1514 531/2749/20 526/2750/1516 +f 526/2751/1516 531/2752/20 532/2753/1517 527/2754/1518 +f 527/2754/1518 532/2753/1517 529/2746/1513 528/2745/1512 +f 533/2755/1519 534/2756/20 535/2757/1514 536/2758/1520 +f 540/2759/1521 541/2760/1517 534/2756/20 533/2755/1519 +f 536/2758/1520 535/2757/1514 542/2761/1510 537/2762/1522 +f 537/2762/1522 542/2761/1510 543/2763/19 538/2764/1523 +f 538/2765/1523 543/2766/19 544/2767/1513 539/2768/1524 +f 539/2768/1524 544/2767/1513 541/2760/1517 540/2759/1521 +f 545/2769/1468 546/2770/266 547/2771/1469 548/2772/1470 +f 552/2773/1467 553/2774/1466 546/2770/266 545/2769/1468 +f 548/2772/1470 547/2771/1469 554/2775/1465 549/2776/1464 +f 549/2776/1464 554/2775/1465 555/2777/291 550/2778/1461 +f 550/2779/1461 555/2780/291 556/2781/1462 551/2782/1463 +f 551/2782/1463 556/2781/1462 553/2774/1466 552/2773/1467 +f 557/2783/1475 558/2784/291 559/2785/1465 560/2786/1476 +f 564/2787/1474 565/2788/1462 558/2784/291 557/2783/1475 +f 560/2786/1476 559/2785/1465 566/2789/1469 561/2790/1473 +f 561/2790/1473 566/2789/1469 567/2791/266 562/2792/1471 +f 562/2793/1471 567/2794/266 568/2795/1466 563/2796/1472 +f 563/2796/1472 568/2795/1466 565/2788/1462 564/2787/1474 +f 569/2797/1484 570/2798/57 571/2799/1485 572/2800/1486 +f 576/2801/1483 577/2802/1482 570/2798/57 569/2797/1484 +f 572/2800/1486 571/2799/1485 578/2803/1481 573/2804/1480 +f 573/2804/1480 578/2803/1481 579/2805/25 574/2806/1477 +f 574/2807/1477 579/2808/25 580/2809/1478 575/2810/1479 +f 575/2810/1479 580/2809/1478 577/2802/1482 576/2801/1483 +f 581/2811/1491 582/2812/25 583/2813/1481 584/2814/1492 +f 588/2815/1490 589/2816/1478 582/2812/25 581/2811/1491 +f 584/2814/1492 583/2813/1481 590/2817/1485 585/2818/1489 +f 585/2818/1489 590/2817/1485 591/2819/57 586/2820/1487 +f 586/2821/1487 591/2822/57 592/2823/1482 587/2824/1488 +f 587/2824/1488 592/2823/1482 589/2816/1478 588/2815/1490 +f 593/2825/1500 594/2826/296 595/2827/1501 596/2828/1502 +f 600/2829/1499 601/2830/1498 594/2826/296 593/2825/1500 +f 596/2828/1502 595/2827/1501 602/2831/1497 597/2832/1496 +f 597/2832/1496 602/2831/1497 603/2833/261 598/2834/1493 +f 598/2835/1493 603/2836/261 604/2837/1494 599/2838/1495 +f 599/2838/1495 604/2837/1494 601/2830/1498 600/2829/1499 +f 605/2839/1507 606/2840/261 607/2841/1497 608/2842/1508 +f 612/2843/1506 613/2844/1494 606/2840/261 605/2839/1507 +f 608/2842/1508 607/2841/1497 614/2845/1501 609/2846/1505 +f 609/2846/1505 614/2845/1501 615/2847/296 610/2848/1503 +f 610/2849/1503 615/2850/296 616/2851/1498 611/2852/1504 +f 611/2852/1504 616/2851/1498 613/2844/1494 612/2843/1506 +f 617/2853/1516 618/2854/20 619/2855/1517 620/2856/1518 +f 624/2857/1515 625/2858/1514 618/2854/20 617/2853/1516 +f 620/2856/1518 619/2855/1517 626/2859/1513 621/2860/1512 +f 621/2860/1512 626/2859/1513 627/2861/19 622/2862/1509 +f 622/2863/1509 627/2864/19 628/2865/1510 623/2866/1511 +f 623/2866/1511 628/2865/1510 625/2858/1514 624/2857/1515 +f 629/2867/1523 630/2868/19 631/2869/1513 632/2870/1524 +f 636/2871/1522 637/2872/1510 630/2868/19 629/2867/1523 +f 632/2870/1524 631/2869/1513 638/2873/1517 633/2874/1521 +f 633/2874/1521 638/2873/1517 639/2875/20 634/2876/1519 +f 634/2877/1519 639/2878/20 640/2879/1514 635/2880/1520 +f 635/2880/1520 640/2879/1514 637/2872/1510 636/2871/1522 +f 38/2244/1286 83/2330/1360 79/2316/1356 39/2246/1288 +f 81/2326/1358 48/2263/1305 47/2261/1303 77/2314/1354 +f 51/2272/1312 93/2361/1370 97/2360/1374 52/2273/1313 diff --git a/mods/pipeworks/models/pipeworks_valve_on_lowpoly.obj b/mods/pipeworks/models/pipeworks_valve_on_lowpoly.obj new file mode 100644 index 00000000..c6eaf79c --- /dev/null +++ b/mods/pipeworks/models/pipeworks_valve_on_lowpoly.obj @@ -0,0 +1,286 @@ +# Blender v2.78 (sub 0) OBJ File: 'pipe-valve-on.blend' +# www.blender.org +o Cube.003_Cube.003_None +v -0.062500 0.343750 0.312500 +v -0.062500 0.343750 -0.093750 +v -0.062500 0.281250 -0.093750 +v -0.062500 0.281250 0.312500 +v 0.062500 0.343750 -0.093750 +v 0.062500 0.281250 -0.093750 +v 0.062500 0.343750 0.312500 +v 0.062500 0.281250 0.312500 +v 0.031250 0.281250 0.031250 +v -0.031250 0.281250 0.031250 +v -0.031250 0.250000 0.031250 +v 0.031250 0.250000 0.031250 +v -0.031250 0.281250 -0.031250 +v -0.031250 0.250000 -0.031250 +v 0.031250 0.281250 -0.031250 +v 0.031250 0.250000 -0.031250 +v 0.250000 0.250000 0.250000 +v -0.250000 0.250000 0.250000 +v -0.250000 -0.250000 0.250000 +v 0.250000 -0.250000 0.250000 +v -0.250000 0.250000 -0.250000 +v -0.250000 -0.250000 -0.250000 +v 0.250000 0.250000 -0.250000 +v 0.250000 -0.250000 -0.250000 +v -0.156250 -0.064721 0.500000 +v -0.156250 -0.064721 0.468750 +v -0.064721 -0.156250 0.500000 +v -0.064721 -0.156250 0.468750 +v 0.064721 -0.156250 0.500000 +v 0.064721 -0.156250 0.468750 +v 0.156250 -0.064721 0.500000 +v 0.156250 -0.064721 0.468750 +v 0.156250 0.064721 0.500000 +v 0.156250 0.064721 0.468750 +v 0.064721 0.156250 0.500000 +v 0.064721 0.156250 0.468750 +v -0.064721 0.156250 0.500000 +v -0.064721 0.156250 0.468750 +v -0.156250 0.064721 0.500000 +v -0.156250 0.064721 0.468750 +v -0.125000 -0.051777 0.468750 +v -0.125000 -0.051777 -0.468750 +v -0.051777 -0.125000 0.468750 +v -0.051777 -0.125000 -0.468750 +v 0.051777 -0.125000 0.468750 +v 0.051777 -0.125000 -0.468750 +v 0.125000 -0.051777 0.468750 +v 0.125000 -0.051777 -0.468750 +v 0.125000 0.051777 0.468750 +v 0.125000 0.051777 -0.468750 +v 0.051777 0.125000 0.468750 +v 0.051777 0.125000 -0.468750 +v -0.051777 0.125000 0.468750 +v -0.051777 0.125000 -0.468750 +v -0.125000 0.051777 0.468750 +v -0.125000 0.051777 -0.468750 +v -0.156250 -0.064721 -0.468750 +v -0.156250 -0.064721 -0.500000 +v -0.064721 -0.156250 -0.468750 +v -0.064721 -0.156250 -0.500000 +v 0.064721 -0.156250 -0.468750 +v 0.064721 -0.156250 -0.500000 +v 0.156250 -0.064721 -0.468750 +v 0.156250 -0.064721 -0.500000 +v 0.156250 0.064721 -0.468750 +v 0.156250 0.064721 -0.500000 +v 0.064721 0.156250 -0.468750 +v 0.064721 0.156250 -0.500000 +v -0.064721 0.156250 -0.468750 +v -0.064721 0.156250 -0.500000 +v -0.156250 0.064721 -0.468750 +v -0.156250 0.064721 -0.500000 +vt 0.2656 0.2344 +vt 0.4688 0.2344 +vt 0.4688 0.2656 +vt 0.2656 0.2656 +vt 0.2656 0.1875 +vt 0.3281 0.1875 +vt 0.3281 0.2188 +vt 0.2656 0.2188 +vt 0.4688 0.3125 +vt 0.2656 0.3125 +vt 0.2656 0.2812 +vt 0.4688 0.2812 +vt 0.4062 0.2188 +vt 0.3438 0.2188 +vt 0.3438 0.1875 +vt 0.4062 0.1875 +vt 0.4688 0.4688 +vt 0.2656 0.4688 +vt 0.2656 0.4062 +vt 0.4688 0.4062 +vt 0.4688 0.3906 +vt 0.2656 0.3906 +vt 0.2656 0.3281 +vt 0.4688 0.3281 +vt 0.0391 0.2031 +vt 0.0078 0.2031 +vt 0.0078 0.1875 +vt 0.0391 0.1875 +vt 0.0859 0.2031 +vt 0.0547 0.2031 +vt 0.0547 0.1875 +vt 0.0859 0.1875 +vt 0.1484 0.1875 +vt 0.1797 0.1875 +vt 0.1797 0.2031 +vt 0.1484 0.2031 +vt 0.1328 0.2031 +vt 0.1016 0.2031 +vt 0.1016 0.1875 +vt 0.1328 0.1875 +vt 0.5156 0.4844 +vt 0.5156 0.7344 +vt 0.2656 0.7344 +vt 0.2656 0.4844 +vt 0.0000 0.4688 +vt 0.0000 0.2188 +vt 0.2500 0.2188 +vt 0.2500 0.4688 +vt 0.5156 1.0000 +vt 0.2656 1.0000 +vt 0.2656 0.7500 +vt 0.5156 0.7500 +vt 0.2500 0.7344 +vt 0.0000 0.7344 +vt 0.0000 0.4844 +vt 0.2500 0.4844 +vt 0.7812 1.0000 +vt 0.5312 1.0000 +vt 0.5312 0.7500 +vt 0.7812 0.7500 +vt 0.0008 0.7500 +vt 0.2502 0.7500 +vt 0.2502 0.9994 +vt 0.0008 0.9994 +vt 0.8516 0.4453 +vt 0.8047 0.4922 +vt 0.7422 0.4922 +vt 0.6953 0.4453 +vt 0.6953 0.3828 +vt 0.7422 0.3359 +vt 0.8047 0.3359 +vt 0.8516 0.3828 +vt 0.6172 0.4922 +vt 0.6641 0.4453 +vt 0.6641 0.3828 +vt 0.6172 0.3359 +vt 0.5547 0.3359 +vt 0.5078 0.3828 +vt 0.5078 0.4453 +vt 0.5547 0.4922 +vt 0.6641 0.4453 +vt 0.6172 0.4922 +vt 0.5547 0.4922 +vt 0.5078 0.4453 +vt 0.5078 0.3828 +vt 0.5547 0.3359 +vt 0.6172 0.3359 +vt 0.6641 0.3828 +vt 0.8047 0.4922 +vt 0.8516 0.4453 +vt 0.8516 0.3828 +vt 0.8047 0.3359 +vt 0.7422 0.3359 +vt 0.6953 0.3828 +vt 0.6953 0.4453 +vt 0.7422 0.4922 +vt 0.8984 0.2969 +vt 0.8984 0.2812 +vt 0.9297 0.2812 +vt 0.9297 0.2969 +vt 0.9609 0.2812 +vt 0.9609 0.2969 +vt 0.9922 0.2812 +vt 0.9922 0.2969 +vt 0.7422 0.2969 +vt 0.7422 0.2812 +vt 0.7734 0.2812 +vt 0.7734 0.2969 +vt 0.8047 0.2812 +vt 0.8047 0.2969 +vt 0.8359 0.2812 +vt 0.8359 0.2969 +vt 0.8672 0.2812 +vt 0.8672 0.2969 +vt 0.6797 0.2969 +vt 0.6797 0.2812 +vt 0.7109 0.2812 +vt 0.7109 0.2969 +vt 0.6484 0.2969 +vt 0.6484 0.2812 +vt 0.7422 0.2812 +vt 0.7422 0.2969 +vt 0.4922 0.2969 +vt 0.4922 0.2812 +vt 0.5234 0.2812 +vt 0.5234 0.2969 +vt 0.5547 0.2812 +vt 0.5547 0.2969 +vt 0.5859 0.2812 +vt 0.5859 0.2969 +vt 0.6172 0.2812 +vt 0.6172 0.2969 +vt 0.4922 0.1328 +vt 0.4922 0.1016 +vt 0.9922 0.1016 +vt 0.9922 0.1328 +vt 0.4922 0.1953 +vt 0.4922 0.1641 +vt 0.9922 0.1641 +vt 0.9922 0.1953 +vt 0.4922 0.2266 +vt 0.9922 0.2266 +vt 0.9922 0.2578 +vt 0.4922 0.2578 +vt 0.9922 0.0391 +vt 0.9922 0.0703 +vt 0.4922 0.0703 +vt 0.4922 0.0391 +vt 0.9922 0.0078 +vt 0.4922 0.0078 +vn -1.0000 0.0000 0.0000 +vn -0.0000 0.0000 -1.0000 +vn 1.0000 0.0000 -0.0000 +vn 0.0000 0.0000 1.0000 +vn 0.0000 -1.0000 -0.0000 +vn 0.0000 1.0000 -0.0000 +vn -0.9239 -0.3827 -0.0000 +vn -0.3827 -0.9239 0.0000 +vn 0.3827 -0.9239 0.0000 +vn 0.9239 -0.3827 0.0000 +vn 0.9239 0.3827 0.0000 +vn 0.3827 0.9239 0.0000 +vn -0.3827 0.9239 -0.0000 +vn -0.9239 0.3827 -0.0000 +g Cube.003_Cube.003_None_Cube.003_Cube.003_None_None +s off +f 1/1/1 2/2/1 3/3/1 4/4/1 +f 2/5/2 5/6/2 6/7/2 3/8/2 +f 5/9/3 7/10/3 8/11/3 6/12/3 +f 7/13/4 1/14/4 4/15/4 8/16/4 +f 4/17/5 3/18/5 6/19/5 8/20/5 +f 7/21/6 5/22/6 2/23/6 1/24/6 +f 9/25/4 10/26/4 11/27/4 12/28/4 +f 10/29/1 13/30/1 14/31/1 11/32/1 +f 13/33/2 15/34/2 16/35/2 14/36/2 +f 15/37/3 9/38/3 12/39/3 16/40/3 +f 17/41/4 18/42/4 19/43/4 20/44/4 +f 18/45/1 21/46/1 22/47/1 19/48/1 +f 21/49/2 23/50/2 24/51/2 22/52/2 +f 23/53/3 17/54/3 20/55/3 24/56/3 +f 20/57/5 19/58/5 22/59/5 24/60/5 +f 23/61/6 21/62/6 18/63/6 17/64/6 +f 28/65/2 26/66/2 40/67/2 38/68/2 36/69/2 34/70/2 32/71/2 30/72/2 +f 25/73/4 27/74/4 29/75/4 31/76/4 33/77/4 35/78/4 37/79/4 39/80/4 +f 60/81/2 58/82/2 72/83/2 70/84/2 68/85/2 66/86/2 64/87/2 62/88/2 +f 57/89/4 59/90/4 61/91/4 63/92/4 65/93/4 67/94/4 69/95/4 71/96/4 +s 1 +f 25/97/7 26/98/7 28/99/8 27/100/8 +f 27/100/8 28/99/8 30/101/9 29/102/9 +f 29/102/9 30/101/9 32/103/10 31/104/10 +f 31/105/10 32/106/10 34/107/11 33/108/11 +f 33/108/11 34/107/11 36/109/12 35/110/12 +f 35/110/12 36/109/12 38/111/13 37/112/13 +f 37/112/13 38/111/13 40/113/14 39/114/14 +f 39/114/14 40/113/14 26/98/7 25/97/7 +f 59/115/8 60/116/8 62/117/9 61/118/9 +f 57/119/7 58/120/7 60/116/8 59/115/8 +f 61/118/9 62/117/9 64/121/10 63/122/10 +f 63/123/10 64/124/10 66/125/11 65/126/11 +f 65/126/11 66/125/11 68/127/12 67/128/12 +f 67/128/12 68/127/12 70/129/13 69/130/13 +f 69/130/13 70/129/13 72/131/14 71/132/14 +f 71/132/14 72/131/14 58/120/7 57/119/7 +f 54/133/13 56/134/14 55/135/14 53/136/13 +f 50/137/11 52/138/12 51/139/12 49/140/11 +f 48/141/10 47/142/10 45/143/9 46/144/9 +f 54/133/13 53/136/13 51/139/12 52/138/12 +f 43/145/8 41/146/7 42/147/7 44/148/8 +f 45/149/9 43/145/8 44/148/8 46/150/9 +f 48/141/10 50/137/11 49/140/11 47/142/10 +f 41/146/7 55/135/14 56/134/14 42/147/7 diff --git a/mods/pipeworks/pipes.lua b/mods/pipeworks/pipes.lua new file mode 100644 index 00000000..a2c620a2 --- /dev/null +++ b/mods/pipeworks/pipes.lua @@ -0,0 +1,270 @@ +-- This file supplies the steel pipes +local S = minetest.get_translator("pipeworks") + +local REGISTER_COMPATIBILITY = true + +local pipes_empty_nodenames = {} +local pipes_full_nodenames = {} + +local new_flow_logic_register = pipeworks.flowables.register + +local polys = "" +if pipeworks.enable_lowpoly then polys = "_lowpoly" end + +--~ local vti = {4, 3, 2, 1, 6, 5} +local cconnects = {{}, {1}, {1, 2}, {1, 3}, {1, 3, 5}, {1, 2, 3}, {1, 2, 3, 5}, {1, 2, 3, 4}, {1, 2, 3, 4, 5}, {1, 2, 3, 4, 5, 6}} +for index, connects in ipairs(cconnects) do + local outsel = {} + + local jx = 0 + local jy = 0 + local jz = 0 + for _, v in ipairs(connects) do + if v == 1 or v == 2 then + jx = jx + 1 + elseif v == 3 or v == 4 then + jy = jy + 1 + else + jz = jz + 1 + end + table.insert(outsel, pipeworks.pipe_selectboxes[v]) + end + + --[[ + if #connects == 1 then + local v = connects[1] + v = v-1 + 2*(v%2) -- Opposite side + end + --]] + + local pgroups = {snappy = 3, pipe = 1, not_in_creative_inventory = 1, dig_generic = 4, axey = 1, handy = 1, pickaxey = 1} + local pipedesc = S("Pipe Segment").." "..dump(connects) + + if #connects == 0 then + pgroups = {snappy = 3, pipe = 1, dig_generic = 4, axey = 1, handy = 1, pickaxey = 1} + pipedesc = S("Pipe Segment") + end + + local outimg_e = { "pipeworks_pipe_plain.png" } + local outimg_l = { "pipeworks_pipe_plain.png" } + + if index == 3 then + outimg_e = { "pipeworks_pipe_3_empty.png" } + outimg_l = { "pipeworks_pipe_3_loaded.png" } + end + + local mesh = "pipeworks_pipe_"..index..polys..".obj" + + if index == 1 then + mesh = "pipeworks_pipe_3"..polys..".obj" + end + + minetest.register_node("pipeworks:pipe_"..index.."_empty", { + description = pipedesc, + drawtype = "mesh", + mesh = mesh, + tiles = outimg_e, + sunlight_propagates = true, + paramtype = "light", + paramtype2 = "facedir", + selection_box = { + type = "fixed", + fixed = outsel + }, + collision_box = { + type = "fixed", + fixed = outsel + }, + groups = pgroups, + is_ground_content = false, + _mcl_hardness = 0.8, + _sound_def = { + key = "node_sound_metal_defaults", + }, + walkable = true, + drop = "pipeworks:pipe_1_empty", + after_place_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + after_dig_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + on_rotate = false, + check_for_pole = pipeworks.check_for_vert_pipe, + check_for_horiz_pole = pipeworks.check_for_horiz_pipe, + pipenumber = index + }) + + local pgroups = {snappy = 3, pipe = 1, not_in_creative_inventory = 1, dig_generic = 4, axey = 1, handy = 1, pickaxey = 1} + + minetest.register_node("pipeworks:pipe_"..index.."_loaded", { + description = pipedesc, + drawtype = "mesh", + mesh = mesh, + tiles = outimg_l, + sunlight_propagates = true, + paramtype = "light", + paramtype2 = "facedir", + selection_box = { + type = "fixed", + fixed = outsel + }, + collision_box = { + type = "fixed", + fixed = outsel + }, + groups = pgroups, + is_ground_content = false, + _mcl_hardness = 0.8, + _sound_def = { + key = "node_sound_metal_defaults", + }, + walkable = true, + drop = "pipeworks:pipe_1_empty", + after_place_node = function(pos) + minetest.set_node(pos, { name = "pipeworks:pipe_"..index.."_empty" }) + pipeworks.scan_for_pipe_objects(pos) + end, + after_dig_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + on_rotate = false, + check_for_pole = pipeworks.check_for_vert_pipe, + check_for_horiz_pole = pipeworks.check_for_horiz_pipe, + pipenumber = index + }) + + local emptypipe = "pipeworks:pipe_"..index.."_empty" + local fullpipe = "pipeworks:pipe_"..index.."_loaded" + table.insert(pipes_empty_nodenames, emptypipe) + table.insert(pipes_full_nodenames, fullpipe) + new_flow_logic_register.simple(emptypipe) + new_flow_logic_register.simple(fullpipe) +end +pipeworks.ui_cat_tube_list[#pipeworks.ui_cat_tube_list+1] = "pipeworks:pipe_1_empty" + + +if REGISTER_COMPATIBILITY then + local cempty = "pipeworks:pipe_compatibility_empty" + local cloaded = "pipeworks:pipe_compatibility_loaded" + minetest.register_node(cempty, { + drawtype = "airlike", + sunlight_propagates = true, + paramtype = "light", + description = S("Pipe Segment (legacy)"), + groups = {not_in_creative_inventory = 1, pipe_to_update = 1}, + is_ground_content = false, + drop = "pipeworks:pipe_1_empty", + after_place_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + on_rotate = false + + }) + minetest.register_node(cloaded, { + drawtype = "airlike", + sunlight_propagates = true, + paramtype = "light", + groups = {not_in_creative_inventory = 1, pipe_to_update = 1}, + is_ground_content = false, + drop = "pipeworks:pipe_1_empty", + after_place_node = function(pos) + pipeworks.scan_for_pipe_objects(pos) + end, + on_rotate = false + + }) + for xm = 0, 1 do + for xp = 0, 1 do + for ym = 0, 1 do + for yp = 0, 1 do + for zm = 0, 1 do + for zp = 0, 1 do + local pname = xm..xp..ym..yp..zm..zp + minetest.register_alias("pipeworks:pipe_"..pname.."_empty", cempty) + minetest.register_alias("pipeworks:pipe_"..pname.."_loaded", cloaded) + end + end + end + end + end + end + minetest.register_abm({ + nodenames = {"group:pipe_to_update"}, + interval = 1, + chance = 1, + action = function(pos, node, active_object_count, active_object_count_wider) + local minp = {x = pos.x-1, y = pos.y-1, z = pos.z-1} + local maxp = {x = pos.x+1, y = pos.y+1, z = pos.z+1} + if table.getn(minetest.find_nodes_in_area(minp, maxp, "ignore")) == 0 then + pipeworks.scan_for_pipe_objects(pos) + end + end + }) +end + +local valve_on = "pipeworks:valve_on_empty" +local valve_off = "pipeworks:valve_off_empty" +local entry_panel_empty = "pipeworks:entry_panel_empty" +local flow_sensor_empty = "pipeworks:flow_sensor_empty" +local sp_empty = "pipeworks:straight_pipe_empty" +-- XXX: why aren't these in devices.lua!? +table.insert(pipes_empty_nodenames, valve_on) +table.insert(pipes_empty_nodenames, valve_off) +table.insert(pipes_empty_nodenames, entry_panel_empty) +table.insert(pipes_empty_nodenames, flow_sensor_empty) +table.insert(pipes_empty_nodenames, sp_empty) + +local valve_on_loaded = "pipeworks:valve_on_loaded" +local entry_panel_loaded = "pipeworks:entry_panel_loaded" +local flow_sensor_loaded = "pipeworks:flow_sensor_loaded" +local sp_loaded = "pipeworks:straight_pipe_loaded" +table.insert(pipes_full_nodenames, valve_on_loaded) +table.insert(pipes_full_nodenames, entry_panel_loaded) +table.insert(pipes_full_nodenames, flow_sensor_loaded) +table.insert(pipes_full_nodenames, sp_loaded) + +pipeworks.pipes_full_nodenames = pipes_full_nodenames +pipeworks.pipes_empty_nodenames = pipes_empty_nodenames + +if pipeworks.toggles.pipe_mode == "classic" then + +minetest.register_abm({ + nodenames = pipes_empty_nodenames, + interval = 1, + chance = 1, + action = function(pos, node, active_object_count, active_object_count_wider) + pipeworks.check_for_inflows(pos,node) + end +}) + +minetest.register_abm({ + nodenames = pipes_full_nodenames, + interval = 1, + chance = 1, + action = function(pos, node, active_object_count, active_object_count_wider) + pipeworks.check_sources(pos,node) + end +}) + +minetest.register_abm({ + nodenames = {"pipeworks:spigot","pipeworks:spigot_pouring"}, + interval = 1, + chance = 1, + action = function(pos, node, active_object_count, active_object_count_wider) + pipeworks.spigot_check(pos,node) + end +}) + +minetest.register_abm({ + nodenames = {"pipeworks:fountainhead","pipeworks:fountainhead_pouring"}, + interval = 1, + chance = 1, + action = function(pos, node, active_object_count, active_object_count_wider) + pipeworks.fountainhead_check(pos,node) + end +}) + + + +end diff --git a/mods/pipeworks/pressure_logic/abm_register.lua b/mods/pipeworks/pressure_logic/abm_register.lua new file mode 100644 index 00000000..4019eef6 --- /dev/null +++ b/mods/pipeworks/pressure_logic/abm_register.lua @@ -0,0 +1,27 @@ +-- register new flow logic ABMs +-- written 2017 by thetaepsilon + +local register = {} +pipeworks.flowlogic.abmregister = register + +local flowlogic = pipeworks.flowlogic + +-- register node list for the main logic function. +-- see flowlogic.run() in abms.lua. + +local register_flowlogic_abm = function(nodename) + if pipeworks.toggles.pipe_mode == "pressure" then + minetest.register_abm({ + label = "pipeworks new_flow_logic run", + nodenames = { nodename }, + interval = 1, + chance = 1, + action = function(pos, node, active_object_count, active_object_count_wider) + flowlogic.run(pos, node) + end + }) + else + minetest.log("warning", "pipeworks pressure_logic not enabled but register.flowlogic() requested") + end +end +register.flowlogic = register_flowlogic_abm diff --git a/mods/pipeworks/pressure_logic/abms.lua b/mods/pipeworks/pressure_logic/abms.lua new file mode 100644 index 00000000..bf9c2db0 --- /dev/null +++ b/mods/pipeworks/pressure_logic/abms.lua @@ -0,0 +1,371 @@ +-- reimplementation of new_flow_logic branch: processing functions +-- written 2017 by thetaepsilon + + + +local flowlogic = {} +flowlogic.helpers = {} +pipeworks.flowlogic = flowlogic + + + +-- borrowed from above: might be useable to replace the above coords tables +local make_coords_offsets = function(pos, include_base) + local coords = { + {x=pos.x,y=pos.y-1,z=pos.z}, + {x=pos.x,y=pos.y+1,z=pos.z}, + {x=pos.x-1,y=pos.y,z=pos.z}, + {x=pos.x+1,y=pos.y,z=pos.z}, + {x=pos.x,y=pos.y,z=pos.z-1}, + {x=pos.x,y=pos.y,z=pos.z+1}, + } + if include_base then table.insert(coords, pos) end + return coords +end + + + +-- local debuglog = function(msg) print("## "..msg) end + + + +--~ local formatvec = function(vec) local sep="," return "("..tostring(vec.x)..sep..tostring(vec.y)..sep..tostring(vec.z)..")" end + + + +-- new version of liquid check +-- accepts a limit parameter to only delete water blocks that the receptacle can accept, +-- and returns it so that the receptacle can update it's pressure values. +local check_for_liquids_v2 = function(pos, limit) + local coords = make_coords_offsets(pos, false) + local total = 0 + for _, tpos in ipairs(coords) do + if total >= limit then break end + local name = minetest.get_node(tpos).name + if name == pipeworks.liquids.water.source then + minetest.remove_node(tpos) + total = total + 1 + end + end + --pipeworks.logger("check_for_liquids_v2@"..formatvec(pos).." total "..total) + return total +end +flowlogic.check_for_liquids_v2 = check_for_liquids_v2 + + + +local label_pressure = "pipeworks.water_pressure" +local get_pressure_access = function(pos) + local metaref = minetest.get_meta(pos) + return { + get = function() + return metaref:get_float(label_pressure) + end, + set = function(v) + metaref:set_float(label_pressure, v) + end + } +end + + +-- logging is unreliable when something is crashing... +--[[ +local nilexplode = function(caller, label, value) + if value == nil then + error(caller..": "..label.." was nil") + end +end +--]] + + + +local finitemode = pipeworks.toggles.finite_water +flowlogic.run = function(pos, node) + local nodename = node.name + -- get the current pressure value. + local nodepressure = get_pressure_access(pos) + local currentpressure = nodepressure.get() + local oldpressure = currentpressure + + -- if node is an input: run intake phase + local inputdef = pipeworks.flowables.inputs.list[nodename] + if inputdef then + currentpressure = flowlogic.run_input(pos, node, currentpressure, inputdef) + --debuglog("post-intake currentpressure is "..currentpressure) + --nilexplode("run()", "currentpressure", currentpressure) + end + + -- balance pressure with neighbours + currentpressure = flowlogic.balance_pressure(pos, node, currentpressure) + + -- if node is an output: run output phase + local outputdef = pipeworks.flowables.outputs.list[nodename] + if outputdef then + currentpressure = flowlogic.run_output( + pos, + node, + currentpressure, + oldpressure, + outputdef, + finitemode) + end + + -- if node has pressure transitions: determine new node + if pipeworks.flowables.transitions.list[nodename] then + local newnode = flowlogic.run_transition(node, currentpressure) + --pipeworks.logger("flowlogic.run()@"..formatvec(pos).." transition, new node name = "..dump(newnode).." pressure "..tostring(currentpressure)) + minetest.swap_node(pos, newnode) + flowlogic.run_transition_post(pos, newnode) + end + + -- set the new pressure + nodepressure.set(currentpressure) +end + + + +local simple_neighbour_offsets = { + {x=0, y=-1,z= 0}, + {x=0, y= 1,z= 0}, + {x=-1,y= 0,z= 0}, + {x= 1,y= 0,z= 0}, + {x= 0,y= 0,z=-1}, + {x= 0,y= 0,z= 1}, +} +local get_neighbour_positions = function(pos, node) + -- local dname = "get_neighbour_positions@"..formatvec(pos).." " + -- get list of node neighbours. + -- if this node is directional and only flows on certain sides, + -- invoke the callback to retrieve the set. + -- for simple flowables this is just an auto-gen'd list of all six possible neighbours. + local candidates = {} + if pipeworks.flowables.list.simple[node.name] then + candidates = simple_neighbour_offsets + else + -- directional flowables: call the callback to get the list + local directional = pipeworks.flowables.list.directional[node.name] + if directional then + --pipeworks.logger(dname.."invoking neighbourfn") + local offsets = directional.neighbourfn(node) + candidates = offsets + end + end + + -- then, check each possible neighbour to see if they can be reached from this node. + local connections = {} + for _, offset in ipairs(candidates) do + local npos = vector.add(pos, offset) + local neighbour = minetest.get_node(npos) + local nodename = neighbour.name + local is_simple = (pipeworks.flowables.list.simple[nodename]) + if is_simple then + local n = get_pressure_access(npos) + table.insert(connections, n) + else + -- if target node is also directional, check if it agrees it can flow in that direction + local directional = pipeworks.flowables.list.directional[nodename] + if directional then + --pipeworks.logger(dname.."directionality test for offset "..formatvec(offset)) + local towards_origin = vector.multiply(offset, -1) + --pipeworks.logger(dname.."vector passed to directionfn: "..formatvec(towards_origin)) + local result = directional.directionfn(neighbour, towards_origin) + --pipeworks.logger(dname.."result: "..tostring(result)) + if result then + local n = get_pressure_access(npos) + table.insert(connections, n) + end + end + end + end + + return connections +end + + + +flowlogic.balance_pressure = function(pos, node, currentpressure) + -- local dname = "flowlogic.balance_pressure()@"..formatvec(pos).." " + -- check the pressure of all nearby flowable nodes, and average it out. + + -- unconditionally include self in nodes to average over. + -- result of averaging will be returned as new pressure for main flow logic callback + local totalv = currentpressure + local totalc = 1 + + -- pressure handles to average over + local connections = get_neighbour_positions(pos, node) + + -- for each neighbour, add neighbour's pressure to the total to balance out + for _, neighbour in ipairs(connections) do + local n = neighbour.get() + totalv = totalv + n + totalc = totalc + 1 + end + local average = totalv / totalc + for _, target in ipairs(connections) do + target.set(average) + end + + return average +end + + + +flowlogic.run_input = function(pos, node, currentpressure, inputdef) + -- intakefn allows a given input node to define it's own intake logic. + -- this function will calculate the maximum amount of water that can be taken in; + -- the intakefn will be given this and is expected to return the actual absorption amount. + + local maxpressure = inputdef.maxpressure + local intake_limit = maxpressure - currentpressure + if intake_limit <= 0 then return currentpressure end + + local actual_intake = inputdef.intakefn(pos, intake_limit) + --pipeworks.logger("run_input@"..formatvec(pos).." oldpressure "..currentpressure.." intake_limit "..intake_limit.." actual_intake "..actual_intake) + if actual_intake <= 0 then return currentpressure end + + local newpressure = actual_intake + currentpressure + --debuglog("run_input() end, oldpressure "..currentpressure.." intake_limit "..intake_limit.." actual_intake "..actual_intake.." newpressure "..newpressure) + return newpressure +end + + + +-- flowlogic output helper implementation: +-- outputs water by trying to place water nodes nearby in the world. +-- neighbours is a list of node offsets to try placing water in. +-- this is a constructor function, returning another function which satisfies the output helper requirements. +-- note that this does *not* take rotation into account. +flowlogic.helpers.make_neighbour_output_fixed = function(neighbours) + return function(pos, node, currentpressure, finitemode) + local taken = 0 + for _, offset in pairs(neighbours) do + local npos = vector.add(pos, offset) + local name = minetest.get_node(npos).name + if currentpressure < 1 then break end + -- take pressure anyway in non-finite mode, even if node is water source already. + -- in non-finite mode, pressure has to be sustained to keep the sources there. + -- so in non-finite mode, placing water is dependent on the target node; + -- draining pressure is not. + local canplace = (name == "air") or (name == pipeworks.liquids.water.flowing) + if canplace then + minetest.swap_node(npos, {name=pipeworks.liquids.water.source}) + end + if (not finitemode) or canplace then + taken = taken + 1 + currentpressure = currentpressure - 1 + end + end + return taken + end +end + +-- complementary function to the above when using non-finite mode: +-- removes water sources from neighbor positions when the output is "off" due to lack of pressure. +flowlogic.helpers.make_neighbour_cleanup_fixed = function(neighbours) + return function(pos, node, currentpressure) + --pipeworks.logger("neighbour_cleanup_fixed@"..formatvec(pos)) + for _, offset in pairs(neighbours) do + local npos = vector.add(pos, offset) + local name = minetest.get_node(npos).name + if (name == pipeworks.liquids.water.source) then + --pipeworks.logger("neighbour_cleanup_fixed removing "..formatvec(npos)) + minetest.remove_node(npos) + end + end + end +end + + + +flowlogic.run_output = function(pos, node, currentpressure, oldpressure, outputdef, finitemode) + -- processing step for water output devices. + -- takes care of checking a minimum pressure value and updating the resulting pressure level + -- the outputfn is provided the current pressure and returns the pressure "taken". + -- as an example, using this with the above spigot function, + -- the spigot function tries to output a water source if it will fit in the world. + --pipeworks.logger("flowlogic.run_output() pos "..formatvec(pos).." old -> currentpressure "..tostring(oldpressure).." "..tostring(currentpressure).." finitemode "..tostring(finitemode)) + local upper = outputdef.upper + local lower = outputdef.lower + local result = currentpressure + local threshold + if finitemode then threshold = lower else threshold = upper end + if currentpressure > threshold then + local takenpressure = outputdef.outputfn(pos, node, currentpressure, finitemode) + local newpressure = currentpressure - takenpressure + if newpressure < 0 then newpressure = 0 end + result = newpressure + end + if (not finitemode) and (currentpressure < lower) and (oldpressure < lower) then + --pipeworks.logger("flowlogic.run_output() invoking cleanup currentpressure="..tostring(currentpressure)) + outputdef.cleanupfn(pos, node, currentpressure) + end + return result +end + + + +-- determine which node to switch to based on current pressure +flowlogic.run_transition = function(node, currentpressure) + local simplesetdef = pipeworks.flowables.transitions.simple[node.name] + local result = node + local found = false + + -- simple transition sets: assumes all nodes in the set share param values. + if simplesetdef then + -- assumes that the set has been checked to contain at least one element... + local nodename_prev = simplesetdef[1].nodename + local result_nodename = node.name + + for _, element in ipairs(simplesetdef) do + -- find the highest element that is below the current pressure. + local threshold = element.threshold + if threshold > currentpressure then + result_nodename = nodename_prev + found = true + break + end + nodename_prev = element.nodename + end + + -- use last element if no threshold is greater than current pressure + if not found then + result_nodename = nodename_prev + found = true + end + + -- preserve param1/param2 values + result = { name=result_nodename, param1=node.param1, param2=node.param2 } + end + + if not found then + pipeworks.logger("flowlogic.run_transition() BUG no transition " .. + "definitions found! node.name=" .. node.name .. + " currentpressure=" .. tostring(currentpressure)) + end + + return result +end + +-- post-update hook for run_transition +-- among other things, updates mesecons if present. +-- node here means the new node, returned from run_transition() above +flowlogic.run_transition_post = function(pos, node) + local mesecons_def = minetest.registered_nodes[node.name].mesecons + local mesecons_rules = pipeworks.flowables.transitions.mesecons[node.name] + if minetest.get_modpath("mesecons") and (mesecons_def ~= nil) and mesecons_rules then + if type(mesecons_def) ~= "table" then + pipeworks.logger("flowlogic.run_transition_post() BUG mesecons def for "..node.name.."not a table: got "..tostring(mesecons_def)) + else + local receptor = mesecons_def.receptor + if receptor then + local state = receptor.state + if state == mesecon.state.on then + mesecon.receptor_on(pos, mesecons_rules) + elseif state == mesecon.state.off then + mesecon.receptor_off(pos, mesecons_rules) + end + end + end + end +end diff --git a/mods/pipeworks/pressure_logic/flowable_node_registry.lua b/mods/pipeworks/pressure_logic/flowable_node_registry.lua new file mode 100644 index 00000000..6d7bf173 --- /dev/null +++ b/mods/pipeworks/pressure_logic/flowable_node_registry.lua @@ -0,0 +1,53 @@ +-- registry of flowable node behaviours in new flow logic +-- written 2017 by thetaepsilon + +-- the actual registration functions which edit these tables can be found in flowable_node_registry_install.lua +-- this is because the ABM code needs to inspect these tables, +-- but the registration code needs to reference said ABM code. +-- so those functions were split out to resolve a circular dependency. + + + +pipeworks.flowables = {} +pipeworks.flowables.list = {} +pipeworks.flowables.list.all = {} +-- pipeworks.flowables.list.nodenames = {} + +-- simple flowables - balance pressure in any direction +pipeworks.flowables.list.simple = {} +pipeworks.flowables.list.simple_nodenames = {} + +-- directional flowables - can only flow on certain sides +-- format per entry is a table with the following fields: +-- neighbourfn: function(node), +-- called to determine which nodes to consider as neighbours. +-- can be used to e.g. inspect the node's param values for facedir etc. +-- returns: array of vector offsets to look for possible neighbours in +-- directionfn: function(node, vector): +-- can this node flow in this direction? +-- called in the context of another node to check the matching entry returned by neighbourfn. +-- for every offset vector returned by neighbourfn, +-- the node at that absolute position is checked. +-- if that node is also a directional flowable, +-- then that node's vector is passed to that node's directionfn +-- (inverted, so that directionfn sees a vector pointing out from it back to the origin node). +-- if directionfn agrees that the neighbour node can currently flow in that direction, +-- the neighbour is to participate in pressure balancing. +pipeworks.flowables.list.directional = {} + +-- simple intakes - try to absorb any adjacent water nodes +pipeworks.flowables.inputs = {} +pipeworks.flowables.inputs.list = {} +pipeworks.flowables.inputs.nodenames = {} + +-- outputs - takes pressure from pipes and update world to do something with it +pipeworks.flowables.outputs = {} +pipeworks.flowables.outputs.list = {} +-- not currently any nodenames arraylist for this one as it's not currently needed. + +-- nodes with registered node transitions +-- nodes will be switched depending on pressure level +pipeworks.flowables.transitions = {} +pipeworks.flowables.transitions.list = {} -- master list +pipeworks.flowables.transitions.simple = {} -- nodes that change based purely on pressure +pipeworks.flowables.transitions.mesecons = {} -- table of mesecons rules to apply on transition diff --git a/mods/pipeworks/pressure_logic/flowable_node_registry_install.lua b/mods/pipeworks/pressure_logic/flowable_node_registry_install.lua new file mode 100644 index 00000000..b561ca64 --- /dev/null +++ b/mods/pipeworks/pressure_logic/flowable_node_registry_install.lua @@ -0,0 +1,263 @@ +-- flowable node registry: add entries and install ABMs if new flow logic is enabled +-- written 2017 by thetaepsilon + + + +-- use for hooking up ABMs as nodes are registered +local abmregister = pipeworks.flowlogic.abmregister + +-- registration functions +pipeworks.flowables.register = {} +local register = pipeworks.flowables.register + +-- some sanity checking for passed args, as this could potentially be made an external API eventually +local checkexists = function(nodename) + if type(nodename) ~= "string" then error("pipeworks.flowables nodename must be a string!") end + return pipeworks.flowables.list.all[nodename] +end + +local insertbase = function(nodename) + if checkexists(nodename) then error("pipeworks.flowables duplicate registration!") end + pipeworks.flowables.list.all[nodename] = true + -- table.insert(pipeworks.flowables.list.nodenames, nodename) + if pipeworks.toggles.pipe_mode == "pressure" then + abmregister.flowlogic(nodename) + end +end + +local regwarning = function(kind, nodename) + --~ local tail = "" + --~ if pipeworks.toggles.pipe_mode ~= "pressure" then tail = " but pressure logic not enabled" end + --pipeworks.logger(kind.." flow logic registry requested for "..nodename..tail) +end + +-- Register a node as a simple flowable. +-- Simple flowable nodes have no considerations for direction of flow; +-- A cluster of adjacent simple flowables will happily average out in any direction. +register.simple = function(nodename) + insertbase(nodename) + pipeworks.flowables.list.simple[nodename] = true + table.insert(pipeworks.flowables.list.simple_nodenames, nodename) + regwarning("simple", nodename) +end + +-- Register a node as a directional flowable: +-- has a helper function which determines which nodes to consider valid neighbours. +register.directional = function(nodename, neighbourfn, directionfn) + insertbase(nodename) + pipeworks.flowables.list.directional[nodename] = { + neighbourfn = neighbourfn, + directionfn = directionfn + } + regwarning("directional", nodename) +end + +-- register a node as a directional flowable that can only flow through either the top or bottom side. +-- used for fountainheads (bottom side) and pumps (top side). +-- this is in world terms, not facedir relative! +register.directional_vertical_fixed = function(nodename, topside) + local y + if topside then y = 1 else y = -1 end + local side = { x=0, y=y, z=0 } + local neighbourfn = function(node) return { side } end + local directionfn = function(node, direction) + return vector.equals(direction, side) + end + register.directional(nodename, neighbourfn, directionfn) +end + +-- register a node as a directional flowable whose accepting sides depends upon param2 rotation. +-- used for entry panels, valves, flow sensors and spigots. +-- this is mostly for legacy reasons and SHOULD NOT BE USED IN NEW CODE. +register.directional_horizonal_rotate = function(nodename, doubleended) + local rotations = { + {x= 0,y= 0,z= 1}, + {x= 1,y= 0,z= 0}, + {x= 0,y= 0,z=-1}, + {x=-1,y= 0,z= 0}, + } + local getends = function(node) + --local dname = "horizontal rotate getends() " + local param2 = node.param2 + -- the pipeworks nodes use a fixed value for vertical facing nodes + -- if that is detected, just return that directly. + if param2 == 17 then + return {{x=0,y=1,z=0}, {x=0,y=-1,z=0}} + end + + -- the sole end of the spigot points in the direction the rotation bits suggest + -- also note to self: lua arrays start at one... + local mainend = (param2 % 4) + 1 + -- use modulus wrap-around to find other end for straight-run devices like the valve + local otherend = ((param2 + 2) % 4) + 1 + local mainrot = rotations[mainend] + --pipeworks.logger(dname.."mainrot: "..dump(mainrot)) + local result + if doubleended then + result = { mainrot, rotations[otherend] } + else + result = { mainrot } + end + --pipeworks.logger(dname.."result: "..dump(result)) + return result + end + local neighbourfn = function(node) + return getends(node) + end + local directionfn = function(node, direction) + local result = false + for _, endvec in ipairs(getends(node)) do + if vector.equals(direction, endvec) then result = true end + end + return result + end + register.directional(nodename, neighbourfn, directionfn) +end + + + +local checkbase = function(nodename) + if not checkexists(nodename) then error("pipeworks.flowables node doesn't exist as a flowable!") end +end + +local duplicateerr = function(kind, nodename) error(kind.." duplicate registration for "..nodename) end + + + +-- Registers a node as a fluid intake. +-- intakefn is used to determine the water that can be taken in a node-specific way. +-- Expects node to be registered as a flowable (is present in flowables.list.all), +-- so that water can move out of it. +-- maxpressure is the maximum pipeline pressure that this node can drive; +-- if the input's node exceeds this the callback is not run. +-- possible WISHME here: technic-driven high-pressure pumps +register.intake = function(nodename, maxpressure, intakefn) + -- check for duplicate registration of this node + local list = pipeworks.flowables.inputs.list + checkbase(nodename) + if list[nodename] then duplicateerr("pipeworks.flowables.inputs", nodename) end + list[nodename] = { maxpressure=maxpressure, intakefn=intakefn } + regwarning("intake", nodename) +end + + + +-- Register a node as a simple intake: +-- tries to absorb water source nodes from it's surroundings. +-- may exceed limit slightly due to needing to absorb whole nodes. +register.intake_simple = function(nodename, maxpressure) + register.intake(nodename, maxpressure, pipeworks.flowlogic.check_for_liquids_v2) +end + + + +-- Register a node as an output. +-- Expects node to already be a flowable. +-- upper and lower thresholds have different meanings depending on whether finite liquid mode is in effect. +-- if not (the default unless auto-detected), +-- nodes above their upper threshold have their outputfn invoked (and pressure deducted), +-- nodes between upper and lower are left idle, +-- and nodes below lower have their cleanup fn invoked (to say remove water sources). +-- the upper and lower difference acts as a hysteresis to try and avoid "gaps" in the flow. +-- if finite mode is on, upper is ignored and lower is used to determine whether to run outputfn; +-- cleanupfn is ignored in this mode as finite mode assumes something causes water to move itself. +register.output = function(nodename, upper, lower, outputfn, cleanupfn) + if pipeworks.flowables.outputs.list[nodename] then + error("pipeworks.flowables.outputs duplicate registration!") + end + checkbase(nodename) + pipeworks.flowables.outputs.list[nodename] = { + upper=upper, + lower=lower, + outputfn=outputfn, + cleanupfn=cleanupfn, + } + -- output ABM now part of main flow logic ABM to preserve ordering. + -- note that because outputs have to be a flowable first + -- (and the installation of the flow logic ABM is conditional), + -- registered output nodes for new_flow_logic is also still conditional on the enable flag. + regwarning("output node", nodename) +end + +-- register a simple output: +-- drains pressure by attempting to place water in nearby nodes, +-- which can be set by passing a list of offset vectors. +-- will attempt to drain as many whole nodes as there are positions in the offset list. +-- for meanings of upper and lower, see register.output() above. +-- non-finite mode: +-- above upper pressure: places water sources as appropriate, keeps draining pressure. +-- below lower presssure: removes it's neighbour water sources. +-- finite mode: +-- same as for above pressure in non-finite mode, +-- but only drains pressure when water source nodes are actually placed. +register.output_simple = function(nodename, upper, lower, neighbours) + local outputfn = pipeworks.flowlogic.helpers.make_neighbour_output_fixed(neighbours) + local cleanupfn = pipeworks.flowlogic.helpers.make_neighbour_cleanup_fixed(neighbours) + register.output(nodename, upper, lower, outputfn, cleanupfn) +end + + + +-- common base checking for transition nodes +-- ensures the node has only been registered once as a transition. +local transition_list = pipeworks.flowables.transitions.list +local insert_transition_base = function(nodename) + checkbase(nodename) + if transition_list[nodename] then duplicateerr("base transition", nodename) end + transition_list[nodename] = true +end + + + +-- register a simple transition set. +-- expects a table with nodenames as keys and threshold pressures as values. +-- internally, the table is sorted by value, and when one of these nodes needs to transition, +-- the table is searched starting from the lowest (even if it's value is non-zero), +-- until a value is found which is higher than or equal to the current node pressure. +-- ex. nodeset = { ["mod:level_0"] = 0, ["mod:level_1"] = 1, --[[ ... ]] } +local simpleseterror = function(msg) + error("register.transition_simple_set(): "..msg) +end +local simple_transitions = pipeworks.flowables.transitions.simple + +register.transition_simple_set = function(nodeset, extras) + local set = {} + if extras == nil then extras = {} end + + local length = #nodeset + if length < 2 then simpleseterror("nodeset needs at least two elements!") end + for index, element in ipairs(nodeset) do + if type(element) ~= "table" then simpleseterror("element "..tostring(index).." in nodeset was not table!") end + local nodename = element[1] + local value = element[2] + if type(nodename) ~= "string" then simpleseterror("nodename "..tostring(nodename).."was not a string!") end + if type(value) ~= "number" then simpleseterror("pressure value "..tostring(value).."was not a number!") end + insert_transition_base(nodename) + if simple_transitions[nodename] then duplicateerr("simple transition set", nodename) end + -- assigning set to table is done separately below + + table.insert(set, { nodename=nodename, threshold=value }) + end + + -- sort pressure values, smallest first + local smallest_first = function(a, b) + return a.threshold < b.threshold + end + table.sort(set, smallest_first) + + -- individual registration of each node, all sharing this set, + -- so each node in the set will transition to the correct target node. + for _, element in ipairs(set) do + --pipeworks.logger("register.transition_simple_set() after sort: nodename "..element.nodename.." value "..tostring(element.threshold)) + simple_transitions[element.nodename] = set + end + + -- handle extra options + -- if mesecons rules table was passed, set for each node + if extras.mesecons then + local mesecons_rules = pipeworks.flowables.transitions.mesecons + for _, element in ipairs(set) do + mesecons_rules[element.nodename] = extras.mesecons + end + end +end diff --git a/mods/pipeworks/screenshot.png b/mods/pipeworks/screenshot.png new file mode 100644 index 00000000..686d9556 Binary files /dev/null and b/mods/pipeworks/screenshot.png differ diff --git a/mods/pipeworks/settingtypes.txt b/mods/pipeworks/settingtypes.txt new file mode 100644 index 00000000..13b918bc --- /dev/null +++ b/mods/pipeworks/settingtypes.txt @@ -0,0 +1,101 @@ +#Enable pipes. +pipeworks_enable_pipes (Enable Pipes) bool true + +#Enable autocrafter. +pipeworks_enable_autocrafter (Enable Autocrafter) bool true + +#Enable deployer. +pipeworks_enable_deployer (Enable Deployer) bool true + +#Enable dispenser. +pipeworks_enable_dispenser (Enable Dispenser) bool true + +#Enable node breaker. +pipeworks_enable_node_breaker (Enable Node Breaker) bool true + +#Enable teleport tube. +pipeworks_enable_teleport_tube (Enable Teleport Tube) bool true + +#Enable pipe devices. +pipeworks_enable_pipe_devices (Enable Pipe Devices) bool true + +#Enable redefines. +pipeworks_enable_redefines (Enable Node Redefines) bool true + +#Enable sorting tube. +pipeworks_enable_mese_tube (Enable Sorting Tube) bool true + +#Enable detector tube. +pipeworks_enable_detector_tube (Enable Detector Tube) bool true + +#Enable digiline detector tube. +pipeworks_enable_digiline_detector_tube (Enable Digiline Detector Tube) bool true + +#Enable mesecon signal conducting tube. +pipeworks_enable_conductor_tube (Enable Conductor Tube) bool true + +#Enable digiline signal conducting tube. +pipeworks_enable_digiline_conductor_tube (Enable Digiline Conductor Tube) bool true + +#Enable accelerator tube. +pipeworks_enable_accelerator_tube (Enable Accelerator Tube) bool true + +#Enable crossing tube. +#It sends all incoming items to the other side, or if there is no other tube, it sends them back. +pipeworks_enable_crossing_tube (Enable Crossing Tube) bool true + +#Enable vacuum tube. +#It picks up all items that lay around next to it. +pipeworks_enable_sand_tube (Enable Vacuum Tube) bool true + +#Enable mese vacuum tube. +#It's like the normal vacuum tube with the +#differance that you can set the radius up to 8 nodes. +pipeworks_enable_mese_sand_tube (Enable Mese Vacuum Tube) bool true + +#Enable one way tube. +#It sends items only in one direction. +#Use it to drop items out of tubes. +pipeworks_enable_one_way_tube (Enable One Way Tube) bool true + +#Enable high priority tube. +#It has a very high priority and so, on crossings, the items will +#always go to it if there are multible ways. +pipeworks_enable_priority_tube (Enable High Priority Tube) bool true + +#Enable lua controlled tube. +#It is comparable with mesecons luacontroller. +pipeworks_enable_lua_tube (Enable Lua controlled Tube) bool true + +#Enable cyclic mode. +pipeworks_enable_cyclic_mode (Enable Cyclic Mode) bool true + +#Drop on routing fail. +pipeworks_drop_on_routing_fail (Drop On Routing Fail) bool false + +#Delete item on clearobject. +pipeworks_delete_item_on_clearobject (Delete Item On Clearobject) bool true + +#Use real visible entities in tubes within active areas. +#When disabled, tubes are made opaque. +pipeworks_use_real_entities (Use Real Entities) bool true + +#Target interval between tube entity steps. +#A high value may cause issues with tube entity visuals. +#A value 0.2 or above may cause issues with accelerator tubes. +pipeworks_entity_update_interval (Entity Update Interval) float 0 0 0.8 + +# Use the default rules from the digilines mod. +# If enabled the following devices will connect to digiline networks in the vertical direction: +# digiline filter injector, deployer, dispenser, node breaker, autocrafter +# This breaks expected behavior with digiline conducting tubes. +# If disabled, the devices will not be able to send or recieve digiline signals from the top +# or bottom faces, regardless of the node rotation. +enable_vertical_digilines_connectivity (Use the default rules from the digilines mod) bool false + +# if set to true, items passing through teleport tubes will log log where they came from and where they went. +pipeworks_log_teleport_tubes (Log Teleport Tubes) bool false + +# Behavior of print() inside a lua tube. By default, this emits a message into actionstream. +# Set it to noop if you wish to disable that behavior. +pipeworks_lua_tube_print_behavior (Behavior of print in Lua Tube) enum log log,noop diff --git a/mods/pipeworks/signs_compat.lua b/mods/pipeworks/signs_compat.lua new file mode 100644 index 00000000..cf86f704 --- /dev/null +++ b/mods/pipeworks/signs_compat.lua @@ -0,0 +1,241 @@ +-- This file adds placement rules for signs_lib, if present + +local spv = { + [4] = true, + [6] = true, + [8] = true, + [10] = true, + [13] = true, + [15] = true, + [17] = true, + [19] = true +} + +local sphns = { + [1] = true, + [3] = true, + [5] = true, + [7] = true, + [9] = true, + [11] = true, + [21] = true, + [23] = true +} + +local sphew = { + [0] = true, + [2] = true, + [12] = true, + [14] = true, + [16] = true, + [18] = true, + [20] = true, + [22] = true +} + +local owtv = { + [5] = true, + [7] = true, + [9] = true, + [11] = true, + [12] = true, + [14] = true, + [16] = true, + [18] = true +} + +local owtns = { + [0] = true, + [2] = true, + [4] = true, + [6] = true, + [8] = true, + [10] = true, + [20] = true, + [22] = true +} + +local owtew = { + [1] = true, + [3] = true, + [13] = true, + [15] = true, + [17] = true, + [19] = true, + [21] = true, + [23] = true +} + +local vert_n = { + [3] = {[5] = true}, + [6] = {[9] = true, [12] = true, [16] = true}, + [7] = {[9] = true, [11] = true}, +} + +local vert_e = { + [3] = {[5] = true}, + [6] = {[5] = true, [9] = true, [16] = true}, + [7] = {[7] = true, [11] = true}, +} + +local vert_s = { + [3] = {[5] = true}, + [6] = {[5] = true, [12] = true, [16] = true}, + [7] = {[5] = true, [7] = true}, +} + +local vert_w = { + [3] = {[5] = true}, + [6] = {[5] = true, [9] = true, [12] = true}, + [7] = {[5] = true, [9] = true}, +} + +local horiz_n = { + [3] = {[0] = true}, + [6] = {[0] = true, [4] = true, [20] = true}, + [7] = {[2] = true, [10] = true}, + [8] = {[0] = true}, + [9] = {[2] = true}, +} + +local horiz_e = { + [3] = {[1] = true}, + [6] = {[1] = true, [17] = true, [21] = true}, + [7] = {[3] = true, [19] = true}, + [8] = {[1] = true}, + [9] = {[3] = true}, +} + +local horiz_s = { + [3] = {[0] = true}, + [6] = {[0] = true, [8] = true, [20] = true}, + [7] = {[0] = true, [4] = true}, + [8] = {[0] = true}, + [9] = {[0] = true}, +} + +local horiz_w = { + [3] = {[1] = true}, + [6] = {[1] = true, [13] = true, [21] = true}, + [7] = {[1] = true, [13] = true}, + [8] = {[1] = true}, + [9] = {[1] = true}, +} + +local function get_sign_dir(node, def) + if (node.param2 == 4 and def.paramtype2 == "wallmounted") + or (node.param2 == 0 and def.paramtype2 ~= "wallmounted") then + return {["N"] = true} + elseif (node.param2 == 2 and def.paramtype2 == "wallmounted") + or (node.param2 == 1 and def.paramtype2 ~= "wallmounted") then + return {["E"] = true} + elseif (node.param2 == 5 and def.paramtype2 == "wallmounted") + or (node.param2 == 2 and def.paramtype2 ~= "wallmounted") then + return {["S"] = true} + elseif node.param2 == 3 then + return {["W"] = true} + end + return {} +end + +--[[ +In the functions below: + + pos: the (real) position of the placed sign + node: the sign node itself + def: its definition + + ppos: the position of the pointed node (pipe/tube) + pnode: the node itself + pdef: its definition + +--]] + + +-- pipes + +function pipeworks.check_for_vert_pipe(pos, node, def, ppos, pnode, pdef) + local signdir = get_sign_dir(node, def) + local pipenumber = pdef.pipenumber + local pipedir = pnode.param2 + if string.find(pnode.name, "straight_pipe") and spv[pipedir] then + return true + elseif signdir["N"] and vert_n[pipenumber] and vert_n[pipenumber][pipedir] then + return true + elseif signdir["E"] and vert_e[pipenumber] and vert_e[pipenumber][pipedir] then + return true + elseif signdir["S"] and vert_s[pipenumber] and vert_s[pipenumber][pipedir] then + return true + elseif signdir["W"] and vert_w[pipenumber] and vert_w[pipenumber][pipedir] then + return true + end +end + +function pipeworks.check_for_horiz_pipe(pos, node, def, ppos, pnode, pdef) + local signdir = get_sign_dir(node, def) + local pipenumber = pdef.pipenumber + local pipedir = pnode.param2 + if string.find(pnode.name, "straight_pipe") then + if (signdir["N"] or signdir["S"]) and sphns[pipedir] then + return true + elseif (signdir["E"] or signdir["W"]) and sphew[pipedir] then + return true + end + elseif signdir["N"] and horiz_n[pipenumber] and horiz_n[pipenumber][pipedir] then + return true + elseif signdir["E"] and horiz_e[pipenumber] and horiz_e[pipenumber][pipedir] then + return true + elseif signdir["S"] and horiz_s[pipenumber] and horiz_s[pipenumber][pipedir] then + return true + elseif signdir["W"] and horiz_w[pipenumber] and horiz_w[pipenumber][pipedir] then + return true + end +end + +-- tubes + +function pipeworks.check_for_vert_tube(pos, node, def, ppos, pnode, pdef) + local signdir = get_sign_dir(node, def) + local tubenumber = pdef.tubenumber + local tubedir = pnode.param2 + if pnode.name == "pipeworks:one_way_tube" and owtv[tubedir] then + return true + elseif tubenumber == 2 and (tubedir == 5 or tubedir == 7) then -- it's a stub pointing up or down + return true + elseif signdir["N"] and vert_n[tubenumber] and vert_n[tubenumber][tubedir] then + return true + elseif signdir["E"] and vert_e[tubenumber] and vert_e[tubenumber][tubedir] then + return true + elseif signdir["S"] and vert_s[tubenumber] and vert_s[tubenumber][tubedir] then + return true + elseif signdir["W"] and vert_w[tubenumber] and vert_w[tubenumber][tubedir] then + return true + end +end + +function pipeworks.check_for_horiz_tube(pos, node, def, ppos, pnode, pdef) + local signdir = get_sign_dir(node, def) + local tubenumber = pdef.tubenumber + local tubedir = pnode.param2 + if tubenumber == 2 then -- it'a a stub pointing sideways + if (tubedir == 0 or tubedir == 2) and (signdir["N"] or signdir["S"]) then + return true + elseif (tubedir == 1 or tubedir == 3) and (signdir["E"] or signdir["W"]) then + return true + end + elseif pnode.name == "pipeworks:one_way_tube" then + if (signdir["N"] or signdir["S"]) and owtns[tubedir] then + return true + elseif (signdir["E"] or signdir["W"]) and owtew[tubedir] then + return true + end + elseif signdir["N"] and horiz_n[tubenumber] and horiz_n[tubenumber][tubedir] then + return true + elseif signdir["E"] and horiz_e[tubenumber] and horiz_e[tubenumber][tubedir] then + return true + elseif signdir["S"] and horiz_s[tubenumber] and horiz_s[tubenumber][tubedir] then + return true + elseif signdir["W"] and horiz_w[tubenumber] and horiz_w[tubenumber][tubedir] then + return true + end +end diff --git a/mods/pipeworks/textures/homedecor_oil_extract.png b/mods/pipeworks/textures/homedecor_oil_extract.png new file mode 100644 index 00000000..b945a9e7 Binary files /dev/null and b/mods/pipeworks/textures/homedecor_oil_extract.png differ diff --git a/mods/pipeworks/textures/homedecor_paraffin.png b/mods/pipeworks/textures/homedecor_paraffin.png new file mode 100644 index 00000000..77d2bbd1 Binary files /dev/null and b/mods/pipeworks/textures/homedecor_paraffin.png differ diff --git a/mods/pipeworks/textures/homedecor_plastic_sheeting.png b/mods/pipeworks/textures/homedecor_plastic_sheeting.png new file mode 100644 index 00000000..fba0ccde Binary files /dev/null and b/mods/pipeworks/textures/homedecor_plastic_sheeting.png differ diff --git a/mods/pipeworks/textures/pipeworks_accelerator_tube_end.png b/mods/pipeworks/textures/pipeworks_accelerator_tube_end.png new file mode 100644 index 00000000..68391657 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_accelerator_tube_end.png differ diff --git a/mods/pipeworks/textures/pipeworks_accelerator_tube_inv.png b/mods/pipeworks/textures/pipeworks_accelerator_tube_inv.png new file mode 100644 index 00000000..743956a7 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_accelerator_tube_inv.png differ diff --git a/mods/pipeworks/textures/pipeworks_accelerator_tube_noctr.png b/mods/pipeworks/textures/pipeworks_accelerator_tube_noctr.png new file mode 100644 index 00000000..fa0daa6c Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_accelerator_tube_noctr.png differ diff --git a/mods/pipeworks/textures/pipeworks_accelerator_tube_plain.png b/mods/pipeworks/textures/pipeworks_accelerator_tube_plain.png new file mode 100644 index 00000000..8256d05e Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_accelerator_tube_plain.png differ diff --git a/mods/pipeworks/textures/pipeworks_accelerator_tube_short.png b/mods/pipeworks/textures/pipeworks_accelerator_tube_short.png new file mode 100644 index 00000000..1444b43d Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_accelerator_tube_short.png differ diff --git a/mods/pipeworks/textures/pipeworks_autocrafter.png b/mods/pipeworks/textures/pipeworks_autocrafter.png new file mode 100644 index 00000000..1643e825 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_autocrafter.png differ diff --git a/mods/pipeworks/textures/pipeworks_black.png b/mods/pipeworks/textures/pipeworks_black.png new file mode 100644 index 00000000..34afad80 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_black.png differ diff --git a/mods/pipeworks/textures/pipeworks_blue.png b/mods/pipeworks/textures/pipeworks_blue.png new file mode 100644 index 00000000..64c8a6f8 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_blue.png differ diff --git a/mods/pipeworks/textures/pipeworks_broken_tube_end.png b/mods/pipeworks/textures/pipeworks_broken_tube_end.png new file mode 100644 index 00000000..1829f8c0 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_broken_tube_end.png differ diff --git a/mods/pipeworks/textures/pipeworks_broken_tube_inv.png b/mods/pipeworks/textures/pipeworks_broken_tube_inv.png new file mode 100644 index 00000000..5b8d7076 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_broken_tube_inv.png differ diff --git a/mods/pipeworks/textures/pipeworks_broken_tube_noctr.png b/mods/pipeworks/textures/pipeworks_broken_tube_noctr.png new file mode 100644 index 00000000..a17da5fc Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_broken_tube_noctr.png differ diff --git a/mods/pipeworks/textures/pipeworks_broken_tube_plain.png b/mods/pipeworks/textures/pipeworks_broken_tube_plain.png new file mode 100644 index 00000000..7957e59a Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_broken_tube_plain.png differ diff --git a/mods/pipeworks/textures/pipeworks_broken_tube_short.png b/mods/pipeworks/textures/pipeworks_broken_tube_short.png new file mode 100644 index 00000000..237fec52 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_broken_tube_short.png differ diff --git a/mods/pipeworks/textures/pipeworks_button_interm.png b/mods/pipeworks/textures/pipeworks_button_interm.png new file mode 100644 index 00000000..0d4c5581 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_button_interm.png differ diff --git a/mods/pipeworks/textures/pipeworks_button_off.png b/mods/pipeworks/textures/pipeworks_button_off.png new file mode 100644 index 00000000..3836d195 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_button_off.png differ diff --git a/mods/pipeworks/textures/pipeworks_button_on.png b/mods/pipeworks/textures/pipeworks_button_on.png new file mode 100644 index 00000000..a42eb05d Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_button_on.png differ diff --git a/mods/pipeworks/textures/pipeworks_conductor_tube_end.png b/mods/pipeworks/textures/pipeworks_conductor_tube_end.png new file mode 100644 index 00000000..59426621 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_conductor_tube_end.png differ diff --git a/mods/pipeworks/textures/pipeworks_conductor_tube_inv.png b/mods/pipeworks/textures/pipeworks_conductor_tube_inv.png new file mode 100644 index 00000000..63239374 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_conductor_tube_inv.png differ diff --git a/mods/pipeworks/textures/pipeworks_conductor_tube_noctr.png b/mods/pipeworks/textures/pipeworks_conductor_tube_noctr.png new file mode 100644 index 00000000..f5e05016 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_conductor_tube_noctr.png differ diff --git a/mods/pipeworks/textures/pipeworks_conductor_tube_on_end.png b/mods/pipeworks/textures/pipeworks_conductor_tube_on_end.png new file mode 100644 index 00000000..46d0e30c Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_conductor_tube_on_end.png differ diff --git a/mods/pipeworks/textures/pipeworks_conductor_tube_on_noctr.png b/mods/pipeworks/textures/pipeworks_conductor_tube_on_noctr.png new file mode 100644 index 00000000..27d24838 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_conductor_tube_on_noctr.png differ diff --git a/mods/pipeworks/textures/pipeworks_conductor_tube_on_plain.png b/mods/pipeworks/textures/pipeworks_conductor_tube_on_plain.png new file mode 100644 index 00000000..c58eaf24 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_conductor_tube_on_plain.png differ diff --git a/mods/pipeworks/textures/pipeworks_conductor_tube_plain.png b/mods/pipeworks/textures/pipeworks_conductor_tube_plain.png new file mode 100644 index 00000000..e0891ed6 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_conductor_tube_plain.png differ diff --git a/mods/pipeworks/textures/pipeworks_conductor_tube_short.png b/mods/pipeworks/textures/pipeworks_conductor_tube_short.png new file mode 100644 index 00000000..7ec809a6 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_conductor_tube_short.png differ diff --git a/mods/pipeworks/textures/pipeworks_crossing_tube_end.png b/mods/pipeworks/textures/pipeworks_crossing_tube_end.png new file mode 100644 index 00000000..7b51ce31 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_crossing_tube_end.png differ diff --git a/mods/pipeworks/textures/pipeworks_crossing_tube_inv.png b/mods/pipeworks/textures/pipeworks_crossing_tube_inv.png new file mode 100644 index 00000000..2ee350b5 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_crossing_tube_inv.png differ diff --git a/mods/pipeworks/textures/pipeworks_crossing_tube_noctr.png b/mods/pipeworks/textures/pipeworks_crossing_tube_noctr.png new file mode 100644 index 00000000..fdef1be4 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_crossing_tube_noctr.png differ diff --git a/mods/pipeworks/textures/pipeworks_crossing_tube_plain.png b/mods/pipeworks/textures/pipeworks_crossing_tube_plain.png new file mode 100644 index 00000000..0ed695f1 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_crossing_tube_plain.png differ diff --git a/mods/pipeworks/textures/pipeworks_crossing_tube_short.png b/mods/pipeworks/textures/pipeworks_crossing_tube_short.png new file mode 100644 index 00000000..ef191de7 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_crossing_tube_short.png differ diff --git a/mods/pipeworks/textures/pipeworks_deployer_back.png b/mods/pipeworks/textures/pipeworks_deployer_back.png new file mode 100644 index 00000000..4e08be38 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_deployer_back.png differ diff --git a/mods/pipeworks/textures/pipeworks_deployer_bottom.png b/mods/pipeworks/textures/pipeworks_deployer_bottom.png new file mode 100644 index 00000000..fcb863cf Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_deployer_bottom.png differ diff --git a/mods/pipeworks/textures/pipeworks_deployer_front_off.png b/mods/pipeworks/textures/pipeworks_deployer_front_off.png new file mode 100644 index 00000000..a314c8be Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_deployer_front_off.png differ diff --git a/mods/pipeworks/textures/pipeworks_deployer_front_on.png b/mods/pipeworks/textures/pipeworks_deployer_front_on.png new file mode 100644 index 00000000..a59a61e9 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_deployer_front_on.png differ diff --git a/mods/pipeworks/textures/pipeworks_deployer_side.png b/mods/pipeworks/textures/pipeworks_deployer_side.png new file mode 100644 index 00000000..2c7da561 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_deployer_side.png differ diff --git a/mods/pipeworks/textures/pipeworks_deployer_side1.png b/mods/pipeworks/textures/pipeworks_deployer_side1.png new file mode 100644 index 00000000..2c7da561 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_deployer_side1.png differ diff --git a/mods/pipeworks/textures/pipeworks_deployer_side2.png b/mods/pipeworks/textures/pipeworks_deployer_side2.png new file mode 100644 index 00000000..eb240615 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_deployer_side2.png differ diff --git a/mods/pipeworks/textures/pipeworks_deployer_top.png b/mods/pipeworks/textures/pipeworks_deployer_top.png new file mode 100644 index 00000000..f3312126 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_deployer_top.png differ diff --git a/mods/pipeworks/textures/pipeworks_detector_tube_end.png b/mods/pipeworks/textures/pipeworks_detector_tube_end.png new file mode 100644 index 00000000..e9d01bae Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_detector_tube_end.png differ diff --git a/mods/pipeworks/textures/pipeworks_detector_tube_inv.png b/mods/pipeworks/textures/pipeworks_detector_tube_inv.png new file mode 100644 index 00000000..0e3b7d8f Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_detector_tube_inv.png differ diff --git a/mods/pipeworks/textures/pipeworks_detector_tube_noctr.png b/mods/pipeworks/textures/pipeworks_detector_tube_noctr.png new file mode 100644 index 00000000..6f078863 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_detector_tube_noctr.png differ diff --git a/mods/pipeworks/textures/pipeworks_detector_tube_plain.png b/mods/pipeworks/textures/pipeworks_detector_tube_plain.png new file mode 100644 index 00000000..6a9845cf Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_detector_tube_plain.png differ diff --git a/mods/pipeworks/textures/pipeworks_detector_tube_short.png b/mods/pipeworks/textures/pipeworks_detector_tube_short.png new file mode 100644 index 00000000..6729c532 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_detector_tube_short.png differ diff --git a/mods/pipeworks/textures/pipeworks_digiline_conductor_tube_end.png b/mods/pipeworks/textures/pipeworks_digiline_conductor_tube_end.png new file mode 100644 index 00000000..e6c2cfc1 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_digiline_conductor_tube_end.png differ diff --git a/mods/pipeworks/textures/pipeworks_digiline_conductor_tube_inv.png b/mods/pipeworks/textures/pipeworks_digiline_conductor_tube_inv.png new file mode 100644 index 00000000..7f23c8cf Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_digiline_conductor_tube_inv.png differ diff --git a/mods/pipeworks/textures/pipeworks_digiline_conductor_tube_noctr.png b/mods/pipeworks/textures/pipeworks_digiline_conductor_tube_noctr.png new file mode 100644 index 00000000..b58a4d3b Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_digiline_conductor_tube_noctr.png differ diff --git a/mods/pipeworks/textures/pipeworks_digiline_conductor_tube_plain.png b/mods/pipeworks/textures/pipeworks_digiline_conductor_tube_plain.png new file mode 100644 index 00000000..de313075 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_digiline_conductor_tube_plain.png differ diff --git a/mods/pipeworks/textures/pipeworks_digiline_conductor_tube_short.png b/mods/pipeworks/textures/pipeworks_digiline_conductor_tube_short.png new file mode 100644 index 00000000..6108485e Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_digiline_conductor_tube_short.png differ diff --git a/mods/pipeworks/textures/pipeworks_digiline_detector_tube_end.png b/mods/pipeworks/textures/pipeworks_digiline_detector_tube_end.png new file mode 100644 index 00000000..e9d01bae Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_digiline_detector_tube_end.png differ diff --git a/mods/pipeworks/textures/pipeworks_digiline_detector_tube_inv.png b/mods/pipeworks/textures/pipeworks_digiline_detector_tube_inv.png new file mode 100644 index 00000000..0ed763a1 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_digiline_detector_tube_inv.png differ diff --git a/mods/pipeworks/textures/pipeworks_digiline_detector_tube_noctr.png b/mods/pipeworks/textures/pipeworks_digiline_detector_tube_noctr.png new file mode 100644 index 00000000..6f078863 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_digiline_detector_tube_noctr.png differ diff --git a/mods/pipeworks/textures/pipeworks_digiline_detector_tube_plain.png b/mods/pipeworks/textures/pipeworks_digiline_detector_tube_plain.png new file mode 100644 index 00000000..86ded6f9 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_digiline_detector_tube_plain.png differ diff --git a/mods/pipeworks/textures/pipeworks_digiline_detector_tube_short.png b/mods/pipeworks/textures/pipeworks_digiline_detector_tube_short.png new file mode 100644 index 00000000..6729c532 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_digiline_detector_tube_short.png differ diff --git a/mods/pipeworks/textures/pipeworks_digiline_filter_input.png b/mods/pipeworks/textures/pipeworks_digiline_filter_input.png new file mode 100644 index 00000000..c1ffa53b Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_digiline_filter_input.png differ diff --git a/mods/pipeworks/textures/pipeworks_digiline_filter_output.png b/mods/pipeworks/textures/pipeworks_digiline_filter_output.png new file mode 100644 index 00000000..4c57d0ab Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_digiline_filter_output.png differ diff --git a/mods/pipeworks/textures/pipeworks_digiline_filter_side.png b/mods/pipeworks/textures/pipeworks_digiline_filter_side.png new file mode 100644 index 00000000..6a778967 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_digiline_filter_side.png differ diff --git a/mods/pipeworks/textures/pipeworks_digiline_filter_top.png b/mods/pipeworks/textures/pipeworks_digiline_filter_top.png new file mode 100644 index 00000000..04ffda01 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_digiline_filter_top.png differ diff --git a/mods/pipeworks/textures/pipeworks_dispenser_back.png b/mods/pipeworks/textures/pipeworks_dispenser_back.png new file mode 100644 index 00000000..ce447bd4 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_dispenser_back.png differ diff --git a/mods/pipeworks/textures/pipeworks_dispenser_bottom.png b/mods/pipeworks/textures/pipeworks_dispenser_bottom.png new file mode 100644 index 00000000..16dc5847 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_dispenser_bottom.png differ diff --git a/mods/pipeworks/textures/pipeworks_dispenser_front_off.png b/mods/pipeworks/textures/pipeworks_dispenser_front_off.png new file mode 100644 index 00000000..b0c9e4a0 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_dispenser_front_off.png differ diff --git a/mods/pipeworks/textures/pipeworks_dispenser_front_on.png b/mods/pipeworks/textures/pipeworks_dispenser_front_on.png new file mode 100644 index 00000000..c9fff11e Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_dispenser_front_on.png differ diff --git a/mods/pipeworks/textures/pipeworks_dispenser_side1.png b/mods/pipeworks/textures/pipeworks_dispenser_side1.png new file mode 100644 index 00000000..bd178528 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_dispenser_side1.png differ diff --git a/mods/pipeworks/textures/pipeworks_dispenser_side2.png b/mods/pipeworks/textures/pipeworks_dispenser_side2.png new file mode 100644 index 00000000..005d9a5e Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_dispenser_side2.png differ diff --git a/mods/pipeworks/textures/pipeworks_dispenser_top.png b/mods/pipeworks/textures/pipeworks_dispenser_top.png new file mode 100644 index 00000000..7dd49adb Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_dispenser_top.png differ diff --git a/mods/pipeworks/textures/pipeworks_entry_panel.png b/mods/pipeworks/textures/pipeworks_entry_panel.png new file mode 100644 index 00000000..040f4083 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_entry_panel.png differ diff --git a/mods/pipeworks/textures/pipeworks_filter_input.png b/mods/pipeworks/textures/pipeworks_filter_input.png new file mode 100644 index 00000000..187c4022 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_filter_input.png differ diff --git a/mods/pipeworks/textures/pipeworks_filter_output.png b/mods/pipeworks/textures/pipeworks_filter_output.png new file mode 100644 index 00000000..db7af086 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_filter_output.png differ diff --git a/mods/pipeworks/textures/pipeworks_filter_side.png b/mods/pipeworks/textures/pipeworks_filter_side.png new file mode 100644 index 00000000..be1577a7 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_filter_side.png differ diff --git a/mods/pipeworks/textures/pipeworks_filter_top.png b/mods/pipeworks/textures/pipeworks_filter_top.png new file mode 100644 index 00000000..45b6b5a5 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_filter_top.png differ diff --git a/mods/pipeworks/textures/pipeworks_flow_sensor_off.png b/mods/pipeworks/textures/pipeworks_flow_sensor_off.png new file mode 100644 index 00000000..153c3f87 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_flow_sensor_off.png differ diff --git a/mods/pipeworks/textures/pipeworks_flow_sensor_on.png b/mods/pipeworks/textures/pipeworks_flow_sensor_on.png new file mode 100644 index 00000000..43ded0c4 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_flow_sensor_on.png differ diff --git a/mods/pipeworks/textures/pipeworks_fountainhead.png b/mods/pipeworks/textures/pipeworks_fountainhead.png new file mode 100644 index 00000000..4affa696 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_fountainhead.png differ diff --git a/mods/pipeworks/textures/pipeworks_grating_sides.png b/mods/pipeworks/textures/pipeworks_grating_sides.png new file mode 100644 index 00000000..28ce593b Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_grating_sides.png differ diff --git a/mods/pipeworks/textures/pipeworks_grating_top.png b/mods/pipeworks/textures/pipeworks_grating_top.png new file mode 100644 index 00000000..6e876fa5 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_grating_top.png differ diff --git a/mods/pipeworks/textures/pipeworks_green.png b/mods/pipeworks/textures/pipeworks_green.png new file mode 100644 index 00000000..3f42f9f0 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_green.png differ diff --git a/mods/pipeworks/textures/pipeworks_lua_tube_port_burnt.png b/mods/pipeworks/textures/pipeworks_lua_tube_port_burnt.png new file mode 100644 index 00000000..3384eff7 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_lua_tube_port_burnt.png differ diff --git a/mods/pipeworks/textures/pipeworks_lua_tube_port_off.png b/mods/pipeworks/textures/pipeworks_lua_tube_port_off.png new file mode 100644 index 00000000..03f70697 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_lua_tube_port_off.png differ diff --git a/mods/pipeworks/textures/pipeworks_lua_tube_port_on.png b/mods/pipeworks/textures/pipeworks_lua_tube_port_on.png new file mode 100644 index 00000000..a7e3d09a Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_lua_tube_port_on.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_filter_input.png b/mods/pipeworks/textures/pipeworks_mese_filter_input.png new file mode 100644 index 00000000..58095d05 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_filter_input.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_filter_output.png b/mods/pipeworks/textures/pipeworks_mese_filter_output.png new file mode 100644 index 00000000..a39e5a88 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_filter_output.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_filter_side.png b/mods/pipeworks/textures/pipeworks_mese_filter_side.png new file mode 100644 index 00000000..3438ce1b Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_filter_side.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_filter_top.png b/mods/pipeworks/textures/pipeworks_mese_filter_top.png new file mode 100644 index 00000000..aa4f67c0 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_filter_top.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_sand_tube_end.png b/mods/pipeworks/textures/pipeworks_mese_sand_tube_end.png new file mode 100644 index 00000000..fa59f37c Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_sand_tube_end.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_sand_tube_inv.png b/mods/pipeworks/textures/pipeworks_mese_sand_tube_inv.png new file mode 100644 index 00000000..8b1b5e1c Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_sand_tube_inv.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_sand_tube_noctr.png b/mods/pipeworks/textures/pipeworks_mese_sand_tube_noctr.png new file mode 100644 index 00000000..f26f39d2 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_sand_tube_noctr.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_sand_tube_plain.png b/mods/pipeworks/textures/pipeworks_mese_sand_tube_plain.png new file mode 100644 index 00000000..8a48599d Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_sand_tube_plain.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_sand_tube_short.png b/mods/pipeworks/textures/pipeworks_mese_sand_tube_short.png new file mode 100644 index 00000000..78ca710f Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_sand_tube_short.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_tube_end.png b/mods/pipeworks/textures/pipeworks_mese_tube_end.png new file mode 100644 index 00000000..b47281a3 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_tube_end.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_tube_inv.png b/mods/pipeworks/textures/pipeworks_mese_tube_inv.png new file mode 100644 index 00000000..4b15ef98 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_tube_inv.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_tube_noctr_1.png b/mods/pipeworks/textures/pipeworks_mese_tube_noctr_1.png new file mode 100644 index 00000000..c9661a7a Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_tube_noctr_1.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_tube_noctr_2.png b/mods/pipeworks/textures/pipeworks_mese_tube_noctr_2.png new file mode 100644 index 00000000..ffe53b7c Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_tube_noctr_2.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_tube_noctr_3.png b/mods/pipeworks/textures/pipeworks_mese_tube_noctr_3.png new file mode 100644 index 00000000..b65c0e24 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_tube_noctr_3.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_tube_noctr_4.png b/mods/pipeworks/textures/pipeworks_mese_tube_noctr_4.png new file mode 100644 index 00000000..278c7e85 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_tube_noctr_4.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_tube_noctr_5.png b/mods/pipeworks/textures/pipeworks_mese_tube_noctr_5.png new file mode 100644 index 00000000..4b75ae22 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_tube_noctr_5.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_tube_noctr_6.png b/mods/pipeworks/textures/pipeworks_mese_tube_noctr_6.png new file mode 100644 index 00000000..e2bd483a Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_tube_noctr_6.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_tube_plain_1.png b/mods/pipeworks/textures/pipeworks_mese_tube_plain_1.png new file mode 100644 index 00000000..47ce4ed8 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_tube_plain_1.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_tube_plain_2.png b/mods/pipeworks/textures/pipeworks_mese_tube_plain_2.png new file mode 100644 index 00000000..12d79665 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_tube_plain_2.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_tube_plain_3.png b/mods/pipeworks/textures/pipeworks_mese_tube_plain_3.png new file mode 100644 index 00000000..4d3d415a Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_tube_plain_3.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_tube_plain_4.png b/mods/pipeworks/textures/pipeworks_mese_tube_plain_4.png new file mode 100644 index 00000000..f4c33702 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_tube_plain_4.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_tube_plain_5.png b/mods/pipeworks/textures/pipeworks_mese_tube_plain_5.png new file mode 100644 index 00000000..fbe8de00 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_tube_plain_5.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_tube_plain_6.png b/mods/pipeworks/textures/pipeworks_mese_tube_plain_6.png new file mode 100644 index 00000000..76b49e36 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_tube_plain_6.png differ diff --git a/mods/pipeworks/textures/pipeworks_mese_tube_short.png b/mods/pipeworks/textures/pipeworks_mese_tube_short.png new file mode 100644 index 00000000..fd12ccd3 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_mese_tube_short.png differ diff --git a/mods/pipeworks/textures/pipeworks_nodebreaker_back.png b/mods/pipeworks/textures/pipeworks_nodebreaker_back.png new file mode 100644 index 00000000..3006cb76 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_nodebreaker_back.png differ diff --git a/mods/pipeworks/textures/pipeworks_nodebreaker_bottom_off.png b/mods/pipeworks/textures/pipeworks_nodebreaker_bottom_off.png new file mode 100644 index 00000000..c7a48d44 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_nodebreaker_bottom_off.png differ diff --git a/mods/pipeworks/textures/pipeworks_nodebreaker_bottom_on.png b/mods/pipeworks/textures/pipeworks_nodebreaker_bottom_on.png new file mode 100644 index 00000000..e14ca32a Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_nodebreaker_bottom_on.png differ diff --git a/mods/pipeworks/textures/pipeworks_nodebreaker_front_off.png b/mods/pipeworks/textures/pipeworks_nodebreaker_front_off.png new file mode 100644 index 00000000..07bad92b Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_nodebreaker_front_off.png differ diff --git a/mods/pipeworks/textures/pipeworks_nodebreaker_front_on.png b/mods/pipeworks/textures/pipeworks_nodebreaker_front_on.png new file mode 100644 index 00000000..927ccca7 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_nodebreaker_front_on.png differ diff --git a/mods/pipeworks/textures/pipeworks_nodebreaker_side1_off.png b/mods/pipeworks/textures/pipeworks_nodebreaker_side1_off.png new file mode 100644 index 00000000..259172c0 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_nodebreaker_side1_off.png differ diff --git a/mods/pipeworks/textures/pipeworks_nodebreaker_side1_on.png b/mods/pipeworks/textures/pipeworks_nodebreaker_side1_on.png new file mode 100644 index 00000000..96480efc Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_nodebreaker_side1_on.png differ diff --git a/mods/pipeworks/textures/pipeworks_nodebreaker_side2_off.png b/mods/pipeworks/textures/pipeworks_nodebreaker_side2_off.png new file mode 100644 index 00000000..e330ba05 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_nodebreaker_side2_off.png differ diff --git a/mods/pipeworks/textures/pipeworks_nodebreaker_side2_on.png b/mods/pipeworks/textures/pipeworks_nodebreaker_side2_on.png new file mode 100644 index 00000000..4c8fc40b Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_nodebreaker_side2_on.png differ diff --git a/mods/pipeworks/textures/pipeworks_nodebreaker_top_off.png b/mods/pipeworks/textures/pipeworks_nodebreaker_top_off.png new file mode 100644 index 00000000..fb86b957 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_nodebreaker_top_off.png differ diff --git a/mods/pipeworks/textures/pipeworks_nodebreaker_top_on.png b/mods/pipeworks/textures/pipeworks_nodebreaker_top_on.png new file mode 100644 index 00000000..97da74d6 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_nodebreaker_top_on.png differ diff --git a/mods/pipeworks/textures/pipeworks_one_way_tube_input.png b/mods/pipeworks/textures/pipeworks_one_way_tube_input.png new file mode 100644 index 00000000..8490858b Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_one_way_tube_input.png differ diff --git a/mods/pipeworks/textures/pipeworks_one_way_tube_output.png b/mods/pipeworks/textures/pipeworks_one_way_tube_output.png new file mode 100644 index 00000000..8490858b Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_one_way_tube_output.png differ diff --git a/mods/pipeworks/textures/pipeworks_one_way_tube_side.png b/mods/pipeworks/textures/pipeworks_one_way_tube_side.png new file mode 100644 index 00000000..9881be2c Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_one_way_tube_side.png differ diff --git a/mods/pipeworks/textures/pipeworks_one_way_tube_top.png b/mods/pipeworks/textures/pipeworks_one_way_tube_top.png new file mode 100644 index 00000000..5ade4275 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_one_way_tube_top.png differ diff --git a/mods/pipeworks/textures/pipeworks_pane_embedded_tube_ends.png b/mods/pipeworks/textures/pipeworks_pane_embedded_tube_ends.png new file mode 100644 index 00000000..8c424a86 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_pane_embedded_tube_ends.png differ diff --git a/mods/pipeworks/textures/pipeworks_pane_embedded_tube_sides.png b/mods/pipeworks/textures/pipeworks_pane_embedded_tube_sides.png new file mode 100644 index 00000000..befe5250 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_pane_embedded_tube_sides.png differ diff --git a/mods/pipeworks/textures/pipeworks_pipe_3_empty.png b/mods/pipeworks/textures/pipeworks_pipe_3_empty.png new file mode 100644 index 00000000..10bed65d Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_pipe_3_empty.png differ diff --git a/mods/pipeworks/textures/pipeworks_pipe_3_loaded.png b/mods/pipeworks/textures/pipeworks_pipe_3_loaded.png new file mode 100644 index 00000000..2bb9d4aa Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_pipe_3_loaded.png differ diff --git a/mods/pipeworks/textures/pipeworks_pipe_plain.png b/mods/pipeworks/textures/pipeworks_pipe_plain.png new file mode 100644 index 00000000..7cbc11b0 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_pipe_plain.png differ diff --git a/mods/pipeworks/textures/pipeworks_plastic_sheeting.png b/mods/pipeworks/textures/pipeworks_plastic_sheeting.png new file mode 100644 index 00000000..3834df71 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_plastic_sheeting.png differ diff --git a/mods/pipeworks/textures/pipeworks_pressure_gauge.png b/mods/pipeworks/textures/pipeworks_pressure_gauge.png new file mode 100644 index 00000000..08a79f0c Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_pressure_gauge.png differ diff --git a/mods/pipeworks/textures/pipeworks_pressure_gauge_0.png b/mods/pipeworks/textures/pipeworks_pressure_gauge_0.png new file mode 100644 index 00000000..de9d592b Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_pressure_gauge_0.png differ diff --git a/mods/pipeworks/textures/pipeworks_pressure_gauge_1.png b/mods/pipeworks/textures/pipeworks_pressure_gauge_1.png new file mode 100644 index 00000000..fe21ea5b Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_pressure_gauge_1.png differ diff --git a/mods/pipeworks/textures/pipeworks_pressure_gauge_2.png b/mods/pipeworks/textures/pipeworks_pressure_gauge_2.png new file mode 100644 index 00000000..799404c5 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_pressure_gauge_2.png differ diff --git a/mods/pipeworks/textures/pipeworks_pressure_gauge_3.png b/mods/pipeworks/textures/pipeworks_pressure_gauge_3.png new file mode 100644 index 00000000..00a2ca90 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_pressure_gauge_3.png differ diff --git a/mods/pipeworks/textures/pipeworks_pressure_gauge_4.png b/mods/pipeworks/textures/pipeworks_pressure_gauge_4.png new file mode 100644 index 00000000..34a1787b Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_pressure_gauge_4.png differ diff --git a/mods/pipeworks/textures/pipeworks_pressure_gauge_5.png b/mods/pipeworks/textures/pipeworks_pressure_gauge_5.png new file mode 100644 index 00000000..63caacfd Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_pressure_gauge_5.png differ diff --git a/mods/pipeworks/textures/pipeworks_pressure_gauge_6.png b/mods/pipeworks/textures/pipeworks_pressure_gauge_6.png new file mode 100644 index 00000000..2627860a Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_pressure_gauge_6.png differ diff --git a/mods/pipeworks/textures/pipeworks_pump_off.png b/mods/pipeworks/textures/pipeworks_pump_off.png new file mode 100644 index 00000000..8c683bc0 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_pump_off.png differ diff --git a/mods/pipeworks/textures/pipeworks_pump_on.png b/mods/pipeworks/textures/pipeworks_pump_on.png new file mode 100644 index 00000000..fb0539e4 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_pump_on.png differ diff --git a/mods/pipeworks/textures/pipeworks_red.png b/mods/pipeworks/textures/pipeworks_red.png new file mode 100644 index 00000000..33812bda Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_red.png differ diff --git a/mods/pipeworks/textures/pipeworks_sand_tube_end.png b/mods/pipeworks/textures/pipeworks_sand_tube_end.png new file mode 100644 index 00000000..8cccaf46 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_sand_tube_end.png differ diff --git a/mods/pipeworks/textures/pipeworks_sand_tube_inv.png b/mods/pipeworks/textures/pipeworks_sand_tube_inv.png new file mode 100644 index 00000000..3afb05da Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_sand_tube_inv.png differ diff --git a/mods/pipeworks/textures/pipeworks_sand_tube_noctr.png b/mods/pipeworks/textures/pipeworks_sand_tube_noctr.png new file mode 100644 index 00000000..a9c6d2d3 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_sand_tube_noctr.png differ diff --git a/mods/pipeworks/textures/pipeworks_sand_tube_plain.png b/mods/pipeworks/textures/pipeworks_sand_tube_plain.png new file mode 100644 index 00000000..d6650818 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_sand_tube_plain.png differ diff --git a/mods/pipeworks/textures/pipeworks_sand_tube_short.png b/mods/pipeworks/textures/pipeworks_sand_tube_short.png new file mode 100644 index 00000000..8dcf2b4f Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_sand_tube_short.png differ diff --git a/mods/pipeworks/textures/pipeworks_spigot.png b/mods/pipeworks/textures/pipeworks_spigot.png new file mode 100644 index 00000000..a79dbf82 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_spigot.png differ diff --git a/mods/pipeworks/textures/pipeworks_storage_tank_back.png b/mods/pipeworks/textures/pipeworks_storage_tank_back.png new file mode 100644 index 00000000..3b6a16bb Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_storage_tank_back.png differ diff --git a/mods/pipeworks/textures/pipeworks_storage_tank_fittings.png b/mods/pipeworks/textures/pipeworks_storage_tank_fittings.png new file mode 100644 index 00000000..f3b8b243 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_storage_tank_fittings.png differ diff --git a/mods/pipeworks/textures/pipeworks_storage_tank_front_0.png b/mods/pipeworks/textures/pipeworks_storage_tank_front_0.png new file mode 100644 index 00000000..72c6f6bb Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_storage_tank_front_0.png differ diff --git a/mods/pipeworks/textures/pipeworks_storage_tank_front_1.png b/mods/pipeworks/textures/pipeworks_storage_tank_front_1.png new file mode 100644 index 00000000..889893b1 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_storage_tank_front_1.png differ diff --git a/mods/pipeworks/textures/pipeworks_storage_tank_front_10.png b/mods/pipeworks/textures/pipeworks_storage_tank_front_10.png new file mode 100644 index 00000000..f48a738d Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_storage_tank_front_10.png differ diff --git a/mods/pipeworks/textures/pipeworks_storage_tank_front_2.png b/mods/pipeworks/textures/pipeworks_storage_tank_front_2.png new file mode 100644 index 00000000..a36bc240 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_storage_tank_front_2.png differ diff --git a/mods/pipeworks/textures/pipeworks_storage_tank_front_3.png b/mods/pipeworks/textures/pipeworks_storage_tank_front_3.png new file mode 100644 index 00000000..4575e37e Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_storage_tank_front_3.png differ diff --git a/mods/pipeworks/textures/pipeworks_storage_tank_front_4.png b/mods/pipeworks/textures/pipeworks_storage_tank_front_4.png new file mode 100644 index 00000000..47d9669e Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_storage_tank_front_4.png differ diff --git a/mods/pipeworks/textures/pipeworks_storage_tank_front_5.png b/mods/pipeworks/textures/pipeworks_storage_tank_front_5.png new file mode 100644 index 00000000..17eaf698 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_storage_tank_front_5.png differ diff --git a/mods/pipeworks/textures/pipeworks_storage_tank_front_6.png b/mods/pipeworks/textures/pipeworks_storage_tank_front_6.png new file mode 100644 index 00000000..77619e38 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_storage_tank_front_6.png differ diff --git a/mods/pipeworks/textures/pipeworks_storage_tank_front_7.png b/mods/pipeworks/textures/pipeworks_storage_tank_front_7.png new file mode 100644 index 00000000..ffebf9ba Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_storage_tank_front_7.png differ diff --git a/mods/pipeworks/textures/pipeworks_storage_tank_front_8.png b/mods/pipeworks/textures/pipeworks_storage_tank_front_8.png new file mode 100644 index 00000000..4974a826 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_storage_tank_front_8.png differ diff --git a/mods/pipeworks/textures/pipeworks_storage_tank_front_9.png b/mods/pipeworks/textures/pipeworks_storage_tank_front_9.png new file mode 100644 index 00000000..87b6d79f Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_storage_tank_front_9.png differ diff --git a/mods/pipeworks/textures/pipeworks_straight_pipe_empty.png b/mods/pipeworks/textures/pipeworks_straight_pipe_empty.png new file mode 100644 index 00000000..3b312d09 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_straight_pipe_empty.png differ diff --git a/mods/pipeworks/textures/pipeworks_straight_pipe_loaded.png b/mods/pipeworks/textures/pipeworks_straight_pipe_loaded.png new file mode 100644 index 00000000..96e8e040 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_straight_pipe_loaded.png differ diff --git a/mods/pipeworks/textures/pipeworks_tag_tube_end.png b/mods/pipeworks/textures/pipeworks_tag_tube_end.png new file mode 100644 index 00000000..db131bc9 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_tag_tube_end.png differ diff --git a/mods/pipeworks/textures/pipeworks_tag_tube_inv.png b/mods/pipeworks/textures/pipeworks_tag_tube_inv.png new file mode 100644 index 00000000..7fd2c314 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_tag_tube_inv.png differ diff --git a/mods/pipeworks/textures/pipeworks_tag_tube_noctr_1.png b/mods/pipeworks/textures/pipeworks_tag_tube_noctr_1.png new file mode 100644 index 00000000..80e3e227 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_tag_tube_noctr_1.png differ diff --git a/mods/pipeworks/textures/pipeworks_tag_tube_noctr_2.png b/mods/pipeworks/textures/pipeworks_tag_tube_noctr_2.png new file mode 100644 index 00000000..b5297400 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_tag_tube_noctr_2.png differ diff --git a/mods/pipeworks/textures/pipeworks_tag_tube_noctr_3.png b/mods/pipeworks/textures/pipeworks_tag_tube_noctr_3.png new file mode 100644 index 00000000..0eac5e52 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_tag_tube_noctr_3.png differ diff --git a/mods/pipeworks/textures/pipeworks_tag_tube_noctr_4.png b/mods/pipeworks/textures/pipeworks_tag_tube_noctr_4.png new file mode 100644 index 00000000..01430337 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_tag_tube_noctr_4.png differ diff --git a/mods/pipeworks/textures/pipeworks_tag_tube_noctr_5.png b/mods/pipeworks/textures/pipeworks_tag_tube_noctr_5.png new file mode 100644 index 00000000..d4c33ba4 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_tag_tube_noctr_5.png differ diff --git a/mods/pipeworks/textures/pipeworks_tag_tube_noctr_6.png b/mods/pipeworks/textures/pipeworks_tag_tube_noctr_6.png new file mode 100644 index 00000000..1a09462d Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_tag_tube_noctr_6.png differ diff --git a/mods/pipeworks/textures/pipeworks_tag_tube_plain_1.png b/mods/pipeworks/textures/pipeworks_tag_tube_plain_1.png new file mode 100644 index 00000000..69f9d66c Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_tag_tube_plain_1.png differ diff --git a/mods/pipeworks/textures/pipeworks_tag_tube_plain_2.png b/mods/pipeworks/textures/pipeworks_tag_tube_plain_2.png new file mode 100644 index 00000000..76aa7269 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_tag_tube_plain_2.png differ diff --git a/mods/pipeworks/textures/pipeworks_tag_tube_plain_3.png b/mods/pipeworks/textures/pipeworks_tag_tube_plain_3.png new file mode 100644 index 00000000..98d68cba Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_tag_tube_plain_3.png differ diff --git a/mods/pipeworks/textures/pipeworks_tag_tube_plain_4.png b/mods/pipeworks/textures/pipeworks_tag_tube_plain_4.png new file mode 100644 index 00000000..b05fd696 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_tag_tube_plain_4.png differ diff --git a/mods/pipeworks/textures/pipeworks_tag_tube_plain_5.png b/mods/pipeworks/textures/pipeworks_tag_tube_plain_5.png new file mode 100644 index 00000000..9801a38f Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_tag_tube_plain_5.png differ diff --git a/mods/pipeworks/textures/pipeworks_tag_tube_plain_6.png b/mods/pipeworks/textures/pipeworks_tag_tube_plain_6.png new file mode 100644 index 00000000..458fe5d2 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_tag_tube_plain_6.png differ diff --git a/mods/pipeworks/textures/pipeworks_tag_tube_short.png b/mods/pipeworks/textures/pipeworks_tag_tube_short.png new file mode 100644 index 00000000..c38ccd9a Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_tag_tube_short.png differ diff --git a/mods/pipeworks/textures/pipeworks_teleport_tube_end.png b/mods/pipeworks/textures/pipeworks_teleport_tube_end.png new file mode 100644 index 00000000..7a27150f Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_teleport_tube_end.png differ diff --git a/mods/pipeworks/textures/pipeworks_teleport_tube_inv.png b/mods/pipeworks/textures/pipeworks_teleport_tube_inv.png new file mode 100644 index 00000000..d12b896b Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_teleport_tube_inv.png differ diff --git a/mods/pipeworks/textures/pipeworks_teleport_tube_noctr.png b/mods/pipeworks/textures/pipeworks_teleport_tube_noctr.png new file mode 100644 index 00000000..ac7364d3 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_teleport_tube_noctr.png differ diff --git a/mods/pipeworks/textures/pipeworks_teleport_tube_plain.png b/mods/pipeworks/textures/pipeworks_teleport_tube_plain.png new file mode 100644 index 00000000..0a859f20 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_teleport_tube_plain.png differ diff --git a/mods/pipeworks/textures/pipeworks_teleport_tube_short.png b/mods/pipeworks/textures/pipeworks_teleport_tube_short.png new file mode 100644 index 00000000..f82d0826 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_teleport_tube_short.png differ diff --git a/mods/pipeworks/textures/pipeworks_testobject.png b/mods/pipeworks/textures/pipeworks_testobject.png new file mode 100644 index 00000000..d54c0246 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_testobject.png differ diff --git a/mods/pipeworks/textures/pipeworks_trashcan_bottom.png b/mods/pipeworks/textures/pipeworks_trashcan_bottom.png new file mode 100644 index 00000000..91fd944b Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_trashcan_bottom.png differ diff --git a/mods/pipeworks/textures/pipeworks_trashcan_side.png b/mods/pipeworks/textures/pipeworks_trashcan_side.png new file mode 100644 index 00000000..cf0a3bff Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_trashcan_side.png differ diff --git a/mods/pipeworks/textures/pipeworks_tube_connection_metallic.png b/mods/pipeworks/textures/pipeworks_tube_connection_metallic.png new file mode 100644 index 00000000..10becfe0 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_tube_connection_metallic.png differ diff --git a/mods/pipeworks/textures/pipeworks_tube_connection_stony.png b/mods/pipeworks/textures/pipeworks_tube_connection_stony.png new file mode 100644 index 00000000..6ed02a43 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_tube_connection_stony.png differ diff --git a/mods/pipeworks/textures/pipeworks_tube_connection_wooden.png b/mods/pipeworks/textures/pipeworks_tube_connection_wooden.png new file mode 100644 index 00000000..ff199ca0 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_tube_connection_wooden.png differ diff --git a/mods/pipeworks/textures/pipeworks_tube_end.png b/mods/pipeworks/textures/pipeworks_tube_end.png new file mode 100644 index 00000000..e9d01bae Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_tube_end.png differ diff --git a/mods/pipeworks/textures/pipeworks_tube_inv.png b/mods/pipeworks/textures/pipeworks_tube_inv.png new file mode 100644 index 00000000..51c728d8 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_tube_inv.png differ diff --git a/mods/pipeworks/textures/pipeworks_tube_noctr.png b/mods/pipeworks/textures/pipeworks_tube_noctr.png new file mode 100644 index 00000000..6f078863 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_tube_noctr.png differ diff --git a/mods/pipeworks/textures/pipeworks_tube_plain.png b/mods/pipeworks/textures/pipeworks_tube_plain.png new file mode 100644 index 00000000..9d6442b2 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_tube_plain.png differ diff --git a/mods/pipeworks/textures/pipeworks_tube_short.png b/mods/pipeworks/textures/pipeworks_tube_short.png new file mode 100644 index 00000000..6729c532 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_tube_short.png differ diff --git a/mods/pipeworks/textures/pipeworks_tube_transparent.png b/mods/pipeworks/textures/pipeworks_tube_transparent.png new file mode 100644 index 00000000..aa4418d1 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_tube_transparent.png differ diff --git a/mods/pipeworks/textures/pipeworks_valve.png b/mods/pipeworks/textures/pipeworks_valve.png new file mode 100644 index 00000000..60ef960e Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_valve.png differ diff --git a/mods/pipeworks/textures/pipeworks_white.png b/mods/pipeworks/textures/pipeworks_white.png new file mode 100644 index 00000000..faf0ec13 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_white.png differ diff --git a/mods/pipeworks/textures/pipeworks_yellow.png b/mods/pipeworks/textures/pipeworks_yellow.png new file mode 100644 index 00000000..ce1af411 Binary files /dev/null and b/mods/pipeworks/textures/pipeworks_yellow.png differ diff --git a/mods/pipeworks/todo/pressure_logic.txt b/mods/pipeworks/todo/pressure_logic.txt new file mode 100644 index 00000000..60884e1d --- /dev/null +++ b/mods/pipeworks/todo/pressure_logic.txt @@ -0,0 +1,33 @@ +-- (may not be possible) stop removing water nodes that were not placed by outputs when off +In non-finite mode, spigots and fountainheads will vanish water sources in their output positions, even if those output nodes did not place them there. +This is annoying though not game-breaking in non-finite mode, where water sources can at least be easily replenished. +Fixing this would require some kind of metadata marker on water nodes placed by spigots and fountains, such that only water sources placed while the device is "on" are removed when it is "off". +It is debateable whether existing water sources should be marked for removal when the device turns on again. + +-- Make spigots and fountainheads deactivate by placing a flowing water node +Currently, in non-finite mode, the spigots and fountainheads react to pressure dropping below threshold by deleting the water source they placed. +VanessaE would like this changed so that these nodes replace the water source with a flowing water source, such that it drains away at the same rate as surrounding water. +This should be a simple case of modifying the cleanup handler that is installed for these nodes by the helper that they use, to place flowing water instead of air in the situations where it would normally do so. + +-- Decorative grating functionality +The decorative grating block currently is just that - purely decorative, it serves no purpose. +VanessaE would like this to function as an output with the following properties: +* While on, tries to randomly place a water source in an adjacent node every ABM interval, preferring to place it downwards first. +* Even with multiple water source nodes placed, only drains 1 unit pressure per ABM interval in non-finite mode. Finite mode will cause it to drain 1 unit per water source node placed and simply stop placing sources when below threshold pressure, like spigots and fountainheads already do. +* When turning off in non-finite mode, for all neighbour nodes, replace the water sources with flowing water as discussed above, but *only* if those neighbouring sources do not have any water source neighbours of their own in turn - this will prevent the block from creating a "hole" in a uniform pool of water sources. + + + +-- Support for other fluids in pipes (Feature request/wish list) +Various sources from IRC and github issues have indicated that the ability to carry amounts of substance other than water through pipes would see uses appear for it if it were implemented (there does not appear to be anything trying to do so right now). +Extending the pressure mechanism to handle new fluids would be simple enough, it would just have to deal with more variables. +However, this feature raises the question of how to handle mixtures of fluids in pipes. + +Two possible solutions appear evident: ++ Don't mix at all. For each flowable registered, either a variant would be created for each supported liquid, or each node would declare which fluid it carries explicitly. Flowable nodes for different fluids would not interact with each other at all. + ++ Equalise "pressure" of multiple fluid variables in a similar manner to how the single water pressure value is currently balanced out, however this raises the issue of how to deal with mixtures - for instance, how is a spigot to function with a mixed liquid? does it simply refuse to function if it doesn't know how to deal with a certain mixture (as it can only output whole nodes)? likewise for certain mixtures in pipes, should it be allowed for lava and water for instance to mix like they don't interact at all? + +This mechanism also hints at a weakness of the pressure logic mechanism as it currently stands - namely that liquids are handled like gases and assumed to be compressible. + + diff --git a/mods/pipeworks/trashcan.lua b/mods/pipeworks/trashcan.lua new file mode 100644 index 00000000..c8ae9b2e --- /dev/null +++ b/mods/pipeworks/trashcan.lua @@ -0,0 +1,52 @@ +local S = minetest.get_translator("pipeworks") +minetest.register_node("pipeworks:trashcan", { + description = S("Trash Can"), + drawtype = "normal", + tiles = { + "pipeworks_trashcan_bottom.png", + "pipeworks_trashcan_bottom.png", + "pipeworks_trashcan_side.png", + "pipeworks_trashcan_side.png", + "pipeworks_trashcan_side.png", + "pipeworks_trashcan_side.png", + }, + groups = {snappy = 3, tubedevice = 1, tubedevice_receiver = 1, dig_generic = 4, axey=1, handy=1, pickaxey=1}, + is_ground_content = false, + _mcl_hardness=0.8, + tube = { + insert_object = function(pos, node, stack, direction) + return ItemStack("") + end, + connect_sides = {left = 1, right = 1, front = 1, back = 1, top = 1, bottom = 1}, + priority = 1, -- Lower than anything else + }, + on_construct = function(pos) + local meta = minetest.get_meta(pos) + local size = "10.2,9" + local list_background = "" + if minetest.get_modpath("i3") or minetest.get_modpath("mcl_formspec") then + list_background = "style_type[box;colors=#666]box[4.5,2;1,1;]" + end + meta:set_string("formspec", + "formspec_version[2]" .. + "size["..size.."]".. + pipeworks.fs_helpers.get_prepends(size) .. + "item_image[0.5,0.5;1,1;pipeworks:trashcan]".. + "label[1.5,1;"..S("Trash Can").."]".. + list_background.. + "list[context;trash;4.5,2;1,1;]".. + --"list[current_player;main;0,3;8,4;]" .. + pipeworks.fs_helpers.get_inv(4).. + "listring[context;trash]".. + "listring[current_player;main]" + ) + meta:set_string("infotext", S("Trash Can")) + meta:get_inventory():set_size("trash", 1) + end, + after_place_node = pipeworks.after_place, + after_dig_node = pipeworks.after_dig, + on_metadata_inventory_put = function(pos, listname, index, stack, player) + minetest.get_meta(pos):get_inventory():set_stack(listname, index, ItemStack("")) + end, +}) +pipeworks.ui_cat_tube_list[#pipeworks.ui_cat_tube_list+1] = "pipeworks:trashcan" diff --git a/mods/pipeworks/tubes/embedded_tube.lua b/mods/pipeworks/tubes/embedded_tube.lua new file mode 100644 index 00000000..0ca6e36d --- /dev/null +++ b/mods/pipeworks/tubes/embedded_tube.lua @@ -0,0 +1,69 @@ +local materials = xcompat.materials +local S = minetest.get_translator("pipeworks") + +local straight = function(pos, node, velocity, stack) return {velocity} end +local steel_tex = "[combine:16x16^[noalpha^[colorize:#D3D3D3" +if minetest.get_modpath("default") then steel_tex = "default_steel_block.png" end + +-- register an embedded tube +function pipeworks.register_embedded_tube(nodename, opts) + minetest.register_node(nodename, { + description = opts.description, + tiles = { + opts.base_texture, + opts.base_texture, + opts.base_texture, + opts.base_texture, + opts.base_texture .. "^pipeworks_tube_connection_metallic.png", + opts.base_texture .. "^pipeworks_tube_connection_metallic.png", + }, + paramtype = "light", + paramtype2 = "facedir", + groups = { + cracky = 1, + oddly_breakable_by_hand = 1, + tubedevice = 1, + dig_glass = 2, + pickaxey=1, + handy=1 + }, + is_ground_content = false, + _mcl_hardness = 0.8, + legacy_facedir_simple = true, + _sound_def = { + key = "node_sound_stone_defaults", + }, + tube = { + connect_sides = { + front = 1, + back = 1 + }, + priority = 50, + can_go = straight, + can_insert = function(pos, node, stack, direction) + local dir = minetest.facedir_to_dir(node.param2) + return vector.equals(dir, direction) or vector.equals(vector.multiply(dir, -1), direction) + end + }, + after_place_node = pipeworks.after_place, + after_dig_node = pipeworks.after_dig, + on_rotate = pipeworks.on_rotate, + }) + + minetest.register_craft( { + output = nodename .. " 1", + recipe = { + { opts.base_ingredient, opts.base_ingredient, opts.base_ingredient }, + { opts.base_ingredient, "pipeworks:tube_1", opts.base_ingredient }, + { opts.base_ingredient, opts.base_ingredient, opts.base_ingredient } + }, + }) + pipeworks.ui_cat_tube_list[#pipeworks.ui_cat_tube_list+1] = nodename +end + +-- steelblock embedded tube +pipeworks.register_embedded_tube("pipeworks:steel_block_embedded_tube", { + description = S("Airtight steelblock embedded tube"), + base_texture = steel_tex, + base_ingredient = materials.steel_ingot +}) diff --git a/mods/pipeworks/tubes/lua.lua b/mods/pipeworks/tubes/lua.lua new file mode 100644 index 00000000..7807b02b --- /dev/null +++ b/mods/pipeworks/tubes/lua.lua @@ -0,0 +1,1099 @@ +-- ______ +-- | +-- | +-- | __ ___ _ __ _ _ +-- | | | | | |\ | | |_| | | | | |_ |_| +-- |___| |______ |__| | \| | | \ |__| |_ |_ |_ |\ tube +-- | +-- | +-- + +-- Reference +-- ports = get_real_port_states(pos): gets if inputs are powered from outside +-- newport = merge_port_states(state1, state2): just does result = state1 or state2 for every port +-- set_port(pos, rule, state): activates/deactivates the mesecons according to the port states +-- set_port_states(pos, ports): Applies new port states to a Luacontroller at pos +-- run_inner(pos, code, event): runs code on the controller at pos and event +-- reset_formspec(pos, code, errmsg): installs new code and prints error messages, without resetting LCID +-- reset_meta(pos, code, errmsg): performs a software-reset, installs new code and prints error message +-- run(pos, event): a wrapper for run_inner which gets code & handles errors via reset_meta +-- resetn(pos): performs a hardware reset, turns off all ports +-- +-- The Sandbox +-- The whole code of the controller runs in a sandbox, +-- a very restricted environment. +-- Actually the only way to damage the server is to +-- use too much memory from the sandbox. +-- You can add more functions to the environment +-- (see where local env is defined) +-- Something nice to play is appending minetest.env to it. + +local BASENAME = "pipeworks:lua_tube" + +local rules = { + red = {x = -1, y = 0, z = 0, name = "red"}, + blue = {x = 1, y = 0, z = 0, name = "blue"}, + yellow = {x = 0, y = -1, z = 0, name = "yellow"}, + green = {x = 0, y = 1, z = 0, name = "green"}, + black = {x = 0, y = 0, z = -1, name = "black"}, + white = {x = 0, y = 0, z = 1, name = "white"}, +} + +local digiline_rules_luatube = { + {x=0, y=0, z=-1}, + {x=1, y=0, z=0}, + {x=-1, y=0, z=0}, + {x=0, y=0, z=1}, + {x=1, y=1, z=0}, + {x=1, y=-1, z=0}, + {x=-1, y=1, z=0}, + {x=-1, y=-1, z=0}, + {x=0, y=1, z=1}, + {x=0, y=-1, z=1}, + {x=0, y=1, z=-1}, + {x=0, y=-1, z=-1}, + -- vertical connectivity + {x=0, y=1, z=0}, + {x=0, y=-1, z=0}, +} + +------------------ +-- Action stuff -- +------------------ +-- These helpers are required to set the port states of the lua_tube + +local function update_real_port_states(pos, rule_name, new_state) + local meta = minetest.get_meta(pos) + if rule_name == nil then + meta:set_int("real_portstates", 1) + return + end + local n = meta:get_int("real_portstates") - 1 + local L = {} + for i = 1, 6 do + L[i] = n % 2 + n = math.floor(n / 2) + end + -- (0,0,-1) (0,-1,0) (-1,0,0) (1,0,0) (0,1,0) (0,0,1) + local pos_to_side = { 5, 3, 1, nil, 2, 4, 6 } + if rule_name.x == nil then + for _, rname in ipairs(rule_name) do + local port = pos_to_side[rname.x + (2 * rname.y) + (3 * rname.z) + 4] + L[port] = (new_state == "on") and 1 or 0 + end + else + local port = pos_to_side[rule_name.x + (2 * rule_name.y) + (3 * rule_name.z) + 4] + L[port] = (new_state == "on") and 1 or 0 + end + meta:set_int("real_portstates", + 1 + + 1 * L[1] + + 2 * L[2] + + 4 * L[3] + + 8 * L[4] + + 16 * L[5] + + 32 * L[6]) +end + + +local port_names = {"red", "blue", "yellow", "green", "black", "white"} + +local function get_real_port_states(pos) + -- Determine if ports are powered (by itself or from outside) + local meta = minetest.get_meta(pos) + local L = {} + local n = meta:get_int("real_portstates") - 1 + for _, name in ipairs(port_names) do + L[name] = ((n % 2) == 1) + n = math.floor(n / 2) + end + return L +end + + +local function merge_port_states(ports, vports) + return { + red = ports.red or vports.red, + blue = ports.blue or vports.blue, + yellow = ports.yellow or vports.yellow, + green = ports.green or vports.green, + black = ports.black or vports.black, + white = ports.white or vports.white, + } +end + +local function generate_name(ports) + local red = ports.red and 1 or 0 + local blue = ports.blue and 1 or 0 + local yellow = ports.yellow and 1 or 0 + local green = ports.green and 1 or 0 + local black = ports.black and 1 or 0 + local white = ports.white and 1 or 0 + return BASENAME..white..black..green..yellow..blue..red +end + + +local function set_port(pos, rule, state) + if state then + mesecon.receptor_on(pos, {rule}) + else + mesecon.receptor_off(pos, {rule}) + end +end + + +local function clean_port_states(ports) + ports.red = ports.red and true or false + ports.blue = ports.blue and true or false + ports.yellow = ports.yellow and true or false + ports.green = ports.green and true or false + ports.black = ports.black and true or false + ports.white = ports.white and true or false +end + + +local function set_port_states(pos, ports) + local node = minetest.get_node(pos) + local name = node.name + clean_port_states(ports) + local vports = minetest.registered_nodes[name].virtual_portstates + local new_name = generate_name(ports) + + if name ~= new_name and vports then + -- Problem: + -- We need to place the new node first so that when turning + -- off some port, it won't stay on because the rules indicate + -- there is an onstate output port there. + -- When turning the output off then, it will however cause feedback + -- so that the lua_tube will receive an "off" event by turning + -- its output off. + -- Solution / Workaround: + -- Remember which output was turned off and ignore next "off" event. + local meta = minetest.get_meta(pos) + local ign = minetest.deserialize(meta:get_string("ignore_offevents"), true) or {} + if ports.red and not vports.red and not mesecon.is_powered(pos, rules.red) then ign.red = true end + if ports.blue and not vports.blue and not mesecon.is_powered(pos, rules.blue) then ign.blue = true end + if ports.yellow and not vports.yellow and not mesecon.is_powered(pos, rules.yellow) then ign.yellow = true end + if ports.green and not vports.green and not mesecon.is_powered(pos, rules.green) then ign.green = true end + if ports.black and not vports.black and not mesecon.is_powered(pos, rules.black) then ign.black = true end + if ports.white and not vports.white and not mesecon.is_powered(pos, rules.white) then ign.white = true end + meta:set_string("ignore_offevents", minetest.serialize(ign)) + + minetest.swap_node(pos, {name = new_name, param2 = node.param2}) + + if ports.red ~= vports.red then set_port(pos, rules.red, ports.red) end + if ports.blue ~= vports.blue then set_port(pos, rules.blue, ports.blue) end + if ports.yellow ~= vports.yellow then set_port(pos, rules.yellow, ports.yellow) end + if ports.green ~= vports.green then set_port(pos, rules.green, ports.green) end + if ports.black ~= vports.black then set_port(pos, rules.black, ports.black) end + if ports.white ~= vports.white then set_port(pos, rules.white, ports.white) end + end +end + + +----------------- +-- Overheating -- +----------------- +local function burn_controller(pos) + local node = minetest.get_node(pos) + node.name = BASENAME.."_burnt" + minetest.swap_node(pos, node) + minetest.get_meta(pos):set_string("lc_memory", ""); + -- Wait for pending operations + minetest.after(0.2, mesecon.receptor_off, pos, mesecon.rules.flat) +end + +local function overheat(pos, meta) + if mesecon.do_overheat(pos) then -- If too hot + burn_controller(pos) + return true + end +end + +------------------------ +-- Ignored off events -- +------------------------ + +local function ignore_event(event, meta) + if event.type ~= "off" then return false end + local ignore_offevents = minetest.deserialize(meta:get_string("ignore_offevents"), true) or {} + if ignore_offevents[event.pin.name] then + ignore_offevents[event.pin.name] = nil + meta:set_string("ignore_offevents", minetest.serialize(ignore_offevents)) + return true + end +end + +------------------------- +-- Parsing and running -- +------------------------- + +local function safe_print(param) + if (minetest.settings:get("pipeworks_lua_tube_print_behavior") or "log") == "log" then + local string_meta = getmetatable("") + local sandbox = string_meta.__index + string_meta.__index = string -- Leave string sandbox temporarily + minetest.log("action", string.format("[pipeworks.tubes.lua] print(%s)", dump(param))) + string_meta.__index = sandbox -- Restore string sandbox + end +end + +local function safe_date() + return(os.date("*t",os.time())) +end + +-- string.rep(str, n) with a high value for n can be used to DoS +-- the server. Therefore, limit max. length of generated string. +local function safe_string_rep(str, n) + if #str * n > mesecon.setting("luacontroller_string_rep_max", 64000) then + debug.sethook() -- Clear hook + error("string.rep: string length overflow", 2) + end + + return string.rep(str, n) +end + +-- string.find with a pattern can be used to DoS the server. +-- Therefore, limit string.find to patternless matching. +local function safe_string_find(...) + if (select(4, ...)) ~= true then + debug.sethook() -- Clear hook + error("string.find: 'plain' (fourth parameter) must always be true in a lua controlled tube") + end + + return string.find(...) +end + +local function remove_functions(x) + local tp = type(x) + if tp == "function" then + return nil + end + + -- Make sure to not serialize the same table multiple times, otherwise + -- writing mem.test = mem in the lua controlled tube will lead to infinite recursion + local seen = {} + + local function rfuncs(x) + if x == nil then return end + if seen[x] then return end + seen[x] = true + if type(x) ~= "table" then return end + + for key, value in pairs(x) do + if type(key) == "function" or type(value) == "function" then + x[key] = nil + else + if type(key) == "table" then + rfuncs(key) + end + if type(value) == "table" then + rfuncs(value) + end + end + end + end + + rfuncs(x) + + return x +end + +-- The setting affects API so is not intended to be changeable at runtime +local get_interrupt +if mesecon.setting("luacontroller_lightweight_interrupts", false) then + -- use node timer + get_interrupt = function(pos, itbl, send_warning) + return (function(time, iid) + if type(time) ~= "number" then error("Delay must be a number") end + if iid ~= nil then send_warning("Interrupt IDs are disabled on this server") end + table.insert(itbl, function() minetest.get_node_timer(pos):start(time) end) + end) + end +else + -- use global action queue + -- itbl: Flat table of functions to run after sandbox cleanup, used to prevent various security hazards + get_interrupt = function(pos, itbl, send_warning) + -- iid = interrupt id + local function interrupt(time, iid) + -- NOTE: This runs within string metatable sandbox, so don't *rely* on anything of the form (""):y + -- Hence the values get moved out. Should take less time than original, so totally compatible + if type(time) ~= "number" then error("Delay must be a number") end + table.insert(itbl, function () + -- Outside string metatable sandbox, can safely run this now + local luac_id = minetest.get_meta(pos):get_int("luac_id") + -- Check if IID is dodgy, so you can't use interrupts to store an infinite amount of data. + -- Note that this is safe from alter-after-free because this code gets run after the sandbox has ended. + -- This runs outside of the timer and *shouldn't* harm perf. unless dodgy data is being sent in the first place + iid = remove_functions(iid) + local msg_ser = minetest.serialize(iid) + if #msg_ser <= mesecon.setting("luacontroller_interruptid_maxlen", 256) then + mesecon.queue:add_action(pos, "pipeworks:lc_tube_interrupt", {luac_id, iid}, time, iid, 1) + else + send_warning("An interrupt ID was too large!") + end + end) + end + return interrupt + end +end + +-- Given a message object passed to digiline_send, clean it up into a form +-- which is safe to transmit over the network and compute its "cost" (a very +-- rough estimate of its memory usage). +-- +-- The cleaning comprises the following: +-- 1. Functions (and userdata, though user scripts ought not to get hold of +-- those in the first place) are removed, because they break the model of +-- Digilines as a network that carries basic data, and they could exfiltrate +-- references to mutable objects from one Luacontroller to another, allowing +-- inappropriate high-bandwidth, no-wires communication. +-- 2. Tables are duplicated because, being mutable, they could otherwise be +-- modified after the send is complete in order to change what data arrives +-- at the recipient, perhaps in violation of the previous cleaning rule or +-- in violation of the message size limit. +-- +-- The cost indication is only approximate; it’s not a perfect measurement of +-- the number of bytes of memory used by the message object. +-- +-- Parameters: +-- msg -- the message to clean +-- back_references -- for internal use only; do not provide +-- +-- Returns: +-- 1. The cleaned object. +-- 2. The approximate cost of the object. +local function clean_and_weigh_digiline_message(msg, back_references) + local t = type(msg) + if t == "string" then + -- Strings are immutable so can be passed by reference, and cost their + -- length plus the size of the Lua object header (24 bytes on a 64-bit + -- platform) plus one byte for the NUL terminator. + return msg, #msg + 25 + elseif t == "number" then + -- Numbers are passed by value so need not be touched, and cost 8 bytes + -- as all numbers in Lua are doubles. NaN values are removed. + if msg ~= msg then + return nil, 0 + end + return msg, 8 + elseif t == "boolean" then + -- Booleans are passed by value so need not be touched, and cost 1 + -- byte. + return msg, 1 + elseif t == "table" then + -- Tables are duplicated. Check if this table has been seen before + -- (self-referential or shared table); if so, reuse the cleaned value + -- of the previous occurrence, maintaining table topology and avoiding + -- infinite recursion, and charge zero bytes for this as the object has + -- already been counted. + back_references = back_references or {} + local bref = back_references[msg] + if bref then + return bref, 0 + end + -- Construct a new table by cleaning all the keys and values and adding + -- up their costs, plus 8 bytes as a rough estimate of table overhead. + local cost = 8 + local ret = {} + back_references[msg] = ret + for k, v in pairs(msg) do + local k_cost, v_cost + k, k_cost = clean_and_weigh_digiline_message(k, back_references) + v, v_cost = clean_and_weigh_digiline_message(v, back_references) + if k ~= nil and v ~= nil then + -- Only include an element if its key and value are of legal + -- types. + ret[k] = v + end + -- If we only counted the cost of a table element when we actually + -- used it, we would be vulnerable to the following attack: + -- 1. Construct a huge table (too large to pass the cost limit). + -- 2. Insert it somewhere in a table, with a function as a key. + -- 3. Insert it somewhere in another table, with a number as a key. + -- 4. The first occurrence doesn’t pay the cost because functions + -- are stripped and therefore the element is dropped. + -- 5. The second occurrence doesn’t pay the cost because it’s in + -- back_references. + -- By counting the costs regardless of whether the objects will be + -- included, we avoid this attack; it may overestimate the cost of + -- some messages, but only those that won’t be delivered intact + -- anyway because they contain illegal object types. + cost = cost + k_cost + v_cost + end + return ret, cost + else + return nil, 0 + end +end + + +-- itbl: Flat table of functions to run after sandbox cleanup, used to prevent various security hazards +local function get_digiline_send(pos, itbl, send_warning) + if not minetest.get_modpath("digilines") then return end + local chan_maxlen = mesecon.setting("luacontroller_digiline_channel_maxlen", 256) + local maxlen = mesecon.setting("luacontroller_digiline_maxlen", 50000) + return function(channel, msg) + -- NOTE: This runs within string metatable sandbox, so don't *rely* on anything of the form (""):y + -- or via anything that could. + -- Make sure channel is string, number or boolean + if type(channel) == "string" then + if #channel > chan_maxlen then + send_warning("Channel string too long.") + return false + end + elseif (type(channel) ~= "string" and type(channel) ~= "number" and type(channel) ~= "boolean") then + send_warning("Channel must be string, number or boolean.") + return false + end + + local msg_cost + msg, msg_cost = clean_and_weigh_digiline_message(msg) + if msg == nil or msg_cost > maxlen then + send_warning("Message was too complex, or contained invalid data.") + return false + end + + table.insert(itbl, function () + -- Runs outside of string metatable sandbox + local luac_id = minetest.get_meta(pos):get_int("luac_id") + mesecon.queue:add_action(pos, "pipeworks:lt_digiline_relay", {channel, luac_id, msg}) + end) + return true + end +end + +local safe_globals = { + -- Don't add pcall/xpcall unless willing to deal with the consequences (unless very careful, incredibly likely to allow killing server indirectly) + "assert", "error", "ipairs", "next", "pairs", "select", + "tonumber", "tostring", "type", "unpack", "_VERSION" +} + +local function create_environment(pos, mem, event, itbl, send_warning) + -- Make sure the tube hasn't broken. + local vports = minetest.registered_nodes[minetest.get_node(pos).name].virtual_portstates + if not vports then return {} end + + -- Gather variables for the environment + local vports_copy = {} + for k, v in pairs(vports) do vports_copy[k] = v end + local rports = get_real_port_states(pos) + + -- Create new library tables on each call to prevent one Luacontroller + -- from breaking a library and messing up other Luacontrollers. + local env = { + pin = merge_port_states(vports, rports), + port = vports_copy, + event = event, + mem = mem, + heat = mesecon.get_heat(pos), + heat_max = mesecon.setting("overheat_max", 20), + print = safe_print, + interrupt = get_interrupt(pos, itbl, send_warning), + digiline_send = get_digiline_send(pos, itbl, send_warning), + string = { + byte = string.byte, + char = string.char, + format = string.format, + len = string.len, + lower = string.lower, + upper = string.upper, + rep = safe_string_rep, + reverse = string.reverse, + sub = string.sub, + find = safe_string_find, + }, + math = { + abs = math.abs, + acos = math.acos, + asin = math.asin, + atan = math.atan, + atan2 = math.atan2, + ceil = math.ceil, + cos = math.cos, + cosh = math.cosh, + deg = math.deg, + exp = math.exp, + floor = math.floor, + fmod = math.fmod, + frexp = math.frexp, + huge = math.huge, + ldexp = math.ldexp, + log = math.log, + log10 = math.log10, + max = math.max, + min = math.min, + modf = math.modf, + pi = math.pi, + pow = math.pow, + rad = math.rad, + random = math.random, + sin = math.sin, + sinh = math.sinh, + sqrt = math.sqrt, + tan = math.tan, + tanh = math.tanh, + }, + table = { + concat = table.concat, + insert = table.insert, + maxn = table.maxn, + remove = table.remove, + sort = table.sort, + }, + os = { + clock = os.clock, + difftime = os.difftime, + time = os.time, + datetable = safe_date, + }, + } + env._G = env + + for _, name in pairs(safe_globals) do + env[name] = _G[name] + end + + return env +end + + +local function timeout() + debug.sethook() -- Clear hook + error("Code timed out!", 2) +end + + +local function create_sandbox(code, env) + if code:byte(1) == 27 then + return nil, "Binary code prohibited." + end + local f, msg = loadstring(code) + if not f then return nil, msg end + setfenv(f, env) + + -- Turn off JIT optimization for user code so that count + -- events are generated when adding debug hooks + if rawget(_G, "jit") then + jit.off(f, true) + end + + local maxevents = mesecon.setting("luacontroller_maxevents", 10000) + return function(...) + -- NOTE: This runs within string metatable sandbox, so the setting's been moved out for safety + -- Use instruction counter to stop execution + -- after luacontroller_maxevents + debug.sethook(timeout, "", maxevents) + local ok, ret = pcall(f, ...) + debug.sethook() -- Clear hook + if not ok then error(ret, 0) end + return ret + end +end + + +local function load_memory(meta) + return minetest.deserialize(meta:get_string("lc_memory"), true) or {} +end + + +local function save_memory(pos, meta, mem) + local memstring = minetest.serialize(remove_functions(mem)) + local memsize_max = mesecon.setting("luacontroller_memsize", 100000) + + if (#memstring <= memsize_max) then + meta:set_string("lc_memory", memstring) + meta:mark_as_private("lc_memory") + else + minetest.log("info", "lua_tube memory overflow. "..memsize_max.." bytes available, " + ..#memstring.." required. Controller overheats.") + burn_controller(pos) + end +end + +-- Returns success (boolean), errmsg (string), retval(any, return value of the user supplied code) +-- run (as opposed to run_inner) is responsible for setting up meta according to this output +local function run_inner(pos, code, event) + local meta = minetest.get_meta(pos) + -- Note: These return success, presumably to avoid changing LC ID. + if overheat(pos) then return true, "", nil end + if ignore_event(event, meta) then return true, "", nil end + + -- Load code & mem from meta + local mem = load_memory(meta) + local code = meta:get_string("code") + + -- 'Last warning' label. + local warning = "" + local function send_warning(str) + warning = "Warning: " .. str + end + + -- Create environment + local itbl = {} + local env = create_environment(pos, mem, event, itbl, send_warning) + + -- Create the sandbox and execute code + local f, msg = create_sandbox(code, env) + if not f then return false, msg, nil end + -- Start string true sandboxing + local onetruestring = getmetatable("") + -- If a string sandbox is already up yet inconsistent, something is very wrong + assert(onetruestring.__index == string) + onetruestring.__index = env.string + local success, msg = pcall(f) + onetruestring.__index = string + -- End string true sandboxing + if not success then return false, msg, nil end + if type(env.port) ~= "table" then + return false, "Ports set are invalid.", nil + end + + -- Actually set the ports + set_port_states(pos, env.port) + + -- Save memory. This may burn the luacontroller if a memory overflow occurs. + save_memory(pos, meta, env.mem) + + -- Execute deferred tasks + for _, v in ipairs(itbl) do + local failure = v() + if failure then + return false, failure, nil + end + end + return true, warning, msg +end + +local function reset_formspec(meta, code, errmsg) + meta:set_string("code", code) + meta:mark_as_private("code") + code = minetest.formspec_escape(code or "") + errmsg = minetest.formspec_escape(tostring(errmsg or "")) + meta:set_string("formspec", "size[12,10]" + .."style_type[label,textarea;font=mono]" + .."background[-0.2,-0.25;12.4,10.75;jeija_luac_background.png]" + .."label[0.1,8.3;"..errmsg.."]" + .."textarea[0.2,0.2;12.2,9.5;code;;"..code.."]" + .."image_button[4.75,8.75;2.5,1;jeija_luac_runbutton.png;program;]" + .."image_button_exit[11.72,-0.25;0.425,0.4;jeija_close_window.png;exit;]" + ) +end + +local function reset_meta(pos, code, errmsg) + local meta = minetest.get_meta(pos) + reset_formspec(meta, code, errmsg) + meta:set_int("luac_id", math.random(1, 65535)) +end + +-- Wraps run_inner with LC-reset-on-error +local function run(pos, event) + local meta = minetest.get_meta(pos) + local code = meta:get_string("code") + local ok, errmsg, retval = run_inner(pos, code, event) + if not ok then + reset_meta(pos, code, errmsg) + else + reset_formspec(meta, code, errmsg) + end + return ok, errmsg, retval +end + +local function reset(pos) + set_port_states(pos, {red = false, blue = false, yellow = false, + green = false, black = false, white = false}) +end + +local function node_timer(pos) + if minetest.registered_nodes[minetest.get_node(pos).name].is_burnt then + return false + end + run(pos, {type="interrupt"}) + return false +end + +----------------------- +-- A.Queue callbacks -- +----------------------- + +mesecon.queue:add_function("pipeworks:lc_tube_interrupt", function (pos, luac_id, iid) + -- There is no lua_tube anymore / it has been reprogrammed / replaced / burnt + if (minetest.get_meta(pos):get_int("luac_id") ~= luac_id) then return end + if (minetest.registered_nodes[minetest.get_node(pos).name].is_burnt) then return end + run(pos, {type="interrupt", iid = iid}) +end) + +mesecon.queue:add_function("pipeworks:lt_digiline_relay", function (pos, channel, luac_id, msg) + if not digilines then return end + -- This check is only really necessary because in case of server crash, old actions can be thrown into the future + if (minetest.get_meta(pos):get_int("luac_id") ~= luac_id) then return end + if (minetest.registered_nodes[minetest.get_node(pos).name].is_burnt) then return end + -- The actual work + digilines.receptor_send(pos, digiline_rules_luatube, channel, msg) +end) + +----------------------- +-- Node Registration -- +----------------------- + +local output_rules = {} +local input_rules = {} + +local node_box = { + type = "fixed", + fixed = { + pipeworks.tube_leftstub[1], -- tube segment against -X face + pipeworks.tube_rightstub[1], -- tube segment against +X face + pipeworks.tube_bottomstub[1], -- tube segment against -Y face + pipeworks.tube_topstub[1], -- tube segment against +Y face + pipeworks.tube_frontstub[1], -- tube segment against -Z face + pipeworks.tube_backstub[1], -- tube segment against +Z face + } +} + +local selection_box = { + type = "fixed", + fixed = pipeworks.tube_selectboxes, +} + +local digiline = { + receptor = {}, + effector = { + action = function(pos, node, channel, msg) + msg = clean_and_weigh_digiline_message(msg) + run(pos, {type = "digiline", channel = channel, msg = msg}) + end + }, + wire = { + rules = pipeworks.digilines_rules + }, +} + +local function get_program(pos) + local meta = minetest.get_meta(pos) + return meta:get_string("code") +end + +local function set_program(pos, code) + reset(pos) + reset_meta(pos, code) + return run(pos, {type="program"}) +end + +local function on_receive_fields(pos, form_name, fields, sender) + if not fields.program then + return + end + local name = sender:get_player_name() + if minetest.is_protected(pos, name) and not minetest.check_player_privs(name, {protection_bypass=true}) then + minetest.record_protection_violation(pos, name) + return + end + local ok, err = set_program(pos, fields.code) + if not ok then + -- it's not an error from the server perspective + minetest.log("action", "Lua controller programming error: " .. tostring(err)) + end +end + +local function go_back(velocity) + local adjlist={{x=0,y=0,z=1},{x=0,y=0,z=-1},{x=0,y=1,z=0},{x=0,y=-1,z=0},{x=1,y=0,z=0},{x=-1,y=0,z=0}} + local speed = math.abs(velocity.x + velocity.y + velocity.z) + if speed == 0 then + speed = 1 + end + local vel = {x = velocity.x/speed, y = velocity.y/speed, z = velocity.z/speed,speed=speed} + if speed >= 4.1 then + speed = 4 + elseif speed >= 1.1 then + speed = speed - 0.1 + else + speed = 1 + end + vel.speed = speed + return pipeworks.notvel(adjlist, vel) +end + +local tiles_base = { + "pipeworks_mese_tube_plain_4.png", "pipeworks_mese_tube_plain_3.png", + "pipeworks_mese_tube_plain_2.png", "pipeworks_mese_tube_plain_1.png", + "pipeworks_mese_tube_plain_6.png", "pipeworks_mese_tube_plain_5.png"} + +local tiles_on_off = { + R__0 = "^pipeworks_lua_tube_port_%s.png", + R_90 = "^(pipeworks_lua_tube_port_%s.png^[transformR90)", + R180 = "^(pipeworks_lua_tube_port_%s.png^[transformR180)", + R270 = "^(pipeworks_lua_tube_port_%s.png^[transformR270)" +} + +local texture_alpha_mode = minetest.features.use_texture_alpha_string_modes + and "clip" or true + +for red = 0, 1 do -- 0 = off 1 = on +for blue = 0, 1 do +for yellow = 0, 1 do +for green = 0, 1 do +for black = 0, 1 do +for white = 0, 1 do + local cid = white..black..green..yellow..blue..red + local node_name = BASENAME..cid + + local tiles = table.copy(tiles_base) + -- Red + tiles[1] = tiles[1]..tiles_on_off.R_90:format(red == 1 and "on" or "off"); + tiles[2] = tiles[2]..tiles_on_off.R_90:format(red == 1 and "on" or "off"); + tiles[5] = tiles[5]..tiles_on_off.R270:format(red == 1 and "on" or "off"); + tiles[6] = tiles[6]..tiles_on_off.R_90:format(red == 1 and "on" or "off"); + -- Blue + tiles[1] = tiles[1]..tiles_on_off.R270:format(blue == 1 and "on" or "off"); + tiles[2] = tiles[2]..tiles_on_off.R270:format(blue == 1 and "on" or "off"); + tiles[5] = tiles[5]..tiles_on_off.R_90:format(blue == 1 and "on" or "off"); + tiles[6] = tiles[6]..tiles_on_off.R270:format(blue == 1 and "on" or "off"); + -- Yellow + tiles[1] = tiles[1]..tiles_on_off.R180:format(yellow == 1 and "on" or "off"); + tiles[2] = tiles[2]..tiles_on_off.R180:format(yellow == 1 and "on" or "off"); + tiles[5] = tiles[5]..tiles_on_off.R180:format(yellow == 1 and "on" or "off"); + tiles[6] = tiles[6]..tiles_on_off.R180:format(yellow == 1 and "on" or "off"); + -- Green + tiles[3] = tiles[3]..tiles_on_off.R__0:format(green == 1 and "on" or "off"); + tiles[4] = tiles[4]..tiles_on_off.R__0:format(green == 1 and "on" or "off"); + tiles[5] = tiles[5]..tiles_on_off.R__0:format(green == 1 and "on" or "off"); + tiles[6] = tiles[6]..tiles_on_off.R__0:format(green == 1 and "on" or "off"); + -- Black + tiles[1] = tiles[1]..tiles_on_off.R180:format(black == 1 and "on" or "off"); + tiles[2] = tiles[2]..tiles_on_off.R__0:format(black == 1 and "on" or "off"); + tiles[3] = tiles[3]..tiles_on_off.R_90:format(black == 1 and "on" or "off"); + tiles[4] = tiles[4]..tiles_on_off.R270:format(black == 1 and "on" or "off"); + -- White + tiles[1] = tiles[1]..tiles_on_off.R__0:format(white == 1 and "on" or "off"); + tiles[2] = tiles[2]..tiles_on_off.R180:format(white == 1 and "on" or "off"); + tiles[3] = tiles[3]..tiles_on_off.R270:format(white == 1 and "on" or "off"); + tiles[4] = tiles[4]..tiles_on_off.R_90:format(white == 1 and "on" or "off"); + + local groups = {snappy = 3, tube = 1, tubedevice = 1, overheat = 1, dig_generic = 4, axey=1, handy=1, pickaxey=1} + if red + blue + yellow + green + black + white ~= 0 then + groups.not_in_creative_inventory = 1 + end + + output_rules[cid] = {} + input_rules[cid] = {} + if red == 1 then table.insert(output_rules[cid], rules.red) end + if blue == 1 then table.insert(output_rules[cid], rules.blue) end + if yellow == 1 then table.insert(output_rules[cid], rules.yellow) end + if green == 1 then table.insert(output_rules[cid], rules.green) end + if black == 1 then table.insert(output_rules[cid], rules.black) end + if white == 1 then table.insert(output_rules[cid], rules.white) end + + if red == 0 then table.insert( input_rules[cid], rules.red) end + if blue == 0 then table.insert( input_rules[cid], rules.blue) end + if yellow == 0 then table.insert( input_rules[cid], rules.yellow) end + if green == 0 then table.insert( input_rules[cid], rules.green) end + if black == 0 then table.insert( input_rules[cid], rules.black) end + if white == 0 then table.insert( input_rules[cid], rules.white) end + + local mesecons = { + effector = { + rules = input_rules[cid], + action_change = function (pos, _, rule_name, new_state) + update_real_port_states(pos, rule_name, new_state) + run(pos, {type=new_state, pin=rule_name}) + end, + }, + receptor = { + state = mesecon.state.on, + rules = output_rules[cid] + }, + luacontroller = { + get_program = get_program, + set_program = set_program, + }, + } + + minetest.register_node(node_name, { + description = "Lua controlled Tube", + drawtype = "nodebox", + tiles = tiles, + use_texture_alpha = texture_alpha_mode, + paramtype = "light", + is_ground_content = false, + groups = groups, + _mcl_hardness=0.8, + drop = BASENAME.."000000", + sunlight_propagates = true, + selection_box = selection_box, + node_box = node_box, + on_construct = reset_meta, + on_receive_fields = on_receive_fields, + _sound_def = { + key = "node_sound_wood_defaults", + }, + mesecons = mesecons, + digilines = digiline, + -- Virtual portstates are the ports that + -- the node shows as powered up (light up). + virtual_portstates = { + red = red == 1, + blue = blue == 1, + yellow = yellow == 1, + green = green == 1, + black = black == 1, + white = white == 1, + }, + after_dig_node = function(pos, node) + mesecon.do_cooldown(pos) + mesecon.receptor_off(pos, output_rules) + pipeworks.after_dig(pos, node) + end, + is_luacontroller = true, + on_timer = node_timer, + tubelike = 1, + tube = { + connect_sides = {front = 1, back = 1, left = 1, right = 1, top = 1, bottom = 1}, + priority = 50, + can_go = function(pos, node, velocity, stack, tags) + local src = {name = nil} + -- add color of the incoming tube explicitly; referring to rules, in case they change later + for _, rule in pairs(rules) do + if (-velocity.x == rule.x and -velocity.y == rule.y and -velocity.z == rule.z) then + src.name = rule.name + break + end + end + local succ, _, msg = run(pos, { + type = "item", + pin = src, + itemstring = stack:to_string(), + item = stack:to_table(), + velocity = velocity, + tags = table.copy(tags), + side = src.name, + }) + if not succ then + return go_back(velocity) + end + if type(msg) == "string" then + local side = rules[msg] + return side and {side} or go_back(velocity) + elseif type(msg) == "table" then + if pipeworks.enable_item_tags then + local new_tags + if type(msg.tags) == "table" or type(msg.tags) == "string" then + new_tags = pipeworks.sanitize_tags(msg.tags) + elseif type(msg.tag) == "string" then + new_tags = pipeworks.sanitize_tags({msg.tag}) + end + if new_tags then + for i=1, math.max(#tags, #new_tags) do + tags[i] = new_tags[i] + end + end + end + local side = rules[msg.side] + return side and {side} or go_back(velocity) + end + return go_back(velocity) + end, + }, + after_place_node = pipeworks.after_place, + on_blast = function(pos, intensity) + if not intensity or intensity > 1 + 3^0.5 then + minetest.remove_node(pos) + return + end + minetest.swap_node(pos, {name = "pipeworks:broken_tube_1"}) + pipeworks.scan_for_tube_objects(pos) + end, + }) +end +end +end +end +end +end + +pipeworks.ui_cat_tube_list[#pipeworks.ui_cat_tube_list+1] = BASENAME.."000000" + +------------------------------------ +-- Overheated Lua controlled Tube -- +------------------------------------ + +local tiles_burnt = table.copy(tiles_base) +tiles_burnt[1] = tiles_burnt[1].."^(pipeworks_lua_tube_port_burnt.png^[transformR90)" +tiles_burnt[2] = tiles_burnt[2].."^(pipeworks_lua_tube_port_burnt.png^[transformR90)" +tiles_burnt[5] = tiles_burnt[5].."^(pipeworks_lua_tube_port_burnt.png^[transformR270)" +tiles_burnt[6] = tiles_burnt[6].."^(pipeworks_lua_tube_port_burnt.png^[transformR90)" +tiles_burnt[1] = tiles_burnt[1].."^(pipeworks_lua_tube_port_burnt.png^[transformR270)" +tiles_burnt[2] = tiles_burnt[2].."^(pipeworks_lua_tube_port_burnt.png^[transformR270)" +tiles_burnt[5] = tiles_burnt[5].."^(pipeworks_lua_tube_port_burnt.png^[transformR90)" +tiles_burnt[6] = tiles_burnt[6].."^(pipeworks_lua_tube_port_burnt.png^[transformR270)" +tiles_burnt[3] = tiles_burnt[3].."^(pipeworks_lua_tube_port_burnt.png^[transformR180)" +tiles_burnt[4] = tiles_burnt[4].."^(pipeworks_lua_tube_port_burnt.png^[transformR180)" +tiles_burnt[5] = tiles_burnt[5].."^(pipeworks_lua_tube_port_burnt.png^[transformR180)" +tiles_burnt[6] = tiles_burnt[6].."^(pipeworks_lua_tube_port_burnt.png^[transformR180)" +tiles_burnt[3] = tiles_burnt[3].."^pipeworks_lua_tube_port_burnt.png" +tiles_burnt[4] = tiles_burnt[4].."^pipeworks_lua_tube_port_burnt.png" +tiles_burnt[5] = tiles_burnt[5].."^pipeworks_lua_tube_port_burnt.png" +tiles_burnt[6] = tiles_burnt[6].."^pipeworks_lua_tube_port_burnt.png" +tiles_burnt[1] = tiles_burnt[1].."^(pipeworks_lua_tube_port_burnt.png^[transformR180)" +tiles_burnt[2] = tiles_burnt[2].."^pipeworks_lua_tube_port_burnt.png" +tiles_burnt[3] = tiles_burnt[3].."^(pipeworks_lua_tube_port_burnt.png^[transformR90)" +tiles_burnt[4] = tiles_burnt[4].."^(pipeworks_lua_tube_port_burnt.png^[transformR270)" +tiles_burnt[1] = tiles_burnt[1].."^pipeworks_lua_tube_port_burnt.png" +tiles_burnt[2] = tiles_burnt[2].."^(pipeworks_lua_tube_port_burnt.png^[transformR180)" +tiles_burnt[3] = tiles_burnt[3].."^(pipeworks_lua_tube_port_burnt.png^[transformR270)" +tiles_burnt[4] = tiles_burnt[4].."^(pipeworks_lua_tube_port_burnt.png^[transformR90)" + +minetest.register_node(BASENAME .. "_burnt", { + drawtype = "nodebox", + tiles = tiles_burnt, + use_texture_alpha = texture_alpha_mode, + is_burnt = true, + paramtype = "light", + is_ground_content = false, + groups = {snappy = 3, tube = 1, tubedevice = 1, not_in_creative_inventory=1, dig_generic = 4, axey=1, handy=1, pickaxey=1}, + _mcl_hardness=0.8, + drop = BASENAME.."000000", + sunlight_propagates = true, + selection_box = selection_box, + node_box = node_box, + on_construct = reset_meta, + on_receive_fields = on_receive_fields, + _sound_def = { + key = "node_sound_wood_defaults", + }, + virtual_portstates = {red = false, blue = false, yellow = false, + green = false, black = false, white = false}, + mesecons = { + effector = { + rules = mesecon.rules.alldirs, + action_change = function(pos, _, rule_name, new_state) + update_real_port_states(pos, rule_name, new_state) + end, + }, + }, + tubelike = 1, + tube = { + connect_sides = {front = 1, back = 1, left = 1, right = 1, top = 1, bottom = 1}, + priority = 50, + }, + after_place_node = pipeworks.after_place, + after_dig_node = pipeworks.after_dig, + on_blast = function(pos, intensity) + if not intensity or intensity > 1 + 3^0.5 then + minetest.remove_node(pos) + return + end + minetest.swap_node(pos, {name = "pipeworks:broken_tube_1"}) + pipeworks.scan_for_tube_objects(pos) + end, +}) + +------------------------ +-- Craft Registration -- +------------------------ + +minetest.register_craft({ + type = "shapeless", + output = BASENAME.."000000", + recipe = {"pipeworks:mese_tube_000000", "mesecons_luacontroller:luacontroller0000"}, +}) diff --git a/mods/pipeworks/tubes/pane_embedded_tube.lua b/mods/pipeworks/tubes/pane_embedded_tube.lua new file mode 100644 index 00000000..5d780169 --- /dev/null +++ b/mods/pipeworks/tubes/pane_embedded_tube.lua @@ -0,0 +1,53 @@ +local S = minetest.get_translator("pipeworks") + +local straight = function(pos, node, velocity, stack) return {velocity} end + +local pane_box = { + type = "fixed", + fixed = { + { -9/64, -9/64, -8/16, 9/64, 9/64, 8/16 }, -- tube + { -8/16, -8/16, -1/16, 8/16, 8/16, 1/16 } -- pane + } +} + +local texture_alpha_mode = minetest.features.use_texture_alpha_string_modes + and "clip" or true + +minetest.register_node("pipeworks:steel_pane_embedded_tube", { + drawtype = "nodebox", + description = S("Airtight panel embedded tube"), + tiles = { + pipeworks.make_tube_tile("pipeworks_pane_embedded_tube_sides.png^[transformR90"), + pipeworks.make_tube_tile("pipeworks_pane_embedded_tube_sides.png^[transformR90"), + pipeworks.make_tube_tile("pipeworks_pane_embedded_tube_sides.png"), + pipeworks.make_tube_tile("pipeworks_pane_embedded_tube_sides.png"), + pipeworks.make_tube_tile("pipeworks_pane_embedded_tube_ends.png"), + pipeworks.make_tube_tile("pipeworks_pane_embedded_tube_ends.png"), + }, + use_texture_alpha = texture_alpha_mode, + node_box = pane_box, + selection_box = pane_box, + collision_box = pane_box, + paramtype = "light", + paramtype2 = "facedir", + groups = {cracky=1, oddly_breakable_by_hand = 1, tubedevice = 1, tube = 1, dig_glass = 2, pickaxey=1, handy=1}, + is_ground_content = false, + _mcl_hardness=0.8, + legacy_facedir_simple = true, + _sound_def = { + key = "node_sound_stone_defaults", + }, + tube = { + connect_sides = {front = 1, back = 1,}, + priority = 50, + can_go = straight, + can_insert = function(pos, node, stack, direction) + local dir = minetest.facedir_to_dir(node.param2) + return vector.equals(dir, direction) or vector.equals(vector.multiply(dir, -1), direction) + end, + }, + after_place_node = pipeworks.after_place, + after_dig_node = pipeworks.after_dig, + on_rotate = pipeworks.on_rotate, +}) +pipeworks.ui_cat_tube_list[#pipeworks.ui_cat_tube_list+1] = "pipeworks:steel_pane_embedded_tube" diff --git a/mods/pipeworks/tubes/registration.lua b/mods/pipeworks/tubes/registration.lua new file mode 100644 index 00000000..cbfc1506 --- /dev/null +++ b/mods/pipeworks/tubes/registration.lua @@ -0,0 +1,281 @@ +-- This file supplies the various kinds of pneumatic tubes +local S = minetest.get_translator("pipeworks") + +local tubenodes = {} +pipeworks.tubenodes = tubenodes + +minetest.register_alias("pipeworks:tube", "pipeworks:tube_000000") + +-- now, a function to define the tubes + +local REGISTER_COMPATIBILITY = true + +local vti = {4, 3, 2, 1, 6, 5} + +local default_noctrs = { "pipeworks_tube_noctr.png" } +local default_plain = { "pipeworks_tube_plain.png" } +local default_ends = { "pipeworks_tube_end.png" } + +local texture_mt = { + __index = function(table, key) + local size, idx = #table, tonumber(key) + if size > 0 then -- avoid endless loops with empty tables + while idx > size do idx = idx - size end + return table[idx] + end + end +} + +-- This will remove any semi-transparent pixels +-- because that is still buggy in Minetest, force this as default +local texture_alpha_mode = minetest.features.use_texture_alpha_string_modes + and "clip" or true + +local register_one_tube = function(name, tname, dropname, desc, plain, noctrs, ends, short, inv, special, connects, style) + noctrs = noctrs or default_noctrs + setmetatable(noctrs, texture_mt) + plain = plain or default_plain + setmetatable(plain, texture_mt) + ends = ends or default_ends + setmetatable(ends, texture_mt) + short = short or "pipeworks_tube_short.png" + inv = inv or "pipeworks_tube_inv.png" + + local outboxes = {} + local outsel = {} + local outimgs = {} + + for i = 1, 6 do + outimgs[vti[i]] = plain[i] + end + + for _, v in ipairs(connects) do + pipeworks.table_extend(outboxes, pipeworks.tube_boxes[v]) + table.insert(outsel, pipeworks.tube_selectboxes[v]) + outimgs[vti[v]] = noctrs[v] + end + + if #connects == 1 then + local v = connects[1] + v = v-1 + 2*(v%2) -- Opposite side + outimgs[vti[v]] = ends[v] + end + + local tgroups = {snappy = 3, tube = 1, tubedevice = 1, not_in_creative_inventory = 1, dig_generic = 4, axey=1, handy=1, pickaxey=1} + local tubedesc = string.format("%s %s", desc, dump(connects)) + local iimg = type(plain[1]) == "table" and plain[1].name or plain[1] + local wscale = {x = 1, y = 1, z = 1} + + if #connects == 0 then + tgroups = {snappy = 3, tube = 1, tubedevice = 1, dig_generic = 4, axey=1, handy=1, pickaxey=1} + tubedesc = desc + iimg=inv + outimgs = { + short, short, + ends[3],ends[4], + short, short + } + outboxes = { -24/64, -9/64, -9/64, 24/64, 9/64, 9/64 } + outsel = { -24/64, -10/64, -10/64, 24/64, 10/64, 10/64 } + wscale = {x = 1, y = 1, z = 0.01} + end + + for i, tile in ipairs(outimgs) do + outimgs[i] = pipeworks.make_tube_tile(tile) + end + + local rname = string.format("%s_%s", name, tname) + table.insert(tubenodes, rname) + + local nodedef = { + description = tubedesc, + drawtype = "nodebox", + tiles = outimgs, + use_texture_alpha = texture_alpha_mode, + sunlight_propagates = true, + inventory_image = iimg, + wield_image = iimg, + wield_scale = wscale, + paramtype = "light", + selection_box = { + type = "fixed", + fixed = outsel + }, + node_box = { + type = "fixed", + fixed = outboxes + }, + groups = tgroups, + is_ground_content = false, + _mcl_hardness=0.8, + _sound_def = { + key = "node_sound_wood_defaults", + }, + walkable = true, + basename = name, + style = style, + drop = string.format("%s_%s", name, dropname), + tubelike = 1, + tube = { + connect_sides = {front = 1, back = 1, left = 1, right = 1, top = 1, bottom = 1}, + priority = 50 + }, + on_punch = function(pos, node, player, pointed) + local playername = player:get_player_name() + if minetest.is_protected(pos, playername) and not minetest.check_player_privs(playername, {protection_bypass=true}) then + return minetest.node_punch(pos, node, player, pointed) + end + if pipeworks.check_and_wear_hammer(player) then + local wieldname = player:get_wielded_item():get_name() + pipeworks.logger(string.format("%s struck a tube at %s with %s to break it.", playername, minetest.pos_to_string(pos), wieldname)) + pipeworks.break_tube(pos) + end + return minetest.node_punch(pos, node, player, pointed) + end, + after_place_node = pipeworks.after_place, + after_dig_node = pipeworks.after_dig, + on_rotate = false, + on_blast = function(pos, intensity) + if not intensity or intensity > 1 + 3^0.5 then + minetest.remove_node(pos) + return {string.format("%s_%s", name, dropname)} + end + minetest.swap_node(pos, {name = "pipeworks:broken_tube_1"}) + pipeworks.scan_for_tube_objects(pos) + end, + check_for_pole = pipeworks.check_for_vert_tube, + check_for_horiz_pole = pipeworks.check_for_horiz_tube, + tubenumber = tonumber(tname) + } + if style == "6d" then + nodedef.paramtype2 = "facedir" + end + + if special == nil then special = {} end + + for key, value in pairs(special) do + --if key == "after_dig_node" or key == "after_place_node" then + -- nodedef[key.."_"] = value + if key == "groups" then + for group, val in pairs(value) do + nodedef.groups[group] = val + end + elseif key == "tube" then + for key, val in pairs(value) do + nodedef.tube[key] = val + end + else + nodedef[key] = pipeworks.table_recursive_replace(value, "#id", tname) + end + end + + minetest.register_node(rname, nodedef) +end + +local register_all_tubes = function(name, desc, plain, noctrs, ends, short, inv, special, old_registration) + if old_registration then + for xm = 0, 1 do + for xp = 0, 1 do + for ym = 0, 1 do + for yp = 0, 1 do + for zm = 0, 1 do + for zp = 0, 1 do + local connects = {} + if xm == 1 then + connects[#connects+1] = 1 + end + if xp == 1 then + connects[#connects+1] = 2 + end + if ym == 1 then + connects[#connects+1] = 3 + end + if yp == 1 then + connects[#connects+1] = 4 + end + if zm == 1 then + connects[#connects+1] = 5 + end + if zp == 1 then + connects[#connects+1] = 6 + end + local tname = xm..xp..ym..yp..zm..zp + register_one_tube(name, tname, "000000", desc, plain, noctrs, ends, short, inv, special, connects, "old") + end + end + end + end + end + end + pipeworks.ui_cat_tube_list[#pipeworks.ui_cat_tube_list+1] = name.."_000000" + else + -- 6d tubes: uses only 10 nodes instead of 64, but the textures must be rotated + local cconnects = {{}, {1}, {1, 2}, {1, 3}, {1, 3, 5}, {1, 2, 3}, {1, 2, 3, 5}, {1, 2, 3, 4}, {1, 2, 3, 4, 5}, {1, 2, 3, 4, 5, 6}} + for index, connects in ipairs(cconnects) do + register_one_tube(name, tostring(index), "1", desc, plain, noctrs, ends, short, inv, special, connects, "6d") + end + if REGISTER_COMPATIBILITY then + local cname = name.."_compatibility" + minetest.register_node(cname, { + drawtype = "airlike", + style = "6d", + basename = name, + inventory_image = inv, + wield_image = inv, + paramtype = "light", + sunlight_propagates = true, + description = S("Pneumatic tube segment (legacy)"), + after_place_node = pipeworks.after_place, + groups = {not_in_creative_inventory = 1, tube_to_update = 1, tube = 1}, + is_ground_content = false, + tube = {connect_sides = {front = 1, back = 1, left = 1, right = 1, top = 1, bottom = 1}}, + drop = name.."_1", + }) + pipeworks.ui_cat_tube_list[#pipeworks.ui_cat_tube_list+1] = name.."_1" + table.insert(tubenodes, cname) + for xm = 0, 1 do + for xp = 0, 1 do + for ym = 0, 1 do + for yp = 0, 1 do + for zm = 0, 1 do + for zp = 0, 1 do + local tname = xm..xp..ym..yp..zm..zp + minetest.register_alias(name.."_"..tname, cname) + end + end + end + end + end + end + end + end +end + +pipeworks.register_tube = function(name, def, ...) + if type(def) == "table" then + register_all_tubes(name, def.description, + def.plain, def.noctr, def.ends, def.short, + def.inventory_image, def.node_def, def.no_facedir) + else + -- we assert to be the old function with the second parameter being the description + -- function(name, desc, plain, noctrs, ends, short, inv, special, old_registration) + assert(type(def) == "string", "invalid arguments to pipeworks.register_tube") + register_all_tubes(name, def, ...) + end +end + + +if REGISTER_COMPATIBILITY then + minetest.register_abm({ + nodenames = {"group:tube_to_update"}, + interval = 1, + chance = 1, + action = function(pos, node, active_object_count, active_object_count_wider) + local minp = vector.subtract(pos, 1) + local maxp = vector.add(pos, 1) + if table.getn(minetest.find_nodes_in_area(minp, maxp, "ignore")) == 0 then + pipeworks.scan_for_tube_objects(pos) + end + end + }) +end diff --git a/mods/pipeworks/tubes/routing.lua b/mods/pipeworks/tubes/routing.lua new file mode 100644 index 00000000..b4f8aff8 --- /dev/null +++ b/mods/pipeworks/tubes/routing.lua @@ -0,0 +1,206 @@ +local S = minetest.get_translator("pipeworks") +-- the default tube and default textures +pipeworks.register_tube("pipeworks:tube", S("Pneumatic tube segment")) +minetest.register_craft( { + output = "pipeworks:tube_1 6", + recipe = { + { "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" }, + { "", "", "" }, + { "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" } + }, +}) + +-- The hammers that can be used to break/repair tubes +local allowed_hammers = { + "anvil:hammer", + "cottages:hammer", + "glooptest:hammer_steel", + "glooptest:hammer_bronze", + "glooptest:hammer_diamond", + "glooptest:hammer_mese", + "glooptest:hammer_alatro", + "glooptest:hammer_arol" +} + +-- Convert the above list to a format that's easier to look up +for _,hammer in ipairs(allowed_hammers) do + allowed_hammers[hammer] = true +end + +-- Check if the player is holding a suitable hammer or not - if they are, apply wear to it +function pipeworks.check_and_wear_hammer(player) + local itemstack = player:get_wielded_item() + local wieldname = itemstack:get_name() + if allowed_hammers[wieldname] then + itemstack:add_wear(1000) + player:set_wielded_item(itemstack) + return true + end + return false +end + +local nodecolor = 0xffff3030 + +pipeworks.register_tube("pipeworks:broken_tube", { + description = S("Broken Tube"), + plain = { { name = "pipeworks_broken_tube_plain.png", backface_culling = false, color = nodecolor } }, + noctr = { { name = "pipeworks_broken_tube_plain.png", backface_culling = false, color = nodecolor } }, + ends = { { name = "pipeworks_broken_tube_end.png", color = nodecolor } }, + short = { name = "pipeworks_broken_tube_short.png", color = nodecolor }, + node_def = { + drop = "pipeworks:tube_1", + groups = {not_in_creative_inventory = 1, tubedevice_receiver = 1}, + is_ground_content = false, + tube = { + insert_object = function(pos, node, stack, direction) + minetest.item_drop(stack, nil, pos) + return ItemStack("") + end, + can_insert = function(pos,node,stack,direction) + return true + end, + priority = 50, + }, + on_punch = function(pos, node, puncher, pointed_thing) + local itemstack = puncher:get_wielded_item() + local wieldname = itemstack:get_name() + local playername = puncher:get_player_name() + local log_msg = playername.." struck a broken tube at "..minetest.pos_to_string(pos).."\n " + local meta = minetest.get_meta(pos) + local was_node = minetest.deserialize(meta:get_string("the_tube_was")) + if not was_node then + pipeworks.logger(log_msg.."but it can't be repaired.") + return + end + if not pipeworks.check_and_wear_hammer(puncher) then + if wieldname == "" then + pipeworks.logger(log_msg.."by hand. It's not very effective.") + if minetest.settings:get_bool("enable_damage") then + minetest.chat_send_player(playername,S("Broken tubes may be a bit sharp. Perhaps try with a hammer?")) + puncher:set_hp(puncher:get_hp()-1) + end + else + pipeworks.logger(log_msg.."with "..wieldname.." but that tool is too weak.") + end + return + end + log_msg = log_msg.."with "..wieldname.." to repair it" + local nodedef = minetest.registered_nodes[was_node.name] + if nodedef then + pipeworks.logger(log_msg..".") + if nodedef.tube and nodedef.tube.on_repair then + nodedef.tube.on_repair(pos, was_node) + else + minetest.swap_node(pos, { name = was_node.name, param2 = was_node.param2 }) + pipeworks.scan_for_tube_objects(pos) + end + meta:set_string("the_tube_was", "") + else + pipeworks.logger(log_msg.." but original node "..was_node.name.." is not registered anymore.") + minetest.chat_send_player(playername, S("This tube cannot be repaired.")) + end + end, + allow_metadata_inventory_put = function() + return 0 + end, + allow_metadata_inventory_move = function() + return 0 + end, + allow_metadata_inventory_take = function() + return 0 + end, + } +}) + +-- the high priority tube is a low-cpu replacement for sorting tubes in situations +-- where players would use them for simple routing (turning off paths) +-- without doing actual sorting, like at outputs of tubedevices that might both accept and eject items +if pipeworks.enable_priority_tube then + local color = "#ff3030:128" + pipeworks.register_tube("pipeworks:priority_tube", { + description = S("High Priority Tube Segment"), + inventory_image = "pipeworks_tube_inv.png^[colorize:" .. color, + plain = { { name = "pipeworks_tube_plain.png", color = nodecolor } }, + noctr = { { name = "pipeworks_tube_noctr.png", color = nodecolor } }, + ends = { { name = "pipeworks_tube_end.png", color = nodecolor } }, + short = { name = "pipeworks_tube_short.png", color = nodecolor }, + node_def = { + tube = { priority = 150 } -- higher than tubedevices (100) + }, + }) +end + +if pipeworks.enable_accelerator_tube then + pipeworks.register_tube("pipeworks:accelerator_tube", { + description = S("Accelerating Pneumatic Tube Segment"), + inventory_image = "pipeworks_accelerator_tube_inv.png", + plain = { "pipeworks_accelerator_tube_plain.png" }, + noctr = { "pipeworks_accelerator_tube_noctr.png" }, + ends = { "pipeworks_accelerator_tube_end.png" }, + short = "pipeworks_accelerator_tube_short.png", + node_def = { + tube = {can_go = function(pos, node, velocity, stack) + velocity.speed = velocity.speed+1 + return pipeworks.notvel(pipeworks.meseadjlist, velocity) + end} + }, + }) +end + +if pipeworks.enable_crossing_tube then + pipeworks.register_tube("pipeworks:crossing_tube", { + description = S("Crossing Pneumatic Tube Segment"), + inventory_image = "pipeworks_crossing_tube_inv.png", + plain = { "pipeworks_crossing_tube_plain.png" }, + noctr = { "pipeworks_crossing_tube_noctr.png" }, + ends = { "pipeworks_crossing_tube_end.png" }, + short = "pipeworks_crossing_tube_short.png", + node_def = { + tube = {can_go = function(pos, node, velocity, stack) return {velocity} end } + }, + }) +end + +local texture_alpha_mode = minetest.features.use_texture_alpha_string_modes + and "clip" or true + +if pipeworks.enable_one_way_tube then + local tiles = {"pipeworks_one_way_tube_top.png", "pipeworks_one_way_tube_top.png", "pipeworks_one_way_tube_output.png", + "pipeworks_one_way_tube_input.png", "pipeworks_one_way_tube_side.png", "pipeworks_one_way_tube_top.png"} + for i, tile in ipairs(tiles) do + tiles[i] = pipeworks.make_tube_tile(tile) + end + minetest.register_node("pipeworks:one_way_tube", { + description = S("One way tube"), + tiles = tiles, + use_texture_alpha = texture_alpha_mode, + paramtype2 = "facedir", + drawtype = "nodebox", + paramtype = "light", + node_box = {type = "fixed", + fixed = {{-1/2, -9/64, -9/64, 1/2, 9/64, 9/64}}}, + groups = {snappy = 2, choppy = 2, oddly_breakable_by_hand = 2, tubedevice = 1, tube = 1, axey=1, handy=1, pickaxey=1}, + is_ground_content = false, + _mcl_hardness=0.8, + _sound_def = { + key = "node_sound_wood_defaults", + }, + tube = { + connect_sides = {left = 1, right = 1}, + can_go = function(pos, node, velocity, stack) + return {velocity} + end, + can_insert = function(pos, node, stack, direction) + local dir = pipeworks.facedir_to_right_dir(node.param2) + return vector.equals(dir, direction) + end, + priority = 75 -- Higher than normal tubes, but lower than receivers + }, + after_place_node = pipeworks.after_place, + after_dig_node = pipeworks.after_dig, + on_rotate = pipeworks.on_rotate, + check_for_pole = pipeworks.check_for_vert_tube, + check_for_horiz_pole = pipeworks.check_for_horiz_tube + }) + pipeworks.ui_cat_tube_list[#pipeworks.ui_cat_tube_list+1] = "pipeworks:one_way_tube" +end diff --git a/mods/pipeworks/tubes/signal.lua b/mods/pipeworks/tubes/signal.lua new file mode 100644 index 00000000..44eb9432 --- /dev/null +++ b/mods/pipeworks/tubes/signal.lua @@ -0,0 +1,247 @@ +local S = minetest.get_translator("pipeworks") + +-- the minetest.after() calls below can sometimes trigger after a tube +-- breaks, at which point item_exit() is no longer valid, so we have to make +-- sure that there even IS a callback to run, first. + +local function after_break(pos) + local name = minetest.get_node(pos).name + if minetest.registered_nodes[name].item_exit then + minetest.registered_nodes[name].item_exit(pos) + end +end + +if minetest.get_modpath("mesecons") and pipeworks.enable_detector_tube then + local detector_tube_step = 5 * (tonumber(minetest.settings:get("dedicated_server_step")) or 0.09) + pipeworks.register_tube("pipeworks:detector_tube_on", { + description = S("Detecting Pneumatic Tube Segment on"), + inventory_image = "pipeworks_detector_tube_inv.png", + plain = { "pipeworks_detector_tube_plain.png" }, + node_def = { + tube = {can_go = function(pos, node, velocity, stack) + local meta = minetest.get_meta(pos) + local nitems = meta:get_int("nitems")+1 + meta:set_int("nitems", nitems) + local saved_pos = vector.new(pos) + minetest.after(detector_tube_step, after_break, saved_pos) + return pipeworks.notvel(pipeworks.meseadjlist,velocity) + end}, + groups = {mesecon = 2, not_in_creative_inventory = 1}, + drop = "pipeworks:detector_tube_off_1", + mesecons = {receptor = {state = "on", rules = pipeworks.mesecons_rules}}, + item_exit = function(pos) + local meta = minetest.get_meta(pos) + local nitems = meta:get_int("nitems")-1 + local node = minetest.get_node(pos) + local name = node.name + local fdir = node.param2 + if nitems == 0 then + minetest.set_node(pos, {name = string.gsub(name, "on", "off"), param2 = fdir}) + mesecon.receptor_off(pos, pipeworks.mesecons_rules) + else + meta:set_int("nitems", nitems) + end + end, + on_construct = function(pos) + local meta = minetest.get_meta(pos) + meta:set_int("nitems", 1) + minetest.after(detector_tube_step, after_break, pos) + end, + }, + }) + pipeworks.register_tube("pipeworks:detector_tube_off", { + description = S("Detecting Pneumatic Tube Segment"), + inventory_image = "pipeworks_detector_tube_inv.png", + plain = { "pipeworks_detector_tube_plain.png" }, + node_def = { + tube = {can_go = function(pos, node, velocity, stack) + local node = minetest.get_node(pos) + local name = node.name + local fdir = node.param2 + minetest.set_node(pos,{name = string.gsub(name, "off", "on"), param2 = fdir}) + mesecon.receptor_on(pos, pipeworks.mesecons_rules) + return pipeworks.notvel(pipeworks.meseadjlist, velocity) + end}, + groups = {mesecon = 2}, + mesecons = {receptor = {state = "off", rules = pipeworks.mesecons_rules }}, + }, + }) + + minetest.register_craft( { + output = "pipeworks:detector_tube_off_1 2", + recipe = { + { "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" }, + { "mesecons:mesecon", "mesecons_materials:silicon", "mesecons:mesecon" }, + { "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" } + }, + }) +end + +local digiline_enabled = minetest.get_modpath("digilines") ~= nil +if digiline_enabled and pipeworks.enable_digiline_detector_tube then + pipeworks.register_tube("pipeworks:digiline_detector_tube", { + description = S("Digiline Detecting Pneumatic Tube Segment"), + inventory_image = "pipeworks_digiline_detector_tube_inv.png", + plain = { "pipeworks_digiline_detector_tube_plain.png" }, + node_def = { + tube = {can_go = function(pos, node, velocity, stack) + local meta = minetest.get_meta(pos) + + local setchan = meta:get_string("channel") + + digilines.receptor_send(pos, digilines.rules.default, setchan, stack:to_table()) + + return pipeworks.notvel(pipeworks.meseadjlist, velocity) + end}, + on_construct = function(pos) + local meta = minetest.get_meta(pos) + meta:set_string("formspec", + "size[8.5,2.2]".. + "image[0.2,0;1,1;pipeworks_digiline_detector_tube_inv.png]".. + "label[1.2,0.2;"..S("Digiline Detecting Tube").."]".. + "field[0.5,1.6;4.6,1;channel;"..S("Channel")..";${channel}]".. + "button[4.8,1.3;1.5,1;set_channel;"..S("Set").."]".. + "button_exit[6.3,1.3;2,1;close;"..S("Close").."]" + ) + end, + on_receive_fields = function(pos, formname, fields, sender) + if (fields.quit and not fields.key_enter_field) + or (fields.key_enter_field ~= "channel" and not fields.set_channel) + or not pipeworks.may_configure(pos, sender) then + return + end + if fields.channel then + minetest.get_meta(pos):set_string("channel", fields.channel) + end + end, + groups = {}, + digilines = { + receptor = {}, + effector = { + action = function(pos,node,channel,msg) end + }, + wire = { + rules = pipeworks.digilines_rules + }, + }, + }, + }) + + minetest.register_craft( { + output = "pipeworks:digiline_detector_tube_1 2", + recipe = { + { "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" }, + { "digilines:wire_std_00000000", "mesecons_materials:silicon", "digilines:wire_std_00000000" }, + { "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" } + }, + }) +end + +if minetest.get_modpath("mesecons") and pipeworks.enable_conductor_tube then + pipeworks.register_tube("pipeworks:conductor_tube_off", { + description = S("Conducting Pneumatic Tube Segment"), + inventory_image = "pipeworks_conductor_tube_inv.png", + short = "pipeworks_conductor_tube_short.png", + plain = { "pipeworks_conductor_tube_plain.png" }, + noctr = { "pipeworks_conductor_tube_noctr.png" }, + ends = { "pipeworks_conductor_tube_end.png" }, + node_def = { + groups = {mesecon = 2}, + mesecons = {conductor = {state = "off", + rules = pipeworks.mesecons_rules, + onstate = "pipeworks:conductor_tube_on_#id"}} + }, + }) + pipeworks.register_tube("pipeworks:conductor_tube_on", { + description = S("Conducting Pneumatic Tube Segment on"), + inventory_image = "pipeworks_conductor_tube_inv.png", + short = "pipeworks_conductor_tube_short.png", + plain = { "pipeworks_conductor_tube_on_plain.png" }, + noctr = { "pipeworks_conductor_tube_on_noctr.png" }, + ends = { "pipeworks_conductor_tube_on_end.png" }, + node_def = { + groups = {mesecon = 2, not_in_creative_inventory = 1}, + drop = "pipeworks:conductor_tube_off_1", + mesecons = {conductor = {state = "on", + rules = pipeworks.mesecons_rules, + offstate = "pipeworks:conductor_tube_off_#id"}} + }, + }) + + minetest.register_craft({ + type = "shapeless", + output = "pipeworks:conductor_tube_off_1", + recipe = {"pipeworks:tube_1", "mesecons:mesecon"} + }) +end + +if digiline_enabled and pipeworks.enable_digiline_conductor_tube then + pipeworks.register_tube("pipeworks:digiline_conductor_tube", { + description = S("Digiline Conducting Pneumatic Tube Segment"), + inventory_image = "pipeworks_tube_inv.png^pipeworks_digiline_conductor_tube_inv.png", + short = "pipeworks_tube_short.png^pipeworks_digiline_conductor_tube_short.png", + plain = {"pipeworks_tube_plain.png^pipeworks_digiline_conductor_tube_plain.png"}, + noctr = {"pipeworks_tube_noctr.png^pipeworks_digiline_conductor_tube_noctr.png"}, + ends = {"pipeworks_tube_end.png^pipeworks_digiline_conductor_tube_end.png"}, + node_def = {digilines = {wire = {rules = pipeworks.digilines_rules}}}, + }) + minetest.register_craft({ + type = "shapeless", + output = "pipeworks:digiline_conductor_tube_1", + recipe = {"pipeworks:tube_1", "digilines:wire_std_00000000"} + }) +end + +if digiline_enabled and pipeworks.enable_digiline_conductor_tube and + pipeworks.enable_conductor_tube then + pipeworks.register_tube("pipeworks:mesecon_and_digiline_conductor_tube_off", { + description = S("Mesecon and Digiline Conducting Pneumatic Tube Segment"), + inventory_image = "pipeworks_conductor_tube_inv.png^pipeworks_digiline_conductor_tube_inv.png", + short = "pipeworks_conductor_tube_short.png^pipeworks_digiline_conductor_tube_short.png", + plain = {"pipeworks_conductor_tube_plain.png^pipeworks_digiline_conductor_tube_plain.png"}, + noctr = {"pipeworks_conductor_tube_noctr.png^pipeworks_digiline_conductor_tube_noctr.png"}, + ends = {"pipeworks_conductor_tube_end.png^pipeworks_digiline_conductor_tube_end.png"}, + node_def = { + digilines = {wire = {rules = pipeworks.digilines_rules}}, + groups = {mesecon = 2}, + mesecons = {conductor = { + state = "off", + rules = pipeworks.mesecons_rules, + onstate = "pipeworks:mesecon_and_digiline_conductor_tube_on_#id" + }}, + }, + }) + pipeworks.register_tube("pipeworks:mesecon_and_digiline_conductor_tube_on", { + description = S("Mesecon and Digiline Conducting Pneumatic Tube Segment on"), + inventory_image = "pipeworks_conductor_tube_inv.png^pipeworks_digiline_conductor_tube_inv.png", + short = "pipeworks_conductor_tube_short.png^pipeworks_digiline_conductor_tube_short.png", + plain = {"pipeworks_conductor_tube_on_plain.png^pipeworks_digiline_conductor_tube_plain.png"}, + noctr = {"pipeworks_conductor_tube_on_noctr.png^pipeworks_digiline_conductor_tube_noctr.png"}, + ends = {"pipeworks_conductor_tube_on_end.png^pipeworks_digiline_conductor_tube_end.png"}, + node_def = { + digilines = {wire = {rules = pipeworks.digilines_rules}}, + groups = {mesecon = 2, not_in_creative_inventory = 1}, + drop = "pipeworks:mesecon_and_digiline_conductor_tube_off_1", + mesecons = {conductor = { + state = "on", + rules = pipeworks.mesecons_rules, + offstate = "pipeworks:mesecon_and_digiline_conductor_tube_off_#id"} + }, + }, + }) + minetest.register_craft({ + type = "shapeless", + output = "pipeworks:mesecon_and_digiline_conductor_tube_off_1", + recipe = {"pipeworks:tube_1", "mesecons:mesecon", "digilines:wire_std_00000000"} + }) + minetest.register_craft({ + type = "shapeless", + output = "pipeworks:mesecon_and_digiline_conductor_tube_off_1", + recipe = {"pipeworks:conductor_tube_off_1", "digilines:wire_std_00000000"} + }) + minetest.register_craft({ + type = "shapeless", + output = "pipeworks:mesecon_and_digiline_conductor_tube_off_1", + recipe = {"pipeworks:digiline_conductor_tube_1", "mesecons:mesecon"} + }) +end diff --git a/mods/pipeworks/tubes/sorting.lua b/mods/pipeworks/tubes/sorting.lua new file mode 100644 index 00000000..39a86867 --- /dev/null +++ b/mods/pipeworks/tubes/sorting.lua @@ -0,0 +1,180 @@ +local S = minetest.get_translator("pipeworks") +local fs_helpers = pipeworks.fs_helpers + +if pipeworks.enable_mese_tube then + local function update_formspec(pos) + local meta = minetest.get_meta(pos) + local old_formspec = meta:get_string("formspec") + if string.find(old_formspec, "button1") then -- Old version + local inv = meta:get_inventory() + for i = 1, 6 do + for _, stack in ipairs(inv:get_list("line"..i)) do + minetest.add_item(pos, stack) + end + end + end + local buttons_formspec = "" + for i = 0, 5 do + buttons_formspec = buttons_formspec .. fs_helpers.cycling_button(meta, + "image_button[9,"..(i+(i*0.25)+0.5)..";1,0.6", "l"..(i+1).."s", + { + pipeworks.button_off, + pipeworks.button_on + } + ) + end + local list_backgrounds = "" + if minetest.get_modpath("i3") or minetest.get_modpath("mcl_formspec") then + list_backgrounds = "style_type[box;colors=#666]" + for i=0, 5 do + for j=0, 5 do + list_backgrounds = list_backgrounds .. "box[".. 1.5+(i*1.25) ..",".. 0.25+(j*1.25) ..";1,1;]" + end + end + end + local size = "10.2,13" + meta:set_string("formspec", + "formspec_version[2]".. + "size["..size.."]".. + pipeworks.fs_helpers.get_prepends(size).. + "list[context;line1;1.5,0.25;6,1;]".. + "list[context;line2;1.5,1.50;6,1;]".. + "list[context;line3;1.5,2.75;6,1;]".. + "list[context;line4;1.5,4.00;6,1;]".. + "list[context;line5;1.5,5.25;6,1;]".. + "list[context;line6;1.5,6.50;6,1;]".. + list_backgrounds.. + "image[0.22,0.25;1,1;pipeworks_white.png]".. + "image[0.22,1.50;1,1;pipeworks_black.png]".. + "image[0.22,2.75;1,1;pipeworks_green.png]".. + "image[0.22,4.00;1,1;pipeworks_yellow.png]".. + "image[0.22,5.25;1,1;pipeworks_blue.png]".. + "image[0.22,6.50;1,1;pipeworks_red.png]".. + buttons_formspec.. + --"list[current_player;main;0,8;8,4;]" .. + pipeworks.fs_helpers.get_inv(8).. + "listring[current_player;main]" .. + "listring[current_player;main]" .. + "listring[context;line1]" .. + "listring[current_player;main]" .. + "listring[context;line2]" .. + "listring[current_player;main]" .. + "listring[context;line3]" .. + "listring[current_player;main]" .. + "listring[context;line4]" .. + "listring[current_player;main]" .. + "listring[context;line5]" .. + "listring[current_player;main]" .. + "listring[context;line6]" + ) + end + + pipeworks.register_tube("pipeworks:mese_tube", { + description = S("Sorting Pneumatic Tube Segment"), + inventory_image = "pipeworks_mese_tube_inv.png", + noctr = {"pipeworks_mese_tube_noctr_1.png", "pipeworks_mese_tube_noctr_2.png", "pipeworks_mese_tube_noctr_3.png", + "pipeworks_mese_tube_noctr_4.png", "pipeworks_mese_tube_noctr_5.png", "pipeworks_mese_tube_noctr_6.png"}, + plain = {"pipeworks_mese_tube_plain_1.png", "pipeworks_mese_tube_plain_2.png", "pipeworks_mese_tube_plain_3.png", + "pipeworks_mese_tube_plain_4.png", "pipeworks_mese_tube_plain_5.png", "pipeworks_mese_tube_plain_6.png"}, + ends = { "pipeworks_mese_tube_end.png" }, + short = "pipeworks_mese_tube_short.png", + no_facedir = true, -- Must use old tubes, since the textures are rotated with 6d ones + node_def = { + tube = {can_go = function(pos, node, velocity, stack) + local tbl, tbln = {}, 0 + local found, foundn = {}, 0 + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + local name = stack:get_name() + for i, vect in ipairs(pipeworks.meseadjlist) do + local npos = vector.add(pos, vect) + local node = minetest.get_node(npos) + local reg_node = minetest.registered_nodes[node.name] + if meta:get_int("l"..i.."s") == 1 and reg_node then + local tube_def = reg_node.tube + if not tube_def or not tube_def.can_insert or + tube_def.can_insert(npos, node, stack, vect) then + local invname = "line"..i + local is_empty = true + for _, st in ipairs(inv:get_list(invname)) do + if not st:is_empty() then + is_empty = false + if st:get_name() == name then + foundn = foundn + 1 + found[foundn] = vect + end + end + end + if is_empty then + tbln = tbln + 1 + tbl[tbln] = vect + end + end + end + end + return (foundn > 0) and found or tbl + end}, + on_construct = function(pos) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + for i = 1, 6 do + meta:set_int("l"..tostring(i).."s", 1) + inv:set_size("line"..tostring(i), 6*1) + end + update_formspec(pos) + meta:set_string("infotext", S("Sorting pneumatic tube")) + end, + after_place_node = function(pos, placer, itemstack, pointed_thing) + if placer and placer:is_player() and placer:get_player_control().aux1 then + local meta = minetest.get_meta(pos) + for i = 1, 6 do + meta:set_int("l"..tostring(i).."s", 0) + end + update_formspec(pos) + end + return pipeworks.after_place(pos, placer, itemstack, pointed_thing) + end, + on_punch = update_formspec, + on_receive_fields = function(pos, formname, fields, sender) + if (fields.quit and not fields.key_enter_field) + or not pipeworks.may_configure(pos, sender) then + return + end + fs_helpers.on_receive_fields(pos, fields) + update_formspec(pos) + end, + can_dig = function(pos, player) + update_formspec(pos) -- so non-virtual items would be dropped for old tubes + return true + end, + allow_metadata_inventory_put = function(pos, listname, index, stack, player) + if not pipeworks.may_configure(pos, player) then return 0 end + update_formspec(pos) -- For old tubes + local inv = minetest.get_meta(pos):get_inventory() + local stack_copy = ItemStack(stack) + stack_copy:set_count(1) + inv:set_stack(listname, index, stack_copy) + return 0 + end, + allow_metadata_inventory_take = function(pos, listname, index, stack, player) + if not pipeworks.may_configure(pos, player) then return 0 end + update_formspec(pos) -- For old tubes + local inv = minetest.get_meta(pos):get_inventory() + inv:set_stack(listname, index, ItemStack("")) + return 0 + end, + allow_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player) + if not pipeworks.may_configure(pos, player) then return 0 end + update_formspec(pos) -- For old tubes + local inv = minetest.get_meta(pos):get_inventory() + + if from_list:match("line%d") and to_list:match("line%d") then + return count + else + inv:set_stack(from_list, from_index, ItemStack("")) + return 0 + end + end, + }, + }) +end diff --git a/mods/pipeworks/tubes/tags.lua b/mods/pipeworks/tubes/tags.lua new file mode 100644 index 00000000..ffd7ec7f --- /dev/null +++ b/mods/pipeworks/tubes/tags.lua @@ -0,0 +1,139 @@ +local S = minetest.get_translator("pipeworks") +local fs_helpers = pipeworks.fs_helpers + +if not pipeworks.enable_item_tags or not pipeworks.enable_tag_tube then return end + +local help_text = minetest.formspec_escape( + S("Separate multiple tags using commas.").."\n".. + S("Use \"\" to match items without tags.") +) + +local update_formspec = function(pos) + local meta = minetest.get_meta(pos) + local buttons_formspec = "" + for i = 0, 5 do + buttons_formspec = buttons_formspec .. fs_helpers.cycling_button(meta, + "image_button[9," .. (i + (i * 0.25) + 0.5) .. ";1,0.6", "l" .. (i + 1) .. "s", + { + pipeworks.button_off, + pipeworks.button_on + } + ) + end + local size = "10.2,9" + meta:set_string("formspec", + "formspec_version[2]" .. + "size[" .. size .. "]" .. + pipeworks.fs_helpers.get_prepends(size) .. + "field[1.5,0.25;7.25,1;tags1;;${tags1}]" .. + "field[1.5,1.5;7.25,1;tags2;;${tags2}]" .. + "field[1.5,2.75;7.25,1;tags3;;${tags3}]" .. + "field[1.5,4.0;7.25,1;tags4;;${tags4}]" .. + "field[1.5,5.25;7.25,1;tags5;;${tags5}]" .. + "field[1.5,6.5;7.25,1;tags6;;${tags6}]" .. + + "image[0.22,0.25;1,1;pipeworks_white.png]" .. + "image[0.22,1.50;1,1;pipeworks_black.png]" .. + "image[0.22,2.75;1,1;pipeworks_green.png]" .. + "image[0.22,4.00;1,1;pipeworks_yellow.png]" .. + "image[0.22,5.25;1,1;pipeworks_blue.png]" .. + "image[0.22,6.50;1,1;pipeworks_red.png]" .. + buttons_formspec .. + "label[0.22,7.9;"..help_text.."]".. + "button[7.25,7.8;1.5,0.8;set_item_tags;" .. S("Set") .. "]" + ) +end + +pipeworks.register_tube("pipeworks:tag_tube", { + description = S("Tag Sorting Pneumatic Tube Segment"), + inventory_image = "pipeworks_tag_tube_inv.png", + noctr = { "pipeworks_tag_tube_noctr_1.png", "pipeworks_tag_tube_noctr_2.png", "pipeworks_tag_tube_noctr_3.png", + "pipeworks_tag_tube_noctr_4.png", "pipeworks_tag_tube_noctr_5.png", "pipeworks_tag_tube_noctr_6.png" }, + plain = { "pipeworks_tag_tube_plain_1.png", "pipeworks_tag_tube_plain_2.png", "pipeworks_tag_tube_plain_3.png", + "pipeworks_tag_tube_plain_4.png", "pipeworks_tag_tube_plain_5.png", "pipeworks_tag_tube_plain_6.png" }, + ends = { "pipeworks_tag_tube_end.png" }, + short = "pipeworks_tag_tube_short.png", + no_facedir = true, -- Must use old tubes, since the textures are rotated with 6d ones + node_def = { + tube = { + can_go = function(pos, node, velocity, stack, tags) + local tbl, tbln = {}, 0 + local found, foundn = {}, 0 + local meta = minetest.get_meta(pos) + local tag_hash = {} + if #tags > 0 then + for _,tag in ipairs(tags) do + tag_hash[tag] = true + end + else + tag_hash[""] = true -- Matches items without tags + end + for i, vect in ipairs(pipeworks.meseadjlist) do + local npos = vector.add(pos, vect) + local node = minetest.get_node(npos) + local reg_node = minetest.registered_nodes[node.name] + if meta:get_int("l" .. i .. "s") == 1 and reg_node then + local tube_def = reg_node.tube + if not tube_def or not tube_def.can_insert or + tube_def.can_insert(npos, node, stack, vect) then + local side_tags = meta:get_string("tags" .. i) + if side_tags ~= "" then + side_tags = pipeworks.sanitize_tags(side_tags) + for _,tag in ipairs(side_tags) do + if tag_hash[tag] then + foundn = foundn + 1 + found[foundn] = vect + break + end + end + else + tbln = tbln + 1 + tbl[tbln] = vect + end + end + end + end + return (foundn > 0) and found or tbl + end + }, + on_construct = function(pos) + local meta = minetest.get_meta(pos) + for i = 1, 6 do + meta:set_int("l" .. tostring(i) .. "s", 1) + end + update_formspec(pos) + meta:set_string("infotext", S("Tag sorting pneumatic tube")) + end, + after_place_node = function(pos, placer, itemstack, pointed_thing) + if placer and placer:is_player() and placer:get_player_control().aux1 then + local meta = minetest.get_meta(pos) + for i = 1, 6 do + meta:set_int("l" .. tostring(i) .. "s", 0) + end + update_formspec(pos) + end + return pipeworks.after_place(pos, placer, itemstack, pointed_thing) + end, + on_receive_fields = function(pos, formname, fields, sender) + if (fields.quit and not fields.key_enter_field) + or not pipeworks.may_configure(pos, sender) then + return + end + + local meta = minetest.get_meta(pos) + for i = 1, 6 do + local field_name = "tags" .. tostring(i) + if fields[field_name] then + local tags = pipeworks.sanitize_tags(fields[field_name]) + meta:set_string(field_name, table.concat(tags, ",")) + end + end + + fs_helpers.on_receive_fields(pos, fields) + update_formspec(pos) + end, + can_dig = function(pos, player) + return true + end, + }, +}) diff --git a/mods/pipeworks/tubes/teleport.lua b/mods/pipeworks/tubes/teleport.lua new file mode 100644 index 00000000..91dd6e00 --- /dev/null +++ b/mods/pipeworks/tubes/teleport.lua @@ -0,0 +1,374 @@ + +local S = minetest.get_translator("pipeworks") +local filename = minetest.get_worldpath().."/teleport_tubes" -- Only used for backward-compat +local storage = minetest.get_mod_storage() + +local enable_logging = minetest.settings:get_bool("pipeworks_log_teleport_tubes", false) + +local has_digilines = minetest.get_modpath("digilines") + +-- V1: Serialized text file indexed by vector position. +-- V2: Serialized text file indexed by hash position. +-- V3: Mod storage using serialized tables. +-- V4: Mod storage using ":" format. +local tube_db_version = 4 +local tube_db = {} +local receiver_cache = {} + +local function hash_pos(pos) + vector.round(pos) + return string.format("%.0f", minetest.hash_node_position(pos)) +end + +local function serialize_tube(tube) + return string.format("%d:%s", tube.cr, tube.channel) +end + +local function deserialize_tube(hash, str) + local sep = str:sub(2, 2) == ":" + local cr = tonumber(str:sub(1, 1)) + local channel = str:sub(3) + if sep and cr and channel then + local pos = minetest.get_position_from_hash(tonumber(hash)) + return {x = pos.x, y = pos.y, z = pos.z, cr = cr, channel = channel} + end +end + +local function save_tube_db() + receiver_cache = {} + local fields = {version = tube_db_version} + for key, val in pairs(tube_db) do + fields[key] = serialize_tube(val) + end + storage:from_table({fields = fields}) +end + +local function save_tube(hash) + local tube = tube_db[hash] + receiver_cache[tube.channel] = nil + storage:set_string(hash, serialize_tube(tube)) +end + +local function remove_tube(pos) + local hash = hash_pos(pos) + if tube_db[hash] then + receiver_cache[tube_db[hash].channel] = nil + tube_db[hash] = nil + storage:set_string(hash, "") + end +end + +local function migrate_tube_db() + if storage:get_int("version") == 3 then + for key, val in pairs(storage:to_table().fields) do + if tonumber(key) then + tube_db[key] = minetest.deserialize(val) + elseif key ~= "version" then + error("Unknown field in teleport tube database: "..key) + end + end + save_tube_db() + return + end + local file = io.open(filename, "r") + if file then + local content = file:read("*all") + io.close(file) + if content and content ~= "" then + tube_db = minetest.deserialize(content) + end + end + local version = tube_db.version or 0 + tube_db.version = nil + if version < 2 then + local tmp_db = {} + for _, val in pairs(tube_db) do + if val.channel ~= "" then -- Skip unconfigured tubes + tmp_db[hash_pos(val)] = val + end + end + tube_db = tmp_db + end + save_tube_db() +end + +local function read_tube_db() + local version = storage:get_int("version") + if version < tube_db_version then + migrate_tube_db() + elseif version > tube_db_version then + error("Cannot read teleport tube database of version "..version) + else + for key, val in pairs(storage:to_table().fields) do + if tonumber(key) then + tube_db[key] = deserialize_tube(key, val) + elseif key ~= "version" then + error("Unknown field in teleport tube database: "..key) + end + end + end + tube_db.version = nil +end + +local function set_tube(pos, channel, cr) + local hash = hash_pos(pos) + local tube = tube_db[hash] + if tube then + if tube.channel ~= channel or tube.cr ~= cr then + tube.channel = channel + tube.cr = cr + save_tube(hash) + end + else + tube_db[hash] = {x = pos.x, y = pos.y, z = pos.z, channel = channel, cr = cr} + save_tube(hash) + end +end + +local function get_receivers(pos, channel) + local hash = hash_pos(pos) + local cache = receiver_cache[channel] or {} + if cache[hash] then + return cache[hash] + end + local receivers = {} + for key, val in pairs(tube_db) do + if val.cr == 1 and val.channel == channel and not vector.equals(val, pos) then + minetest.load_area(val) + local node_name = minetest.get_node(val).name + if node_name:find("pipeworks:teleport_tube") then + table.insert(receivers, val) + else + remove_tube(val) + end + end + end + cache[hash] = receivers + receiver_cache[channel] = cache + return receivers +end + +local help_text = minetest.formspec_escape( + S("Channels are public by default").."\n".. + S("Use : for fully private channels").."\n".. + S("Use ; for private receivers") +) + +local size = has_digilines and "8,5.9" or "8,4.4" + +local formspec = "formspec_version[2]size["..size.."]".. + pipeworks.fs_helpers.get_prepends(size).. + "image[0.5,0.3;1,1;pipeworks_teleport_tube_inv.png]".. + "label[1.75,0.8;"..S("Teleporting Tube").."]".. + "field[0.5,1.7;5,0.8;channel;"..S("Channel")..";${channel}]".. + "button_exit[5.5,1.7;2,0.8;save;"..S("Save").."]".. + "label[6.5,0.6;"..S("Receive").."]".. + "label[0.5,2.8;"..help_text.."]" + +if has_digilines then + formspec = formspec.. + "field[0.5,4.6;5,0.8;digiline_channel;"..S("Digiline Channel")..";${digiline_channel}]".. + "button_exit[5.5,4.6;2,0.8;save;"..S("Save").."]" +end + +local function update_meta(meta) + local channel = meta:get_string("channel") + local cr = meta:get_int("can_receive") == 1 + if channel == "" then + meta:set_string("infotext", S("Unconfigured Teleportation Tube")) + else + local desc = cr and "sending and receiving" or "sending" + meta:set_string("infotext", S("Teleportation Tube @1 on '@2'", desc, channel)) + end + local state = cr and "on" or "off" + meta:set_string("formspec", formspec.. + "image_button[6.4,0.8;1,0.6;pipeworks_button_"..state.. + ".png;cr_"..state..";;;false;pipeworks_button_interm.png]") +end + +local function update_tube(pos, channel, cr, player_name) + local meta = minetest.get_meta(pos) + if meta:get_string("channel") == channel and meta:get_int("can_receive") == cr then + return + end + if channel == "" then + meta:set_string("channel", "") + meta:set_int("can_receive", cr) + remove_tube(pos) + return + end + local name, mode = channel:match("^([^:;]+)([:;])") + if name and mode and name ~= player_name then + if mode == ":" then + minetest.chat_send_player(player_name, + S("Sorry, channel '@1' is reserved for exclusive use by @2", channel, name)) + return + elseif mode == ";" and cr ~= 0 then + minetest.chat_send_player(player_name, + S("Sorry, receiving from channel '@1' is reserved for @2", channel, name)) + return + end + end + meta:set_string("channel", channel) + meta:set_int("can_receive", cr) + set_tube(pos, channel, cr) +end + +local function receive_fields(pos, _, fields, sender) + if not fields.channel or not pipeworks.may_configure(pos, sender) then + return + end + local meta = minetest.get_meta(pos) + local channel = fields.channel:trim() + local cr = meta:get_int("can_receive") + if fields.cr_on then + cr = 0 + elseif fields.cr_off then + cr = 1 + end + if has_digilines and fields.digiline_channel then + meta:set_string("digiline_channel", fields.digiline_channel) + end + update_tube(pos, channel, cr, sender:get_player_name()) + update_meta(meta) +end + +local function can_go(pos, node, velocity, stack) + velocity.x = 0 + velocity.y = 0 + velocity.z = 0 + local src_meta = minetest.get_meta(pos) + local channel = src_meta:get_string("channel") + if channel == "" then + return {} + end + local receivers = get_receivers(pos, channel) + if #receivers == 0 then + return {} + end + local target = receivers[math.random(1, #receivers)] + if enable_logging then + local src_owner = src_meta:get_string("owner") + local dst_meta = minetest.get_meta(pos) + local dst_owner = dst_meta:get_string("owner") + minetest.log("action", string.format("[pipeworks] %s teleported from %s (owner=%s) to %s (owner=%s) via %s", + stack:to_string(), minetest.pos_to_string(pos), src_owner, minetest.pos_to_string(target), dst_owner, channel + )) + end + pos.x = target.x + pos.y = target.y + pos.z = target.z + return pipeworks.meseadjlist +end + +local function repair_tube(pos, node) + minetest.swap_node(pos, {name = node.name, param2 = node.param2}) + pipeworks.scan_for_tube_objects(pos) + local meta = minetest.get_meta(pos) + local channel = meta:get_string("channel") + if channel ~= "" then + set_tube(pos, channel, meta:get_int("can_receive")) + end + update_meta(meta) +end + +local function digiline_action(pos, _, digiline_channel, msg) + local meta = minetest.get_meta(pos) + if digiline_channel ~= meta:get_string("digiline_channel") then + return + end + local channel = meta:get_string("channel") + local can_receive = meta:get_int("can_receive") + if type(msg) == "string" then + channel = msg + elseif type(msg) == "table" then + if type(msg.channel) == "string" then + channel = msg.channel + end + if msg.can_receive == 1 or msg.can_receive == true then + can_receive = 1 + elseif msg.can_receive == 0 or msg.can_receive == false then + can_receive = 0 + end + else + return + end + local player_name = meta:get_string("owner") + update_tube(pos, channel, can_receive, player_name) + update_meta(meta) +end + +local def = { + tube = { + can_go = can_go, + on_repair = repair_tube, + }, + on_construct = function(pos) + local meta = minetest.get_meta(pos) + meta:set_int("can_receive", 1) -- Enabled by default + update_meta(meta) + end, + on_receive_fields = receive_fields, + on_destruct = remove_tube, +} + +if has_digilines then + def.after_place_node = function(pos, placer) + -- Set owner for digilines + minetest.get_meta(pos):set_string("owner", placer:get_player_name()) + pipeworks.after_place(pos) + end + def.digilines = { + receptor = { + rules = pipeworks.digilines_rules, + }, + effector = { + rules = pipeworks.digilines_rules, + action = digiline_action, + } + } +end + +pipeworks.register_tube("pipeworks:teleport_tube", { + description = S("Teleporting Pneumatic Tube Segment"), + inventory_image = "pipeworks_teleport_tube_inv.png", + noctr = { "pipeworks_teleport_tube_noctr.png" }, + plain = { "pipeworks_teleport_tube_plain.png" }, + ends = { "pipeworks_teleport_tube_end.png" }, + short = "pipeworks_teleport_tube_short.png", + node_def = def, +}) + +if minetest.get_modpath("mesecons_mvps") then + -- Update tubes when moved by pistons + mesecon.register_on_mvps_move(function(moved_nodes) + for _, n in ipairs(moved_nodes) do + if n.node.name:find("pipeworks:teleport_tube") then + local meta = minetest.get_meta(n.pos) + set_tube(n.pos, meta:get_string("channel"), meta:get_int("can_receive")) + end + end + end) +end + +-- Expose teleport tube database API for other mods +pipeworks.tptube = { + version = tube_db_version, + hash = hash_pos, + get_db = function() return tube_db end, + save_tube_db = save_tube_db, + remove_tube = remove_tube, + set_tube = set_tube, + save_tube = save_tube, + update_tube = update_tube, + update_meta = function(meta, cr) + -- Legacy behaviour + if cr ~= nil then + meta:set_int("can_receive", cr and 1 or 0) + end + update_meta(meta) + end, +} + +-- Load the database +read_tube_db() diff --git a/mods/pipeworks/tubes/vacuum.lua b/mods/pipeworks/tubes/vacuum.lua new file mode 100644 index 00000000..d78d8377 --- /dev/null +++ b/mods/pipeworks/tubes/vacuum.lua @@ -0,0 +1,127 @@ + +local S = minetest.get_translator("pipeworks") + +local has_vislib = minetest.get_modpath("vizlib") + +local enable_max = minetest.settings:get_bool("pipeworks_enable_items_per_tube_limit", true) +local max_items = tonumber(minetest.settings:get("pipeworks_max_items_per_tube")) or 30 +max_items = math.ceil(max_items / 2) -- Limit vacuuming to half the max limit + +local function vacuum(pos, radius) + radius = radius + 0.5 + local min_pos = vector.subtract(pos, radius) + local max_pos = vector.add(pos, radius) + local count = 0 + for _, obj in pairs(minetest.get_objects_in_area(min_pos, max_pos)) do + local entity = obj:get_luaentity() + if entity and entity.name == "__builtin:item" then + if entity.itemstring ~= "" then + pipeworks.tube_inject_item(pos, pos, vector.new(0, 0, 0), entity.itemstring) + entity.itemstring = "" + count = count + 1 + end + obj:remove() + if enable_max and count >= max_items then + return -- Don't break tube by vacuuming too many items + end + end + end +end + +local function set_timer(pos) + local timer = minetest.get_node_timer(pos) + -- Randomize timer so not all tubes vacuum at the same time + timer:start(math.random(10, 20) * 0.1) +end + +local function repair_tube(pos, was_node) + minetest.swap_node(pos, {name = was_node.name, param2 = was_node.param2}) + pipeworks.scan_for_tube_objects(pos) + set_timer(pos) +end + +local function show_area(pos, node, player) + if not player or player:get_wielded_item():get_name() ~= "" then + -- Only show area when using an empty hand + return + end + local radius = tonumber(minetest.get_meta(pos):get("dist")) or 2 + vizlib.draw_cube(pos, radius + 0.5, {player = player}) +end + +if pipeworks.enable_sand_tube then + pipeworks.register_tube("pipeworks:sand_tube", { + description = S("Vacuuming Pneumatic Tube Segment"), + inventory_image = "pipeworks_sand_tube_inv.png", + short = "pipeworks_sand_tube_short.png", + noctr = {"pipeworks_sand_tube_noctr.png"}, + plain = {"pipeworks_sand_tube_plain.png"}, + ends = {"pipeworks_sand_tube_end.png"}, + node_def = { + groups = {vacuum_tube = 1}, + tube = { + on_repair = repair_tube, + }, + on_construct = set_timer, + on_timer = function(pos, elapsed) + vacuum(pos, 2) + set_timer(pos) + end, + on_punch = has_vislib and show_area or nil, + }, + }) +end + +if pipeworks.enable_mese_sand_tube then + local formspec = "formspec_version[2]size[8,3]".. + pipeworks.fs_helpers.get_prepends("8,3").. + "image[0.5,0.3;1,1;pipeworks_mese_sand_tube_inv.png]".. + "label[1.75,0.8;"..S("Adjustable Vacuuming Tube").."]".. + "field[0.5,1.7;5,0.8;dist;"..S("Radius")..";${dist}]".. + "button_exit[5.5,1.7;2,0.8;save;"..S("Save").."]" + + pipeworks.register_tube("pipeworks:mese_sand_tube", { + description = S("Adjustable Vacuuming Tube"), + inventory_image = "pipeworks_mese_sand_tube_inv.png", + short = "pipeworks_mese_sand_tube_short.png", + noctr = {"pipeworks_mese_sand_tube_noctr.png"}, + plain = {"pipeworks_mese_sand_tube_plain.png"}, + ends = {"pipeworks_mese_sand_tube_end.png"}, + node_def = { + groups = {vacuum_tube = 1}, + tube = { + on_repair = repair_tube, + }, + on_construct = function(pos) + local meta = minetest.get_meta(pos) + meta:set_int("dist", 2) + meta:set_string("formspec", formspec) + meta:set_string("infotext", S("Adjustable Vacuuming Tube (@1m)", 2)) + set_timer(pos) + end, + on_timer = function(pos, elapsed) + local radius = minetest.get_meta(pos):get_int("dist") + vacuum(pos, radius) + set_timer(pos) + end, + on_receive_fields = function(pos, _, fields, sender) + if not fields.dist or not pipeworks.may_configure(pos, sender) then + return + end + local meta = minetest.get_meta(pos) + local dist = math.min(math.max(tonumber(fields.dist) or 0, 0), 8) + meta:set_int("dist", dist) + meta:set_string("infotext", S("Adjustable Vacuuming Tube (@1m)", dist)) + end, + on_punch = has_vislib and show_area or nil, + }, + }) +end + +minetest.register_lbm({ + label = "Vacuum tube node timer starter", + name = "pipeworks:vacuum_tube_start", + nodenames = {"group:vacuum_tube"}, + run_at_every_load = false, + action = set_timer, +}) diff --git a/mods/pipeworks/wielder.lua b/mods/pipeworks/wielder.lua new file mode 100644 index 00000000..0850e5a7 --- /dev/null +++ b/mods/pipeworks/wielder.lua @@ -0,0 +1,354 @@ +local S = minetest.get_translator("pipeworks") +local has_digilines = minetest.get_modpath("digilines") + +local function set_wielder_formspec(def, meta) + local width, height = def.wield_inv.width, def.wield_inv.height + local offset = 5.22 - width * 0.625 + local size = "10.2,"..(6.5 + height * 1.25 + (has_digilines and 1.25 or 0)) + local list_bg = "" + if minetest.get_modpath("i3") or minetest.get_modpath("mcl_formspec") then + list_bg = "style_type[box;colors=#666]" + for i=0, height-1 do + for j=0, width-1 do + list_bg = list_bg.."box["..offset+(i*1.25)..","..1.25+(j*1.25)..";1,1;]" + end + end + end + local inv_offset = 1.5 + height * 1.25 + local fs = "formspec_version[2]size["..size.."]".. + pipeworks.fs_helpers.get_prepends(size)..list_bg.. + "item_image[0.5,0.3;1,1;"..def.name.."_off]".. + "label[1.75,0.8;"..minetest.formspec_escape(def.description).."]".. + "list[context;"..def.wield_inv.name..";"..offset..",1.25;"..width..","..height..";]" + if has_digilines then + fs = fs.."field[1.5,"..inv_offset..";5,0.8;channel;"..S("Channel")..";${channel}]".. + "button_exit[6.5,"..inv_offset..";2,0.8;save;"..S("Save").."]".. + pipeworks.fs_helpers.get_inv(inv_offset + 1.25).."listring[]" + else + fs = fs..pipeworks.fs_helpers.get_inv(inv_offset).."listring[]" + end + meta:set_string("formspec", fs) + meta:set_string("infotext", def.description) +end + +local function wielder_action(def, pos, node, index) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + local list = inv:get_list(def.wield_inv.name) + local wield_index + if index then + if list[index] and (def.wield_hand or not list[index]:is_empty()) then + wield_index = index + end + else + for i, stack in ipairs(list) do + if not stack:is_empty() then + wield_index = i + break + end + end + end + if not wield_index and not def.wield_hand then + return + end + local dir = minetest.facedir_to_dir(node.param2) + local fakeplayer = fakelib.create_player({ + name = meta:get_string("owner"), + direction = vector.multiply(dir, -1), + position = pos, + inventory = inv, + wield_index = wield_index or 1, + wield_list = def.wield_inv.name, + }) + -- Under and above positions are intentionally switched. + local pointed = { + type = "node", + under = vector.subtract(pos, dir), + above = vector.subtract(pos, vector.multiply(dir, 2)), + } + def.action(fakeplayer, pointed) + if def.eject_drops then + for i, stack in ipairs(inv:get_list("main")) do + if not stack:is_empty() then + pipeworks.tube_inject_item(pos, pos, dir, stack) + inv:set_stack("main", i, ItemStack("")) + end + end + end +end + +local function wielder_on(def, pos, node) + if node.name ~= def.name.."_off" then + return + end + node.name = def.name.."_on" + minetest.swap_node(pos, node) + wielder_action(def, pos, node) +end + +local function wielder_off(def, pos, node) + if node.name == def.name.."_on" then + node.name = def.name.."_off" + minetest.swap_node(pos, node) + end +end + +local function wielder_digiline_action(def, pos, channel, msg) + local meta = minetest.get_meta(pos) + local set_channel = meta:get_string("channel") + if channel ~= set_channel then + return + end + if type(msg) ~= "table" then + if type(msg) == "string" then + if msg:sub(1, 8) == "activate" then + msg = {command = "activate", slot = tonumber(msg:sub(9))} + end + else + return + end + end + if msg.command == "activate" then + local node = minetest.get_node(pos) + local index = type(msg.slot) == "number" and msg.slot or nil + wielder_action(def, pos, node, index) + end +end + +function pipeworks.register_wielder(def) + for _,state in ipairs({"off", "on"}) do + local groups = { + snappy = 2, choppy = 2, oddly_breakable_by_hand = 2, + mesecon = 2, tubedevice = 1, tubedevice_receiver = 1, + axey = 1, handy = 1, pickaxey = 1, + not_in_creative_inventory = state == "on" and 1 or nil + } + minetest.register_node(def.name.."_"..state, { + description = def.description, + tiles = def.tiles[state], + paramtype2 = "facedir", + groups = groups, + is_ground_content = false, + _mcl_hardness = 0.6, + _sound_def = { + key = "node_sound_stone_defaults", + }, + drop = def.name.."_off", + mesecons = { + effector = { + rules = pipeworks.rules_all, + action_on = function(pos, node) + wielder_on(def, pos, node) + end, + action_off = function(pos, node) + wielder_off(def, pos, node) + end, + }, + }, + digilines = { + receptor = {}, + effector = { + action = function(pos, _, channel, msg) + wielder_digiline_action(def, pos, channel, msg) + end, + }, + }, + tube = { + can_insert = function(pos, node, stack, direction) + if def.eject_drops then + -- Prevent ejected items from being inserted + local dir = vector.multiply(minetest.facedir_to_dir(node.param2), -1) + if vector.equals(direction, dir) then + return false + end + end + local inv = minetest.get_meta(pos):get_inventory() + return inv:room_for_item(def.wield_inv.name, stack) + end, + insert_object = function(pos, node, stack) + local inv = minetest.get_meta(pos):get_inventory() + return inv:add_item(def.wield_inv.name, stack) + end, + input_inventory = def.wield_inv.name, + connect_sides = def.connect_sides, + can_remove = function(pos, node, stack) + return stack:get_count() + end, + }, + on_construct = function(pos) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + inv:set_size(def.wield_inv.name, def.wield_inv.width * def.wield_inv.height) + if def.eject_drops then + inv:set_size("main", 32) + end + set_wielder_formspec(def, meta) + end, + after_place_node = function(pos, placer) + pipeworks.scan_for_tube_objects(pos) + if not placer then + return + end + local node = minetest.get_node(pos) + node.param2 = minetest.dir_to_facedir(placer:get_look_dir(), true) + minetest.set_node(pos, node) + minetest.get_meta(pos):set_string("owner", placer:get_player_name()) + end, + after_dig_node = function(pos, oldnode, oldmetadata, digger) + for _,stack in ipairs(oldmetadata.inventory[def.wield_inv.name] or {}) do + if not stack:is_empty() then + minetest.add_item(pos, stack) + end + end + pipeworks.scan_for_tube_objects(pos) + end, + on_rotate = pipeworks.on_rotate, + allow_metadata_inventory_put = function(pos, listname, index, stack, player) + if not pipeworks.may_configure(pos, player) then return 0 end + return stack:get_count() + end, + allow_metadata_inventory_take = function(pos, listname, index, stack, player) + if not pipeworks.may_configure(pos, player) then return 0 end + return stack:get_count() + end, + allow_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player) + if not pipeworks.may_configure(pos, player) then return 0 end + return count + end, + on_receive_fields = function(pos, _, fields, sender) + if not fields.channel or not pipeworks.may_configure(pos, sender) then + return + end + minetest.get_meta(pos):set_string("channel", fields.channel) + end, + }) + end + table.insert(pipeworks.ui_cat_tube_list, def.name.."_off") +end + +local function get_tiles(name, stateful) + local tiles = {on = {}, off = {}} + for _,state in ipairs({"off", "on"}) do + for _,side in ipairs({"top", "bottom", "side2", "side1", "back", "front"}) do + local suffix = stateful[side] and "_"..state or "" + table.insert(tiles[state], "pipeworks_"..name.."_"..side..suffix..".png") + end + end + return tiles +end + +if pipeworks.enable_node_breaker then + pipeworks.register_wielder({ + name = "pipeworks:nodebreaker", + description = S("Node Breaker"), + tiles = get_tiles("nodebreaker", {top = 1, bottom = 1, side2 = 1, side1 = 1, front = 1}), + connect_sides = {top = 1, bottom = 1, left = 1, right = 1, back = 1}, + wield_inv = {name = "pick", width = 1, height = 1}, + wield_hand = true, + eject_drops = true, + action = function(fakeplayer, pointed) + local stack = fakeplayer:get_wielded_item() + local old_stack = ItemStack(stack) + local item_def = minetest.registered_items[stack:get_name()] + if item_def.on_use then + stack = item_def.on_use(stack, fakeplayer, pointed) or stack + fakeplayer:set_wielded_item(stack) + else + local node = minetest.get_node(pointed.under) + local node_def = minetest.registered_nodes[node.name] + if not node_def or not node_def.on_dig then + return + end + -- Check if the tool can dig the node + local tool = stack:get_tool_capabilities() + if not minetest.get_dig_params(node_def.groups, tool).diggable then + -- Try using hand if tool can't dig the node + local hand = ItemStack():get_tool_capabilities() + if not minetest.get_dig_params(node_def.groups, hand).diggable then + return + end + end + -- This must only check for false, because `on_dig` returning nil is the same as returning true. + if node_def.on_dig(pointed.under, node, fakeplayer) == false then + return + end + local sound = node_def.sounds and node_def.sounds.dug + if sound then + minetest.sound_play(sound, {pos = pointed.under}, true) + end + stack = fakeplayer:get_wielded_item() + end + if stack:get_name() == old_stack:get_name() then + -- Don't mechanically wear out tool + if stack:get_wear() ~= old_stack:get_wear() and stack:get_count() == old_stack:get_count() + and (item_def.wear_represents == nil or item_def.wear_represents == "mechanical_wear") then + fakeplayer:set_wielded_item(old_stack) + end + elseif not stack:is_empty() then + -- Tool got replaced by something else, treat it as a drop. + fakeplayer:get_inventory():add_item("main", stack) + fakeplayer:set_wielded_item("") + end + end, + }) + minetest.register_alias("technic:nodebreaker_off", "pipeworks:nodebreaker_off") + minetest.register_alias("technic:nodebreaker_on", "pipeworks:nodebreaker_on") + minetest.register_alias("technic:node_breaker_off", "pipeworks:nodebreaker_off") + minetest.register_alias("technic:node_breaker_on", "pipeworks:nodebreaker_on") + minetest.register_alias("auto_tree_tap:off", "pipeworks:nodebreaker_off") + minetest.register_alias("auto_tree_tap:on", "pipeworks:nodebreaker_on") +end + +if pipeworks.enable_deployer then + pipeworks.register_wielder({ + name = "pipeworks:deployer", + description = S("Deployer"), + tiles = get_tiles("deployer", {front = 1}), + connect_sides = {back = 1}, + wield_inv = {name = "main", width = 3, height = 3}, + action = function(fakeplayer, pointed) + local stack = fakeplayer:get_wielded_item() + local def = minetest.registered_items[stack:get_name()] + if def and def.on_place then + local new_stack, placed_pos = def.on_place(stack, fakeplayer, pointed) + fakeplayer:set_wielded_item(new_stack or stack) + -- minetest.item_place_node doesn't play sound to the placer + local sound = placed_pos and def.sounds and def.sounds.place + local name = fakeplayer:get_player_name() + if sound and name ~= "" then + minetest.sound_play(sound, {pos = placed_pos, to_player = name}, true) + end + end + end, + }) + minetest.register_alias("technic:deployer_off", "pipeworks:deployer_off") + minetest.register_alias("technic:deployer_on", "pipeworks:deployer_on") +end + +if pipeworks.enable_dispenser then + -- Override minetest.item_drop to negate its hardcoded offset + -- when the dropper is a fake player. + local item_drop = minetest.item_drop + -- luacheck: ignore 122 + function minetest.item_drop(stack, dropper, pos) + if dropper and dropper.is_fake_player then + pos = vector.new(pos.x, pos.y - 1.2, pos.z) + end + return item_drop(stack, dropper, pos) + end + pipeworks.register_wielder({ + name = "pipeworks:dispenser", + description = S("Dispenser"), + tiles = get_tiles("dispenser", {front = 1}), + connect_sides = {back = 1}, + wield_inv = {name = "main", width = 3, height = 3}, + action = function(fakeplayer) + local stack = fakeplayer:get_wielded_item() + local def = minetest.registered_items[stack:get_name()] + if def and def.on_drop then + local pos = fakeplayer:get_pos() + fakeplayer:set_wielded_item(def.on_drop(stack, fakeplayer, pos) or stack) + end + end, + }) +end diff --git a/mods/sandwiches/init.lua b/mods/sandwiches/init.lua index 8b096b3b..6739653b 100644 --- a/mods/sandwiches/init.lua +++ b/mods/sandwiches/init.lua @@ -183,7 +183,7 @@ if minetest.get_modpath("bushes_classic") or sandwiches.ingredient_support.berry {"group:food_sugar", "group:food_pot", "group:food_sugar"}, {"group:food_grapes", "group:food_sugar", "group:food_grapes"}, }, - replacements = {{"group:food_pot", "group:food_pot"}}, + replacements = {{"group:food_pot", pot }}, }) minetest.register_craftitem("sandwiches:multi_jam", { @@ -199,7 +199,7 @@ if minetest.get_modpath("bushes_classic") or sandwiches.ingredient_support.berry {"group:food_sugar", "group:food_pot", "group:food_sugar"}, {"group:food_berry", "group:food_sugar", "group:food_berry"}, }, - replacements = {{"group:food_pot", "group:food_pot"}}, + replacements = {{"group:food_pot", pot }}, }) minetest.register_craft({ output = "sandwiches:multi_jam 3", diff --git a/mods/technic_plus_beta/README.md b/mods/technic_plus_beta/README.md new file mode 100644 index 00000000..ce79a2f7 --- /dev/null +++ b/mods/technic_plus_beta/README.md @@ -0,0 +1,178 @@ +Technic +----------------- + +A mod for [minetest](http://www.minetest.net) + +[![mtt](https://github.com/mt-mods/technic/actions/workflows/mtt.yml/badge.svg)](https://github.com/mt-mods/technic/actions/workflows/mtt.yml?query=branch%3Amaster) +[![luacheck](https://github.com/mt-mods/technic/actions/workflows/luacheck.yml/badge.svg)](https://github.com/mt-mods/technic/actions/workflows/luacheck.yml?query=branch%3Amaster) +[![mineunit](https://github.com/mt-mods/technic/actions/workflows/mineunit.yml/badge.svg)](https://github.com/mt-mods/technic/actions/workflows/mineunit.yml?query=branch%3Amaster) +[![mineunit](https://byob.yarr.is/mt-mods/technic/coverage)](https://github.com/mt-mods/technic/actions/workflows/mineunit.yml?query=branch%3Amaster+is%3Asuccess) + +[![License](https://img.shields.io/badge/license-LGPLv2.0%2B-purple.svg)](https://www.gnu.org/licenses/old-licenses/lgpl-2.0.en.html) +[![ContentDB](https://content.minetest.net/packages/mt-mods/technic_plus/shields/downloads/)](https://content.minetest.net/packages/mt-mods/technic_plus/) + + +# Overview + + + +The technic modpack extends the Minetest game with many new elements, +mainly constructable machines and tools. It is a large modpack, and +tends to dominate gameplay when it is used. This manual describes how +to use the technic modpack, mainly from a player's perspective. + +The technic modpack depends on some other modpacks: + +* the basic Minetest game +* mesecons, which supports the construction of logic systems based on + signaling elements +* pipeworks, which supports the automation of item transport +* moreores, which provides some additional ore types +* basic_materials, which provides some basic craft items + +This manual doesn't explain how to use these other modpacks, which have +their own manuals: + +* [Minetest Game Documentation](https://wiki.minetest.net/Main_Page) +* [Mesecons Documentation](http://mesecons.net/items.html) +* [Pipeworks Documentation](https://github.com/mt-mods/pipeworks/-/wikis/home) +* [Moreores Forum Post](https://forum.minetest.net/viewtopic.php?t=549) +* [Basic materials Repository](https://github.com/mt-mods/basic_materials) + +Recipes for constructable items in technic are generally not guessable, +and are also not specifically documented here. You should use a +craft guide mod to look up the recipes in-game. For the best possible +guidance, use the unified\_inventory mod, with which technic registers +its specialised recipe types. + +# Documentation + +In-game: + +* [Resources](./technic/doc/resources.md) +* [Substances](./technic/doc/substances.md) +* [Processes](./technic/doc/processes.md) +* [Chests](./technic/doc/chests.md) +* [Radioactivity](./technic/doc/radioactivity.md) +* [Electrical power](./technic/doc/power.md) +* [Powered machines](./technic/doc/machines.md) +* [Generators](./technic/doc/generators.md) +* [Forceload anchor](./technic/doc/anchor.md) +* [Digilines](./technic/doc/digilines.md) +* [Mesecons](./technic/doc/mesecons.md) +* [Tools](./technic/doc/tools.md) + +Mod development: + +* [Api](./technic/doc/api.md) + +subjects missing from this manual: + +* frames +* templates + +## FAQ + +1. My technic circuit doesn't work. No power is distributed. + * A: Make sure you have a switching station connected. + +# Notes + +This is a maintained fork of https://github.com/minetest-mods/technic with various enhancements. +Suitable for multiplayer environments. + +* Chainsaw and HV Quarry re-implementation (@OgelGames) +* Switching station lag/polyfuse and globalstep execution (@BuckarooBanzay) +* No forceload hacks +* Additional HV machines (@h-v-smacker) +* LV, MV, and HV digiline cables (@S-S-X and @SwissalpS) +* Chests with digilines and more complete user interface +* Most of network code rewritten +* Many bugs that allowed cheating fixed +* CNC machine with pipeworks, upgrades and digiline support +* Better performance +* various others... + +## Compatibility + +This mod is meant as a **drop-in replacement** for the upstream `technic` mod. + +It also provides some additional machines and items, notably: + +* HV Grinder, Furnace, and Compressor +* LV Lamp +* LV, MV, and HV Digiline cables + +Note that the `wrench` mod has been separated from the modpack. It can now be found at [mt-mods/wrench](https://github.com/mt-mods/wrench). + +# Recommended mods + +Dependencies: + +* https://github.com/minetest-mods/mesecons +* https://github.com/minetest-mods/moreores +* https://github.com/mt-mods/pipeworks +* https://github.com/mt-mods/basic_materials + +Recommended optional Dependencies: + +* https://github.com/minetest-mods/digilines + +Recommended mods that build on the `technic mod`: + +* https://github.com/mt-mods/jumpdrive +* https://github.com/OgelGames/powerbanks + +# Settings (worldpath/technic.conf) + +| Configuration key | Description +|----------------------------------------------|-----------------------------------------------------------------------------------------------------------------------| +| enable_mining_drill | | +| enable_mining_laser | | +| enable_flashlight | | +| enable_wind_mill | | +| enable_corium_griefing | | +| enable_radiation_protection | | +| enable_radiation_throttling | enable lag- and per-second-throttling of radiation damage | +| enable_entity_radiation_damage | | +| enable_longterm_radiation_damage | | +| enable_nuclear_reactor_digiline_selfdestruct | | +| admin_priv | Privileges required to use administrative chat commands like cache flushing and enabling/disabling machines globally. | +| quarry_max_depth | max depth of the quarry. | +| quarry_time_limit | max cpu time in μs allowed per quarry step. | +| quarry_dig_particles | Enables particle effect with the quarry digs a node. | +| network_overload_reset_time | After network conflict wait this many seconds before attempting to activate conflicting networks again. | +| switch_off_delay_seconds | switching station off delay. | + +See defaults for settings here: [technic/config.lua](./technic/config.lua) + +See configuration for CNC machines here: [technic_cnc/README.md](./technic_cnc/README.md) + +# Chat commands + +* **/technic_flush_switch_cache** clears the switching station cache (stops all unloaded switches) +* **/powerctrl [on|off]** enable/disable technic power distribution globally +* **/technic_get_active_networks [minlag]** list all active networks with additional network data +* **/technic_clear_network_data** removes all networks and network nodes from the cache + +# Contributors + +* kpoppel +* Nekogloop +* Nore/Ekdohibs +* ShadowNinja +* VanessaE +* BuckarooBanzay +* OgelGames +* int-ua +* S-S-X +* H-V-Smacker +* groxxda +* SwissalpS +* And many others... + +# License + +Unless otherwise stated, all components of this modpack are licensed under the +LGPL, V2 or later. See also the individual mod folders for their +secondary/alternate licenses, if any. diff --git a/mods/technic_plus_beta/extranodes/init.lua b/mods/technic_plus_beta/extranodes/init.lua new file mode 100644 index 00000000..7ba1dbab --- /dev/null +++ b/mods/technic_plus_beta/extranodes/init.lua @@ -0,0 +1,437 @@ +-- Minetest 0.4.6 mod: extranodes +-- namespace: technic +local S = minetest.get_translator(minetest.get_current_modname()) + +if minetest.get_modpath("moreblocks") then + + -- register stairsplus/circular_saw nodes + -- we skip blast resistant concrete and uranium intentionally + -- chrome seems to be too hard of a metal to be actually sawable + + stairsplus:register_all("technic", "marble", "technic:marble", { + description=S("Marble"), + groups={cracky=3, not_in_creative_inventory=1}, + tiles={"technic_marble.png"}, + }) + + stairsplus:register_all("technic", "marble_bricks", "technic:marble_bricks", { + description=S("Marble Bricks"), + groups={cracky=3, not_in_creative_inventory=1}, + tiles={"technic_marble_bricks.png"}, + }) + + stairsplus:register_all("technic", "granite", "technic:granite", { + description=S("Granite"), + groups={cracky=1, not_in_creative_inventory=1}, + tiles={"technic_granite.png"}, + }) + + stairsplus:register_all("technic", "granite_bricks", "technic:granite_bricks", { + description=S("Granite Bricks"), + groups={cracky=1, not_in_creative_inventory=1}, + tiles={"technic_granite_bricks.png"}, + }) + + stairsplus:register_all("technic", "concrete", "basic_materials:concrete_block", { + description=S("Concrete"), + groups={cracky=3, not_in_creative_inventory=1}, + tiles={"basic_materials_concrete_block.png"}, + }) + + stairsplus:register_all("technic", "zinc_block", "technic:zinc_block", { + description=S("Zinc Block"), + groups={cracky=1, not_in_creative_inventory=1}, + tiles={"technic_zinc_block.png"}, + }) + + stairsplus:register_all("technic", "cast_iron_block", "technic:cast_iron_block", { + description=S("Cast Iron Block"), + groups={cracky=1, not_in_creative_inventory=1}, + tiles={"technic_cast_iron_block.png"}, + }) + + stairsplus:register_all("technic", "carbon_steel_block", "technic:carbon_steel_block", { + description=S("Carbon Steel Block"), + groups={cracky=1, not_in_creative_inventory=1}, + tiles={"technic_carbon_steel_block.png"}, + }) + + stairsplus:register_all("technic", "stainless_steel_block", "technic:stainless_steel_block", { + description=S("Stainless Steel Block"), + groups={cracky=1, not_in_creative_inventory=1}, + tiles={"technic_stainless_steel_block.png"}, + }) + + stairsplus:register_all("technic", "blast_resistant_concrete", "technic:blast_resistant_concrete", { + description = S("Blast-resistant Concrete"), + tiles = {"technic_blast_resistant_concrete_block.png",}, + groups = {cracky = 1, level = 3, concrete = 1}, + on_blast = function(pos, intensity) + if intensity > 3 then + minetest.remove_node(pos) + minetest.add_item(pos, "technic:blast_resistant_concrete") + end + end + }) + + -- FIXME: Clean this function up somehow + local function register_technic_stairs_alias(modname, origname, newmod, newname) + minetest.register_alias(modname .. ":slab_" .. origname, newmod..":slab_" .. newname) + minetest.register_alias(modname .. ":slab_" .. origname .. + "_inverted", newmod..":slab_" .. newname .. "_inverted") + minetest.register_alias(modname .. ":slab_" .. origname .. "_wall", newmod..":slab_" .. newname .. "_wall") + minetest.register_alias(modname .. ":slab_" .. origname .. + "_quarter", newmod..":slab_" .. newname .. "_quarter") + minetest.register_alias(modname .. ":slab_" .. origname .. + "_quarter_inverted", newmod..":slab_" .. newname .. "_quarter_inverted") + minetest.register_alias(modname .. ":slab_" .. origname .. + "_quarter_wall", newmod..":slab_" .. newname .. "_quarter_wall") + minetest.register_alias(modname .. ":slab_" .. origname .. + "_three_quarter", newmod..":slab_" .. newname .. "_three_quarter") + minetest.register_alias(modname .. ":slab_" .. origname .. + "_three_quarter_inverted", newmod..":slab_" .. newname .. "_three_quarter_inverted") + minetest.register_alias(modname .. ":slab_" .. origname .. + "_three_quarter_wall", newmod..":slab_" .. newname .. "_three_quarter_wall") + minetest.register_alias(modname .. ":stair_" .. origname, newmod..":stair_" .. newname) + minetest.register_alias(modname .. ":stair_" .. origname .. + "_inverted", newmod..":stair_" .. newname .. "_inverted") + minetest.register_alias(modname .. ":stair_" .. origname .. "_wall", newmod..":stair_" .. newname .. "_wall") + minetest.register_alias(modname .. ":stair_" .. origname .. + "_wall_half", newmod..":stair_" .. newname .. "_wall_half") + minetest.register_alias(modname .. ":stair_" .. origname .. + "_wall_half_inverted", newmod..":stair_" .. newname .. "_wall_half_inverted") + minetest.register_alias(modname .. ":stair_" .. origname .. "_half", newmod..":stair_" .. newname .. "_half") + minetest.register_alias(modname .. ":stair_" .. origname .. + "_half_inverted", newmod..":stair_" .. newname .. "_half_inverted") + minetest.register_alias(modname .. ":stair_" .. origname .. + "_right_half", newmod..":stair_" .. newname .. "_right_half") + minetest.register_alias(modname .. ":stair_" .. origname .. + "_right_half_inverted", newmod..":stair_" .. newname .. "_right_half_inverted") + minetest.register_alias(modname .. ":stair_" .. origname .. + "_wall_half", newmod..":stair_" .. newname .. "_wall_half") + minetest.register_alias(modname .. ":stair_" .. origname .. + "_wall_half_inverted", newmod..":stair_" .. newname .. "_wall_half_inverted") + minetest.register_alias(modname .. ":stair_" .. origname .. "_inner", newmod..":stair_" .. newname .. "_inner") + minetest.register_alias(modname .. ":stair_" .. origname .. + "_inner_inverted", newmod..":stair_" .. newname .. "_inner_inverted") + minetest.register_alias(modname .. ":stair_" .. origname .. "_outer", newmod..":stair_" .. newname .. "_outer") + minetest.register_alias(modname .. ":stair_" .. origname .. + "_outer_inverted", newmod..":stair_" .. newname .. "_outer_inverted") + minetest.register_alias(modname .. ":panel_" .. origname .. + "_bottom", newmod..":panel_" .. newname .. "_bottom") + minetest.register_alias(modname .. ":panel_" .. origname .. "_top", newmod..":panel_" .. newname .. "_top") + minetest.register_alias(modname .. ":panel_" .. origname .. + "_vertical", newmod..":panel_" .. newname .. "_vertical") + minetest.register_alias(modname .. ":micro_" .. origname .. + "_bottom", newmod..":micro_" .. newname .. "_bottom") + minetest.register_alias(modname .. ":micro_" .. origname .. "_top", newmod..":micro_" .. newname .. "_top") + end + + register_technic_stairs_alias("stairsplus", "concrete", "technic", "concrete") + register_technic_stairs_alias("stairsplus", "marble", "technic", "marble") + register_technic_stairs_alias("stairsplus", "granite", "technic", "granite") + register_technic_stairs_alias("stairsplus", "marble_bricks", "technic", "marble_bricks") + +end + +local iclip_def = { + description = S("Insulator/cable clip"), + drawtype = "mesh", + mesh = "technic_insulator_clip.obj", + tiles = {"technic_insulator_clip.png"}, + paramtype = "light", + is_ground_content = false, + groups = {choppy=1, snappy=1, oddly_breakable_by_hand=1 }, + sounds = default.node_sound_stone_defaults(), +} + +local iclipfence_def = { + description = S("Insulator/cable clip"), + tiles = {"technic_insulator_clip.png"}, + is_ground_content = false, + paramtype = "light", + drawtype = "nodebox", + node_box = { + type = "connected", + fixed = { + { -0.25, 0.75, -0.25, 0.25, 1.25, 0.25 }, -- the clip on top + { -0.125, 0.6875, -0.125, 0.125, 0.75, 0.125 }, + { -0.1875, 0.625, -0.1875, 0.1875, 0.6875, 0.1875 }, + { -0.125, 0.5625, -0.125, 0.125, 0.625, 0.125 }, + { -0.1875, 0.5, -0.1875, 0.1875, 0.5625, 0.1875 }, + { -0.125, 0.4375, -0.125, 0.125, 0.5, 0.125 }, + { -0.1875, 0.375, -0.1875, 0.1875, 0.4375, 0.1875 }, + { -0.125, -0.5, -0.125, 0.125, 0.375, 0.125 }, -- the post, slightly short + }, + -- connect_top = + -- connect_bottom = + connect_front = {{-1/16,3/16,-1/2,1/16,5/16,-1/8}, + {-1/16,-5/16,-1/2,1/16,-3/16,-1/8}}, + connect_left = {{-1/2,3/16,-1/16,-1/8,5/16,1/16}, + {-1/2,-5/16,-1/16,-1/8,-3/16,1/16}}, + connect_back = {{-1/16,3/16,1/8,1/16,5/16,1/2}, + {-1/16,-5/16,1/8,1/16,-3/16,1/2}}, + connect_right = {{1/8,3/16,-1/16,1/2,5/16,1/16}, + {1/8,-5/16,-1/16,1/2,-3/16,1/16}}, + }, + connects_to = {"group:fence", "group:wood", "group:tree"}, + groups = {fence=1, choppy=1, snappy=1, oddly_breakable_by_hand=1 }, + sounds = default.node_sound_stone_defaults(), +} + +local sclip_tex = { + "technic_insulator_clip.png", + { name = "strut.png^technic_steel_strut_overlay.png", color = "white" }, + { name = "strut.png", color = "white" } +} + +local streetsmod = minetest.get_modpath("streets") or minetest.get_modpath ("steelsupport") +-- cheapie's fork breaks it into several individual mods, with differernt names for the same content. + +if streetsmod then + sclip_tex = { + "technic_insulator_clip.png", + { name = "streets_support.png^technic_steel_strut_overlay.png", color = "white" }, + { name = "streets_support.png", color = "white" } + } +end + +local sclip_def = { + description = S("Steel strut with insulator/cable clip"), + drawtype = "mesh", + mesh = "technic_steel_strut_with_insulator_clip.obj", + tiles = sclip_tex, + paramtype = "light", + paramtype2 = "wallmounted", + is_ground_content = false, + sounds = default.node_sound_stone_defaults(), + groups = { choppy=1, cracky=1 }, + backface_culling = false +} + +if minetest.get_modpath("unifieddyes") then + iclip_def.paramtype2 = "colorwallmounted" + iclip_def.palette = "unifieddyes_palette_colorwallmounted.png" + iclip_def.after_place_node = function(pos, placer, itemstack, pointed_thing) + unifieddyes.fix_rotation(pos, placer, itemstack, pointed_thing) + end + iclip_def.groups = {choppy=1, snappy=1, oddly_breakable_by_hand=1, ud_param2_colorable = 1} + iclip_def.on_dig = unifieddyes.on_dig + + iclipfence_def.paramtype2 = "color" + iclipfence_def.palette = "unifieddyes_palette_extended.png" + iclipfence_def.on_construct = unifieddyes.on_construct + iclipfence_def.groups = {fence=1, choppy=1, snappy=1, oddly_breakable_by_hand=1, ud_param2_colorable = 1} + iclipfence_def.on_dig = unifieddyes.on_dig + + sclip_def.paramtype2 = "colorwallmounted" + sclip_def.palette = "unifieddyes_palette_colorwallmounted.png" + sclip_def.after_place_node = function(pos, placer, itemstack, pointed_thing) + unifieddyes.fix_rotation(pos, placer, itemstack, pointed_thing) + end + sclip_def.on_dig = unifieddyes.on_dig + sclip_def.groups = {choppy=1, cracky=1, ud_param2_colorable = 1} +end + +minetest.register_node(":technic:insulator_clip", iclip_def) +minetest.register_node(":technic:insulator_clip_fencepost", iclipfence_def) + +minetest.register_craft({ + output = "technic:insulator_clip", + recipe = { + { "", "dye:white", ""}, + { "", "technic:raw_latex", ""}, + { "technic:raw_latex", "default:stone", "technic:raw_latex"}, + } +}) + +minetest.register_craft({ + output = "technic:insulator_clip_fencepost 2", + recipe = { + { "", "dye:white", ""}, + { "", "technic:raw_latex", ""}, + { "technic:raw_latex", "default:fence_wood", "technic:raw_latex"}, + } +}) + +local steelmod = minetest.get_modpath("steel") + +if streetsmod or steelmod then + minetest.register_node(":technic:steel_strut_with_insulator_clip", sclip_def) + + if steelmod then + minetest.register_craft({ + output = "technic:steel_strut_with_insulator_clip", + recipe = { + {"technic:insulator_clip_fencepost"}, + {"steel:strut_mount"} + } + }) + + minetest.register_craft({ + output = "technic:steel_strut_with_insulator_clip", + recipe = { + {"technic:insulator_clip_fencepost", "" }, + {"steel:strut", "default:steel_ingot" }, + } + }) + + elseif streetsmod then + minetest.register_craft({ + output = "technic:steel_strut_with_insulator_clip", + recipe = { + {"technic:insulator_clip_fencepost", "" }, + {"streets:steel_support", "default:steel_ingot" }, + } + }) + end +end + +if minetest.get_modpath("unifieddyes") then + + unifieddyes.register_color_craft({ + output = "technic:insulator_clip_fencepost", + palette = "extended", + type = "shapeless", + neutral_node = "technic:insulator_clip_fencepost", + recipe = { + "NEUTRAL_NODE", + "MAIN_DYE" + } + }) + + unifieddyes.register_color_craft({ + output = "technic:insulator_clip", + palette = "wallmounted", + type = "shapeless", + neutral_node = "technic:insulator_clip", + recipe = { + "NEUTRAL_NODE", + "MAIN_DYE" + } + }) + + unifieddyes.register_color_craft({ + output = "technic:steel_strut_with_insulator_clip", + palette = "wallmounted", + type = "shapeless", + neutral_node = "", + recipe = { + "technic:steel_strut_with_insulator_clip", + "MAIN_DYE" + } + }) + + if steelmod then + unifieddyes.register_color_craft({ + output = "technic:steel_strut_with_insulator_clip", + palette = "wallmounted", + neutral_node = "", + recipe = { + { "technic:insulator_clip_fencepost", "MAIN_DYE" }, + { "steel:strut_mount", "" }, + } + }) + end + + if streetsmod then + unifieddyes.register_color_craft({ + output = "technic:steel_strut_with_insulator_clip", + palette = "wallmounted", + neutral_node = "technic:steel_strut_with_insulator_clip", + recipe = { + { "technic:insulator_clip_fencepost", "MAIN_DYE" }, + { "streets:steel_support", "default:steel_ingot" }, + } + }) + end +end + +for i = 0, 31 do + minetest.register_alias("technic:concrete_post"..i, + "technic:concrete_post") +end +for i = 32, 63 do + minetest.register_alias("technic:concrete_post"..i, + "technic:concrete_post_with_platform") +end + +minetest.register_craft({ + output = 'technic:concrete_post_platform 6', + recipe = { + {'basic_materials:concrete_block','technic:concrete_post','basic_materials:concrete_block'}, + } +}) + +minetest.register_craft({ + output = 'technic:concrete_post 12', + recipe = { + {'basic_materials:concrete_block','basic_materials:steel_bar','basic_materials:concrete_block'}, + {'basic_materials:concrete_block','basic_materials:steel_bar','basic_materials:concrete_block'}, + {'basic_materials:concrete_block','basic_materials:steel_bar','basic_materials:concrete_block'}, + } +}) + +local box_platform = {-0.5, 0.3, -0.5, 0.5, 0.5, 0.5} +local box_post = {-0.15, -0.5, -0.15, 0.15, 0.5, 0.15} +local box_front = {-0.1, -0.3, -0.5, 0.1, 0.3, 0} +local box_back = {-0.1, -0.3, 0, 0.1, 0.3, 0.5} +local box_left = {-0.5, -0.3, -0.1, 0, 0.3, 0.1} +local box_right = {0, -0.3, -0.1, 0.5, 0.3, 0.1} + +minetest.register_node(":technic:concrete_post_platform", { + description = S("Concrete Post Platform"), + tiles = {"basic_materials_concrete_block.png",}, + groups={cracky=1, level=2}, + is_ground_content = false, + sounds = default.node_sound_stone_defaults(), + paramtype = "light", + drawtype = "nodebox", + node_box = { + type = "fixed", + fixed = {box_platform} + }, + on_place = function (itemstack, placer, pointed_thing) + local node = minetest.get_node(pointed_thing.under) + if node.name ~= "technic:concrete_post" then + return minetest.item_place_node(itemstack, placer, pointed_thing) + end + minetest.set_node(pointed_thing.under, {name="technic:concrete_post_with_platform"}) + itemstack:take_item() + placer:set_wielded_item(itemstack) + return itemstack + end, +}) + +for platform = 0, 1 do + local after_dig_node = nil + if platform == 1 then + after_dig_node = function(pos, old_node) + old_node.name = "technic:concrete_post" + minetest.set_node(pos, old_node) + end + end + + minetest.register_node(":technic:concrete_post"..(platform == 1 and "_with_platform" or ""), { + description = S("Concrete Post"), + tiles = {"basic_materials_concrete_block.png"}, + groups = {cracky=1, level=2, concrete_post=1, not_in_creative_inventory=platform}, + is_ground_content = false, + sounds = default.node_sound_stone_defaults(), + drop = (platform == 1 and "technic:concrete_post_platform" or + "technic:concrete_post"), + paramtype = "light", + sunlight_propagates = true, + drawtype = "nodebox", + connects_to = {"group:concrete", "group:concrete_post"}, + node_box = { + type = "connected", + fixed = {box_post, (platform == 1 and box_platform or nil)}, + connect_front = box_front, + connect_back = box_back, + connect_left = box_left, + connect_right = box_right, + }, + after_dig_node = after_dig_node, + }) +end diff --git a/mods/technic_plus_beta/extranodes/locale/extranodes.de.tr b/mods/technic_plus_beta/extranodes/locale/extranodes.de.tr new file mode 100644 index 00000000..58e035fd --- /dev/null +++ b/mods/technic_plus_beta/extranodes/locale/extranodes.de.tr @@ -0,0 +1,20 @@ +# textdomain: extranodes + +# German Translation for technic_extranodes +# Deutsche Übersetzung von technic_extranodes +# by Xanthin + +Marble=Marmor +Marble Bricks=Marmorziegel +Granite=Granit +Concrete=Beton +Blast-resistant Concrete= +Granite Bricks= +Zinc Block= +Cast Iron Block= +Carbon Steel Block= +Stainless Steel Block= +Insulator/cable clip= +Steel strut with insulator/cable clip= +Concrete Post Platform=Betonpfostenplattform +Concrete Post=Betonpfosten diff --git a/mods/technic_plus_beta/extranodes/locale/extranodes.es.tr b/mods/technic_plus_beta/extranodes/locale/extranodes.es.tr new file mode 100644 index 00000000..27f630cf --- /dev/null +++ b/mods/technic_plus_beta/extranodes/locale/extranodes.es.tr @@ -0,0 +1,18 @@ +# textdomain: extranodes + +# technic_extranodes traducido por Carlos Barraza + +Marble=Mármol +Marble Bricks=Ladrillos de mármol +Granite=Granito +Concrete=Concreto +Blast-resistant Concrete= +Granite Bricks= +Zinc Block= +Cast Iron Block= +Carbon Steel Block= +Stainless Steel Block= +Insulator/cable clip= +Steel strut with insulator/cable clip= +Concrete Post Platform=Plataforma de concreto +Concrete Post=Postes de concreto diff --git a/mods/technic_plus_beta/extranodes/locale/extranodes.fr.tr b/mods/technic_plus_beta/extranodes/locale/extranodes.fr.tr new file mode 100644 index 00000000..792b7212 --- /dev/null +++ b/mods/technic_plus_beta/extranodes/locale/extranodes.fr.tr @@ -0,0 +1,18 @@ +# textdomain: extranodes + +# technic_extranodes translation template + +Marble=Marbre +Marble Bricks=Briques en marbre +Granite=Granite +Concrete=Béton +Blast-resistant Concrete= +Granite Bricks=Briques en granite +Zinc Block=Bloc de zinc +Cast Iron Block=Bloc de fonte +Carbon Steel Block=Bloc d'acier +Stainless Steel Block=Bloc en acier inoxydable +Insulator/cable clip=Isolateur +Steel strut with insulator/cable clip=Isolateur avec support en acier +Concrete Post Platform=Plateforme en béton +Concrete Post=Pilier en béton diff --git a/mods/technic_plus_beta/extranodes/locale/extranodes.ja.tr b/mods/technic_plus_beta/extranodes/locale/extranodes.ja.tr new file mode 100644 index 00000000..a9572a0e --- /dev/null +++ b/mods/technic_plus_beta/extranodes/locale/extranodes.ja.tr @@ -0,0 +1,20 @@ +# textdomain: extranodes + +# technic_extranodes japanese translation +# technic_extranodesの日本語への翻訳 +# by damiemk + +Marble=大理石 +Marble Bricks=大理石のレンガ +Granite=花崗岩 +Concrete=コンクリート +Blast-resistant Concrete= +Granite Bricks= +Zinc Block= +Cast Iron Block= +Carbon Steel Block= +Stainless Steel Block= +Insulator/cable clip= +Steel strut with insulator/cable clip= +Concrete Post Platform=コンクリートのプラットフォーム +Concrete Post=コンクリートポスト diff --git a/mods/technic_plus_beta/extranodes/locale/extranodes.pl.tr b/mods/technic_plus_beta/extranodes/locale/extranodes.pl.tr new file mode 100644 index 00000000..1439dc7a --- /dev/null +++ b/mods/technic_plus_beta/extranodes/locale/extranodes.pl.tr @@ -0,0 +1,20 @@ +# textdomain: extranodes + +# Polish Translation for technic_extranodes +# Polskie tłumaczenie technic_extranodes +# by mat9117 + +Marble=Marmur +Marble Bricks=Marmurowe cegły +Granite=Granit +Concrete=Beton +Blast-resistant Concrete= +Granite Bricks= +Zinc Block= +Cast Iron Block= +Carbon Steel Block= +Stainless Steel Block= +Insulator/cable clip= +Steel strut with insulator/cable clip= +Concrete Post Platform=Betonowa platforma +Concrete Post=Betonowy słup diff --git a/mods/technic_plus_beta/extranodes/locale/extranodes.pt_BR.tr b/mods/technic_plus_beta/extranodes/locale/extranodes.pt_BR.tr new file mode 100644 index 00000000..57e79f75 --- /dev/null +++ b/mods/technic_plus_beta/extranodes/locale/extranodes.pt_BR.tr @@ -0,0 +1,20 @@ +# textdomain: extranodes + +# Braziliam portuguese translation for technic_extranodes +# Tradução portuguesa brasileira para technic_extranodes +# By Sires + +Marble=Mármore +Marble Bricks=Tijolos de Mármore +Granite=Granito +Concrete=Concreto +Blast-resistant Concrete= +Granite Bricks= +Zinc Block= +Cast Iron Block= +Carbon Steel Block= +Stainless Steel Block= +Insulator/cable clip= +Steel strut with insulator/cable clip= +Concrete Post Platform=Plataforma para Poste de Concreto +Concrete Post=Poste de Concreto diff --git a/mods/technic_plus_beta/extranodes/locale/extranodes.tr.tr b/mods/technic_plus_beta/extranodes/locale/extranodes.tr.tr new file mode 100644 index 00000000..bb969248 --- /dev/null +++ b/mods/technic_plus_beta/extranodes/locale/extranodes.tr.tr @@ -0,0 +1,18 @@ +# textdomain: extranodes + +# turkish translation by mahmutelmas06 + +Marble=Mermer +Marble Bricks=Mermer tuğla +Granite=Granit +Concrete=Beton +Blast-resistant Concrete= +Granite Bricks= +Zinc Block= +Cast Iron Block= +Carbon Steel Block= +Stainless Steel Block= +Insulator/cable clip= +Steel strut with insulator/cable clip= +Concrete Post Platform=Beton direk platformu +Concrete Post=Beton direk diff --git a/mods/technic_plus_beta/extranodes/locale/extranodes.zh_CN.tr b/mods/technic_plus_beta/extranodes/locale/extranodes.zh_CN.tr new file mode 100644 index 00000000..782c0c24 --- /dev/null +++ b/mods/technic_plus_beta/extranodes/locale/extranodes.zh_CN.tr @@ -0,0 +1,16 @@ +# textdomain: extranodes + +Marble=大理石 +Marble Bricks=大理石砖 +Granite=花岗岩 +Concrete=混凝土 +Blast-resistant Concrete= +Granite Bricks= +Zinc Block= +Cast Iron Block= +Carbon Steel Block= +Stainless Steel Block= +Insulator/cable clip= +Steel strut with insulator/cable clip= +Concrete Post Platform=混凝土柱平台 +Concrete Post=混凝土柱 diff --git a/mods/technic_plus_beta/extranodes/locale/template.txt b/mods/technic_plus_beta/extranodes/locale/template.txt new file mode 100644 index 00000000..77c862e1 --- /dev/null +++ b/mods/technic_plus_beta/extranodes/locale/template.txt @@ -0,0 +1,18 @@ +# textdomain: extranodes + +# technic_extranodes translation template + +Marble= +Marble Bricks= +Granite= +Concrete= +Blast-resistant Concrete= +Granite Bricks= +Zinc Block= +Cast Iron Block= +Carbon Steel Block= +Stainless Steel Block= +Insulator/cable clip= +Steel strut with insulator/cable clip= +Concrete Post Platform= +Concrete Post= diff --git a/mods/technic_plus_beta/extranodes/mod.conf b/mods/technic_plus_beta/extranodes/mod.conf new file mode 100644 index 00000000..f452735d --- /dev/null +++ b/mods/technic_plus_beta/extranodes/mod.conf @@ -0,0 +1,3 @@ +name = extranodes +depends = default, technic_worldgen, basic_materials +optional_depends = unifieddyes, moreblocks, steel, streetsmod diff --git a/mods/technic_plus_beta/extranodes/models/technic_insulator_clip.obj b/mods/technic_plus_beta/extranodes/models/technic_insulator_clip.obj new file mode 100644 index 00000000..1da5e886 --- /dev/null +++ b/mods/technic_plus_beta/extranodes/models/technic_insulator_clip.obj @@ -0,0 +1,173 @@ +# Blender v2.72 (sub 0) OBJ File: '' +# www.blender.org +o Cube +v -0.500000 -0.500000 0.500000 +v -0.500000 -0.500000 -0.500000 +v 0.500000 -0.500000 -0.500000 +v 0.500000 -0.500000 0.500000 +v -0.249997 0.500000 0.249997 +v -0.249997 0.500000 -0.249997 +v 0.249997 0.500000 -0.249997 +v 0.249997 0.500000 0.249997 +v -0.187500 0.500000 0.187500 +v -0.187500 0.500000 -0.187500 +v 0.187500 0.500000 -0.187500 +v 0.187500 0.500000 0.187500 +v -0.187500 0.750000 0.187500 +v -0.187500 0.750000 -0.187500 +v 0.187500 0.750000 -0.187500 +v 0.187500 0.750000 0.187500 +v -0.250000 0.750000 0.250000 +v -0.250000 0.750000 -0.250000 +v 0.250000 0.750000 -0.250000 +v 0.250000 0.750000 0.250000 +v -0.250000 1.250000 0.250000 +v -0.250000 1.250000 -0.250000 +v 0.250000 1.250000 -0.250000 +v 0.250000 1.250000 0.250000 +v -0.500000 0.312500 0.500000 +v -0.500000 0.312500 -0.500000 +v 0.500000 0.312500 -0.500000 +v 0.500000 0.312500 0.500000 +v 0.187500 0.625000 0.187500 +v 0.187500 0.625000 -0.187500 +v -0.187500 0.625000 -0.187500 +v -0.187500 0.625000 0.187500 +v 0.187500 0.562500 0.187500 +v 0.187500 0.687500 -0.187500 +v -0.187500 0.687500 -0.187500 +v -0.187500 0.562500 0.187500 +v 0.187500 0.687500 0.187500 +v 0.187500 0.562500 -0.187500 +v -0.187500 0.562500 -0.187500 +v -0.187500 0.687500 0.187500 +v 0.168668 0.531250 0.168668 +v 0.168668 0.718750 -0.168668 +v -0.168668 0.718750 -0.168668 +v -0.168668 0.531250 0.168668 +v 0.168668 0.656250 0.168668 +v 0.168668 0.593750 -0.168668 +v -0.168668 0.593750 -0.168668 +v -0.168668 0.656250 0.168668 +v 0.168668 0.593750 0.168668 +v 0.168668 0.656250 -0.168668 +v -0.168668 0.656250 -0.168668 +v -0.168668 0.593750 0.168668 +v 0.168668 0.718750 0.168668 +v 0.168668 0.531250 -0.168668 +v -0.168668 0.531250 -0.168668 +v -0.168668 0.718750 0.168668 +vt 1.000000 0.000000 +vt 1.000000 1.000000 +vt 0.000000 1.000000 +vt 0.000000 0.000000 +vt 0.749997 0.749997 +vt 0.749997 0.250003 +vt 0.250003 0.250003 +vt 0.250003 0.749997 +vt 0.000000 0.812500 +vt 1.000000 0.812500 +vt 0.312500 0.312500 +vt 0.312500 0.687500 +vt 0.687500 0.312500 +vt 0.687500 0.687500 +vt 0.331332 1.218750 +vt 0.668668 1.218750 +vt 0.687500 1.250000 +vt 0.312500 1.250000 +vt 0.750000 1.250000 +vt 0.750000 1.750000 +vt 0.250000 1.750000 +vt 0.250000 1.250000 +vt 0.331332 1.093750 +vt 0.668668 1.093750 +vt 0.687500 1.125000 +vt 0.312500 1.125000 +vt 0.331332 1.093750 +vt 0.668668 1.093750 +vt 0.331332 1.156250 +vt 0.668668 1.156250 +vt 0.687500 1.187500 +vt 0.312500 1.187500 +vt 0.331332 1.156250 +vt 0.668668 1.156250 +vt 0.331332 1.031250 +vt 0.668668 1.031250 +vt 0.687500 1.062500 +vt 0.312500 1.062500 +vt 0.312500 1.000000 +vt 0.687500 1.000000 +vn 0.000000 -1.000000 -0.000000 +vn -0.600000 0.800000 -0.000000 +vn 0.000000 0.800000 -0.600000 +vn 0.600000 0.800000 0.000000 +vn -0.000000 0.000000 1.000000 +vn 0.000000 1.000000 0.000000 +vn 0.856500 -0.516200 0.000000 +vn 0.000000 -0.516200 -0.856500 +vn -0.000000 -0.516200 0.856500 +vn -0.856500 -0.516200 -0.000000 +vn -1.000000 0.000000 -0.000000 +vn 0.000000 -0.000000 -1.000000 +vn 1.000000 -0.000000 0.000000 +vn -0.000000 0.800000 0.600000 +vn 0.856500 0.516200 0.000000 +vn 0.000000 0.516200 -0.856500 +vn -0.000000 0.516200 0.856500 +vn -0.856500 0.516200 -0.000000 +g Cube_Cube_Material +s off +f 1/1/1 2/2/1 3/3/1 4/4/1 +f 25/2/2 5/5/2 6/6/2 26/1/2 +f 26/1/3 6/6/3 7/7/3 27/4/3 +f 27/4/4 7/7/4 8/8/4 28/3/4 +f 25/9/5 1/4/5 4/1/5 28/10/5 +f 8/8/6 7/7/6 11/11/6 12/12/6 +f 7/7/6 6/6/6 10/13/6 11/11/6 +f 5/5/6 8/8/6 12/12/6 9/14/6 +f 6/6/6 5/5/6 9/14/6 10/13/6 +f 53/15/7 42/16/7 15/17/7 16/18/7 +f 42/15/8 43/16/8 14/17/8 15/18/8 +f 56/15/9 53/16/9 16/17/9 13/18/9 +f 43/15/10 56/16/10 13/17/10 14/18/10 +f 14/4/1 18/4/1 19/4/1 15/4/1 +f 17/19/11 21/20/11 22/21/11 18/22/11 +f 18/19/12 22/20/12 23/21/12 19/22/12 +f 19/19/13 23/20/13 24/21/13 20/22/13 +f 21/21/5 17/22/5 20/19/5 24/20/5 +f 21/5/6 24/8/6 23/7/6 22/6/6 +f 15/4/1 19/4/1 20/4/1 16/4/1 +f 16/4/1 20/4/1 17/4/1 13/4/1 +f 13/4/1 17/4/1 18/4/1 14/4/1 +f 1/1/11 25/10/11 26/9/11 2/4/11 +f 2/1/12 26/10/12 27/9/12 3/4/12 +f 3/1/13 27/10/13 28/9/13 4/4/13 +f 5/5/14 25/2/14 28/3/14 8/8/14 +f 49/23/7 46/24/7 30/25/7 29/26/7 +f 46/27/8 47/28/8 31/25/8 30/26/8 +f 52/23/9 49/24/9 29/25/9 32/26/9 +f 47/23/10 52/24/10 32/25/10 31/26/10 +f 45/29/7 50/30/7 34/31/7 37/32/7 +f 50/33/8 51/34/8 35/31/8 34/32/8 +f 48/33/9 45/34/9 37/31/9 40/32/9 +f 51/29/10 48/30/10 40/31/10 35/32/10 +f 41/35/7 54/36/7 38/37/7 33/38/7 +f 54/35/8 55/36/8 39/37/8 38/38/8 +f 44/35/9 41/36/9 33/37/9 36/38/9 +f 55/35/10 44/36/10 36/37/10 39/38/10 +f 37/32/15 34/31/15 42/16/15 53/15/15 +f 34/32/16 35/31/16 43/16/16 42/15/16 +f 40/32/17 37/31/17 53/16/17 56/15/17 +f 35/32/18 40/31/18 56/16/18 43/15/18 +f 33/38/15 38/37/15 46/24/15 49/23/15 +f 38/38/16 39/37/16 47/28/16 46/27/16 +f 36/38/17 33/37/17 49/24/17 52/23/17 +f 39/38/18 36/37/18 52/24/18 47/23/18 +f 29/26/15 30/25/15 50/30/15 45/29/15 +f 30/26/16 31/25/16 51/34/16 50/33/16 +f 32/26/17 29/25/17 45/34/17 48/33/17 +f 31/26/18 32/25/18 48/30/18 51/29/18 +f 12/39/15 11/40/15 54/36/15 41/35/15 +f 11/39/16 10/40/16 55/36/16 54/35/16 +f 9/39/17 12/40/17 41/36/17 44/35/17 +f 10/39/18 9/40/18 44/36/18 55/35/18 diff --git a/mods/technic_plus_beta/extranodes/models/technic_steel_strut_with_insulator_clip.obj b/mods/technic_plus_beta/extranodes/models/technic_steel_strut_with_insulator_clip.obj new file mode 100644 index 00000000..7226d1e7 --- /dev/null +++ b/mods/technic_plus_beta/extranodes/models/technic_steel_strut_with_insulator_clip.obj @@ -0,0 +1,246 @@ +# Blender v2.79 (sub 0) OBJ File: 'technic steel strut with insulator clip.blend' +# www.blender.org +o Cube_Cube_Material.001 +v -0.375000 0.500532 -0.250000 +v -0.249997 0.562500 -0.249997 +v 0.249997 0.562500 -0.249997 +v 0.375000 0.500532 -0.250000 +v 0.249997 0.562500 0.249997 +v 0.375000 0.500532 0.250000 +v -0.249997 0.562500 0.249997 +v -0.375000 0.500532 0.250000 +v 0.187500 0.562500 -0.187500 +v -0.168668 0.718750 0.168668 +v 0.168668 0.718750 0.168668 +v 0.187500 0.750000 0.187500 +v -0.187500 0.750000 0.187500 +v 0.168668 0.718750 -0.168668 +v 0.187500 0.750000 -0.187500 +v -0.168668 0.718750 -0.168668 +v -0.187500 0.750000 -0.187500 +v 0.250000 0.750000 -0.250000 +v 0.250000 0.750000 0.250000 +v -0.250000 0.750000 -0.250000 +v -0.250000 1.250000 -0.250000 +v 0.250000 1.250000 -0.250000 +v 0.250000 1.250000 0.250000 +v -0.250000 1.250000 0.250000 +v -0.250000 0.750000 0.250000 +v -0.168668 0.593750 0.168668 +v 0.168668 0.593750 0.168668 +v 0.187500 0.625000 0.187500 +v -0.187500 0.625000 0.187500 +v 0.168668 0.593750 -0.168668 +v 0.187500 0.625000 -0.187500 +v -0.168668 0.593750 -0.168668 +v -0.187500 0.625000 -0.187500 +v -0.168668 0.656250 0.168668 +v 0.168668 0.656250 0.168668 +v 0.187500 0.687500 0.187500 +v -0.187500 0.687500 0.187500 +v 0.168668 0.656250 -0.168668 +v 0.187500 0.687500 -0.187500 +v -0.168668 0.656250 -0.168668 +v -0.187500 0.687500 -0.187500 +v 0.187500 0.562500 0.187500 +v -0.187500 0.562500 0.187500 +v -0.187500 0.562500 -0.187500 +v -0.499468 -0.499468 -0.499468 +v -0.499468 0.500000 -0.499468 +v 0.499468 -0.499468 -0.499468 +v -0.499468 -0.499468 0.499468 +v -0.499468 0.500000 0.499468 +v 0.499468 -0.499468 0.499468 +v 0.499468 0.500000 -0.499468 +v 0.499468 0.500000 0.499468 +vt 1.000000 0.875000 +vt 0.937500 0.750000 +vt 0.937500 0.250000 +vt 1.000000 0.125000 +vt 0.250000 0.875000 +vt 0.250000 0.750000 +vt 0.750000 0.750000 +vt 0.750000 0.875000 +vt 0.000000 0.125000 +vt 0.062500 0.250000 +vt 0.062500 0.750000 +vt 0.000000 0.875000 +vt 0.750000 0.250000 +vt 0.687500 0.687500 +vt 0.687500 0.312500 +vt 0.312500 0.687500 +vt 0.250000 0.250000 +vt 0.312500 0.312500 +vt 0.331332 1.218750 +vt 0.668668 1.218750 +vt 0.687500 1.250000 +vt 0.312500 1.250000 +vt 0.531250 0.666667 +vt 0.531250 0.333333 +vt 0.500000 0.312500 +vt 0.500000 0.687500 +vt 0.531250 0.333333 +vt 0.531250 0.666667 +vt 0.500000 0.687500 +vt 0.500000 0.312500 +vt 0.331332 1.218750 +vt 0.668668 1.218750 +vt 0.687500 1.250000 +vt 0.312500 1.250000 +vt 0.687500 0.312500 +vt 0.750000 0.250000 +vt 0.750000 0.750000 +vt 0.687500 0.687500 +vt 0.500000 0.250000 +vt 0.500000 0.750000 +vt 0.000000 0.750000 +vt 0.000000 0.250000 +vt 0.500000 0.250000 +vt 0.000000 0.250000 +vt 0.000000 0.750000 +vt 0.500000 0.750000 +vt 0.500000 0.250000 +vt 0.500000 0.750000 +vt 0.000000 0.750000 +vt 0.000000 0.250000 +vt 0.000000 0.250000 +vt 0.500000 0.750000 +vt 0.250000 0.250000 +vt 0.750000 0.250000 +vt 0.750000 0.750000 +vt 0.250000 0.750000 +vt 0.250000 0.750000 +vt 0.312500 0.687500 +vt 0.250000 0.250000 +vt 0.312500 0.312500 +vt 0.250000 0.125000 +vt 0.750000 0.125000 +vt 0.331332 1.093750 +vt 0.668668 1.093750 +vt 0.687500 1.125000 +vt 0.312500 1.125000 +vt 0.656250 0.666667 +vt 0.656250 0.333333 +vt 0.625000 0.312500 +vt 0.625000 0.687500 +vt 0.656250 0.333333 +vt 0.656250 0.666667 +vt 0.625000 0.687500 +vt 0.625000 0.312500 +vt 0.331332 1.093750 +vt 0.668668 1.093750 +vt 0.687500 1.125000 +vt 0.312500 1.125000 +vt 0.331332 1.156250 +vt 0.668668 1.156250 +vt 0.687500 1.187500 +vt 0.312500 1.187500 +vt 0.593750 0.666667 +vt 0.593750 0.333333 +vt 0.562500 0.312500 +vt 0.562500 0.687500 +vt 0.593750 0.333333 +vt 0.593750 0.666667 +vt 0.562500 0.687500 +vt 0.562500 0.312500 +vt 0.331332 1.156250 +vt 0.668668 1.156250 +vt 0.687500 1.187500 +vt 0.312500 1.187500 +vt 0.312500 1.062500 +vt 0.687500 1.062500 +vt 0.687500 0.312500 +vt 0.687500 0.312500 +vt 0.687500 0.687500 +vt 0.312500 1.062500 +vt 0.687500 1.062500 +vt 0.000000 0.750000 +vt 0.000000 0.250000 +vt 1.000000 0.250000 +vt 1.000000 0.750000 +vt 1.000000 1.000000 +vt -0.000000 1.000000 +vt 0.000000 -0.000000 +vt 1.000000 -0.000000 +vt 1.000000 1.000000 +vt -0.000000 1.000000 +vt 0.000000 -0.000000 +vt 1.000000 -0.000000 +vt 0.000000 1.000000 +vt 0.000000 0.000000 +vt 1.000000 0.000000 +vt 1.000000 1.000000 +vt 1.000000 -0.000000 +vt 1.000000 1.000000 +vt 1.000000 1.000000 +vt 0.000000 0.000000 +vt -0.000000 0.000000 +vn 0.0000 0.0000 -1.0000 +vn 0.4442 0.8960 -0.0000 +vn 0.0000 0.0000 1.0000 +vn 0.0000 1.0000 -0.0000 +vn 0.0000 -0.5161 0.8565 +vn 0.8565 -0.5161 0.0000 +vn -0.8565 -0.5161 0.0000 +vn 0.0000 -0.5161 -0.8565 +vn -0.0000 -1.0000 -0.0000 +vn 1.0000 -0.0000 0.0000 +vn -1.0000 0.0000 -0.0000 +vn -0.4442 0.8960 -0.0000 +vn -0.0000 0.5161 0.8565 +vn 0.8565 0.5161 -0.0000 +vn -0.8565 0.5161 -0.0000 +vn 0.0000 0.5161 -0.8565 +g Cube_Cube_Material.001_Cube_Cube_Material.001_clip +s 1 +f 1/1/1 2/2/1 3/3/1 4/4/1 +f 4/5/2 3/6/2 5/7/2 6/8/2 +f 6/9/3 5/10/3 7/11/3 8/12/3 +f 7/13/4 5/7/4 42/14/4 43/15/4 +f 5/7/4 3/6/4 9/16/4 42/14/4 +f 2/17/4 7/13/4 43/15/4 44/18/4 +f 3/6/4 2/17/4 44/18/4 9/16/4 +f 10/19/5 11/20/5 12/21/5 13/22/5 +f 11/23/6 14/24/6 15/25/6 12/26/6 +f 16/27/7 10/28/7 13/29/7 17/30/7 +f 14/31/8 16/32/8 17/33/8 15/34/8 +f 15/35/9 18/36/9 19/37/9 12/38/9 +f 20/39/1 21/40/1 22/41/1 18/42/1 +f 18/43/10 22/44/10 23/45/10 19/46/10 +f 19/47/3 23/48/3 24/49/3 25/50/3 +f 21/51/11 20/39/11 25/52/11 24/49/11 +f 21/53/4 24/54/4 23/55/4 22/56/4 +f 12/38/9 19/37/9 25/57/9 13/58/9 +f 13/58/9 25/57/9 20/59/9 17/60/9 +f 17/60/9 20/59/9 18/36/9 15/35/9 +f 2/17/12 1/61/12 8/62/12 7/13/12 +f 26/63/5 27/64/5 28/65/5 29/66/5 +f 27/67/6 30/68/6 31/69/6 28/70/6 +f 32/71/7 26/72/7 29/73/7 33/74/7 +f 30/75/8 32/76/8 33/77/8 31/78/8 +f 34/79/5 35/80/5 36/81/5 37/82/5 +f 35/83/6 38/84/6 39/85/6 36/86/6 +f 40/87/7 34/88/7 37/89/7 41/90/7 +f 38/91/8 40/92/8 41/93/8 39/94/8 +f 37/82/13 36/81/13 11/20/13 10/19/13 +f 36/86/14 39/85/14 14/24/14 11/23/14 +f 41/90/15 37/89/15 10/28/15 16/27/15 +f 39/94/16 41/93/16 16/32/16 14/31/16 +f 43/95/13 42/96/13 27/64/13 26/63/13 +f 42/14/14 9/97/14 30/68/14 27/67/14 +f 44/98/15 43/99/15 26/72/15 32/71/15 +f 9/100/16 44/101/16 32/76/16 30/75/16 +f 29/66/13 28/65/13 35/80/13 34/79/13 +f 28/70/14 31/69/14 38/84/14 35/83/14 +f 33/74/15 29/73/15 34/88/15 40/87/15 +f 31/78/16 33/77/16 40/92/16 38/91/16 +f 8/102/9 1/103/9 4/104/9 6/105/9 +g Cube_Cube_Material.001_Cube_Cube_Material.001_sides_with_band +s off +f 47/106/10 51/107/10 52/108/10 50/109/10 +f 48/110/11 49/111/11 46/112/11 45/113/11 +f 47/114/9 50/115/9 48/116/9 45/117/9 +f 51/118/4 46/112/4 49/111/4 52/119/4 +g Cube_Cube_Material.001_Cube_Cube_Material.001_sides_without_band +f 45/113/1 46/120/1 51/107/1 47/121/1 +f 50/109/3 52/119/3 49/111/3 48/122/3 diff --git a/mods/technic_plus_beta/extranodes/textures/technic_insulator_clip.png b/mods/technic_plus_beta/extranodes/textures/technic_insulator_clip.png new file mode 100644 index 00000000..497ec90d Binary files /dev/null and b/mods/technic_plus_beta/extranodes/textures/technic_insulator_clip.png differ diff --git a/mods/technic_plus_beta/extranodes/textures/technic_steel_strut_overlay.png b/mods/technic_plus_beta/extranodes/textures/technic_steel_strut_overlay.png new file mode 100644 index 00000000..b1dcb622 Binary files /dev/null and b/mods/technic_plus_beta/extranodes/textures/technic_steel_strut_overlay.png differ diff --git a/mods/technic_plus_beta/modpack.conf b/mods/technic_plus_beta/modpack.conf new file mode 100644 index 00000000..43b64f29 --- /dev/null +++ b/mods/technic_plus_beta/modpack.conf @@ -0,0 +1,6 @@ +name = technic_plus_beta +description = The technic modpack extends the Minetest game with many new elements, mainly constructable machines and tools. It is a large modpack, and tends to dominate gameplay when it is used. +min_minetest_version = 5.5 +release = 31092 +author = mt-mods +title = Technic Plus Beta diff --git a/mods/technic_plus_beta/technic/README.md b/mods/technic_plus_beta/technic/README.md new file mode 100644 index 00000000..b29a6943 --- /dev/null +++ b/mods/technic_plus_beta/technic/README.md @@ -0,0 +1,54 @@ +# Technic (main mod) + + +## License + +### Code + +Copyright (C) 2012-2014 Maciej Kasatkin (RealBadAngel) + +Technic chests code is licensed under the GNU LGPLv2+. + + +### Textures + +BlockMen modified by Zefram (CC BY-SA 3.0): + * technic_chernobylite_block.png + * technic_corium_flowing_animated.png + * technic_corium_source_animated.png + +celeron55 (Perttu Ahola) modified by Zefram (CC BY-SA 3.0): + * technic_bucket_corium.png + +sdzen (Elise Staudter) (CC BY-SA 3.0): + * most of the older 16x16 textures + +leftshift (CC BY-SA 3.0): + * technic_river_water_can.png + +Neuromancer via Minetest Game (CC BY-SA 3.0) + * `technic_*_electric_furnace_*.png` (derived) + +[LB Photo Realism Reload](https://www.curseforge.com/minecraft/texture-packs/lb-photo-realism-reload) (CC 0) + * `technic_geothermal_*.png` (derived) + * `technic_water_mill_*.png` (derived) + * `technic_*_alloy_furnace_*.png` (derived) + * `technic_*_compressor_*.png` (derived) + * `technic_*_grinder_*.png` (derived) + +RealBadAngel: (WTFPL) + * Everything else. + + +### Sounds + +veikk0 (Veikko Mäkelä) (CC BY-SA 4.0): + * technic_hv_nuclear_reactor_siren_danger_loop.ogg + * Derived from "Nuclear alarm.wav" by Freesound.org user rene___ from . Originally licensed under CC0 1.0 + + +### References + +CC BY-SA 3.0: http://creativecommons.org/licenses/by-sa/3.0/ + +CC BY-SA 4.0: https://creativecommons.org/licenses/by-sa/4.0/ diff --git a/mods/technic_plus_beta/technic/chatcommands.lua b/mods/technic_plus_beta/technic/chatcommands.lua new file mode 100644 index 00000000..35b3f232 --- /dev/null +++ b/mods/technic_plus_beta/technic/chatcommands.lua @@ -0,0 +1,105 @@ + +-- +-- Technic power network administrative functions +-- + +local active_networks = technic.active_networks +local networks = technic.networks +local cables = technic.cables + +-- Enable / disable technic globalstep +technic.powerctrl_state = true +minetest.register_chatcommand("powerctrl", { + params = "[on|off]", + description = "Enables or disables technic network globalstep handler", + privs = { [technic.config:get("admin_priv")] = true }, + func = function(name, state) + if state == "on" then + technic.powerctrl_state = true + elseif state == "off" then + technic.powerctrl_state = false + end + minetest.chat_send_player(name, ("Technic network globalstep %s."):format( + technic.powerctrl_state and "enabled" or "disabled" + )) + end +}) + +-- List all active networks with additional data +minetest.register_chatcommand("technic_get_active_networks", { + params = "[minlag]", + description = "Lists all active networks with additional network data", + privs = { [technic.config:get("admin_priv")] = true }, + func = function(name, minlag) + minlag = tonumber(minlag) or 0 + local activecount = 0 + local network_info = {} + local netcount = 0 + local nodecount = 0 + local function align(s, w) + s = tostring(s) + return string.rep(' ', w - #s) .. s + end + local function net2str(id) + local p=technic.network2pos(id) + return align(("%s,%s,%s"):format(p.x,p.y,p.z),21) + end + for id,net in pairs(active_networks) do + activecount = activecount + 1 + if minlag == 0 or (net.lag and net.lag >= minlag * 1000) then + table.insert(network_info, ("Pos:%s PR:%s RE:%s BA:%s Skip:%s Lag:%sms"):format( + net2str(id), align(#net.PR_nodes, 4), align(#net.RE_nodes, 4), align(#net.BA_nodes, 4), + align(net.skip, 3), net.lag and align(("%0.2f"):format(net.lag / 1000), 6) or "" + )) + end + end + for _ in pairs(networks) do netcount = netcount + 1 end + for _ in pairs(cables) do nodecount = nodecount + 1 end + minetest.chat_send_player(name, + ("Cached networks: %d active, %d total, %d nodes, %0.2f max lag.\n%s"):format( + activecount, netcount, nodecount, technic.get_max_lag(), table.concat(network_info, "\n") + )) + end +}) + +-- Clear technic active networks +minetest.register_chatcommand("technic_flush_switch_cache", { + description = "Removes all active networks from the cache", + privs = { [technic.config:get("admin_priv")] = true }, + func = function(name) + local activecount = 0 + for id in pairs(active_networks) do + activecount = activecount + 1 + active_networks[id] = nil + end + minetest.chat_send_player(name, ("Network data removed: %d active networks deactivated."):format(activecount)) + end +}) + +-- Completely clear all technic network caches +minetest.register_chatcommand("technic_clear_network_data", { + description = "Removes all networks and network nodes from the cache", + privs = { [technic.config:get("admin_priv")] = true }, + func = function(name) + -- Clear all network data keeping all reference links intact + local activecount = 0 + local netcount = 0 + local nodecount = 0 + for id in pairs(active_networks) do + activecount = activecount + 1 + active_networks[id] = nil + end + for id in pairs(networks) do + netcount = netcount + 1 + networks[id] = nil + end + for id in pairs(cables) do + nodecount = nodecount + 1 + cables[id] = nil + end + minetest.chat_send_player(name, string.format( + "Network data removed: %d active networks, %d total networks, %d network nodes.", + activecount, netcount, nodecount + )) + end +}) diff --git a/mods/technic_plus_beta/technic/config.lua b/mods/technic_plus_beta/technic/config.lua new file mode 100644 index 00000000..d78c92b1 --- /dev/null +++ b/mods/technic_plus_beta/technic/config.lua @@ -0,0 +1,73 @@ +local config_file = minetest.get_worldpath() .. "/technic.conf" + +local defaults = { + -- Power tools enabled + enable_cans = "true", + enable_chainsaw = "true", + enable_flashlight = "false", + enable_mining_drill = "true", + enable_mining_laser = "false", + enable_multimeter = "true", + enable_prospector = "true", + enable_sonic_screwdriver = "true", + enable_tree_tap = "true", + enable_vacuum = "true", + + -- Power tool options + multimeter_remote_start_ttl = "300", + + -- Machine options + enable_wind_mill = "false", + enable_nuclear_reactor_digiline_selfdestruct = "false", + quarry_max_depth = "100", + quarry_time_limit = "3000", + quarry_dig_particles = "false", + + -- Power network and general options + switch_off_delay_seconds = "1800", + network_overload_reset_time = "20", + admin_priv = "basic_privs", + enable_corium_griefing = "true", + enable_radiation_protection = "true", + enable_radiation_throttling = "false", + enable_entity_radiation_damage = "true", + enable_longterm_radiation_damage = "true", + max_lag_reduction_multiplier = "0.99", + --constant_digit_count = nil, +} + +-- +-- Create technic.config settings object and +-- initialize configuration with default values. +-- + +local config_obj = Settings(config_file) + +technic.config = {} + +function technic.config:get_int(key) + local value = tonumber(self:get(key)) + if not value then + error("Invalid configuration value for key " .. key .. " in " .. config_file .. ". Number expected.") + end + return value +end + +function technic.config:get(...) return config_obj:get(...) end +function technic.config:get_bool(...) return config_obj:get_bool(...) end +function technic.config:get_np_group(...) return config_obj:get_np_group(...) end +function technic.config:get_flags(...) return config_obj:get_flags(...) end +function technic.config:set(...) return config_obj:set(...) end +function technic.config:set_bool(...) return config_obj:set_bool(...) end +function technic.config:set_np_group(...) return config_obj:set_np_group(...) end +function technic.config:remove(...) return config_obj:remove(...) end +function technic.config:get_names(...) return config_obj:get_names(...) end +function technic.config:write(...) return config_obj:write(...) end +function technic.config:to_table(...) return config_obj:to_table(...) end + +local conf_table = technic.config:to_table() +for k, v in pairs(defaults) do + if conf_table[k] == nil then + technic.config:set(k, v) + end +end diff --git a/mods/technic_plus_beta/technic/crafts.lua b/mods/technic_plus_beta/technic/crafts.lua new file mode 100644 index 00000000..e49ec7b4 --- /dev/null +++ b/mods/technic_plus_beta/technic/crafts.lua @@ -0,0 +1,190 @@ +-- check if we have the necessary dependencies to allow actually using these materials in the crafts + +local mat = technic.materials +local has_mcl = minetest.get_modpath("mcl_core") + +-- Remove some recipes +-- Bronze +if not has_mcl then + minetest.clear_craft({ + type = "shapeless", + output = "default:bronze_ingot" + }) + -- Restore recipe for bronze block to ingots + minetest.register_craft({ + output = "default:bronze_ingot 9", + recipe = { + {"default:bronzeblock"} + } + }) +end + +-- Accelerator tube +if pipeworks.enable_accelerator_tube then + minetest.clear_craft({ + output = "pipeworks:accelerator_tube_1", + }) + + minetest.register_craft({ + output = 'pipeworks:accelerator_tube_1', + recipe = { + {'technic:copper_coil', 'pipeworks:tube_1', 'technic:copper_coil'}, + } + }) +end + +-- Teleport tube +if pipeworks.enable_teleport_tube then + minetest.clear_craft({ + output = "pipeworks:teleport_tube_1", + }) + + minetest.register_craft({ + output = 'pipeworks:teleport_tube_1', + recipe = { + {mat.mese_crystal, 'technic:copper_coil', mat.mese_crystal}, + {'pipeworks:tube_1', 'technic:control_logic_unit', 'pipeworks:tube_1'}, + {mat.mese_crystal, 'technic:copper_coil', mat.mese_crystal}, + } + }) +end + +-- basic materials' brass ingot + +minetest.clear_craft({ + output = "basic_materials:brass_ingot", +}) + +minetest.register_craft( { + type = "shapeless", + output = "basic_materials:brass_ingot 9", + recipe = { "basic_materials:brass_block" }, +}) + +-- tubes crafting recipes + +minetest.register_craft({ + output = 'technic:diamond_drill_head', + recipe = { + {'technic:stainless_steel_ingot', mat.diamond, 'technic:stainless_steel_ingot'}, + {mat.diamond, '', mat.diamond}, + {'technic:stainless_steel_ingot', mat.diamond, 'technic:stainless_steel_ingot'}, + } +}) + +minetest.register_craft({ + output = 'technic:green_energy_crystal', + recipe = { + {mat.gold_ingot, 'technic:battery', mat.dye_green}, + {'technic:battery', 'technic:red_energy_crystal', 'technic:battery'}, + {mat.dye_green, 'technic:battery', mat.gold_ingot}, + } +}) + +minetest.register_craft({ + output = 'technic:blue_energy_crystal', + recipe = { + {mat.mithril_ingot, 'technic:battery', mat.dye_blue}, + {'technic:battery', 'technic:green_energy_crystal', 'technic:battery'}, + {mat.dye_blue, 'technic:battery', mat.mithril_ingot}, + } +}) + +minetest.register_craft({ + output = 'technic:red_energy_crystal', + recipe = { + {mat.silver_ingot, 'technic:battery', mat.dye_red}, + {'technic:battery', 'basic_materials:energy_crystal_simple', 'technic:battery'}, + {mat.dye_red, 'technic:battery', mat.silver_ingot}, + } +}) + +minetest.register_craft({ + output = 'technic:copper_coil 1', + recipe = { + {'basic_materials:copper_wire', 'technic:wrought_iron_ingot', 'basic_materials:copper_wire'}, + {'technic:wrought_iron_ingot', '', 'technic:wrought_iron_ingot'}, + {'basic_materials:copper_wire', 'technic:wrought_iron_ingot', 'basic_materials:copper_wire'}, + }, + replacements = { + {"basic_materials:copper_wire", "basic_materials:empty_spool"}, + {"basic_materials:copper_wire", "basic_materials:empty_spool"}, + {"basic_materials:copper_wire", "basic_materials:empty_spool"}, + {"basic_materials:copper_wire", "basic_materials:empty_spool"} + }, +}) + +minetest.register_craft({ + output = 'technic:lv_transformer', + recipe = { + {mat.insulation, 'technic:wrought_iron_ingot', mat.insulation}, + {'technic:copper_coil', 'technic:wrought_iron_ingot', 'technic:copper_coil'}, + {'technic:wrought_iron_ingot', 'technic:wrought_iron_ingot', 'technic:wrought_iron_ingot'}, + } +}) + +minetest.register_craft({ + output = 'technic:mv_transformer', + recipe = { + {mat.insulation, 'technic:carbon_steel_ingot', mat.insulation}, + {'technic:copper_coil', 'technic:carbon_steel_ingot', 'technic:copper_coil'}, + {'technic:carbon_steel_ingot', 'technic:carbon_steel_ingot', 'technic:carbon_steel_ingot'}, + } +}) + +minetest.register_craft({ + output = 'technic:hv_transformer', + recipe = { + {mat.insulation, 'technic:stainless_steel_ingot', mat.insulation}, + {'technic:copper_coil', 'technic:stainless_steel_ingot', 'technic:copper_coil'}, + {'technic:stainless_steel_ingot', 'technic:stainless_steel_ingot', 'technic:stainless_steel_ingot'}, + } +}) + +minetest.register_craft({ + output = 'technic:control_logic_unit', + recipe = { + {'', 'basic_materials:gold_wire', ''}, + {mat.bronze_ingot, 'technic:silicon_wafer', mat.bronze_ingot}, + {'', 'technic:chromium_ingot', ''}, + }, + replacements = { {"basic_materials:gold_wire", "basic_materials:empty_spool"}, }, +}) + +minetest.register_craft({ + output = 'technic:mixed_metal_ingot 9', + recipe = { + {'technic:stainless_steel_ingot', 'technic:stainless_steel_ingot', 'technic:stainless_steel_ingot'}, + {mat.bronze_ingot, mat.bronze_ingot, mat.bronze_ingot}, + {mat.tin_ingot, mat.tin_ingot, mat.tin_ingot}, + } +}) + +minetest.register_craft({ + output = 'technic:carbon_cloth', + recipe = { + {'technic:graphite', 'technic:graphite', 'technic:graphite'} + } +}) + +minetest.register_craft({ + output = "technic:machine_casing", + recipe = { + { "technic:cast_iron_ingot", "technic:cast_iron_ingot", "technic:cast_iron_ingot" }, + { "technic:cast_iron_ingot", "basic_materials:brass_ingot", "technic:cast_iron_ingot" }, + { "technic:cast_iron_ingot", "technic:cast_iron_ingot", "technic:cast_iron_ingot" }, + }, +}) + + +minetest.register_craft({ + output = mat.dirt.." 2", + type = "shapeless", + replacements = {{mat.bucket_water,mat.bucket_empty}}, + recipe = { + "technic:stone_dust", + "group:leaves", + mat.bucket_water, + "group:sand", + }, +}) diff --git a/mods/technic_plus_beta/technic/doc/anchor.md b/mods/technic_plus_beta/technic/doc/anchor.md new file mode 100644 index 00000000..5474b993 --- /dev/null +++ b/mods/technic_plus_beta/technic/doc/anchor.md @@ -0,0 +1,57 @@ + + +administrative world anchor +--------------------------- + +A world anchor is an object in the Minetest world that causes the server +to keep surrounding parts of the world running even when no players +are nearby. It is mainly used to allow machines to run unattended: +normally machines are suspended when not near a player. The technic +mod supplies a form of world anchor, as a placable block, but it is not +straightforwardly available to players. There is no recipe for it, so it +is only available if explicitly spawned into existence by someone with +administrative privileges. In a single-player world, the single player +normally has administrative privileges, and can obtain a world anchor +by entering the chat command "/give singleplayer technic:admin\_anchor". + +The world anchor tries to force a cubical area, centered upon the anchor, +to stay loaded. The distance from the anchor to the most distant map +nodes that it will keep loaded is referred to as the "radius", and can be +set in the world anchor's interaction form. The radius can be set as low +as 0, meaning that the anchor only tries to keep itself loaded, or as high +as 255, meaning that it will operate on a 511×511×511 cube. +Larger radii are forbidden, to avoid typos causing the server excessive +work; to keep a larger area loaded, use multiple anchors. Also use +multiple anchors if the area to be kept loaded is not well approximated +by a cube. + +The world is always kept loaded in units of 16×16×16 cubes, +confusingly known as "map blocks". The anchor's configured radius takes +no account of map block boundaries, but the anchor's effect is actually to +keep loaded each map block that contains any part of the configured cube. +The anchor's interaction form includes a status note showing how many map +blocks this is, and how many of those it is successfully keeping loaded. +When the anchor is disabled, as it is upon placement, it will always +show that it is keeping no map blocks loaded; this does not indicate +any kind of failure. + +The world anchor can optionally be locked. When it is locked, only +the anchor's owner, the player who placed it, can reconfigure it or +remove it. Only the owner can lock it. Locking an anchor is useful +if the use of anchors is being tightly controlled by administrators: +an administrator can set up a locked anchor and be sure that it will +not be set by ordinary players to an unapproved configuration. + +The server limits the ability of world anchors to keep parts of the world +loaded, to avoid overloading the server. The total number of map blocks +that can be kept loaded in this way is set by the server configuration +item "max\_forceloaded\_blocks" (in minetest.conf), which defaults to +only 16. For comparison, each player normally keeps 125 map blocks loaded +(a radius of 32). If an enabled world anchor shows that it is failing to +keep all the map blocks loaded that it would like to, this can be fixed +by increasing max\_forceloaded\_blocks by the amount of the shortfall. + +The tight limit on force-loading is the reason why the world anchor is +not directly available to players. With the limit so low both by default +and in common practice, the only feasible way to determine where world +anchors should be used is for administrators to decide it directly. diff --git a/mods/technic_plus_beta/technic/doc/api.md b/mods/technic_plus_beta/technic/doc/api.md new file mode 100644 index 00000000..619155f5 --- /dev/null +++ b/mods/technic_plus_beta/technic/doc/api.md @@ -0,0 +1,187 @@ +This file is fairly incomplete. Read the code if this is not enough. Help is welcome. + +Tiers +----- +The tier is a string, currently `"LV"`, `"MV"` and `"HV"` are included with technic. + +Network +------- +The network is the cable with the connected machine nodes. The switching station activates network. + +Helper functions +---------------- +* `technic.EU_string(num)` + * Converts num to a human-readable string (see pretty_num) + and adds the `EU` unit + * Use this function when showing players energy values +* `technic.pretty_num(num)` + * Converts the number `num` to a human-readable string with SI prefixes +* `technic.swap_node(pos, nodename)` + * Same as `mintest.swap_node` but it only changes the nodename. + * It uses `minetest.get_node` before swapping to ensure the new nodename + is not the same as the current one. +* `technic.get_or_load_node(pos)` + * If the mapblock is loaded, it returns the node at pos, + else it loads the chunk and returns `nil`. +* `technic.is_tier_cable(nodename, tier)` + * Tells whether the node `nodename` is the cable of the tier `tier`. +* `technic.get_cable_tier(nodename)` + * Returns the tier of the cable `nodename` or `nil`. +* `technic.register_cable_tier(nodename, tier)` + * Register user defined cable to list of known tier cables. + * `nodename`: string, name of the node + * `tier`: string, tier name + * `technic.trace_node_ray(pos, dir, range)` + * Returns an iteration function (usable in the for loop) to iterate over the + node positions along the specified ray. + * The returned positions will not include the starting position `pos`. +* `technic.trace_node_ray_fat(pos, dir, range)` + * Like `technic.trace_node_ray` but includes extra positions near the ray. + * The node ray functions are used for mining lasers. +* `technic.tube_inject_item(pos, start_pos, velocity, item)` + * Same as `pipeworks.tube_inject_item` + +Configuration API +---------------------- +* `technic.config` Settings object that contains Technic configuration. + * Provides all methods that are provided by Minetest Settings object. + * Uses `/technic.conf` as configuration file. + * If key is not present in configuration then returns default value for that key. + * `:get_int(key)` Return number value for configuration key. + +Power tool API +---------------------- + +* `technic.register_power_tool(itemname, definition)` + * Registers power tool adding required fields, otherwise same as `minetest.register_tool(itemname, definition)`. + * For regular power tools you only want to change `max_charge` and leave other fields unset (defaults). + * Special fields for `definition`: + * `technic_max_charge` Number, maximum charge for tool. Defaults to `10000` which is same as RE battery. + * `on_refill` Function to refill charge completely. Default is to set maximum charge for tool. + * `wear_represents` Customize wear indicator instead of using charge level. Default is `"technic_RE_charge"`. + * `tool_capabilities` See Minetest documentation. Default is `{ punch_attack_uses = 0 }`. + * `technic_get_charge = function(itemstack) ...`: + * Callback will be used to get itemstack charge and max\_charge. + * Have to return values `charge, max_charge`. + * E.g. `local charge, maxcharge = itemdef.technic_get_charge(itemstack)`. + * Defaults to `technic.get_charge` which handles tool wear and charge values. + * `technic_set_charge = function(itemstack, charge) ...`: + * Callback will be used to set itemstack charge. + * Defaults to `technic.set_charge` which handles tool wear and charge values. +* `technic.get_charge(itemstack)` + * Returns current charge level of tool. + * For tool charger mods it is recommended to use `.technic_get_charge(stack)` instead. +* `technic.set_charge(itemstack, charge)` + * Sets tool charge level. + * For tool charger mods it is recommended to use `.technic_set_charge(stack, charge)` instead. +* `technic.use_charge(itemstack, charge)` + * Attempt to use charge and return `true`/`false` indicating success. + * Always succeeds without checking charge level if creative is enabled. + +Machine registration API +---------------------- +* `technic.register_machine(tier, nodename, machine_type)` + * Custom machine registration. Not needed when using builtin machine registration functions. + * See also `Machine types` +* `technic.register_tier(tier)` + * Registers network tier. + * See also `tiers` +* `technic.register_base_machine(nodename, def)` + * Register various types of basic factory processing machines. + * `typename = "compressing"` + * `description = S("%s Compressor")` + * `tier = "HV"` + * `demand = {1500, 1000, 750}` + * `speed = 5` + * `upgrade = 1` + * `tube = 1` + * TODO / TBD +* `technic.register_solar_array(nodename, def)` + * Registers solar array generator. + * `tier = "HV"` + * `power = 100` + * TODO / TBD +* `technic.register_battery_box(nodename, def)` + * Registers battery box node used as energy storage. + * TODO / TBD +* `technic.register_cable(nodename, data)` + * Registers technic network cables. + * `tier = "HV"` + * `size = 3/16` + * `description = S("%s Digiline Cable"):format("HV")` + * `digiline = { wire = { rules = technic.digilines.rules_allfaces } }` +* `technic.register_cable_plate(nodename, data)` + * Registers technic network cable plates. Results in multiple nodes registered with `_1` to `_6` appended to name. + * See `technic.register_cable(nodename, data)` + +Network control API +---------------------- +* TBD, functions exported through technic namespace are currently considered to be internal use only. + +### Specific machines +* `technic.can_insert_unique_stack(pos, node, stack, direction)` +* `technic.insert_object_unique_stack(pos, node, stack, direction)` + * Functions for the parameters `can_insert` and `insert_object` to avoid + filling multiple inventory slots with same type of item. + +Used itemdef fields +---------------------- +* groups: + * `technic_ = 1` ltier is a tier in small letters; this group makes + the node connect to the cable(s) of the right tier. + * `technic_machine = 1` Currently used for +* `connect_sides` + * In addition to the default use (see lua_api.txt), this tells where the + machine can be connected. +* `technic_run(pos, node)` + * This function is currently used to update the node. +* `wear_represents = "string"` + * Specifies how the tool wear level is handled. Available modes: + * `"mechanical_wear"`: represents physical damage + * `"technic_RE_charge"`: represents electrical charge +* `.technic_run = function(pos, node) ...` + * This callback is used to update the node. +* `.technic_disabled_machine_name = "string"` + * Specifies the machine's node name to use when it's not connected connected to a network +* `.technic_on_disable = function(pos, node) ...` + * This callback is run when the machine is no longer connected to a technic-powered network. + +Machine types +------------- +There are currently following types: +* `technic.receiver = "RE"` e.g. grinder +* `technic.producer = "PR"` e.g. solar panel +* `technic.producer_receiver = "PR_RE"` supply converter +* `technic.battery = "BA"` e.g. LV batbox + +Switching Station +----------------- +The switching station is required to start electric network and keep it running. +Unlike in original mod this node does not handle power distribution logic but instead just resets network timeout. The polyfuse system is activated when there is too much lag, which causes network to skip cycles (it works slower). It is shown in the infotext when activated. + +Network logic +----------------- + +The network logic collects power from sources (PR), distributes it to sinks (RE), +and uses the excess/shortfall to charge and discharge batteries (BA). + +For now, all supply and demand values are expressed in kW. + +All the RE nodes are queried for their current EU demand. Those which are off would +require no or a small standby EU demand, while those which are on would require more. +If total demand is less than the available power they are all updated with the demand number. +If any surplus exists from the PR nodes the batteries will be charged evenly with excess power. +If total demand exceeds generator supply then draw difference from batteries. +If total demand is more than available power all RE nodes will be shut down. + +You can only have one network per machine, else the switching station will indicate you that several networks are trying to access the machine. + +### Node meta usage +Nodes connected to the network will have one or more of these parameters as meta data: +* `_EU_supply` : Exists for PR and BA node types. This is the EU value supplied by the node. Output +* `_EU_demand` : Exists for RE and BA node types. This is the EU value the node requires to run. Output +* `_EU_input` : Exists for RE and BA node types. This is the actual EU value the network can give the node. Input + +The reason the LV|MV|HV type is prepended to meta data is because some machine +could require several supplies to work. +This way the supplies are separated per network. diff --git a/mods/technic_plus_beta/technic/doc/chests.md b/mods/technic_plus_beta/technic/doc/chests.md new file mode 100644 index 00000000..fcf0d9e9 --- /dev/null +++ b/mods/technic_plus_beta/technic/doc/chests.md @@ -0,0 +1,90 @@ + +chests +------ + +The technic mod replaces the basic Minetest game's single type of +chest with a range of chests that have different sizes and features. +The chest types are identified by the materials from which they are made; +the better chests are made from more exotic materials. The chest types +form a linear sequence, each being (with one exception noted below) +strictly more powerful than the preceding one. The sequence begins with +the wooden chest from the basic game, and each later chest type is built +by upgrading a chest of the preceding type. The chest types are: + +1. wooden chest: 8×4 (32) slots +2. iron chest: 9×5 (45) slots +3. copper chest: 12×5 (60) slots +4. silver chest: 12×6 (72) slots +5. gold chest: 15×6 (90) slots +6. mithril chest: 15×6 (90) slots + +The iron and later chests have the ability to sort their contents, +when commanded by a button in their interaction forms. Item types are +sorted in the same order used in the unified\_inventory craft guide. +The copper and later chests also have an auto-sorting facility that can +be enabled from the interaction form. An auto-sorting chest automatically +sorts its contents whenever a player closes the chest. The contents will +then usually be in a sorted state when the chest is opened, but may not +be if pneumatic tubes have operated on the chest while it was closed, +or if two players have the chest open simultaneously. + +The silver and gold chests, but not the mithril chest, have a built-in +sign-like capability. They can be given a textual label, which will +be visible when hovering over the chest. The gold chest, but again not +the mithril chest, can be further labelled with a colored patch that is +visible from a moderate distance. + +The mithril chest is currently an exception to the upgrading system. +It has only as many inventory slots as the preceding (gold) type, and has +fewer of the features. It has no feature that other chests don't have: +it is strictly weaker than the gold chest. It is planned that in the +future it will acquire some unique features, but for now the only reason +to use it is aesthetic. + +The size of the largest chests is dictated by the maximum size +of interaction form that the game engine can successfully display. +If in the future the engine becomes capable of handling larger forms, +by scaling them to fit the screen, the sequence of chest sizes will +likely be revised. + +As with the chest of the basic Minetest game, each chest type comes +in both locked and unlocked flavors. All of the chests work with the +pneumatic tubes of the pipeworks mod. + +## Sorting + +Chests can be sorted with one button with the following sort types : natural sort, by item, by quantity, by type or by wear. The chests can also be sorted automatically when its content changes. On the UI, the three buttons are the following : toggle automatic sorting, toggle sorting type, sort + +## Inventory move + +Chests have the ability to move all or a certain type of item with a button. All items that fit with that type will move from inventory to chest or the contrary. + +## Digilines + +Only mithril chests can send digilines logs. They can send messages of following types : +* Player/pipeworks item taking +* Player/pipeworks item putting +* Pipeworks overflow (chest is full) + +Example of digiline message : +```lua +{ + player = "singleplayer", + items = { + { + meta = { + }, + metadata = "", + count = 99, + name = "technic:quarry", + wear = 0 + } + }, + pos = { + y = 19, + x = 67, + z = 57 + }, + event = "put" +} +``` diff --git a/mods/technic_plus_beta/technic/doc/digilines.md b/mods/technic_plus_beta/technic/doc/digilines.md new file mode 100644 index 00000000..d006cf8c --- /dev/null +++ b/mods/technic_plus_beta/technic/doc/digilines.md @@ -0,0 +1,138 @@ + +# Technic digilines compatibility + +This document describes the interaction of +technic machines with the `digilines` mod (https://github.com/minetest-mods/digilines) + +## Digicables + +Digicables are a type of cable that carry both electric power and digiline messages. Like both original types of cable (electric cable and digiline), you just have to connect cables to each other in order to transmit power/information. They are needed to access nuclear reactor digiline information. The digicables are available in HV, MV and LV. + +## Switching station + +**NOTE**: make sure the channel is set accordingly, "switch" in this case + +There are two ways getting information from the switching station: +1. Give it a mesecon signal (eg. with a lever) and it will send always when the supply or demand changes. + +2. Send to the switching station `"get"` or `"GET"` and it will send back. + +The sent message is always a table containing the supply, demand and lag. + +Example luacontroller code: +```lua +if event.type == "program" then + -- start interrupt cycle + interrupt(1) +end + +if event.type == "interrupt" then + -- request stats + digiline_send("switch", "GET") +end + +if event.type == "digiline" and event.channel == "switch" then + --[[ + event.msg = { + demand = 0, -- demand in EU's + supply = 0, -- supply in EU's + lag = 0 -- generated lag in microseconds + } + --]] +end +``` + +## Power monitor +The commands: +- `"get"`: The power monitor sends back information about the attached network + - `"supply"`, `"demand"` and `"lag"`: Same as switching station + - `"battery_count"`, `"battery_charge"` and `"battery_charge_max"`: Totaled information about the attached batteries. + + +## Supply Converter +You can send the following to it: +- `"get"`: It will send back a table containing the fields `"enabled"`, `"power"` and `"mesecon_mode"` which are all integers. +- `"off"`: Deactivate the supply converter. +- `"on"`: Activate the supply converter. +- `"toggle"`: Activate or deactivate the supply converter depending on its current state. +- `"power "..power`: Set the amount of the power, it shall convert. +- `"mesecon_mode "..`: Set the mesecon mode. + +## Battery Boxes +Send to it `"get"` or `"GET"` and it will send a table back containing: +- `demand`: A number. +- `supply`: A number. +- `input`: A number. +- `charge`: A number. +- `max_charge`: A number. +- `src`: Itemstack made to table. +- `dst`: Itemstack made to table. +- `upgrade1`: Itemstack made to table. +- `upgrade2`: Itemstack made to table. + + +## Forcefield Emitter +You should send a table to it containing the `command` and for some commands the `value` field. +Some strings will automatically be made to tables: +- `"get"` :arrow_right: `{command = "get"}` +- `"off"` :arrow_right: `{command = "off"}` +- `"on"` :arrow_right: `{command = "on"}` +- `"toggle"` :arrow_right: `{command = "toggle"}` +- `"range "..range` :arrow_right: `{command = "range", value = range}` +- `"shape "..shape` :arrow_right: `{command = "shape", value = shape}` + +The commands: +- `"get"`: The forcefield emitter sends back a table containing: + - `"enabled"`: `0` is off, `1` is on. + - `"range"` + - `"shape"`: `0` is spheric, `1` is cubic. +- `"off"`: Deactivate the forcefield emitter. +- `"on"`: Activate the forcefield emitter. +- `"toggle"`: Activate or deactivate the forcefield emitter depending on its current state. +- `"range"`: Set the range to `value`. +- `"shape"`: `value` can be a number (`0` or `1`) or a string (`"sphere"` or `"cube"`). + + +## Nuclear Reactor +Since the nuclear reactor core can't be accessed by digiline wire because the water layer which mustn't have a hole, you need the HV Digicables to interact with it. + +You should send a table to it containing at least the `command` field and for some commands other fields. + +The commands: +- `"get"`: The nuclear reactor sends back a table containing: + - `"burn_time"`: The time in seconds how long the reactor already runs. One week after start, when it reaches 7 * 24 * 60 * 60 (=604800), the fuel is completely used. + - `"enabled"`: A bool. + - `"siren"`: A bool. + - `"structure_accumulated_badness"` + - `"rods"`: A table with 6 numbers in it, one for each fuel slot. + - A positive value is the count of fuel rods in the slot. + - `0` means the slot is empty. + - A negative value means some other items are in the slot. The absolute value is the count of these items. +- `"self_destruct"`: A setting has to be enabled to use this. The reactor will melt down after `timer` seconds or instantly. +- `"start"`: Tries to start the reactor, `"Start successful"` is sent back on success, `"Error"` if something is wrong. + +If the automatic start is enabled, it will always send `"fuel used"` when it uses fuel. + + +## Quarry +You should send a table to it containing the `command` and for some commands the `value` field. +Some strings will automatically be converted to tables: +- `"get"` :arrow_right: `{command = "get"}` +- `"on"` :arrow_right: `{command = "on"}` +- `"off"` :arrow_right: `{command = "off"}` +- `"restart` :arrow_right: `{command = "restart"}` +- `"radius "..value` :arrow_right: `{command = "radius", value = value}` +- `"max_depth "..value` :arrow_right: `{command = "max_depth", value = value}` + +The commands: +- `"get"`: The quarry sends back a table containing: + - `"enabled"`: `0` is off, `1` is on. + - `"radius"` + - `"max_depth"` + - `"finished"` + - `"dug_nodes"` + - `"dig_level"`: A negative value means above the quarry, a positive value means below. +- `"on"`: Activate the quarry. +- `"off"`: Deactivate the quarry. +- `"restart"`: Restart the quarry. +- `"radius"`: Set the radius to `value` and restart the quarry if the radius changed. diff --git a/mods/technic_plus_beta/technic/doc/generators.md b/mods/technic_plus_beta/technic/doc/generators.md new file mode 100644 index 00000000..6964101d --- /dev/null +++ b/mods/technic_plus_beta/technic/doc/generators.md @@ -0,0 +1,221 @@ + +power generators +---------------- + +### fuel-fired generators ### + +The fuel-fired generators are electrical power generators that generate +power by the combustion of fuel. Versions of them are available for +all three voltages (LV, MV, and HV). These are all capable of burning +any type of combustible fuel, such as coal. They are relatively easy +to build, and so tend to be the first kind of generator used to power +electrical machines. In this role they form an intermediate step between +the directly fuel-fired machines and a more mature electrical network +powered by means other than fuel combustion. They are also, by virtue of +simplicity and controllability, a useful fallback or peak load generator +for electrical networks that normally use more sophisticated generators. + +The MV and HV fuel-fired generators can accept fuel via pneumatic tube, +from any direction. + +Keeping a fuel-fired generator fully fuelled is usually wasteful, because +it will burn fuel as long as it has any, even if there is no demand for +the electrical power that it generates. This is unlike the directly +fuel-fired machines, which only burn fuel when they have work to do. +To satisfy intermittent demand without waste, a fuel-fired generator must +only be given fuel when there is either demand for the energy or at least +sufficient battery capacity on the network to soak up the excess energy. + +The higher-tier fuel-fired generators get much more energy out of a +fuel item than the lower-tier ones. The difference is much more than +is needed to overcome the inefficiency of supply converters, so it is +worth operating fuel-fired generators at a higher tier than the machines +being powered. + +### solar generators ### + +The solar generators are electrical power generators that generate power +from sunlight. Versions of them are available for all three voltages +(LV, MV, and HV). There are four types in total, two LV and one each +of MV and HV, forming a sequence of four tiers. The higher-tier ones +are each built mainly from three solar generators of the next tier down, +and their outputs scale in rough accordance, tripling at each tier. + +To operate, an arrayed solar generator must be at elevation +1 or above +and have a transparent block (typically air) immediately above it. +It will generate power only when the block above is well lit during +daylight hours. It will generate more power at higher elevation, +reaching maximum output at elevation +36 or higher when sunlit. The small +solar generator has similar rules with slightly different thresholds. +These rules are an attempt to ensure that the generator will only operate +from sunlight, but it is actually possible to fool them to some extent +with light sources such as meselamps. + +### hydro generator ### + +The hydro generator is an LV power generator that generates a respectable +amount of power from the natural motion of water. To operate, the +generator must be horizontally adjacent to flowing water. The power +produced is dependent on how much flow there is across any or all four +sides, the most flow of course coming from water that's flowing straight +down. + +### geothermal generator ### + +The geothermal generator is an LV power generator that generates a small +amount of power from the temperature difference between lava and water. +To operate, the generator must be horizontally adjacent to both lava +and water. It doesn't matter whether the liquids consist of source +blocks or flowing blocks. + +Beware that if lava and water blocks are adjacent to each other then the +lava will be solidified into stone or obsidian. If the lava adjacent to +the generator is thus destroyed, the generator will stop producing power. +Currently, in the default Minetest game, lava is destroyed even if +it is only diagonally adjacent to water. Under these circumstances, +the only way to operate the geothermal generator is with it adjacent +to one lava block and one water block, which are on opposite sides of +the generator. If diagonal adjacency doesn't destroy lava, such as with +the gloopblocks mod, then it is possible to have more than one lava or +water block adjacent to the geothermal generator. This increases the +generator's output, with the maximum output achieved with two adjacent +blocks of each liquid. + +### wind generator ### + +The wind generator is an MV power generator that generates a moderate +amount of energy from wind. To operate, the generator must be placed +atop a column of at least 20 wind mill frame blocks, and must be at +an elevation of +30 or higher. It generates more at higher elevation, +reaching maximum output at elevation +50 or higher. Its surroundings +don't otherwise matter; it doesn't actually need to be in open air. + +### nuclear generator ### + +The nuclear generator (nuclear reactor) is an HV power generator that +generates a large amount of energy from the controlled fission of +uranium-235. It must be fuelled, with uranium fuel rods, but consumes +the fuel quite slowly in relation to the rate at which it is likely to +be mined. The operation of a nuclear reactor poses radiological hazards +to which some thought must be given. Economically, the use of nuclear +power requires a high capital investment, and a secure infrastructure, +but rewards the investment well. + +Nuclear fuel is made from uranium. Natural uranium doesn't have a +sufficiently high proportion of U-235, so it must first be enriched +via centrifuge. Producing one unit of 3.5%-fissile uranium requires +the input of five units of 0.7%-fissile (natural) uranium, and produces +four units of 0.0%-fissile (fully depleted) uranium as a byproduct. +It takes five ingots of 3.5%-fissile uranium to make each fuel rod, and +six rods to fuel a reactor. It thus takes the input of the equivalent +of 150 ingots of natural uranium, which can be obtained from the mining +of 75 blocks of uranium ore, to make a full set of reactor fuel. + +The nuclear reactor is a large multi-block structure. Only one block in +the structure, the reactor core, is of a type that is truly specific to +the reactor; the rest of the structure consists of blocks that have mainly +non-nuclear uses. The reactor core is where all the generator-specific +action happens: it is where the fuel rods are inserted, and where the +power cable must connect to draw off the generated power. + +The reactor structure consists of concentric layers, each a cubical +shell, around the core. Immediately around the core is a layer of water, +representing the reactor coolant; water blocks may be either source blocks +or flowing blocks. Around that is a layer of stainless steel blocks, +representing the reactor pressure vessel, and around that a layer of +blast-resistant concrete blocks, representing a containment structure. +It is customary, though no longer mandatory, to surround this with a +layer of ordinary concrete blocks. The mandatory reactor structure +makes a 7×7×7 cube, and the full customary structure a +9×9×9 cube. + +The layers surrounding the core don't have to be absolutely complete. +Indeed, if they were complete, it would be impossible to cable the core to +a power network. The cable makes it necessary to have at least one block +missing from each surrounding layer. The water layer is only permitted +to have one water block missing of the 26 possible. The steel layer may +have up to two blocks missing of the 98 possible, and the blast-resistant +concrete layer may have up to two blocks missing of the 218 possible. +Thus it is possible to have not only a cable duct, but also a separate +inspection hole through the solid layers. The separate inspection hole +is of limited use: the cable duct can serve double duty. + +Once running, the reactor core is significantly radioactive. The layers +of reactor structure provide quite a lot of shielding, but not enough +to make the reactor safe to be around, in two respects. Firstly, the +shortest possible path from the core to a player outside the reactor +is sufficiently short, and has sufficiently little shielding material, +that it will damage the player. This only affects a player who is +extremely close to the reactor, and close to a face rather than a vertex. +The customary additional layer of ordinary concrete around the reactor +adds sufficient distance and shielding to negate this risk, but it can +also be addressed by just keeping extra distance (a little over two +meters of air). + +The second radiological hazard of a running reactor arises from shine +paths; that is, specific paths from the core that lack sufficient +shielding. The necessary cable duct, if straight, forms a perfect +shine path, because the cable itself has no radiation shielding effect. +Any secondary inspection hole also makes a shine path, along which the +only shielding material is the water of the reactor coolant. The shine +path aspect of the cable duct can be ameliorated by adding a kink in the +cable, but this still yields paths with reduced shielding. Ultimately, +shine paths must be managed either with specific shielding outside the +mandatory structure, or with additional no-go areas. + +The radioactivity of an operating reactor core makes starting up a reactor +hazardous, and can come as a surprise because the non-operating core +isn't radioactive at all. The radioactive damage is survivable, but it is +normally preferable to avoid it by some care around the startup sequence. +To start up, the reactor must have a full set of fuel inserted, have all +the mandatory structure around it, and be cabled to a switching station. +Only the fuel insertion requires direct access to the core, so irradiation +of the player can be avoided by making one of the other two criteria be +the last one satisfied. Completing the cabling to a switching station +is the easiest to do from a safe distance. + +Once running, the reactor will generate 100 kEU/s for a week (168 hours, +604800 seconds), a total of 6.048 GEU from one set of fuel. After the +week is up, it will stop generating and no longer be radioactive. It can +then be refuelled to run for another week. It is not really intended +to be possible to pause a running reactor, but actually disconnecting +it from a switching station will have the effect of pausing the week. +This will probably change in the future. A paused reactor is still +radioactive, just not generating electrical power. + +A running reactor can't be safely dismantled, and not only because +dismantling the reactor implies removing the shielding that makes +it safe to be close to the core. The mandatory parts of the reactor +structure are not just mandatory in order to start the reactor; they're +mandatory in order to keep it intact. If the structure around the core +gets damaged, and remains damaged, the core will eventually melt down. +How long there is before meltdown depends on the extent of the damage; +if only one mandatory block is missing, meltdown will follow in 100 +seconds. While the structure of a running reactor is in a damaged state, +heading towards meltdown, a siren built into the reactor core will sound. +If the structure is rectified, the siren will signal all-clear. If the +siren stops sounding without signalling all-clear, then it was stopped +by meltdown. + +If meltdown is imminent because of damaged reactor structure, digging the +reactor core is not a way to avert it. Digging the core of a running +reactor causes instant meltdown. The only way to dismantle a reactor +without causing meltdown is to start by waiting for it to finish the +week-long burning of its current set of fuel. Once a reactor is no longer +operating, it can be dismantled by ordinary means, with no special risks. + +Meltdown, if it occurs, destroys the reactor and poses a major +environmental hazard. The reactor core melts, becoming a hot, highly +radioactive liquid known as "corium". A single meltdown yields a single +corium source block, where the core used to be. Corium flows, and the +flowing corium is very destructive to whatever it comes into contact with. +Flowing corium also randomly solidifies into a radioactive solid called +"Chernobylite". The random solidification and random destruction of +solid blocks means that the flow of corium is constantly changing. +This combined with the severe radioactivity makes corium much more +challenging to deal with than lava. If a meltdown is left to its own +devices, it gets worse over time, as the corium works its way through +the reactor structure and starts to flow over a variety of paths. +It is best to tackle a meltdown quickly; the priority is to extinguish +the corium source block, normally by dropping gravel into it. Only the +most motivated should attempt to pick up the corium in a bucket. diff --git a/mods/technic_plus_beta/technic/doc/images/LV_Fuel_Fired_Generator_Crafting.png b/mods/technic_plus_beta/technic/doc/images/LV_Fuel_Fired_Generator_Crafting.png new file mode 100644 index 00000000..95e50f1a Binary files /dev/null and b/mods/technic_plus_beta/technic/doc/images/LV_Fuel_Fired_Generator_Crafting.png differ diff --git a/mods/technic_plus_beta/technic/doc/images/LV_cable_Crafting.png b/mods/technic_plus_beta/technic/doc/images/LV_cable_Crafting.png new file mode 100644 index 00000000..1354c0cf Binary files /dev/null and b/mods/technic_plus_beta/technic/doc/images/LV_cable_Crafting.png differ diff --git a/mods/technic_plus_beta/technic/doc/images/Switching_station_crafting.png b/mods/technic_plus_beta/technic/doc/images/Switching_station_crafting.png new file mode 100644 index 00000000..0f1d7674 Binary files /dev/null and b/mods/technic_plus_beta/technic/doc/images/Switching_station_crafting.png differ diff --git a/mods/technic_plus_beta/technic/doc/images/Technic Screenshot.png b/mods/technic_plus_beta/technic/doc/images/Technic Screenshot.png new file mode 100644 index 00000000..682effed Binary files /dev/null and b/mods/technic_plus_beta/technic/doc/images/Technic Screenshot.png differ diff --git a/mods/technic_plus_beta/technic/doc/machines.md b/mods/technic_plus_beta/technic/doc/machines.md new file mode 100644 index 00000000..50d1f973 --- /dev/null +++ b/mods/technic_plus_beta/technic/doc/machines.md @@ -0,0 +1,331 @@ + +powered machines +---------------- + +## Overview +Many of the important machines in Technic run on electricity, using wires to connect generators with the consuming machines. These electric circuits consist of a generator, a consumer, wiring, and a switching station. Every independent circuit requires all 4 of these elements to function. In general the machines are all connected on the bottom by wire. Machines should be placed first and then the wire placed under and around them. The wiring should automatically adjust itself to connect to each machine and adjacent wires. If the wiring looks incorrect, it's likely that it won't work so be sure to check this! + +Circuits are also grouped into 3 different categories based on how much power they transfer and the corresponding voltage: low voltage (LV), medium voltage (MV), and high voltage (HV). The base level for all electronics is low voltage, so if voltage isn't specified for a electrical component, you may safely assume it's low voltage. Most low-voltage components are upgradable to medium- and high-voltage through further crafting. To get started, you won't need to worry about any MV or HV components, and the basic low-voltage components are fine. + +## Getting started +The first step to working with the more advanced machines are to get a basic electrical circuit set up for converting coal into power for other machines. This will rely on the following: + + +1x LV Fuel Fired Generator + + +1x Switching station + + +2x LV Cable + +The generator and switching station should be placed side-by-side with the wire underneath connecting both of them. Once this is done, additional consumers can be added to the network. A grinder or extractor are both good choices to expand the capabilities of the coal-fired smelter and coal-fired alloy furnace that you already have. + + +### powered machine tiers ### + +Each powered machine takes its power in some specific form, being +either fuel-fired (burning fuel directly) or electrically powered at +some specific voltage. There is a general progression through the +game from using fuel-fired machines to electrical machines, and to +higher electrical voltages. The most important kinds of machine come +in multiple variants that are powered in different ways, so the earlier +ones can be superseded. However, some machines are only available for +a specific power tier, so the tier can't be entirely superseded. + +### powered machine upgrades ### + +Some machines have inventory slots that are used to upgrade them in +some way. Generally, machines of MV and HV tiers have two upgrade slots, +and machines of lower tiers (fuel-fired and LV) do not. Any item can +be placed in an upgrade slot, but only specific items will have any +upgrading effect. It is possible to have multiple upgrades of the same +type, but this can't be achieved by stacking more than one upgrade item +in one slot: it is necessary to put the same kind of item in more than one +upgrade slot. The ability to upgrade machines is therefore very limited. +Two kinds of upgrade are currently possible: an energy upgrade and a +tube upgrade. + +An energy upgrade consists of a battery item, the same kind of battery +that serves as a mobile energy store. The effect of an energy upgrade +is to improve in some way the machine's use of electrical energy, most +often by making it use less energy. The upgrade effect has no relation +to energy stored in the battery: the battery's charge level is irrelevant +and will not be affected. + +A tube upgrade consists of a control logic unit item. The effect of a +tube upgrade is to make the machine able, or more able, to eject items +it has finished with into pneumatic tubes. The machines that can take +this kind of upgrade are in any case capable of accepting inputs from +pneumatic tubes. These upgrades are essential in using powered machines +as components in larger automated systems. + +### tubes with powered machines ### + +Generally, powered machines of MV and HV tiers can work with pneumatic +tubes, and those of lower tiers cannot. (As an exception, the fuel-fired +furnace from the basic Minetest game can accept inputs through tubes, +but can't output into tubes.) + +If a machine can accept inputs through tubes at all, then this +is a capability of the basic machine, not requiring any upgrade. +Most item-processing machines take only one kind of input, and in that +case they will accept that input from any direction. This doesn't match +how tubes visually connect to the machines: generally tubes will visually +connect to any face except the front, but an item passing through a tube +in front of the machine will actually be accepted into the machine. + +A minority of machines take more than one kind of input, and in that +case the input slot into which an arriving item goes is determined by the +direction from which it arrives. In this case the machine may be picky +about the direction of arriving items, associating each input type with +a single face of the machine and not accepting inputs at all through the +remaining faces. Again, the visual connection of tubes doesn't match: +generally tubes will still visually connect to any face except the front, +thus connecting to faces that neither accept inputs nor emit outputs. + +Machines do not accept items from tubes into non-input inventory slots: +the output slots or upgrade slots. Output slots are normally filled +only by the processing operation of the machine, and upgrade slots must +be filled manually. + +Powered machines generally do not eject outputs into tubes without +an upgrade. One tube upgrade will make them eject outputs at a slow +rate; a second tube upgrade will increase the rate. Whether the slower +rate is adequate depends on how it compares to the rate at which the +machine produces outputs, and on how the machine is being used as part +of a larger construct. The machine always ejects its outputs through a +particular face, usually a side. Due to a bug, the side through which +outputs are ejected is not consistent: when the machine is rotated one +way, the direction of ejection is rotated the other way. This will +probably be fixed some day, but because a straightforward fix would +break half the machines already in use, the fix may be tied to some +larger change such as free selection of the direction of ejection. + +### battery boxes ### + +The primary purpose of battery boxes is to temporarily store electrical +energy to let an electrical network cope with mismatched supply and +demand. They have a secondary purpose of charging and discharging +powered tools. They are thus a mixture of electrical infrastructure, +powered machine, and generator. Battery boxes connect to cables only +from the bottom. + +MV and HV battery boxes have upgrade slots. Energy upgrades increase +the capacity of a battery box, each by 10% of the un-upgraded capacity. +This increase is far in excess of the capacity of the battery that forms +the upgrade. + +For charging and discharging of power tools, rather than having input and +output slots, each battery box has a charging slot and a discharging slot. +A fully charged/discharged item stays in its slot. The rates at which a +battery box can charge and discharge increase with voltage, so it can +be worth building a battery box of higher tier before one has other +infrastructure of that tier, just to get access to faster charging. + +MV and HV battery boxes work with pneumatic tubes. An item can be input +to the charging slot through the sides or back of the battery box, or +to the discharging slot through the top. With a tube upgrade, fully +charged/discharged tools (as appropriate for their slot) will be ejected +through a side. + +### processing machines ### + +The furnace, alloy furnace, grinder, extractor, compressor, and centrifuge +have much in common. Each implements some industrial process that +transforms items into other items, and the manner in which they present +these processes as powered machines is essentially identical. + +Most of the processing machines operate on inputs of only a single type +at a time, and correspondingly have only a single input slot. The alloy +furnace is an exception: it operates on inputs of two distinct types at +once, and correspondingly has two input slots. It doesn't matter which +way round the alloy furnace's inputs are placed in the two slots. + +The processing machines are mostly available in variants for multiple +tiers. The furnace and alloy furnace are each available in fuel-fired, +LV, and MV forms. The grinder, extractor, and compressor are each +available in LV and MV forms. The centrifuge is the only single-tier +processing machine, being only available in MV form. The higher-tier +machines process items faster than the lower-tier ones, but also have +higher power consumption, usually taking more energy overall to perform +the same amount of processing. The MV machines have upgrade slots, +and energy upgrades reduce their energy consumption. + +The MV machines can work with pneumatic tubes. They accept inputs via +tubes from any direction. For most of the machines, having only a single +input slot, this is perfectly simple behavior. The alloy furnace is more +complex: it will put an arriving item in either input slot, preferring to +stack it with existing items of the same type. It doesn't matter which +slot each of the alloy furnace's inputs is in, so it doesn't matter that +there's no direct control over that, but there is a risk that supplying +a lot of one item type through tubes will result in both slots containing +the same type of item, leaving no room for the second input. + +The MV machines can be given a tube upgrade to make them automatically +eject output items into pneumatic tubes. The items are always ejected +through a side, though which side it is depends on the machine's +orientation, due to a bug. Output items are always ejected singly. +For some machines, such as the grinder, the ejection rate with a +single tube upgrade doesn't keep up with the rate at which items can +be processed. A second tube upgrade increases the ejection rate. + +The LV and fuel-fired machines do not work with pneumatic tubes, except +that the fuel-fired furnace (actually part of the basic Minetest game) +can accept inputs from tubes. Items arriving through the bottom of +the furnace go into the fuel slot, and items arriving from all other +directions go into the input slot. + +### music player ### + +The music player is an LV powered machine that plays audio recordings. +It offers a selection of up to nine tracks. The technic modpack doesn't +include specific music tracks for this purpose; they have to be installed +separately. + +The music player gives the impression that the music is being played in +the Minetest world. The music only plays as long as the music player +is in place and is receiving electrical power, and the choice of music +is controlled by interaction with the machine. The sound also appears +to emanate specifically from the music player: the ability to hear it +depends on the player's distance from the music player. However, the +game engine doesn't currently support any other positional cues for +sound, such as attenuation, panning, or HRTF. The impression of the +sound being located in the Minetest world is also compromised by the +subjective nature of track choice: the specific music that is played to +a player depends on what media the player has installed. + +### CNC machine ### + +The CNC machine is an LV powered machine that cuts building blocks into a +variety of sub-block shapes that are not covered by the crafting recipes +of the stairs mod and its variants. Most of the target shapes are not +rectilinear, involving diagonal or curved surfaces. + +Only certain kinds of building material can be processed in the CNC +machine. + +### tool workshop ### + +The tool workshop is an MV powered machine that repairs mechanically-worn +tools, such as pickaxes and the other ordinary digging tools. It has +a single slot for a tool to be repaired, and gradually repairs the +tool while it is powered. For any single tool, equal amounts of tool +wear, resulting from equal amounts of tool use, take equal amounts of +repair effort. Also, all repairable tools currently take equal effort +to repair equal percentages of wear. The amount of tool use enabled by +equal amounts of repair therefore depends on the tool type. + +The mechanical wear that the tool workshop repairs is always indicated in +inventory displays by a colored bar overlaid on the tool image. The bar +can be seen to fill and change color as the tool workshop operates, +eventually disappearing when the repair is complete. However, not every +item that shows such a wear bar is using it to show mechanical wear. +A wear bar can also be used to indicate charging of a power tool with +stored electrical energy, or filling of a container, or potentially for +all sorts of other uses. The tool workshop won't affect items that use +wear bars to indicate anything other than mechanical wear. + +The tool workshop has upgrade slots. Energy upgrades reduce its power +consumption. + +It can work with pneumatic tubes. Tools to be repaired are accepted +via tubes from any direction. With a tube upgrade, the tool workshop +will also eject fully-repaired tools via one side, the choice of side +depending on the machine's orientation, as for processing machines. It is +safe to put into the tool workshop a tool that is already fully repaired: +assuming the presence of a tube upgrade, the tool will be quickly ejected. +Furthermore, any item of unrepairable type will also be ejected as if +fully repaired. (Due to a historical limitation of the basic Minetest +game, it is impossible for the tool workshop to distinguish between a +fully-repaired tool and any item type that never displays a wear bar.) + +### quarry ### + +The quarry is an HV powered machine that automatically digs out a +large area. The region that it digs out is a cuboid with a square +horizontal cross section, located immediately behind the quarry machine. +The quarry's action is slow and energy-intensive, but requires little +player effort. + +The size of the quarry's horizontal cross section is configurable through +the machine's interaction form. A setting referred to as "radius" +is an integer number of meters which can vary from 2 to 8 inclusive. +The horizontal cross section is a square with side length of twice the +radius plus one meter, thus varying from 5 to 17 inclusive. Vertically, +the quarry always digs from 3 m above the machine to 100 m below it, +inclusive, a total vertical height of 104 m. + +Whatever the quarry digs up is ejected through the top of the machine, +as if from a pneumatic tube. Normally a tube should be placed there +to convey the material into a sorting system, processing machines, or +at least chests. A chest may be placed directly above the machine to +capture the output without sorting, but is liable to overflow. + +If the quarry encounters something that cannot be dug, such as a liquid, +a locked chest, or a protected area, it will skip past that and attempt +to continue digging. + +The quarry consumes 10 kEU per block dug, which is quite a lot of energy. +With most of what is dug being mere stone, it is usually not economically +favorable to power a quarry from anything other than solar power. +In particular, one cannot expect to power a quarry by burning the coal +that it digs up. + +Given sufficient power, the quarry digs at a rate of one block per second. +This is rather tedious to wait for. Unfortunately, leaving the quarry +unattended normally means that the Minetest server won't keep the machine +running: it needs a player nearby. This can be resolved by using a world +anchor. The digging is still quite slow, and independently of whether a +world anchor is used the digging can be speeded up by placing multiple +quarry machines with overlapping digging areas. Four can be placed to +dig identical areas, one on each side of the square cross section. + +The quarry can be toggled on and off with a mesecons signal. + +### forcefield emitter ### + +The forcefield emitter is an HV powered machine that generates a +forcefield reminiscent of those seen in many science-fiction stories. + +The emitter can be configured to generate a forcefield of either +spherical or cubical shape, in either case centered on the emitter. +The size of the forcefield is configured using a radius parameter that +is an integer number of meters which can vary from 5 to 20 inclusive. +For a spherical forcefield this is simply the radius of the forcefield; +for a cubical forcefield it is the distance from the emitter to the +center of each square face. + +The power drawn by the emitter is proportional to the surface area of +the forcefield being generated. A spherical forcefield is therefore the +cheapest way to enclose a specified volume of space with a forcefield, +if the shape of the space doesn't matter. A cubical forcefield is less +efficient at enclosing volume, but is cheaper than the larger spherical +forcefield that would be required if it is necessary to enclose a +cubical space. + +The emitter is normally controlled merely through its interaction form, +which has an enable/disable toggle. However, it can also (via the form) +be placed in a mesecon-controlled mode. If mesecon control is enabled, +the emitter must be receiving a mesecon signal in addition to being +manually enabled, in order for it to generate the forcefield. + +The forcefield itself behaves largely as if solid, despite being +immaterial: it cannot be traversed, and prevents access to blocks behind +it. It is transparent, but not totally invisible. It cannot be dug. +Some effects can pass through it, however, such as the beam of a mining +laser, and explosions. In fact, explosions as currently implemented by +the tnt mod actually temporarily destroy the forcefield itself; the tnt +mod assumes too much about the regularity of node types. + +The forcefield occupies space that would otherwise have been air, but does +not replace or otherwise interfere with materials that are solid, liquid, +or otherwise not just air. If such an object blocking the forcefield is +removed, the forcefield will quickly extend into the now-available space, +but it does not do so instantly: there is a brief moment when the space +is air and can be traversed. + +It is possible to have a doorway in a forcefield, by placing in advance, +in space that the forcefield would otherwise occupy, some non-air blocks +that can be walked through. For example, a door suffices, and can be +opened and closed while the forcefield is in place. diff --git a/mods/technic_plus_beta/technic/doc/mesecons.md b/mods/technic_plus_beta/technic/doc/mesecons.md new file mode 100644 index 00000000..cff258ba --- /dev/null +++ b/mods/technic_plus_beta/technic/doc/mesecons.md @@ -0,0 +1,10 @@ + +# Technic mesecons compatibility + +This document describes the interaction of +technic machines with the `mesecons` mod (https://github.com/minetest-mods/mesecons) + +## HV Quarry + +* **On-Action**: Enables the quarry +* **Off-Action**: Disables the quarry diff --git a/mods/technic_plus_beta/technic/doc/power.md b/mods/technic_plus_beta/technic/doc/power.md new file mode 100644 index 00000000..68076775 --- /dev/null +++ b/mods/technic_plus_beta/technic/doc/power.md @@ -0,0 +1,67 @@ + +electrical power +---------------- + +Most machines in technic are electrically powered. To operate them it is +necessary to construct an electrical power network. The network links +together power generators and power-consuming machines, connecting them +using power cables. + +There are three tiers of electrical networking: low voltage (LV), +medium voltage (MV), and high voltage (HV). Each network must operate +at a single voltage, and most electrical items are specific to a single +voltage. Generally, the machines of higher tiers are more powerful, +but consume more energy and are more expensive to build, than machines +of lower tiers. It is normal to build networks of all three tiers, +in ascending order as one progresses through the game, but it is not +strictly necessary to do this. Building HV equipment requires some parts +that can only be manufactured using electrical machines, either LV or MV, +so it is not possible to build an HV network first, but it is possible +to skip either LV or MV on the way to HV. + +Each voltage has its own cable type, with distinctive insulation. Cable +segments connect to each other and to compatible machines automatically. +Incompatible electrical items don't connect. All non-cable electrical +items must be connected via cable: they don't connect directly to each +other. Most electrical items can connect to cables in any direction, +but there are a couple of important exceptions noted below. + +To be useful, an electrical network must connect at least one power +generator to at least one power-consuming machine. In addition to these +items, the network must have a "switching station" in order to operate: +no energy will flow without one. Unlike most electrical items, the +switching station is not voltage-specific: the same item will manage +a network of any tier. However, also unlike most electrical items, +it is picky about the direction in which it is connected to the cable: +the cable must be directly below the switching station. + +Hovering over a network's switching station will show the aggregate energy +supply and demand, which is useful for troubleshooting. Electrical energy +is measured in "EU", and power (energy flow) in EU per second (EU/s). +Energy is shifted around a network instantaneously once per second. + +In a simple network with only generators and consumers, if total +demand exceeds total supply then no energy will flow, the machines +will do nothing, and the generators' output will be lost. To handle +this situation, it is recommended to add a battery box to the network. +A battery box will store generated energy, and when enough has been +stored to run the consumers for one second it will deliver it to the +consumers, letting them run part-time. It also stores spare energy +when supply exceeds demand, to let consumers run full-time when their +demand occasionally peaks above the supply. More battery boxes can +be added to cope with larger periods of mismatched supply and demand, +such as those resulting from using solar generators (which only produce +energy in the daytime). + +When there are electrical networks of multiple tiers, it can be appealing +to generate energy on one tier and transfer it to another. The most +direct way to do this is with the "supply converter", which can be +directly wired into two networks. It is another tier-independent item, +and also particular about the direction of cable connections: it must +have the cable of one network directly above, and the cable of another +network directly below. The supply converter demands 10000 EU/s from +the network above, and when this network gives it power it supplies 9000 +EU/s to the network below. Thus it is only 90% efficient, unlike most of +the electrical system which is 100% efficient in moving energy around. +To transfer more than 10000 EU/s between networks, connect multiple +supply converters in parallel. diff --git a/mods/technic_plus_beta/technic/doc/processes.md b/mods/technic_plus_beta/technic/doc/processes.md new file mode 100644 index 00000000..b291ed96 --- /dev/null +++ b/mods/technic_plus_beta/technic/doc/processes.md @@ -0,0 +1,105 @@ + +industrial processes +-------------------- + +### alloying ### + +In technic, alloying is a way of combining items to create other items, +distinct from standard crafting. Alloying always uses inputs of exactly +two distinct types, and produces a single output. Like cooking, which +takes a single input, it is performed using a powered machine, known +generically as an "alloy furnace". An alloy furnace always has two +input slots, and it doesn't matter which way round the two ingredients +are placed in the slots. Many alloying recipes require one or both +slots to contain a stack of more than one of the ingredient item: the +quantity required of each ingredient is part of the recipe. + +As with the furnaces used for cooking, there are multiple kinds of alloy +furnace, powered in different ways. The most-used alloy furnaces are +electrically powered. There is also an alloy furnace that is powered +by directly burning fuel, just like the basic cooking furnace. Building +almost any electrical machine, including the electrically-powered alloy +furnaces, requires a machine casing component, one ingredient of which +is brass, an alloy. It is therefore necessary to use the fuel-fired +alloy furnace in the early part of the game, on the way to building +electrical machinery. + +Alloying recipes are mainly concerned with metals. These recipes +combine a base metal with some other element, most often another metal, +to produce a new metal. This is discussed in the section on metal. +There are also a few alloying recipes in which the base ingredient is +non-metallic, such as the recipe for the silicon wafer. + +### grinding, extracting, and compressing ### + +Grinding, extracting, and compressing are three distinct, but very +similar, ways of converting one item into another. They are all quite +similar to the cooking found in the basic Minetest game. Each uses +an input consisting of a single item type, and produces a single +output. They are all performed using powered machines, respectively +known generically as a "grinder", "extractor", and "compressor". +Some compressing recipes require the input to be a stack of more than +one of the input item: the quantity required is part of the recipe. +Grinding and extracting recipes never require such a stacked input. + +There are multiple kinds of grinder, extractor, and compressor. Unlike +cooking furnaces and alloy furnaces, there are none that directly burn +fuel; they are all electrically powered. + +Grinding recipes always produce some kind of dust, loosely speaking, +as output. The most important grinding recipes are concerned with metals: +every metal lump or ingot can be ground into metal dust. Coal can also +be ground into dust, and burning the dust as fuel produces much more +energy than burning the original coal lump. There are a few other +grinding recipes that make block types from the basic Minetest game +more interconvertible: standard stone can be ground to standard sand, +desert stone to desert sand, cobblestone to gravel, and gravel to dirt. + +Extracting is a miscellaneous category, used for a small group +of processes that just don't fit nicely anywhere else. (Its name is +notably vaguer than those of the other kinds of processing.) It is used +for recipes that produce dye, mainly from flowers. (However, for those +recipes using flowers, the basic Minetest game provides parallel crafting +recipes that are easier to use and produce more dye, and those recipes +are not suppressed by technic.) Its main use is to generate rubber from +raw latex, which it does three times as efficiently as merely cooking +the latex. Extracting was also formerly used for uranium enrichment for +use as nuclear fuel, but this use has been superseded by a new enrichment +system using the centrifuge. + +Compressing recipes are mainly used to produce a few relatively advanced +artificial item types, such as the copper and carbon plates used in +advanced machine recipes. There are also a couple of compressing recipes +making natural block types more interconvertible. + +### centrifuging ### + +Centrifuging is another way of using a machine to convert items. +Centrifuging takes an input of a single item type, and produces outputs +of two distinct types. The input may be required to be a stack of +more than one of the input item: the quantity required is part of +the recipe. Centrifuging is only performed by a single machine type, +the MV (electrically-powered) centrifuge. + +Currently, centrifuging recipes don't appear in the unified\_inventory +craft guide, because unified\_inventory can't yet handle recipes with +multiple outputs. + +Generally, centrifuging separates the input item into constituent +substances, but it can only work when the input is reasonably fluid, +and in marginal cases it is quite destructive to item structure. +(In real life, centrifuges require their input to be mainly fluid, that +is either liquid or gas. Few items in the game are described as liquid +or gas, so the concept of the centrifuge is stretched a bit to apply to +finely-divided solids.) + +The main use of centrifuging is in uranium enrichment, where it +separates the isotopes of uranium dust that otherwise appears uniform. +Enrichment is a necessary process before uranium can be used as nuclear +fuel, and the radioactivity of uranium blocks is also affected by its +isotopic composition. + +A secondary use of centrifuging is to separate the components of +metal alloys. This can only be done using the dust form of the alloy. +It recovers both components of binary metal/metal alloys. It can't +recover the carbon from steel or cast iron. diff --git a/mods/technic_plus_beta/technic/doc/radioactivity.md b/mods/technic_plus_beta/technic/doc/radioactivity.md new file mode 100644 index 00000000..627572f4 --- /dev/null +++ b/mods/technic_plus_beta/technic/doc/radioactivity.md @@ -0,0 +1,136 @@ + +radioactivity +------------- + +The technic mod adds radioactivity to the game, as a hazard that can +harm player characters. Certain substances in the game are radioactive, +and when placed as blocks in the game world will damage nearby players. +Conversely, some substances attenuate radiation, and so can be used +for shielding. The radioactivity system is based on reality, but is +not an attempt at serious simulation: like the rest of the game, it has +many simplifications and deliberate deviations from reality in the name +of game balance. + +In real life radiological hazards can be roughly divided into three +categories based on the time scale over which they act: prompt radiation +damage (such as radiation burns) that takes effect immediately; radiation +poisoning that becomes visible in hours and lasts weeks; and cumulative +effects such as increased cancer risk that operate over decades. +The game's version of radioactivity causes only prompt damage, not +any delayed effects. Damage comes in the abstracted form of removing +the player's hit points, and is immediately visible to the player. +As with all other kinds of damage in the game, the player can restore +the hit points by eating food items. High-nutrition foods, such as the +pie baskets supplied by the bushes\_classic mod, are a useful tool in +dealing with radiological hazards. + +Only a small range of items in the game are radioactive. From the technic +mod, the only radioactive items are uranium ore, refined uranium blocks, +nuclear reactor cores (when operating), and the materials released when +a nuclear reactor melts down. Other mods can plug into the technic +system to make their own block types radioactive. Radioactive items +are harmless when held in inventories. They only cause radiation damage +when placed as blocks in the game world. + +The rate at which damage is caused by a radioactive block depends on the +distance between the source and the player. Distance matters because the +damaging radiation is emitted equally in all directions by the source, +so with distance it spreads out, so less of it will strike a target +of any specific size. The amount of radiation absorbed by a target +thus varies in proportion to the inverse square of the distance from +the source. The game imitates this aspect of real-life radioactivity, +but with some simplifications. While in real life the inverse square law +is only really valid for sources and targets that are small relative to +the distance between them, in the game it is applied even when the source +and target are large and close together. Specifically, the distance is +measured from the center of the radioactive block to the abdomen of the +player character. For extremely close encounters, such as where the +player swims in a radioactive liquid, there is an enforced lower limit +on the effective distance. + +Different types of radioactive block emit different amounts of radiation. +The least radioactive of the radioactive block types is uranium ore, +which causes 0.25 HP/s damage to a player 1 m away. A block of refined +but unenriched uranium, as an example, is nine times as radioactive, +and so will cause 2.25 HP/s damage to a player 1 m away. By the inverse +square law, the damage caused by that uranium block reduces by a factor +of four at twice the distance, that is to 0.5625 HP/s at a distance of 2 +m, or by a factor of nine at three times the distance, that is to 0.25 +HP/s at a distance of 3 m. Other radioactive block types are far more +radioactive than these: the most radioactive of all, the result of a +nuclear reactor melting down, is 1024 times as radioactive as uranium ore. + +Uranium blocks are radioactive to varying degrees depending on their +isotopic composition. An isotope being fissile, and thus good as +reactor fuel, is essentially uncorrelated with it being radioactive. +The fissile U-235 is about six times as radioactive than the non-fissile +U-238 that makes up the bulk of natural uranium, so one might expect that +enriching from 0.7% fissile to 3.5% fissile (or depleting to 0.0%) would +only change the radioactivity of uranium by a few percent. But actually +the radioactivity of enriched uranium is dominated by the non-fissile +U-234, which makes up only about 50 parts per million of natural uranium +but is about 19000 times more radioactive than U-238. The radioactivity +of natural uranium comes just about half from U-238 and half from U-234, +and the uranium gets enriched in U-234 along with the U-235. This makes +3.5%-fissile uranium about three times as radioactive as natural uranium, +and 0.0%-fissile uranium about half as radioactive as natural uranium. + +Radiation is attenuated by the shielding effect of material along the +path between the radioactive block and the player. In general, only +blocks of homogeneous material contribute to the shielding effect: for +example, a block of solid metal has a shielding effect, but a machine +does not, even though the machine's ingredients include a metal case. +The shielding effect of each block type is based on the real-life +resistance of the material to ionising radiation, but for game balance +the effectiveness of shielding is scaled down from real life, more so +for stronger shield materials than for weaker ones. Also, whereas in +real life materials have different shielding effects against different +types of radiation, the game only has one type of damaging radiation, +and so only one set of shielding values. + +Almost any solid or liquid homogeneous material has some shielding value. +At the low end of the scale, 5 meters of wooden planks nearly halves +radiation, though in that case the planks probably contribute more +to safety by forcing the player to stay 5 m further away from the +source than by actual attenuation. Dirt halves radiation in 2.4 m, +and stone in 1.7 m. When a shield must be deliberately constructed, +the preferred materials are metals, the denser the better. Iron and +steel halve radiation in 1.1 m, copper in 1.0 m, and silver in 0.95 m. +Lead would halve in 0.69 m (its in-game shielding value is 80). Gold halves radiation +in 0.53 m (factor of 3.7 per meter), but is a bit scarce to use for +this purpose. Uranium halves radiation in 0.31 m (factor of 9.4 per +meter), but is itself radioactive. The very best shielding in the game +is nyancat material (nyancats and their rainbow blocks), which halves +radiation in 0.22 m (factor of 24 per meter), but is extremely scarce. See [technic/technic/radiation.lua](https://github.com/minetest-technic/technic/blob/master/technic/radiation.lua) for the in-game shielding values, which are different from real-life values. + +If the theoretical radiation damage from a particular source is +sufficiently small, due to distance and shielding, then no damage at all +will actually occur. This means that for any particular radiation source +and shielding arrangement there is a safe distance to which a player can +approach without harm. The safe distance is where the radiation damage +would theoretically be 0.25 HP/s. This damage threshold is applied +separately for each radiation source, so to be safe in a multi-source +situation it is only necessary to be safe from each source individually. + +The best way to use uranium as shielding is in a two-layer structure, +of uranium and some non-radioactive material. The uranium layer should +be nearer to the primary radiation source and the non-radioactive layer +nearer to the player. The uranium provides a great deal of shielding +against the primary source, and the other material shields against +the uranium layer. Due to the damage threshold mechanism, a meter of +dirt is sufficient to shield fully against a layer of fully-depleted +(0.0%-fissile) uranium. Obviously this is only worthwhile when the +primary radiation source is more radioactive than a uranium block. + +When constructing permanent radiation shielding, it is necessary to +pay attention to the geometry of the structure, and particularly to any +holes that have to be made in the shielding, for example to accommodate +power cables. Any hole that is aligned with the radiation source makes a +"shine path" through which a player may be irradiated when also aligned. +Shine paths can be avoided by using bent paths for cables, passing +through unaligned holes in multiple shield layers. If the desired +shielding effect depends on multiple layers, a hole in one layer still +produces a partial shine path, along which the shielding is reduced, +so the positioning of holes in each layer must still be considered. +Tricky shine paths can also be addressed by just keeping players out of +the dangerous area. diff --git a/mods/technic_plus_beta/technic/doc/resources.md b/mods/technic_plus_beta/technic/doc/resources.md new file mode 100644 index 00000000..690dd175 --- /dev/null +++ b/mods/technic_plus_beta/technic/doc/resources.md @@ -0,0 +1,7 @@ +Technic provides additional resources for building these machines. + +## Latex + + + +Latex is used for manufacturing rubber, which is heavily used for the medium- and high-voltage components within Technic. Latex can be harvested directly from rubber trees (look for the pale green/seafoam leaves) using the tree tap like any other tool. Rubber trees regenerate their latex supplies after about a day. diff --git a/mods/technic_plus_beta/technic/doc/substances.md b/mods/technic_plus_beta/technic/doc/substances.md new file mode 100644 index 00000000..d54fd526 --- /dev/null +++ b/mods/technic_plus_beta/technic/doc/substances.md @@ -0,0 +1,490 @@ + +substances +---------- + +### ore ### + +The technic mod makes extensive use of not just the default ores but also +some that are added by mods. You will need to mine for all the ore types +in the course of the game. Each ore type is found at a specific range of +elevations, and while the ranges mostly overlap, some have non-overlapping +ranges, so you will ultimately need to mine at more than one elevation +to find all the ores. Also, because one of the best elevations to mine +at is very deep, you will be unable to mine there early in the game. + +Elevation is measured in meters, relative to a reference plane that +is not quite sea level. (The standard sea level is at an elevation +of about +1.4.) Positive elevations are above the reference plane and +negative elevations below. Because elevations are always described this +way round, greater numbers when higher, we avoid the word "depth". + +The ores that matter in technic are coal, iron, copper, tin, zinc, +chromium, uranium, silver, gold, mithril, mese, and diamond. + +Coal is part of the basic Minetest game. It is found from elevation ++64 downwards, so is available right on the surface at the start of +the game, but it is far less abundant above elevation 0 than below. +It is initially used as a fuel, driving important machines in the early +part of the game. It becomes less important as a fuel once most of your +machines are electrically powered, but burning fuel remains a way to +generate electrical power. Coal is also used, usually in dust form, as +an ingredient in alloying recipes, wherever elemental carbon is required. + +Iron is part of the basic Minetest game. It is found from elevation ++2 downwards, and its abundance increases in stages as one descends, +reaching its maximum from elevation -64 downwards. It is a common metal, +used frequently as a structural component. In technic, unlike the basic +game, iron is used in multiple forms, mainly alloys based on iron and +including carbon (coal). + +Copper is part of the basic Minetest game (having migrated there from +moreores). It is found from elevation -16 downwards, but is more abundant +from elevation -64 downwards. It is a common metal, used either on its +own for its electrical conductivity, or as the base component of alloys. +Although common, it is very heavily used, and most of the time it will +be the material that most limits your activity. + +Tin is part of the basic Minetest game (having migrated there from +moreores). It is found from elevation +8 downwards, with no +elevation-dependent variations in abundance beyond that point. +It is a common metal. Its main use in pure form is as a component +of electrical batteries. Apart from that its main purpose is +as the secondary ingredient in bronze (the base being copper), but bronze +is itself little used. Its abundance is well in excess of its usage, +so you will usually have a surplus of it. + +Zinc is supplied by technic. It is found from elevation +2 downwards, +with no elevation-dependent variations in abundance beyond that point. +It is a common metal. Its main use is as the secondary ingredient +in brass (the base being copper), but brass is itself little used. +Its abundance is well in excess of its usage, so you will usually have +a surplus of it. + +Chromium is supplied by technic. It is found from elevation -100 +downwards, with no elevation-dependent variations in abundance beyond +that point. It is a moderately common metal. Its main use is as the +secondary ingredient in stainless steel (the base being iron). + +Uranium is supplied by technic. It is found only from elevation -80 down +to -300; using it therefore requires one to mine above elevation -300 even +though deeper mining is otherwise more productive. It is a moderately +common metal, useful only for reasons related to radioactivity: it forms +the fuel for nuclear reactors, and is also one of the best radiation +shielding materials available. It is not difficult to find enough uranium +ore to satisfy these uses. Beware that the ore is slightly radioactive: +it will slightly harm you if you stand as close as possible to it. +It is safe when more than a meter away or when mined. + +Silver is supplied by the moreores mod. It is found from elevation -2 +downwards, with no elevation-dependent variations in abundance beyond +that point. It is a semi-precious metal. It is little used, being most +notably used in electrical items due to its conductivity, being the best +conductor of all the pure elements. + +Gold is part of the basic Minetest game (having migrated there from +moreores). It is found from elevation -64 downwards, but is more +abundant from elevation -256 downwards. It is a precious metal. It is +little used, being most notably used in electrical items due to its +combination of good conductivity (third best of all the pure elements) +and corrosion resistance. + +Mithril is supplied by the moreores mod. It is found from elevation +-512 downwards, the deepest ceiling of any minable substance, with +no elevation-dependent variations in abundance beyond that point. +It is a rare precious metal, and unlike all the other metals described +here it is entirely fictional, being derived from J. R. R. Tolkien's +Middle-Earth setting. It is little used. + +Mese is part of the basic Minetest game. It is found from elevation +-64 downwards. The ore is more abundant from elevation -256 downwards, +and from elevation -1024 downwards there are also occasional blocks of +solid mese (each yielding as much mese as nine blocks of ore). It is a +precious gemstone, and unlike diamond it is entirely fictional. It is +used in many recipes, though mainly not in large quantities, wherever +some magical quality needs to be imparted. + +Diamond is part of the basic Minetest game (having migrated there from +technic). It is found from elevation -128 downwards, but is more abundant +from elevation -256 downwards. It is a precious gemstone. It is used +moderately, mainly for reasons connected to its extreme hardness. + +### rock ### + +In addition to the ores, there are multiple kinds of rock that need to be +mined in their own right, rather than for minerals. The rock types that +matter in technic are standard stone, desert stone, marble, and granite. + +Standard stone is part of the basic Minetest game. It is extremely +common. As in the basic game, when dug it yields cobblestone, which can +be cooked to turn it back into standard stone. Cobblestone is used in +recipes only for some relatively primitive machines. Standard stone is +used in a couple of machine recipes. These rock types gain additional +significance with technic because the grinder can be used to turn them +into dirt and sand. This, especially when combined with an automated +cobblestone generator, can be an easier way to acquire sand than +collecting it where it occurs naturally. + +Desert stone is part of the basic Minetest game. It is found specifically +in desert biomes, and only from elevation +2 upwards. Although it is +easily accessible, therefore, its quantity is ultimately quite limited. +It is used in a few recipes. + +Marble is supplied by technic. It is found in dense clusters from +elevation -50 downwards. It has mainly decorative use, but also appears +in one machine recipe. + +Granite is supplied by technic. It is found in dense clusters from +elevation -150 downwards. It is much harder to dig than standard stone, +so impedes mining when it is encountered. It has mainly decorative use, +but also appears in a couple of machine recipes. + +### rubber ### + +Rubber is a biologically-derived material that has industrial uses due +to its electrical resistivity and its impermeability. In technic, it +is used in a few recipes, and it must be acquired by tapping rubber trees. + +If you have the moretrees mod installed, the rubber trees you need +are those defined by that mod. If not, technic supplies a copy of the +moretrees rubber tree. + +Extracting rubber requires a specific tool, a tree tap. Using the tree +tap (by left-clicking) on a rubber tree trunk block extracts a lump of +raw latex from the trunk. Each trunk block can be repeatedly tapped for +latex, at intervals of several minutes; its appearance changes to show +whether it is currently ripe for tapping. Each tree has several trunk +blocks, so several latex lumps can be extracted from a tree in one visit. + +Raw latex isn't used directly. It must be vulcanized to produce finished +rubber. This can be performed by alloying the latex with coal dust. + +### metal ### + +Many of the substances important in technic are metals, and there is +a common pattern in how metals are handled. Generally, each metal can +exist in five forms: ore, lump, dust, ingot, and block. With a couple of +tricky exceptions in mods outside technic, metals are only *used* in dust, +ingot, and block forms. Metals can be readily converted between these +three forms, but can't be converted from them back to ore or lump forms. + +As in the basic Minetest game, a "lump" of metal is acquired directly by +digging ore, and will then be processed into some other form for use. +A lump is thus more akin to ore than to refined metal. (In real life, +metal ore rarely yields lumps ("nuggets") of pure metal directly. +More often the desired metal is chemically bound into the rock as an +oxide or some other compound, and the ore must be chemically processed +to yield pure metal.) + +Not all metals occur directly as ore. Generally, elemental metals (those +consisting of a single chemical element) occur as ore, and alloys (those +consisting of a mixture of multiple elements) do not. In fact, if the +fictional mithril is taken to be elemental, this pattern is currently +followed perfectly. (It is not clear in the Middle-Earth setting whether +mithril is elemental or an alloy.) This might change in the future: +in real life some alloys do occur as ore, and some elemental metals +rarely occur naturally outside such alloys. Metals that do not occur +as ore also lack the "lump" form. + +The basic Minetest game offers a single way to refine metals: cook a lump +in a furnace to produce an ingot. With technic this refinement method +still exists, but is rarely used outside the early part of the game, +because technic offers a more efficient method once some machines have +been built. The grinder, available only in electrically-powered forms, +can grind a metal lump into two piles of metal dust. Each dust pile +can then be cooked into an ingot, yielding two ingots from one lump. +This doubling of material value means that you should only cook a lump +directly when you have no choice, mainly early in the game when you +haven't yet built a grinder. + +An ingot can also be ground back to (one pile of) dust. Thus it is always +possible to convert metal between ingot and dust forms, at the expense +of some energy consumption. Nine ingots of a metal can be crafted into +a block, which can be used for building. The block can also be crafted +back to nine ingots. Thus it is possible to freely convert metal between +ingot and block forms, which is convenient to store the metal compactly. +Every metal has dust, ingot, and block forms. + +Alloying recipes in which a metal is the base ingredient, to produce a +metal alloy, always come in two forms, using the metal either as dust +or as an ingot. If the secondary ingredient is also a metal, it must +be supplied in the same form as the base ingredient. The output alloy +is also returned in the same form. For example, brass can be produced +by alloying two copper ingots with one zinc ingot to make three brass +ingots, or by alloying two piles of copper dust with one pile of zinc +dust to make three piles of brass dust. The two ways of alloying produce +equivalent results. + +### iron and its alloys ### + +Iron forms several important alloys. In real-life history, iron was the +second metal to be used as the base component of deliberately-constructed +alloys (the first was copper), and it was the first metal whose working +required processes of any metallurgical sophistication. The game +mechanics around iron broadly imitate the historical progression of +processes around it, rather than the less-varied modern processes. + +The two-component alloying system of iron with carbon is of huge +importance, both in the game and in real life. The basic Minetest game +doesn't distinguish between these pure iron and these alloys at all, +but technic introduces a distinction based on the carbon content, and +renames some items of the basic game accordingly. + +The iron/carbon spectrum is represented in the game by three metal +substances: wrought iron, carbon steel, and cast iron. Wrought iron +has low carbon content (less than 0.25%), resists shattering, and +is easily welded, but is relatively soft and susceptible to rusting. +In real-life history it was used for rails, gates, chains, wire, pipes, +fasteners, and other purposes. Cast iron has high carbon content +(2.1% to 4%), is especially hard, and resists corrosion, but is +relatively brittle, and difficult to work. Historically it was used +to build large structures such as bridges, and for cannons, cookware, +and engine cylinders. Carbon steel has medium carbon content (0.25% +to 2.1%), and intermediate properties: moderately hard and also tough, +somewhat resistant to corrosion. In real life it is now used for most +of the purposes previously satisfied by wrought iron and many of those +of cast iron, but has historically been especially important for its +use in swords, armor, skyscrapers, large bridges, and machines. + +In real-life history, the first form of iron to be refined was +wrought iron, which is nearly pure iron, having low carbon content. +It was produced from ore by a low-temperature furnace process (the +"bloomery") in which the ore/iron remains solid and impurities (slag) +are progressively removed by hammering ("working", hence "wrought"). +This began in the middle East, around 1800 BCE. + +Historically, the next forms of iron to be refined were those of high +carbon content. This was the result of the development of a more +sophisticated kind of furnace, the blast furnace, capable of reaching +higher temperatures. The real advantage of the blast furnace is that it +melts the metal, allowing it to be cast straight into a shape supplied by +a mould, rather than having to be gradually beaten into the desired shape. +A side effect of the blast furnace is that carbon from the furnace's fuel +is unavoidably incorporated into the metal. Normally iron is processed +twice through the blast furnace: once producing "pig iron", which has +very high carbon content and lots of impurities but lower melting point, +casting it into rough ingots, then remelting the pig iron and casting it +into the final moulds. The result is called "cast iron". Pig iron was +first produced in China around 1200 BCE, and cast iron later in the 5th +century BCE. Incidentally, the Chinese did not have the bloomery process, +so this was their first iron refining process, and, unlike the rest of +the world, their first wrought iron was made from pig iron rather than +directly from ore. + +Carbon steel, with intermediate carbon content, was developed much later, +in Europe in the 17th century CE. It required a more sophisticated +process, because the blast furnace made it extremely difficult to achieve +a controlled carbon content. Tweaks of the blast furnace would sometimes +produce an intermediate carbon content by luck, but the first processes to +reliably produce steel were based on removing almost all the carbon from +pig iron and then explicitly mixing a controlled amount of carbon back in. + +In the game, the bloomery process is represented by ordinary cooking +or grinding of an iron lump. The lump represents unprocessed ore, +and is identified only as "iron", not specifically as wrought iron. +This standard refining process produces dust or an ingot which is +specifically identified as wrought iron. Thus the standard refining +process produces the (nearly) pure metal. + +Cast iron is trickier. You might expect from the real-life notes above +that cooking an iron lump (representing ore) would produce pig iron that +can then be cooked again to produce cast iron. This is kind of the case, +but not exactly, because as already noted cooking an iron lump produces +wrought iron. The game doesn't distinguish between low-temperature +and high-temperature cooking processes: the same furnace is used not +just to cast all kinds of metal but also to cook food. So there is no +distinction between cooking processes to produce distinct wrought iron +and pig iron. But repeated cooking *is* available as a game mechanic, +and is indeed used to produce cast iron: re-cooking a wrought iron ingot +produces a cast iron ingot. So pig iron isn't represented in the game as +a distinct item; instead wrought iron stands in for pig iron in addition +to its realistic uses as wrought iron. + +Carbon steel is produced by a more regular in-game process: alloying +wrought iron with coal dust (which is essentially carbon). This bears +a fair resemblance to the historical development of carbon steel. +This alloying recipe is relatively time-consuming for the amount of +material processed, when compared against other alloying recipes, and +carbon steel is heavily used, so it is wise to alloy it in advance, +when you're not waiting for it. + +There are additional recipes that permit all three of these types of iron +to be converted into each other. Alloying carbon steel again with coal +dust produces cast iron, with its higher carbon content. Cooking carbon +steel or cast iron produces wrought iron, in an abbreviated form of the +bloomery process. + +There's one more iron alloy in the game: stainless steel. It is managed +in a completely regular manner, created by alloying carbon steel with +chromium. + +### uranium enrichment ### + +When uranium is to be used to fuel a nuclear reactor, it is not +sufficient to merely isolate and refine uranium metal. It is necessary +to control its isotopic composition, because the different isotopes +behave differently in nuclear processes. + +The main isotopes of interest are U-235 and U-238. U-235 is good at +sustaining a nuclear chain reaction, because when a U-235 nucleus is +bombarded with a neutron it will usually fission (split) into fragments. +It is therefore described as "fissile". U-238, on the other hand, +is not fissile: if bombarded with a neutron it will usually capture it, +becoming U-239, which is very unstable and quickly decays into semi-stable +(and fissile) plutonium-239. + +Inconveniently, the fissile U-235 makes up only about 0.7% of natural +uranium, almost all of the other 99.3% being U-238. Natural uranium +therefore doesn't make a great nuclear fuel. (In real life there are +a small number of reactor types that can use it, but technic doesn't +have such a reactor.) Better nuclear fuel needs to contain a higher +proportion of U-235. + +Achieving a higher U-235 content isn't as simple as separating the U-235 +from the U-238 and just using the required amount of U-235. Because +U-235 and U-238 are both uranium, and therefore chemically identical, +they cannot be chemically separated, in the way that different elements +are separated from each other when refining metal. They do differ +in atomic mass, so they can be separated by centrifuging, but because +their atomic masses are very close, centrifuging doesn't separate them +very well. They cannot be separated completely, but it is possible to +produce uranium that has the isotopes mixed in different proportions. +Uranium with a significantly larger fissile U-235 fraction than natural +uranium is called "enriched", and that with a significantly lower fissile +fraction is called "depleted". + +A single pass through a centrifuge produces two output streams, one with +a fractionally higher fissile proportion than the input, and one with a +fractionally lower fissile proportion. To alter the fissile proportion +by a significant amount, these output streams must be centrifuged again, +repeatedly. The usual arrangement is a "cascade", a linear arrangement +of many centrifuges. Each centrifuge takes as input uranium with some +specific fissile proportion, and passes its two output streams to the +two adjacent centrifuges. Natural uranium is input somewhere in the +middle of the cascade, and the two ends of the cascade produce properly +enriched and depleted uranium. + +Fuel for technic's nuclear reactor consists of enriched uranium of which +3.5% is fissile. (This is a typical value for a real-life light water +reactor, a common type for power generation.) To enrich uranium in the +game, it must first be in dust form: the centrifuge will not operate +on ingots. (In real life uranium enrichment is done with the uranium +in the form of a gas.) It is best to grind uranium lumps directly to +dust, rather than cook them to ingots first, because this yields twice +as much metal dust. When uranium is in refined form (dust, ingot, or +block), the name of the inventory item indicates its fissile proportion. +Uranium of any available fissile proportion can be put through all the +usual processes for metal. + +A single centrifuge operation takes two uranium dust piles, and produces +as output one dust pile with a fissile proportion 0.1% higher and one with +a fissile proportion 0.1% lower. Uranium can be enriched up to the 3.5% +required for nuclear fuel, and depleted down to 0.0%. Thus a cascade +covering the full range of fissile fractions requires 34 cascade stages. +(In real life, enriching to 3.5% uses thousands of cascade stages. +Also, centrifuging is less effective when the input isotope ratio +is more skewed, so the steps in fissile proportion are smaller for +relatively depleted uranium. Zero fissile content is only asymptotically +approachable, and natural uranium relatively cheap, so uranium is normally +only depleted to around 0.3%. On the other hand, much higher enrichment +than 3.5% isn't much more difficult than enriching that far.) + +Although centrifuges can be used manually, it is not feasible to perform +uranium enrichment by hand. It is a practical necessity to set up +an automated cascade, using pneumatic tubes to transfer uranium dust +piles between centrifuges. Because both outputs from a centrifuge are +ejected into the same tube, sorting tubes are needed to send the outputs +in different directions along the cascade. It is possible to send items +into the centrifuges through the same tubes that take the outputs, so the +simplest version of the cascade structure has a line of 34 centrifuges +linked by a line of 34 sorting tube segments. + +Assuming that the cascade depletes uranium all the way to 0.0%, +producing one unit of 3.5%-fissile uranium requires the input of five +units of 0.7%-fissile (natural) uranium, takes 490 centrifuge operations, +and produces four units of 0.0%-fissile (fully depleted) uranium as a +byproduct. It is possible to reduce the number of required centrifuge +operations by using more natural uranium input and outputting only +partially depleted uranium, but (unlike in real life) this isn't usually +an economical approach. The 490 operations are not spread equally over +the cascade stages: the busiest stage is the one taking 0.7%-fissile +uranium, which performs 28 of the 490 operations. The least busy is the +one taking 3.4%-fissile uranium, which performs 1 of the 490 operations. + +A centrifuge cascade will consume quite a lot of energy. It is +worth putting a battery upgrade in each centrifuge. (Only one can be +accommodated, because a control logic unit upgrade is also required for +tube operation.) An MV centrifuge, the only type presently available, +draws 7 kEU/s in this state, and takes 5 s for each uranium centrifuging +operation. It thus takes 35 kEU per operation, and the cascade requires +17.15 MEU to produce each unit of enriched uranium. It takes five units +of enriched uranium to make each fuel rod, and six rods to fuel a reactor, +so the enrichment cascade requires 514.5 MEU to process a full set of +reactor fuel. This is about 0.85% of the 6.048 GEU that the reactor +will generate from that fuel. + +If there is enough power available, and enough natural uranium input, +to keep the cascade running continuously, and exactly one centrifuge +at each stage, then the overall speed of the cascade is determined by +the busiest stage, the 0.7% stage. It can perform its 28 operations +towards the enrichment of a single uranium unit in 140 s, so that is +the overall cycle time of the cascade. It thus takes 70 min to enrich +a full set of reactor fuel. While the cascade is running at this full +speed, its average power consumption is 122.5 kEU/s. The instantaneous +power consumption varies from second to second over the 140 s cycle, +and the maximum possible instantaneous power consumption (with all 34 +centrifuges active simultaneously) is 238 kEU/s. It is recommended to +have some battery boxes to smooth out these variations. + +If the power supplied to the centrifuge cascade averages less than +122.5 kEU/s, then the cascade can't run continuously. (Also, if the +power supply is intermittent, such as solar, then continuous operation +requires more battery boxes to smooth out the supply variations, even if +the average power is high enough.) Because it's automated and doesn't +require continuous player attention, having the cascade run at less +than full speed shouldn't be a major problem. The enrichment work will +consume the same energy overall regardless of how quickly it's performed, +and the speed will vary in direct proportion to the average power supply +(minus any supply lost because battery boxes filled completely). + +If there is insufficient power to run both the centrifuge cascade at +full speed and whatever other machines require power, all machines on +the same power network as the centrifuge will be forced to run at the +same fractional speed. This can be inconvenient, especially if use +of the other machines is less automated than the centrifuge cascade. +It can be avoided by putting the centrifuge cascade on a separate power +network from other machines, and limiting the proportion of the generated +power that goes to it. + +If there is sufficient power and it is desired to enrich uranium faster +than a single cascade can, the process can be speeded up more economically +than by building an entire second cascade. Because the stages of the +cascade do different proportions of the work, it is possible to add a +second and subsequent centrifuges to only the busiest stages, and have +the less busy stages still keep up with only a single centrifuge each. + +Another possible approach to uranium enrichment is to have no fixed +assignment of fissile proportions to centrifuges, dynamically putting +whatever uranium is available into whichever centrifuges are available. +Theoretically all of the centrifuges can be kept almost totally busy all +the time, making more efficient use of capital resources, and the number +of centrifuges used can be as little (down to one) or as large as desired. +The difficult part is that it is not sufficient to put each uranium dust +pile individually into whatever centrifuge is available: they must be +input in matched pairs. Any odd dust pile in a centrifuge will not be +processed and will prevent that centrifuge from accepting any other input. + +### concrete ### + +Concrete is a synthetic building material. The technic modpack implements +it in the game. + +Two forms of concrete are available as building blocks: ordinary +"concrete" and more advanced "blast-resistant concrete". Despite its +name, the latter has no special resistance to explosions or to any other +means of destruction. + +Concrete can also be used to make fences. They act just like wooden +fences, but aren't flammable. Confusingly, the item that corresponds +to a wooden "fence" is called "concrete post". Posts placed adjacently +will implicitly create fence between them. Fencing also appears between +a post and adjacent concrete block. diff --git a/mods/technic_plus_beta/technic/doc/tools.md b/mods/technic_plus_beta/technic/doc/tools.md new file mode 100644 index 00000000..f7af654b --- /dev/null +++ b/mods/technic_plus_beta/technic/doc/tools.md @@ -0,0 +1,87 @@ +Tools in Technic fall into two categories: manual and electric. Both sets of tools are unstackable in the inventory. Manual tools work similarly to the manual tools in `minetest`, they have limited durability that is reduced during use (they disappear after they hit 0 durability). Manual tools can be regenerated by using the Tool Workshop, so that valuable tools, such as mese or diamond tools can be preserved. Electric tools require charging in Battery Boxes (of any voltage) and will not be destroyed when they reach 0 charge. Higher levels of electric tools are more powerful and contain more charge so they work longer. + +## Chainsaw + + + +This electric tool speeds up harvesting of wood by allowing the harvesting of an entire tree in a single click. Just click on any part of a tree, and the wood and leaves of that tree at that point and above will be cut and dropped on the ground as blocks. It has enough charge to cut down about 5 trees before running out of power. + +**Note:** If you can't find the drops from using the chainsaw, dig around as they can be buried under neighbouring terrain blocks. + +## Flashlight + + + +This electric tool illumates the area in front of the player. While it is electric, and so requires charging, to use it one only needs to equip it. Punching with this tool does nothing. + +## Lava can + + + +The lava can works similarly to the bucket tool and the water can, but instead of carrying water, it can carry lava source blocks (the ones that aren't animated), up to 8 at a time. To use, simply equip and click on lava source blocks (they will highlight in black). Then clicking anywhere where there isn't a lava source block will place them again. + +**Warning:** Be careful where you place these source blocks! Since you're placing lava source blocks, lava will flow out of them and may trap or burn you depending on where you are. + +## Mining drill + + + + + +This electric tool operates similarly to a pickaxe, though every block takes exactly one click to drill out. While the Mining Laser allows for faster collection of bulk minerals, it's cutting path can sometimes be undesirable, and the mining drill is useful in these instances. + +The higher levels of the mining drill allow for drilling more blocks at once, substantially reducing mining time. At mark-2, the mining drill can drill 3 blocks at once, either 3-deep, 3-wide, or 3-tall. At mark-3, the mining drill can drill 9-blocks at once in a 3x3 layout around the block selected. Switching between these modes can be done by shift-clicking. + +**Advice:** Since these tools require substantially more diamonds than the mining laser, and yet drills slower, it is suggested that a mining laser be built first. + +## Mining laser + + + + + +This electric tool is a substantial upgrade above the pickaxe that you start mining with. The laser works by drilling directly forward 7 blocks making a path that's roughly 1-block in diameter. The laser is electric, requiring charging in a battery box (any voltage). As soon as an LV electrical system is set up, this is a great next step. + +## Multimeter + + + +This electric tool is used for quick lookup at an electric network. It works by clicking on an electric node (cable, machine, generator, switchting station), and gives values about : the position of the attached switching station, its current status, the lag, the batteries, the supply and the demand, and the total of each type of node. + +| Property | Example Value | Unit | Meaning | +|------------------|---------------|------------|---------------------------------------------------------------| +| Ref. point | 61, 19, 62 | Coordinate | The location of the cable below the switching station that initially triggered initialization of this network | +| Activated | yes | active | The current state of the network | +| Timeout | 1800.0 | s | Time remaining, in seconds, before the network will shut down | +| Lag | 0.60 | ms | The lag generated by the network | +| Skip | 0 | cycles | How many cycles are skipped when network lag value is high | +| Supply | 6000 | EU | How much power is supplied by generators | +| Demand | 4000 | EU | How much power is required by consumers | +| Battery charge | 2911956 | EU | The total of energy stored in batteries | +| Battery charge | 97.07 | % | The energy stored per the maximum that can be stored | +| Battery capacity | 3000000 | EU | The maximum amount of energy that can be stored in batteries | +| Nodes | 47 | count | The number of nodes of the network, excluding switch stations | +| Cables | 32 | count | The number of cables | +| Generators | 8 | count | The number of generators (supplying the network) | +| Consumers | 4 | count | The number of consumers (demanding power) | +| Batteries | 3 | count | The number of batteries (storing energy) | + +## Sonic screwdriver + + + +This electric tool is used for rotating nodes, much like the default Screwdriver tool, but loses charge instead of durability. This is useful for any nodes which have a "front" direction, like stairs, machines, furniture, etc. Nodes are rotated around the Y-axes (vertical). + +## Tree tap + + + +This manual tool allows for harvesting latex from rubber trees. Extracting latex can be done by hitting rubber trees with it yields for 1 latex. The rubber tree will regenerate its latex supply over the course of a day. + +## Water can + + + +The water can works similarly to the bucket tool from minetest_game, but it can hold 16 `water_source` (the water blocks that don't look like they're flowing) blocks instead of 1. To use, simply equip the water can and click on water source blocks (they will highlight in black). Then clicking anywhere where there isn't a `water_source` block with the water can equipped will place them. + +**Warning:** Be careful where you place these source blocks! Since you're placing water source blocks, water will flow out of them and may trap or drown you depending on where you are. diff --git a/mods/technic_plus_beta/technic/effects.lua b/mods/technic_plus_beta/technic/effects.lua new file mode 100644 index 00000000..2d6fc93d --- /dev/null +++ b/mods/technic_plus_beta/technic/effects.lua @@ -0,0 +1,25 @@ + + +minetest.register_abm({ + nodenames = {"technic:hv_nuclear_reactor_core_active"}, + interval = 10, + chance = 1, + action = function(pos, node) + minetest.add_particlespawner({ + amount = 50, + time = 10, + minpos = {x=pos.x-0.5, y=pos.y-0.5, z=pos.z-0.5}, + maxpos = {x=pos.x+0.5, y=pos.y+0.5, z=pos.z+0.5}, + minvel = {x=-0.8, y=-0.8, z=-0.8}, + maxvel = {x=0.8, y=0.8, z=0.8}, + minacc = {x=0,y=0,z=0}, + maxacc = {x=0,y=0,z=0}, + minexptime = 0.5, + maxexptime = 2, + minsize = 1, + maxsize = 2, + texture = "technic_blueparticle.png", + glow = 5 + }) + end +}) diff --git a/mods/technic_plus_beta/technic/helpers.lua b/mods/technic_plus_beta/technic/helpers.lua new file mode 100644 index 00000000..c1815424 --- /dev/null +++ b/mods/technic_plus_beta/technic/helpers.lua @@ -0,0 +1,287 @@ +local constant_digit_count = technic.config:get("constant_digit_count") + +-- converts a number to a readable string with SI prefix, e.g. 10000 → "10 k", +-- 15 → "15 ", 0.1501 → "150.1 m" +-- a non-breaking space (U+a0) instead of a usual one is put after number +-- The precision is 4 digits +local prefixes = {[-8] = "y", [-7] = "z", [-6] = "a", [-5] = "f", [-4] = "p", + [-3] = "n", [-2] = "µ", [-1] = "m", [0] = "", [1] = "k", [2] = "M", + [3] = "G", [4] = "T", [5] = "P", [6] = "E", [7] = "Z", [8] = "Y"} +function technic.pretty_num(num) + -- the small number added is due to floating point inaccuracy + local b = math.floor(math.log10(math.abs(num)) +0.000001) + local pref_i + if b ~= 0 then + -- b is decremented by 1 to avoid a single digit with many decimals, + -- e.g. instead of 1.021 MEU, 1021 kEU is shown + pref_i = math.floor((b - 1) / 3) + else + -- as special case, avoid showing e.g. 1100 mEU instead of 1.1 EU + pref_i = 0 + end + if not prefixes[pref_i] then + -- This happens for 0, nan, inf, very big values, etc. + if num == 0 then + -- handle 0 explicilty to avoid showing "-0" + if not constant_digit_count then + return "0 " + end + -- gives 0.000 + return string.format("%.3f ", 0) + end + return string.format("%.4g ", num) + end + + num = num * 10 ^ (-3 * pref_i) + if constant_digit_count then + local comma_digits_cnt = 3 - (b - 3 * pref_i) + return string.format("%." .. comma_digits_cnt .. "f %s", + num, prefixes[pref_i]) + end + return string.format("%.4g %s", num, prefixes[pref_i]) +end + +-- some unittests +assert(technic.pretty_num(-0) == "0 ") +assert(technic.pretty_num(0) == "0 ") +assert(technic.pretty_num(1234) == "1234 ") +assert(technic.pretty_num(123456789) == "123.5 M") + +-- used to display power values +function technic.EU_string(num) + return technic.pretty_num(num) .. "EU" +end + +--- Same as minetest.swap_node, but only changes name +-- and doesn't re-set if already set. +function technic.swap_node(pos, name) + local node = minetest.get_node(pos) + if node.name ~= name then + node.name = name + minetest.swap_node(pos, node) + end +end + +function technic.set_charge(stack, charge) + local wear_factor = stack:get_definition().technic_wear_factor + if wear_factor then + local wear = math.floor(charge * wear_factor + 0.5) + stack:set_wear(wear > 0 and 65536 - wear or 0) + end +end + +function technic.get_charge(stack) + local def = stack:get_definition() + if def.technic_wear_factor then + local wear = stack:get_wear() + return (wear > 0 and math.floor((65536 - wear) / def.technic_wear_factor + 0.5) or 0), def.technic_max_charge + end + return 0, 0 +end + +function technic.use_charge(stack, amount) + if technic.creative_mode or amount <= 0 then + -- Do not check charge in creative mode or when trying to use zero amount + return true + end + local charge = technic.get_charge(stack) + if charge < amount then + -- Not enough energy available + return false + end + -- Ensure that at least single point is always added to wear when using tool + local wear_factor = stack:get_definition().technic_wear_factor + local wear = stack:get_wear() + wear = math.max(math.floor(wear + 1.5), math.floor(amount * wear_factor + wear + 0.5)) + stack:set_wear(wear > 65535 and 0 or wear) + -- Charge used successfully + return true +end + +-- If the node is loaded, returns it. If it isn't loaded, load it. +function technic.get_or_load_node(pos) + local node = minetest.get_node_or_nil(pos) + if node then return node end + minetest.load_area(pos) + return minetest.get_node(pos) +end + +technic.tube_inject_item = pipeworks.tube_inject_item or function(pos, start_pos, velocity, item) + local tubed = pipeworks.tube_item(vector.new(pos), item) + tubed:get_luaentity().start_pos = vector.new(start_pos) + tubed:set_velocity(velocity) + tubed:set_acceleration(vector.new(0, 0, 0)) +end + +--- Iterates over the node positions along the specified ray. +-- The returned positions will not include the starting position. +function technic.trace_node_ray(pos, dir, range) + local x_step = dir.x > 0 and 1 or -1 + local y_step = dir.y > 0 and 1 or -1 + local z_step = dir.z > 0 and 1 or -1 + + local i = 1 + return function(p) + -- Approximation of where we should be if we weren't rounding + -- to nodes. This moves forward a bit faster then we do. + -- A correction is done below. + local real_x = pos.x + (dir.x * i) + local real_y = pos.y + (dir.y * i) + local real_z = pos.z + (dir.z * i) + + -- How far off we've gotten from where we should be. + local dx = math.abs(real_x - p.x) + local dy = math.abs(real_y - p.y) + local dz = math.abs(real_z - p.z) + + -- If the real position moves ahead too fast, stop it so we + -- can catch up. If it gets too far ahead it will smooth + -- out our movement too much and we won't turn fast enough. + if dx + dy + dz < 2 then + i = i + 1 + end + + -- Step in whichever direction we're most off course in. + if dx > dy then + if dx > dz then + p.x = p.x + x_step + else + p.z = p.z + z_step + end + elseif dy > dz then + p.y = p.y + y_step + else + p.z = p.z + z_step + end + if vector.distance(pos, p) > range then + return nil + end + return p + end, vector.round(pos) +end + +--- Like trace_node_ray, but includes extra positions close to the ray. +function technic.trace_node_ray_fat(pos, dir, range) + local x_step = dir.x > 0 and 1 or -1 + local y_step = dir.y > 0 and 1 or -1 + local z_step = dir.z > 0 and 1 or -1 + + local next_poses = {} + + local i = 1 + return function(p) + local ni, np = next(next_poses) + if np then + next_poses[ni] = nil + return np + end + + -- Approximation of where we should be if we weren't rounding + -- to nodes. This moves forward a bit faster then we do. + -- A correction is done below. + local real_x = pos.x + (dir.x * i) + local real_y = pos.y + (dir.y * i) + local real_z = pos.z + (dir.z * i) + + -- How far off we've gotten from where we should be. + local dx = math.abs(real_x - p.x) + local dy = math.abs(real_y - p.y) + local dz = math.abs(real_z - p.z) + + -- If the real position moves ahead too fast, stop it so we + -- can catch up. If it gets too far ahead it will smooth + -- out our movement too much and we won't turn fast enough. + if dx + dy + dz < 2 then + i = i + 1 + end + + -- Step in whichever direction we're most off course in. + local sx, sy, sz -- Whether we've already stepped along each axis + if dx > dy then + if dx > dz then + sx = true + p.x = p.x + x_step + else + sz = true + p.z = p.z + z_step + end + elseif dy > dz then + sy = true + p.y = p.y + y_step + else + sz = true + p.z = p.z + z_step + end + + if vector.distance(pos, p) > range then + return nil + end + + -- Add other positions that we're significantly off on. + -- We can just use fixed integer keys here because the + -- table will be completely cleared before we reach this + -- code block again. + local dlen = math.sqrt(dx*dx + dy*dy + dz*dz) + -- Normalized axis deltas + local dxn, dyn, dzn = dx / dlen, dy / dlen, dz / dlen + if not sx and dxn > 0.5 then + next_poses[1] = vector.new(p.x + x_step, p.y, p.z) + end + if not sy and dyn > 0.5 then + next_poses[2] = vector.new(p.x, p.y + y_step, p.z) + end + if not sz and dzn > 0.5 then + next_poses[3] = vector.new(p.x, p.y, p.z + z_step) + end + + return p + end, vector.round(pos) +end + +function technic.insert_object_unique_stack(pos, node, incoming_stack, direction) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + local incoming_name = incoming_stack:get_name() + local stack_index = nil + for inv_index, inv_stack in pairs(inv:get_list("src")) do + if inv_stack:get_name() == incoming_name then + stack_index = inv_index + break + end + end + if stack_index == nil then + return inv:add_item("src", incoming_stack) + end + local present_stack = inv:get_stack("src", stack_index) + local leftover = present_stack:add_item(incoming_stack) + inv:set_stack("src", stack_index, present_stack) + return leftover +end + +function technic.can_insert_unique_stack(pos, node, incoming_stack, direction) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + local incoming_name = incoming_stack:get_name() + if meta:get_int("splitstacks") == 0 then + -- avoid looping second time with inv:contains_item("src", incoming_stack) + for _, inv_stack in pairs(inv:get_list("src")) do + if inv_stack:get_name() == incoming_name then + return inv_stack:item_fits(incoming_stack) + end + end + end + return technic.default_can_insert(pos, node, incoming_stack, direction) +end + +function technic.process_recipe(recipe, inv) + local dst_copy = inv:get_list("dst") + for _,item in ipairs(recipe.output) do + if not inv:room_for_item("dst", ItemStack(item)) then + inv:set_list("dst", dst_copy) + return false + end + inv:add_item("dst", item) + end + inv:set_list("src", recipe.new_input) + return true +end diff --git a/mods/technic_plus_beta/technic/init.lua b/mods/technic_plus_beta/technic/init.lua new file mode 100644 index 00000000..b054d36c --- /dev/null +++ b/mods/technic_plus_beta/technic/init.lua @@ -0,0 +1,62 @@ + +technic = rawget(_G, "technic") or {} + +technic.plus = true +technic.version = 1.2 + +if minetest.get_modpath("mcl_sounds") then + technic.sounds = mcl_sounds +else + technic.sounds = assert(default, "No suitable mod found for sounds") +end + +technic.creative_mode = minetest.settings:get_bool("creative_mode") + +local modpath = minetest.get_modpath("technic") +technic.modpath = modpath + +local S = minetest.get_translator("technic") +technic.getter = S + +-- Read materials file +dofile(modpath.."/materials.lua") + +-- Read configuration file +dofile(modpath.."/config.lua") + +-- Lag monitoring +dofile(modpath.."/max_lag.lua") + +-- Helper functions +dofile(modpath.."/helpers.lua") + +-- Register functions +dofile(modpath.."/register.lua") + +-- Compatibility shims for tools +dofile(modpath.."/machines/compat/tools.lua") + +-- Items +dofile(modpath.."/items.lua") + +-- Craft recipes for items +dofile(modpath.."/crafts.lua") + +-- Radiation +dofile(modpath.."/radiation.lua") + +-- Machines +dofile(modpath.."/machines/init.lua") + +-- Tools +dofile(modpath.."/tools/init.lua") + +-- Visual effects +dofile(modpath.."/effects.lua") + +-- Chat commands +dofile(modpath.."/chatcommands.lua") + +if minetest.get_modpath("mtt") and mtt.enabled then + dofile(modpath.."/mtt.lua") +end diff --git a/mods/technic_plus_beta/technic/items.lua b/mods/technic_plus_beta/technic/items.lua new file mode 100644 index 00000000..0221b13c --- /dev/null +++ b/mods/technic_plus_beta/technic/items.lua @@ -0,0 +1,192 @@ + +local S = technic.getter + +local has_mcl = minetest.get_modpath("mcl_core") + +minetest.register_craftitem("technic:silicon_wafer", { + description = S("Silicon Wafer"), + inventory_image = "technic_silicon_wafer.png", +}) + +minetest.register_craftitem( "technic:doped_silicon_wafer", { + description = S("Doped Silicon Wafer"), + inventory_image = "technic_doped_silicon_wafer.png", +}) + +minetest.register_craftitem("technic:uranium_fuel", { + description = S("Uranium Fuel"), + inventory_image = "technic_uranium_fuel.png", +}) + +minetest.register_craftitem( "technic:diamond_drill_head", { + description = S("Diamond Drill Head"), + inventory_image = "technic_diamond_drill_head.png", +}) + +technic.register_power_tool("technic:blue_energy_crystal", { + description = S("Blue Energy Crystal"), + inventory_image = minetest.inventorycube( + "technic_diamond_block_blue.png", + "technic_diamond_block_blue.png", + "technic_diamond_block_blue.png"), + groups = { disable_repair = 1 }, + max_charge = 450000, +}) + +technic.register_power_tool("technic:green_energy_crystal", { + description = S("Green Energy Crystal"), + inventory_image = minetest.inventorycube( + "technic_diamond_block_green.png", + "technic_diamond_block_green.png", + "technic_diamond_block_green.png"), + groups = { disable_repair = 1 }, + max_charge = 150000, +}) + +technic.register_power_tool("technic:red_energy_crystal", { + description = S("Red Energy Crystal"), + inventory_image = minetest.inventorycube( + "technic_diamond_block_red.png", + "technic_diamond_block_red.png", + "technic_diamond_block_red.png"), + groups = { disable_repair = 1 }, + max_charge = 50000, +}) + +minetest.register_craftitem("technic:copper_coil", { + description = S("Copper Coil"), + inventory_image = "technic_copper_coil.png", +}) + +minetest.register_craftitem("technic:lv_transformer", { + description = S("Low Voltage Transformer"), + inventory_image = "technic_lv_transformer.png", +}) + +minetest.register_craftitem("technic:mv_transformer", { + description = S("Medium Voltage Transformer"), + inventory_image = "technic_mv_transformer.png", +}) + +minetest.register_craftitem( "technic:hv_transformer", { + description = S("High Voltage Transformer"), + inventory_image = "technic_hv_transformer.png", +}) + +minetest.register_craftitem( "technic:control_logic_unit", { + description = S("Control Logic Unit"), + inventory_image = "technic_control_logic_unit.png", +}) + +minetest.register_craftitem("technic:mixed_metal_ingot", { + description = S("Mixed Metal Ingot"), + inventory_image = "technic_mixed_metal_ingot.png", +}) + +minetest.register_craftitem("technic:composite_plate", { + description = S("Composite Plate"), + inventory_image = "technic_composite_plate.png", +}) + +minetest.register_craftitem("technic:copper_plate", { + description = S("Copper Plate"), + inventory_image = "technic_copper_plate.png", +}) + +minetest.register_craftitem("technic:carbon_plate", { + description = S("Carbon Plate"), + inventory_image = "technic_carbon_plate.png", +}) + +minetest.register_craftitem("technic:graphite", { + description = S("Graphite"), + inventory_image = "technic_graphite.png", +}) + +minetest.register_craftitem("technic:carbon_cloth", { + description = S("Carbon Cloth"), + inventory_image = "technic_carbon_cloth.png", +}) + +minetest.register_node("technic:machine_casing", { + description = S("Machine Casing"), + groups = {cracky=2, pickaxey=2}, + is_ground_content = false, + _mcl_blast_resistance = 1, + _mcl_hardness = 0.8, + sunlight_propagates = true, + paramtype = "light", + drawtype = "allfaces", + tiles = {"technic_machine_casing.png"}, + sounds = technic.sounds.node_sound_stone_defaults(), +}) + +for p = 0, 35 do + local nici = (p ~= 0 and p ~= 7 and p ~= 35) and 1 or nil + local psuffix = p == 7 and "" or p + local ingot = "technic:uranium"..psuffix.."_ingot" + local block = "technic:uranium"..psuffix.."_block" + local ov = p == 7 and minetest.override_item or nil; + (ov or minetest.register_craftitem)(ingot, { + description = S("@1%-Fissile Uranium Ingot", string.format("%.1f", p/10)), + inventory_image = "technic_uranium_ingot.png", + groups = {uranium_ingot=1, not_in_creative_inventory=nici}, + }); + -- Note on radioactivity of blocks: + -- Source: + -- The baseline radioactivity of an isotope is not especially + -- correlated with whether it's fissile (i.e., suitable as + -- reactor fuel). Natural uranium consists mainly of fissile + -- U-235 and non-fissile U-238, and both U-235 and U-238 are + -- significantly radioactive. U-235's massic activity is + -- about 80.0 MBq/kg, and U-238's is about 12.4 MBq/kg, which + -- superficially suggests that 3.5%-fissile uranium should have + -- only 1.19 times the activity of fully-depleted uranium. + -- But a third isotope affects the result hugely: U-234 has + -- massic activity of 231 GBq/kg. Natural uranium has massic + -- composition of 99.2837% U-238, 0.711% U-235, and 0.0053% U-234, + -- so its activity comes roughly 49% each from U-234 and U-238 + -- and only 2% from U-235. During enrichment via centrifuge, + -- the U-234 fraction is concentrated along with the U-235, with + -- the U-234:U-235 ratio remaining close to its original value. + -- (Actually the U-234 gets separated from U-238 slightly more + -- than the U-235 is, so the U-234:U-235 ratio is slightly + -- higher in enriched uranium.) A typical massic composition + -- for 3.5%-fissile uranium is 96.47116% U-238, 3.5% U-235, and + -- 0.02884% U-234. This gives 3.5%-fissile uranium about 6.55 + -- times the activity of fully-depleted uranium. The values we + -- compute here for the "radioactive" group value are based on + -- linear interpolation of activity along that scale, rooted at + -- a natural (0.7%-fissile) uranium block having the activity of + -- 9 uranium ore blocks (due to 9 ingots per block). The group + -- value is proportional to the square root of the activity, and + -- uranium ore has radioactive=1. This yields radioactive=1.0 + -- for a fully-depleted uranium block and radioactive=2.6 for + -- a 3.5%-fissile uranium block. + local radioactivity = math.floor(math.sqrt((1+5.55*p/35) * 18 / (1+5.55*7/35)) + 0.5); + (ov or minetest.register_node)(block, { + description = S("@1%-Fissile Uranium Block", string.format("%.1f", p/10)), + tiles = {"technic_uranium_block.png"}, + is_ground_content = false, + groups = {uranium_block=1, not_in_creative_inventory=nici, + cracky=1, level=has_mcl and 0 or 2, radioactive=radioactivity, pickaxey=4}, + _mcl_blast_resistance = 1, + _mcl_hardness = 1, + sounds = technic.sounds.node_sound_stone_defaults(), + }); + if not ov then + minetest.register_craft({ + output = block, + recipe = { + {ingot, ingot, ingot}, + {ingot, ingot, ingot}, + {ingot, ingot, ingot}, + }, + }) + minetest.register_craft({ + output = ingot.." 9", + recipe = {{block}}, + }) + end +end + diff --git a/mods/technic_plus_beta/technic/locale/technic.de.tr b/mods/technic_plus_beta/technic/locale/technic.de.tr new file mode 100644 index 00000000..71894263 --- /dev/null +++ b/mods/technic_plus_beta/technic/locale/technic.de.tr @@ -0,0 +1,211 @@ +# textdomain: technic + +# German Translation for Technic Mod +# Deutsche Uebersetzung des Technic Mods +# by Xanthin + +3 nodes deep.=3 Bloecke tief. +3 nodes tall.=3 Bloecke hoch. +3 nodes wide.=3 Bloecke breit. +3x3 nodes.=3x3 Bloecke. +@1 (@2 @3 -> @4 @5)=@1 (@2 @3 -> @4 @5) +@1 (@2% Efficiency)=@1 (@2% Wirkungsgrad) +@1 (@2% Fuel Used)=@1 (@2% Brennstoffverbrauch) +@1 (@2)=@1 (@2) +@1 Active (@2)=@1 Aktiv (@2) +@1 Active=@1 ist eingeschaltet +@1 Alloy Furnace=@1 Legierungsofen +@1 Battery Box: @2 / @3=@1 Batteriekasten: @2 / @3 +@1 Battery Box=@1 Batteriebox +@1 Cable Plate=@1 Kabelplatte +@1 Cable=@1 Kabel +@1 Centrifuge=@1 Zentrifuge +@1 Compressor=@1 Kompressor +@1 Digiline Cable Plate=@1 Digiline Kabelplatte +@1 Digiline Cable=@1 Digiline Kabel +@1 Disabled=@1 ist ausgeschaltet +@1 Dust=@1staub +@1 Enabled=@1 ist eingechaltet +@1 Extractor=@1 Extraktor +@1 Finished=@1 ist fertig +@1 Forcefield Emitter=@1 Kraftfeld-Emitter +@1 Forcefield=@1 Kraftfeld +@1 Freezer=@1 Gefrierschrank +@1 Furnace=@1 Ofen +@1 Grinder=@1 Schleifmaschine +@1 Grinding=@1 Schleifen +@1 Has Bad Cabling=@1 ist falsch verkabelt +@1 Has No Network=@1 hat kein Netzwerk +@1 Idle=@1 ist bereit +@1 Improperly Placed=@1 ist falsch plaziert +@1 LED=@1 LED +@1 Lamp=@1 Lampe +@1 Music Player=@1 Musikspieler +@1 Network Overloaded, Restart in @2ms=@1 Netzwerk überlastet, Neustart in @2ms +@1 Nuclear Reactor Core=@1 Nuklearer Reaktorkern +@1 Off=@1 Aus +@1 Out Of Fuel=@1 hat keinen Brennstoff +@1 Purging Cache=@1 Cache leeren +@1 Quarry=@1 Steinbruch +@1 Restarting Network=@1 Neustart des Netzwerks +@1 Tool Workshop=@1 Werkzeugwerkstatt +@1 Unpowered=@1 hat keine Stromversorgung +@1 is absent in @2 region=@1 ist in der Region @2 abwesend +@1 is empty=@1 ist leer +@1 is present in @2 region=@1 ist in der Region @2 vorhanden +@1%-Fissile Uranium Block=@1%-Spaltbarer Uranblock +@1%-Fissile Uranium Dust=@1%-Spaltbarer Uranstaub +@1%-Fissile Uranium Ingot=@1%-Spaltbarer Uranbarren +@1. Supply: @2 Demand: @3=@1. Versorgung: @2 Bedarf: @3 +Acacia=Akazie +Accuracy:=Akkuratesse: +Administrative World Anchor=Administrativer Welt-Anker +Akalin=Akalin +Alatro=Alatro +Alloying=Legieren +Arol=Arol +Arrayed Solar @1 Generator=@1 Solaranlage +Automatic Start=Automatischer Start +Blue Energy Crystal=Blauer Energiekristall +Brass=Messing +Bronze=Bronze +Building Network: @1 Nodes=Gebäude-Netzwerk: @1 Knoten +Carbon Cloth=Kohlefasergewebe +Carbon Plate=Kohlefaserplatte +Carbon Steel=Kohlenstoffstahl +Cast Iron=Gusseisen +Chainsaw=Kettensaege +Charge=Aufladen +Chernobylite Block=Tschernobylit-Block +Chernobylite=Tschernobylit +Chromium=Chrom +Coal=Kohle +Common Tree=Gewöhnlicher Baum +Composite Plate=Verbundplatte +Compressing=Komprimieren +Constructor Mk@1=Konstruktor Modell @1 +Control Logic Unit=Steuer- und Regelungseinheit +Controlled by Mesecon Signal=Gesteuert durch Mesecon-Signal +Copper Coil=Kupferspule +Copper Plate=Kupferplatte +Copper=Kupfer +Corium Bucket=Corium-Eimer +Corium Source=Corium-Quelle +Cube=Würfel +Current target:=Aktuelles Ziel: +Current track: @1=Aktueller Kurs: @1 +Demand: @1=Bedarf: @1 +Diamond Drill Head=Diamantbohrkopf +Digging @1 m below machine=Graben @1 m unterhalb der Maschine +Digging finished=Graben beendet +Digging not started=Graben nicht begonnen +Digiline Channel=Digiline-Kanal +Disabled=Deaktiviert +Discharge=Entladen +Doped Silicon Wafer=Dotierte Siliziumscheibe +Dummy light source node=Dummy-Lichtquellenknoten +Enable Mesecons Control=Mesecons-Steuerung einschalten +Enabled=Aktiviert +Error=Fehler +Extracting=Extrahieren +Flashlight=Taschenlampe +Flowing Corium=Fließendes Corium +Freezing=Einfrieren +Fuel-Fired @1 Generator=Brennstoffbefeuerter @1-Generator +Fuel-Fired Alloy Furnace=Brennstoffbefeuerter Legierungsofen +Fuel-Fired Furnace=Brennstoffbefeuerter Ofen +Geothermal @1 Generator=@1 Geothermie-Generator +Gold=Gold +Graphite=Graphit +Green Energy Crystal=Gruener Energiekristall +Grinding=Schleifen +HV=HV +High Voltage Transformer=Hochspannungstransformator +Hydro @1 Generator=@1 Wassermuehle +Ignoring Mesecon Signal=Ignorieren des Mesecon-Signals +Input Power=Eingangsleistung +Inventory move disallowed due to protection=Das Inventar ist geschuetzt, Zugriff verweigert. +Itemwise=Einzelstuecke +Kalite=Kalit +Keeping @1/@2 map blocks loaded=Beibehaltung der @1/@2 Kartenblöcke geladen +LV=LV +Lava Can=Lavakanister +Lead=Blei +Locked=Gesperrt +Low Voltage Transformer=Niederspannungstransformator +MV=MV +Machine Casing=Gehäuse der Maschine +Machine cannot be removed because it is not empty=Die Maschine kann nicht entfernt werden, weil sie noch nicht leer ist. +Max Depth=Maximale Tiefe +May set new target:=Kann neues Ziel setzen: +Medium Voltage Transformer=Mittelspannungstransformator +Mining Drill Mk@1 Mode @2=Bergbaubohrer Modell @1 Funktion @2 +Mining Drill Mk@1=Bergbaubohrer Modell @1 +Mining Laser Mk@1=Bergbaulaser Modell @1 +Mithril=Mithril +Mixed Metal Ingot=Mischmetallbarren +Multimeter=Multimeter +Network Overloaded=Netzwerk überlastet +No new target available=Kein neues Ziel verfügbar +No target set=Kein Ziel gesetzt +Nuclear Reactor Rod Compartment=Brennstabfaecher +Offset X=Versatz X +Offset Z=Versatz Z +Owner: @1=Besitzer: @1 +Polyfuse triggered, current efficiency: @1%, generated lag: @2 ms=Polyfuse ausgelöst, aktueller Wirkungsgrad: @1%, erzeugte Verzögerung: @2 ms +Power Monitor Has No Network=Leistungsmonitor hat kein Netzwerk +Power Monitor. Supply: @1 Demand: @2=Leistungsmonitor. Versorgung: @1 Bedarf: @2 +Power Monitor=Leistungsmonitor +Power level=Energiestufe +Prospector=Prospektor +Purging cache=Cache leeren +RE Battery=Akkubatterie +Radius=Radius +Range=Reichweite +Raw Latex=Rohlatex +Red Energy Crystal=Roter Energiekristall +Region cross section:=Region Querschnitt: +Region depth:=Tiefe der Region: +Restart=Neustart +Right-click to set target block type=Rechtsklick zum Einstellen des Zielblocktyps +River Water Can=Fluss Wasser Dose +Rubber Fiber=Gummifaser +Rubber Tree=Gummibaum +Save=Speichern +Sawdust=Sägespäne +Self-Contained Injector=Selbständiger Injektor +Separating=Trennen +Set region cross section:=Querschnitt der Region einstellen: +Set region depth:=Tiefe des Bereichs festlegen: +Set target=Ziel einstellen +Silicon Wafer=Siliziumscheibe +Silver=Silber +Single node.=Einzelblock +Slot @1=Fach @1 +Small Solar @1 Generator=@1 Solarmodul +Sonic Screwdriver (left-click rotates face, right-click rotates axis)=Schallschraubendreher (Linksklick dreht die Fläche, Rechtsklick dreht die Achse) +Sphere=Kugel +Stackwise=Ganzer Stapel +Stainless Steel=Edelstahl +Start successful=Start erfolgreich +Start=Start +Stone=Stein +Stop=Stopp +Stopped=Gestoppt +Sulfur=Schwefel +Supply Converter=Stromumwandler +Switching Station=Schaltanlage +Talinite=Talinite +Tin=Zinn +Tree Tap=Baumzapfhahn +Unlocked=Freigegeben +Upgrade Slots=Verbesserungsfaecher +Uranium Fuel=Uranbrennstoff +Use while sneaking to change Mining Drill Mk@1 modes.=Halte die Shift-Taste beim Benutzen gedrueckt, um die Funktion des Bergbaubohrers Modell @1 zu aendern. +Vacuum Cleaner=Staubsauger +Water Can=Wasserkanister +Wind @1 Generator=@1 Windmuehle +Wind Mill Frame=Windmuehlengeruest +Wrought Iron=Schmiedeeisen +You are not allowed to edit this!=Es ist nicht erlaubt, dies zu bearbeiten! +Zinc=Zink diff --git a/mods/technic_plus_beta/technic/locale/technic.es.tr b/mods/technic_plus_beta/technic/locale/technic.es.tr new file mode 100644 index 00000000..8d4566c7 --- /dev/null +++ b/mods/technic_plus_beta/technic/locale/technic.es.tr @@ -0,0 +1,211 @@ +# textdomain: technic + +# Spanish Translation for Technic Mod +# Traduccion al Español del Mod Technic +# by Diego Martínez + +3 nodes deep.=3 nodos de profundo. +3 nodes tall.=3 nodos de alto. +3 nodes wide.=3 nodos de ancho. +3x3 nodes.=3x3 nodos. +@1 (@2 @3 -> @4 @5)=@1 (@2 @3 -> @4 @5) +@1 (@2% Efficiency)=@1 (@2% Eficiencia) +@1 (@2% Fuel Used)=@1 (@2% Combustible utilizado) +@1 (@2)=@1 (@2) +@1 Active (@2)=@1 Activo (@2) +@1 Active=@1 Activo +@1 Alloy Furnace=Horno de Aleacion @1 +@1 Battery Box: @2 / @3=@1 Caja de baterías: @2 / @3 +@1 Battery Box=Caja de Bateria @1 +@1 Cable Plate=@1 Placa de cable +@1 Cable=Cable @1 +@1 Centrifuge=@1 Centrífuga +@1 Compressor=Compresor @1 +@1 Digiline Cable Plate=@1 Placa de cable Digiline +@1 Digiline Cable=@1 Cable Digiline +@1 Disabled=@1 Deshabilitado +@1 Dust=Polvo de @1 +@1 Enabled=@1 Habilitado +@1 Extractor=Extractor @1 +@1 Finished=@1 Terminado +@1 Forcefield Emitter=Emisor de Campo de Fuerza @1 +@1 Forcefield=@1 Campo de fuerza +@1 Freezer=@1 Congelador +@1 Furnace=Horno @1 +@1 Grinder=Amoladora @1 +@1 Grinding=@1 Amoladora +@1 Has Bad Cabling=@1 Tiene Mal Cableado +@1 Has No Network=@1 No Tiene Una Red +@1 Idle=@1 Quieto +@1 Improperly Placed=@1 No Colocado Apropiadamente +@1 LED=@1 LED +@1 Lamp=@1 Lámpara +@1 Music Player=Reproductor de Musica @1 +@1 Network Overloaded, Restart in @2ms=@1 Red sobrecargada, reinicio en @2ms +@1 Nuclear Reactor Core=@1 Núcleo del reactor nuclear +@1 Off=@1 Apagado +@1 Out Of Fuel=@1 Sin Combustible +@1 Purging Cache=@1 Purga de caché +@1 Quarry=Cantera @1 +@1 Restarting Network=@1 Reinicio de la red +@1 Tool Workshop=Taller de Herramientas @1 +@1 Unpowered=@1 Sin Energia +@1 is absent in @2 region=@1 está ausente en la región @2 +@1 is empty=@1 está vacío +@1 is present in @2 region=@1 está presente en la región @2 +@1%-Fissile Uranium Block=@1%-Bloque de Uranio Fisible +@1%-Fissile Uranium Dust=@1%-Polvo de uranio fisible +@1%-Fissile Uranium Ingot=@1%-Lingote de uranio fisible +@1. Supply: @2 Demand: @3=@1. Suministro: @2 Demanda: @3 +Acacia=Acacia +Accuracy:=Precisión: +Administrative World Anchor=Ancla Administrativa Mundial +Akalin=Akalina +Alatro=Alatro +Alloying=Aleación +Arol=Arol +Arrayed Solar @1 Generator=Panel Solar @1 +Automatic Start=Arranque automático +Blue Energy Crystal=Cristal de Energia Azul +Brass=Laton +Bronze=Bronce +Building Network: @1 Nodes=Red de edificios: @1 Nodos +Carbon Cloth=Tela de Carbon +Carbon Plate=Placa de Carbon +Carbon Steel=Acero al Carbono +Cast Iron=Hierro Fundido +Chainsaw=Motosierra +Charge=Cargar +Chernobylite Block=Bloque de Chernóbilita +Chernobylite=Chernobylita +Chromium=Cromo +Coal=Carbon +Common Tree=Árbol común +Composite Plate=Placa de Compuestos +Compressing=Compresor +Constructor Mk@1=Constructor Mk@1 +Control Logic Unit=Unidad Logica de Control +Controlled by Mesecon Signal=Controlado por la señal de Mesecon +Copper Coil=Resorte de Cobre +Copper Plate=Placa de Cobre +Copper=Cobre +Corium Bucket=Cubo de corio +Corium Source=Fuente de corio +Cube=Cubo +Current target:=Objetivo actual: +Current track: @1=Pista actual: @1 +Demand: @1=Demanda: @1 +Diamond Drill Head=Mecha de Taladro de Diamante +Digging @1 m below machine=Excavación @1 m por debajo de la máquina +Digging finished=Excavación terminada +Digging not started=Excavación no iniciada +Digiline Channel=Canal Digiline +Disabled=Desactivado +Discharge=Descargar +Doped Silicon Wafer=Oblea de Silicio Dopada +Dummy light source node=Nodo de fuente de luz ficticia +Enable Mesecons Control=Habilitar control de mesecons +Enabled=Habilitado +Error=Error +Extracting=Extrayendo +Flashlight=Linterna +Flowing Corium=Corio fluyendo +Freezing=Congelando +Fuel-Fired @1 Generator=Generador @1 alimentado por combustible +Fuel-Fired Alloy Furnace=Horno de aleación alimentado por combustible +Fuel-Fired Furnace=Horno de combustible +Geothermal @1 Generator=Generador Geotermico @1 +Gold=Oro +Graphite=Grafito +Green Energy Crystal=Cristal de Energia Verde +Grinding=Molienda +HV=HV +High Voltage Transformer=Transformador de Alto Voltaje +Hydro @1 Generator=Molino de Agua @1 +Ignoring Mesecon Signal=Ignorar la señal de Mesecon +Input Power=Potencia de entrada +Inventory move disallowed due to protection=Movimiento de inventario desestimado debido a la protección +Itemwise=Itemwise +Kalite=Kalite +Keeping @1/@2 map blocks loaded=Mantener cargados los bloques del mapa @1/@2 +LV=LV +Lava Can=Bidon de Lava +Lead=Plomo +Locked=Bloqueado +Low Voltage Transformer=Transformador de Bajo Voltaje +MV=MV +Machine Casing=Carcasa de la máquina +Machine cannot be removed because it is not empty=La maquina no puede removerse porque no esta vacia +Max Depth=Profundidad máxima +May set new target:=Puede establecer un nuevo objetivo: +Medium Voltage Transformer=Transformador de Voltaje Medio +Mining Drill Mk@1 Mode @2=Taladro de Mineria Mk@1 Modo @2 +Mining Drill Mk@1=Taladro de Mineria Mk@1 +Mining Laser Mk@1=Laser de Mineria Mk@1 +Mithril=Mitrilo +Mixed Metal Ingot=Lingote de Metal Mezclado +Multimeter=Multímetro +Network Overloaded=Red sobrecargada +No new target available=No hay ningún objetivo nuevo disponible +No target set=No se ha fijado ningún objetivo +Nuclear Reactor Rod Compartment=Compartimiento para Vara de Reactor Nuclear +Offset X=Desplazamiento X +Offset Z=Desplazamiento Z +Owner: @1=Propietario: @1 +Polyfuse triggered, current efficiency: @1%, generated lag: @2 ms=Polifusible disparado, eficiencia de la corriente: @1%, retardo generado: @2 ms +Power Monitor Has No Network=El monitor de potencia no tiene red +Power Monitor. Supply: @1 Demand: @2=Monitor de energía. Suministro: @1 Demanda: @2 +Power Monitor=Monitor de potencia +Power level=Nivel de Poder +Prospector=Prospector +Purging cache=Purga de caché +RE Battery=Batería RE +Radius=Radio +Range=Alcance +Raw Latex=Latex Crudo +Red Energy Crystal=Cristal de Energia Rojo +Region cross section:=Sección transversal de la región: +Region depth:=Profundidad de la región: +Restart=Reiniciar +Right-click to set target block type=Haga clic con el botón derecho para establecer el tipo de bloque objetivo +River Water Can=Lata de agua de río +Rubber Fiber=Fibra de Hule +Rubber Tree=Árbol de caucho +Save=Guardar +Sawdust=Aserrín +Self-Contained Injector=Inyector autónomo +Separating=Separación +Set region cross section:=Ajustar la sección transversal de la región: +Set region depth:=Establecer la profundidad de la región: +Set target=Fijar objetivo +Silicon Wafer=Oblea de Silicio +Silver=Plata +Single node.=Nodo simple. +Slot @1=Ranura @1 +Small Solar @1 Generator=Panel Solar @1 +Sonic Screwdriver (left-click rotates face, right-click rotates axis)=Destornillador sónico (clic izquierdo gira la cara, clic derecho gira el eje) +Sphere=Esfera +Stackwise=Stackwise +Stainless Steel=Acero Inoxidable +Start successful=Comienza con éxito +Start=Inicio +Stone=Piedra +Stop=Parada +Stopped=Detenido +Sulfur=Azufre +Supply Converter=Convertidor de Alimentacion +Switching Station=Estacion de Conmutacion +Talinite=Talinita +Tin=Estanio +Tree Tap=Grifo de Arbol +Unlocked=Desbloqueado +Upgrade Slots=Ranuras de mejora +Uranium Fuel=Combustible de Uranio +Use while sneaking to change Mining Drill Mk@1 modes.=Manten pulsado Mayus y Usar para cambiar el modo del Taladro de Mineria Mk@1. +Vacuum Cleaner=Aspirador +Water Can=Bidon de Agua +Wind @1 Generator=Molino de Viento @1 +Wind Mill Frame=Armazon de Molino de Viento +Wrought Iron=Hierro Forjado +You are not allowed to edit this!=¡No está permitido editar esto! +Zinc=Zinc diff --git a/mods/technic_plus_beta/technic/locale/technic.fr.tr b/mods/technic_plus_beta/technic/locale/technic.fr.tr new file mode 100644 index 00000000..1168b8f1 --- /dev/null +++ b/mods/technic_plus_beta/technic/locale/technic.fr.tr @@ -0,0 +1,211 @@ +# textdomain: technic + +# French Translation for Technic Mod +# Traduction française pour Technic Mod +# by d-stephane + +3 nodes deep.=3 noeuds de profondeur. +3 nodes tall.=3 noeuds de hauteur. +3 nodes wide.=3 noeuds de large. +3x3 nodes.=3x3 noeuds. +@1 (@2 @3 -> @4 @5)=@1 (@2 @3 -> @4 @5) +@1 (@2% Efficiency)=@1 (@2% Efficacité) +@1 (@2% Fuel Used)=@1 (@2% de carburant utilisé) +@1 (@2)=@1 (@2) +@1 Active (@2)=@1 actif (@2) +@1 Active=@1 actif +@1 Alloy Furnace=Four à alliage @1 +@1 Battery Box: @2 / @3=1 Boîtier de batterie @2 / @3 +@1 Battery Box=Batterie @1 +@1 Cable Plate=1 plaque de câble +@1 Cable=Câble @1 +@1 Centrifuge=Centrifugeuse @1 +@1 Compressor=Compresseur @1 +@1 Digiline Cable Plate=1 plaque de câble Digiline +@1 Digiline Cable=1 câble Digiline +@1 Disabled=@1 désactivé +@1 Dust=Poudre de @1 +@1 Enabled=@1 activé +@1 Extractor=Extracteur @1 +@1 Finished=@1 a fini +@1 Forcefield Emitter=Emetteur de champ de force @1 +@1 Forcefield=1 champ de force +@1 Freezer=1 congélateur +@1 Furnace=Four @1 +@1 Grinder=Broyeur @1 +@1 Grinding=1 Meuleuse +@1 Has Bad Cabling=@1 est mal cablé +@1 Has No Network=@1 n'a pas de réseau +@1 Idle=@1 au repos +@1 Improperly Placed=@1 est mal placé +@1 LED=LED @1 +@1 Lamp=1 lampe +@1 Music Player=Grammophone @1 +@1 Network Overloaded, Restart in @2ms=1 réseau surchargé, redémarrage dans 2 ms +@1 Nuclear Reactor Core=Noyau de réacteur nucléaire @1 +@1 Off=1 éteint +@1 Out Of Fuel=@1 plus de carburant +@1 Purging Cache=1 Cache de purge +@1 Quarry=Carrière @1 +@1 Restarting Network=1 Redémarrage du réseau +@1 Tool Workshop=Atelier d'outillage @1 +@1 Unpowered=@1 non alimenté en énergie +@1 is absent in @2 region=@1 est absent dans la région @2 +@1 is empty=@1 est vide +@1 is present in @2 region=Le bloc @1 est présent dans la région @2 +@1%-Fissile Uranium Block=Bloc d'uranium fissile à @1%. +@1%-Fissile Uranium Dust=Poussière d'uranium fissile à @1%. +@1%-Fissile Uranium Ingot=Lingot d'uranium fissile à @1%. +@1. Supply: @2 Demand: @3=Offre @1 : @2 Demande : @3 +Acacia=Acacia +Accuracy:=Précision : +Administrative World Anchor=Ancre administrative du monde +Akalin=Akalin +Alatro=Alatro +Alloying=Alloying +Arol=Arol +Arrayed Solar @1 Generator=Générateur solaire @1 +Automatic Start=Démarrage automatique +Blue Energy Crystal=Cristal d'énergie bleu +Brass=Laiton +Bronze=Bronze +Building Network: @1 Nodes=Réseau de construction : @1 Nœuds +Carbon Cloth=Fibre de carbone +Carbon Plate=Plaque de carbone +Carbon Steel=Acier au carbone +Cast Iron=Fonte +Chainsaw=Tronçonneuse +Charge=Charger +Chernobylite Block=Bloc de Tchernobylite +Chernobylite=Tchernobylite +Chromium=Chrome +Coal=Charbon +Common Tree=Arbre commun +Composite Plate=Plaque composite +Compressing=Compression +Constructor Mk@1=Constructeur Mk@1 +Control Logic Unit=Unité de contrôle logique +Controlled by Mesecon Signal=Contrôlé par signal Mesecon +Copper Coil=Bobine de cuivre +Copper Plate=Plaque de cuivre +Copper=Cuivre +Corium Bucket=Seau de corium +Corium Source=Source de corium +Cube=Cube +Current target:=Cible actuelle : +Current track: @1=Piste actuelle : @1 +Demand: @1=Demande : @1 +Diamond Drill Head=Tête de forage en diamant +Digging @1 m below machine=Creusement à @1m en dessous de la machine +Digging finished=Creusement terminé +Digging not started=Creusement non démarré +Digiline Channel=Canal Digiline +Disabled=Désactivé +Discharge=Décharger +Doped Silicon Wafer=Tranche de silicium doppée +Dummy light source node=Nœud de source lumineuse factice +Enable Mesecons Control=Enable Mesecons Control +Enabled=Activé +Error=Erreur +Extracting=Extraction +Flashlight=Lampe-torche +Flowing Corium=Corium coulant +Freezing=Geler +Fuel-Fired @1 Generator=Générateur @1 alimenté au carburant +Fuel-Fired Alloy Furnace=Four à alliage alimenté au carburant +Fuel-Fired Furnace=Fourneau à combustible +Geothermal @1 Generator=Géénarteur géothermique @1 +Gold=Or +Graphite=Graphite +Green Energy Crystal=Cristal d'énergie vert +Grinding=Broyage +HV=HV +High Voltage Transformer=Transformateur haute tension +Hydro @1 Generator=Générateur hydroélectrique @1 +Ignoring Mesecon Signal=Ignorer le signal Mesecon +Input Power=Puissance d'entrée +Inventory move disallowed due to protection=Le mouvement d'inventaire n'est pas autorisé en raison de la protection +Itemwise=Item par Item +Kalite=Kalite +Keeping @1/@2 map blocks loaded=Garder @1/@2 blocs de carte chargés +LV=LV +Lava Can=Jerrycan de lave +Lead=Plomb +Locked=Verrouillé +Low Voltage Transformer=Transformateur basse tension +MV=MV +Machine Casing=Boîtier de la machine +Machine cannot be removed because it is not empty=La machine ne peut pas être retirée car elle n'est pas vide +Max Depth=Profondeur maximale +May set new target:=Peut fixer une nouvelle cible : +Medium Voltage Transformer=Transformateur moyenne tension +Mining Drill Mk@1 Mode @2=Foreuse Mk@1 Mode @2 +Mining Drill Mk@1=Foreuse Mk@1 +Mining Laser Mk@1=Foreuse laser Mk@1 +Mithril=Mithril +Mixed Metal Ingot=Lingot de métal allié +Multimeter=Multimètre +Network Overloaded=Réseau surchargé +No new target available=Aucune nouvelle cible disponible +No target set=Aucune cible définie +Nuclear Reactor Rod Compartment=Compartiment à barres du réacteur nucléaire +Offset X=Décalage X +Offset Z=Décalage Z +Owner: @1=Propriétaire : @1 +Polyfuse triggered, current efficiency: @1%, generated lag: @2 ms=Polyfuse déclenché, efficacité du courant : @1%, retard généré : @2 ms +Power Monitor Has No Network=Power Monitor n'a pas de réseau +Power Monitor. Supply: @1 Demand: @2=Power Monitor. Alimentation : @1 Demande : @2 +Power Monitor=Moniteur de puissance +Power level=Niveau d'énergie +Prospector=Prospecteur +Purging cache=Purge du cache +RE Battery=Batterie RE +Radius=Rayon +Range=Plage +Raw Latex=Latex brut +Red Energy Crystal=Cristal d'énergie rouge +Region cross section:=Section transversale de la région : +Region depth:=Profondeur de la région : +Restart=Redémarrer +Right-click to set target block type=Cliquez avec le bouton droit de la souris pour définir le type de bloc cible +River Water Can=Bidon d'eau de rivière +Rubber Fiber=Fibre de caoutchouc +Rubber Tree=Arbre en caoutchouc +Save=Sauver +Sawdust=Sciure de bois +Self-Contained Injector=Injecteur autonome +Separating=Séparation +Set region cross section:=Définir la section transversale de la région : +Set region depth:=Définir la profondeur de la région : +Set target=Définir la cible +Silicon Wafer=Tranche de silicium +Silver=Argent +Single node.=Mode simple. +Slot @1=Emplacement @1 +Small Solar @1 Generator=Petit générateur solaire @1 +Sonic Screwdriver (left-click rotates face, right-click rotates axis)=Tournevis sonique (le clic gauche fait tourner la face, le clic droit fait tourner l'axe) +Sphere=Sphère +Stackwise=Stack par Stack +Stainless Steel=Acier inoxydable +Start successful=Démarrage réussi +Start=Démarrage +Stone=Pierre +Stop=Stop +Stopped=Arrêté +Sulfur=Soufre +Supply Converter=Convertisseur de tension +Switching Station=Station de commutation +Talinite=Talanite +Tin=Etain +Tree Tap=Robinet à sève +Unlocked=Déverrouillé +Upgrade Slots=Emplacement d'amélioration +Uranium Fuel=Uranium 235 +Use while sneaking to change Mining Drill Mk@1 modes.=A utiliser en se faufilant pour changer les modes de la foreuse Mk@1. +Vacuum Cleaner=Aspirateur +Water Can=Jerrycan d'eau +Wind @1 Generator=Générateur éolien @1 +Wind Mill Frame=Cadre d'éolienne +Wrought Iron=Fer +You are not allowed to edit this!=Vous n'êtes pas autorisé à modifier ceci ! +Zinc=Zinc diff --git a/mods/technic_plus_beta/technic/locale/technic.it.tr b/mods/technic_plus_beta/technic/locale/technic.it.tr new file mode 100644 index 00000000..9c1e3ad8 --- /dev/null +++ b/mods/technic_plus_beta/technic/locale/technic.it.tr @@ -0,0 +1,211 @@ +# textdomain: technic + +# Italian Translation for Technic Mod +# Traduzione italiana per Technic Mod +# by pagliaccio + +3 nodes deep.=3 nodi in profondità. +3 nodes tall.=3 nodi in altezza. +3 nodes wide.=3 nodi in larghezza. +3x3 nodes.=3x3 nodi. +@1 (@2 @3 -> @4 @5)=@1 (@2 @3 -> @4 @5) +@1 (@2% Efficiency)=@1 (@2% Efficienza) +@1 (@2% Fuel Used)=@1 (@2% Carburante usato) +@1 (@2)=@1 (@2) +@1 Active (@2)=@1 Attivo (@2) +@1 Active=@1 Attivo +@1 Alloy Furnace=@1 Fornace per leghe +@1 Battery Box: @2 / @3=@1 Box batterie: @2 / @3 +@1 Battery Box=@1 Box batterie +@1 Cable Plate=@1 Piastra per cavi +@1 Cable=Cavo @1 +@1 Centrifuge=@1 Centrifuga +@1 Compressor=Compressore @1 +@1 Digiline Cable Plate=@1 Piastra per cavi Digiline +@1 Digiline Cable=@1 Cavo Digiline +@1 Disabled=@1 Disabilitato +@1 Dust=Polvere di @1 +@1 Enabled=@1 Abilitato +@1 Extractor=Estrattore @1 +@1 Finished=@1 Finito +@1 Forcefield Emitter=Emettitore di campo di forza @1 +@1 Forcefield=@1 Campo di forza +@1 Freezer=@1 Congelatore +@1 Furnace=@1 Fornace +@1 Grinder=@1 Tritatutto +@1 Grinding=@1 Rettifica +@1 Has Bad Cabling=@1 ha un cablaggio scorretto +@1 Has No Network=@1 non è collegata +@1 Idle=@1 Inattivo +@1 Improperly Placed=@1 Piazzato impropiamente +@1 LED=@1 LED +@1 Lamp=@1 Lampada +@1 Music Player=Music Player @1 +@1 Network Overloaded, Restart in @2ms=@1 Rete sovraccarica, riavvio in @2ms +@1 Nuclear Reactor Core=@1 Nucleo del reattore nucleare +@1 Off=@1 Spento +@1 Out Of Fuel=@1 senza carburante +@1 Purging Cache=@1 Spurgo della cache +@1 Quarry=Cava @1 +@1 Restarting Network=@1 Riavvio della rete +@1 Tool Workshop=Officina per attrezzi @1 +@1 Unpowered=@1 Non alimentato +@1 is absent in @2 region=@1 è assente nella regione @2 +@1 is empty=@1 è vuoto +@1 is present in @2 region=@1 è presente nella regione @2 +@1%-Fissile Uranium Block=@1%-Blocco di uranio fissile +@1%-Fissile Uranium Dust=@1%-Polvere di Uranio Fissile +@1%-Fissile Uranium Ingot=@1%-Fissile Lingotto di Uranio +@1. Supply: @2 Demand: @3=@1. Fornitura: @2 Domanda: @3 +Acacia=Acacia +Accuracy:=Precisione: +Administrative World Anchor=Ancora-mondo amministrativa +Akalin=Alcalino +Alatro=Alatro +Alloying=Lega +Arol=Arol +Arrayed Solar @1 Generator=@1 Pannello Solare +Automatic Start=Avvio automatico +Blue Energy Crystal=Cristallo energetico blu +Brass=Ottone +Bronze=Bronzo +Building Network: @1 Nodes=Rete di edifici: @1 Nodi +Carbon Cloth=Fibra di carbonio +Carbon Plate=Lastra in carbonio +Carbon Steel=Acciaio al Carbonio +Cast Iron=Ghisa +Chainsaw=Motosega +Charge=Carica +Chernobylite Block=Blocco di Chernobylite +Chernobylite=Cernobilite +Chromium=Cromo +Coal=Carbone +Common Tree=Albero comune +Composite Plate=Lastra composita +Compressing=Compressione +Constructor Mk@1=Costruttore Mk@1 +Control Logic Unit=Unità di controllo logica +Controlled by Mesecon Signal=Controllato dal segnale Mesecon +Copper Coil=Bobina di rame +Copper Plate=Lastra di rame +Copper=Rame +Corium Bucket=Secchio di corium +Corium Source=Sorgente di corium +Cube=Cubo +Current target:=Obiettivo attuale: +Current track: @1=Traccia attuale: @1 +Demand: @1=Domanda: @1 +Diamond Drill Head=Trivella diamantata +Digging @1 m below machine=Scavo di @1 m sotto la macchina +Digging finished=Scavo finito +Digging not started=Scavo non iniziato +Digiline Channel=Canale Digiline +Disabled=Disabilitato +Discharge=Scarica +Doped Silicon Wafer=Wafer di silicone dopato +Dummy light source node=Nodo sorgente luminosa fittizio +Enable Mesecons Control=Abilita controllo Mesecons +Enabled=Abilitato +Error=Errore +Extracting=Estrazione +Flashlight=Torcia +Flowing Corium=Corium fluente +Freezing=Congelamento +Fuel-Fired @1 Generator=Generatore @1 alimentato a combustibile +Fuel-Fired Alloy Furnace=Forno a combustibile per leghe +Fuel-Fired Furnace=Forno a combustibile +Geothermal @1 Generator=@1 Generatore Geotermico +Gold=Oro +Graphite=Lastra in graffite +Green Energy Crystal=Cristallo energetico verde +Grinding=Macinazione +HV=HV +High Voltage Transformer=Trasformatore in alta tensione +Hydro @1 Generator=Turbina Elettrica @1 +Ignoring Mesecon Signal=Ignorare il segnale Mesecon +Input Power=Potenza in ingresso +Inventory move disallowed due to protection=Impossibile muovere l'inventario a causa della protezione +Itemwise=Singolo elemento +Kalite=Kalite +Keeping @1/@2 map blocks loaded=Mantenimento di @1/@2 blocchi mappa caricati +LV=LV +Lava Can=Serbatoio di lava +Lead=Piombo +Locked=Chiuso a chiave +Low Voltage Transformer=Trasformatore in bassa tensione +MV=MV +Machine Casing=Involucro della macchina +Machine cannot be removed because it is not empty=La macchina non può essere rimossa perchè non è vuota +Max Depth=Profondità massima +May set new target:=Può impostare un nuovo obiettivo: +Medium Voltage Transformer=Trasformatore in media tensione +Mining Drill Mk@1 Mode @2=Trivella mk@1 in modalità @2 +Mining Drill Mk@1=Trivella da miniera mk@1 +Mining Laser Mk@1=Laser da miniera mk@1 +Mithril=Mithril +Mixed Metal Ingot=Lingotto in lega ibrida +Multimeter=Multimetro +Network Overloaded=Rete sovraccarica +No new target available=Nessun nuovo obiettivo disponibile +No target set=Nessun obiettivo impostato +Nuclear Reactor Rod Compartment=Compartimento combustibile nucleare +Offset X=Offset X +Offset Z=Offset Z +Owner: @1=Proprietario: @1 +Polyfuse triggered, current efficiency: @1%, generated lag: @2 ms=Polifusore attivato, efficienza di corrente: @1%, ritardo generato: @2 ms +Power Monitor Has No Network=Il Power Monitor non ha rete +Power Monitor. Supply: @1 Demand: @2=Monitoraggio dell'alimentazione. Alimentazione: @1 Domanda: @2 +Power Monitor=Monitoraggio della potenza +Power level=Livello di potenza +Prospector=Prospettore +Purging cache=Spurgo della cache +RE Battery=Batteria RE +Radius=Raggio +Range=Raggio +Raw Latex=Latex grezzo +Red Energy Crystal=Cristallo energetico rosso +Region cross section:=Sezione trasversale della regione: +Region depth:=Profondità della regione: +Restart=Riavvio +Right-click to set target block type=Fare clic con il tasto destro del mouse per impostare il tipo di blocco di destinazione +River Water Can=Fiume Acqua Lattina +Rubber Fiber=Fibra di gomma +Rubber Tree=Albero di gomma +Save=Salva +Sawdust=Segatura +Self-Contained Injector=Iniettore autonomo +Separating=Separazione +Set region cross section:=Impostare la sezione trasversale della regione: +Set region depth:=Impostare la profondità della regione: +Set target=Impostare il target +Silicon Wafer=Wafer di silicone +Silver=Argento +Single node.=Nodo singolo. +Slot @1=Alloggio @1 +Small Solar @1 Generator=@1 Pannello solare +Sonic Screwdriver (left-click rotates face, right-click rotates axis)=Cacciavite sonico (cliccando a sinistra si ruota la faccia, cliccando a destra si ruota l'asse) +Sphere=Sfera +Stackwise=pila completa +Stainless Steel=Acciaio Inossidabile +Start successful=Avvio riuscito +Start=Avvio +Stone=Pietra +Stop=Fermata +Stopped=Fermato +Sulfur=Zolfo +Supply Converter=Trasformatore +Switching Station=Stazione di controllo +Talinite=Talinite +Tin=Stagno +Tree Tap=Batti albero +Unlocked=Non chiuso a chiave +Upgrade Slots=Alloggi di aggiornamento +Uranium Fuel=Uranio Combustibile +Use while sneaking to change Mining Drill Mk@1 modes.=Premi shift (freccia grossa) e usa per cambiare modalità nella trivella da miniera Mk@1. +Vacuum Cleaner=Aspirapolvere +Water Can=Serbatoio d'acqua +Wind @1 Generator=@1 Generatore eolico +Wind Mill Frame=Pala eolica +Wrought Iron=Ferro Battuto +You are not allowed to edit this!=Non ti è permesso di modificarlo! +Zinc=Zinco diff --git a/mods/technic_plus_beta/technic/locale/technic.pl.tr b/mods/technic_plus_beta/technic/locale/technic.pl.tr new file mode 100644 index 00000000..2ad871f3 --- /dev/null +++ b/mods/technic_plus_beta/technic/locale/technic.pl.tr @@ -0,0 +1,211 @@ +# textdomain: technic + +# Polish Translation for Technic mod +# Polskie tłumaczenie Technic mod +# by mat9117 + +3 nodes deep.=Głęboki na 3 bloki. +3 nodes tall.=Wysoki na 3 bloki. +3 nodes wide.=Szeroki na 3 bloki. +3x3 nodes.=3x3 bloki. +@1 (@2 @3 -> @4 @5)=@1 (@2 @3 -> @4 @5) +@1 (@2% Efficiency)=@1 (@2% Wydajność) +@1 (@2% Fuel Used)=@1 (@2% Zużycie paliwa) +@1 (@2)=@1 (@2) +@1 Active (@2)=@1 Aktywny (@2) +@1 Active=@1 Aktywny/a +@1 Alloy Furnace=@1 Piec stopowy +@1 Battery Box: @2 / @3=@1 Pojemnik na baterie: @2 / @3 +@1 Battery Box=@1 Skrzynka baterii +@1 Cable Plate=@1 Płytka kablowa +@1 Cable=@1 Przewód +@1 Centrifuge=@1 Centryfuga +@1 Compressor=@1 Kompresor +@1 Digiline Cable Plate=@1 Płytka kablowa Digiline +@1 Digiline Cable=@1 Kabel Digiline +@1 Disabled=@1 Wyłączony/a +@1 Dust=@1 Pył +@1 Enabled=@1 Włączony/a +@1 Extractor=@1 Ekstraktor +@1 Finished=@1 Ukończony +@1 Forcefield Emitter=@1 Emiter pola siłowego +@1 Forcefield=@1 Pole siłowe +@1 Freezer=@1 Zamrażarka +@1 Furnace=@1 Piec +@1 Grinder=@1 Młynek +@1 Grinding=@1 Szlifierka +@1 Has Bad Cabling=@1 Źle podłączono kable +@1 Has No Network=@1 Nie podłączony/a do sieci +@1 Idle=@1 Bezczynny/a +@1 Improperly Placed=@1 Ustawiony/a nieprawidłowo +@1 LED=@1 DIODA LED +@1 Lamp=@1 Lampa +@1 Music Player=@1 Odtwarzacz muzyki +@1 Network Overloaded, Restart in @2ms=@1 Sieć przeciążona, restart za @2ms +@1 Nuclear Reactor Core=@1 Rdzeń reaktora jądrowego +@1 Off=@1 Wyłączony +@1 Out Of Fuel=@1 brak paliwa +@1 Purging Cache=@1 Purging Cache +@1 Quarry=@1 Kamieniołom +@1 Restarting Network=@1 Restartowanie sieci +@1 Tool Workshop=@1 Warsztat narzędzi +@1 Unpowered=@1 brak zasilania +@1 is absent in @2 region=@1 jest nieobecny w regionie @2 +@1 is empty=@1 jest pusty/a +@1 is present in @2 region=@1 jest obecny w regionie @2 +@1%-Fissile Uranium Block=@1%-rozszczepialny blok uranu +@1%-Fissile Uranium Dust=@1%-Fissile Pył uranowy +@1%-Fissile Uranium Ingot=@1%-Fissile Uranium Ingot +@1. Supply: @2 Demand: @3=@1 Podaż: @2 Popyt: @3 +Acacia=Acacia +Accuracy:=Dokładność: +Administrative World Anchor=Administracyjna kotwica świata +Akalin=Akalinowy +Alatro=Alatrowy +Alloying=Alatro +Arol=Arolowy +Arrayed Solar @1 Generator=@1 Szeregowy generator słoneczny +Automatic Start=Automatyczny start +Blue Energy Crystal=Niebieski kryształ energii +Brass=Mosiądzu +Bronze=Brązu +Building Network: @1 Nodes=Sieć budynków: @1 Węzły +Carbon Cloth=Włókno węglowe +Carbon Plate=Płytka węglowa +Carbon Steel=Stali węglowej +Cast Iron=Żeliwa +Chainsaw=Piła łańcuchowa +Charge=Ładuj +Chernobylite Block=Blok Czarnobylitowy +Chernobylite=Czarnobylit +Chromium=Chromu +Coal=Węglowy +Common Tree=Drzewo zwyczajne +Composite Plate=Płytka kompozytowa +Compressing=Kompresowanie +Constructor Mk@1=Konstruktor Mk@1 +Control Logic Unit=Jednostka sterująca +Controlled by Mesecon Signal=Sterowany sygnałem Mesecon +Copper Coil=Miedziana cewka +Copper Plate=Płytka miedziana +Copper=Miedzi +Corium Bucket=Wiadro Korium +Corium Source=Źródło Korium +Cube=Cube +Current target:=Aktualny cel: +Current track: @1=Aktualna ścieżka: @1 +Demand: @1=Popyt: @1 +Diamond Drill Head=Diamentowa głowica wiertła +Digging @1 m below machine=Kopię @1 m pod maszyną +Digging finished=Kopanie skończone +Digging not started=Nie rozpoczęto kopania +Digiline Channel=Kanał Digiline +Disabled=Wyłączony/a +Discharge=Rozładuj +Doped Silicon Wafer=Domieszkowana płytka krzemowa +Dummy light source node=Sztuczny węzeł źródła światła +Enable Mesecons Control=Włączenie kontroli mezekonów +Enabled=Włączony/a +Error=Błąd +Extracting=Ekstrakcja +Flashlight=Latarka +Flowing Corium=Płynące Corium +Freezing=Zamrażanie +Fuel-Fired @1 Generator=Generator @1 zasilany paliwem +Fuel-Fired Alloy Furnace=Opalany paliwem piec stopowy +Fuel-Fired Furnace=Piec opalany paliwem +Geothermal @1 Generator=@1 Generator geotermalny +Gold=Złoty +Graphite=Grafit +Green Energy Crystal=Zielony kryształ energii +Grinding=Mielenie +HV=HV +High Voltage Transformer=Transformator wysokiego napięcia +Hydro @1 Generator=@1 Hydrogenerator +Ignoring Mesecon Signal=Ignoruj sygnał Mesecon +Input Power=Moc wejściowa +Inventory move disallowed due to protection=Przenoszenie rzeczy z ekwipunku niemożliwe z powodu ochrony +Itemwise=Jeden przedmiot +Kalite=Kalite +Keeping @1/@2 map blocks loaded=Ciągle ładuję @1/@2 bloki mapy +LV=LV +Lava Can=Kanister lawy +Lead=Ołów +Locked=Zablokowany/a +Low Voltage Transformer=Transformator niskiego napięcia +MV=MV +Machine Casing=Obudowa maszyny +Machine cannot be removed because it is not empty=Nie można usunąć maszyny, ponieważ nie jest pusta +Max Depth=Maksymalna głębokość +May set new target:=Może ustawić nowy cel: +Medium Voltage Transformer=Transformator średniego napięcia +Mining Drill Mk@1 Mode @2=Tryb wiertła górniczego Mk@1 +Mining Drill Mk@1=Wiertło górnicze Mk@1 +Mining Laser Mk@1=Laser górniczy Mk@1 +Mithril=Mithrilu +Mixed Metal Ingot=Sztabka zmieszanych metali +Multimeter=Multimetr +Network Overloaded=Sieć przeciążona +No new target available=Brak nowego celu. +No target set=Nie ustawiono celu +Nuclear Reactor Rod Compartment=Komora rdzenia reaktora atomowego +Offset X=Przesunięcie X +Offset Z=Przesunięcie Z +Owner: @1=Właściciel: @1 +Polyfuse triggered, current efficiency: @1%, generated lag: @2 ms=Polyfuse wyzwolony, wydajność prądowa: @1%, generowane opóźnienie: @2 ms +Power Monitor Has No Network=Power Monitor nie ma sieci +Power Monitor. Supply: @1 Demand: @2=Power Monitor. Zasilanie: @1 Zapotrzebowanie: @2 +Power Monitor=Monitor mocy +Power level=Poziom zasilania +Prospector=Prospector +Purging cache=Oczyszczanie pamięci podręcznej +RE Battery=Bateria ładowalna +Radius=Promień +Range=Zasięg +Raw Latex=Lateks naturalny +Red Energy Crystal=Czerwony kryształ energii +Region cross section:=Przekrój regionu: +Region depth:=Głębokość regionu: +Restart=Uruchom ponownie +Right-click to set target block type=Kliknij prawym przyciskiem myszy, aby ustawić typ bloku docelowego +River Water Can=Rzeka Woda Puszka +Rubber Fiber=Włókno gumowe +Rubber Tree=Gumowe drzewo +Save=Zapisz +Sawdust=Trociny +Self-Contained Injector=Samodzielny iniektor +Separating=Oddzielanie +Set region cross section:=Ustaw przekrój regionu: +Set region depth:=Ustaw głębokość regionu: +Set target=Ustawić cel +Silicon Wafer=Płytka krzemowa +Silver=Srebrny +Single node.=Pojedynczy blok. +Slot @1=Otwór @1 +Small Solar @1 Generator=@1 Mały generator słoneczny +Sonic Screwdriver (left-click rotates face, right-click rotates axis)=Śrubokręt dźwiękowy (lewe kliknięcie powoduje obrót twarzy, prawe kliknięcie powoduje obrót osi) +Sphere=Sfera +Stackwise=Cały stack +Stainless Steel=Stali nierdzewnej +Start successful=Początek udany +Start=Start +Stone=Kamień +Stop=Stop +Stopped=Zatrzymany/a +Sulfur=Siarka +Supply Converter=Konwerter zasilania +Switching Station=Rozdzielnia +Talinite=Talinitu +Tin=Cyny +Tree Tap=Nacinak drzewny +Unlocked=Odblokowany/a +Upgrade Slots=Miejsca na ulepszenia +Uranium Fuel=Paliwo uranowe +Use while sneaking to change Mining Drill Mk@1 modes.=Użyj podczas skradania, aby zmienić tryby wiertła górniczego Mk@1 +Vacuum Cleaner=Vacuum Cleaner +Water Can=Kanister wody +Wind @1 Generator=@1 Generator wiatrowy +Wind Mill Frame=Klatka wiatraka +Wrought Iron=Kutego żelaza +You are not allowed to edit this!=Nie możesz tego edytować! +Zinc=Cynku diff --git a/mods/technic_plus_beta/technic/locale/technic.pt_BR.tr b/mods/technic_plus_beta/technic/locale/technic.pt_BR.tr new file mode 100644 index 00000000..aef19cef --- /dev/null +++ b/mods/technic_plus_beta/technic/locale/technic.pt_BR.tr @@ -0,0 +1,211 @@ +# textdomain: technic + +# Braziliam portuguese translation for technic +# Tradução portuguesa brasileira para technic +# By Sires + +3 nodes deep.=3 nodes de profundidade. +3 nodes tall.=3 nodes de altura. +3 nodes wide.=3 nodes de largura. +3x3 nodes.=3x3 nodes. +@1 (@2 @3 -> @4 @5)=@1 (@2 @3 -> @4 @5) +@1 (@2% Efficiency)=@1 (@2% Eficiência) +@1 (@2% Fuel Used)=@1 (@2% Combustível utilizado) +@1 (@2)=@1 (@2) +@1 Active (@2)=@1 Ativo (@2) +@1 Active=@1 Ativo +@1 Alloy Furnace=Fornalha de Liga @1 +@1 Battery Box: @2 / @3=@1 Caixa de bateria: @2 / @3 +@1 Battery Box=Caixa de Bateria @1 +@1 Cable Plate=@1 Placa de cabo +@1 Cable=Cabo @1 +@1 Centrifuge=Centrifuga @1 +@1 Compressor=Compresso @1 +@1 Digiline Cable Plate=@1 Placa de cabo Digiline +@1 Digiline Cable=@1 Cabo Digilino +@1 Disabled=@1 Ativado +@1 Dust=Pó de @1 +@1 Enabled=@1 Desativado +@1 Extractor=Extrator @1 +@1 Finished=@1 Acabou +@1 Forcefield Emitter=Emissor de Campo de Força @1 +@1 Forcefield=@1 Campo de Força +@1 Freezer=@1 Freezer +@1 Furnace=Fornalha @1 +@1 Grinder=Triturador @1 +@1 Grinding=@1 Moagem +@1 Has Bad Cabling=@1 Tem Cabeamento Ruim +@1 Has No Network=@1 Não Tem Rede +@1 Idle=Ócio +@1 Improperly Placed=@1 Colocado Inapropriadamente +@1 LED=@1 LED +@1 Lamp=@1 Lâmpada +@1 Music Player=Tocador de Música @1 +@1 Network Overloaded, Restart in @2ms=@1 Sobrecarga da Rede, Reiniciar em @2ms +@1 Nuclear Reactor Core=@1 Núcleo do Reator Nuclear +@1 Off=@1 Off +@1 Out Of Fuel=@1 Sem Combustível +@1 Purging Cache=@1 Cache de Purgar +@1 Quarry=Pedreira @1 +@1 Restarting Network=@1 Rede de Reinício +@1 Tool Workshop=Oficina de Ferramentas @1 +@1 Unpowered=@1 Sem energia +@1 is absent in @2 region=@1 está ausente em @2 região +@1 is empty=@1 está vazio +@1 is present in @2 region=@1 está presente em @2 região +@1%-Fissile Uranium Block=@1%-Fissile Uranium Block +@1%-Fissile Uranium Dust=@1%-Pó de Urânio Físsil +@1%-Fissile Uranium Ingot=@1%-Uranio Fissile Ingot +@1. Supply: @2 Demand: @3=1. fornecimento: @2 Demanda: @3 +Acacia=Acacia +Accuracy:=Precisão: +Administrative World Anchor=Âncora de Mundo Administrativa +Akalin=Akalin +Alatro=Alatro +Alloying=Ligas +Arol=Arol +Arrayed Solar @1 Generator=Gerador Solar Equipado @1 +Automatic Start=Início automático +Blue Energy Crystal=Cristal de Energia Azul +Brass=Latão +Bronze=Bronze +Building Network: @1 Nodes=Rede de Construção Civil: @1 Nodos +Carbon Cloth=Recido de Carbono +Carbon Plate=Placa de Carbono +Carbon Steel=Aço Carbono +Cast Iron=Ferro Fundido +Chainsaw=Motosserra +Charge=Carregar +Chernobylite Block=Bloco de Chernobylite +Chernobylite=Chernobylite +Chromium=Crômio +Coal=Carvão +Common Tree=Árvore comum +Composite Plate=Placa Composta +Compressing=Comprimindo +Constructor Mk@1=Construtor Nv@1 +Control Logic Unit=Unidade de Controle Lógico +Controlled by Mesecon Signal=Controlado por Sinal de Mesecon +Copper Coil=Bobina de Cobre +Copper Plate=Placa de Cobre +Copper=Cobre +Corium Bucket=Balde de Cório +Corium Source=Fonte de Cório +Cube=Cube +Current target:=Meta atual: +Current track: @1=Pista atual: @1 +Demand: @1=Demanda: @1 +Diamond Drill Head=Cabeça de Broca de Diamante +Digging @1 m below machine=Escavando @1 m abaixo da máquina +Digging finished=Escavação terminada +Digging not started=Escavação não começada +Digiline Channel=Canal Digiline +Disabled=Desativado +Discharge=Descarregar +Doped Silicon Wafer=Pastilha de Silício Dopada +Dummy light source node=Nó de fonte de luz idiota +Enable Mesecons Control=Habilitar o Controle de Mesecons +Enabled=Ativado +Error=Erro +Extracting=Extraindo +Flashlight=Lanterna +Flowing Corium=Cório Fluente +Freezing=Congelamento +Fuel-Fired @1 Generator=Gerador de combustível @1 +Fuel-Fired Alloy Furnace=Forno de Liga Combustível +Fuel-Fired Furnace=Forno a combustível +Geothermal @1 Generator=Gerador Geotermal @1 +Gold=Ouro +Graphite=Grafite +Green Energy Crystal=Cristal de Energia Verde +Grinding=Triturando +HV=HV +High Voltage Transformer=Transformador de Alta Voltagem +Hydro @1 Generator=Gerador Hidráulico @1 +Ignoring Mesecon Signal=Ignorar Sinaal de Mesecon +Input Power=Potência de entrada +Inventory move disallowed due to protection=Movimento de inventário não permitido pela proteção +Itemwise=Por item +Kalite=Kalite +Keeping @1/@2 map blocks loaded=Mantendo @1/@2 blocos de mapa carregados +LV=LV +Lava Can=Lata de Lava +Lead=Chumbo +Locked=Travado +Low Voltage Transformer=Transformador de Baixa Voltagem +MV=MV +Machine Casing=Caixa da máquina +Machine cannot be removed because it is not empty=A máquina não pode ser removida porque ela não está vazia +Max Depth=Profundidade máxima +May set new target:=Pode estabelecer uma nova meta: +Medium Voltage Transformer=Transformador de Média Voltagem +Mining Drill Mk@1 Mode @2=Broca de Mineração Nv@1 Modo @2 +Mining Drill Mk@1=Broca de Mineração Nv@1 +Mining Laser Mk@1=Laser de Mineração Nv@1 +Mithril=Mithril +Mixed Metal Ingot=Lingote de Metal Misturado +Multimeter=Multímetro +Network Overloaded=Sobrecarga da rede +No new target available=Nenhuma nova meta disponível +No target set=Nenhuma meta estabelecida +Nuclear Reactor Rod Compartment=Compartimento de Barra do Reator Nuclear +Offset X=Offset X +Offset Z=Offset Z +Owner: @1=Proprietário: @1 +Polyfuse triggered, current efficiency: @1%, generated lag: @2 ms=Polifusível acionado, eficiência atual: @1%, gerou atraso: @2 ms +Power Monitor Has No Network=O Power Monitor não possui rede +Power Monitor. Supply: @1 Demand: @2=Monitor de energia. Fornecimento: Demanda @1: @2 +Power Monitor=Monitor de energia +Power level=Nível de Energia +Prospector=Prospector +Purging cache=Cache de purga +RE Battery=Bateria RE +Radius=Radius +Range=Alcance +Raw Latex=Latex bruto +Red Energy Crystal=Cristal de Energia Vermelho +Region cross section:=Seção transversal da região: +Region depth:=Profundidade da região: +Restart=Reiniciar +Right-click to set target block type=Clique com o botão direito do mouse para definir o tipo de bloco alvo +River Water Can=Lata de água do rio +Rubber Fiber=Fibra de Borracha +Rubber Tree=Seringueira +Save=Salvar +Sawdust=Serradura +Self-Contained Injector=Injetor autônomo +Separating=Separando +Set region cross section:=Definir a seção transversal da região: +Set region depth:=Profundidade da região definida: +Set target=Objetivo definido +Silicon Wafer=Pastilha de Silício +Silver=Prata +Single node.=Unico node. +Slot @1=Lugar @1 +Small Solar @1 Generator=Gerador Solar Pequeno @1 +Sonic Screwdriver (left-click rotates face, right-click rotates axis)=Chave de fenda sônica (clique esquerdo gira face, clique direito gira eixo) +Sphere=Esfera +Stackwise=Por pilha +Stainless Steel=Aço Inoxidável +Start successful=Comece com sucesso +Start=Início +Stone=Pedra +Stop=Parada +Stopped=Parado +Sulfur=Enxofre +Supply Converter=Conversor de Energia +Switching Station=Estação de Comutação +Talinite=Talinite +Tin=Estanho +Tree Tap=Torneira de Árvore +Unlocked=Destravado +Upgrade Slots=Lugares para Melhoria +Uranium Fuel=Combustivel de Urânio +Use while sneaking to change Mining Drill Mk@1 modes.=Use enquanto esgueirando para mudar os modos da Broca de Mineração Nv@1. +Vacuum Cleaner=Aspirador de pó +Water Can=Lata de Água +Wind @1 Generator=Gerador de Energia Eólica @1 +Wind Mill Frame=Armação de Moinho de Vento +Wrought Iron=Ferro Forjado +You are not allowed to edit this!=Você não está autorizado a editar isto! +Zinc=Zinco diff --git a/mods/technic_plus_beta/technic/locale/technic.zh_CN.tr b/mods/technic_plus_beta/technic/locale/technic.zh_CN.tr new file mode 100644 index 00000000..9680ff0a --- /dev/null +++ b/mods/technic_plus_beta/technic/locale/technic.zh_CN.tr @@ -0,0 +1,211 @@ +# textdomain: technic + +# Chinese Translation for Technic Mod +# 技术模型的中文翻译 +# by wzy2006 <3450354617@qq.com> + +3 nodes deep.=3方块深度。 +3 nodes tall.=3方块高。 +3 nodes wide.=3方块宽。 +3x3 nodes.=3x3 方块.。 +@1 (@2 @3 -> @4 @5)=@1 (@2 @3 -> @4 @5) +@1 (@2% Efficiency)=@1 (@2% 效率) +@1 (@2% Fuel Used)=@1 (@2% 燃料使用) +@1 (@2)=@1 (@2) +@1 Active (@2)=@1 活跃 (@2) +@1 Active=@1 活动 +@1 Alloy Furnace=@1 合金炉 +@1 Battery Box: @2 / @3=@1 电池盒。@2 / @3 +@1 Battery Box=% s电池盒 +@1 Cable Plate=@1个电缆板 +@1 Cable=@1 电缆 +@1 Centrifuge=@1个离心机 +@1 Compressor=@1 压缩机 +@1 Digiline Cable Plate=@1台Digiline电缆板 +@1 Digiline Cable=@1个数字线电缆 +@1 Disabled=@1 禁用 +@1 Dust=@1 粉 +@1 Enabled=@1 启用 +@1 Extractor=@1 提取机 +@1 Finished=@1 完成 +@1 Forcefield Emitter=@1 力场发射器 +@1 Forcefield=@1 力场 +@1 Freezer=@1 冷藏室 +@1 Furnace=@1 熔炉 +@1 Grinder=@1 研磨机 +@1 Grinding=@1 研磨 +@1 Has Bad Cabling=@1 布线不良 +@1 Has No Network=@1 未并入电网(也许需要"交换站") +@1 Idle=@1 闲置 +@1 Improperly Placed=@1 放置不当 +@1 LED=@1 LED +@1 Lamp=@1 灯 +@1 Music Player=@1 音乐播放器 +@1 Network Overloaded, Restart in @2ms=@1 网络过载,在@2ms内重新启动 +@1 Nuclear Reactor Core=@1 核反应堆核心 +@1 Off=@1 关闭 +@1 Out Of Fuel=@1 燃料耗尽 +@1 Purging Cache=@1 清理缓存 +@1 Quarry=% s采石机 +@1 Restarting Network=@1 重新启动网络 +@1 Tool Workshop=% s工具车间 +@1 Unpowered=@1 无能量的 +@1 is absent in @2 region=@1在@2地区不存在 +@1 is empty=@1是空的 +@1 is present in @2 region=@1在@2地区存在 +@1%-Fissile Uranium Block=@1%-裂变铀块 +@1%-Fissile Uranium Dust=@1%-裂变铀粉 +@1%-Fissile Uranium Ingot=@1%-裂变铀锭 +@1. Supply: @2 Demand: @3=@1.供应。 @2需求。 @3 +Acacia=金合欢 +Accuracy:=准确度。 +Administrative World Anchor=管理员区块锚 +Akalin=Akalin +Alatro=Alatro +Alloying=合金化 +Arol=Arol +Arrayed Solar @1 Generator=太阳能@1发电板 +Automatic Start=自动启动 +Blue Energy Crystal=蓝色能量水晶 +Brass=黄铜 +Bronze=青铜 +Building Network: @1 Nodes=建筑网络。@1个节点 +Carbon Cloth=碳布 +Carbon Plate=碳板 +Carbon Steel=碳钢 +Cast Iron=铸铁 +Chainsaw=电锯 +Charge=Charge +Chernobylite Block=切尔诺贝利石块 +Chernobylite=切尔诺贝利特 +Chromium=铬 +Coal=煤炭 +Common Tree=普通树木 +Composite Plate=复合材料板 +Compressing=压缩 +Constructor Mk@1=建造器@1 +Control Logic Unit=控制逻辑单元 +Controlled by Mesecon Signal=由Mesecon信号控制 +Copper Coil=铜盘管 +Copper Plate=铜板 +Copper=铜 +Corium Bucket=镭射桶 +Corium Source=镭射源 +Cube=立方体 +Current target:=目前的目标。 +Current track: @1=目前的轨道。@1 +Demand: @1=需求。 @1 +Diamond Drill Head=金刚石钻头 +Digging @1 m below machine=挖掘 @1 m以下的机器 +Digging finished=挖完 +Digging not started=没有开始挖掘 +Digiline Channel=数字通道 +Disabled=禁用 +Discharge=Discharge +Doped Silicon Wafer=硅芯片 +Dummy light source node=虚拟光源节点 +Enable Mesecons Control=启用中子控制 +Enabled=启用 +Error=误差 +Extracting=提取 +Flashlight=手电筒 +Flowing Corium=流动珊瑚 +Freezing=冷冻 +Fuel-Fired @1 Generator=燃料加热的@1发电机 +Fuel-Fired Alloy Furnace=燃料燃烧的合金炉 +Fuel-Fired Furnace=燃料加热炉 +Geothermal @1 Generator=地热@1发电机 +Gold=黄金 +Graphite=石墨 +Green Energy Crystal=绿色能源水晶 +Grinding=研磨中 +HV=晶体 +High Voltage Transformer=高压变压器 +Hydro @1 Generator=水力@1 发电机 +Ignoring Mesecon Signal=忽略Mesecon信号 +Input Power=输入功率 +Inventory move disallowed due to protection=库存移动不允许由于保护 +Itemwise=逐项 +Kalite=卡利特 +Keeping @1/@2 map blocks loaded=保持@1/@2地图模块加载 +LV=消耗品 +Lava Can=岩浆罐 +Lead=铅 +Locked=锁着的 +Low Voltage Transformer=低压变压器 +MV=中压 +Machine Casing=机器外壳 +Machine cannot be removed because it is not empty=机器不能被拆除,因为它不是空的 +Max Depth=最大深度 +May set new target:=可以设置新的目标。 +Medium Voltage Transformer=中压变压器 +Mining Drill Mk@1 Mode @2=采矿钻 MK@1模式@2 +Mining Drill Mk@1=采矿钻 MK@1 +Mining Laser Mk@1=采矿激光 MK @1 +Mithril=秘银 +Mixed Metal Ingot=混合金属锭 +Multimeter=万用表 +Network Overloaded=网络过载 +No new target available=没有新目标可用 +No target set=没有设定目标 +Nuclear Reactor Rod Compartment=核反应堆舱 +Offset X=偏移 X +Offset Z=偏移量Z +Owner: @1=所有者。@1 +Polyfuse triggered, current efficiency: @1%, generated lag: @2 ms=多重熔断器被触发,电流效率。@1%,产生滞后。@2毫秒 +Power Monitor Has No Network=电源监控器没有网络 +Power Monitor. Supply: @1 Demand: @2=电源监控器。供应。@1 需求。@2 +Power Monitor=功率监控器 +Power level=功率级 +Prospector=探测仪 +Purging cache=净化缓存 +RE Battery=RE 电池 +Radius=半径 +Range=范围 +Raw Latex=生乳胶 +Red Energy Crystal=红色能量水晶 +Region cross section:=区域横截面。 +Region depth:=区域深度。 +Restart=重新启动 +Right-click to set target block type=右键设置目标块类型 +River Water Can=河水罐 +Rubber Fiber=橡胶纤维 +Rubber Tree=橡胶树 +Save=保存 +Sawdust=锯末 +Self-Contained Injector=自带的注射器 +Separating=分离式 +Set region cross section:=设置区域横截面。 +Set region depth:=设置区域深度。 +Set target=设置目标 +Silicon Wafer=硅晶片 +Silver=银 +Single node.=单方块。 +Slot @1=插槽 @1 +Small Solar @1 Generator=小型太阳能@1发电板 +Sonic Screwdriver (left-click rotates face, right-click rotates axis)=音速螺丝刀(左键旋转面,右键旋转轴) +Sphere=球体 +Stackwise=逐堆 +Stainless Steel=不锈钢 +Start successful=启动成功 +Start=启动 +Stone=石头 +Stop=停止 +Stopped=停止 +Sulfur=硫磺 +Supply Converter=电源转换器 +Switching Station=交换站 +Talinite=绿泥石 +Tin=锡 +Tree Tap=树形水龙头 +Unlocked=解锁 +Upgrade Slots=升级插槽 +Uranium Fuel=铀燃料 +Use while sneaking to change Mining Drill Mk@1 modes.=潜行时使用可更改采矿钻机Mk@1模式 +Vacuum Cleaner=真空清洁器 +Water Can=水罐 +Wind @1 Generator=风力@1发电机 +Wind Mill Frame=风力机框架 +Wrought Iron=锻铁 +You are not allowed to edit this!=你不允许编辑这个! +Zinc=锌 diff --git a/mods/technic_plus_beta/technic/locale/template.txt b/mods/technic_plus_beta/technic/locale/template.txt new file mode 100644 index 00000000..505b3e7c --- /dev/null +++ b/mods/technic_plus_beta/technic/locale/template.txt @@ -0,0 +1,208 @@ + +# textdomain: technic + +3 nodes deep.= +3 nodes tall.= +3 nodes wide.= +3x3 nodes.= +@1 (@2 @3 -> @4 @5)= +@1 (@2% Efficiency)= +@1 (@2% Fuel Used)= +@1 (@2)= +@1 Active (@2)= +@1 Active= +@1 Alloy Furnace= +@1 Battery Box: @2 / @3= +@1 Battery Box= +@1 Cable Plate= +@1 Cable= +@1 Centrifuge= +@1 Compressor= +@1 Digiline Cable Plate= +@1 Digiline Cable= +@1 Disabled= +@1 Dust= +@1 Enabled= +@1 Extractor= +@1 Finished= +@1 Forcefield Emitter= +@1 Forcefield= +@1 Freezer= +@1 Furnace= +@1 Grinder= +@1 Grinding= +@1 Has Bad Cabling= +@1 Has No Network= +@1 Idle= +@1 Improperly Placed= +@1 LED= +@1 Lamp= +@1 Music Player= +@1 Network Overloaded, Restart in @2ms= +@1 Nuclear Reactor Core= +@1 Off= +@1 Out Of Fuel= +@1 Purging Cache= +@1 Quarry= +@1 Restarting Network= +@1 Tool Workshop= +@1 Unpowered= +@1 is absent in @2 region= +@1 is empty= +@1 is present in @2 region= +@1%-Fissile Uranium Block= +@1%-Fissile Uranium Dust= +@1%-Fissile Uranium Ingot= +@1. Supply: @2 Demand: @3= +Acacia= +Accuracy:= +Administrative World Anchor= +Akalin= +Alatro= +Alloying= +Arol= +Arrayed Solar @1 Generator= +Automatic Start= +Blue Energy Crystal= +Brass= +Bronze= +Building Network: @1 Nodes= +Carbon Cloth= +Carbon Plate= +Carbon Steel= +Cast Iron= +Chainsaw= +Charge= +Chernobylite Block= +Chernobylite= +Chromium= +Coal= +Common Tree= +Composite Plate= +Compressing= +Constructor Mk@1= +Control Logic Unit= +Controlled by Mesecon Signal= +Copper Coil= +Copper Plate= +Copper= +Corium Bucket= +Corium Source= +Cube= +Current target:= +Current track: @1= +Demand: @1= +Diamond Drill Head= +Digging @1 m below machine= +Digging finished= +Digging not started= +Digiline Channel= +Disabled= +Discharge= +Doped Silicon Wafer= +Dummy light source node= +Enable Mesecons Control= +Enabled= +Error= +Extracting= +Flashlight= +Flowing Corium= +Freezing= +Fuel-Fired @1 Generator= +Fuel-Fired Alloy Furnace= +Fuel-Fired Furnace= +Geothermal @1 Generator= +Gold= +Graphite= +Green Energy Crystal= +Grinding= +HV= +High Voltage Transformer= +Hydro @1 Generator= +Ignoring Mesecon Signal= +Input Power= +Inventory move disallowed due to protection= +Itemwise= +Kalite= +Keeping @1/@2 map blocks loaded= +LV= +Lava Can= +Lead= +Locked= +Low Voltage Transformer= +MV= +Machine Casing= +Machine cannot be removed because it is not empty= +Max Depth= +May set new target:= +Medium Voltage Transformer= +Mining Drill Mk@1 Mode @2= +Mining Drill Mk@1= +Mining Laser Mk@1= +Mithril= +Mixed Metal Ingot= +Multimeter= +Network Overloaded= +No new target available= +No target set= +Nuclear Reactor Rod Compartment= +Offset X= +Offset Z= +Owner: @1= +Polyfuse triggered, current efficiency: @1%, generated lag: @2 ms= +Power Monitor Has No Network= +Power Monitor. Supply: @1 Demand: @2= +Power Monitor= +Power level= +Prospector= +Purging cache= +RE Battery= +Radius= +Range= +Raw Latex= +Red Energy Crystal= +Region cross section:= +Region depth:= +Restart= +Right-click to set target block type= +River Water Can= +Rubber Fiber= +Rubber Tree= +Save= +Sawdust= +Self-Contained Injector= +Separating= +Set region cross section:= +Set region depth:= +Set target= +Silicon Wafer= +Silver= +Single node.= +Slot @1= +Small Solar @1 Generator= +Sonic Screwdriver (left-click rotates face, right-click rotates axis)= +Sphere= +Stackwise= +Stainless Steel= +Start successful= +Start= +Stone= +Stop= +Stopped= +Sulfur= +Supply Converter= +Switching Station= +Talinite= +Tin= +Tree Tap= +Unlocked= +Upgrade Slots= +Uranium Fuel= +Use while sneaking to change Mining Drill Mk@1 modes.= +Vacuum Cleaner= +Water Can= +Wind @1 Generator= +Wind Mill Frame= +Wrought Iron= +You are not allowed to edit this!= +Zinc= diff --git a/mods/technic_plus_beta/technic/machines/HV/battery_box.lua b/mods/technic_plus_beta/technic/machines/HV/battery_box.lua new file mode 100644 index 00000000..2f3ddad0 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/HV/battery_box.lua @@ -0,0 +1,21 @@ +-- HV battery box + +minetest.register_craft({ + output = 'technic:hv_battery_box0', + recipe = { + {'technic:mv_battery_box0', 'technic:mv_battery_box0', 'technic:mv_battery_box0'}, + {'technic:mv_battery_box0', 'technic:hv_transformer', 'technic:mv_battery_box0'}, + {'', 'technic:hv_cable', ''}, + } +}) + +technic.register_battery_box("technic:hv_battery_box", { + tier = "HV", + max_charge = 1000000, + charge_rate = 100000, + discharge_rate = 400000, + charge_step = 10000, + discharge_step = 40000, + upgrade = 1, + tube = 1, +}) diff --git a/mods/technic_plus_beta/technic/machines/HV/cables.lua b/mods/technic_plus_beta/technic/machines/HV/cables.lua new file mode 100644 index 00000000..c6be07ed --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/HV/cables.lua @@ -0,0 +1,54 @@ +local S = technic.getter + +minetest.register_craft({ + output = 'technic:hv_cable 3', + recipe = { + {'homedecor:plastic_sheeting', 'homedecor:plastic_sheeting', 'homedecor:plastic_sheeting'}, + {'technic:mv_cable', 'technic:mv_cable', 'technic:mv_cable'}, + {'homedecor:plastic_sheeting', 'homedecor:plastic_sheeting', 'homedecor:plastic_sheeting'}, + } +}) + +minetest.register_craft({ + output = "technic:hv_cable_plate_1 5", + recipe = { + {"" , "" , "technic:hv_cable"}, + {"technic:hv_cable", "technic:hv_cable", "technic:hv_cable"}, + {"" , "" , "technic:hv_cable"}, + } +}) + +minetest.register_craft({ + output = "technic:hv_cable", + recipe = {{"technic:hv_cable_plate_1"}} +}) + +-- Register cables + +technic.register_cable("technic:hv_cable", { + tier = "HV", + size = 3/16, + description = S("@1 Cable", S("HV")) +}) +technic.register_cable_plate("technic:hv_cable_plate", { + tier = "HV", + size = 3/16, + description = S("@1 Cable Plate", S("HV")), + tiles = {"technic_hv_cable.png"}, +}) + +if minetest.get_modpath("digilines") then + technic.register_cable("technic:hv_digi_cable", { + tier = "HV", + size = 3/16, + description = S("@1 Digiline Cable", S("HV")), + digiline = { wire = { rules = technic.digilines.rules_allfaces } } + }) + technic.register_cable_plate("technic:hv_digi_cable_plate", { + tier = "HV", + size = 3/16, + description = S("@1 Digiline Cable Plate", S("HV")), + digiline = { wire = { rules = technic.digilines.rules_allfaces } }, + tiles = {"technic_hv_digi_cable.png"} + }) +end diff --git a/mods/technic_plus_beta/technic/machines/HV/compressor.lua b/mods/technic_plus_beta/technic/machines/HV/compressor.lua new file mode 100644 index 00000000..a4c0b074 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/HV/compressor.lua @@ -0,0 +1,21 @@ +-- HV compressor +local S = technic.getter + +minetest.register_craft({ + output = 'technic:hv_compressor', + recipe = { + {'technic:carbon_plate', 'technic:mv_compressor', 'technic:composite_plate'}, + {'pipeworks:tube_1', 'technic:hv_transformer', 'pipeworks:tube_1'}, + {'technic:stainless_steel_ingot', 'technic:hv_cable', 'technic:stainless_steel_ingot'}, + } +}) + +technic.register_base_machine("technic:hv_compressor", { + typename = "compressing", + description = S("@1 Compressor", S("HV")), + tier = "HV", + demand = {1500, 1000, 750}, + speed = 5, + upgrade = 1, + tube = 1 +}) diff --git a/mods/technic_plus_beta/technic/machines/HV/electric_furnace.lua b/mods/technic_plus_beta/technic/machines/HV/electric_furnace.lua new file mode 100644 index 00000000..443d815b --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/HV/electric_furnace.lua @@ -0,0 +1,26 @@ +-- MV Electric Furnace +-- This is a faster version of the stone furnace which runs on EUs +-- In addition to this it can be upgraded with microcontrollers and batteries +-- This new version uses the batteries to lower the power consumption of the machine +-- Also in addition this furnace can be attached to the pipe system from the pipeworks mod. +local S = technic.getter + +-- FIXME: kpoppel I'd like to introduce an induction heating element here also +minetest.register_craft({ + output = 'technic:hv_electric_furnace', + recipe = { + {'technic:stainless_steel_ingot', 'technic:mv_electric_furnace', 'technic:stainless_steel_ingot'}, + {'pipeworks:tube_1', 'technic:hv_transformer', 'pipeworks:tube_1'}, + {'technic:stainless_steel_ingot', 'technic:hv_cable', 'technic:stainless_steel_ingot'}, + } +}) + +technic.register_base_machine("technic:hv_electric_furnace", { + typename = "cooking", + description = S("@1 Furnace", S("HV")), + tier="HV", + upgrade=1, + tube=1, + demand={4000, 2500, 1500}, + speed=12 +}) diff --git a/mods/technic_plus_beta/technic/machines/HV/forcefield.lua b/mods/technic_plus_beta/technic/machines/HV/forcefield.lua new file mode 100644 index 00000000..e82db488 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/HV/forcefield.lua @@ -0,0 +1,400 @@ +--- Forcefield generator. +-- @author ShadowNinja +-- +-- Forcefields are powerful barriers but they consume huge amounts of power. +-- The forcefield Generator is an HV machine. + +-- How expensive is the generator? +-- Leaves room for upgrades lowering the power drain? +local digilines_path = minetest.get_modpath("digilines") + +local forcefield_power_drain = 10 + +local S = technic.getter + +local cable_entry = "^technic_cable_connection_overlay.png" + +local mat = technic.materials + +minetest.register_craft({ + output = "technic:forcefield_emitter_off", + recipe = { + {mat.mese, "basic_materials:motor", mat.mese }, + {"technic:deployer_off", "technic:machine_casing", "technic:deployer_off"}, + {mat.mese, "technic:hv_cable", mat.mese }, + } +}) + + +local replaceable_cids = {} + +minetest.after(0, function() + for name, ndef in pairs(minetest.registered_nodes) do + if ndef.buildable_to == true and name ~= "ignore" then + replaceable_cids[minetest.get_content_id(name)] = true + end + end +end) + + +-- Idea: Let forcefields have different colors by upgrade slot. +-- Idea: Let forcefields add up by detecting if one hits another. +-- ___ __ +-- / \/ \ +-- | | +-- \___/\___/ + +local function update_forcefield(pos, meta, active) + + if active then + -- rate limit by chance + if math.floor(math.random()*4) ~= 0 then + return + end + end + + local shape = meta:get_int("shape") + local range = meta:get_int("range") + local vm = VoxelManip() + local MinEdge, MaxEdge = vm:read_from_map(vector.subtract(pos, range), + vector.add(pos, range)) + local area = VoxelArea:new({MinEdge = MinEdge, MaxEdge = MaxEdge}) + local data = vm:get_data() + + local c_air = minetest.get_content_id("air") + local c_field = minetest.get_content_id("technic:forcefield") + + for z = -range, range do + for y = -range, range do + local vi = area:index(pos.x + (-range), pos.y + y, pos.z + z) + for x = -range, range do + local relevant + if shape == 0 then + local squared = x * x + y * y + z * z + relevant = + squared <= range * range + range and + squared >= (range - 1) * (range - 1) + (range - 1) + else + relevant = + x == -range or x == range or + y == -range or y == range or + z == -range or z == range + end + if relevant then + local cid = data[vi] + if active and replaceable_cids[cid] then + data[vi] = c_field + elseif not active and cid == c_field then + data[vi] = c_air + end + end + vi = vi + 1 + end + end + end + + vm:set_data(data) + vm:update_liquids() + vm:write_to_map() +end + +local function set_forcefield_formspec(meta) + local formspec + if digilines_path then + formspec = "size[5,3.25]".. + "field[0.3,3;5,1;channel;"..S("Digiline Channel")..";${channel}]" + else + formspec = "size[5,2.25]" + end + formspec = formspec.. + "field[0.3,0.5;2,1;range;"..S("Range")..";${range}]" + -- The names for these toggle buttons are explicit about which + -- state they'll switch to, so that multiple presses (arising + -- from the ambiguity between lag and a missed press) only make + -- the single change that the user expects. + if meta:get_int("shape") == 0 then + formspec = formspec.."button[3,0.2;2,1;shape1;"..S("Sphere").."]" + else + formspec = formspec.."button[3,0.2;2,1;shape0;"..S("Cube").."]" + end + if meta:get_int("mesecon_mode") == 0 then + formspec = formspec.."button[0,1;5,1;mesecon_mode_1;"..S("Ignoring Mesecon Signal").."]" + else + formspec = formspec.."button[0,1;5,1;mesecon_mode_0;"..S("Controlled by Mesecon Signal").."]" + end + if meta:get_int("enabled") == 0 then + formspec = formspec.. + "button[0,1.75;5,1;enable;"..S("@1 Disabled", S("@1 Forcefield Emitter", S("HV"))).."]" + else + formspec = formspec.. + "button[0,1.75;5,1;disable;"..S("@1 Enabled", S("@1 Forcefield Emitter", S("HV"))).."]" + end + meta:set_string("formspec", formspec) +end + +local forcefield_receive_fields = function(pos, formname, fields, sender) + local player_name = sender:get_player_name() + if minetest.is_protected(pos, player_name) then + minetest.chat_send_player(player_name, S("You are not allowed to edit this!")) + minetest.record_protection_violation(pos, player_name) + return + end + local meta = minetest.get_meta(pos) + local range = nil + if fields.range then + range = tonumber(fields.range) or 0 + -- Smallest field is 5. Anything less is asking for trouble. + -- Largest is 20. It is a matter of pratical node handling. + -- At the maximim range updating the forcefield takes about 0.2s + range = math.max(range, 5) + range = math.min(range, 20) + if range == meta:get_int("range") then range = nil end + end + if fields.shape0 or fields.shape1 or range then + update_forcefield(pos, meta, false) + end + if range then meta:set_int("range", range) end + if fields.channel then meta:set_string("channel", fields.channel) end + if fields.shape0 then meta:set_int("shape", 0) end + if fields.shape1 then meta:set_int("shape", 1) end + if fields.enable then meta:set_int("enabled", 1) end + if fields.disable then meta:set_int("enabled", 0) end + if fields.mesecon_mode_0 then meta:set_int("mesecon_mode", 0) end + if fields.mesecon_mode_1 then meta:set_int("mesecon_mode", 1) end + set_forcefield_formspec(meta) +end + +local mesecons = { + effector = { + action_on = function(pos, node) + minetest.get_meta(pos):set_int("mesecon_effect", 1) + end, + action_off = function(pos, node) + minetest.get_meta(pos):set_int("mesecon_effect", 0) + end + } +} + +local digiline_def = { + receptor = { + rules = technic.digilines.rules, + action = function() end + }, + effector = { + rules = technic.digilines.rules, + action = function(pos, node, channel, msg) + local meta = minetest.get_meta(pos) + if channel ~= meta:get_string("channel") then + return + end + local msgt = type(msg) + if msgt == "string" then + local smsg = msg:lower() + msg = {} + if smsg == "get" then + msg.command = "get" + elseif smsg == "off" then + msg.command = "off" + elseif smsg == "on" then + msg.command = "on" + elseif smsg == "toggle" then + msg.command = "toggle" + elseif smsg:sub(1, 5) == "range" then + msg.command = "range" + msg.value = tonumber(smsg:sub(7)) + elseif smsg:sub(1, 5) == "shape" then + msg.command = "shape" + msg.value = smsg:sub(7):lower() + msg.value = tonumber(msg.value) or msg.value + end + elseif msgt ~= "table" then + return + end + if msg.command == "get" then + digilines.receptor_send(pos, technic.digilines.rules, channel, { + enabled = meta:get_int("enabled"), + range = meta:get_int("range"), + shape = meta:get_int("shape") + }) + return + elseif msg.command == "off" then + meta:set_int("enabled", 0) + elseif msg.command == "on" then + meta:set_int("enabled", 1) + elseif msg.command == "toggle" then + local onn = meta:get_int("enabled") + onn = 1-onn -- Mirror onn with pivot 0.5, so switch between 1 and 0. + meta:set_int("enabled", onn) + elseif msg.command == "range" then + if type(msg.value) ~= "number" then + return + end + msg.value = math.max(msg.value, 5) + msg.value = math.min(msg.value, 20) + update_forcefield(pos, meta, false) + meta:set_int("range", msg.value) + elseif msg.command == "shape" then + local valuet = type(msg.value) + if valuet == "string" then + if msg.value == "sphere" then + msg.value = 0 + elseif msg.value == "cube" then + msg.value = 1 + end + elseif valuet ~= "number" then + return + end + if not msg.value then + return + end + update_forcefield(pos, meta, false) + meta:set_int("shape", msg.value) + else + return + end + set_forcefield_formspec(meta) + end + }, +} + +local function run(pos, node) + local meta = minetest.get_meta(pos) + local eu_input = meta:get_int("HV_EU_input") + local enabled = meta:get_int("enabled") ~= 0 and + (meta:get_int("mesecon_mode") == 0 or meta:get_int("mesecon_effect") ~= 0) + local machine_name = S("@1 Forcefield Emitter", S("HV")) + + local range = meta:get_int("range") + local power_requirement + if meta:get_int("shape") == 0 then + power_requirement = math.floor(4 * math.pi * range * range) + else + power_requirement = 24 * range * range + end + power_requirement = power_requirement * forcefield_power_drain + + if not enabled then + if node.name == "technic:forcefield_emitter_on" then + update_forcefield(pos, meta, false) + technic.swap_node(pos, "technic:forcefield_emitter_off") + meta:set_string("infotext", S("@1 Disabled", machine_name)) + end + meta:set_int("HV_EU_demand", 0) + return + end + meta:set_int("HV_EU_demand", power_requirement) + if eu_input < power_requirement then + meta:set_string("infotext", S("@1 Unpowered", machine_name)) + if node.name == "technic:forcefield_emitter_on" then + update_forcefield(pos, meta, false) + technic.swap_node(pos, "technic:forcefield_emitter_off") + end + elseif eu_input >= power_requirement then + if node.name == "technic:forcefield_emitter_off" then + technic.swap_node(pos, "technic:forcefield_emitter_on") + meta:set_string("infotext", S("@1 Active", machine_name) .. "\n" .. + S("Demand: @1", technic.EU_string(power_requirement))) + end + update_forcefield(pos, meta, true) + end +end + +minetest.register_node("technic:forcefield_emitter_off", { + description = S("@1 Forcefield Emitter", S("HV")), + tiles = { + "technic_forcefield_emitter_off.png", + "technic_machine_bottom.png"..cable_entry, + "technic_forcefield_emitter_off.png", + "technic_forcefield_emitter_off.png", + "technic_forcefield_emitter_off.png", + "technic_forcefield_emitter_off.png" + }, + groups = {cracky = 1, technic_machine = 1, technic_hv = 1, pickaxey = 3}, + is_ground_content = false, + _mcl_blast_resistance = 1, + _mcl_hardness = 0.8, + on_receive_fields = forcefield_receive_fields, + on_construct = function(pos) + local meta = minetest.get_meta(pos) + meta:set_int("HV_EU_input", 0) + meta:set_int("HV_EU_demand", 0) + meta:set_int("range", 10) + meta:set_int("enabled", 0) + meta:set_int("mesecon_mode", 0) + meta:set_int("mesecon_effect", 0) + if digilines_path then + meta:set_string("channel", "forcefield"..minetest.pos_to_string(pos)) + end + meta:set_string("infotext", S("@1 Forcefield Emitter", S("HV"))) + set_forcefield_formspec(meta) + end, + mesecons = mesecons, + digiline = digiline_def, + technic_run = run, +}) + +minetest.register_node("technic:forcefield_emitter_on", { + description = S("@1 Forcefield Emitter", S("HV")), + tiles = { + "technic_forcefield_emitter_on.png", + "technic_machine_bottom.png"..cable_entry, + "technic_forcefield_emitter_on.png", + "technic_forcefield_emitter_on.png", + "technic_forcefield_emitter_on.png", + "technic_forcefield_emitter_on.png" + }, + groups = {cracky = 1, technic_machine = 1, technic_hv = 1, + not_in_creative_inventory=1, pickaxey = 3}, + is_ground_content = false, + _mcl_blast_resistance = 1, + _mcl_hardness = 0.8, + drop = "technic:forcefield_emitter_off", + on_receive_fields = forcefield_receive_fields, + on_destruct = function(pos) + local meta = minetest.get_meta(pos) + update_forcefield(pos, meta, false) + end, + mesecons = mesecons, + digiline = digiline_def, + technic_run = run, + technic_on_disable = function (pos, node) + local meta = minetest.get_meta(pos) + update_forcefield(pos, meta, false) + technic.swap_node(pos, "technic:forcefield_emitter_off") + end, + on_blast = function(pos, intensity) + minetest.dig_node(pos) + return {"technic:forcefield_emitter_off"} + end, +}) + +minetest.register_node("technic:forcefield", { + description = S("@1 Forcefield", S("HV")), + sunlight_propagates = true, + drawtype = "glasslike", + groups = {not_in_creative_inventory=1}, + is_ground_content = false, + paramtype = "light", + light_source = minetest.LIGHT_MAX, + diggable = false, + drop = '', + tiles = {{ + name = "technic_forcefield_animated.png", + animation = { + type = "vertical_frames", + aspect_w = 16, + aspect_h = 16, + length = 1.0, + }, + }}, + on_blast = function(pos, intensity) + end, +}) + + +if minetest.get_modpath("mesecons_mvps") then + mesecon.register_mvps_stopper("technic:forcefield") +end + +technic.register_machine("HV", "technic:forcefield_emitter_on", technic.receiver) +technic.register_machine("HV", "technic:forcefield_emitter_off", technic.receiver) diff --git a/mods/technic_plus_beta/technic/machines/HV/generator.lua b/mods/technic_plus_beta/technic/machines/HV/generator.lua new file mode 100644 index 00000000..3fb494b4 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/HV/generator.lua @@ -0,0 +1,13 @@ +minetest.register_alias("hv_generator", "technic:hv_generator") + +minetest.register_craft({ + output = 'technic:hv_generator', + recipe = { + {'technic:carbon_plate', 'technic:mv_generator', 'technic:composite_plate'}, + {'pipeworks:tube_1', 'technic:hv_transformer', 'pipeworks:tube_1'}, + {'technic:stainless_steel_ingot', 'technic:hv_cable', 'technic:stainless_steel_ingot'}, + } +}) + +technic.register_generator({tier="HV", tube=1, supply=1200}) + diff --git a/mods/technic_plus_beta/technic/machines/HV/grinder.lua b/mods/technic_plus_beta/technic/machines/HV/grinder.lua new file mode 100644 index 00000000..97c7c2c3 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/HV/grinder.lua @@ -0,0 +1,21 @@ +-- HV grinder +local S = technic.getter + +minetest.register_craft({ + output = 'technic:hv_grinder', + recipe = { + {'technic:carbon_plate', 'technic:mv_grinder', 'technic:composite_plate'}, + {'pipeworks:tube_1', 'technic:hv_transformer', 'pipeworks:tube_1'}, + {'technic:stainless_steel_ingot', 'technic:hv_cable', 'technic:stainless_steel_ingot'}, + } +}) + +technic.register_base_machine("technic:hv_grinder", { + typename = "grinding", + description = S("@1 Grinder", S("HV")), + tier="HV", + demand={1200, 900, 600}, + speed=5, + upgrade=1, + tube=1 +}) diff --git a/mods/technic_plus_beta/technic/machines/HV/init.lua b/mods/technic_plus_beta/technic/machines/HV/init.lua new file mode 100644 index 00000000..f1426c6d --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/HV/init.lua @@ -0,0 +1,20 @@ + +technic.register_tier("HV", "High Voltage") + +local path = technic.modpath.."/machines/HV" + +-- Wiring stuff +dofile(path.."/cables.lua") +dofile(path.."/battery_box.lua") + +-- Generators +dofile(path.."/solar_array.lua") +dofile(path.."/nuclear_reactor.lua") +dofile(path.."/generator.lua") + +-- Machines +dofile(path.."/quarry.lua") +dofile(path.."/forcefield.lua") +dofile(path.."/electric_furnace.lua") +dofile(path.."/grinder.lua") +dofile(path.."/compressor.lua") diff --git a/mods/technic_plus_beta/technic/machines/HV/nuclear_reactor.lua b/mods/technic_plus_beta/technic/machines/HV/nuclear_reactor.lua new file mode 100644 index 00000000..d78abec9 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/HV/nuclear_reactor.lua @@ -0,0 +1,557 @@ +--[[ + The enriched uranium rod driven EU generator. +A very large and advanced machine providing vast amounts of power. +Very efficient but also expensive to run as it needs uranium. +Provides 100000 HV EUs for one week (only counted when loaded). + +The nuclear reactor core requires a casing of water and a protective +shield to work. This is checked now and then and if the casing is not +intact the reactor will melt down! +--]] + +local burn_ticks = 7 * 24 * 60 * 60 -- Seconds +local power_supply = 100000 -- EUs +local fuel_type = "technic:uranium_fuel" -- The reactor burns this +local digiline_meltdown = technic.config:get_bool("enable_nuclear_reactor_digiline_selfdestruct") +local has_digilines = minetest.get_modpath("digilines") +local has_mcl = minetest.get_modpath("mcl_core") +local mat = technic.materials + +local S = technic.getter + +local reactor_desc = S("@1 Nuclear Reactor Core", S("HV")) +local cable_entry = "^technic_cable_connection_overlay.png" + +-- FIXME: Recipe should make more sense like a rod recepticle, steam chamber, HV generator? +minetest.register_craft({ + output = 'technic:hv_nuclear_reactor_core', + recipe = { + {'technic:carbon_plate', mat.obsidian_glass, 'technic:carbon_plate'}, + {'technic:composite_plate', 'technic:machine_casing', 'technic:composite_plate'}, + {'technic:stainless_steel_ingot', 'technic:hv_cable', 'technic:stainless_steel_ingot'}, + } +}) + +local size = minetest.get_modpath("mcl_formspec") and "size[9,9]" or "size[8,9]" +local function make_reactor_formspec(meta) + local f = size.. + "label[0,0;"..S("Nuclear Reactor Rod Compartment").."]".. + "list[context;src;2,1;3,2;]".. + "listring[context;src]".. + "button[5.5,1.5;2,1;start;"..S("Start").."]".. + "checkbox[5.5,2.5;autostart;"..S("Automatic Start")..";"..meta:get_string("autostart").."]" + if has_mcl then + f = f.. + mcl_formspec.get_itemslot_bg(2,1,3,2).. + -- player inventory + "list[current_player;main;0,4.5;9,3;9]".. + mcl_formspec.get_itemslot_bg(0,4.5,9,3).. + "list[current_player;main;0,7.74;9,1;]".. + mcl_formspec.get_itemslot_bg(0,7.74,9,1).. + "listring[current_player;main]" + else + f = f.. + "list[current_player;main;0,5;8,4;]".. + "listring[current_player;main]" + end + if not has_digilines then + return f + end + local digiline_enabled = meta:get_string("enable_digiline") + f = f.."checkbox[0.5,2.8;enable_digiline;Enable Digiline;"..digiline_enabled.."]" + if digiline_enabled ~= "true" then + return f + end + return f.. + "button_exit[4.6,3.69;2,1;save;"..S("Save").."]".. + "field[1,4;4,1;channel;"..S("Digiline Channel")..";${channel}]" +end + +local SS_OFF = 0 +local SS_DANGER = 1 +local SS_CLEAR = 2 + +local reactor_siren = {} +local function siren_set_state(pos, state) + local hpos = minetest.hash_node_position(pos) + local siren = reactor_siren[hpos] + if not siren then + if state == SS_OFF then return end + siren = {state=SS_OFF} + reactor_siren[hpos] = siren + end + if state == SS_DANGER and siren.state ~= SS_DANGER then + if siren.handle then minetest.sound_stop(siren.handle) end + siren.handle = minetest.sound_play("technic_hv_nuclear_reactor_siren_danger_loop", + {pos=pos, gain=1.5, loop=true, max_hear_distance=48}) + siren.state = SS_DANGER + elseif state == SS_CLEAR then + if siren.handle then minetest.sound_stop(siren.handle) end + local clear_handle = minetest.sound_play("technic_hv_nuclear_reactor_siren_clear", + {pos=pos, gain=1.5, loop=false, max_hear_distance=48}) + siren.handle = clear_handle + siren.state = SS_CLEAR + minetest.after(10, function() + if siren.handle ~= clear_handle then return end + minetest.sound_stop(clear_handle) + if reactor_siren[hpos] == siren then + reactor_siren[hpos] = nil + end + end) + elseif state == SS_OFF and siren.state ~= SS_OFF then + if siren.handle then minetest.sound_stop(siren.handle) end + reactor_siren[hpos] = nil + end +end + +local function siren_danger(pos, meta) + meta:set_int("siren", 1) + siren_set_state(pos, SS_DANGER) +end + +local function siren_clear(pos, meta) + if meta:get_int("siren") ~= 0 then + siren_set_state(pos, SS_CLEAR) + meta:set_int("siren", 0) + end +end + +--[[ +The standard reactor structure consists of a 9x9x9 cube. A cross +section through the middle: + + CCCC CCCC + CBBB BBBC + CBLL LLBC + CBLWWWLBC + CBLW#WLBC + CBLW|WLBC + CBLL|LLBC + CBBB|BBBC + CCCC|CCCC + C = Concrete, B = Blast-resistant concrete, L = Lead, + W = water node, # = reactor core, | = HV cable + +The man-hole is optional (but necessary for refueling). + +For the reactor to operate and not melt down, it insists on the inner +7x7x7 portion (from the core out to the blast-resistant concrete) +being intact. Intactness only depends on the number of nodes of the +right type in each layer. The water layer must have water in all but +at most one node; the steel and blast-resistant concrete layers must +have the right material in all but at most two nodes. The permitted +gaps are meant for the cable and man-hole, but can actually be anywhere +and contain anything. For the reactor to be useful, a cable must +connect to the core, but it can go in any direction. + +The outer concrete layer of the standard structure is not required +for the reactor to operate. It is noted here because it used to +be mandatory, and for historical reasons (that it predates the +implementation of radiation) it needs to continue being adequate +shielding of legacy reactors. If it ever ceases to be adequate +shielding for new reactors, legacy ones should be grandfathered. + +For legacy reasons, if the reactor has a stainless steel layer instead +of a lead layer it will be converted to a lead layer. +--]] +local function reactor_structure_badness(pos) + local vm = VoxelManip() + local pos1 = vector.subtract(pos, 3) + local pos2 = vector.add(pos, 3) + local MinEdge, MaxEdge = vm:read_from_map(pos1, pos2) + local data = vm:get_data() + local area = VoxelArea:new({MinEdge=MinEdge, MaxEdge=MaxEdge}) + + local c_blast_concrete = minetest.get_content_id("technic:blast_resistant_concrete") + local c_lead = minetest.get_content_id("technic:lead_block") + local c_steel = minetest.get_content_id("technic:stainless_steel_block") + local c_water_source = minetest.get_content_id(mat.water_source) + local c_water_flowing = minetest.get_content_id(mat.water_flowing) + + local blast_layer, steel_layer, lead_layer, water_layer = 0, 0, 0, 0 + + for z = pos1.z, pos2.z do + for y = pos1.y, pos2.y do + for x = pos1.x, pos2.x do + local cid = data[area:index(x, y, z)] + if x == pos1.x or x == pos2.x or + y == pos1.y or y == pos2.y or + z == pos1.z or z == pos2.z then + if cid == c_blast_concrete then + blast_layer = blast_layer + 1 + end + elseif x == pos1.x+1 or x == pos2.x-1 or + y == pos1.y+1 or y == pos2.y-1 or + z == pos1.z+1 or z == pos2.z-1 then + if cid == c_lead then + lead_layer = lead_layer + 1 + elseif cid == c_steel then + steel_layer = steel_layer + 1 + end + elseif x == pos1.x+2 or x == pos2.x-2 or + y == pos1.y+2 or y == pos2.y-2 or + z == pos1.z+2 or z == pos2.z-2 then + if cid == c_water_source or cid == c_water_flowing then + water_layer = water_layer + 1 + end + end + end + end + end + + if steel_layer >= 96 then + for z = pos1.z+1, pos2.z-1 do + for y = pos1.y+1, pos2.y-1 do + for x = pos1.x+1, pos2.x-1 do + local vi = area:index(x, y, z) + if x == pos1.x+1 or x == pos2.x-1 or + y == pos1.y+1 or y == pos2.y-1 or + z == pos1.z+1 or z == pos2.z-1 then + if data[vi] == c_steel then + data[vi] = c_lead + end + end + end + end + end + vm:set_data(data) + vm:write_to_map() + lead_layer = steel_layer + end + + if water_layer > 25 then water_layer = 25 end + if lead_layer > 96 then lead_layer = 96 end + if blast_layer > 216 then blast_layer = 216 end + return (25 - water_layer) + (96 - lead_layer) + (216 - blast_layer) +end + +local mcl_expl_info = { + drop_chance = 1.0, + max_blast_resistance = 10, + sound = true, + particles = true, + fire = true, + griefing = true, + grief_protected = true, +} + +local function melt_down_reactor(pos) + minetest.log("action", "A reactor melted down at "..minetest.pos_to_string(pos)) + if minetest.get_modpath("mcl_explosions") then + mcl_explosions.explode(pos, 30, mcl_expl_info) + end + minetest.set_node(pos, {name = "technic:corium_source"}) +end + + +local function start_reactor(pos, meta) + if minetest.get_node(pos).name ~= "technic:hv_nuclear_reactor_core" then + return false + end + local inv = meta:get_inventory() + if inv:is_empty("src") then + return false + end + local src_list = inv:get_list("src") + local correct_fuel_count = 0 + for _, src_stack in pairs(src_list) do + if src_stack and src_stack:get_name() == fuel_type then + correct_fuel_count = correct_fuel_count + 1 + end + end + -- Check that the reactor is complete and has the correct fuel + if correct_fuel_count ~= 6 or reactor_structure_badness(pos) ~= 0 then + return false + end + meta:set_int("burn_time", 1) + technic.swap_node(pos, "technic:hv_nuclear_reactor_core_active") + meta:set_int("HV_EU_supply", power_supply) + for idx, src_stack in pairs(src_list) do + src_stack:take_item() + inv:set_stack("src", idx, src_stack) + end + return true +end + + +minetest.register_abm({ + label = "Machines: reactor melt-down check", + nodenames = {"technic:hv_nuclear_reactor_core_active"}, + interval = 4, + chance = 1, + action = function (pos, node) + local meta = minetest.get_meta(pos) + local badness = reactor_structure_badness(pos) + local accum_badness = meta:get_int("structure_accumulated_badness") + if badness == 0 then + if accum_badness ~= 0 then + meta:set_int("structure_accumulated_badness", math.max(accum_badness - 4, 0)) + siren_clear(pos, meta) + end + else + siren_danger(pos, meta) + accum_badness = accum_badness + badness + if accum_badness >= 25 then + melt_down_reactor(pos) + else + meta:set_int("structure_accumulated_badness", accum_badness) + end + end + end, +}) + +local function run(pos, node) + local meta = minetest.get_meta(pos) + local burn_time = meta:get_int("burn_time") or 0 + if burn_time >= burn_ticks or burn_time == 0 then + if has_digilines and meta:get_int("HV_EU_supply") == power_supply then + digilines.receptor_send(pos, technic.digilines.rules_allfaces, + -- TODO: Remove "remote_channel" and use de facto standard "channel" + meta:get("channel") or meta:get_string("remote_channel"), + { + command = "fuel_used", + pos = pos + } + ) + end + if meta:get_string("autostart") == "true" then + if start_reactor(pos, meta) then + return + end + end + meta:set_int("HV_EU_supply", 0) + meta:set_int("burn_time", 0) + meta:set_string("infotext", S("@1 Idle", reactor_desc)) + technic.swap_node(pos, "technic:hv_nuclear_reactor_core") + meta:set_int("structure_accumulated_badness", 0) + siren_clear(pos, meta) + elseif burn_time > 0 then + burn_time = burn_time + 1 + meta:set_int("burn_time", burn_time) + local percent = math.floor(burn_time / burn_ticks * 100) + meta:set_string("infotext", S("@1 (@2% Fuel Used)", reactor_desc, percent)) + meta:set_int("HV_EU_supply", power_supply) + end +end + +local nuclear_reactor_receive_fields = function(pos, formname, fields, sender) + local player_name = sender:get_player_name() + if minetest.is_protected(pos, player_name) then + minetest.chat_send_player(player_name, S("You are not allowed to edit this!")) + minetest.record_protection_violation(pos, player_name) + return + end + local meta = minetest.get_meta(pos) + local update_formspec = false + if fields.channel or fields.remote_channel then + -- TODO: Remove "remote_channel" and use de facto standard "channel" + meta:set_string("remote_channel", fields.channel or fields.remote_channel) + meta:set_string("channel", fields.channel or fields.remote_channel) + end + if fields.start then + local b = start_reactor(pos, meta) + if b then + minetest.chat_send_player(player_name, S("Start successful")) + else + minetest.chat_send_player(player_name, S("Error")) + end + end + if fields.autostart then + meta:set_string("autostart", fields.autostart) + update_formspec = true + end + if fields.enable_digiline then + meta:set_string("enable_digiline", fields.enable_digiline) + update_formspec = true + end + if update_formspec then + meta:set_string("formspec", make_reactor_formspec(meta)) + end +end + +local digiline_def = function(pos, _, channel, msg) + local meta = minetest.get_meta(pos) + if meta:get_string("enable_digiline") ~= "true" or + -- TODO: Remove "remote_channel" and use de facto standard "channel" + channel ~= (meta:get("channel") or meta:get_string("remote_channel")) then + return + end + -- Convert string messages to tables: + local msgt = type(msg) + if msgt == "string" then + local smsg = msg:lower() + msg = {} + if smsg == "get" then + msg.command = "get" + elseif smsg:sub(1, 13) == "self_destruct" then + msg.command = "self_destruct" + msg.timer = tonumber(smsg:sub(15)) or 0 + elseif smsg == "start" then + msg.command = "start" + end + elseif msgt ~= "table" then + return + end + + if msg.command == "get" then + local inv = meta:get_inventory() + local invtable = {} + for i = 1, 6 do + local stack = inv:get_stack("src", i) + if stack:is_empty() then + invtable[i] = 0 + elseif stack:get_name() == fuel_type then + invtable[i] = stack:get_count() + else + invtable[i] = -stack:get_count() + end + end + digilines.receptor_send(pos, technic.digilines.rules_allfaces, channel, { + burn_time = meta:get_int("burn_time"), + enabled = meta:get_int("HV_EU_supply") == power_supply, + siren = meta:get_int("siren") == 1, + structure_accumulated_badness = meta:get_int("structure_accumulated_badness"), + rods = invtable + }) + elseif digiline_meltdown and msg.command == "self_destruct" and + minetest.get_node(pos).name == "technic:hv_nuclear_reactor_core_active" then + if msg.timer ~= 0 and type(msg.timer) == "number" then + siren_danger(pos, meta) + minetest.after(msg.timer, melt_down_reactor, pos) + else + melt_down_reactor(pos) + end + elseif msg.command == "start" then + local b = start_reactor(pos, meta) + if b then + digilines.receptor_send(pos, technic.digilines.rules_allfaces, channel, { + command = "start_success", + pos = pos + }) + else + digilines.receptor_send(pos, technic.digilines.rules_allfaces, channel, { + command = "start_error", + pos = pos + }) + end + end +end + +minetest.register_node("technic:hv_nuclear_reactor_core", { + description = reactor_desc, + tiles = { + "technic_hv_nuclear_reactor_core.png", + "technic_hv_nuclear_reactor_core.png"..cable_entry + }, + drawtype = "mesh", + mesh = "technic_reactor.obj", + groups = {cracky = 1, technic_machine = 1, technic_hv = 1, pickaxey = 3}, + is_ground_content = false, + _mcl_blast_resistance = 1, + _mcl_hardness = 0.8, + legacy_facedir_simple = true, + sounds = technic.sounds.node_sound_wood_defaults(), + paramtype = "light", + paramtype2 = "facedir", + stack_max = 1, + on_receive_fields = nuclear_reactor_receive_fields, + on_construct = function(pos) + local meta = minetest.get_meta(pos) + meta:set_string("infotext", reactor_desc) + meta:set_string("formspec", make_reactor_formspec(meta)) + local inv = meta:get_inventory() + inv:set_size("src", 6) + end, + + -- digiline interface + digiline = { + receptor = { + rules = technic.digilines.rules_allfaces, + action = function() end, + }, + effector = { + rules = technic.digilines.rules_allfaces, + action = digiline_def, + }, + }, + + can_dig = technic.machine_can_dig, + on_destruct = function(pos) siren_set_state(pos, SS_OFF) end, + allow_metadata_inventory_put = technic.machine_inventory_put, + allow_metadata_inventory_take = technic.machine_inventory_take, + allow_metadata_inventory_move = technic.machine_inventory_move, + on_metadata_inventory_move = technic.machine_on_inventory_move, + on_metadata_inventory_put = technic.machine_on_inventory_put, + on_metadata_inventory_take = technic.machine_on_inventory_take, + technic_run = run, +}) + +minetest.register_node("technic:hv_nuclear_reactor_core_active", { + tiles = { + "technic_hv_nuclear_reactor_core.png", + "technic_hv_nuclear_reactor_core.png"..cable_entry + }, + drawtype = "mesh", + mesh = "technic_reactor.obj", + groups = {cracky = 1, technic_machine = 1, technic_hv = 1, radioactive = 4, + not_in_creative_inventory = 1, pickaxey = 3}, + is_ground_content = false, + _mcl_blast_resistance = 1, + _mcl_hardness = 0.8, + legacy_facedir_simple = true, + sounds = technic.sounds.node_sound_wood_defaults(), + drop = "technic:hv_nuclear_reactor_core", + light_source = 14, + paramtype = "light", + paramtype2 = "facedir", + on_receive_fields = nuclear_reactor_receive_fields, + + -- digiline interface + digiline = { + receptor = { + rules = technic.digilines.rules_allfaces, + action = function() end, + }, + effector = { + rules = technic.digilines.rules_allfaces, + action = digiline_def, + }, + }, + + can_dig = technic.machine_can_dig, + after_dig_node = melt_down_reactor, + on_destruct = function(pos) siren_set_state(pos, SS_OFF) end, + allow_metadata_inventory_put = technic.machine_inventory_put, + allow_metadata_inventory_take = technic.machine_inventory_take, + allow_metadata_inventory_move = technic.machine_inventory_move, + on_metadata_inventory_move = technic.machine_on_inventory_move, + on_metadata_inventory_put = technic.machine_on_inventory_put, + on_metadata_inventory_take = technic.machine_on_inventory_take, + technic_run = run, + technic_on_disable = function(pos, node) + local timer = minetest.get_node_timer(pos) + timer:start(1) + end, + on_timer = function(pos, node) + -- Connected back? + if technic.get_timeout("HV", pos) > 0 then return false end + + local meta = minetest.get_meta(pos) + local burn_time = meta:get_int("burn_time") or 0 + + if burn_time >= burn_ticks or burn_time == 0 then + meta:set_int("HV_EU_supply", 0) + meta:set_int("burn_time", 0) + technic.swap_node(pos, "technic:hv_nuclear_reactor_core") + meta:set_int("structure_accumulated_badness", 0) + siren_clear(pos, meta) + return false + end + + meta:set_int("burn_time", burn_time + 1) + return true + end, +}) + +technic.register_machine("HV", "technic:hv_nuclear_reactor_core", technic.producer) +technic.register_machine("HV", "technic:hv_nuclear_reactor_core_active", technic.producer) diff --git a/mods/technic_plus_beta/technic/machines/HV/quarry.lua b/mods/technic_plus_beta/technic/machines/HV/quarry.lua new file mode 100644 index 00000000..f6bfb7ef --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/HV/quarry.lua @@ -0,0 +1,640 @@ + +local S = technic.getter + +local has_digilines = minetest.get_modpath("digilines") +local has_mesecons = minetest.get_modpath("mesecons") +local has_vizlib = minetest.get_modpath("vizlib") +local has_jumpdrive = minetest.get_modpath("jumpdrive") +local has_mcl = minetest.get_modpath("mcl_formspec") + +local quarry_max_depth = technic.config:get_int("quarry_max_depth") +local quarry_dig_particles = technic.config:get_bool("quarry_dig_particles") +local quarry_time_limit = technic.config:get_int("quarry_time_limit") +local quarry_demand = 10000 +local network_time_limit = 30000 + +local infotext +do + local name = S("@1 Quarry", S("HV")) + local demand = S("Demand: @1", technic.EU_string(quarry_demand)) + infotext = { + active = S("@1 Active", name).."\n"..demand, + disabled = S("@1 Disabled", name), + finished = S("@1 Finished", name), + purge = S("@1 Purging Cache", name), + unpowered = S("@1 Unpowered", name), + } +end + +-- Hard-coded outward-spiral dig pattern for up to 17x17 dig area +local dig_pattern = { + 0,1,2,2,3,3,0,0,0,1,1,1,2,2,2,2,3,3,3,3,0,0,0,0,0,1,1,1,1,1,2,2, + 2,2,2,2,3,3,3,3,3,3,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2, + 3,3,3,3,3,3,3,3,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2, + 2,2,2,2,3,3,3,3,3,3,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1, + 1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,0,0,0,0, + 0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2, + 2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +} + +-- Convert the dig pattern values to x/z offset vectors +do + local head = vector.new() + dig_pattern[0] = head + for i = 1, #dig_pattern do + head = vector.add(head, minetest.facedir_to_dir(dig_pattern[i])) + dig_pattern[i] = {x = head.x, z = head.z} + end +end + +-- Cache of pipeworks fake players +local fake_players = {} + +minetest.register_on_leaveplayer(function(player) + fake_players[player:get_player_name()] = nil +end) + +local function get_fake_player(name) + if not fake_players[name] then + fake_players[name] = pipeworks.create_fake_player({name = name}) + end + return fake_players[name] +end + +local function player_allowed(pos, name) + local owner = minetest.get_meta(pos):get_string("owner") + if owner == "" or owner == name then + return true + end + return not minetest.is_protected(pos, name) +end + +local function can_dig_node(pos, dig_pos, node_name, owner, digger) + if node_name == "air" or node_name == "vacuum:vacuum" then + return false + end + if vector.equals(pos, dig_pos) then + return false -- Don't dig self + end + local def = minetest.registered_nodes[node_name] + if not def or not def.diggable or (def.can_dig and not def.can_dig(dig_pos, digger)) then + return false + end + if def._mcl_hardness == -1 then + return false + end + return not minetest.is_protected(dig_pos, owner) +end + +local function do_purge(pos, meta) + local inv = meta:get_inventory() + for i, stack in ipairs(inv:get_list("cache")) do + if not stack:is_empty() then + technic.tube_inject_item(pos, pos, vector.new(0, 1, 0), stack:to_table()) + inv:set_stack("cache", i, "") + break + end + end + if inv:is_empty("cache") then + meta:set_int("purge_on", 0) + end +end + +local function spawn_dig_particles(pos, dig_pos, node) + local end_pos = vector.new(pos.x, pos.y - 0.5, pos.z) + local dist = vector.distance(dig_pos, end_pos) + local t = math.sqrt((2 * dist) / 20) + local acc = vector.multiply(vector.subtract(end_pos, dig_pos), (1 / dist) * 20) + minetest.add_particlespawner({ + amount = 50, + time = 0.5, + minpos = vector.subtract(dig_pos, 0.4), + maxpos = vector.add(dig_pos, 0.4), + minacc = acc, + maxacc = acc, + minsize = 0.5, + maxsize = 1.5, + minexptime = t, + maxexptime = t, + node = node, + }) +end + +local function do_digging(pos, meta, net_time) + local us_start = minetest.get_us_time() + local step = tonumber(meta:get("step") or "") + if not step then + -- Missing metadata or not yet updated by conversion LBM, abort digging + return + end + local radius = meta:get_int("size") + local diameter = radius * 2 + 1 + local num_steps = diameter * diameter + local dug = meta:get_int("dug") + local max_depth = meta:get_int("max_depth") + local offset = { + x = meta:get_int("offset_x"), + y = math.floor(step / num_steps) + 1 - meta:get_int("offset_y"), + z = meta:get_int("offset_z") + } + if dug == -1 then + -- Find ground before digging + if offset.y > max_depth then + meta:set_int("finished", 1) + return + end + local pos1 = { + x = pos.x + offset.x - radius, + y = pos.y - offset.y, + z = pos.z + offset.z - radius + } + local pos2 = { + x = pos.x + offset.x + radius, + y = pos.y - offset.y, + z = pos.z + offset.z + radius + } + minetest.load_area(pos1, pos2) + local nodes = minetest.find_nodes_in_area(pos1, pos2, {"air", "vacuum:vacuum"}) + if #nodes < num_steps then + -- There are nodes to dig, start digging at this layer + meta:set_int("dug", 0) + else + -- Move down to next layer + meta:set_int("step", step + num_steps) + end + return + end + local owner = meta:get_string("owner") + local digger = get_fake_player(owner) + while true do + -- Search for something to dig + if offset.y > max_depth then + -- Finished digging + meta:set_int("finished", 1) + meta:set_int("purge_on", 1) + break + end + local dig_offset = dig_pattern[step % num_steps] + local dig_pos = { + x = pos.x + offset.x + dig_offset.x, + y = pos.y - offset.y, + z = pos.z + offset.z + dig_offset.z, + } + step = step + 1 + if step % num_steps == 0 then + -- Finished this layer, move down + offset.y = offset.y + 1 + end + local node = technic.get_or_load_node(dig_pos) + if can_dig_node(pos, dig_pos, node.name, owner, digger) then + -- Found something to dig, dig it and stop + minetest.remove_node(dig_pos) + if quarry_dig_particles then + spawn_dig_particles(pos, dig_pos, node) + end + local inv = meta:get_inventory() + local drops = minetest.get_node_drops(node.name, "") + local full = false + for _, item in ipairs(drops) do + local left = inv:add_item("cache", item) + while not left:is_empty() do + -- Cache is full, forcibly purge until the item fits + full = true + do_purge(pos, meta) + left = inv:add_item("cache", left) + end + end + dug = dug + 1 + if full or dug % 99 == 0 then + -- Time to purge the cache + meta:set_int("purge_on", 1) + end + break + end + local us_used = minetest.get_us_time() - us_start + if us_used > quarry_time_limit or net_time + us_used > network_time_limit then + break + end + end + meta:set_int("dug", dug) + meta:set_int("step", step) +end + +local function quarry_run(pos, _, _, network) + local meta = minetest.get_meta(pos) + if meta:get_int("purge_on") == 1 then + -- Purging + meta:set_string("infotext", infotext.purge) + meta:set_int("HV_EU_demand", 0) + do_purge(pos, meta) + elseif meta:get_int("finished") == 1 then + -- Finished + meta:set_string("infotext", infotext.finished) + meta:set_int("HV_EU_demand", 0) + elseif meta:get_int("enabled") == 1 then + -- Active + if meta:get_int("HV_EU_input") >= quarry_demand then + meta:set_string("infotext", infotext.active) + do_digging(pos, meta, network.lag) + else + meta:set_string("infotext", infotext.unpowered) + end + meta:set_int("HV_EU_demand", quarry_demand) + else + -- Disabled + meta:set_int("HV_EU_demand", 0) + meta:set_string("infotext", infotext.disabled) + if not meta:get_inventory():is_empty("cache") then + meta:set_int("purge_on", 1) + end + end +end + +local function reset_quarry(meta) + meta:set_int("step", 0) + meta:set_int("dug", -1) + meta:set_int("purge_on", 1) + meta:set_int("finished", 0) +end + +local size = minetest.get_modpath("mcl_formspec") and "size[9,10]" or "size[8,9]" +local base_formspec = size.. + "label[0,0;"..S("@1 Quarry", S("HV")).."]".. + "list[context;cache;0,0.7;4,3;]".. + "listring[context;cache]".. + "button[6,0.6;2,1;restart;"..S("Restart").."]".. + "field[4.3,2.1;2,1;size;"..S("Radius")..";${size}]".. + "field[6.3,2.1;2,1;max_depth;"..S("Max Depth")..";${max_depth}]".. + "field[4.3,3.1;1.333,1;offset_x;"..S("Offset X")..";${offset_x}]".. + "field[5.633,3.1;1.333,1;offset_y;"..S("Offset Y")..";${offset_y}]".. + "field[6.966,3.1;1.333,1;offset_z;"..S("Offset Z")..";${offset_z}]" + +if has_digilines then + base_formspec = base_formspec.. + "field[4.3,4.2;4,1;channel;"..S("Digiline Channel")..";${channel}]" +end + +if has_mcl then + base_formspec = base_formspec.. + mcl_formspec.get_itemslot_bg(0,0.7,4,3).. + -- player inventory + "list[current_player;main;0,5.5;9,3;9]".. + mcl_formspec.get_itemslot_bg(0,5.5,9,3).. + "list[current_player;main;0,8.74;9,1;]".. + mcl_formspec.get_itemslot_bg(0,8.74,9,1).. + "listring[current_player;main]" +else + base_formspec = base_formspec.. + "list[current_player;main;0,5;8,4;]".. + "listring[current_player;main]" +end + +local function update_formspec(meta) + local fs = base_formspec + local status = S("Digging not started") + if meta:get_int("purge_on") == 1 then + status = S("Purging cache") + elseif meta:get_int("finished") == 1 then + status = S("Digging finished") + elseif meta:get_int("enabled") == 1 then + local diameter = meta:get_int("size") * 2 + 1 + local num_steps = diameter * diameter + local y_level = math.floor(meta:get_int("step") / num_steps) + 1 - meta:get_int("offset_y") + if y_level < 0 then + status = S("Digging @1 m above machine", math.abs(y_level)) + else + status = S("Digging @1 m below machine", y_level) + end + end + if meta:get_int("enabled") == 1 then + fs = fs.."button[4,0.6;2,1;disable;"..S("Enabled").."]" + else + fs = fs.."button[4,0.6;2,1;enable;"..S("Disabled").."]" + end + if has_mesecons then + local selected = meta:get("mesecons") or "true" + if has_jumpdrive then + fs = fs.."checkbox[0,3.6;mesecons;"..S("Enable Mesecons Control")..";"..selected.."]" + else + fs = fs.."checkbox[0,3.8;mesecons;"..S("Enable Mesecons Control")..";"..selected.."]" + end + end + if has_jumpdrive then + local selected = meta:get("reset_on_move") or "true" + if has_mesecons then + fs = fs.."checkbox[0,4.1;reset_on_move;"..S("Restart When Moved")..";"..selected.."]" + else + fs = fs.."checkbox[0,3.8;reset_on_move;"..S("Restart When Moved")..";"..selected.."]" + end + end + meta:set_string("formspec", fs.."label[4,0;"..status.."]") +end + +local function clamp(value, min, max, default) + value = tonumber(value) or default or max + return math.min(math.max(value, min), max) +end + +local function quarry_receive_fields(pos, _, fields, sender) + local player_name = sender:get_player_name() + if not player_allowed(pos, player_name) then + minetest.chat_send_player(player_name, S("You are not allowed to edit this!")) + return + end + local meta = minetest.get_meta(pos) + if fields.size then + meta:set_int("size", clamp(fields.size, 0, 8, 4)) + end + if fields.max_depth then + local depth = clamp(fields.max_depth, 1, quarry_max_depth) + meta:set_int("max_depth", depth) + local ymin = -math.min(10, depth - 1) + meta:set_int("offset_y", clamp(meta:get_int("offset_y"), ymin, 10, 0)) + end + if fields.offset_x then + meta:set_int("offset_x", clamp(fields.offset_x, -10, 10, 0)) + end + if fields.offset_y then + local ymin = -math.min(10, meta:get_int("max_depth") - 1) + meta:set_int("offset_y", clamp(fields.offset_y, ymin, 10, 0)) + end + if fields.offset_z then + meta:set_int("offset_z", clamp(fields.offset_z, -10, 10, 0)) + end + if fields.mesecons then + meta:set_string("mesecons", fields.mesecons) + end + if fields.reset_on_move then + meta:set_string("reset_on_move", fields.reset_on_move) + end + if fields.channel then + meta:set_string("channel", fields.channel) + end + if fields.enable then meta:set_int("enabled", 1) end + if fields.disable then meta:set_int("enabled", 0) end + if fields.restart then reset_quarry(meta) end + update_formspec(meta) +end + +local function show_working_area(pos, _, player) + if not player or player:get_wielded_item():get_name() ~= "" then + -- Only spawn particles when using an empty hand + return + end + local meta = minetest.get_meta(pos) + local radius = meta:get_int("size") + 0.5 + local offset = vector.new(meta:get_int("offset_x"), meta:get_int("offset_y"), meta:get_int("offset_z")) + local depth = meta:get_int("max_depth") + 0.5 + -- Draw area from top corner to bottom corner + local pos1 = vector.add(pos, vector.new(offset.x - radius, offset.y - 0.5, offset.z - radius)) + local pos2 = vector.add(pos, vector.new(offset.x + radius, -depth, offset.z + radius)) + vizlib.draw_area(pos1, pos2, {player = player}) +end + +local function digiline_action(pos, _, channel, msg) + local meta = minetest.get_meta(pos) + if channel ~= meta:get_string("channel") then + return + end + -- Convert string message to table + if type(msg) == "string" then + msg = msg:lower() + if msg == "get" or msg == "on" or msg == "off" or msg == "restart" then + msg = {command = msg} + elseif msg:sub(1, 7) == "radius " then + msg = {command = "radius", value = msg:sub(8,-1)} + elseif msg:sub(1,10) == "max_depth " then + msg = {command = "max_depth", value = msg:sub(11,-1)} + elseif msg:sub(1,9) == "offset_x " then + msg = {command = "offset_x", value = msg:sub(10,-1)} + elseif msg:sub(1,9) == "offset_y " then + msg = {command = "offset_y", value = msg:sub(10,-1)} + elseif msg:sub(1,9) == "offset_z " then + msg = {command = "offset_z", value = msg:sub(10,-1)} + elseif msg:sub(1,7) == "offset " then + local s = string.split(msg:sub(8,-1), ",") + msg = {command = "offset", value = {x = s[1], y = s[2], z = s[3]}} + end + end + if type(msg) ~= "table" then return end + -- Convert old message format to new format + if msg.command ~= "set" and msg.command ~= "get" then + local cmd = msg.command + if cmd == "restart" then + msg = {command = "set", restart = true} + elseif cmd == "on" or cmd == "off" then + msg = {command = "set", enabled = msg.command == "on"} + elseif cmd == "radius" or cmd == "max_depth" or cmd == "offset" + or cmd == "offset_x" or cmd == "offset_y" or cmd == "offset_z" then + msg = {command = "set", [cmd] = msg.value} + end + end + -- Process message + if msg.command == "get" then + local diameter = meta:get_int("size") * 2 + 1 + local num_steps = diameter * diameter + local offset = { + x = meta:get_int("offset_x"), + y = meta:get_int("offset_y"), + z = meta:get_int("offset_z") + } + digilines.receptor_send(pos, technic.digilines.rules, channel, { + enabled = meta:get_int("enabled") == 1, + finished = meta:get_int("finished") == 1, + radius = meta:get_int("size"), + max_depth = meta:get_int("max_depth"), + offset_x = offset.x, + offset_y = offset.y, + offset_z = offset.z, + offset = offset, + dug_nodes = meta:get_int("dug"), + dig_level = -(math.floor(meta:get_int("step") / num_steps) + 1 - offset.y), + }) + elseif msg.command == "set" then + if msg.enabled ~= nil then + meta:set_int("enabled", msg.enabled == true and 1 or 0) + end + if msg.restart == true then + reset_quarry(meta) + end + if msg.radius then + meta:set_int("size", clamp(msg.radius, 0, 8, 4)) + end + if msg.max_depth then + local depth = clamp(msg.max_depth, 1, quarry_max_depth) + meta:set_int("max_depth", depth) + local ymin = -math.min(10, depth - 1) + meta:set_int("offset_y", clamp(meta:get_int("offset_y"), ymin, 10, 0)) + end + if msg.offset_x then + meta:set_int("offset_x", clamp(msg.offset_x, -10, 10, 0)) + end + if msg.offset_y then + local ymin = -math.min(10, meta:get_int("max_depth") - 1) + meta:set_int("offset_y", clamp(msg.offset_y, ymin, 10, 0)) + end + if msg.offset_z then + meta:set_int("offset_z", clamp(msg.offset_z, -10, 10, 0)) + end + if msg.offset and type(msg.offset) == "table" then + local ymin = -math.min(10, meta:get_int("max_depth") - 1) + meta:set_int("offset_x", clamp(msg.offset.x, -10, 10, 0)) + meta:set_int("offset_y", clamp(msg.offset.y, ymin, 10, 0)) + meta:set_int("offset_z", clamp(msg.offset.z, -10, 10, 0)) + end + end +end + +minetest.register_node("technic:quarry", { + description = S("@1 Quarry", S("HV")), + tiles = { + "technic_carbon_steel_block.png^pipeworks_tube_connection_metallic.png", + "technic_carbon_steel_block.png^technic_quarry_bottom.png", + "technic_carbon_steel_block.png^technic_cable_connection_overlay.png", + "technic_carbon_steel_block.png^technic_cable_connection_overlay.png", + "technic_carbon_steel_block.png^technic_cable_connection_overlay.png", + "technic_carbon_steel_block.png^technic_cable_connection_overlay.png" + }, + groups = {cracky = 2, tubedevice = 1, technic_machine = 1, technic_hv = 1, pickaxey = 2}, + is_ground_content = false, + _mcl_blast_resistance = 1, + _mcl_hardness = 0.8, + connect_sides = {"front", "back", "left", "right"}, + tube = { + connect_sides = {top = 1}, + -- Lower priority than tubes, so items will prefer any tube to another quarry + priority = 10, + can_go = function(pos, node, velocity, stack) + -- Always eject up, even if items came in another way + return { vector.new(0, 1, 0) } + end + }, + on_punch = has_vizlib and show_working_area or nil, + on_rightclick = function(pos) + local meta = minetest.get_meta(pos) + update_formspec(meta) + end, + on_construct = function(pos) + local meta = minetest.get_meta(pos) + meta:set_int("size", 4) + meta:set_int("offset_x", 0) + meta:set_int("offset_y", 0) + meta:set_int("offset_z", 0) + meta:set_int("max_depth", quarry_max_depth) + meta:set_string("mesecons", "false") + meta:set_string("reset_on_move", "false") + meta:get_inventory():set_size("cache", 12) + reset_quarry(meta) + update_formspec(meta) + end, + on_movenode = has_jumpdrive and function(_, pos) + local meta = minetest.get_meta(pos) + if meta:get("reset_on_move") ~= "false" then + reset_quarry(meta) + end + end or nil, + after_place_node = function(pos, placer, itemstack) + minetest.get_meta(pos):set_string("owner", placer:get_player_name()) + pipeworks.scan_for_tube_objects(pos) + end, + can_dig = function(pos, player) + return minetest.get_meta(pos):get_inventory():is_empty("cache") + end, + after_dig_node = pipeworks.scan_for_tube_objects, + on_receive_fields = quarry_receive_fields, + technic_run = quarry_run, + allow_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player) + return player_allowed(pos, player:get_player_name()) and count or 0 + end, + allow_metadata_inventory_put = function(pos, listname, index, stack, player) + return player_allowed(pos, player:get_player_name()) and stack:get_count() or 0 + end, + allow_metadata_inventory_take = function(pos, listname, index, stack, player) + return player_allowed(pos, player:get_player_name()) and stack:get_count() or 0 + end, + on_metadata_inventory_move = technic.machine_on_inventory_move, + on_metadata_inventory_put = technic.machine_on_inventory_put, + on_metadata_inventory_take = technic.machine_on_inventory_take, + mesecons = { + effector = { + action_on = function(pos) + local meta = minetest.get_meta(pos) + if meta:get("mesecons") ~= "false" then + meta:set_int("enabled", 1) + end + end, + action_off = function(pos) + local meta = minetest.get_meta(pos) + if meta:get("mesecons") ~= "false" then + meta:set_int("enabled", 0) + end + end + } + }, + digiline = { + receptor = { + rules = technic.digilines.rules, + }, + effector = { + rules = technic.digilines.rules, + action = digiline_action, + } + }, +}) + +minetest.register_craft({ + output = "technic:quarry", + recipe = { + {"technic:carbon_plate", "pipeworks:filter", "technic:composite_plate"}, + {"basic_materials:motor", "technic:machine_casing", "technic:diamond_drill_head"}, + {"technic:carbon_steel_block", "technic:hv_cable", "technic:carbon_steel_block"} + } +}) + +technic.register_machine("HV", "technic:quarry", technic.receiver) + +minetest.register_lbm({ + label = "Old quarry conversion", + name = "technic:old_quarry_conversion", + nodenames = {"technic:quarry"}, + run_at_every_load = false, + action = function(pos, node) + local meta = minetest.get_meta(pos) + if meta:get("step") then + -- Quarry v3, don't do anything + -- This can happen when a quarry is moved with a jumpdrive + return + elseif meta:get("quarry_pos") then + -- Quarry v2, calculate step if quarry is digging below + local level = meta:get_int("dig_level") - pos.y + if level < 0 then + local diameter = meta:get_int("size") * 2 + 1 + local num_steps = diameter * diameter + -- Convert the negative value to positive, and go back up one level + level = math.abs(level + 1) + meta:set_int("step", level * num_steps) + end + -- Delete unused meta values + meta:set_string("quarry_dir", "") + meta:set_string("quarry_pos", "") + meta:set_string("dig_pos", "") + meta:set_string("dig_level", "") + meta:set_string("dig_index", "") + meta:set_string("dig_steps", "") + else + -- Quarry v1, reset quarry + reset_quarry(meta) + end + local dir = minetest.facedir_to_dir(node.param2) + local offset = vector.multiply(dir, meta:get_int("size") + 1) + meta:set_int("offset_x", offset.x) + meta:set_int("offset_y", 4) + meta:set_int("offset_z", offset.z) + if not meta:get("max_depth") then + meta:set_int("max_depth", quarry_max_depth) + end + update_formspec(meta) + end +}) diff --git a/mods/technic_plus_beta/technic/machines/HV/solar_array.lua b/mods/technic_plus_beta/technic/machines/HV/solar_array.lua new file mode 100644 index 00000000..1212f7d4 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/HV/solar_array.lua @@ -0,0 +1,18 @@ +-- The high voltage solar array is an assembly of medium voltage arrays. +-- Solar arrays are not able to store large amounts of energy. + +minetest.register_craft({ + output = 'technic:hv_solar_array 1', + recipe = { + {'technic:mv_solar_array', 'technic:mv_solar_array', 'technic:mv_solar_array'}, + {'technic:carbon_plate', 'technic:hv_transformer', 'technic:composite_plate'}, + {'', 'technic:hv_cable', ''}, + } +}) + +technic.register_solar_array("technic:hv_solar_array", { + tier="HV", + power=100 +}) + +minetest.register_alias("technic:solar_array_hv", "technic:hv_solar_array") diff --git a/mods/technic_plus_beta/technic/machines/LV/alloy_furnace.lua b/mods/technic_plus_beta/technic/machines/LV/alloy_furnace.lua new file mode 100644 index 00000000..a7e07ef7 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/LV/alloy_furnace.lua @@ -0,0 +1,23 @@ +-- LV Alloy furnace +local S = technic.getter +local mat = technic.materials + +-- FIXME: kpoppel: I'd like to introduce an induction heating element here... +minetest.register_craft({ + output = 'technic:lv_alloy_furnace', + recipe = { + {mat.brick, mat.brick, mat.brick}, + {mat.brick, 'technic:machine_casing', mat.brick}, + {mat.brick, 'technic:lv_cable', mat.brick}, + } +}) + +technic.register_base_machine("technic:lv_alloy_furnace", { + typename = "alloy", + description = S("@1 Alloy Furnace", S("LV")), + insert_object = technic.insert_object_unique_stack, + can_insert = technic.can_insert_unique_stack, + tier = "LV", + speed = 1, + demand = {300} +}) diff --git a/mods/technic_plus_beta/technic/machines/LV/battery_box.lua b/mods/technic_plus_beta/technic/machines/LV/battery_box.lua new file mode 100644 index 00000000..0cf86a90 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/LV/battery_box.lua @@ -0,0 +1,19 @@ +-- LV Battery box + +minetest.register_craft({ + output = 'technic:lv_battery_box0', + recipe = { + {'group:wood', 'group:wood', 'group:wood'}, + {'technic:battery', 'technic:machine_casing', 'technic:battery'}, + {'technic:battery', 'technic:lv_cable', 'technic:battery'}, + } +}) + +technic.register_battery_box("technic:lv_battery_box", { + tier = "LV", + max_charge = 40000, + charge_rate = 1000, + discharge_rate = 4000, + charge_step = 500, + discharge_step = 800, +}) diff --git a/mods/technic_plus_beta/technic/machines/LV/cables.lua b/mods/technic_plus_beta/technic/machines/LV/cables.lua new file mode 100644 index 00000000..f6c2e6e2 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/LV/cables.lua @@ -0,0 +1,57 @@ +local S = technic.getter +local mat = technic.materials + +minetest.register_alias("lv_cable", "technic:lv_cable") + +minetest.register_craft({ + output = 'technic:lv_cable 6', + recipe = { + {mat.paper, mat.paper, mat.paper}, + {mat.copper_ingot, mat.copper_ingot, mat.copper_ingot}, + {mat.paper, mat.paper, mat.paper}, + } +}) + +minetest.register_craft({ + output = "technic:lv_cable_plate_1 5", + recipe = { + {"" , "" , "technic:lv_cable"}, + {"technic:lv_cable", "technic:lv_cable", "technic:lv_cable"}, + {"" , "" , "technic:lv_cable"}, + } +}) + +minetest.register_craft({ + output = "technic:lv_cable", + recipe = {{"technic:lv_cable_plate_1"}} +}) + +-- Register cables + +technic.register_cable("technic:lv_cable", { + tier = "LV", + size = 2/16, + description = S("@1 Cable", S("LV")) +}) +technic.register_cable_plate("technic:lv_cable_plate", { + tier = "LV", + size = 2/16, + description = S("@1 Cable Plate", S("LV")), + tiles = {"technic_lv_cable.png"}, +}) + +if minetest.get_modpath("digilines") then + technic.register_cable("technic:lv_digi_cable", { + tier = "LV", + size = 2/16, + description = S("@1 Digiline Cable", S("LV")), + digiline = { wire = { rules = technic.digilines.rules_allfaces } } + }) + technic.register_cable_plate("technic:lv_digi_cable_plate", { + tier = "LV", + size = 2/16, + description = S("@1 Digiline Cable Plate", S("LV")), + digiline = { wire = { rules = technic.digilines.rules_allfaces } }, + tiles = {"technic_lv_digi_cable.png"} + }) +end diff --git a/mods/technic_plus_beta/technic/machines/LV/compressor.lua b/mods/technic_plus_beta/technic/machines/LV/compressor.lua new file mode 100644 index 00000000..9c040f1a --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/LV/compressor.lua @@ -0,0 +1,26 @@ + +local S = technic.getter +local mat = technic.materials + +minetest.register_alias("compressor", "technic:lv_compressor") + +minetest.register_craft({ + output = 'technic:lv_compressor', + recipe = { + {mat.stone, 'basic_materials:motor', mat.stone}, + {'mesecons:piston', 'technic:machine_casing', 'mesecons:piston'}, + {'basic_materials:silver_wire', 'technic:lv_cable', 'basic_materials:silver_wire'}, + }, + replacements = { + {"basic_materials:silver_wire", "basic_materials:empty_spool"}, + {"basic_materials:silver_wire", "basic_materials:empty_spool"} + }, +}) + +technic.register_base_machine("technic:lv_compressor", { + typename = "compressing", + description = S("@1 Compressor", S("LV")), + tier = "LV", + demand = {300}, + speed = 1 +}) diff --git a/mods/technic_plus_beta/technic/machines/LV/electric_furnace.lua b/mods/technic_plus_beta/technic/machines/LV/electric_furnace.lua new file mode 100644 index 00000000..368d1073 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/LV/electric_furnace.lua @@ -0,0 +1,22 @@ +-- LV Electric Furnace +-- This is a faster version of the stone furnace which runs on EUs +local S = technic.getter +local mat = technic.materials + +-- FIXME: kpoppel I'd like to introduce an induction heating element here also +minetest.register_craft({ + output = 'technic:lv_electric_furnace', + recipe = { + {mat.cobble, mat.cobble, mat.cobble}, + {mat.cobble, 'technic:machine_casing', mat.cobble}, + {mat.cobble, 'technic:lv_cable', mat.cobble}, + } +}) + +technic.register_base_machine("technic:lv_electric_furnace", { + typename = "cooking", + description = S("@1 Furnace", S("LV")), + tier="LV", + demand={300}, + speed = 2 +}) diff --git a/mods/technic_plus_beta/technic/machines/LV/extractor.lua b/mods/technic_plus_beta/technic/machines/LV/extractor.lua new file mode 100644 index 00000000..983ab22e --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/LV/extractor.lua @@ -0,0 +1,35 @@ +local S = technic.getter + +minetest.register_alias("extractor", "technic:lv_extractor") + +if technic.config:get_bool("enable_tree_tap") then + + minetest.register_craft({ + output = 'technic:lv_extractor', + recipe = { + {'technic:treetap', 'basic_materials:motor', 'technic:treetap'}, + {'technic:treetap', 'technic:machine_casing', 'technic:treetap'}, + {'', 'technic:lv_cable', ''}, + } + }) + +else + + minetest.register_craft({ + output = 'technic:lv_extractor', + recipe = { + {'basic_materials:motor', 'pipeworks:tube_1', 'basic_materials:motor'}, + {'technic:carbon_steel_ingot', 'technic:machine_casing', 'technic:carbon_steel_ingot'}, + {'', 'technic:lv_cable', ''}, + } + }) + +end + +technic.register_base_machine("technic:lv_extractor", { + typename = "extracting", + description = S("@1 Extractor", S("LV")), + tier = "LV", + demand = {300}, + speed = 1 +}) diff --git a/mods/technic_plus_beta/technic/machines/LV/generator.lua b/mods/technic_plus_beta/technic/machines/LV/generator.lua new file mode 100644 index 00000000..f212591b --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/LV/generator.lua @@ -0,0 +1,20 @@ +-- The electric generator. +-- A simple device to get started on the electric machines. +-- Inefficient and expensive in fuel (200EU per tick) +-- Also only allows for LV machinery to run. + +local mat = technic.materials + +minetest.register_alias("lv_generator", "technic:lv_generator") + +minetest.register_craft({ + output = 'technic:lv_generator', + recipe = { + {mat.stone, mat.furnace, mat.stone}, + {mat.stone, 'technic:machine_casing', mat.stone}, + {mat.stone, 'technic:lv_cable', mat.stone}, + } +}) + +technic.register_generator({tier="LV", supply=200}) + diff --git a/mods/technic_plus_beta/technic/machines/LV/geothermal.lua b/mods/technic_plus_beta/technic/machines/LV/geothermal.lua new file mode 100644 index 00000000..52c2ebd2 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/LV/geothermal.lua @@ -0,0 +1,124 @@ +-- A geothermal EU generator +-- Using hot lava and water this device can create energy from steam +-- The machine is only producing LV EUs and can thus not drive more advanced equipment +-- The output is a little more than the coal burning generator (max 300EUs) + +minetest.register_alias("geothermal", "technic:geothermal") + +local S = technic.getter +local mat = technic.materials + +minetest.register_craft({ + output = 'technic:geothermal', + recipe = { + {'technic:granite', mat.diamond, 'technic:granite'}, + {'basic_materials:copper_wire', 'technic:machine_casing', 'basic_materials:copper_wire'}, + {'technic:granite', 'technic:lv_cable', 'technic:granite'}, + }, + replacements = { + {"basic_materials:copper_wire", "basic_materials:empty_spool"}, + {"basic_materials:copper_wire", "basic_materials:empty_spool"} + }, +}) + +minetest.register_craftitem("technic:geothermal", { + description = S("Geothermal @1 Generator", S("LV")), +}) + +local check_node_around = function(pos) + local node = minetest.get_node(pos) + if node.name == mat.water_source or node.name == mat.water_flowing then return 1 end + if node.name == mat.lava_source or node.name == mat.lava_flowing then return 2 end + return 0 +end + +local run = function(pos, node) + local meta = minetest.get_meta(pos) + local water_nodes = 0 + local lava_nodes = 0 + local production_level = 0 + local eu_supply = 0 + + -- Correct positioning is water on one side and lava on the other. + -- The two cannot be adjacent because the lava the turns into obsidian or rock. + -- To get to 100% production stack the water and lava one extra block down as well: + -- WGL (W=Water, L=Lava, G=the generator, |=an LV cable) + -- W|L + + local positions = { + {x=pos.x+1, y=pos.y, z=pos.z}, + {x=pos.x+1, y=pos.y-1, z=pos.z}, + {x=pos.x-1, y=pos.y, z=pos.z}, + {x=pos.x-1, y=pos.y-1, z=pos.z}, + {x=pos.x, y=pos.y, z=pos.z+1}, + {x=pos.x, y=pos.y-1, z=pos.z+1}, + {x=pos.x, y=pos.y, z=pos.z-1}, + {x=pos.x, y=pos.y-1, z=pos.z-1}, + } + for _, p in pairs(positions) do + local check = check_node_around(p) + if check == 1 then water_nodes = water_nodes + 1 end + if check == 2 then lava_nodes = lava_nodes + 1 end + end + + if water_nodes == 1 and lava_nodes == 1 then production_level = 25; eu_supply = 50 end + if water_nodes == 2 and lava_nodes == 1 then production_level = 50; eu_supply = 100 end + if water_nodes == 1 and lava_nodes == 2 then production_level = 75; eu_supply = 200 end + if water_nodes == 2 and lava_nodes == 2 then production_level = 100; eu_supply = 300 end + + if production_level > 0 then + meta:set_int("LV_EU_supply", eu_supply) + end + + meta:set_string("infotext", S("@1 (@2% Efficiency)", + S("Geothermal @1 Generator", S("LV")), production_level)) + + if production_level > 0 and minetest.get_node(pos).name == "technic:geothermal" then + technic.swap_node (pos, "technic:geothermal_active") + return + end + if production_level == 0 then + technic.swap_node(pos, "technic:geothermal") + meta:set_int("LV_EU_supply", 0) + end +end + +minetest.register_node("technic:geothermal", { + description = S("Geothermal @1 Generator", S("LV")), + tiles = {"technic_geothermal_top.png", "technic_machine_bottom.png", "technic_geothermal_side.png", + "technic_geothermal_side.png", "technic_geothermal_side.png", "technic_geothermal_side.png"}, + groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2, + technic_machine=1, technic_lv=1, axey=2, handy=1}, + is_ground_content = false, + _mcl_blast_resistance = 1, + _mcl_hardness = 0.8, + paramtype2 = "facedir", + legacy_facedir_simple = true, + sounds = technic.sounds.node_sound_wood_defaults(), + on_construct = function(pos) + local meta = minetest.get_meta(pos) + meta:set_string("infotext", S("Geothermal @1 Generator", S("LV"))) + meta:set_int("LV_EU_supply", 0) + end, + technic_run = run, +}) + +minetest.register_node("technic:geothermal_active", { + description = S("Geothermal @1 Generator", S("LV")), + tiles = {"technic_geothermal_top_active.png", "technic_machine_bottom.png", "technic_geothermal_side.png", + "technic_geothermal_side.png", "technic_geothermal_side.png", "technic_geothermal_side.png"}, + paramtype2 = "facedir", + groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2, + technic_machine=1, technic_lv=1, not_in_creative_inventory=1, axey=2, handy=1}, + is_ground_content = false, + _mcl_blast_resistance = 1, + _mcl_hardness = 0.8, + legacy_facedir_simple = true, + sounds = technic.sounds.node_sound_wood_defaults(), + drop = "technic:geothermal", + technic_run = run, +}) + +technic.register_machine("LV", "technic:geothermal", technic.producer) +technic.register_machine("LV", "technic:geothermal_active", technic.producer) + diff --git a/mods/technic_plus_beta/technic/machines/LV/grinder.lua b/mods/technic_plus_beta/technic/machines/LV/grinder.lua new file mode 100644 index 00000000..678c7570 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/LV/grinder.lua @@ -0,0 +1,20 @@ +local S = technic.getter +local mat = technic.materials + +minetest.register_alias("grinder", "technic:lv_grinder") +minetest.register_craft({ + output = 'technic:lv_grinder', + recipe = { + {mat.desert_stone, mat.diamond, mat.desert_stone}, + {mat.desert_stone, 'technic:machine_casing', mat.desert_stone}, + {'technic:granite', 'technic:lv_cable', 'technic:granite'}, + } +}) + +technic.register_base_machine("technic:lv_grinder", { + typename = "grinding", + description = S("@1 Grinder", S("LV")), + tier="LV", + demand={200}, + speed=1 +}) diff --git a/mods/technic_plus_beta/technic/machines/LV/init.lua b/mods/technic_plus_beta/technic/machines/LV/init.lua new file mode 100644 index 00000000..5536d24c --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/LV/init.lua @@ -0,0 +1,27 @@ + +technic.register_tier("LV", "Low Voltage") + +local path = technic.modpath.."/machines/LV" + +-- Wiring stuff +dofile(path.."/cables.lua") +dofile(path.."/battery_box.lua") + +-- Generators +dofile(path.."/solar_panel.lua") +dofile(path.."/solar_array.lua") +dofile(path.."/geothermal.lua") +dofile(path.."/water_mill.lua") +dofile(path.."/generator.lua") + +-- Machines +dofile(path.."/alloy_furnace.lua") +dofile(path.."/electric_furnace.lua") +dofile(path.."/grinder.lua") +dofile(path.."/extractor.lua") +dofile(path.."/compressor.lua") + +dofile(path.."/music_player.lua") + +dofile(path.."/led.lua") +dofile(path.."/lamp.lua") diff --git a/mods/technic_plus_beta/technic/machines/LV/lamp.lua b/mods/technic_plus_beta/technic/machines/LV/lamp.lua new file mode 100644 index 00000000..4cffb420 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/LV/lamp.lua @@ -0,0 +1,204 @@ + +-- LV Lamp - a powerful light source. +-- Illuminates a 7x7x3(H) volume below itself with light bright as the sun. + +local S = technic.getter +local mat = technic.materials + +local demand = 50 +local desc = S("@1 Lamp", S("LV")) +local active_desc = S("@1 Active", desc).."\n"..S("Demand: @1", technic.EU_string(demand)) +local unpowered_desc = S("@1 Unpowered", desc) +local off_desc = S("@1 Off", desc) + +-- Invisible light source node used for illumination +minetest.register_node("technic:dummy_light_source", { + description = S("Dummy light source node"), + inventory_image = "technic_dummy_light_source.png", + wield_image = "technic_dummy_light_source.png", + paramtype = "light", + drawtype = "airlike", + light_source = 14, + sunlight_propagates = true, + walkable = false, + buildable_to = true, + diggable = false, + pointable = false, + --drop = "", -- Intentionally allowed to drop itself + groups = {not_in_creative_inventory = 1} +}) + +local cid_light = minetest.get_content_id("technic:dummy_light_source") +local cid_air = minetest.CONTENT_AIR + +local function illuminate(pos, active) + local pos1 = {x = pos.x - 3, y = pos.y - 3, z = pos.z - 3} + local pos2 = {x = pos.x + 3, y = pos.y - 1, z = pos.z + 3} + + local vm = minetest.get_voxel_manip() + local emin, emax = vm:read_from_map(pos1, pos2) + local va = VoxelArea:new({MinEdge = emin, MaxEdge = emax}) + local node_data = vm:get_data() + + local find_node = active and cid_air or cid_light + local set_node = active and cid_light or cid_air + + local dirty = false + for i in va:iterp(pos1, pos2) do + if node_data[i] == find_node then + node_data[i] = set_node + dirty = true + end + end + if dirty then + vm:set_data(node_data) + vm:write_to_map() + end +end + +local function set_random_timer(pos, mint, maxt) + local t = math.random(mint * 10, maxt * 10) * 0.1 + minetest.get_node_timer(pos):start(t) +end + +local function lamp_run(pos, node) + local meta = minetest.get_meta(pos) + + if meta:get_int("LV_EU_demand") == 0 then + return -- Lamp is turned off + end + + local eu_input = meta:get_int("LV_EU_input") + + if node.name == "technic:lv_lamp_active" then + if eu_input < demand then + technic.swap_node(pos, "technic:lv_lamp") + meta:set_string("infotext", unpowered_desc) + set_random_timer(pos, 0.2, 1) + end + elseif node.name == "technic:lv_lamp" then + if eu_input >= demand then + technic.swap_node(pos, "technic:lv_lamp_active") + meta:set_string("infotext", active_desc) + set_random_timer(pos, 0.2, 2) + end + end +end + +local function lamp_toggle(pos, node, player) + if not player or minetest.is_protected(pos, player:get_player_name()) then + return + end + local meta = minetest.get_meta(pos) + if meta:get_int("LV_EU_demand") == 0 then + meta:set_string("infotext", active_desc) + meta:set_int("LV_EU_demand", demand) + else + technic.swap_node(pos, "technic:lv_lamp") + meta:set_string("infotext", off_desc) + meta:set_int("LV_EU_demand", 0) + set_random_timer(pos, 0.2, 1) + end +end + +minetest.register_node("technic:lv_lamp", { + description = desc, + drawtype = "nodebox", + node_box = { + type = "fixed", + fixed = {0.5,0.5,0.5,-0.5,-0.2,-0.5} + }, + collision_box = { + type = "fixed", + fixed = {0.5,0.5,0.5,-0.5,-0.2,-0.5} + }, + selection_box = { + type = "fixed", + fixed = {0.5,0.5,0.5,-0.5,-0.2,-0.5} + }, + tiles = { + "technic_lv_lamp_top.png", + "technic_lv_lamp_bottom.png", + "technic_lv_lamp_side.png", + "technic_lv_lamp_side.png", + "technic_lv_lamp_side.png", + "technic_lv_lamp_side.png" + }, + groups = {cracky = 2, technic_machine = 1, technic_lv = 1, pickaxey = 2}, + is_ground_content = false, + _mcl_blast_resistance = 1, + _mcl_hardness = 0.8, + connect_sides = {"front", "back", "left", "right", "top"}, + can_dig = technic.machine_can_dig, + technic_run = lamp_run, + on_construct = function(pos) + local meta = minetest.get_meta(pos) + meta:set_string("infotext", desc) + meta:set_int("LV_EU_demand", demand) + end, + on_destruct = illuminate, + on_rightclick = lamp_toggle, + on_timer = function(pos) + illuminate(pos, false) + -- Don't start the timer again, otherwise lights will fight each other + end, +}) + +minetest.register_node("technic:lv_lamp_active", { + description = active_desc, + drawtype = "nodebox", + node_box = { + type = "fixed", + fixed = {0.5, 0.5, 0.5, -0.5, -0.2, -0.5} + }, + collision_box = { + type = "fixed", + fixed = {0.5, 0.5, 0.5, -0.5, -0.2, -0.5} + }, + selection_box = { + type = "fixed", + fixed = {0.5, 0.5, 0.5, -0.5, -0.2, -0.5} + }, + tiles = { + "technic_lv_lamp_top.png", + "technic_lv_lamp_bottom.png", + "technic_lv_lamp_side.png", + "technic_lv_lamp_side.png", + "technic_lv_lamp_side.png", + "technic_lv_lamp_side.png" + }, + paramtype = "light", + light_source = 14, + drop = "technic:lv_lamp", + groups = {cracky = 2, technic_machine = 1, technic_lv = 1, not_in_creative_inventory = 1, pickaxey = 2}, + is_ground_content = false, + _mcl_blast_resistance = 1, + _mcl_hardness = 0.8, + connect_sides = {"front", "back", "left", "right", "top"}, + can_dig = technic.machine_can_dig, + technic_run = lamp_run, + technic_on_disable = function(pos) + technic.swap_node(pos, "technic:lv_lamp") + set_random_timer(pos, 0.2, 1) + end, + on_destruct = illuminate, + on_rightclick = lamp_toggle, + on_timer = function(pos, elapsed) + if elapsed < 60 then -- Don't check immediately after being unloaded + illuminate(pos, true) + end + set_random_timer(pos, 30, 60) -- Check every 30-60 seconds + end, +}) + +technic.register_machine("LV", "technic:lv_lamp", technic.receiver) +technic.register_machine("LV", "technic:lv_lamp_active", technic.receiver) + +minetest.register_craft({ + output = "technic:lv_lamp", + recipe = { + {mat.glass, mat.glass, mat.glass}, + {"technic:lv_led", "technic:lv_led", "technic:lv_led"}, + {"mesecons_materials:glue", "technic:lv_cable", "mesecons_materials:glue"}, + } +}) diff --git a/mods/technic_plus_beta/technic/machines/LV/led.lua b/mods/technic_plus_beta/technic/machines/LV/led.lua new file mode 100644 index 00000000..bb9d8a29 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/LV/led.lua @@ -0,0 +1,102 @@ + +-- LED - a weak light source. +-- Intended primarily as a core component for LED lamps. + +local S = technic.getter + +local demand = 5 +local desc = S("@1 LED", S("LV")) +local active_desc = S("@1 Active", desc).."\n"..S("Demand: @1", technic.EU_string(demand)) +local unpowered_desc = S("@1 Unpowered", desc) + + +local function led_run(pos, node) + local meta = minetest.get_meta(pos) + local eu_input = meta:get_int("LV_EU_input") + + if eu_input < demand and node.name == "technic:lv_led_active" then + technic.swap_node(pos, "technic:lv_led") + meta:set_string("infotext", unpowered_desc) + elseif eu_input >= demand and node.name == "technic:lv_led" then + technic.swap_node(pos, "technic:lv_led_active") + meta:set_string("infotext", active_desc) + end +end + +minetest.register_node("technic:lv_led", { + description = desc, + drawtype = "nodebox", + node_box = { + type = "fixed", + fixed = {0.2, 0.2, 0.2, -0.2, -0.2, -0.2} + }, + collision_box = { + type = "fixed", + fixed = {0.2, 0.2, 0.2, -0.2, -0.2, -0.2} + }, + selection_box = { + type = "fixed", + fixed = {0.2, 0.2, 0.2, -0.2, -0.2, -0.2} + }, + tiles = {"technic_lv_led.png"}, + inventory_image = "technic_lv_led_inv.png", + sunlight_propagates = true, + groups = {cracky = 2, technic_machine = 1, technic_lv = 1, pickaxey = 2}, + is_ground_content = false, + _mcl_blast_resistance = 1, + _mcl_hardness = 0.8, + connect_sides = {"front", "back", "left", "right", "top", "bottom"}, + can_dig = technic.machine_can_dig, + technic_run = led_run, + on_construct = function(pos) + local meta = minetest.get_meta(pos) + meta:set_string("infotext", desc) + meta:set_int("LV_EU_demand", demand) + end, +}) + +minetest.register_node("technic:lv_led_active", { + description = active_desc, + drawtype = "nodebox", + node_box = { + type = "fixed", + fixed = {0.2, 0.2, 0.2, -0.2, -0.2, -0.2} + }, + collision_box = { + type = "fixed", + fixed = {0.2, 0.2, 0.2, -0.2, -0.2, -0.2} + }, + selection_box = { + type = "fixed", + fixed = {0.2, 0.2, 0.2, -0.2, -0.2, -0.2} + }, + tiles = {"technic_lv_led.png"}, + inventory_image = "technic_lv_led_inv.png", + paramtype = "light", + light_source = 9, + drop = "technic:lv_led", + sunlight_propagates = true, + groups = {cracky = 2, technic_machine = 1, technic_lv = 1, not_in_creative_inventory = 1, pickaxey = 2}, + is_ground_content = false, + _mcl_blast_resistance = 1, + _mcl_hardness = 0.8, + connect_sides = {"front", "back", "left", "right", "top", "bottom"}, + can_dig = technic.machine_can_dig, + technic_run = led_run, + technic_on_disable = function(pos) + technic.swap_node(pos, "technic:lv_led") + end, +}) + +technic.register_machine("LV", "technic:lv_led", technic.receiver) +technic.register_machine("LV", "technic:lv_led_active", technic.receiver) + +minetest.register_craft({ + output = "technic:lv_led 2", + recipe = { + {"", "basic_materials:plastic_sheet", ""}, + {"basic_materials:plastic_sheet", "technic:doped_silicon_wafer", "basic_materials:plastic_sheet"}, + {"", "basic_materials:silver_wire", ""}, + }, + replacements = {{"basic_materials:silver_wire", "basic_materials:empty_spool"}}, +}) diff --git a/mods/technic_plus_beta/technic/machines/LV/music_player.lua b/mods/technic_plus_beta/technic/machines/LV/music_player.lua new file mode 100644 index 00000000..e2e5b912 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/LV/music_player.lua @@ -0,0 +1,134 @@ +-- LV Music player. +-- The player can play music. But it is high ampage! + +local S = technic.getter +local mat = technic.materials + +minetest.register_alias("music_player", "technic:music_player") +minetest.register_craft({ + output = 'technic:music_player', + recipe = { + {'technic:chromium_ingot', mat.diamond, 'technic:chromium_ingot'}, + {mat.diamond, 'technic:machine_casing', mat.diamond}, + {mat.mossycobble, 'technic:lv_cable', mat.mossycobble}, + } +}) + +local music_handles = {} + +local function play_track(pos, track) + return minetest.sound_play("technic_track"..tostring(track), + {pos = pos, gain = 1.0, loop = true, max_hear_distance = 72,}) +end + +local run = function(pos, node) + local meta = minetest.get_meta(pos) + local eu_input = meta:get_int("LV_EU_input") + local machine_name = S("@1 Music Player", S("LV")) + local demand = 150 + + local current_track = meta:get_int("current_track") + local pos_hash = minetest.hash_node_position(pos) + local music_handle = music_handles[pos_hash] + + -- Setup meta data if it does not exist. + if not eu_input then + meta:set_int("LV_EU_demand", demand) + meta:set_int("LV_EU_input", 0) + return + end + + if meta:get_int("active") == 0 then + meta:set_string("infotext", S("@1 Idle", machine_name)) + meta:set_int("LV_EU_demand", 0) + return + end + + if eu_input < demand then + meta:set_string("infotext", S("@1 Unpowered", machine_name)) + if music_handle then + minetest.sound_stop(music_handle) + music_handle = nil + end + elseif eu_input >= demand then + meta:set_string("infotext", S("@1 Active", machine_name) .. "\n" .. + S("Demand: @1", technic.EU_string(demand))) + if not music_handle then + music_handle = play_track(pos, current_track) + end + end + music_handles[pos_hash] = music_handle + meta:set_int("LV_EU_demand", demand) +end + +local function stop_player(pos, node) + local pos_hash = minetest.hash_node_position(pos) + local music_handle = music_handles[pos_hash] + if music_handle then + minetest.sound_stop(music_handle) + music_handles[pos_hash] = nil + end +end + +local function set_display(meta) + meta:set_string("formspec", + "size[4,4.5]".. + "item_image[0,0;1,1;technic:music_player]".. + "label[1,0;"..S("@1 Music Player", S("LV")).."]".. + "button[0,1;1,1;track1;1]".. + "button[1,1;1,1;track2;2]".. + "button[2,1;1,1;track3;3]".. + "button[0,2;1,1;track4;4]".. + "button[1,2;1,1;track5;5]".. + "button[2,2;1,1;track6;6]".. + "button[0,3;1,1;track7;7]".. + "button[1,3;1,1;track8;8]".. + "button[2,3;1,1;track9;9]".. + "button[3,1;1,1;stop;"..S("Stop").."]".. + "label[0,4;"..(meta:get_int("active") == 0 and S("Stopped") or + S("Current track: @1", meta:get_int("current_track"))).."]") +end + +minetest.register_node("technic:music_player", { + description = S("@1 Music Player", S("LV")), + tiles = {"technic_music_player_top.png", "technic_machine_bottom.png", "technic_music_player_side.png", + "technic_music_player_side.png", "technic_music_player_side.png", "technic_music_player_side.png"}, + groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2, + technic_machine=1, technic_lv=1, axey = 2, handy=1}, + is_ground_content = false, + _mcl_blast_resistance = 1, + _mcl_hardness = 0.8, + connect_sides = {"bottom"}, + sounds = technic.sounds.node_sound_wood_defaults(), + on_construct = function(pos) + local meta = minetest.get_meta(pos) + meta:set_string("infotext", S("@1 Music Player", S("LV"))) + set_display(meta) + end, + on_receive_fields = function(pos, formanme, fields, sender) + local new_track = nil + if fields.stop then new_track = 0 end + if fields.track1 then new_track = 1 end + if fields.track2 then new_track = 2 end + if fields.track3 then new_track = 3 end + if fields.track4 then new_track = 4 end + if fields.track5 then new_track = 5 end + if fields.track6 then new_track = 6 end + if fields.track7 then new_track = 7 end + if fields.track8 then new_track = 8 end + if fields.track9 then new_track = 9 end + if new_track then + stop_player(pos) + local meta = minetest.get_meta(pos) + meta:set_int("active", new_track == 0 and 0 or 1) + meta:set_int("current_track", new_track) + set_display(meta) + end + end, + on_destruct = stop_player, + technic_run = run, + technic_on_disable = stop_player, +}) + +technic.register_machine("LV", "technic:music_player", technic.receiver) + diff --git a/mods/technic_plus_beta/technic/machines/LV/solar_array.lua b/mods/technic_plus_beta/technic/machines/LV/solar_array.lua new file mode 100644 index 00000000..12eacb2f --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/LV/solar_array.lua @@ -0,0 +1,22 @@ +-- The solar array is an assembly of panels into a powerful array +-- The assembly can deliver more energy than the individual panel because +-- of the transformer unit which converts the panel output variations into +-- a stable supply. +-- Solar arrays are not able to store large amounts of energy. +-- The LV arrays are used to make medium voltage arrays. + +minetest.register_craft({ + output = 'technic:lv_solar_array 1', + recipe = { + {'technic:solar_panel', 'technic:solar_panel', 'technic:solar_panel'}, + {'technic:carbon_steel_ingot', 'technic:lv_transformer', 'technic:carbon_steel_ingot'}, + {'', 'technic:lv_cable', ''}, + } +}) + +technic.register_solar_array("technic:lv_solar_array", { + tier="LV", + power=10 +}) + +minetest.register_alias("technic:solar_array_lv", "technic:lv_solar_array") diff --git a/mods/technic_plus_beta/technic/machines/LV/solar_panel.lua b/mods/technic_plus_beta/technic/machines/LV/solar_panel.lua new file mode 100644 index 00000000..fed7159e --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/LV/solar_panel.lua @@ -0,0 +1,74 @@ +-- Solar panels are the building blocks of LV solar arrays +-- They can however also be used separately but with reduced efficiency due to the missing transformer. +-- Individual panels are less efficient than when the panels are combined into full arrays. + +local S = technic.getter + + +minetest.register_craft({ + output = 'technic:solar_panel', + recipe = { + {'technic:doped_silicon_wafer', 'technic:doped_silicon_wafer', 'technic:doped_silicon_wafer'}, + {'basic_materials:silver_wire', 'technic:lv_cable', 'mesecons_materials:glue'}, + }, + replacements = { {"basic_materials:silver_wire", "basic_materials:empty_spool"}, }, +}) + + +local run = function(pos, node) + -- The action here is to make the solar panel prodice power + -- Power is dependent on the light level and the height above ground + -- There are many ways to cheat by using other light sources like lamps. + -- As there is no way to determine if light is sunlight that is just a shame. + -- To take care of some of it solar panels do not work outside daylight hours or if + -- built below 0m + local pos1 = {x=pos.x, y=pos.y+1, z=pos.z} + local machine_name = S("Small Solar @1 Generator", S("LV")) + + local light = minetest.get_node_light(pos1, nil) + local time_of_day = minetest.get_timeofday() + local meta = minetest.get_meta(pos) + if light == nil then light = 0 end + -- turn on panel only during day time and if sufficient light + -- I know this is counter intuitive when cheating by using other light sources underground. + if light >= 12 and time_of_day >= 0.24 and time_of_day <= 0.76 and pos.y > -10 then + local charge_to_give = math.floor((light + pos1.y) * 3) + charge_to_give = math.max(charge_to_give, 0) + charge_to_give = math.min(charge_to_give, 200) + meta:set_string("infotext", S("@1 Active (@2)", machine_name, + technic.EU_string(charge_to_give))) + meta:set_int("LV_EU_supply", charge_to_give) + else + meta:set_string("infotext", S("@1 Idle", machine_name)) + meta:set_int("LV_EU_supply", 0) + end +end + +minetest.register_node("technic:solar_panel", { + tiles = {"technic_solar_panel_top.png", "technic_solar_panel_bottom.png", "technic_solar_panel_side.png", + "technic_solar_panel_side.png", "technic_solar_panel_side.png", "technic_solar_panel_side.png"}, + groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2, + technic_machine=1, technic_lv=1, axey=2, handy=1}, + is_ground_content = false, + _mcl_blast_resistance = 1, + _mcl_hardness = 0.8, + connect_sides = {"bottom"}, + sounds = technic.sounds.node_sound_wood_defaults(), + description = S("Small Solar @1 Generator", S("LV")), + active = false, + drawtype = "nodebox", + paramtype = "light", + node_box = { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, 0, 0.5}, + }, + on_construct = function(pos) + local meta = minetest.get_meta(pos) + meta:set_int("LV_EU_supply", 0) + meta:set_string("infotext", S("Small Solar @1 Generator", S("LV"))) + end, + technic_run = run, +}) + +technic.register_machine("LV", "technic:solar_panel", technic.producer) + diff --git a/mods/technic_plus_beta/technic/machines/LV/water_mill.lua b/mods/technic_plus_beta/technic/machines/LV/water_mill.lua new file mode 100644 index 00000000..5c795b8e --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/LV/water_mill.lua @@ -0,0 +1,115 @@ +-- A water mill produces LV EUs by exploiting flowing water across it +-- It is a LV EU supplier and fairly low yield (max 180EUs) +-- It is a little over half as good as the thermal generator. + +local S = technic.getter +local mat = technic.materials + +local cable_entry = "^technic_cable_connection_overlay.png" + +minetest.register_alias("water_mill", "technic:water_mill") + +minetest.register_craft({ + output = 'technic:water_mill', + recipe = { + {'technic:marble', mat.diamond, 'technic:marble'}, + {'group:wood', 'technic:machine_casing', 'group:wood'}, + {'technic:marble', 'technic:lv_cable', 'technic:marble'}, + } +}) + +local function check_node_around_mill(pos) + local node = minetest.get_node(pos) + if node.name == mat.water_flowing or node.name == mat.river_water_flowing then + return node.param2 -- returns approx. water flow, if any + end + return false +end + +local run = function(pos, node) + local meta = minetest.get_meta(pos) + local water_flow = 0 + local production_level + local eu_supply + local max_output = 4 * 45 -- keeping it around 180, little more than previous 150 :) + + local positions = { + {x=pos.x+1, y=pos.y, z=pos.z}, + {x=pos.x-1, y=pos.y, z=pos.z}, + {x=pos.x, y=pos.y, z=pos.z+1}, + {x=pos.x, y=pos.y, z=pos.z-1}, + } + + for _, p in pairs(positions) do + local check = check_node_around_mill(p) + if check then + water_flow = water_flow + check + end + end + + eu_supply = math.min(4 * water_flow, max_output) + production_level = math.floor(100 * eu_supply / max_output) + + meta:set_int("LV_EU_supply", eu_supply) + + meta:set_string("infotext", S("@1 (@2% Efficiency)", + S("Hydro @1 Generator", S("LV")), production_level)) + + if production_level > 0 and + minetest.get_node(pos).name == "technic:water_mill" then + technic.swap_node (pos, "technic:water_mill_active") + meta:set_int("LV_EU_supply", 0) + return + end + if production_level == 0 then + technic.swap_node(pos, "technic:water_mill") + end +end + +minetest.register_node("technic:water_mill", { + description = S("Hydro @1 Generator", S("LV")), + tiles = { + "technic_water_mill_top.png", + "technic_machine_bottom.png"..cable_entry, + "technic_water_mill_side.png", + "technic_water_mill_side.png", + "technic_water_mill_side.png", + "technic_water_mill_side.png" + }, + paramtype2 = "facedir", + groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2, + technic_machine=1, technic_lv=1, axey=2, handy=1}, + is_ground_content = false, + _mcl_blast_resistance = 1, + _mcl_hardness = 0.8, + legacy_facedir_simple = true, + sounds = technic.sounds.node_sound_wood_defaults(), + on_construct = function(pos) + local meta = minetest.get_meta(pos) + meta:set_string("infotext", S("Hydro @1 Generator", S("LV"))) + meta:set_int("LV_EU_supply", 0) + end, + technic_run = run, +}) + +minetest.register_node("technic:water_mill_active", { + description = S("Hydro @1 Generator", S("LV")), + tiles = {"technic_water_mill_top_active.png", "technic_machine_bottom.png", + "technic_water_mill_side.png", "technic_water_mill_side.png", + "technic_water_mill_side.png", "technic_water_mill_side.png"}, + paramtype2 = "facedir", + groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2, + technic_machine=1, technic_lv=1, not_in_creative_inventory=1, axey=2, handy=1}, + is_ground_content = false, + _mcl_blast_resistance = 1, + _mcl_hardness = 0.8, + legacy_facedir_simple = true, + sounds = technic.sounds.node_sound_wood_defaults(), + drop = "technic:water_mill", + technic_run = run, + technic_disabled_machine_name = "technic:water_mill", +}) + +technic.register_machine("LV", "technic:water_mill", technic.producer) +technic.register_machine("LV", "technic:water_mill_active", technic.producer) + diff --git a/mods/technic_plus_beta/technic/machines/MV/alloy_furnace.lua b/mods/technic_plus_beta/technic/machines/MV/alloy_furnace.lua new file mode 100644 index 00000000..28abba8c --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/MV/alloy_furnace.lua @@ -0,0 +1,23 @@ +-- MV alloy furnace +local S = technic.getter + +minetest.register_craft({ + output = 'technic:mv_alloy_furnace', + recipe = { + {'technic:stainless_steel_ingot', 'technic:lv_alloy_furnace', 'technic:stainless_steel_ingot'}, + {'pipeworks:tube_1', 'technic:mv_transformer', 'pipeworks:tube_1'}, + {'technic:stainless_steel_ingot', 'technic:mv_cable', 'technic:stainless_steel_ingot'}, + } +}) + +technic.register_base_machine("technic:mv_alloy_furnace", { + typename = "alloy", + description = S("@1 Alloy Furnace", S("MV")), + insert_object = technic.insert_object_unique_stack, + can_insert = technic.can_insert_unique_stack, + tier = "MV", + speed = 1.5, + upgrade = 1, + tube = 1, + demand = {3000, 2000, 1000} +}) diff --git a/mods/technic_plus_beta/technic/machines/MV/battery_box.lua b/mods/technic_plus_beta/technic/machines/MV/battery_box.lua new file mode 100644 index 00000000..73750b31 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/MV/battery_box.lua @@ -0,0 +1,21 @@ +-- MV Battery box + +minetest.register_craft({ + output = 'technic:mv_battery_box0', + recipe = { + {'technic:lv_battery_box0', 'technic:lv_battery_box0', 'technic:lv_battery_box0'}, + {'technic:lv_battery_box0', 'technic:mv_transformer', 'technic:lv_battery_box0'}, + {'', 'technic:mv_cable', ''}, + } +}) + +technic.register_battery_box("technic:mv_battery_box", { + tier = "MV", + max_charge = 200000, + charge_rate = 20000, + discharge_rate = 80000, + charge_step = 2000, + discharge_step = 8000, + upgrade = 1, + tube = 1, +}) diff --git a/mods/technic_plus_beta/technic/machines/MV/cables.lua b/mods/technic_plus_beta/technic/machines/MV/cables.lua new file mode 100644 index 00000000..614dd485 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/MV/cables.lua @@ -0,0 +1,56 @@ +local S = technic.getter + +minetest.register_alias("mv_cable", "technic:mv_cable") + +minetest.register_craft({ + output = 'technic:mv_cable 3', + recipe ={ + {'technic:rubber', 'technic:rubber', 'technic:rubber'}, + {'technic:lv_cable', 'technic:lv_cable', 'technic:lv_cable'}, + {'technic:rubber', 'technic:rubber', 'technic:rubber'}, + } +}) + +minetest.register_craft({ + output = "technic:mv_cable_plate_1 5", + recipe = { + {"" , "" , "technic:mv_cable"}, + {"technic:mv_cable", "technic:mv_cable", "technic:mv_cable"}, + {"" , "" , "technic:mv_cable"}, + } +}) + +minetest.register_craft({ + output = "technic:mv_cable", + recipe = {{"technic:mv_cable_plate_1"}} +}) + +-- Register cables + +technic.register_cable("technic:mv_cable", { + tier = "MV", + size = 2.5/16, + description = S("@1 Cable", S("MV")) +}) +technic.register_cable_plate("technic:mv_cable_plate", { + tier = "MV", + size = 2.5/16, + description = S("@1 Cable Plate", S("MV")), + tiles = {"technic_mv_cable.png"}, +}) + +if minetest.get_modpath("digilines") then + technic.register_cable("technic:mv_digi_cable", { + tier = "MV", + size = 2.5/16, + description = S("@1 Digiline Cable", S("MV")), + digiline = { wire = { rules = technic.digilines.rules_allfaces } } + }) + technic.register_cable_plate("technic:mv_digi_cable_plate", { + tier = "MV", + size = 2.5/16, + description = S("@1 Digiline Cable Plate", S("MV")), + digiline = { wire = { rules = technic.digilines.rules_allfaces } }, + tiles = {"technic_mv_digi_cable.png"} + }) +end diff --git a/mods/technic_plus_beta/technic/machines/MV/centrifuge.lua b/mods/technic_plus_beta/technic/machines/MV/centrifuge.lua new file mode 100644 index 00000000..1b034009 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/MV/centrifuge.lua @@ -0,0 +1,20 @@ +local S = technic.getter + +minetest.register_craft({ + output = "technic:mv_centrifuge", + recipe = { + {"basic_materials:motor", "technic:copper_plate", "technic:diamond_drill_head"}, + {"technic:copper_plate", "technic:machine_casing", "technic:copper_plate" }, + {"pipeworks:one_way_tube", "technic:mv_cable", "pipeworks:mese_filter" }, + } +}) + +technic.register_base_machine("technic:mv_centrifuge", { + typename = "separating", + description = S("@1 Centrifuge", S("MV")), + tier = "MV", + demand = { 8000, 7000, 6000 }, + speed = 2, + upgrade = 1, + tube = 1, +}) diff --git a/mods/technic_plus_beta/technic/machines/MV/compressor.lua b/mods/technic_plus_beta/technic/machines/MV/compressor.lua new file mode 100644 index 00000000..f93d4b50 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/MV/compressor.lua @@ -0,0 +1,21 @@ +-- MV compressor +local S = technic.getter + +minetest.register_craft({ + output = 'technic:mv_compressor', + recipe = { + {'technic:stainless_steel_ingot', 'technic:lv_compressor', 'technic:stainless_steel_ingot'}, + {'pipeworks:tube_1', 'technic:mv_transformer', 'pipeworks:tube_1'}, + {'technic:stainless_steel_ingot', 'technic:mv_cable', 'technic:stainless_steel_ingot'}, + } +}) + +technic.register_base_machine("technic:mv_compressor", { + typename = "compressing", + description = S("@1 Compressor", S("MV")), + tier = "MV", + demand = {800, 600, 400}, + speed = 2, + upgrade = 1, + tube = 1 +}) diff --git a/mods/technic_plus_beta/technic/machines/MV/electric_furnace.lua b/mods/technic_plus_beta/technic/machines/MV/electric_furnace.lua new file mode 100644 index 00000000..ba5b7a88 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/MV/electric_furnace.lua @@ -0,0 +1,26 @@ +-- MV Electric Furnace +-- This is a faster version of the stone furnace which runs on EUs +-- In addition to this it can be upgraded with microcontrollers and batteries +-- This new version uses the batteries to lower the power consumption of the machine +-- Also in addition this furnace can be attached to the pipe system from the pipeworks mod. +local S = technic.getter + +-- FIXME: kpoppel I'd like to introduce an induction heating element here also +minetest.register_craft({ + output = 'technic:mv_electric_furnace', + recipe = { + {'technic:stainless_steel_ingot', 'technic:lv_electric_furnace', 'technic:stainless_steel_ingot'}, + {'pipeworks:tube_1', 'technic:mv_transformer', 'pipeworks:tube_1'}, + {'technic:stainless_steel_ingot', 'technic:mv_cable', 'technic:stainless_steel_ingot'}, + } +}) + +technic.register_base_machine("technic:mv_electric_furnace", { + typename = "cooking", + description = S("@1 Furnace", S("MV")), + tier="MV", + upgrade=1, + tube=1, + demand={2000, 1000, 500}, + speed=4 +}) diff --git a/mods/technic_plus_beta/technic/machines/MV/extractor.lua b/mods/technic_plus_beta/technic/machines/MV/extractor.lua new file mode 100644 index 00000000..810b1f25 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/MV/extractor.lua @@ -0,0 +1,21 @@ +-- MV extractor +local S = technic.getter + +minetest.register_craft({ + output = 'technic:mv_extractor', + recipe = { + {'technic:stainless_steel_ingot', 'technic:lv_extractor', 'technic:stainless_steel_ingot'}, + {'pipeworks:tube_1', 'technic:mv_transformer', 'pipeworks:tube_1'}, + {'technic:stainless_steel_ingot', 'technic:mv_cable', 'technic:stainless_steel_ingot'}, + } +}) + +technic.register_base_machine("technic:mv_extractor", { + typename = "extracting", + description = S("@1 Extractor", S("MV")), + tier = "MV", + demand = {800, 600, 400}, + speed = 2, + upgrade = 1, + tube = 1 +}) diff --git a/mods/technic_plus_beta/technic/machines/MV/freezer.lua b/mods/technic_plus_beta/technic/machines/MV/freezer.lua new file mode 100644 index 00000000..0ae2f7bf --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/MV/freezer.lua @@ -0,0 +1,21 @@ +-- MV freezer +local S = technic.getter + +minetest.register_craft({ + output = 'technic:mv_freezer', + recipe = { + {'technic:stainless_steel_ingot', 'basic_materials:motor', 'technic:stainless_steel_ingot'}, + {'pipeworks:pipe_1_empty', 'technic:mv_transformer', 'pipeworks:pipe_1_empty'}, + {'technic:stainless_steel_ingot', 'technic:mv_cable', 'technic:stainless_steel_ingot'}, + } +}) + +technic.register_base_machine("technic:mv_freezer", { + typename = "freezing", + description = S("@1 Freezer", S("MV")), + tier = "MV", + demand = {800, 600, 400}, + speed = 0.5, + upgrade = 1, + tube = 1 +}) diff --git a/mods/technic_plus_beta/technic/machines/MV/generator.lua b/mods/technic_plus_beta/technic/machines/MV/generator.lua new file mode 100644 index 00000000..bb9e936e --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/MV/generator.lua @@ -0,0 +1,11 @@ +minetest.register_craft({ + output = 'technic:mv_generator', + recipe = { + {'technic:stainless_steel_ingot', 'technic:lv_generator', 'technic:stainless_steel_ingot'}, + {'pipeworks:tube_1', 'technic:mv_transformer', 'pipeworks:tube_1'}, + {'technic:stainless_steel_ingot', 'technic:mv_cable', 'technic:stainless_steel_ingot'}, + } +}) + +technic.register_generator({tier="MV", tube=1, supply=600}) + diff --git a/mods/technic_plus_beta/technic/machines/MV/grinder.lua b/mods/technic_plus_beta/technic/machines/MV/grinder.lua new file mode 100644 index 00000000..03e8a64c --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/MV/grinder.lua @@ -0,0 +1,21 @@ +-- MV grinder +local S = technic.getter + +minetest.register_craft({ + output = 'technic:mv_grinder', + recipe = { + {'technic:stainless_steel_ingot', 'technic:lv_grinder', 'technic:stainless_steel_ingot'}, + {'pipeworks:tube_1', 'technic:mv_transformer', 'pipeworks:tube_1'}, + {'technic:stainless_steel_ingot', 'technic:mv_cable', 'technic:stainless_steel_ingot'}, + } +}) + +technic.register_base_machine("technic:mv_grinder", { + typename = "grinding", + description = S("@1 Grinder", S("MV")), + tier="MV", + demand={600, 450, 300}, + speed=2, + upgrade=1, + tube=1 +}) diff --git a/mods/technic_plus_beta/technic/machines/MV/hydro_turbine.lua b/mods/technic_plus_beta/technic/machines/MV/hydro_turbine.lua new file mode 100644 index 00000000..64d173d3 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/MV/hydro_turbine.lua @@ -0,0 +1,111 @@ +-- A Hydro Turbine produces MV EUs by exploiting flowing water across it +-- It is a MV EU supplier and fairly high yield (max 1800EUs) + +local S = technic.getter + +local cable_entry = "^technic_cable_connection_overlay.png" + +minetest.register_alias("hydro_turbine", "technic:hydro_turbine") + +minetest.register_craft({ + output = 'technic:hydro_turbine', + recipe = { + {'technic:stainless_steel_ingot', 'technic:water_mill', 'technic:stainless_steel_ingot'}, + {'technic:water_mill', 'technic:mv_transformer', 'technic:water_mill'}, + {'technic:stainless_steel_ingot', 'technic:mv_cable', 'technic:stainless_steel_ingot'}, + } +}) + +local function get_water_flow(pos) + local node = minetest.get_node(pos) + if minetest.get_item_group(node.name, "water") == 3 then + return node.param2 -- returns approx. water flow, if any + end + return 0 +end + +--- +-- 10 times better than LV hydro because of 2 extra water mills and 4 stainless steel, a transformer and whatnot ;P. +-- Man hydro turbines are tough and long lasting. So, give it some value :) +local run = function(pos, node) + local meta = minetest.get_meta(pos) + local water_flow = 0 + local production_level + local eu_supply + local max_output = 40 * 45 -- Generates 1800EU/s + + local positions = { + {x=pos.x+1, y=pos.y, z=pos.z}, + {x=pos.x-1, y=pos.y, z=pos.z}, + {x=pos.x, y=pos.y, z=pos.z+1}, + {x=pos.x, y=pos.y, z=pos.z-1}, + } + + for _, p in pairs(positions) do + water_flow = water_flow + get_water_flow(p) + end + + eu_supply = math.min(40 * water_flow, max_output) + production_level = math.floor(100 * eu_supply / max_output) + + meta:set_int("MV_EU_supply", eu_supply) + + meta:set_string("infotext", S("@1 (@2% Efficiency)", + S("Hydro @1 Generator", S("MV")), production_level)) + if production_level > 0 and + minetest.get_node(pos).name == "technic:hydro_turbine" then + technic.swap_node(pos, "technic:hydro_turbine_active") + meta:set_int("MV_EU_supply", 0) + return + end + if production_level == 0 then + technic.swap_node(pos, "technic:hydro_turbine") + end +end + +minetest.register_node("technic:hydro_turbine", { + description = S("Hydro @1 Generator", S("MV")), + tiles = { + "technic_hydro_turbine_top.png", + "technic_machine_bottom.png"..cable_entry, + "technic_hydro_turbine_side.png", + "technic_hydro_turbine_side.png", + "technic_hydro_turbine_side.png", + "technic_hydro_turbine_side.png" + }, + paramtype2 = "facedir", + groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2, + technic_machine=1, technic_mv=1, axey=2, handy=1}, + is_ground_content = false, + _mcl_blast_resistance = 1, + _mcl_hardness = 0.8, + legacy_facedir_simple = true, + sounds = technic.sounds.node_sound_wood_defaults(), + on_construct = function(pos) + local meta = minetest.get_meta(pos) + meta:set_string("infotext", S("Hydro @1 Generator", S("MV"))) + meta:set_int("MV_EU_supply", 0) + end, + technic_run = run, +}) + +minetest.register_node("technic:hydro_turbine_active", { + description = S("Hydro @1 Generator", S("MV")), + tiles = {"technic_hydro_turbine_top_active.png", "technic_machine_bottom.png", + "technic_hydro_turbine_side.png", "technic_hydro_turbine_side.png", + "technic_hydro_turbine_side.png", "technic_hydro_turbine_side.png"}, + paramtype2 = "facedir", + groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2, axey=2, handy=1, + technic_machine=1, technic_mv=1, not_in_creative_inventory=1}, + is_ground_content = false, + _mcl_blast_resistance = 1, + _mcl_hardness = 0.8, + legacy_facedir_simple = true, + sounds = technic.sounds.node_sound_wood_defaults(), + drop = "technic:hydro_turbine", + technic_run = run, + technic_disabled_machine_name = "technic:hydro_turbine", +}) + +technic.register_machine("MV", "technic:hydro_turbine", technic.producer) +technic.register_machine("MV", "technic:hydro_turbine_active", technic.producer) diff --git a/mods/technic_plus_beta/technic/machines/MV/init.lua b/mods/technic_plus_beta/technic/machines/MV/init.lua new file mode 100644 index 00000000..68671225 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/MV/init.lua @@ -0,0 +1,28 @@ + +technic.register_tier("MV", "Medium Voltage") + +local path = technic.modpath.."/machines/MV" + +-- Wiring stuff +dofile(path.."/cables.lua") +dofile(path.."/battery_box.lua") + +-- Generators +if technic.config:get_bool("enable_wind_mill") then + dofile(path.."/wind_mill.lua") +end +dofile(path.."/generator.lua") +dofile(path.."/solar_array.lua") +dofile(path.."/hydro_turbine.lua") + +-- Machines +dofile(path.."/alloy_furnace.lua") +dofile(path.."/electric_furnace.lua") +dofile(path.."/grinder.lua") +dofile(path.."/extractor.lua") +dofile(path.."/compressor.lua") +dofile(path.."/centrifuge.lua") + +dofile(path.."/tool_workshop.lua") + +dofile(path.."/freezer.lua") diff --git a/mods/technic_plus_beta/technic/machines/MV/solar_array.lua b/mods/technic_plus_beta/technic/machines/MV/solar_array.lua new file mode 100644 index 00000000..0109696c --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/MV/solar_array.lua @@ -0,0 +1,18 @@ + +minetest.register_craft({ + output = 'technic:mv_solar_array 1', + recipe = { + {'technic:lv_solar_array', 'technic:lv_solar_array', 'technic:lv_solar_array'}, + {'technic:carbon_steel_ingot', 'technic:mv_transformer', 'technic:carbon_steel_ingot'}, + {'', 'technic:mv_cable', ''}, + } +}) + +technic.register_solar_array("technic:mv_solar_array", { + tier="MV", + power=30 +}) + +-- compatibility alias for upgrading from old versions of technic +minetest.register_alias("technic:solar_panel_mv", "technic:mv_solar_array") +minetest.register_alias("technic:solar_array_mv", "technic:mv_solar_array") diff --git a/mods/technic_plus_beta/technic/machines/MV/tool_workshop.lua b/mods/technic_plus_beta/technic/machines/MV/tool_workshop.lua new file mode 100644 index 00000000..04963060 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/MV/tool_workshop.lua @@ -0,0 +1,152 @@ +-- Tool workshop +-- This machine repairs tools. + +minetest.register_alias("tool_workshop", "technic:tool_workshop") + +local S = technic.getter +local mat = technic.materials + +local tube_entry = "^pipeworks_tube_connection_wooden.png" + +minetest.register_craft({ + output = 'technic:tool_workshop', + recipe = { + {'group:wood', mat.diamond, 'group:wood'}, + {'mesecons_pistons:piston_sticky_off', 'technic:machine_casing', 'technic:carbon_cloth'}, + {mat.obsidian, 'technic:mv_cable', mat.obsidian}, + } +}) + +local workshop_demand = {5000, 3500, 2000} + +local size = minetest.get_modpath("mcl_formspec") and "size[9,9;]" or "size[8,9;]" +local workshop_formspec = + size.. + "list[context;src;3,1;1,1;]".. + "label[0,0;"..S("@1 Tool Workshop", S("MV")).."]".. + "list[context;upgrade1;1,3;1,1;]".. + "list[context;upgrade2;2,3;1,1;]".. + "label[1,4;"..S("Upgrade Slots").."]" + +if minetest.get_modpath("mcl_formspec") then + workshop_formspec = workshop_formspec.. + mcl_formspec.get_itemslot_bg(3,1,1,1).. + mcl_formspec.get_itemslot_bg(1,3,1,1).. + mcl_formspec.get_itemslot_bg(2,3,1,1).. + -- player inventory + "list[current_player;main;0,4.5;9,3;9]".. + mcl_formspec.get_itemslot_bg(0,4.5,9,3).. + "list[current_player;main;0,7.74;9,1;]".. + mcl_formspec.get_itemslot_bg(0,7.74,9,1) +else + workshop_formspec = workshop_formspec.. + "list[current_player;main;0,5;8,4;]" +end + +-- listrings +workshop_formspec = workshop_formspec.. + "listring[current_player;main]".. + "listring[context;src]".. + "listring[current_player;main]".. + "listring[context;upgrade1]".. + "listring[current_player;main]".. + "listring[context;upgrade2]".. + "listring[current_player;main]" + +local run = function(pos, node) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + local eu_input = meta:get_int("MV_EU_input") + local machine_name = S("@1 Tool Workshop", S("MV")) + + -- Setup meta data if it does not exist. + if not eu_input then + meta:set_int("MV_EU_demand", workshop_demand[1]) + meta:set_int("MV_EU_input", 0) + return + end + + local EU_upgrade, tube_upgrade = technic.handle_machine_upgrades(meta) + + local repairable = false + local srcstack = inv:get_stack("src", 1) + if not srcstack:is_empty() then + local itemdef = minetest.registered_items[srcstack:get_name()] + if itemdef and + (not itemdef.wear_represents or + itemdef.wear_represents == "mechanical_wear") and + srcstack:get_wear() ~= 0 then + repairable = true + end + end + technic.handle_machine_pipeworks(pos, tube_upgrade, function(pos2, x_velocity, z_velocity) + if not repairable then + technic.send_items(pos2, x_velocity, z_velocity, "src") + end + end) + if not repairable then + meta:set_string("infotext", S("@1 Idle", machine_name)) + meta:set_int("MV_EU_demand", 0) + return + end + + if eu_input < workshop_demand[EU_upgrade+1] then + meta:set_string("infotext", S("@1 Unpowered", machine_name)) + elseif eu_input >= workshop_demand[EU_upgrade+1] then + meta:set_string("infotext", S("@1 Active", machine_name) .. "\n" .. + S("Demand: @1", technic.EU_string(workshop_demand[EU_upgrade+1]))) + srcstack:add_wear(-1000) + inv:set_stack("src", 1, srcstack) + end + meta:set_int("MV_EU_demand", workshop_demand[EU_upgrade+1]) +end + +minetest.register_node("technic:tool_workshop", { + description = S("@1 Tool Workshop", S("MV")), + paramtype2 = "facedir", + tiles = { + "technic_workshop_top.png"..tube_entry, + "technic_machine_bottom.png"..tube_entry, + "technic_workshop_side.png"..tube_entry, + "technic_workshop_side.png"..tube_entry, + "technic_workshop_side.png"..tube_entry, + "technic_workshop_side.png" + }, + groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2, + technic_machine=1, technic_mv=1, tubedevice=1, tubedevice_receiver=1, axey=2, handy=1}, + is_ground_content = false, + _mcl_blast_resistance = 1, + _mcl_hardness = 0.8, + connect_sides = {"bottom", "back", "left", "right"}, + sounds = technic.sounds.node_sound_wood_defaults(), + on_construct = function(pos) + local meta = minetest.get_meta(pos) + meta:set_string("infotext", S("@1 Tool Workshop", S("MV"))) + meta:set_string("formspec", workshop_formspec) + local inv = meta:get_inventory() + inv:set_size("src", 1) + inv:set_size("upgrade1", 1) + inv:set_size("upgrade2", 1) + end, + can_dig = technic.machine_can_dig, + allow_metadata_inventory_put = technic.machine_inventory_put, + allow_metadata_inventory_take = technic.machine_inventory_take, + on_metadata_inventory_move = technic.machine_on_inventory_move, + on_metadata_inventory_put = technic.machine_on_inventory_put, + on_metadata_inventory_take = technic.machine_on_inventory_take, + tube = { + can_insert = function (pos, node, stack, direction) + return minetest.get_meta(pos):get_inventory():room_for_item("src", stack) + end, + insert_object = function (pos, node, stack, direction) + return minetest.get_meta(pos):get_inventory():add_item("src", stack) + end, + connect_sides = {left = 1, right = 1, back = 1, top = 1, bottom = 1}, + }, + technic_run = run, + after_place_node = pipeworks.after_place, + after_dig_node = technic.machine_after_dig_node +}) + +technic.register_machine("MV", "technic:tool_workshop", technic.receiver) + diff --git a/mods/technic_plus_beta/technic/machines/MV/wind_mill.lua b/mods/technic_plus_beta/technic/machines/MV/wind_mill.lua new file mode 100644 index 00000000..f9ec37e1 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/MV/wind_mill.lua @@ -0,0 +1,102 @@ + +local S = technic.getter + +minetest.register_craft({ + output = 'technic:wind_mill_frame 5', + recipe = { + {'technic:carbon_steel_ingot', '', 'technic:carbon_steel_ingot'}, + {'', 'technic:carbon_steel_ingot', ''}, + {'technic:carbon_steel_ingot', '', 'technic:carbon_steel_ingot'}, + } +}) + +minetest.register_craft({ + output = 'technic:wind_mill', + recipe = { + {'', 'basic_materials:motor', ''}, + {'technic:carbon_steel_ingot', 'technic:carbon_steel_block', 'technic:carbon_steel_ingot'}, + {'', 'technic:mv_cable', ''}, + } +}) + +minetest.register_node("technic:wind_mill_frame", { + description = S("Wind Mill Frame"), + drawtype = "glasslike_framed", + tiles = {"technic_carbon_steel_block.png", "default_glass.png"}, + sunlight_propagates = true, + groups = {cracky=3, pickaxey=1}, + is_ground_content = false, + _mcl_blast_resistance = 1, + _mcl_hardness = 0.8, + sounds = technic.sounds.node_sound_stone_defaults(), + paramtype = "light", +}) + +local function check_wind_mill(pos) + if pos.y < 30 then + return false + end + pos = {x=pos.x, y=pos.y, z=pos.z} + for i = 1, 20 do + pos.y = pos.y - 1 + local node = minetest.get_node_or_nil(pos) + if not node then + -- we reached CONTENT_IGNORE, we can assume, that nothing changed + -- as the user will have to load the block to change it + return + end + if node.name ~= "technic:wind_mill_frame" then + return false + end + end + return true +end + +local run = function(pos, node) + local meta = minetest.get_meta(pos) + local machine_name = S("Wind @1 Generator", S("MV")) + + local check = check_wind_mill(pos) + if check == false then + meta:set_int("MV_EU_supply", 0) + meta:set_string("infotext", S("@1 Improperly Placed", machine_name)) + elseif check == true then + local power = math.min(pos.y * 100, 5000) + meta:set_int("MV_EU_supply", power) + meta:set_string("infotext", S("@1 (@2)", machine_name, + technic.EU_string(power))) + end + -- check == nil: assume nothing has changed +end + +minetest.register_node("technic:wind_mill", { + description = S("Wind @1 Generator", S("MV")), + tiles = {"technic_carbon_steel_block.png"}, + paramtype2 = "facedir", + groups = {cracky=1, technic_machine=1, technic_mv=1, pickaxey=2}, + is_ground_content = false, + _mcl_blast_resistance = 1, + _mcl_hardness = 0.8, + connect_sides = {"top", "bottom", "back", "left", "right"}, + sounds = technic.sounds.node_sound_stone_defaults(), + drawtype = "nodebox", + paramtype = "light", + node_box = { + type = "fixed", + fixed = { + {-0.5, -0.5, -0.5, 0.5, 0.5, 0.5}, -- Main box + {-0.1, -0.1, -0.5, 0.1, 0.1, -0.6}, -- Shaft + {-0.1, -1, -0.6, 0.1, 1, -0.7}, -- Vertical blades + {-1, -0.1, -0.6, 1, 0.1, -0.7}, -- Horizontal blades + } + }, + on_construct = function(pos) + local meta = minetest.get_meta(pos) + meta:set_string("infotext", S("Wind @1 Generator", S("MV"))) + meta:set_int("MV_EU_supply", 0) + end, + technic_run = run, +}) + +technic.register_machine("MV", "technic:wind_mill", technic.producer) + diff --git a/mods/technic_plus_beta/technic/machines/compat/api.lua b/mods/technic_plus_beta/technic/machines/compat/api.lua new file mode 100644 index 00000000..87ee148d --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/compat/api.lua @@ -0,0 +1,87 @@ +local S = technic.getter + +-- Registration compatibility shim to transform Technic 1.x arguments to 2.x +-- This could be made stricter for new style API by utilizing `assert` + +local function shallow_copy(t) + local result = {} + for k, v in pairs(t) do + result[k] = v + end + return setmetatable(result, getmetatable(t)) +end + +function technic.register_compat_v1_to_v2(name, data, default_name) + local modname = minetest.get_current_modname() + local colon, def + if type(name) == "table" then + -- Log old API usage, swap name to def and set name from def table + local msg = "Deprecated Technic registration API call: %s (%s)" + def = shallow_copy(name) + name = def.machine_name or default_name + def.machine_name = nil + def.description = def.machine_desc + def.machine_desc = nil + minetest.log("warning", msg:format(tostring(name), tostring(modname))) + else + def = shallow_copy(data) + end + -- Input name can be "modname:nodename", ":modname:nodename" or "nodename". + -- If name is presented as "nodename" then check for old def.modname field. + if name:find(":") then + colon, modname, name = name:match("(:?)(.+):(.+)") + -- Make sure that all fields are set, can be empty but pattern matcher must succeed. + assert(colon and modname and name) + elseif def.modname then + minetest.log("warning", ("Definition contains modname for %s"):format(name)) + colon = ":" + modname = def.modname + end + return (colon or ""), modname, name, def +end + +-- Registration functions in Technic 1.x version + +function technic.register_alloy_furnace(def) + def.typename = "alloy" + def.description = S("@1 Alloy Furnace", S(def.tier)) + def.insert_object = technic.insert_object_unique_stack + def.can_insert = technic.can_insert_unique_stack + technic.register_base_machine(def) +end + +function technic.register_centrifuge(def) + def.typename = "separating" + def.description = S("@1 Centrifuge", S(def.tier)) + technic.register_base_machine(def) +end + +function technic.register_compressor(def) + def.typename = "compressing" + def.description = S("@1 Compressor", S(def.tier)) + technic.register_base_machine(def) +end + +function technic.register_extractor(def) + def.typename = "extracting" + def.description = S("@1 Extractor", S(def.tier)) + technic.register_base_machine(def) +end + +function technic.register_freezer(def) + def.typename = "freezing" + def.description = S("@1 Freezer", S(def.tier)) + technic.register_base_machine(def) +end + +function technic.register_grinder(def) + def.typename = "grinding" + def.description = S("@1 Grinder", S(def.tier)) + technic.register_base_machine(def) +end + +function technic.register_electric_furnace(def) + def.typename = "cooking" + def.description = S("@1 Furnace", S(def.tier)) + technic.register_base_machine(def) +end diff --git a/mods/technic_plus_beta/technic/machines/compat/digtron.lua b/mods/technic_plus_beta/technic/machines/compat/digtron.lua new file mode 100644 index 00000000..f7c64da2 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/compat/digtron.lua @@ -0,0 +1,109 @@ +-- +-- Compatibility hacks for digtron to work well with new Technic Plus network and power tools +-- +-- More information: +-- https://github.com/mt-mods/technic/issues/100 +-- https://github.com/mt-mods/technic/issues/233 +-- +-- Disable some luacheck warnings to allow having original formatting here +-- luacheck: no max line length +-- luacheck: globals digtron + +-- Only relevant sections modified, you can directly compare this with upstream function defined in util.lua +local node_inventory_table = {type="node"} +local function tap_batteries(battery_positions, target, test) + if (battery_positions == nil) then + return 0 + end + + local current_burned = 0 + -- 1 coal block is 370 PU + -- 1 coal lump is 40 PU + -- An RE battery holds 10000 EU of charge + -- local power_ratio = 100 -- How much charge equals 1 unit of PU from coal + -- setting Moved to digtron.config.power_ratio + + for k, location in pairs(battery_positions) do + if current_burned > target then + break + end + node_inventory_table.pos = location.pos + local inv = minetest.get_inventory(node_inventory_table) + local invlist = inv:get_list("batteries") + + if (invlist == nil) then -- This check shouldn't be needed, it's yet another guard against https://github.com/minetest/minetest/issues/8067 + break + end + + for i, itemstack in pairs(invlist) do + local charge = technic.get_charge(itemstack) + local power_available = math.floor(charge / digtron.config.power_ratio) + if power_available ~= 0 then + local actual_burned = power_available -- we just take all we have from the battery, since they aren't stackable + -- don't bother recording the items if we're just testing, nothing is actually being removed. + if test ~= true then + -- since we are taking everything, the wear and charge can both be set to 0 + technic.set_charge(itemstack, 0) + end + current_burned = current_burned + actual_burned + end + + if current_burned > target then + break + end + end + + if test ~= true then + -- only update the list if we're doing this for real. + inv:set_list("batteries", invlist) + end + end + return current_burned +end + +local function power_connector_compat() + local digtron_technic_run = minetest.registered_nodes["digtron:power_connector"].technic_run + minetest.override_item("digtron:power_connector",{ + technic_run = function(pos, node) + local network_id = technic.pos2network(pos) + local sw_pos = network_id and technic.network2sw_pos(network_id) + local meta = minetest.get_meta(pos) + meta:set_string("HV_network", sw_pos and minetest.pos_to_string(sw_pos) or "") + return digtron_technic_run(pos, node) + end, + technic_on_disable = function(pos, node) + local meta = minetest.get_meta(pos) + meta:set_string("HV_network", "") + meta:set_string("HV_EU_input", "") + end, + }) +end + +local function battery_holder_compat() + -- Override battery holder + local tube = minetest.registered_nodes["digtron:battery_holder"].tube + tube.can_insert = function(pos, node, stack, direction) + if technic.get_charge(stack) > 0 then + local inv = minetest.get_meta(pos):get_inventory() + return inv:room_for_item("batteries", stack) + end + return false + end + minetest.override_item("digtron:battery_holder",{ + allow_metadata_inventory_put = function(pos, listname, index, stack, player) + return (listname == "batteries" and technic.get_charge(stack) > 0) and stack:get_count() or 0 + end, + tube = tube, + }) + -- Override digtron.tap_batteries + digtron.tap_batteries = tap_batteries +end + +minetest.register_on_mods_loaded(function() + if minetest.registered_nodes["digtron:power_connector"] then + power_connector_compat() + end + if minetest.registered_nodes["digtron:battery_holder"] then + battery_holder_compat() + end +end) diff --git a/mods/technic_plus_beta/technic/machines/compat/tools.lua b/mods/technic_plus_beta/technic/machines/compat/tools.lua new file mode 100644 index 00000000..701497b1 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/compat/tools.lua @@ -0,0 +1,139 @@ +-- +-- This allows using old style technic.register_power_tool tool registration function. +-- +-- To make tool fully compatible replace `minetest.register_tool` with `technic.register_power_tool` +-- and add `technic_max_charge` field for tool definition. +-- Fields `wear_represents` and `on_refill` can be removed if using defaults. +-- +-- Does not offer compatibility for charger mods: mods that charge or discharge registered power tools. +-- Compatibility for those can be achieved by using `.technic_get_charge` / `.technic_set_charge`. +-- + +local function compat_set_RE_wear(stack, charge) + local def = stack:get_definition() + if def.technic_wear_factor then + local wear = math.floor(charge * def.technic_wear_factor + 0.5) + stack:set_wear(wear > 0 and 65536 - wear or 0) + end +end + +local function compat_technic_get_charge(stack) + local def = stack:get_definition() + if def.technic_max_charge then + local legacy_fields = minetest.deserialize(stack:get_meta():get_string("")) or {} + return legacy_fields.charge or 0, def.technic_max_charge + end + return 0, 0 +end + +local function compat_technic_set_charge(stack, charge) + compat_set_RE_wear(stack, charge) + local meta = stack:get_meta() + local legacy_fields = minetest.deserialize(meta:get_string("")) or {} + legacy_fields.charge = charge + meta:set_string("", minetest.serialize(legacy_fields)) +end + +-- This attempts to find out if mod is aware of technic.plus version property and marks mod as `plus_aware` if +-- it tries to read `technic.plus` value. Marked tools wont receive automatic metadata compatibility functions. +local plus_aware = {} +do + local original_mt = getmetatable(technic) + local mt = original_mt and table.copy(original_mt) or {} + local mt_index = mt.__index or rawget + local plus = technic.plus + rawset(technic, "plus", nil) + + -- Extend `__index` lookup function for `technic` to collect mod names that are reading `technic.plus` property + function mt:__index(key) + if key == "plus" then + local modname = minetest.get_current_modname() + if modname then + plus_aware[modname] = true + end + return plus + end + return mt_index(self, key) + end + setmetatable(technic, mt) + + -- Restore version and metatable, this must happen after handling register_on_mods_loaded callbacks + minetest.after(0, function() + rawset(technic, "plus", plus) + setmetatable(technic, original_mt) + end) +end + +-- Override `technic.register_power_tool` to handle old style registration that was only setting max charge value. +local register_power_tool = technic.register_power_tool +function technic.register_power_tool(itemname, def_or_max_charge) + if type(def_or_max_charge) == "number" then + minetest.log("warning", "Deprecated technic.register_power_tool use. Setting max_charge for "..itemname) + technic.power_tools[itemname] = def_or_max_charge + minetest.register_on_mods_loaded(function() + minetest.log("warning", "Deprecated technic.register_power_tool use. Ensuring fields for "..itemname) + local redef = minetest.registered_items[itemname] + if redef and redef.wear_represents == "technic_RE_charge" then + -- Override power tools that called register_power_tool but do not have on_refill function defined + local overrides = { + technic_max_charge = def_or_max_charge, + technic_wear_factor = 65535 / def_or_max_charge, + on_refill = function(stack) + local tooldef = stack:get_definition() + tooldef.technic_set_charge(stack, def_or_max_charge) + return stack + end, + } + -- Add legacy meta handlers if mod did not attempt to read technic.plus value + local modname = itemname:match(":?(.+):") + if plus_aware[modname] then + overrides.technic_get_charge = redef.technic_get_charge or technic.get_charge + overrides.technic_set_charge = redef.technic_set_charge or technic.set_charge + minetest.log("warning", "Mod "..modname.." seems to be aware of technic.plus but ".. + itemname.." is still using deprecated registration, skipping meta charge compatibility.") + elseif not redef.technic_get_charge and not redef.technic_set_charge then + overrides.technic_get_charge = compat_technic_get_charge + overrides.technic_set_charge = compat_technic_set_charge + minetest.log("warning", "Using metadata charge values for "..itemname) + end + -- Override tool definition with added / new values + minetest.override_item(itemname, overrides) + minetest.log("warning", "Updated legacy Technic power tool definition for "..itemname) + else + minetest.log("error", "Technic compatibility overrides skipped for "..itemname..", charging might ".. + 'cause crash. Upgrading to technic.register_power_tool("'..itemname..'", {itemdef}) recommended.') + end + end) + else + return register_power_tool(itemname, def_or_max_charge) + end +end + +technic.set_RE_charge = assert(technic.set_charge) +technic.get_RE_charge = assert(technic.get_charge) +technic.use_RE_charge = assert(technic.use_charge) + +-- Same as `technic.set_charge` but without calling through `itemdef.technic_set_charge`. +function technic.set_RE_wear(stack, charge) + minetest.log("warning", "Use of deprecated function technic.set_RE_wear with stack: "..stack:get_name()) + compat_set_RE_wear(stack, charge) +end + +-- Old utility function to recharge tools +local function charge_tools(meta, batt_charge, charge_step) + local src_stack = meta:get_inventory():get_stack("src", 1) + local def = src_stack:get_definition() + if not def or not def.technic_max_charge or src_stack:is_empty() then + return batt_charge, false + end + local new_charge = math.min(def.technic_max_charge, def.technic_get_charge(src_stack) + charge_step) + def.technic_set_charge(src_stack, new_charge) + meta:get_inventory():set_stack("src", 1, src_stack) + return batt_charge, (def.technic_max_charge == new_charge) +end + +function technic.charge_tools(...) + minetest.log("warning", "Use of deprecated function technic.charge_tools") + technic.charge_tools = charge_tools + return charge_tools(...) +end diff --git a/mods/technic_plus_beta/technic/machines/init.lua b/mods/technic_plus_beta/technic/machines/init.lua new file mode 100644 index 00000000..2cfdb229 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/init.lua @@ -0,0 +1,80 @@ +local path = technic.modpath.."/machines" + +technic.digilines = { + rules = { + -- digilines.rules.default + {x= 1,y= 0,z= 0},{x=-1,y= 0,z= 0}, -- along x beside + {x= 0,y= 0,z= 1},{x= 0,y= 0,z=-1}, -- along z beside + {x= 1,y= 1,z= 0},{x=-1,y= 1,z= 0}, -- 1 node above along x diagonal + {x= 0,y= 1,z= 1},{x= 0,y= 1,z=-1}, -- 1 node above along z diagonal + {x= 1,y=-1,z= 0},{x=-1,y=-1,z= 0}, -- 1 node below along x diagonal + {x= 0,y=-1,z= 1},{x= 0,y=-1,z=-1}, -- 1 node below along z diagonal + -- added rules for digi cable + {x = 0, y = -1, z = 0}, -- along y below + }, + rules_allfaces = { + {x= 1, y= 0, z= 0}, {x=-1, y= 0, z= 0}, -- along x beside + {x= 0, y= 1, z= 0}, {x= 0, y=-1, z= 0}, -- along y above and below + {x= 0, y= 0, z= 1}, {x= 0, y= 0, z=-1}, -- along z beside + } +} + +-- Compatibility shim to allow old API usage +dofile(path.."/compat/api.lua") + +-- https://github.com/mt-mods/technic/issues/100 +dofile(path.."/compat/digtron.lua") + +dofile(path.."/network.lua") + +dofile(path.."/overload.lua") + +dofile(path.."/register/init.lua") + +-- Tiers +dofile(path.."/LV/init.lua") +dofile(path.."/MV/init.lua") +dofile(path.."/HV/init.lua") + +dofile(path.."/switching_station.lua") +dofile(path.."/switching_station_globalstep.lua") + +dofile(path.."/power_monitor.lua") +dofile(path.."/supply_converter.lua") + +dofile(path.."/other/init.lua") + + +-- Metadata cleanup LBM, removes old metadata values from nodes +minetest.register_lbm({ + name = "technic:metadata_cleanup", + nodenames = { + "group:technic_machine", + "group:technic_all_tiers", + "technic:switching_station", + "technic:power_monitor", + }, + action = function(pos, node) + -- Delete all listed metadata key/value pairs from technic machines + local keys = { + "LV_EU_timeout", "MV_EU_timeout", "HV_EU_timeout", + "LV_network", "MV_network", "HV_network", + "active_pos", "supply", "demand", + "battery_count", "battery_charge", "battery_charge_max", + } + local meta = minetest.get_meta(pos) + for _,key in ipairs(keys) do + -- Value of `""` will delete the key. + meta:set_string(key, "") + end + if node.name == "technic:switching_station" then + meta:set_string("active", "") + + -- start nodetimer if not already started + local timer = minetest.get_node_timer(pos) + if not timer:is_started() then + timer:start(1.0) + end + end + end, +}) diff --git a/mods/technic_plus_beta/technic/machines/network.lua b/mods/technic_plus_beta/technic/machines/network.lua new file mode 100644 index 00000000..d26212d6 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/network.lua @@ -0,0 +1,767 @@ +-- +-- Power network specific functions and data should live here +-- +local S = technic.getter + +local off_delay_seconds = tonumber(technic.config:get("switch_off_delay_seconds")) + +local network_node_arrays = {"PR_nodes","BA_nodes","RE_nodes"} + +technic.active_networks = {} +local networks = {} +technic.networks = networks +local technic_cables = {} +technic.cables = technic_cables + +local poshash = minetest.hash_node_position +local hashpos = minetest.get_position_from_hash + +function technic.create_network(sw_pos) + local network_id = poshash({x=sw_pos.x,y=sw_pos.y-1,z=sw_pos.z}) + technic.build_network(network_id) + return network_id +end + +local function pos_in_array(pos, array) + for _,pos2 in ipairs(array) do + if pos.x == pos2.x and pos.y == pos2.y and pos.z == pos2.z then + return true + end + end + return false +end + +function technic.merge_networks(net1, net2) + -- TODO: Optimize for merging small network into larger by first checking network + -- node counts for both networks and keep network id with most nodes. + assert(type(net1) == "table", "Invalid net1 for technic.merge_networks") + assert(type(net2) == "table", "Invalid net2 for technic.merge_networks") + assert(net1 ~= net2, "Deadlock recipe: net1 & net2 equals for technic.merge_networks") + -- Move data in cables table + for node_id,cable_net_id in pairs(technic_cables) do + if cable_net_id == net2.id then + technic_cables[node_id] = net1.id + end + end + -- Move data in machine tables + for _,tablename in ipairs(network_node_arrays) do + for _,pos in ipairs(net2[tablename]) do + table.insert(net1[tablename], pos) + end + end + -- Move data in all_nodes table + for node_id,pos in pairs(net2.all_nodes) do + net1.all_nodes[node_id] = pos + end + -- Merge queues for incomplete networks + if net1.queue and net2.queue then + for _,pos in ipairs(net2.queue) do + if not pos_in_array(pos, net1.queue) then + table.insert(net1.queue, pos) + end + end + else + net1.queue = net1.queue or net2.queue + end + -- Remove links to net2 + networks[net2.id] = nil + technic.active_networks[net2.id] = nil +end + +function technic.activate_network(network_id, timeout) + -- timeout is optional ttl for network in seconds, if not specified use default + local network = networks[network_id] + if network then + -- timeout is absolute time in microseconds + network.timeout = minetest.get_us_time() + ((timeout or off_delay_seconds) * 1000 * 1000) + technic.active_networks[network_id] = network + end +end + +function technic.sw_pos2tier(pos, load_node) + -- Get cable tier for switching station or nil if no cable + -- load_node true to use minetest.load_area to load node + local cable_pos = {x=pos.x,y=pos.y-1,z=pos.z} + if load_node then + minetest.load_area(cable_pos) + end + return technic.get_cable_tier(minetest.get_node(cable_pos).name) +end + +-- Destroy network data +function technic.remove_network(network_id) + for pos_hash,cable_net_id in pairs(technic_cables) do + if cable_net_id == network_id then + technic_cables[pos_hash] = nil + end + end + networks[network_id] = nil + technic.active_networks[network_id] = nil +end + +local function switch_index(pos, net) + for index, spos in ipairs(net.swpos) do + if pos.x == spos.x and pos.y == spos.y and pos.z == spos.z then + return index + end + end +end + +function technic.switch_insert(pos, net) + if not switch_index(pos, net) then + table.insert(net.swpos, table.copy(pos)) + end + return #net.swpos +end + +function technic.switch_remove(pos, net) + local swindex = switch_index(pos, net) + if swindex then + table.remove(net.swpos, swindex) + end + return #net.swpos +end + +function technic.sw_pos2network(pos) + return technic_cables[poshash({x=pos.x,y=pos.y-1,z=pos.z})] +end + +function technic.pos2network(pos) + return technic_cables[poshash(pos)] +end + +function technic.network2pos(network_id) + return hashpos(network_id) +end + +function technic.network2sw_pos(network_id) + -- Return switching station position for network. + -- It is not guaranteed that position actually contains switching station. + local sw_pos = hashpos(network_id) + sw_pos.y = sw_pos.y + 1 + return sw_pos +end + +function technic.network_infotext(network_id, text) + local network = networks[network_id] + if network then + if text then + network.infotext = text + elseif network.queue then + local count = 0 + for _ in pairs(network.all_nodes) do count = count + 1 end + return S("Building Network: @1 Nodes", count) + else + return network.infotext + end + end +end + +local node_timeout = {} +local default_timeout = 2 + +function technic.set_default_timeout(timeout) + default_timeout = timeout or 2 +end + +function technic.get_timeout(tier, pos) + if node_timeout[tier] == nil then + -- it is normal that some multi tier nodes always drop here when checking all LV, MV and HV tiers + return 0 + end + return node_timeout[tier][poshash(pos)] or 0 +end + +local function touch_node(tier, pos, timeout) + if node_timeout[tier] == nil then + -- this should get built up during registration + node_timeout[tier] = {} + end + node_timeout[tier][poshash(pos)] = timeout or default_timeout +end +technic.touch_node = touch_node + +function technic.disable_machine(pos, node) + local nodedef = minetest.registered_nodes[node.name] + if nodedef then + local meta = minetest.get_meta(pos) + meta:set_string("infotext", S("@1 Has No Network", nodedef.description)) + end + if nodedef and nodedef.technic_disabled_machine_name then + node.name = nodedef.technic_disabled_machine_name + minetest.swap_node(pos, node) + end + if nodedef and nodedef.technic_on_disable then + nodedef.technic_on_disable(pos, node) + end + local node_id = poshash(pos) + for _,nodes in pairs(node_timeout) do + nodes[node_id] = nil + end +end + +local function match_cable_tier_filter(name, tiers) + -- Helper to check for set of cable tiers + if tiers then + for _, tier in ipairs(tiers) do if technic.is_tier_cable(name, tier) then return true end end + return false + end + return technic.get_cable_tier(name) ~= nil +end + +local function get_neighbors(pos, tiers) + local tier_machines = tiers and technic.machines[tiers[1]] + local is_cable = match_cable_tier_filter(minetest.get_node(pos).name, tiers) + local network = is_cable and technic.networks[technic.pos2network(pos)] + local cables = {} + local machines = {} + local positions = { + {x=pos.x+1, y=pos.y, z=pos.z}, + {x=pos.x-1, y=pos.y, z=pos.z}, + {x=pos.x, y=pos.y+1, z=pos.z}, + {x=pos.x, y=pos.y-1, z=pos.z}, + {x=pos.x, y=pos.y, z=pos.z+1}, + {x=pos.x, y=pos.y, z=pos.z-1}, + } + for _,connected_pos in ipairs(positions) do + local name = minetest.get_node(connected_pos).name + if tier_machines and tier_machines[name] then + table.insert(machines, connected_pos) + elseif match_cable_tier_filter(name, tiers) then + local cable_network = technic.networks[technic.pos2network(connected_pos)] + table.insert(cables,{ + pos = connected_pos, + network = cable_network, + }) + if not network then network = cable_network end + end + end + return network, cables, machines +end + +function technic.place_network_node(pos, tiers, name) + -- Get connections and primary network if there's any + local network, cables, machines = get_neighbors(pos, tiers) + if not network then + -- We're evidently not on a network, nothing to add ourselves to + return + end + + -- Attach to primary network, this must be done before building branches from this position + technic.add_network_node(pos, network) + if not match_cable_tier_filter(name, tiers) then + if technic.machines[tiers[1]][name] == technic.producer_receiver then + -- FIXME: Multi tier machine like supply converter should also attach to other networks around pos. + -- Preferably also with connection rules defined for machine. + -- nodedef.connect_sides could be used to generate these rules. + -- For now, assume that all multi network machines belong to technic.producer_receiver group: + -- Get cables and networks around PR_RE machine + local _, machine_cables, _ = get_neighbors(pos) + for _,connection in ipairs(machine_cables) do + if connection.network and connection.network.id ~= network.id then + -- Attach PR_RE machine to secondary networks (last added is primary until above note is resolved) + technic.add_network_node(pos, connection.network) + end + end + else + -- Check connected cables for foreign networks, overload if machine was connected to multiple networks + for _, connection in ipairs(cables) do + if connection.network and connection.network.id ~= network.id then + technic.overload_network(connection.network.id) + technic.overload_network(network.id) + end + end + end + -- Machine added, skip all network building + return + end + + -- Attach neighbor machines if cable was added + for _,machine_pos in ipairs(machines) do + technic.add_network_node(machine_pos, network) + end + + -- Attach neighbor cables + for _,connection in ipairs(cables) do + if connection.network then + if connection.network.id ~= network.id then + -- Remove network if position belongs to another network + -- FIXME: Network requires partial rebuild but avoid doing it here if possible. + -- This might cause problems when merging two active networks into one + technic.remove_network(network.id) + technic.remove_network(connection.network.id) + connection.network = nil + end + else + -- There's cable that does not belong to any network, attach whole branch + technic.add_network_node(connection.pos, network) + technic.add_network_branch({connection.pos}, network) + end + end +end + +-- Remove machine or cable from network +local function remove_network_node(network_id, pos) + local network = networks[network_id] + if not network then return end + -- Clear hash tables, cannot use table.remove + local node_id = poshash(pos) + technic_cables[node_id] = nil + network.all_nodes[node_id] = nil + -- TODO: All following things can be skipped if node is not machine + -- check here if it is or is not cable + -- or add separate function to remove cables and move responsibility to caller + -- Clear indexed arrays, do NOT leave holes + local machine_removed = false + for _,tblname in ipairs(network_node_arrays) do + local tbl = network[tblname] + for i=#tbl,1,-1 do + local mpos = tbl[i] + if mpos.x == pos.x and mpos.y == pos.y and mpos.z == pos.z then + table.remove(tbl, i) + machine_removed = true + break + end + end + end + if machine_removed then + -- Machine can still be in world, just not connected to any network. If so then disable it. + local node = minetest.get_node(pos) + technic.disable_machine(pos, node) + end +end + +function technic.remove_network_node(pos, tiers, name) + -- Get the network and neighbors + local network, cables, machines = get_neighbors(pos, tiers) + if not network then return end + + if not match_cable_tier_filter(name, tiers) then + -- Machine removed, skip cable checks to prevent unnecessary network cleanups + for _,connection in ipairs(cables) do + if connection.network then + -- Remove machine from all networks around it + remove_network_node(connection.network.id, pos) + end + end + return + end + + if #cables == 1 then + -- Dead end cable removed, remove it from the network + remove_network_node(network.id, pos) + -- Remove neighbor machines from network if cable was removed + if match_cable_tier_filter(name, tiers) then + for _,machine_pos in ipairs(machines) do + local net, _, _ = get_neighbors(machine_pos, tiers) + if not net then + -- Remove machine from network if it does not have other connected cables + remove_network_node(network.id, machine_pos) + end + end + end + else + -- TODO: Check branches around and switching stations for branches: + -- remove branches that do not have switching station. Switching stations not tracked but could be easily tracked. + -- remove branches not connected to another branch. Individual branches not tracked, requires simple AI heuristics. + -- move branches that have switching station to new networks without checking or loading actual nodes in world. + -- To do all this network must be aware of individual branches and switching stations, might not be worth it... + -- For now remove whole network and let ABM rebuild it + technic.remove_network(network.id) + end +end + +-- +-- Functions to traverse the electrical network +-- + +-- Add a machine node to the LV/MV/HV network +local function add_network_machine(nodes, pos, network_id, all_nodes, multitier) + local node_id = poshash(pos) + local net_id_old = technic_cables[node_id] + if net_id_old == nil or (multitier and net_id_old ~= network_id and all_nodes[node_id] == nil) then + -- Add machine to network only if it is not already added + table.insert(nodes, pos) + -- FIXME: Machines connecting to multiple networks should have way to store multiple network ids + technic_cables[node_id] = network_id + all_nodes[node_id] = pos + return true + elseif not multitier and net_id_old ~= network_id then + -- Do not allow running from multiple networks, trigger overload + technic.overload_network(network_id) + technic.overload_network(net_id_old) + local meta = minetest.get_meta(pos) + meta:set_string("infotext",S("Network Overloaded")) + end +end + +-- Add a wire node to the LV/MV/HV network +local function add_cable_node(pos, network) + local node_id = poshash(pos) + if not technic_cables[node_id] then + technic_cables[node_id] = network.id + network.all_nodes[node_id] = pos + if network.queue then + table.insert(network.queue, pos) + end + elseif technic_cables[node_id] ~= network.id then + -- Conflicting network connected, merge networks if both are still in building stage + local net2 = networks[technic_cables[node_id]] + if net2 and net2.queue then + technic.merge_networks(network, net2) + end + end +end + +-- Generic function to add found connected nodes to the right classification array +local function add_network_node(network, pos, machines) + local name = technic.get_or_load_node(pos).name + + if technic.get_cable_tier(name) == network.tier then + add_cable_node(pos, network) + elseif machines[name] then + if machines[name] == technic.producer then + add_network_machine(network.PR_nodes, pos, network.id, network.all_nodes) + elseif machines[name] == technic.receiver then + add_network_machine(network.RE_nodes, pos, network.id, network.all_nodes) + elseif machines[name] == technic.producer_receiver then + if add_network_machine(network.PR_nodes, pos, network.id, network.all_nodes, true) then + table.insert(network.RE_nodes, pos) + end + elseif machines[name] == technic.battery then + add_network_machine(network.BA_nodes, pos, network.id, network.all_nodes) + end + end +end + +-- Generic function to add single nodes to the right classification array of existing network +function technic.add_network_node(pos, network) + add_network_node(network, pos, technic.machines[network.tier]) +end + +-- Traverse a network given a list of machines and a cable type name +local function traverse_network(network, pos, machines) + local positions = { + {x=pos.x+1, y=pos.y, z=pos.z}, + {x=pos.x-1, y=pos.y, z=pos.z}, + {x=pos.x, y=pos.y+1, z=pos.z}, + {x=pos.x, y=pos.y-1, z=pos.z}, + {x=pos.x, y=pos.y, z=pos.z+1}, + {x=pos.x, y=pos.y, z=pos.z-1}} + for i, cur_pos in pairs(positions) do + if not network.all_nodes[poshash(cur_pos)] then + add_network_node(network, cur_pos, machines) + end + end +end + +local function touch_nodes(list, tier) + for _, pos in ipairs(list) do + touch_node(tier, pos) -- Touch node + end +end + +local function get_network(network_id, tier) + local cached = networks[network_id] + if cached and not cached.queue and cached.tier == tier then + touch_nodes(cached.PR_nodes, tier) + touch_nodes(cached.BA_nodes, tier) + touch_nodes(cached.RE_nodes, tier) + return cached.PR_nodes, cached.BA_nodes, cached.RE_nodes + end + return technic.build_network(network_id) +end + +function technic.add_network_branch(queue, network) + -- Adds whole branch to network, queue positions can be used to bypass sub branches + local machines = technic.machines[network.tier] + --print(string.format("technic.add_network_branch(%s, %s, %.17g)",queue,minetest.pos_to_string(sw_pos),network.id)) + local t1 = minetest.get_us_time() + while next(queue) do + local to_visit = {} + for _, pos in ipairs(queue) do + network.queue = to_visit + traverse_network(network, pos, machines) + end + queue = to_visit + if minetest.get_us_time() - t1 > 10000 then + -- time limit exceeded + break + end + end + -- Set build queue for network if network build was not finished within time limits + network.queue = #queue > 0 and queue +end + +-- Battery charge status updates for network +local function update_battery(self, charge, max_charge, supply, demand) + self.battery_charge = self.battery_charge + charge + self.battery_charge_max = self.battery_charge_max + max_charge + self.battery_supply = self.battery_supply + supply + self.battery_demand = self.battery_demand + demand + if demand ~= 0 then + self.BA_count_active = self.BA_count_active + 1 + self.BA_charge_active = self.BA_charge_active + charge + end +end + +-- Moving average function generator +local function sma(period) + local values = {} + local index = 1 + local sum = 0 + return function(n) + -- Add new value and return average + sum = sum - (values[index] or 0) + n + values[index] = n + index = index ~= period and index + 1 or 1 + return sum / #values + end +end + +function technic.build_network(network_id) + local network = networks[network_id] + if network and not network.queue then + -- Network exists complete and cached + return network.PR_nodes, network.BA_nodes, network.RE_nodes + elseif not network then + -- Build new network if network does not exist + technic.remove_network(network_id) + local sw_pos = technic.network2sw_pos(network_id) + local tier = sw_pos and technic.sw_pos2tier(sw_pos) + if not tier then + -- Failed to get initial cable node for network + return + end + network = { + -- Build queue + queue = {}, + -- Basic network data and lookup table for attached nodes + id = network_id, tier = tier, all_nodes = {}, swpos = {}, + -- Indexed arrays for iteration by machine type + PR_nodes = {}, RE_nodes = {}, BA_nodes = {}, + -- Power generation, usage and capacity related variables + supply = 0, demand = 0, battery_charge = 0, battery_charge_max = 0, + BA_count_active = 0, BA_charge_active = 0, battery_supply = 0, battery_demand = 0, + -- Battery status update function + update_battery = update_battery, + -- Network activation and excution control + timeout = 0, skip = 0, lag = 0, average_lag = sma(5) + } + -- Add first cable (one that is holding network id) and build network + add_cable_node(technic.network2pos(network_id), network) + end + -- Continue building incomplete network + technic.add_network_branch(network.queue, network) + network.battery_count = #network.BA_nodes + -- Add newly built network to cache array + networks[network_id] = network + if not network.queue then + -- And return producers, batteries and receivers (should this simply return network?) + return network.PR_nodes, network.BA_nodes, network.RE_nodes + end +end + +-- +-- Execute technic power network +-- +local node_technic_run = {} +minetest.register_on_mods_loaded(function() + for name, tiers in pairs(technic.machine_tiers) do + local nodedef = minetest.registered_nodes[name] + local on_construct = type(nodedef.on_construct) == "function" and nodedef.on_construct + local on_destruct = type(nodedef.on_destruct) == "function" and nodedef.on_destruct + local place_node = technic.place_network_node + local remove_node = technic.remove_network_node + minetest.override_item(name, { + on_construct = on_construct + and function(pos) on_construct(pos) place_node(pos, tiers, name) end + or function(pos) place_node(pos, tiers, name) end, + on_destruct = on_destruct + and function(pos) on_destruct(pos) remove_node(pos, tiers, name) end + or function(pos) remove_node(pos, tiers, name) end, + }) + end + for name, _ in pairs(technic.machine_tiers) do + if type(minetest.registered_nodes[name].technic_run) == "function" then + node_technic_run[name] = minetest.registered_nodes[name].technic_run + end + end +end) + +local function run_nodes(list, run_stage, network) + for _, pos in ipairs(list) do + local node = minetest.get_node_or_nil(pos) + if not node then + minetest.load_area(pos, pos) + node = minetest.get_node_or_nil(pos) + end + if node and node.name and node_technic_run[node.name] then + node_technic_run[node.name](pos, node, run_stage, network) + end + end +end + +function technic.network_run(network_id) + -- + -- !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! + -- TODO: This function requires a lot of cleanup + -- It is moved here from switching_station.lua and still + -- contain a lot of switching station specific stuff which + -- should be removed and/or refactored. + -- + + local t0 = minetest.get_us_time() + + local PR_nodes + local BA_nodes + local RE_nodes + + local network = networks[network_id] + if network then + PR_nodes, BA_nodes, RE_nodes = get_network(network_id, network.tier) + if not PR_nodes or technic.is_overloaded(network_id) then return end + else + --dprint("Not connected to a network") + technic.network_infotext(network_id, S("@1 Has No Network", S("Switching Station"))) + return + end + + -- Reset battery data for updates + network.battery_charge = 0 + network.battery_charge_max = 0 + network.battery_supply = 0 + network.battery_demand = 0 + network.BA_count_active = 0 + network.BA_charge_active = 0 + + run_nodes(PR_nodes, technic.producer, network) + run_nodes(RE_nodes, technic.receiver, network) + run_nodes(BA_nodes, technic.battery, network) + + -- Strings for the meta data + local eu_demand_str = network.tier.."_EU_demand" + local eu_input_str = network.tier.."_EU_input" + local eu_supply_str = network.tier.."_EU_supply" + + -- Distribute charge equally across multiple batteries. + local charge_distributed = math.floor(network.BA_charge_active / network.BA_count_active) + for n, pos1 in pairs(BA_nodes) do + local meta1 = minetest.get_meta(pos1) + if (meta1:get_int(eu_demand_str) ~= 0) then + meta1:set_int("internal_EU_charge", charge_distributed) + end + end + + -- Get all the power from the PR nodes + local PR_eu_supply = 0 -- Total power + for _, pos1 in pairs(PR_nodes) do + local meta1 = minetest.get_meta(pos1) + PR_eu_supply = PR_eu_supply + meta1:get_int(eu_supply_str) + end + --dprint("Total PR supply:"..PR_eu_supply) + + -- Get all the demand from the RE nodes + local RE_eu_demand = 0 + for _, pos1 in pairs(RE_nodes) do + local meta1 = minetest.get_meta(pos1) + RE_eu_demand = RE_eu_demand + meta1:get_int(eu_demand_str) + end + --dprint("Total RE demand:"..RE_eu_demand) + + technic.network_infotext(network_id, S("@1. Supply: @2 Demand: @3", + S("Switching Station"), technic.EU_string(PR_eu_supply), + technic.EU_string(RE_eu_demand))) + + -- Data that will be used by the power monitor + network.supply = PR_eu_supply + network.demand = RE_eu_demand + network.battery_count = #BA_nodes + + -- If the PR supply is enough for the RE demand supply them all + local BA_eu_demand = network.battery_demand + if PR_eu_supply >= RE_eu_demand then + --dprint("PR_eu_supply"..PR_eu_supply.." >= RE_eu_demand"..RE_eu_demand) + for _, pos1 in pairs(RE_nodes) do + local meta1 = minetest.get_meta(pos1) + local eu_demand = meta1:get_int(eu_demand_str) + meta1:set_int(eu_input_str, eu_demand) + end + -- We have a surplus, so distribute the rest equally to the BA nodes + -- Let's calculate the factor of the demand + PR_eu_supply = PR_eu_supply - RE_eu_demand + local charge_factor = 0 -- Assume all batteries fully charged + if BA_eu_demand > 0 then + charge_factor = PR_eu_supply / BA_eu_demand + end + -- TODO: EU input for all batteries: math.floor(BA_eu_demand * charge_factor * #BA_nodes) + for n, pos1 in pairs(BA_nodes) do + local meta1 = minetest.get_meta(pos1) + local eu_demand = meta1:get_int(eu_demand_str) + meta1:set_int(eu_input_str, math.floor(eu_demand * charge_factor)) + --dprint("Charging battery:"..math.floor(eu_demand*charge_factor)) + end + local t1 = minetest.get_us_time() + local diff = t1 - t0 + if diff > 50000 then + minetest.log("warning", "[technic] [+supply] technic_run took " .. diff .. " us at " + .. minetest.pos_to_string(hashpos(network_id))) + end + + return + end + + -- If the PR supply is not enough for the RE demand we will discharge the batteries too + local BA_eu_supply = network.battery_supply + if PR_eu_supply + BA_eu_supply >= RE_eu_demand then + --dprint("PR_eu_supply "..PR_eu_supply.."+BA_eu_supply "..BA_eu_supply.." >= RE_eu_demand"..RE_eu_demand) + for _, pos1 in pairs(RE_nodes) do + local meta1 = minetest.get_meta(pos1) + local eu_demand = meta1:get_int(eu_demand_str) + meta1:set_int(eu_input_str, eu_demand) + end + -- We have a deficit, so distribute to the BA nodes + -- Let's calculate the factor of the supply + local charge_factor = 0 -- Assume all batteries depleted + if BA_eu_supply > 0 then + charge_factor = (PR_eu_supply - RE_eu_demand) / BA_eu_supply + end + for n,pos1 in pairs(BA_nodes) do + local meta1 = minetest.get_meta(pos1) + local eu_supply = meta1:get_int(eu_supply_str) + meta1:set_int(eu_input_str, math.floor(eu_supply * charge_factor)) + --dprint("Discharging battery:"..math.floor(eu_supply*charge_factor)) + end + local t1 = minetest.get_us_time() + local diff = t1 - t0 + if diff > 50000 then + minetest.log("warning", "[technic] [-supply] technic_run took " .. diff .. " us at " + .. minetest.pos_to_string(hashpos(network_id))) + end + + return + end + + -- If the PR+BA supply is not enough for the RE demand: Power only the batteries + local charge_factor = 0 -- Assume all batteries fully charged + if BA_eu_demand > 0 then + charge_factor = PR_eu_supply / BA_eu_demand + end + for n, pos1 in pairs(BA_nodes) do + local meta1 = minetest.get_meta(pos1) + local eu_demand = meta1:get_int(eu_demand_str) + meta1:set_int(eu_input_str, math.floor(eu_demand * charge_factor)) + end + for n, pos1 in pairs(RE_nodes) do + local meta1 = minetest.get_meta(pos1) + meta1:set_int(eu_input_str, 0) + end + + local t1 = minetest.get_us_time() + local diff = t1 - t0 + if diff > 50000 then + minetest.log("warning", "[technic] technic_run took " .. diff .. " us at " + .. minetest.pos_to_string(hashpos(network_id))) + end + +end diff --git a/mods/technic_plus_beta/technic/machines/other/anchor.lua b/mods/technic_plus_beta/technic/machines/other/anchor.lua new file mode 100644 index 00000000..2b79ecef --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/other/anchor.lua @@ -0,0 +1,131 @@ +local S = technic.getter + +local desc = S("Administrative World Anchor") + +local function compute_forceload_positions(pos, meta) + local radius = meta:get_int("radius") + local minpos = vector.subtract(pos, vector.new(radius, radius, radius)) + local maxpos = vector.add(pos, vector.new(radius, radius, radius)) + local minbpos = {} + local maxbpos = {} + for _, coord in ipairs({"x","y","z"}) do + minbpos[coord] = math.floor(minpos[coord] / 16) * 16 + maxbpos[coord] = math.floor(maxpos[coord] / 16) * 16 + end + local flposes = {} + for x = minbpos.x, maxbpos.x, 16 do + for y = minbpos.y, maxbpos.y, 16 do + for z = minbpos.z, maxbpos.z, 16 do + table.insert(flposes, vector.new(x, y, z)) + end + end + end + return flposes +end + +local function currently_forceloaded_positions(meta) + local ser = meta:get_string("forceloaded") + return ser == "" and {} or minetest.deserialize(ser) +end + +local function forceload_off(meta) + local flposes = currently_forceloaded_positions(meta) + meta:set_string("forceloaded", "") + for _, p in ipairs(flposes) do + minetest.forceload_free_block(p) + end +end + +local function forceload_on(pos, meta) + local want_flposes = compute_forceload_positions(pos, meta) + local have_flposes = {} + for _, p in ipairs(want_flposes) do + if minetest.forceload_block(p) then + table.insert(have_flposes, p) + end + end + meta:set_string("forceloaded", #have_flposes == 0 and "" or minetest.serialize(have_flposes)) +end + +local function set_display(pos, meta) + meta:set_string("infotext", S(meta:get_int("enabled") ~= 0 and "@1 Enabled" or "@1 Disabled", desc)) + meta:set_string("formspec", + "size[5,3.5]".. + "item_image[0,0;1,1;technic:admin_anchor]".. + "label[1,0;"..desc.."]".. + "label[0,1;"..S("Owner: @1", meta:get_string("owner")).."]".. + (meta:get_int("locked") == 0 and + "button[3,1;2,1;lock;"..S("Unlocked").."]" or + "button[3,1;2,1;unlock;"..S("Locked").."]").. + "field[0.25,2.3;1,1;radius;"..S("Radius")..";${radius}]".. + (meta:get_int("enabled") == 0 and + "button[3,2;2,1;enable;"..S("Disabled").."]" or + "button[3,2;2,1;disable;"..S("Enabled").."]").. + "label[0,3;"..S("Keeping @1/@2 map blocks loaded", + #currently_forceloaded_positions(meta), #compute_forceload_positions(pos, meta)).."]") +end + +minetest.register_node("technic:admin_anchor", { + description = desc, + drawtype = "normal", + tiles = {"technic_admin_anchor.png"}, + is_ground_content = false, + groups = {cracky=3, not_in_creative_inventory=1, pickaxey=1}, + _mcl_blast_resistance = 1, + _mcl_hardness = 0.8, + sounds = technic.sounds.node_sound_stone_defaults(), + after_place_node = function (pos, placer) + local meta = minetest.get_meta(pos) + if placer and placer:is_player() then + meta:set_string("owner", placer:get_player_name()) + end + set_display(pos, meta) + end, + can_dig = function (pos, player) + local meta = minetest.get_meta(pos) + return meta:get_int("locked") == 0 or (player and player:is_player() + and player:get_player_name() == meta:get_string("owner")) + end, + on_destruct = function (pos) + local meta = minetest.get_meta(pos) + forceload_off(meta) + end, + on_receive_fields = function (pos, formname, fields, sender) + local meta = minetest.get_meta(pos) + if (meta:get_int("locked") ~= 0 or fields.lock) and + not (sender and sender:is_player() and + sender:get_player_name() == meta:get_string("owner")) then + return + end + if fields.unlock then meta:set_int("locked", 0) end + if fields.lock then meta:set_int("locked", 1) end + if fields.disable or fields.enable or fields.radius then + forceload_off(meta) + if fields.disable then meta:set_int("enabled", 0) end + if fields.enable then meta:set_int("enabled", 1) end + if fields.radius and string.find(fields.radius, "^[0-9]+$") and tonumber(fields.radius) < 256 then + meta:set_int("radius", fields.radius) + end + if meta:get_int("enabled") ~= 0 then + forceload_on(pos, meta) + end + end + set_display(pos, meta) + end, + mesecons = { + effector = { + action_on = function(pos) + local meta = minetest.get_meta(pos) + meta:set_int("enabled", 1) + forceload_on(pos, meta) + set_display(pos, meta) + end, + action_off = function(pos) + local meta = minetest.get_meta(pos) + meta:set_int("enabled", 0) + forceload_off(meta) + set_display(pos, meta) + end + } + } +}) diff --git a/mods/technic_plus_beta/technic/machines/other/coal_alloy_furnace.lua b/mods/technic_plus_beta/technic/machines/other/coal_alloy_furnace.lua new file mode 100644 index 00000000..119a1545 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/other/coal_alloy_furnace.lua @@ -0,0 +1,206 @@ + +-- Fuel driven alloy furnace. This uses no EUs: + +local S = technic.getter +local mat = technic.materials + +minetest.register_craft({ + output = 'technic:coal_alloy_furnace', + recipe = { + {mat.brick, mat.brick, mat.brick}, + {mat.brick, '', mat.brick}, + {mat.brick, mat.brick, mat.brick}, + } +}) + +local machine_name = S("Fuel-Fired Alloy Furnace") +local size = minetest.get_modpath("mcl_formspec") and "size[9,9]" or "size[8,9]" +local formspec = + size.. + "label[0,0;"..machine_name.."]".. + "image[2,2;1,1;default_furnace_fire_bg.png]".. + "list[context;fuel;2,3;1,1;]".. + "list[context;src;2,1;2,1;]".. + "list[context;dst;5,1;2,2;]" + +if minetest.get_modpath("mcl_formspec") then + formspec = formspec.. + mcl_formspec.get_itemslot_bg(2,3,1,1).. + mcl_formspec.get_itemslot_bg(2,1,2,1).. + mcl_formspec.get_itemslot_bg(5,1,2,2).. + -- player inventory + "list[current_player;main;0,4.5;9,3;9]".. + mcl_formspec.get_itemslot_bg(0,4.5,9,3).. + "list[current_player;main;0,7.74;9,1;]".. + mcl_formspec.get_itemslot_bg(0,7.74,9,1) +else + formspec = formspec.. + "list[current_player;main;0,5;8,4;]" +end + +-- listrings +formspec = formspec.. + "listring[context;dst]".. + "listring[current_player;main]".. + "listring[context;src]".. + "listring[current_player;main]".. + "listring[context;fuel]".. + "listring[current_player;main]" + +minetest.register_node("technic:coal_alloy_furnace", { + description = machine_name, + tiles = {"technic_coal_alloy_furnace_top.png", "technic_coal_alloy_furnace_bottom.png", + "technic_coal_alloy_furnace_side.png", "technic_coal_alloy_furnace_side.png", + "technic_coal_alloy_furnace_side.png", "technic_coal_alloy_furnace_front.png"}, + paramtype2 = "facedir", + groups = {cracky=2, pickaxey=2}, + is_ground_content = false, + _mcl_blast_resistance = 1, + _mcl_hardness = 0.8, + legacy_facedir_simple = true, + sounds = technic.sounds.node_sound_stone_defaults(), + on_construct = function(pos) + local meta = minetest.get_meta(pos) + meta:set_string("formspec", formspec) + meta:set_string("infotext", machine_name) + local inv = meta:get_inventory() + inv:set_size("fuel", 1) + inv:set_size("src", 2) + inv:set_size("dst", 4) + end, + can_dig = technic.machine_can_dig, + allow_metadata_inventory_put = technic.machine_inventory_put, + allow_metadata_inventory_take = technic.machine_inventory_take, + allow_metadata_inventory_move = technic.machine_inventory_move, + on_metadata_inventory_move = technic.machine_on_inventory_move, + on_metadata_inventory_put = technic.machine_on_inventory_put, + on_metadata_inventory_take = technic.machine_on_inventory_take, +}) + +minetest.register_node("technic:coal_alloy_furnace_active", { + description = machine_name, + tiles = {"technic_coal_alloy_furnace_top.png", "technic_coal_alloy_furnace_bottom.png", + "technic_coal_alloy_furnace_side.png", "technic_coal_alloy_furnace_side.png", + "technic_coal_alloy_furnace_side.png", "technic_coal_alloy_furnace_front_active.png"}, + paramtype2 = "facedir", + light_source = 8, + drop = "technic:coal_alloy_furnace", + groups = {cracky=2, not_in_creative_inventory=1, pickaxey=2}, + is_ground_content = false, + _mcl_blast_resistance = 1, + _mcl_hardness = 0.8, + legacy_facedir_simple = true, + sounds = technic.sounds.node_sound_stone_defaults(), + can_dig = technic.machine_can_dig, + allow_metadata_inventory_put = technic.machine_inventory_put, + allow_metadata_inventory_take = technic.machine_inventory_take, + allow_metadata_inventory_move = technic.machine_inventory_move, + on_metadata_inventory_move = technic.machine_on_inventory_move, + on_metadata_inventory_put = technic.machine_on_inventory_put, + on_metadata_inventory_take = technic.machine_on_inventory_take, +}) + +minetest.register_abm({ + label = "Machines: run coal alloy furnace", + nodenames = {"technic:coal_alloy_furnace", "technic:coal_alloy_furnace_active"}, + interval = 1, + chance = 1, + action = function(pos, node, active_object_count, active_object_count_wider) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + local src_list = inv:get_list("src") + if not src_list then + return + end + + for i, name in pairs({ + "fuel_totaltime", + "fuel_time", + "src_totaltime", + "src_time"}) do + if not meta:get_float(name) then + meta:set_float(name, 0.0) + end + end + + -- Get what to cook if anything + local recipe = technic.get_recipe("alloy", src_list) + + local was_active = false + + if meta:get_float("fuel_time") < meta:get_float("fuel_totaltime") then + was_active = true + meta:set_int("fuel_time", meta:get_int("fuel_time") + 1) + if recipe then + meta:set_int("src_time", meta:get_int("src_time") + 1) + if meta:get_int("src_time") >= recipe.time then + meta:set_int("src_time", 0) + technic.process_recipe(recipe, inv) + end + else + meta:set_int("src_time", 0) + end + end + + if meta:get_float("fuel_time") < meta:get_float("fuel_totaltime") then + local percent = math.floor(meta:get_float("fuel_time") / + meta:get_float("fuel_totaltime") * 100) + meta:set_string("infotext", S("@1 Active", machine_name).." ("..percent.."%)") + technic.swap_node(pos, "technic:coal_alloy_furnace_active") + meta:set_string("formspec", + size.. + "label[0,0;"..machine_name.."]".. + "image[2,2;1,1;default_furnace_fire_bg.png^[lowpart:".. + (100 - percent)..":default_furnace_fire_fg.png]".. + "list[context;fuel;2,3;1,1;]".. + "list[context;src;2,1;2,1;]".. + "list[context;dst;5,1;2,2;]".. + + (minetest.get_modpath("mcl_formspec") and + mcl_formspec.get_itemslot_bg(2,3,1,1).. + mcl_formspec.get_itemslot_bg(2,1,2,1).. + mcl_formspec.get_itemslot_bg(5,1,2,2).. + -- player inventory + "list[current_player;main;0,4.5;9,3;9]".. + mcl_formspec.get_itemslot_bg(0,4.5,9,3).. + "list[current_player;main;0,7.74;9,1;]".. + mcl_formspec.get_itemslot_bg(0,7.74,9,1) + or "list[current_player;main;0,5;8,4;]").. + + -- listrings + "listring[context;dst]".. + "listring[current_player;main]".. + "listring[context;src]".. + "listring[current_player;main]".. + "listring[context;fuel]".. + "listring[current_player;main]") + return + end + + if not technic.get_recipe("alloy", inv:get_list("src")) then + if was_active then + meta:set_string("infotext", S("@1 is empty", machine_name)) + technic.swap_node(pos, "technic:coal_alloy_furnace") + meta:set_string("formspec", formspec) + end + return + end + + -- Next take a hard look at the fuel situation + local fuellist = inv:get_list("fuel") + local fuel, afterfuel = minetest.get_craft_result({method = "fuel", width = 1, items = fuellist}) + + if fuel.time <= 0 then + meta:set_string("infotext", S("@1 Out Of Fuel", machine_name)) + technic.swap_node(pos, "technic:coal_alloy_furnace") + meta:set_string("formspec", formspec) + return + end + + meta:set_string("fuel_totaltime", fuel.time) + meta:set_string("fuel_time", 0) + + inv:set_stack("fuel", 1, afterfuel.items[1]) + end, +}) + diff --git a/mods/technic_plus_beta/technic/machines/other/coal_furnace.lua b/mods/technic_plus_beta/technic/machines/other/coal_furnace.lua new file mode 100644 index 00000000..878dfdda --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/other/coal_furnace.lua @@ -0,0 +1,7 @@ +local S = technic.getter + +local default_furnace = minetest.registered_nodes["default:furnace"] + +if default_furnace and default_furnace.description == "Furnace" then + minetest.override_item("default:furnace", { description = S("Fuel-Fired Furnace") }) +end diff --git a/mods/technic_plus_beta/technic/machines/other/constructor.lua b/mods/technic_plus_beta/technic/machines/other/constructor.lua new file mode 100644 index 00000000..5536c1d4 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/other/constructor.lua @@ -0,0 +1,246 @@ + +local S = technic.getter + +local function deploy_node(inv, slot_name, pos, node, machine_node) + if node.param2 > 3 then return end + if node.name ~= "air" then + if node.name == "ignore" or + node.name == "default:chest_open" or + node.name == "default:chest_locked_open" or + node.name == "default:lava_source" or + node.name == "default:lava_flowing" or + node.name == "default:water_source" or + node.name == "default:water_flowing" then + return + end + local drops = minetest.get_node_drops(node.name, "") + local remove_to = false + for i, item in ipairs(drops) do + if not inv:room_for_item(slot_name, item) then + remove_to = i - 1 + break + end + inv:add_item(slot_name, item) + end + if remove_to then + for i = 1, remove_to do + inv:remove_item(slot_name, drops[i]) + end + else + minetest.remove_node(pos) + end + return + end + if not inv:is_empty(slot_name) then + local stack = inv:get_list(slot_name)[1] + local def = stack:get_definition() + if def.type == "node" then + minetest.set_node(pos, { + name = stack:get_name(), + param2 = machine_node.param2 + }) + stack:take_item() + inv:set_stack(slot_name, 1, stack) + elseif def.type == "craft" then + if def.on_place then + -- Use pcall to avoid nil placer errors. + -- TODO: Do without pcall. + local ok, stk = pcall(def.on_place, stack, nil, { + -- Fake pointed_thing + type = "node", + above = pos, + under = {x=pos.x, y=pos.y-1, z=pos.z}, + }) + if ok then + inv:set_stack(slot_name, 1, stk or stack) + return + end + end + minetest.item_place_object(stack, nil, { + -- Fake pointed_thing + type = "node", + above = pos, + under = pos, + }) + inv:set_stack(slot_name, 1, nil) + end + end +end + +minetest.register_craft({ + type = "shapeless", + output = 'technic:constructor_mk1_off 1', + recipe = {'technic:nodebreaker_off', 'technic:deployer_off'}, + +}) +minetest.register_craft({ + type = "shapeless", + output = 'technic:constructor_mk2_off 1', + recipe = {'technic:constructor_mk1_off', 'technic:constructor_mk1_off'}, + +}) + +minetest.register_craft({ + type = "shapeless", + output = 'technic:constructor_mk3_off 1', + recipe = {'technic:constructor_mk2_off', 'technic:constructor_mk2_off'}, + +}) + +local function make_on(mark, length) + return function(pos, node) + local meta = minetest.get_meta(pos) + local owner = meta:get_string("owner") + local inv = meta:get_inventory() + local dir = vector.new() + if node.param2 == 3 then dir.x = 1 end + if node.param2 == 2 then dir.z = 1 end + if node.param2 == 1 then dir.x = -1 end + if node.param2 == 0 then dir.z = -1 end + + local place_pos = vector.new(pos) + + if node.name == "technic:constructor_mk"..mark.."_off" then + technic.swap_node(pos, "technic:constructor_mk"..mark.."_on") + minetest.check_for_falling(pos) + for i = 1, length do + place_pos = vector.add(place_pos, dir) + if owner ~= "" and minetest.is_protected(place_pos, owner) then + return + end + local place_node = minetest.get_node(place_pos) + deploy_node(inv, "slot"..i, place_pos, place_node, node) + end + end + end +end + +local function make_off(mark) + return function(pos, node) + if node.name == "technic:constructor_mk"..mark.."_on" then + technic.swap_node(pos,"technic:constructor_mk"..mark.."_off") + minetest.check_for_falling(pos) + end + end +end + +local function allow_inventory_put(pos, listname, index, stack, player) + if stack and minetest.get_item_group(stack:get_name(), "technic_constructor") == 1 then + return 0 + end + return technic.machine_inventory_put(pos, listname, index, stack, player) +end + +local function make_constructor(mark, length) + minetest.register_node("technic:constructor_mk"..mark.."_off", { + description = S("Constructor Mk@1", mark), + tiles = {"technic_constructor_mk"..mark.."_top_off.png", + "technic_constructor_mk"..mark.."_bottom_off.png", + "technic_constructor_mk"..mark.."_side2_off.png", + "technic_constructor_mk"..mark.."_side1_off.png", + "technic_constructor_back.png", + "technic_constructor_front_off.png"}, + paramtype2 = "facedir", + groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2, + mesecon = 2, technic_constructor = 1, axey=2, handy=1}, + is_ground_content = false, + _mcl_blast_resistance = 1, + _mcl_hardness = 0.8, + mesecons = {effector = {action_on = make_on(mark, length)}}, + sounds = technic.sounds.node_sound_stone_defaults(), + on_construct = function(pos) + local meta = minetest.get_meta(pos) + local size = minetest.get_modpath("mcl_formspec") and "size[9,9]" or "size[8,9]" + local formspec = size.. + "label[0,0;"..S("Constructor Mk@1", mark).."]" + for i = 1, length do + formspec = formspec.. + "label[5,"..(i - 1)..";"..S("Slot @1", i).."]".. + "list[context;slot"..i..";6,"..(i - 1)..";1,1;]" + end + if minetest.get_modpath("mcl_formspec") then + for i = 1, length do + formspec = formspec.. + mcl_formspec.get_itemslot_bg(6,i-1,1,1) + end + formspec = formspec.. + -- player inventory + "list[current_player;main;0,4.5;9,3;9]".. + mcl_formspec.get_itemslot_bg(0,4.5,9,3).. + "list[current_player;main;0,7.74;9,1;]".. + mcl_formspec.get_itemslot_bg(0,7.74,9,1) + else + formspec = formspec.. + "list[current_player;main;0,5;8,4;]" + end + -- listrings + for i = 1, length do + formspec = formspec.. + "listring[current_player;main]".. + "listring[context;slot"..i.."]" + end + + meta:set_string("formspec", formspec) + meta:set_string("infotext", S("Constructor Mk@1", mark)) + local inv = meta:get_inventory() + for i = 1, length do + inv:set_size("slot"..i, 1) + end + meta:set_string("owner", "?") + end, + after_place_node = function(pos, placer) + local meta = minetest.get_meta(pos) + meta:set_string("owner", (placer and placer:get_player_name() or "?")) + end, + can_dig = function(pos, player) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + for i = 1, length do + if not inv:is_empty("slot"..i) then + return false + end + end + return true + end, + allow_metadata_inventory_put = allow_inventory_put, + allow_metadata_inventory_take = technic.machine_inventory_take, + allow_metadata_inventory_move = technic.machine_inventory_move, + on_metadata_inventory_move = technic.machine_on_inventory_move, + on_metadata_inventory_put = technic.machine_on_inventory_put, + on_metadata_inventory_take = technic.machine_on_inventory_take, + on_rotate = function(pos, node, user, mode, new_param2) + if mode ~= 1 then + return false + end + end, + }) + + minetest.register_node("technic:constructor_mk"..mark.."_on", { + tiles = {"technic_constructor_mk"..mark.."_top_on.png", + "technic_constructor_mk"..mark.."_bottom_on.png", + "technic_constructor_mk"..mark.."_side2_on.png", + "technic_constructor_mk"..mark.."_side1_on.png", + "technic_constructor_back.png", + "technic_constructor_front_on.png"}, + paramtype2 = "facedir", + drop = "technic:constructor_mk"..mark.."_off", + groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2, + mesecon=2, not_in_creative_inventory=1, technic_constructor=1, axey=2, handy=1}, + is_ground_content = false, + _mcl_blast_resistance = 1, + _mcl_hardness = 0.8, + mesecons= {effector = {action_off = make_off(mark)}}, + sounds = technic.sounds.node_sound_stone_defaults(), + allow_metadata_inventory_put = allow_inventory_put, + allow_metadata_inventory_take = technic.machine_inventory_take, + allow_metadata_inventory_move = technic.machine_inventory_move, + on_metadata_inventory_move = technic.machine_on_inventory_move, + on_metadata_inventory_put = technic.machine_on_inventory_put, + on_metadata_inventory_take = technic.machine_on_inventory_take, + on_rotate = false + }) +end + +make_constructor(1, 1) +make_constructor(2, 2) +make_constructor(3, 4) diff --git a/mods/technic_plus_beta/technic/machines/other/init.lua b/mods/technic_plus_beta/technic/machines/other/init.lua new file mode 100644 index 00000000..e78295e1 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/other/init.lua @@ -0,0 +1,12 @@ +local path = technic.modpath.."/machines/other" + +-- Mesecons and tubes related +dofile(path.."/injector.lua") +dofile(path.."/constructor.lua") + +-- Coal-powered machines +dofile(path.."/coal_alloy_furnace.lua") +dofile(path.."/coal_furnace.lua") + +-- Force-loading +dofile(path.."/anchor.lua") diff --git a/mods/technic_plus_beta/technic/machines/other/injector.lua b/mods/technic_plus_beta/technic/machines/other/injector.lua new file mode 100644 index 00000000..d91e4eca --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/other/injector.lua @@ -0,0 +1,180 @@ + +local S = technic.getter + +local fs_helpers = pipeworks.fs_helpers + +local tube_entry = "^pipeworks_tube_connection_metallic.png" + +local mat = technic.materials + +local param2_to_under = { + [0] = {x= 0,y=-1,z= 0}, [1] = {x= 0,y= 0,z=-1}, + [2] = {x= 0,y= 0,z= 1}, [3] = {x=-1,y= 0,z= 0}, + [4] = {x= 1,y= 0,z= 0}, [5] = {x= 0,y= 1,z= 0} +} + +local size = minetest.get_modpath("mcl_formspec") and "size[9,10]" or "size[8,9]" +local base_formspec = size.. + "label[0,0;"..S("Self-Contained Injector").."]".. + "list[context;main;0,2;8,2;]".. + "listring[context;main]" + +if minetest.get_modpath("mcl_formspec") then + base_formspec = base_formspec.. + mcl_formspec.get_itemslot_bg(0,2,8,2).. + -- player inventory + "list[current_player;main;0,5.5;9,3;9]".. + mcl_formspec.get_itemslot_bg(0,5.5,9,3).. + "list[current_player;main;0,8.74;9,1;]".. + mcl_formspec.get_itemslot_bg(0,8.74,9,1).. + "listring[current_player;main]" +else + base_formspec = base_formspec.. + "list[current_player;main;0,5;8,4;]".. + "listring[current_player;main]" +end + +local function set_injector_formspec(pos) + local meta = minetest.get_meta(pos) + local formspec = base_formspec.. + fs_helpers.cycling_button( + meta, + pipeworks.button_base, + "splitstacks", + { + pipeworks.button_off, + pipeworks.button_on + } + )..pipeworks.button_label + if meta:get_string("mode") == "whole stacks" then + formspec = formspec.."button[0,1;4,1;mode_item;"..S("Stackwise").."]" + else + formspec = formspec.."button[0,1;4,1;mode_stack;"..S("Itemwise").."]" + end + if minetest.get_node_timer(pos):is_started() then + formspec = formspec.."button[4,1;4,1;disable;"..S("Enabled").."]" + else + formspec = formspec.."button[4,1;4,1;enable;"..S("Disabled").."]" + end + meta:set_string("formspec", formspec) +end + +minetest.register_node("technic:injector", { + description = S("Self-Contained Injector"), + tiles = { + "technic_injector_top.png"..tube_entry, + "technic_injector_bottom.png", + "technic_injector_side.png"..tube_entry, + "technic_injector_side.png"..tube_entry, + "technic_injector_side.png"..tube_entry, + "technic_injector_side.png" + }, + paramtype2 = "facedir", + groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2, tubedevice=1, tubedevice_receiver=1, axey=2, handy=1}, + is_ground_content = false, + _mcl_blast_resistance = 1, + _mcl_hardness = 0.8, + tube = { + can_insert = function(pos, node, stack, direction) + local meta = minetest.get_meta(pos) + if meta:get_int("splitstacks") == 1 then + stack = stack:peek_item(1) + end + return meta:get_inventory():room_for_item("main", stack) + end, + insert_object = function(pos, node, stack, direction) + return minetest.get_meta(pos):get_inventory():add_item("main", stack) + end, + connect_sides = {left=1, right=1, back=1, top=1, bottom=1}, + }, + sounds = technic.sounds.node_sound_wood_defaults(), + on_construct = function(pos) + local meta = minetest.get_meta(pos) + meta:set_string("infotext", S("Self-Contained Injector")) + meta:set_string("mode", "single items") + meta:get_inventory():set_size("main", 16) + minetest.get_node_timer(pos):start(1) + set_injector_formspec(pos) + end, + can_dig = function(pos, player) + return minetest.get_meta(pos):get_inventory():is_empty("main") + end, + on_receive_fields = function(pos, formanme, fields, sender) + if fields.quit or not pipeworks.may_configure(pos, sender) then + return + end + local meta = minetest.get_meta(pos) + if fields.mode_item then + meta:set_string("mode", "single items") + elseif fields.mode_stack then + meta:set_string("mode", "whole stacks") + elseif fields.disable then + minetest.get_node_timer(pos):stop() + elseif fields.enable then + minetest.get_node_timer(pos):start(1) + end + fs_helpers.on_receive_fields(pos, fields) + set_injector_formspec(pos) + end, + on_timer = function(pos, elapsed) + local meta = minetest.get_meta(pos) + local node = minetest.get_node(pos) + local dir = param2_to_under[math.floor(node.param2 / 4)] + local node_under = minetest.get_node(vector.add(pos, dir)) + if minetest.get_item_group(node_under.name, "tubedevice") > 0 then + local inv = meta:get_inventory() + local list = inv:get_list("main") + if not list then + return true + end + local stackwise = meta:get_string("mode") == "whole stacks" + for i,stack in ipairs(list) do + if not stack:is_empty() then + if stackwise then + technic.tube_inject_item(pos, pos, dir, stack:to_table()) + stack:clear() + else + technic.tube_inject_item(pos, pos, dir, stack:take_item(1):to_table()) + end + inv:set_stack("main", i, stack) + break + end + end + end + return true + end, + on_rotate = function(pos, node, user, mode, new_param2) + node.param2 = new_param2 + minetest.swap_node(pos, node) + pipeworks.scan_for_tube_objects(pos) + return true + end, + allow_metadata_inventory_put = technic.machine_inventory_put, + allow_metadata_inventory_take = technic.machine_inventory_take, + allow_metadata_inventory_move = technic.machine_inventory_move, + on_metadata_inventory_move = technic.machine_on_inventory_move, + on_metadata_inventory_put = technic.machine_on_inventory_put, + on_metadata_inventory_take = technic.machine_on_inventory_take, + after_place_node = pipeworks.after_place, + after_dig_node = pipeworks.after_dig +}) + +minetest.register_craft({ + output = "technic:injector 1", + recipe = { + {"", "technic:control_logic_unit",""}, + {"", mat.chest,""}, + {"", "pipeworks:tube_1",""}, + } +}) + +minetest.register_lbm({ + label = "Old injector conversion", + name = "technic:old_injector_conversion", + nodenames = {"technic:injector"}, + run_at_every_load = false, + action = function(pos, node) + minetest.get_node_timer(pos):start(1) + set_injector_formspec(pos) + end +}) diff --git a/mods/technic_plus_beta/technic/machines/overload.lua b/mods/technic_plus_beta/technic/machines/overload.lua new file mode 100644 index 00000000..fe71eef2 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/overload.lua @@ -0,0 +1,31 @@ +-- +-- Network overloading (incomplete cheat mitigation) +-- + +local overload_reset_time = technic.config:get_int("network_overload_reset_time") +local overloaded_networks = {} +local networks = technic.networks + +function technic.overload_network(network_id) + local network = networks[network_id] + if network then + network.supply = 0 + network.battery_charge = 0 + end + overloaded_networks[network_id] = minetest.get_us_time() + (overload_reset_time * 1000 * 1000) +end + +function technic.reset_overloaded(network_id) + local remaining = math.max(0, overloaded_networks[network_id] - minetest.get_us_time()) + if remaining == 0 then + -- Clear cache, remove overload and restart network + technic.remove_network(network_id) + overloaded_networks[network_id] = nil + end + -- Returns 0 when network reset or remaining time if reset timer has not expired yet + return remaining +end + +function technic.is_overloaded(network_id) + return overloaded_networks[network_id] +end diff --git a/mods/technic_plus_beta/technic/machines/power_monitor.lua b/mods/technic_plus_beta/technic/machines/power_monitor.lua new file mode 100644 index 00000000..ea1b6837 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/power_monitor.lua @@ -0,0 +1,133 @@ +-- POWER MONITOR +-- The power monitor can be used to monitor how much power is available on a network, +-- similarly to the old "slave" switching stations. + +local S = technic.getter +local mat = technic.materials + +local cable_entry = "^technic_cable_connection_overlay.png" + +-- Get registered cable or nil, returns nil if area is not loaded +local function get_cable(pos) + local node = minetest.get_node_or_nil(pos) + return (node and technic.get_cable_tier(node.name)) and node +end + +-- return the position of connected cable or nil +-- TODO: Make it support every possible orientation +local function get_connected_cable_network(pos) + local param2 = minetest.get_node(pos).param2 + -- should probably also work sideways or upside down but for now it wont + if param2 > 3 then return end + -- Below? + local checkpos = {x=pos.x,y=pos.y-1,z=pos.z} + local network_id = get_cable(checkpos) and technic.pos2network(checkpos) + if network_id then + return network_id + end + -- Behind? + checkpos = vector.add(minetest.facedir_to_dir(param2),pos) + network_id = get_cable(checkpos) and technic.pos2network(checkpos) + return network_id +end + +-- return the position of the associated switching station or nil +local function get_network(pos) + local network_id = get_connected_cable_network(pos) + local network = network_id and technic.networks[network_id] + local swpos = network and technic.network2sw_pos(network_id) + local is_powermonitor = swpos and minetest.get_node(swpos).name == "technic:switching_station" + return (is_powermonitor and network.all_nodes[network_id]) and network +end + +minetest.register_craft({ + output = "technic:power_monitor", + recipe = { + {"", "", ""}, + {"", "technic:machine_casing", mat.copper_ingot}, + {"technic:lv_cable", "technic:lv_cable", "technic:lv_cable"} + } +}) + +minetest.register_node("technic:power_monitor",{ + description = S("Power Monitor"), + tiles = { + "technic_power_monitor_sides.png", + "technic_power_monitor_sides.png"..cable_entry, + "technic_power_monitor_sides.png", + "technic_power_monitor_sides.png", + "technic_power_monitor_sides.png"..cable_entry, + "technic_power_monitor_front.png" + }, + paramtype2 = "facedir", + groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2, technic_all_tiers=1, axey=2, handy=1}, + is_ground_content = false, + _mcl_blast_resistance = 1, + _mcl_hardness = 0.8, + connect_sides = {"bottom", "back"}, + sounds = technic.sounds.node_sound_wood_defaults(), + on_construct = function(pos) + local meta = minetest.get_meta(pos) + meta:set_string("infotext", S("Power Monitor")) + meta:set_string("formspec", "field[channel;"..S("Digiline Channel")..";${channel}]") + end, + on_receive_fields = function(pos, formname, fields, sender) + if not fields.channel then + return + end + local plname = sender:get_player_name() + if minetest.is_protected(pos, plname) and not minetest.check_player_privs(sender, "protection_bypass") then + minetest.record_protection_violation(pos, plname) + return + end + local meta = minetest.get_meta(pos) + meta:set_string("channel", fields.channel) + end, + digiline = { + receptor = { + rules = technic.digilines.rules, + action = function() end + }, + effector = { + rules = technic.digilines.rules, + action = function(pos, node, channel, msg) + if msg ~= "GET" and msg ~= "get" then + return + end + local meta = minetest.get_meta(pos) + if channel ~= meta:get_string("channel") then + return + end + + local network = get_network(pos) + if not network then return end + + digilines.receptor_send(pos, technic.digilines.rules, channel, { + supply = network.supply, + demand = network.demand, + lag = network.lag, + battery_count = network.battery_count, + battery_charge = network.battery_charge, + battery_charge_max = network.battery_charge_max, + }) + end + }, + }, +}) + +minetest.register_abm({ + nodenames = {"technic:power_monitor"}, + label = "Machines: run power monitor", + interval = 1, + chance = 1, + action = function(pos, node, active_object_count, active_object_count_wider) + local meta = minetest.get_meta(pos) + local network = get_network(pos) + if network then + meta:set_string("infotext", S("Power Monitor. Supply: @1 Demand: @2", + technic.EU_string(network.supply), technic.EU_string(network.demand))) + else + meta:set_string("infotext",S("Power Monitor Has No Network")) + end + end, +}) diff --git a/mods/technic_plus_beta/technic/machines/register/alloy_recipes.lua b/mods/technic_plus_beta/technic/machines/register/alloy_recipes.lua new file mode 100644 index 00000000..1748726c --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/register/alloy_recipes.lua @@ -0,0 +1,60 @@ + +local S = technic.getter +local mat = technic.materials + +technic.register_recipe_type("alloy", { + description = S("Alloying"), + icon = "technic_mv_alloy_furnace_front.png", + input_size = 2, +}) + +function technic.register_alloy_recipe(data) + data.time = data.time or 6 + technic.register_recipe("alloy", data) +end + +local recipes = { + {"technic:copper_dust 7", "technic:tin_dust", mat.bronze_ingot.." 8", 12}, + {mat.copper_ingot.." 7", mat.tin_ingot, mat.bronze_ingot.." 8", 12}, + {"technic:wrought_iron_dust 2", "technic:coal_dust", "technic:carbon_steel_ingot 2", 6}, + {"technic:wrought_iron_ingot 2", "technic:coal_dust", "technic:carbon_steel_ingot 2", 6}, + {"technic:carbon_steel_dust 4", "technic:chromium_dust", "technic:stainless_steel_ingot 5", 7.5}, + {"technic:carbon_steel_ingot 4", "technic:chromium_ingot", "technic:stainless_steel_ingot 5", 7.5}, + {"technic:copper_dust 2", "technic:zinc_dust", "basic_materials:brass_ingot 3"}, + {mat.copper_ingot.." 2", "technic:zinc_ingot", "basic_materials:brass_ingot 3"}, + {mat.sand.." 2", "technic:coal_dust 2", "technic:silicon_wafer"}, + {"technic:silicon_wafer", "technic:gold_dust", "technic:doped_silicon_wafer"}, + -- from https://en.wikipedia.org/wiki/Carbon_black + -- The highest volume use of carbon black is as a reinforcing filler in rubber products, especially tires. + -- "[Compounding a] pure gum vulcanizate … with 50% of its weight of carbon black + -- improves its tensile strength and wear resistance …" + {"technic:raw_latex 4", "technic:coal_dust 2", "technic:rubber 6", 2}, + {"technic:raw_latex 2", mat.coal_lump, "technic:rubber 2", 2}, + {mat.ice, mat.bucket_empty, mat.bucket_water, 1 }, + {mat.obsidian, mat.bucket_empty, mat.bucket_lava, 1 }, +} + +if minetest.get_modpath("ethereal") then + table.insert(recipes, {mat.clay, mat.dye_red, "bakedclay:red"}) + table.insert(recipes, {mat.clay, mat.dye_orange, "bakedclay:orange"}) + table.insert(recipes, {mat.clay, mat.dye_grey, "bakedclay:grey"}) +end + +if minetest.get_modpath("digilines") then + table.insert(recipes, + {"technic:lv_cable", "digilines:wire_std_00000000 2", "technic:lv_digi_cable", 18}) + table.insert(recipes, + {"technic:lv_cable_plate_1", "digilines:wire_std_00000000 2", "technic:lv_digi_cable_plate_1", 18}) + table.insert(recipes, + {"technic:mv_cable", "digilines:wire_std_00000000 2", "technic:mv_digi_cable", 18}) + table.insert(recipes, + {"technic:mv_cable_plate_1", "digilines:wire_std_00000000 2", "technic:mv_digi_cable_plate_1", 18}) + table.insert(recipes, + {"technic:hv_cable", "digilines:wire_std_00000000 2", "technic:hv_digi_cable", 18}) + table.insert(recipes, + {"technic:hv_cable_plate_1", "digilines:wire_std_00000000 2", "technic:hv_digi_cable_plate_1", 18}) +end + +for _, data in pairs(recipes) do + technic.register_alloy_recipe({input = {data[1], data[2]}, output = data[3], time = data[4]}) +end diff --git a/mods/technic_plus_beta/technic/machines/register/battery_box.lua b/mods/technic_plus_beta/technic/machines/register/battery_box.lua new file mode 100644 index 00000000..f9396f78 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/register/battery_box.lua @@ -0,0 +1,458 @@ + +local digilines_path = minetest.get_modpath("digilines") + +local S = technic.getter +local tube_entry = "^pipeworks_tube_connection_metallic.png" +local cable_entry = "^technic_cable_connection_overlay.png" +local mat = technic.materials + +-- Battery recipes: +-- Tin-copper recipe: +minetest.register_craft({ + output = "technic:battery", + recipe = { + {"group:wood", mat.copper_ingot, "group:wood"}, + {"group:wood", mat.tin_ingot, "group:wood"}, + {"group:wood", mat.copper_ingot, "group:wood"}, + } +}) +-- Sulfur-lead-water recipes: +-- With sulfur lumps: +-- With water: +minetest.register_craft({ + output = "technic:battery", + recipe = { + {"group:wood", "technic:sulfur_lump", "group:wood"}, + {"technic:lead_ingot", mat.bucket_water, "technic:lead_ingot"}, + {"group:wood", "technic:sulfur_lump", "group:wood"}, + }, + replacements = { + {mat.bucket_water, mat.bucket_empty} + } +}) +-- With oil extract: +minetest.register_craft({ + output = "technic:battery", + recipe = { + {"group:wood", "technic:sulfur_lump", "group:wood"}, + {"technic:lead_ingot", "homedecor:oil_extract", "technic:lead_ingot"}, + {"group:wood", "technic:sulfur_lump", "group:wood"}, + } +}) +-- With sulfur dust: +-- With water: +minetest.register_craft({ + output = "technic:battery", + recipe = { + {"group:wood", "technic:sulfur_dust", "group:wood"}, + {"technic:lead_ingot", mat.bucket_water, "technic:lead_ingot"}, + {"group:wood", "technic:sulfur_dust", "group:wood"}, + }, + replacements = { + {mat.bucket_water, mat.bucket_empty} + } +}) +-- With oil extract: +minetest.register_craft({ + output = "technic:battery", + recipe = { + {"group:wood", "technic:sulfur_dust", "group:wood"}, + {"technic:lead_ingot", "homedecor:oil_extract", "technic:lead_ingot"}, + {"group:wood", "technic:sulfur_dust", "group:wood"}, + } +}) + +technic.register_power_tool("technic:battery", { + description = S("RE Battery"), + inventory_image = "technic_battery.png", + groups = { disable_repair = 1 }, +}) + +-- x+2 + (z+2)*2 +local dirtab = { + [4] = 2, + [5] = 3, + [7] = 1, + [8] = 0 +} + +local tube = { + insert_object = function(pos, node, stack, direction) + if direction.y == 1 + or (direction.y == 0 and dirtab[direction.x+2+(direction.z+2)*2] == node.param2) then + return stack + end + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + if direction.y == 0 then + return inv:add_item("src", stack) + else + return inv:add_item("dst", stack) + end + end, + can_insert = function(pos, node, stack, direction) + if direction.y == 1 + or (direction.y == 0 and dirtab[direction.x+2+(direction.z+2)*2] == node.param2) then + return false + end + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + if direction.y == 0 then + return inv:room_for_item("src", stack) + else + return inv:room_for_item("dst", stack) + end + end, + connect_sides = {left=1, right=1, back=1, top=1}, +} + +function technic.register_battery_box(nodename, data) + local colon, modname, name, def = technic.register_compat_v1_to_v2(nodename, data, "battery_box") + local texture_prefix = modname.."_"..name + nodename = modname..":"..name + + local tier = def.tier + local ltier = string.lower(tier) + + local size = minetest.get_modpath("mcl_formspec") and "size[9,9]" or "size[8,9]" + local formspec = + size.. + "image[1,1;1,2;technic_power_meter_bg.png]".. + "list[context;src;3,1;1,1;]".. + "image[4,1;1,1;technic_battery_reload.png]".. + "list[context;dst;5,1;1,1;]".. + "label[0,0;"..S("@1 Battery Box", S(tier)).."]".. + "label[3,0;"..S("Charge").."]".. + "label[5,0;"..S("Discharge").."]".. + "label[1,3;"..S("Power level").."]".. + (def.upgrade and + "list[context;upgrade1;3.5,3;1,1;]".. + "list[context;upgrade2;4.5,3;1,1;]".. + "label[3.5,4;"..S("Upgrade Slots").."]" + or "") + + if minetest.get_modpath("mcl_formspec") then + formspec = formspec.. + mcl_formspec.get_itemslot_bg(3,1,1,1).. + mcl_formspec.get_itemslot_bg(5,1,1,1).. + -- player inventory + "list[current_player;main;0,4.5;9,3;9]".. + mcl_formspec.get_itemslot_bg(0,4.5,9,3).. + "list[current_player;main;0,7.74;9,1;]".. + mcl_formspec.get_itemslot_bg(0,7.74,9,1).. + -- upgrade + (def.upgrade and + mcl_formspec.get_itemslot_bg(3.5,3,1,1).. + mcl_formspec.get_itemslot_bg(4.5,3,1,1) + or "") + else + formspec = formspec.. + "list[current_player;main;0,5;8,4;]" + end + + -- listrings + formspec = formspec.. + "listring[context;dst]".. + "listring[current_player;main]".. + "listring[context;src]".. + "listring[current_player;main]".. + (def.upgrade and + "listring[context;upgrade1]".. + "listring[current_player;main]".. + "listring[context;upgrade2]".. + "listring[current_player;main]" + or "") + + + + -- + -- Generate formspec with power meter + -- + local function get_formspec(charge_ratio, channel) + return formspec .. "image[1,1;1,2;technic_power_meter_bg.png^[lowpart:" .. + math.floor(charge_ratio * 100) .. ":technic_power_meter_fg.png]" .. + (digilines_path and + ("field[0.3,4;2.2,1;channel;"..S("Digiline Channel")..";${channel}]".. + "button[2,3.7;1,1;setchannel;"..S("Save").."]") or "") + + end + + -- + -- Update fields not affecting internal network calculations and behavior in any way + -- + local function update_node(pos, update_formspec) + -- Read metadata and calculate actual values based on upgrades + local meta = minetest.get_meta(pos) + local current_charge = meta:get_int("internal_EU_charge") + local EU_upgrade = 0 + if def.upgrade then + EU_upgrade = technic.handle_machine_upgrades(meta) + end + local max_charge = def.max_charge * (1 + EU_upgrade / 10) + -- Select node textures + local charge_ratio = current_charge / max_charge + local charge_count = math.ceil(charge_ratio * 8) + charge_count = math.min(charge_count, 8) + charge_count = math.max(charge_count, 0) + local last_count = meta:get_float("last_side_shown") + if charge_count ~= last_count then + technic.swap_node(pos, nodename .. charge_count) + meta:set_float("last_side_shown", charge_count) + end + -- Update formspec and infotext + local eu_input = meta:get_int(tier.."_EU_input") + local infotext = S("@1 Battery Box: @2 / @3", tier, + technic.EU_string(current_charge), technic.EU_string(max_charge)) + if eu_input == 0 then + infotext = S("@1 Idle", infotext) + end + meta:set_string("infotext", infotext) + if update_formspec then + local channel = meta:get_string("channel") + meta:set_string("formspec", get_formspec(charge_ratio, channel)) + end + end + + local function get_tool(inventory, listname) + -- Get itemstack and check if it is registered tool + if inventory:is_empty(listname) then + return + end + -- Get itemstack and check if it is registered tool + local toolstack = inventory:get_stack(listname, 1) + local tooldef = toolstack:get_definition() + if not tooldef.technic_max_charge then + return + end + return toolstack, tooldef + end + + local function charge_tools(meta, batt_charge, charge_step) + -- Get tool metadata + local inv = meta:get_inventory() + local toolstack, tooldef = get_tool(inv, "src") + if not toolstack then + return batt_charge, false + end + -- Do the charging + local charge = tooldef.technic_get_charge(toolstack) + if charge >= tooldef.technic_max_charge then + return batt_charge, true + elseif batt_charge <= 0 then + return batt_charge, false + end + local oldcharge = charge + charge_step = math.min(charge_step, batt_charge, tooldef.technic_max_charge - charge) + charge = charge + charge_step + if charge ~= oldcharge then + tooldef.technic_set_charge(toolstack, charge) + inv:set_stack("src", 1, toolstack) + end + return batt_charge - charge_step, (charge == tooldef.technic_max_charge) + end + + local function discharge_tools(meta, batt_charge, charge_step, batt_max_charge) + -- Get tool metadata + local inv = meta:get_inventory() + local toolstack, tooldef = get_tool(inv, "dst") + if not toolstack then + return batt_charge, false + end + -- Do the discharging + local charge = tooldef.technic_get_charge(toolstack) + if charge <= 0 then + return batt_charge, true + elseif batt_charge >= batt_max_charge then + return batt_charge, false + end + local oldcharge = charge + charge_step = math.min(charge_step, batt_max_charge - batt_charge, charge) + charge = charge - charge_step + if charge ~= oldcharge then + tooldef.technic_set_charge(toolstack, charge) + inv:set_stack("dst", 1, toolstack) + end + return batt_charge + charge_step, (charge == 0) + end + + local function run(pos, node, run_state, network) + local meta = minetest.get_meta(pos) + + local eu_input = meta:get_int(tier.."_EU_input") + local current_charge = meta:get_int("internal_EU_charge") + + local EU_upgrade, tube_upgrade = 0, 0 + if def.upgrade then + EU_upgrade, tube_upgrade = technic.handle_machine_upgrades(meta) + end + local max_charge = def.max_charge * (1 + EU_upgrade / 10) + + -- Charge/discharge the battery with the input EUs + if eu_input >= 0 then + current_charge = math.min(current_charge + eu_input, max_charge) + else + current_charge = math.max(current_charge + eu_input, 0) + end + + -- Charging/discharging tools here + local tool_full, tool_empty + current_charge, tool_full = charge_tools(meta, current_charge, def.charge_step) + current_charge, tool_empty = discharge_tools(meta, current_charge, def.discharge_step, max_charge) + + if def.tube and (tool_full or tool_empty) then + technic.handle_machine_pipeworks(pos, tube_upgrade, function(pos2, x_velocity, z_velocity) + if tool_full then + technic.send_items(pos2, x_velocity, z_velocity, "src") + elseif tool_empty then + technic.send_items(pos2, x_velocity, z_velocity, "dst") + end + end) + end + + -- We allow batteries to charge on less than the demand + local supply = math.min(def.discharge_rate, current_charge) + local demand = math.min(def.charge_rate, max_charge - current_charge) + network:update_battery(current_charge, max_charge, supply, demand) + + meta:set_int(tier.."_EU_demand", demand) + meta:set_int(tier.."_EU_supply", supply) + meta:set_int("internal_EU_charge", current_charge) + meta:set_int("internal_EU_charge_max", max_charge) + + local timer = minetest.get_node_timer(pos) + if not timer:is_started() then + timer:start(2) + end + end + + local function on_timer(pos, elapsed) + if not technic.pos2network(pos) then return end + update_node(pos) + return true + end + + for i = 0, 8 do + local groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2, + technic_machine=1, ["technic_"..ltier]=1, axey=2, handy=1} + if i ~= 0 then + groups.not_in_creative_inventory = 1 + end + + if def.tube then + groups.tubedevice = 1 + groups.tubedevice_receiver = 1 + end + + local top_tex = texture_prefix.."_top.png"..tube_entry + local front_tex = texture_prefix.."_front.png^technic_power_meter"..i..".png" + local side_tex = texture_prefix.."_side.png"..tube_entry + local bottom_tex = texture_prefix.."_bottom.png"..cable_entry + if ltier == "lv" then + top_tex = texture_prefix.."_top.png" + front_tex = texture_prefix.."_side.png^technic_power_meter"..i..".png" + side_tex = texture_prefix.."_side.png^technic_power_meter"..i..".png" + end + + minetest.register_node(colon..nodename..i, { + description = S("@1 Battery Box", S(tier)), + tiles = { + top_tex, + bottom_tex, + side_tex, + side_tex, + side_tex, + front_tex}, + groups = groups, + is_ground_content = false, + _mcl_blast_resistance = 1, + _mcl_hardness = 0.8, + connect_sides = {"bottom"}, + tube = def.tube and tube or nil, + paramtype2 = "facedir", + sounds = technic.sounds.node_sound_wood_defaults(), + drop = "technic:"..ltier.."_battery_box0", + on_construct = function(pos) + local meta = minetest.get_meta(pos) + meta:set_string("infotext", S("@1 Battery Box", S(tier))) + meta:set_int(tier.."_EU_demand", 0) + meta:set_int(tier.."_EU_supply", 0) + meta:set_int(tier.."_EU_input", 0) + meta:set_float("internal_EU_charge", 0) + local inv = meta:get_inventory() + inv:set_size("src", 1) + inv:set_size("dst", 1) + inv:set_size("upgrade1", 1) + inv:set_size("upgrade2", 1) + update_node(pos, true) + end, + can_dig = technic.machine_can_dig, + allow_metadata_inventory_put = technic.machine_inventory_put, + allow_metadata_inventory_take = technic.machine_inventory_take, + allow_metadata_inventory_move = technic.machine_inventory_move, + on_metadata_inventory_move = technic.machine_on_inventory_move, + on_metadata_inventory_put = technic.machine_on_inventory_put, + on_metadata_inventory_take = technic.machine_on_inventory_take, + technic_run = run, + on_timer = on_timer, + on_rightclick = function(pos) update_node(pos, true) end, + on_rotate = function(pos, node, user, mode, new_param2) + if mode ~= 1 then + return false + end + end, + after_place_node = def.tube and pipeworks.after_place, + after_dig_node = technic.machine_after_dig_node, + on_receive_fields = function(pos, formname, fields, player) + if fields.quit then + return + end + local playername = player:get_player_name() + if minetest.is_protected(pos, playername) then + minetest.record_protection_violation(pos, playername) + return + elseif fields.setchannel then + local meta = minetest.get_meta(pos) + meta:set_string("channel", fields.channel or "") + update_node(pos, true) + end + end, + digiline = { + receptor = { + rules = technic.digilines.rules, + action = function() end + }, + effector = { + rules = technic.digilines.rules, + action = function(pos, node, channel, msg) + if msg ~= "GET" and msg ~= "get" then + return + end + local meta = minetest.get_meta(pos) + if channel ~= meta:get_string("channel") then + return + end + local inv = meta:get_inventory() + digilines.receptor_send(pos, technic.digilines.rules, channel, { + demand = meta:get_int(tier.."_EU_demand"), + supply = meta:get_int(tier.."_EU_supply"), + input = meta:get_int(tier.."_EU_input"), + charge = meta:get_int("internal_EU_charge"), + max_charge = def.max_charge * (1 + technic.handle_machine_upgrades(meta) / 10), + src = inv:get_stack("src", 1):to_table(), + dst = inv:get_stack("dst", 1):to_table(), + upgrade1 = inv:get_stack("upgrade1", 1):to_table(), + upgrade2 = inv:get_stack("upgrade2", 1):to_table() + }) + end + }, + }, + }) + end + + -- Register as a battery type + -- Battery type machines function as power reservoirs and can both receive and give back power + for i = 0, 8 do + technic.register_machine(tier, nodename..i, technic.battery) + end + +end -- End registration diff --git a/mods/technic_plus_beta/technic/machines/register/cables.lua b/mods/technic_plus_beta/technic/machines/register/cables.lua new file mode 100644 index 00000000..c2057460 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/register/cables.lua @@ -0,0 +1,162 @@ + +local cable_tier = {} + +function technic.is_tier_cable(nodename, tier) + return cable_tier[nodename] == tier +end + +function technic.get_cable_tier(nodename) + return cable_tier[nodename] +end + +function technic.register_cable_tier(name, tier) + assert(technic.machines[tier], "Tier does not exist") + assert(type(name) == "string", "Invalid node name") + + cable_tier[name] = tier +end + +local function item_place_override_node(itemstack, placer, pointed, node) + -- Call the default on_place function with a fake itemstack + local temp_itemstack = ItemStack(itemstack) + temp_itemstack:set_name(node.name) + local original_count = temp_itemstack:get_count() + temp_itemstack = + minetest.item_place(temp_itemstack, placer, pointed, node.param2) or + temp_itemstack + -- Remove the same number of items from the real itemstack + itemstack:take_item(original_count - temp_itemstack:get_count()) + return itemstack +end + +local function cable_defaults(nodename, data) + assert(data.tier, "Technic cable registration requires `tier` field") + assert(data.size, "Technic cable registration requires `size` field") + assert(data.description, "Technic cable registration requires `description` field") + + local def = table.copy(data) + local tier = def.tier + local ltier = string.lower(tier) + local size = def.size + + local place_network_node = technic.place_network_node + local remove_network_node = technic.remove_network_node + + def.connects_to = def.connects_to or { + "group:technic_"..ltier.."_cable", + "group:technic_"..ltier, + "group:technic_all_tiers" + } + def.groups = def.groups or { + snappy = 2, + choppy = 2, + oddly_breakable_by_hand = 2, + swordy = 1, + axey = 1, + handy = 1, + ["technic_"..ltier.."_cable"] = 1 + } + def.is_ground_content = false + def.drop = def.drop or nodename + def.sounds = def.sounds or technic.sounds.node_sound_wood_defaults() + def.on_construct = def.on_construct or function(pos) place_network_node(pos, {tier}, nodename) end + def.on_destruct = def.on_destruct or function(pos) remove_network_node(pos, {tier}, nodename) end + def.paramtype = def.paramtype or "light" + def.sunlight_propagates = not (def.sunlight_propagates == false and true) + def.drawtype = def.drawtype or "nodebox" + def.node_box = def.node_box or { + type = "connected", + fixed = {-size, -size, -size, size, size, size}, + connect_top = {-size, -size, -size, size, 0.5, size}, -- y+ + connect_bottom = {-size, -0.5, -size, size, size, size}, -- y- + connect_front = {-size, -size, -0.5, size, size, size}, -- z- + connect_back = {-size, -size, size, size, size, 0.5 }, -- z+ + connect_left = {-0.5, -size, -size, size, size, size}, -- x- + connect_right = {-size, -size, -size, 0.5, size, size}, -- x+ + } + return def +end + +function technic.register_cable_plate(nodename, data) + local xyz = {"x","y","z"} + local notconnects = {"left", "bottom", "front", "right", "top", "back"} + local texture_basename = nodename:gsub(":", "_") + for i = 1, 6 do + -- Merge defaults and register cable plate + local def = cable_defaults(nodename.."_"..i, data) + local size = def.size + def.tiles = def.tiles or {texture_basename..".png"} + def.drop = nodename.."_1" + def.node_box.fixed = { + {-size, -size, -size, size, size, size}, + {-0.5, -0.5, -0.5, 0.5, 0.5, 0.5} + } + def.node_box.fixed[1][i] = 7/16 * (i-3.5)/math.abs(i-3.5) + def.node_box.fixed[2][(i + 2) % 6 + 1] = 3/8 * (i-3.5)/math.abs(i-3.5) + def.node_box["connect_"..notconnects[i]] = nil + if i == 1 then + def.on_place = function(itemstack, placer, pointed_thing) + local count = 0 + for axis in pairs(xyz) do + count = count + (pointed_thing.under[axis] == pointed_thing.above[axis] and 0 or 1) + if count > 1 then + return itemstack + end + end + local pointed_thing_diff = vector.direction(pointed_thing.under, pointed_thing.above) + local index = pointed_thing_diff.x + (pointed_thing_diff.y*2) + (pointed_thing_diff.z*3) + local num = index < 0 and -index + 3 or index + local crtl = placer:get_player_control() + if (crtl.aux1 or crtl.sneak) and not (crtl.aux1 and crtl.sneak) and index ~= 0 then + local fine_pointed = minetest.pointed_thing_to_face_pos(placer, pointed_thing) + fine_pointed = vector.direction(pointed_thing.above,fine_pointed) + fine_pointed[xyz[index < 0 and -index or index]] = nil + local key_a, a = next(fine_pointed) + local key_b, b = next(fine_pointed, key_a) + local far_key = math.abs(a) > math.abs(b) and key_a or key_b + local far = fine_pointed[far_key] + -- Plate facing + -- X pair floor +X 4 -X 1 -> Z pair, Y pair + -- Y pair floor +Y 5 -Y 2 -> X pair, Z pair + -- Z pair floor +Z 6 -Z 3 -> X pair, Y pair + if math.abs(far) < 0.3 then + num = num < 4 and num + 3 or num - 3 + elseif far_key == "x" then + num = far < 0 and 1 or 4 + elseif far_key == "y" then + num = far < 0 and 2 or 5 + else + num = far < 0 and 3 or 6 + end + end + local node = {name = nodename.."_"..(num ~= 0 and num or 1)} + return item_place_override_node(itemstack, placer, pointed_thing, node) + end + else + def.groups.not_in_creative_inventory = 1 + def._mcl_blast_resistance = 1 + def._mcl_hardness = 0.8 + end + def.on_rotate = function(pos, node, user, mode, new_param2) + -- mode 1 is left-click, mode 2 is right-click + local dir = mode == 1 and 1 or (mode == 2 and -1 or 0) + local num = tonumber(node.name:sub(-1)) + dir - 1 + minetest.swap_node(pos, {name = nodename.."_"..(num % 6 + 1)}) + end + minetest.register_node(nodename.."_"..i, def) + cable_tier[nodename.."_"..i] = def.tier + end +end + +function technic.register_cable(nodename, data) + -- Merge defaults and register cable + local def = cable_defaults(nodename, data) + local texture_basename = nodename:gsub(":", "_") + def.tiles = def.tiles or {texture_basename..".png"} + def.inventory_image = def.inventory_image or def.inventory_image ~= false and texture_basename.."_wield.png" or nil + def.wield_image = def.wield_image or def.wield_image ~= false and texture_basename.."_wield.png" or nil + def._mcl_blast_resistance = 1 + def._mcl_hardness = 0.8 + minetest.register_node(nodename, def) + cable_tier[nodename] = def.tier +end diff --git a/mods/technic_plus_beta/technic/machines/register/centrifuge_recipes.lua b/mods/technic_plus_beta/technic/machines/register/centrifuge_recipes.lua new file mode 100644 index 00000000..5c76ff8a --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/register/centrifuge_recipes.lua @@ -0,0 +1,50 @@ +local S = technic.getter +local mat = technic.materials + +technic.register_recipe_type("separating", { + description = S("Separating"), + icon = "technic_mv_centrifuge_front.png", + output_size = 4, +}) + +function technic.register_separating_recipe(data) + data.time = data.time or 10 + technic.register_recipe("separating", data) +end + +local recipes = { + { "technic:bronze_dust 8", "technic:copper_dust 7", "technic:tin_dust" }, + { "technic:stainless_steel_dust 5", "technic:wrought_iron_dust 4", "technic:chromium_dust" }, + { "technic:brass_dust 3", "technic:copper_dust 2", "technic:zinc_dust" }, + { "technic:chernobylite_dust", mat.sand, "technic:uranium3_dust" }, + { mat.dirt.." 4", mat.sand, mat.gravel, mat.clay_lump.." 4" }, +} + +local function uranium_dust(p) + return "technic:uranium"..(p == 7 and "" or p).."_dust" +end +for p = 1, 34 do + table.insert(recipes, { uranium_dust(p).." 2", uranium_dust(p-1), uranium_dust(p+1) }) +end + +if minetest.get_modpath("bushes_classic") then + for _, berry in ipairs({ "blackberry", "blueberry", "gooseberry", "raspberry", "strawberry" }) do + table.insert(recipes, { "bushes:"..berry.."_bush", mat.stick.." 20", "bushes:"..berry.." 4" }) + end +end + +if minetest.get_modpath("farming") or minetest.get_modpath("mcl_farming") then + if minetest.get_modpath("cottages") then + -- work as a mechanized threshing floor + table.insert(recipes, { "farming:wheat", "farming:seed_wheat", "cottages:straw_mat" }) + table.insert(recipes, { "farming:barley", "farming:seed_barley", "cottages:straw_mat" }) + else + -- work in a less fancy and less efficient manner + table.insert(recipes, { mat.wheat.." 4", mat.seed_wheat.." 3", mat.dry_shrub }) + table.insert(recipes, { "farming:barley 4", "farming:seed_barley 3", mat.dry_shrub }) + end +end + +for _, data in pairs(recipes) do + technic.register_separating_recipe({ input = { data[1] }, output = { data[2], data[3], data[4] } }) +end diff --git a/mods/technic_plus_beta/technic/machines/register/common.lua b/mods/technic_plus_beta/technic/machines/register/common.lua new file mode 100644 index 00000000..9d874cc2 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/register/common.lua @@ -0,0 +1,220 @@ + +local S = technic.getter +local mat = technic.materials + +-- handles the machine upgrades every tick +function technic.handle_machine_upgrades(meta) + -- Get the names of the upgrades + local inv = meta:get_inventory() + + local srcstack = inv:get_stack("upgrade1", 1) + local upg_item1 = srcstack and srcstack:get_name() + + srcstack = inv:get_stack("upgrade2", 1) + local upg_item2 = srcstack and srcstack:get_name() + + -- Save some power by installing battery upgrades. + -- Tube loading speed can be upgraded using control logic units. + local EU_upgrade = 0 + local tube_upgrade = 0 + + if upg_item1 == "technic:control_logic_unit" then + tube_upgrade = tube_upgrade + 1 + elseif upg_item1 == "technic:battery" then + EU_upgrade = EU_upgrade + 1 + end + + if upg_item2 == "technic:control_logic_unit" then + tube_upgrade = tube_upgrade + 1 + elseif upg_item2 == "technic:battery" then + EU_upgrade = EU_upgrade + 1 + end + + return EU_upgrade, tube_upgrade +end + +-- handles the machine upgrades when set or removed +local function on_machine_upgrade(meta, stack) + local stack_name = stack:get_name() + if stack_name == mat.chest then + meta:set_int("public", 1) + return 1 + elseif stack_name ~= "technic:control_logic_unit" + and stack_name ~= "technic:battery" then + return 0 + end + return 1 +end + +-- something is about to be removed +local function on_machine_downgrade(meta, stack, list) + if stack:get_name() == mat.chest then + local inv = meta:get_inventory() + local upg1, upg2 = inv:get_stack("upgrade1", 1), inv:get_stack("upgrade2", 1) + + -- only set 0 if theres not a nother chest in the other list too + if (not upg1 or not upg2 or upg1:get_name() ~= upg2:get_name()) then + meta:set_int("public", 0) + end + end + return 1 +end + + +function technic.send_items(pos, x_velocity, z_velocity, output_name) + -- Send items on their way in the pipe system. + if output_name == nil then + output_name = "dst" + end + + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + local i = 0 + for _, stack in ipairs(inv:get_list(output_name)) do + i = i + 1 + if stack then + local item0 = stack:to_table() + if item0 then + item0["count"] = 1 + technic.tube_inject_item(pos, pos, vector.new(x_velocity, 0, z_velocity), item0) + stack:take_item(1) + inv:set_stack(output_name, i, stack) + return + end + end + end +end + +function technic.handle_machine_pipeworks(pos, tube_upgrade, send_function) + if send_function == nil then + send_function = technic.send_items + end + + local node = minetest.get_node(pos) + local meta = minetest.get_meta(pos) + local pos1 = vector.new(pos) + local x_velocity = 0 + local z_velocity = 0 + + -- Output is on the left side of the furnace + if node.param2 == 3 then pos1.z = pos1.z - 1 z_velocity = -1 end + if node.param2 == 2 then pos1.x = pos1.x - 1 x_velocity = -1 end + if node.param2 == 1 then pos1.z = pos1.z + 1 z_velocity = 1 end + if node.param2 == 0 then pos1.x = pos1.x + 1 x_velocity = 1 end + + local output_tube_connected = false + local node1 = minetest.get_node(pos1) + if minetest.get_item_group(node1.name, "tubedevice") > 0 then + output_tube_connected = true + end + local tube_time = meta:get_int("tube_time") + tube_upgrade + if tube_time >= 2 then + tube_time = 0 + if output_tube_connected then + send_function(pos, x_velocity, z_velocity) + end + end + meta:set_int("tube_time", tube_time) +end + +function technic.machine_can_dig(pos, player) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + if not inv:is_empty("src") or not inv:is_empty("dst") or not inv:is_empty("fuel") then + if player then + minetest.chat_send_player(player:get_player_name(), + S("Machine cannot be removed because it is not empty")) + end + return false + end + + return true +end + +function technic.machine_after_dig_node(pos, oldnode, oldmetadata, player) + if oldmetadata.inventory then + if oldmetadata.inventory.upgrade1 and oldmetadata.inventory.upgrade1[1] then + local stack = ItemStack(oldmetadata.inventory.upgrade1[1]) + if not stack:is_empty() then + minetest.add_item(pos, stack) + end + end + if oldmetadata.inventory.upgrade2 and oldmetadata.inventory.upgrade2[1] then + local stack = ItemStack(oldmetadata.inventory.upgrade2[1]) + if not stack:is_empty() then + minetest.add_item(pos, stack) + end + end + end + + if minetest.registered_nodes[oldnode.name].tube then + pipeworks.after_dig(pos, oldnode, oldmetadata, player) + end +end + +local function inv_change(pos, player, count, from_list, to_list, stack) + local playername = player:get_player_name() + local meta = minetest.get_meta(pos); + local public = (meta:get_int("public") == 1) + local to_upgrade = to_list == "upgrade1" or to_list == "upgrade2" + local from_upgrade = from_list == "upgrade1" or from_list == "upgrade2" + + if (not public or to_upgrade or from_upgrade) and minetest.is_protected(pos, playername) then + minetest.chat_send_player(playername, S("Inventory move disallowed due to protection")) + return 0 + end + if to_upgrade then + -- only place a single item into it, if it's empty + local empty = meta:get_inventory():is_empty(to_list) + if empty then + return on_machine_upgrade(meta, stack) + end + return 0 + elseif from_upgrade then + -- only called on take (not move) + on_machine_downgrade(meta, stack, from_list) + end + return count +end + +function technic.machine_inventory_put(pos, listname, index, stack, player) + return inv_change(pos, player, stack:get_count(), nil, listname, stack) +end + +function technic.machine_inventory_take(pos, listname, index, stack, player) + return inv_change(pos, player, stack:get_count(), listname, nil, stack) +end + +function technic.machine_inventory_move(pos, from_list, from_index, + to_list, to_index, count, player) + local stack = minetest.get_meta(pos):get_inventory():get_stack(from_list, from_index) + return inv_change(pos, player, count, from_list, to_list, stack) +end + +function technic.machine_on_inventory_put(pos, listname, index, stack, player) + minetest.log("action", string.format("%s puts %s into %s at %s", + player:get_player_name(), + stack:to_string(), + minetest.get_node(pos).name, + minetest.pos_to_string(pos) + )) +end + +function technic.machine_on_inventory_take(pos, listname, index, stack, player) + minetest.log("action", string.format("%s takes %s from %s at %s", + player:get_player_name(), + stack:to_string(), + minetest.get_node(pos).name, + minetest.pos_to_string(pos) + )) +end + +function technic.machine_on_inventory_move(pos, from_list, from_index, to_list, to_index, count, player) + local stack = minetest.get_meta(pos):get_inventory():get_stack(to_list, to_index) + minetest.log("action", string.format("%s moves %s in %s at %s", + player:get_player_name(), + stack:to_string(), + minetest.get_node(pos).name, + minetest.pos_to_string(pos) + )) +end diff --git a/mods/technic_plus_beta/technic/machines/register/compressor_recipes.lua b/mods/technic_plus_beta/technic/machines/register/compressor_recipes.lua new file mode 100644 index 00000000..2e6bfd0e --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/register/compressor_recipes.lua @@ -0,0 +1,61 @@ + +local S = technic.getter +local mat = technic.materials +local has_mcl = minetest.get_modpath("mcl_core") + +technic.register_recipe_type("compressing", { + description = S("Compressing"), + icon = "technic_hv_compressor_front.png", +}) + +function technic.register_compressor_recipe(data) + data.time = data.time or 4 + technic.register_recipe("compressing", data) +end + +local recipes = { + {mat.snowblock, mat.ice}, + {mat.sand.." 2", mat.sandstone}, + {mat.desert_sand.." 2", mat.desert_sandstone}, + {mat.silver_sand.." 2", mat.silver_sandstone}, + {mat.desert_sandstone, mat.desert_stone}, + {"technic:mixed_metal_ingot", "technic:composite_plate"}, + {mat.copper_ingot.." 5", "technic:copper_plate"}, + {"technic:coal_dust 4", "technic:graphite"}, + {"technic:carbon_cloth", "technic:carbon_plate"}, + {"technic:uranium35_ingot 5", "technic:uranium_fuel"}, + {"technic:graphite 25", mat.diamond} +} + +if minetest.get_modpath("ethereal") then + -- the density of charcoal is ~1/10 of coal, otherwise it's pure carbon + table.insert(recipes, {"ethereal:charcoal_lump 10", mat.coal_lump.." 1"}) +end + + +-- defuse the default sandstone recipe, since we have the compressor to take over in a more realistic manner +if not has_mcl then + minetest.clear_craft({ + recipe = { + {"default:sand", "default:sand"}, + {"default:sand", "default:sand"}, + }, + }) + minetest.clear_craft({ + recipe = { + {"default:desert_sand", "default:desert_sand"}, + {"default:desert_sand", "default:desert_sand"}, + }, + }) + minetest.clear_craft({ + recipe = { + {"default:silver_sand", "default:silver_sand"}, + {"default:silver_sand", "default:silver_sand"}, + }, + }) +end + +for _, data in pairs(recipes) do + technic.register_compressor_recipe({input = {data[1]}, output = data[2]}) +end + diff --git a/mods/technic_plus_beta/technic/machines/register/extractor_recipes.lua b/mods/technic_plus_beta/technic/machines/register/extractor_recipes.lua new file mode 100644 index 00000000..d7688418 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/register/extractor_recipes.lua @@ -0,0 +1,136 @@ + +local S = technic.getter + +technic.register_recipe_type("extracting", { + description = S("Extracting"), + icon = "technic_mv_extractor_front.png", +}) + +function technic.register_extractor_recipe(data) + data.time = data.time or 4 + technic.register_recipe("extracting", data) +end + +if minetest.get_modpath("dye") then + -- check if we are using dye or unifieddyes + local unifieddyes = minetest.get_modpath("unifieddyes") + + -- register recipes with the same crafting ratios as `dye` provides + local dye_recipes = { + {"technic:coal_dust", "dye:black 2"}, + {"default:blueberries", "dye:violet 2"}, + {"default:grass_1", "dye:green 1"}, + {"default:dry_shrub", "dye:brown 4"}, + {"default:junglegrass", "dye:green 2"}, + {"default:cactus", "dye:green 4"}, + {"default:coral_green", "dye:green 4"}, + {"default:coral_pink", "dye:pink 4"}, + {"default:coral_cyan", "dye:cyan 4"}, + {"default:coral_brown", "dye:brown 4"}, + {"default:coral_orange", "dye:orange 4"}, + {"default:coral_skeleton", "dye:white 8"}, + {"flowers:chrysanthemum_green", "dye:green 4"}, + {"flowers:geranium", "dye:blue 4"}, + {"flowers:dandelion_white", "dye:white 4"}, + {"flowers:dandelion_yellow", "dye:yellow 4"}, + {"flowers:tulip", "dye:orange 4"}, + {"flowers:tulip_black", "dye:black 8"}, + {"flowers:rose", "dye:red 4"}, + {"flowers:viola", "dye:violet 4"}, + {"bushes:blackberry", unifieddyes and "unifieddyes:magenta_s50 4" or "dye:violet 4"}, + {"bushes:blueberry", unifieddyes and "unifieddyes:magenta_s50 4" or "dye:magenta 4"}, + } + + if minetest.get_modpath("hunger") and minetest.get_modpath("ethereal") then + table.insert(dye_recipes, {"ethereal:willow_twig 12", "technic:aspirin_pill"}) + end + + if minetest.get_modpath("farming") then + -- Dyes --- + -- better recipes for farming's crafting methods (twice the output) + table.insert(dye_recipes, {"farming:chili_pepper", "dye:red 4"}) + table.insert(dye_recipes, {"farming:beans", "dye:green 4"}) + table.insert(dye_recipes, {"farming:grapes", "dye:violet 4"}) + table.insert(dye_recipes, {"farming:cocoa_beans", "dye:brown 4"}) + -- Some extra recipes: + table.insert(dye_recipes, {"farming:onion", "dye:yellow 4"}) + table.insert(dye_recipes, {"farming:blueberries", "dye:blue 4"}) + table.insert(dye_recipes, {"farming:raspberries", "dye:red 4"}) + table.insert(dye_recipes, {"farming:blackberry", "dye:violet 4"}) + -- Himalayan rhubarb root can give yellow dye IRL + table.insert(dye_recipes, {"farming:rhubarb", "dye:yellow 4"}) + -- https://pubmed.ncbi.nlm.nih.gov/25401128 + -- Biobleaching of industrial important dyes with peroxidase partially purified from garlic + table.insert(dye_recipes, {"farming:garlic", "dye:white 2"}) + end + + if minetest.get_modpath("ethereal") then + table.insert(dye_recipes, {"ethereal:seaweed", "dye:dark_green 6"}) + table.insert(dye_recipes, {"ethereal:coral2", "dye:cyan 6"}) + table.insert(dye_recipes, {"ethereal:coral3", "dye:orange 6"}) + table.insert(dye_recipes, {"ethereal:coral4", "dye:pink 6"}) + table.insert(dye_recipes, {"ethereal:coral5", "dye:green 6"}) + table.insert(dye_recipes, {"ethereal:fern", "dye:dark_green 4"}) + table.insert(dye_recipes, {"ethereal:snowygrass", "dye:grey 4"}) + table.insert(dye_recipes, {"ethereal:crystalgrass", "dye:blue 4"}) + end + + if minetest.get_modpath("bakedclay") then + table.insert(dye_recipes, {"bakedclay:delphinium", "dye:cyan 8"}) + table.insert(dye_recipes, {"bakedclay:thistle", "dye:magenta 8"}) + table.insert(dye_recipes, {"bakedclay:lazarus", "dye:pink 8"}) + table.insert(dye_recipes, {"bakedclay:mannagrass", "dye:dark_green 8"}) + end + + + if minetest.get_modpath("bonemeal") then + table.insert(dye_recipes, {"bonemeal:bone", "dye:white 8"}) + table.insert(dye_recipes, {"bonemeal:bonemeal", "dye:white 4"}) + end + + for _, data in ipairs(dye_recipes) do + technic.register_extractor_recipe({input = {data[1]}, output = data[2]}) + end + + -- overwrite the existing crafting recipes + local dyes = {"white", "red", "yellow", "blue", "violet", "orange"} + for _, color in ipairs(dyes) do + minetest.clear_craft({ + recipe = { + {"group:flower,color_"..color} + }, + }) + minetest.register_craft({ + output = "dye:"..color.." 1", + recipe = { + {"group:flower,color_"..color} + }, + }) + end + + minetest.clear_craft({ + recipe = { + {"group:coal"} + }, + }) + minetest.register_craft({ + output = "dye:black 1", + recipe = { + {"group:coal"} + }, + }) + + if unifieddyes then + minetest.clear_craft({ + recipe = { + {"default:cactus"} + }, + }) + minetest.register_craft({ + output = "dye:green 1", + recipe = { + {"default:cactus"} + }, + }) + end +end diff --git a/mods/technic_plus_beta/technic/machines/register/freezer_recipes.lua b/mods/technic_plus_beta/technic/machines/register/freezer_recipes.lua new file mode 100644 index 00000000..153722ca --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/register/freezer_recipes.lua @@ -0,0 +1,25 @@ + +local S = technic.getter +local mat = technic.materials + +technic.register_recipe_type("freezing", { + description = S("Freezing"), + icon = "technic_mv_freezer_front.png", +}) + +function technic.register_freezer_recipe(data) + data.time = data.time or 5 + technic.register_recipe("freezing", data) +end + +local recipes = { + {mat.bucket_water, { mat.ice, mat.bucket_empty } }, + {mat.bucket_river_water, { mat.ice, mat.bucket_empty } }, + {mat.dirt, mat.dirt_with_snow }, + {mat.bucket_lava, { mat.obsidian, mat.bucket_empty } } +} + +for _, data in pairs(recipes) do + technic.register_freezer_recipe({input = {data[1]}, output = data[2], hidden = true}) +end + diff --git a/mods/technic_plus_beta/technic/machines/register/generator.lua b/mods/technic_plus_beta/technic/machines/register/generator.lua new file mode 100644 index 00000000..7ccc6736 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/register/generator.lua @@ -0,0 +1,294 @@ +local S = technic.getter + +local fs_helpers = pipeworks.fs_helpers +local tube_entry = "^pipeworks_tube_connection_metallic.png" + +local tube = { + insert_object = function(pos, node, stack, direction) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + return inv:add_item("src", stack) + end, + can_insert = function(pos, node, stack, direction) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + if meta:get_int("splitstacks") == 1 then + stack = stack:peek_item(1) + end + return inv:room_for_item("src", stack) + end, + connect_sides = {left=1, right=1, back=1, top=1, bottom=1}, +} + +local size = minetest.get_modpath("mcl_formspec") and "size[9,10]" or "size[8,9]" + +local function update_generator_formspec(meta, desc, percent, form_buttons) + local generator_formspec = size.. + "label[0, 0;"..desc.."]".. + "list[context;src;3,1;1,1;]".. + "listring[context;src]".. + "image[4,1;1,1;default_furnace_fire_bg.png^[lowpart:".. + (percent)..":default_furnace_fire_fg.png]".. + form_buttons + + if minetest.get_modpath("mcl_formspec") then + generator_formspec = generator_formspec.. + mcl_formspec.get_itemslot_bg(3,1,1,1).. + -- player inventory + "list[current_player;main;0,5.5;9,3;9]".. + mcl_formspec.get_itemslot_bg(0,5.5,9,3).. + "list[current_player;main;0,8.74;9,1;]".. + mcl_formspec.get_itemslot_bg(0,8.74,9,1).. + "listring[current_player;main]" + else + generator_formspec = generator_formspec.. + "list[current_player;main;0, 5;8, 4;]".. + "listring[current_player;main]" + end + return meta:set_string("formspec", generator_formspec) +end + +function technic.register_generator(data) + + local tier = data.tier + local ltier = string.lower(tier) + + local groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2, + technic_machine=1, ["technic_"..ltier]=1, axey=2, handy=1} + if data.tube then + groups.tubedevice = 1 + groups.tubedevice_receiver = 1 + end + local active_groups = {not_in_creative_inventory = 1} + for k, v in pairs(groups) do active_groups[k] = v end + + local desc = S("Fuel-Fired @1 Generator", S(tier)) + + local run = function(pos, node) + local meta = minetest.get_meta(pos) + local burn_time = meta:get_int("burn_time") + local burn_totaltime = meta:get_int("burn_totaltime") + -- If more to burn and the energy produced was used: produce some more + if burn_time > 0 then + meta:set_int(tier.."_EU_supply", data.supply) + burn_time = burn_time - 1 + meta:set_int("burn_time", burn_time) + end + -- Burn another piece of fuel + if burn_time == 0 then + local inv = meta:get_inventory() + if not inv:is_empty("src") then + local fuellist = inv:get_list("src") + local fuel + local afterfuel + fuel, afterfuel = minetest.get_craft_result( + {method = "fuel", width = 1, + items = fuellist}) + if not fuel or fuel.time == 0 then + meta:set_string("infotext", S("@1 Out Of Fuel", desc)) + technic.swap_node(pos, "technic:"..ltier.."_generator") + meta:set_int(tier.."_EU_supply", 0) + return + end + meta:set_int("burn_time", fuel.time) + meta:set_int("burn_totaltime", fuel.time) + inv:set_stack("src", 1, afterfuel.items[1]) + technic.swap_node(pos, "technic:"..ltier.."_generator_active") + meta:set_int(tier.."_EU_supply", data.supply) + else + technic.swap_node(pos, "technic:"..ltier.."_generator") + meta:set_int(tier.."_EU_supply", 0) + end + end + if burn_totaltime == 0 then burn_totaltime = 1 end + local percent = math.floor((burn_time / burn_totaltime) * 100) + meta:set_string("infotext", desc.." ("..percent.."%)") + + local form_buttons = "" + if ltier ~= "lv" then + form_buttons = fs_helpers.cycling_button( + meta, + pipeworks.button_base, + "splitstacks", + { + pipeworks.button_off, + pipeworks.button_on + } + )..pipeworks.button_label + end + update_generator_formspec(meta, desc, percent, form_buttons) + end + + local tentry = tube_entry + if ltier == "lv" then tentry = "" end + + minetest.register_node("technic:"..ltier.."_generator", { + description = desc, + tiles = { + "technic_"..ltier.."_generator_top.png"..tentry, + "technic_machine_bottom.png"..tentry, + "technic_"..ltier.."_generator_side.png"..tentry, + "technic_"..ltier.."_generator_side.png"..tentry, + "technic_"..ltier.."_generator_side.png"..tentry, + "technic_"..ltier.."_generator_front.png" + }, + paramtype2 = "facedir", + groups = groups, + is_ground_content = false, + _mcl_blast_resistance = 1, + _mcl_hardness = 0.8, + connect_sides = {"bottom", "back", "left", "right"}, + legacy_facedir_simple = true, + sounds = technic.sounds.node_sound_wood_defaults(), + tube = data.tube and tube or nil, + on_construct = function(pos) + local meta = minetest.get_meta(pos) + local node = minetest.get_node(pos) + meta:set_string("infotext", desc) + meta:set_int(data.tier.."_EU_supply", 0) + meta:set_int("burn_time", 0) + meta:set_int("tube_time", 0) + local form_buttons = "" + if not string.find(node.name, ":lv_") then + form_buttons = fs_helpers.cycling_button( + meta, + pipeworks.button_base, + "splitstacks", + { + pipeworks.button_off, + pipeworks.button_on + } + )..pipeworks.button_label + end + update_generator_formspec(meta, desc, 0, form_buttons) + local inv = meta:get_inventory() + inv:set_size("src", 1) + end, + can_dig = technic.machine_can_dig, + allow_metadata_inventory_put = technic.machine_inventory_put, + allow_metadata_inventory_take = technic.machine_inventory_take, + allow_metadata_inventory_move = technic.machine_inventory_move, + technic_run = run, + after_place_node = data.tube and pipeworks.after_place, + after_dig_node = technic.machine_after_dig_node, + on_receive_fields = function(pos, formname, fields, sender) + if not pipeworks.may_configure(pos, sender) then return end + fs_helpers.on_receive_fields(pos, fields) + local meta = minetest.get_meta(pos) + local node = minetest.get_node(pos) + local form_buttons = "" + if not string.find(node.name, ":lv_") then + form_buttons = fs_helpers.cycling_button( + meta, + pipeworks.button_base, + "splitstacks", + { + pipeworks.button_off, + pipeworks.button_on + } + )..pipeworks.button_label + end + local burn_totaltime = meta:get_int("burn_totaltime") or 0 + local burn_time = meta:get_int("burn_time") + local percent = math.floor(burn_time / burn_totaltime * 100) + update_generator_formspec(meta, desc, percent, form_buttons) + end, + }) + + minetest.register_node("technic:"..ltier.."_generator_active", { + description = desc, + tiles = { + "technic_"..ltier.."_generator_top.png"..tube_entry, + "technic_machine_bottom.png"..tube_entry, + "technic_"..ltier.."_generator_side.png"..tube_entry, + "technic_"..ltier.."_generator_side.png"..tube_entry, + "technic_"..ltier.."_generator_side.png"..tube_entry, + "technic_"..ltier.."_generator_front_active.png" + }, + paramtype2 = "facedir", + groups = active_groups, + is_ground_content = false, + _mcl_blast_resistance = 1, + _mcl_hardness = 0.8, + connect_sides = {"bottom"}, + legacy_facedir_simple = true, + sounds = technic.sounds.node_sound_wood_defaults(), + tube = data.tube and tube or nil, + drop = "technic:"..ltier.."_generator", + can_dig = technic.machine_can_dig, + after_dig_node = technic.machine_after_dig_node, + allow_metadata_inventory_put = technic.machine_inventory_put, + allow_metadata_inventory_take = technic.machine_inventory_take, + allow_metadata_inventory_move = technic.machine_inventory_move, + technic_run = run, + technic_on_disable = function(pos, node) + local timer = minetest.get_node_timer(pos) + timer:start(1) + end, + on_timer = function(pos) + -- Connected back? + if technic.get_timeout(tier, pos) > 0 then return false end + + local meta = minetest.get_meta(pos) + local node = minetest.get_node(pos) + + local burn_time = meta:get_int("burn_time") or 0 + + if burn_time <= 0 then + meta:set_int(tier.."_EU_supply", 0) + meta:set_int("burn_time", 0) + technic.swap_node(pos, "technic:"..ltier.."_generator") + return false + end + + local burn_totaltime = meta:get_int("burn_totaltime") or 0 + if burn_totaltime == 0 then burn_totaltime = 1 end + burn_time = burn_time - 1 + meta:set_int("burn_time", burn_time) + local percent = math.floor(burn_time / burn_totaltime * 100) + + local form_buttons = "" + if not string.find(node.name, ":lv_") then + form_buttons = fs_helpers.cycling_button( + meta, + pipeworks.button_base, + "splitstacks", + { + pipeworks.button_off, + pipeworks.button_on + } + )..pipeworks.button_label + end + update_generator_formspec(meta, desc, percent, form_buttons) + return true + end, + on_receive_fields = function(pos, formname, fields, sender) + if not pipeworks.may_configure(pos, sender) then return end + fs_helpers.on_receive_fields(pos, fields) + local meta = minetest.get_meta(pos) + local node = minetest.get_node(pos) + local form_buttons = "" + if not string.find(node.name, ":lv_") then + form_buttons = fs_helpers.cycling_button( + meta, + pipeworks.button_base, + "splitstacks", + { + pipeworks.button_off, + pipeworks.button_on + } + )..pipeworks.button_label + end + + local burn_totaltime = meta:get_int("burn_totaltime") or 0 + local burn_time = meta:get_int("burn_time") + local percent = math.floor(burn_time / burn_totaltime * 100) + + update_generator_formspec(meta, desc, percent, form_buttons) + end, + }) + + technic.register_machine(tier, "technic:"..ltier.."_generator", technic.producer) + technic.register_machine(tier, "technic:"..ltier.."_generator_active", technic.producer) +end + diff --git a/mods/technic_plus_beta/technic/machines/register/grinder_recipes.lua b/mods/technic_plus_beta/technic/machines/register/grinder_recipes.lua new file mode 100644 index 00000000..df38d81e --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/register/grinder_recipes.lua @@ -0,0 +1,182 @@ + +local S = technic.getter +local mat = technic.materials + +technic.register_recipe_type("grinding", { + description = S("Grinding"), + icon = "technic_hv_grinder_front.png", +}) + +function technic.register_grinder_recipe(data) + data.time = data.time or 3 + technic.register_recipe("grinding", data) +end + +local recipes = { + -- Dusts + {mat.coal_lump, "technic:coal_dust 2"}, + {mat.copper_lump, "technic:copper_dust 2"}, + {mat.desert_stone, mat.desert_sand}, + {mat.gold_lump, "technic:gold_dust 2"}, + {mat.iron_lump, "technic:wrought_iron_dust 2"}, + {mat.tin_lump, "technic:tin_dust 2"}, + {"technic:chromium_lump", "technic:chromium_dust 2"}, + {"technic:uranium_lump", "technic:uranium_dust 2"}, + {"technic:zinc_lump", "technic:zinc_dust 2"}, + {"technic:lead_lump", "technic:lead_dust 2"}, + {"technic:sulfur_lump", "technic:sulfur_dust 2"}, + {mat.stone, "technic:stone_dust"}, + {mat.sand, "technic:stone_dust"}, + {mat.desert_sand, "technic:stone_dust"}, + {mat.silver_sand, "technic:stone_dust"}, + + -- Other + {mat.cobble, mat.gravel}, + {mat.gravel, mat.sand}, + {mat.sandstone, mat.sand.." 2"}, -- reverse recipe can be found in the compressor + {mat.desert_sandstone, mat.desert_sand.." 2"}, -- reverse recipe can be found in the compressor + {mat.silver_sandstone, mat.silver_sand.." 2"}, -- reverse recipe can be found in the compressor + + {mat.ice, mat.snowblock}, +} + +if minetest.get_modpath("ethereal") then + -- the density of charcoal is ~1/10 of coal, otherwise it's the same graphitic carbon + table.insert(recipes, {"ethereal:charcoal_lump 5", "technic:coal_dust 1"}) +end + +-- defuse the sandstone -> 4 sand recipe to avoid infinite sand bugs (also consult the inverse compressor recipe) +minetest.clear_craft({ + recipe = { + {mat.sandstone} + }, +}) +minetest.clear_craft({ + recipe = { + {mat.desert_sandstone} + }, +}) +minetest.clear_craft({ + recipe = { + {mat.silver_sandstone} + }, +}) + +if minetest.get_modpath("farming") then + table.insert(recipes, {mat.seed_wheat, "farming:flour 1"}) +end + +if minetest.get_modpath("moreores") then + table.insert(recipes, {"moreores:mithril_lump", "technic:mithril_dust 2"}) + table.insert(recipes, {"moreores:silver_lump", "technic:silver_dust 2"}) +end + +if minetest.get_modpath("gloopores") or minetest.get_modpath("glooptest") then + table.insert(recipes, {"gloopores:alatro_lump", "technic:alatro_dust 2"}) + table.insert(recipes, {"gloopores:kalite_lump", "technic:kalite_dust 2"}) + table.insert(recipes, {"gloopores:arol_lump", "technic:arol_dust 2"}) + table.insert(recipes, {"gloopores:talinite_lump", "technic:talinite_dust 2"}) + table.insert(recipes, {"gloopores:akalin_lump", "technic:akalin_dust 2"}) +end + +if minetest.get_modpath("homedecor") then + table.insert(recipes, {"home_decor:brass_ingot", "technic:brass_dust 1"}) +end + +for _, data in pairs(recipes) do + technic.register_grinder_recipe({input = {data[1]}, output = data[2]}) +end + +-- dusts +local function register_dust(name, ingot) + local lname = string.lower(name) + lname = string.gsub(lname, ' ', '_') + minetest.register_craftitem("technic:"..lname.."_dust", { + description = S("@1 Dust", S(name)), + inventory_image = "technic_"..lname.."_dust.png", + }) + if ingot then + minetest.register_craft({ + type = "cooking", + recipe = "technic:"..lname.."_dust", + output = ingot, + }) + technic.register_grinder_recipe({ input = {ingot}, output = "technic:"..lname.."_dust 1" }) + end +end + +-- Sorted alphibeticaly +register_dust("Brass", "basic_materials:brass_ingot") +register_dust("Bronze", mat.bronze_ingot) +register_dust("Carbon Steel", "technic:carbon_steel_ingot") +register_dust("Cast Iron", "technic:cast_iron_ingot") +register_dust("Chernobylite", "technic:chernobylite_block") +register_dust("Chromium", "technic:chromium_ingot") +register_dust("Coal", nil) +register_dust("Copper", mat.copper_ingot) +register_dust("Lead", "technic:lead_ingot") +register_dust("Gold", mat.gold_ingot) +register_dust("Mithril", mat.mithril_ingot) +register_dust("Silver", mat.silver_ingot) +register_dust("Stainless Steel", "technic:stainless_steel_ingot") +register_dust("Stone", mat.stone) +register_dust("Sulfur", nil) +register_dust("Tin", mat.tin_ingot) +register_dust("Wrought Iron", "technic:wrought_iron_ingot") +register_dust("Zinc", "technic:zinc_ingot") +if minetest.get_modpath("gloopores") or minetest.get_modpath("glooptest") then + register_dust("Akalin", "glooptest:akalin_ingot") + register_dust("Alatro", "glooptest:alatro_ingot") + register_dust("Arol", "glooptest:arol_ingot") + register_dust("Kalite", nil) + register_dust("Talinite", "glooptest:talinite_ingot") +end + +for p = 0, 35 do + local nici = (p ~= 0 and p ~= 7 and p ~= 35) and 1 or nil + local psuffix = p == 7 and "" or p + local ingot = "technic:uranium"..psuffix.."_ingot" + local dust = "technic:uranium"..psuffix.."_dust" + minetest.register_craftitem(dust, { + description = S("@1%-Fissile Uranium Dust", string.format("%.1f", p/10)), + inventory_image = "technic_uranium_dust.png", + on_place_on_ground = minetest.craftitem_place_item, + groups = {uranium_dust=1, not_in_creative_inventory=nici}, + }) + minetest.register_craft({ + type = "cooking", + recipe = dust, + output = ingot, + }) + technic.register_grinder_recipe({ input = {ingot}, output = dust }) +end + +local function uranium_dust(p) + return "technic:uranium"..(p == 7 and "" or p).."_dust" +end +for pa = 0, 34 do + for pb = pa+1, 35 do + local pc = (pa+pb)/2 + if pc == math.floor(pc) then + minetest.register_craft({ + type = "shapeless", + recipe = { uranium_dust(pa), uranium_dust(pb) }, + output = uranium_dust(pc).." 2", + }) + end + end +end + +minetest.register_craft({ + type = "fuel", + recipe = "technic:coal_dust", + burntime = 50, +}) + +if minetest.get_modpath("gloopores") or minetest.get_modpath("glooptest") then + minetest.register_craft({ + type = "fuel", + recipe = "technic:kalite_dust", + burntime = 37.5, + }) +end diff --git a/mods/technic_plus_beta/technic/machines/register/grindings.lua b/mods/technic_plus_beta/technic/machines/register/grindings.lua new file mode 100644 index 00000000..4c622947 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/register/grindings.lua @@ -0,0 +1,60 @@ +local S = technic.getter +local moretrees = minetest.get_modpath("moretrees") +local dye = minetest.get_modpath("dye") +local mat = technic.materials + +-- sawdust, the finest wood/tree grinding +local sawdust = "technic:sawdust" +minetest.register_craftitem(sawdust, { + description = S("Sawdust"), + inventory_image = "technic_sawdust.png", +}) +minetest.register_craft({ type = "fuel", recipe = sawdust, burntime = 6 }) +technic.register_compressor_recipe({ input = {sawdust .. " 4"}, output = mat.wood }) + +-- tree/wood grindings +local function register_tree_grinding(name, tree, wood, extract, grinding_color) + local lname = string.lower(name) + lname = string.gsub(lname, ' ', '_') + local grindings_name = "technic:"..lname.."_grindings" + if not minetest.registered_craftitems[grindings_name] then + local inventory_image = "technic_"..lname.."_grindings.png" + if grinding_color then + inventory_image = inventory_image .. "^[colorize:" .. grinding_color + end + minetest.register_craftitem(grindings_name, { + description = S("@1 Grinding", S(name)), + inventory_image = inventory_image, + }) + minetest.register_craft({ + type = "fuel", + recipe = grindings_name, + burntime = 8, + }) + end + technic.register_grinder_recipe({ input = { tree }, output = grindings_name .. " 4" }) + technic.register_grinder_recipe({ input = { grindings_name }, output = sawdust .. " 4" }) + if wood then + technic.register_grinder_recipe({ input = { wood }, output = grindings_name }) + end + if extract then + technic.register_extractor_recipe({ input = { grindings_name .. " 4" }, output = extract}) + technic.register_separating_recipe({ + input = { grindings_name .. " 4" }, + output = { sawdust .. " 4", extract } + }) + end +end + +local rubber_planks = moretrees and "moretrees:rubber_tree_planks" +local default_extract = dye and "dye:brown 2" +-- https://en.wikipedia.org/wiki/Catechu ancient brown dye from the wood of acacia trees +local acacia_extract = dye and "dye:brown 8" + +-- Specific recipes for acacia and rubber trees +register_tree_grinding("Acacia", mat.acacia_tree, mat.acacia_wood, acacia_extract) +register_tree_grinding("Rubber Tree", "moretrees:rubber_tree_trunk", rubber_planks, "technic:raw_latex 2") +register_tree_grinding("Rubber Tree", "moretrees:rubber_tree_trunk_empty", nil, "technic:raw_latex") + +-- Group recipe for all other trees +register_tree_grinding("Common Tree", "group:tree", "group:wood", default_extract) diff --git a/mods/technic_plus_beta/technic/machines/register/init.lua b/mods/technic_plus_beta/technic/machines/register/init.lua new file mode 100644 index 00000000..d4ba2ea6 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/register/init.lua @@ -0,0 +1,26 @@ +local path = technic.modpath.."/machines/register" + +dofile(path.."/common.lua") + +-- Wiring stuff +dofile(path.."/cables.lua") +dofile(path.."/battery_box.lua") + +-- Generators +dofile(path.."/solar_array.lua") +dofile(path.."/generator.lua") + +-- API for machines +dofile(path.."/recipes.lua") +dofile(path.."/machine_base.lua") + +-- Recipes +dofile(path.."/alloy_recipes.lua") +dofile(path.."/grinder_recipes.lua") +dofile(path.."/extractor_recipes.lua") +dofile(path.."/compressor_recipes.lua") +dofile(path.."/centrifuge_recipes.lua") +dofile(path.."/freezer_recipes.lua") + +-- Multi-Machine Recipes +dofile(path.."/grindings.lua") diff --git a/mods/technic_plus_beta/technic/machines/register/machine_base.lua b/mods/technic_plus_beta/technic/machines/register/machine_base.lua new file mode 100644 index 00000000..9ea99e5d --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/register/machine_base.lua @@ -0,0 +1,299 @@ + +local S = technic.getter + +local fs_helpers = pipeworks.fs_helpers +local tube_entry = "^pipeworks_tube_connection_metallic.png" + +function technic.default_can_insert(pos, node, stack, direction) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + if meta:get_int("splitstacks") == 1 then + stack = stack:peek_item(1) + end + return inv:room_for_item("src", stack) +end + +function technic.new_default_tube() + return { + insert_object = function(pos, node, stack, direction) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + return inv:add_item("src", stack) + end, + can_insert = technic.default_can_insert, + connect_sides = {left = 1, right = 1, back = 1, top = 1, bottom = 1}, + } +end + +local connect_default = {"bottom", "back", "left", "right"} + +function technic.register_base_machine(nodename, data) + local colon, modname, name, def = technic.register_compat_v1_to_v2(nodename, data) + local texture_prefix = modname.."_"..name + nodename = modname..":"..name + + local typename = def.typename + local input_size = technic.recipes[typename].input_size + local tier = def.tier + local ltier = string.lower(tier) + local infotext_idle = S("@1 Idle", def.description) + local infotext_active = S("@1 Active", def.description) + local infotext_unpowered = S("@1 Unpowered", def.description) + + local groups = {cracky = 2, technic_machine = 1, ["technic_"..ltier] = 1, pickaxey=2} + if def.tube then + groups.tubedevice = 1 + groups.tubedevice_receiver = 1 + end + local active_groups = table.copy(groups) + active_groups.not_in_creative_inventory = 1 + + local size = minetest.get_modpath("mcl_formspec") and "size[9,10]" or "size[8,9]" + local formspec = + size.. + "list[context;src;"..(4-input_size)..",1;"..input_size..",1;]".. + "list[context;dst;5,1;2,2;]".. + "label[0,0;"..def.description.."]" + if def.upgrade then + formspec = formspec.. + "list[context;upgrade1;1,3;1,1;]".. + "list[context;upgrade2;2,3;1,1;]".. + "label[1,4;"..S("Upgrade Slots").."]" + end + + if minetest.get_modpath("mcl_formspec") then + formspec = formspec.. + mcl_formspec.get_itemslot_bg(4-input_size,1,input_size,1).. + mcl_formspec.get_itemslot_bg(5,1,2,2).. + -- player inventory + "list[current_player;main;0,5.5;9,3;9]".. + mcl_formspec.get_itemslot_bg(0,5.5,9,3).. + "list[current_player;main;0,8.74;9,1;]".. + mcl_formspec.get_itemslot_bg(0,8.74,9,1) + if def.upgrade then + formspec = formspec.. + mcl_formspec.get_itemslot_bg(1,3,1,1).. + mcl_formspec.get_itemslot_bg(2,3,1,1) + end + else + formspec = formspec.. + "list[current_player;main;0,5;8,4;]" + end + + -- listrings + formspec = formspec.. + "listring[context;dst]".. + "listring[current_player;main]".. + "listring[context;src]".. + "listring[current_player;main]" + if def.upgrade then + formspec = formspec.. + "listring[context;upgrade1]".. + "listring[current_player;main]".. + "listring[context;upgrade2]".. + "listring[current_player;main]" + end + + local tube = technic.new_default_tube() + if def.can_insert then + tube.can_insert = def.can_insert + end + if def.insert_object then + tube.insert_object = def.insert_object + end + + local update_node = function(pos, meta, newnode, infotext, demand, src_time) + technic.swap_node(pos, newnode) + meta:set_string("infotext", infotext) + meta:set_int(tier.."_EU_demand", demand) + meta:set_int("src_time", src_time) + end + + local run = function(pos, node) + local meta = minetest.get_meta(pos) + local eu_input = meta:get_int(tier.."_EU_input") + local machine_demand = def.demand + + -- Setup meta def if it does not exist. + if not eu_input then + meta:set_int(tier.."_EU_demand", machine_demand[1]) + meta:set_int(tier.."_EU_input", 0) + return + end + + local EU_upgrade, tube_upgrade = 0, 0 + if def.upgrade then + EU_upgrade, tube_upgrade = technic.handle_machine_upgrades(meta) + end + if def.tube then + technic.handle_machine_pipeworks(pos, tube_upgrade) + end + + local inv = meta:get_inventory() + local demand = machine_demand[EU_upgrade+1] + local powered = eu_input >= demand + local src_time = meta:get_int("src_time") + if powered then + src_time = src_time + math.floor(def.speed * 10 + 0.5) + end + while true do + local recipe = inv:get_list("src") and technic.get_recipe(typename, inv:get_list("src")) + if not recipe then + update_node(pos, meta, nodename, infotext_idle, 0, 0) + return + end + local recipe_time = math.floor(recipe.time * 10 + 0.5) + if src_time < recipe_time then + if powered then + local infotext = infotext_active .. "\n" .. S("Demand: @1", technic.EU_string(demand)) + update_node(pos, meta, nodename.."_active", infotext, demand, src_time) + else + update_node(pos, meta, nodename, infotext_unpowered, demand, src_time) + end + return + elseif not technic.process_recipe(recipe, inv) then + update_node(pos, meta, nodename, infotext_idle, 0, recipe_time) + return + end + src_time = src_time - recipe_time + end + end + + local tentry = tube_entry + if ltier == "lv" then + tentry = "" + end + + minetest.register_node(colon..nodename, { + description = def.description, + tiles = { + texture_prefix.."_top.png"..tentry, + texture_prefix.."_bottom.png"..tentry, + texture_prefix.."_side.png"..tentry, + texture_prefix.."_side.png"..tentry, + texture_prefix.."_side.png"..tentry, + texture_prefix.."_front.png" + }, + paramtype2 = "facedir", + groups = groups, + is_ground_content = false, + _mcl_blast_resistance = 1, + _mcl_hardness = 0.8, + tube = def.tube and tube or nil, + connect_sides = def.connect_sides or connect_default, + legacy_facedir_simple = true, + sounds = technic.sounds.node_sound_wood_defaults(), + on_construct = function(pos) + local node = minetest.get_node(pos) + local meta = minetest.get_meta(pos) + + local form_buttons = "" + if not string.find(node.name, ":lv_") then + form_buttons = fs_helpers.cycling_button( + meta, + pipeworks.button_base, + "splitstacks", + { + pipeworks.button_off, + pipeworks.button_on + } + )..pipeworks.button_label + end + + meta:set_string("infotext", def.description) + meta:set_int("tube_time", 0) + meta:set_string("formspec", formspec..form_buttons) + local inv = meta:get_inventory() + inv:set_size("src", input_size) + inv:set_size("dst", 4) + inv:set_size("upgrade1", 1) + inv:set_size("upgrade2", 1) + end, + can_dig = technic.machine_can_dig, + allow_metadata_inventory_put = technic.machine_inventory_put, + allow_metadata_inventory_take = technic.machine_inventory_take, + allow_metadata_inventory_move = technic.machine_inventory_move, + on_metadata_inventory_move = technic.machine_on_inventory_move, + on_metadata_inventory_put = technic.machine_on_inventory_put, + on_metadata_inventory_take = technic.machine_on_inventory_take, + technic_run = run, + after_place_node = def.tube and pipeworks.after_place, + after_dig_node = technic.machine_after_dig_node, + on_receive_fields = function(pos, formname, fields, sender) + if fields.quit then return end + if not pipeworks.may_configure(pos, sender) then return end + fs_helpers.on_receive_fields(pos, fields) + local node = minetest.get_node(pos) + local meta = minetest.get_meta(pos) + local form_buttons = "" + if not string.find(node.name, ":lv_") then + form_buttons = fs_helpers.cycling_button( + meta, + pipeworks.button_base, + "splitstacks", + { + pipeworks.button_off, + pipeworks.button_on + } + )..pipeworks.button_label + end + meta:set_string("formspec", formspec..form_buttons) + end, + }) + + minetest.register_node(colon..nodename.."_active",{ + description = def.description, + tiles = { + texture_prefix.."_top.png"..tentry, + texture_prefix.."_bottom.png"..tentry, + texture_prefix.."_side.png"..tentry, + texture_prefix.."_side.png"..tentry, + texture_prefix.."_side.png"..tentry, + texture_prefix.."_front_active.png" + }, + paramtype2 = "facedir", + drop = nodename, + groups = active_groups, + is_ground_content = false, + _mcl_blast_resistance = 1, + _mcl_hardness = 0.8, + connect_sides = def.connect_sides or connect_default, + legacy_facedir_simple = true, + sounds = technic.sounds.node_sound_wood_defaults(), + tube = def.tube and tube or nil, + can_dig = technic.machine_can_dig, + allow_metadata_inventory_put = technic.machine_inventory_put, + allow_metadata_inventory_take = technic.machine_inventory_take, + allow_metadata_inventory_move = technic.machine_inventory_move, + on_metadata_inventory_move = technic.machine_on_inventory_move, + on_metadata_inventory_put = technic.machine_on_inventory_put, + on_metadata_inventory_take = technic.machine_on_inventory_take, + technic_run = run, + technic_disabled_machine_name = nodename, + on_receive_fields = function(pos, formname, fields, sender) + if fields.quit then return end + if not pipeworks.may_configure(pos, sender) then return end + fs_helpers.on_receive_fields(pos, fields) + local node = minetest.get_node(pos) + local meta = minetest.get_meta(pos) + local form_buttons = "" + if not string.find(node.name, ":lv_") then + form_buttons = fs_helpers.cycling_button( + meta, + pipeworks.button_base, + "splitstacks", + { + pipeworks.button_off, + pipeworks.button_on + } + )..pipeworks.button_label + end + meta:set_string("formspec", formspec..form_buttons) + end, + }) + + technic.register_machine(tier, nodename, technic.receiver) + technic.register_machine(tier, nodename.."_active", technic.receiver) + +end -- End registration + diff --git a/mods/technic_plus_beta/technic/machines/register/recipes.lua b/mods/technic_plus_beta/technic/machines/register/recipes.lua new file mode 100644 index 00000000..45b88c70 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/register/recipes.lua @@ -0,0 +1,263 @@ + +local have_ui = minetest.get_modpath("unified_inventory") +local have_cg = minetest.get_modpath("craftguide") +local have_mcl_cg = minetest.get_modpath("mcl_craftguide") +local have_i3 = minetest.get_modpath("i3") + +technic.recipes = { + cooking = {input_size = 1, output_size = 1, recipes = {}}, +} + +local temp_recipes = {} -- Used to store recipes before caching +local recipe_cache = {} -- Cache used by technic.get_recipe + +function technic.register_recipe_type(method, data) + data = table.copy(data) + data.input_size = data.input_size or 1 + data.output_size = data.output_size or 1 + data.recipes = {} + if have_ui then + unified_inventory.register_craft_type(method, { + description = data.description, + icon = data.icon, + width = data.input_size, + height = 1, + }) + end + if have_cg then + craftguide.register_craft_type(method, { + description = data.description, + icon = data.icon, + }) + end + if have_mcl_cg then + mcl_craftguide.register_craft_type(method, { + description = data.description, + icon = data.icon, + }) + end + if have_i3 then + i3.register_craft_type(method, { + description = data.description, + icon = data.icon, + }) + end + technic.recipes[method] = data +end + +function technic.register_recipe(method, data) + data.time = data.time or 1 + data.method = method + if type(data.input) == "string" then + data.input = {data.input} + end + if type(data.output) == "string" then + data.output = {data.output} + end + table.insert(temp_recipes, data) +end + +local function get_recipe_key(method, items) + local t = {} + for i, stack in ipairs(items) do + t[i] = ItemStack(stack):get_name() + end + table.sort(t) + return method.."/"..table.concat(t, "/") +end + +function technic.get_recipe(method, items) + local key = get_recipe_key(method, items) + local recipe = recipe_cache[key] + if not recipe then + return + end + local new_input = {} + for i, stack in ipairs(items) do + local amount = recipe.input[stack:get_name()] + if stack:get_count() < amount then + return + else + new_input[i] = ItemStack(stack) + new_input[i]:take_item(amount) + end + end + return { + time = recipe.time, + new_input = new_input, + output = recipe.output + } +end + +local function add_to_craftguides(recipe) + for _, output in ipairs(recipe.output) do + if have_ui then + unified_inventory.register_craft({ + type = recipe.method, + output = output, + items = table.copy(recipe.input), + width = 0, + }) + end + if have_cg and craftguide.register_craft then + craftguide.register_craft({ + type = recipe.method, + result = output, + items = {table.concat(recipe.input, ", ")}, + }) + end + if have_mcl_cg then + mcl_craftguide.register_craft({ + type = recipe.method, + output = output, + items = table.copy(recipe.input), + width = 0, + }) + end + if have_i3 then + i3.register_craft({ + type = recipe.method, + result = output, + items = {table.concat(recipe.input, ", ")}, + }) + end + end +end + +local function get_items_in_group(group) + local items = {} + local groups = group:split(",") + for name, def in pairs(minetest.registered_items) do + local match = true + for _,g in pairs(groups) do + if not def.groups[g] then + match = false + break + end + end + if match then + items[#items+1] = name + end + end + return items +end + +local function get_recipe_variants(items, index) + index = index or 1 + if not items[index] then + return + end + local list = {} + local variants = get_recipe_variants(items, index + 1) + if variants then + for _,a in pairs(items[index]) do + for _,b in pairs(variants) do + list[#list+1] = a..","..b + end + end + else + for _,a in pairs(items[index]) do + list[#list+1] = a + end + end + if index == 1 then + for i, str in pairs(list) do + list[i] = str:split(",") + end + end + return list +end + +local function cache_recipe(data) + -- Create the basic recipe + local recipe = {time = data.time, input = {}, output = {}} + for _, item in ipairs(data.input) do + if item:match("^group:") then + local split = item:split(" ") + recipe.input[split[1]] = tonumber(split[2]) or 1 + else + local stack = ItemStack(item) + recipe.input[stack:get_name()] = stack:get_count() + end + end + for i, item in ipairs(data.output) do + recipe.output[i] = ItemStack(item):to_string() + end + if data.method ~= "cooking" then + table.insert(technic.recipes[data.method].recipes, recipe) + end + -- Find all unique variants of the recipe and cache them + -- If there are no group items, there will only be one + local all_items, item_counts = {}, {} + local has_group_item = false + for item, count in pairs(recipe.input) do + local group = item:match("^group:(.+)$") + if group then + table.insert(all_items, get_items_in_group(group)) + has_group_item = true + else + table.insert(all_items, {ItemStack(item):get_name()}) + end + table.insert(item_counts, count) + end + if not has_group_item then + local key = get_recipe_key(data.method, data.input) + recipe_cache[key] = table.copy(recipe) + return + end + for _,items in pairs(get_recipe_variants(all_items)) do + local key = get_recipe_key(data.method, items) + -- Non-group recipes take priority over group recipes + if not has_group_item or not recipe_cache[key] then + local input = {} + for i, item in ipairs(items) do + input[item] = item_counts[i] + end + recipe_cache[key] = { + time = data.time, + input = input, + output = table.copy(recipe.output), + } + end + end +end + +local function cache_all_recipes() + -- Cache built in cooking recipes + for item in pairs(minetest.registered_items) do + local recipes = minetest.get_all_craft_recipes(item) + for _,recipe in ipairs(recipes or {}) do + if recipe.method == "cooking" then + local result, new_input = minetest.get_craft_result(recipe) + if result and result.time > 0 then + local data = { + method = "cooking", + time = result.time, + input = recipe.items, + output = {result.item:to_string()}, + } + local replacement = new_input.items[1] + if not replacement:is_empty() then + data.output[2] = replacement:to_string() + end + cache_recipe(data) + end + end + end + end + -- Cache custom recipes + for _, data in pairs(temp_recipes) do + if not data.hidden then + add_to_craftguides(data) + end + cache_recipe(data) + end + temp_recipes = nil +end + +-- Slightly hacky way to be the first function called +table.insert(minetest.registered_on_mods_loaded, 1, cache_all_recipes) +minetest.callback_origins[cache_all_recipes] = { + mod = "technic", + name = "register_on_mods_loaded", +} diff --git a/mods/technic_plus_beta/technic/machines/register/solar_array.lua b/mods/technic_plus_beta/technic/machines/register/solar_array.lua new file mode 100644 index 00000000..9f0d380e --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/register/solar_array.lua @@ -0,0 +1,72 @@ + +local S = technic.getter + +function technic.register_solar_array(nodename, data) + local _, modname, name, def = technic.register_compat_v1_to_v2(nodename, data, "solar_array") + assert(def.tier, "Technic register_solar_array requires `tier` field") + + local tier = def.tier + local ltier = string.lower(tier) + local infotext = S("Arrayed Solar @1 Generator", S(tier)) + + local run = function(pos, node) + -- The action here is to make the solar array produce power + -- Power is dependent on the light level and the height above ground + -- There are many ways to cheat by using other light sources like lamps. + -- As there is no way to determine if light is sunlight that is just a shame. + -- To take care of some of it solar panels do not work outside daylight hours or if + -- built below 0m + local pos1 = { y = pos.y + 1, x = pos.x, z = pos.z } + + minetest.load_area(pos1) + local light = minetest.get_node_light(pos1, nil) + local time_of_day = minetest.get_timeofday() + local meta = minetest.get_meta(pos) + light = light or 0 + + -- turn on array only during day time and if sufficient light + -- I know this is counter intuitive when cheating by using other light sources. + if light >= 12 and time_of_day >= 0.24 and time_of_day <= 0.76 and pos.y > 0 then + local charge_to_give = math.floor((light + pos.y) * def.power) + charge_to_give = math.max(charge_to_give, 0) + charge_to_give = math.min(charge_to_give, def.power * 50) + meta:set_string("infotext", S("@1 Active (@2)", infotext, technic.EU_string(charge_to_give))) + meta:set_int(tier.."_EU_supply", charge_to_give) + else + meta:set_string("infotext", S("@1 Idle", infotext)) + meta:set_int(tier.."_EU_supply", 0) + end + end + + def.tiles = def.tiles or { + modname.."_"..name.."_top.png", + modname.."_"..name.."_bottom.png", + modname.."_"..name.."_side.png", + modname.."_"..name.."_side.png", + modname.."_"..name.."_side.png", + modname.."_"..name.."_side.png" + } + def.groups = def.groups or {snappy=2, choppy=2, oddly_breakable_by_hand=2, + technic_machine=1, ["technic_"..ltier]=1, axey=2, handy=1} + def.is_ground_content = false + def._mcl_blast_resistance = 1 + def._mcl_hardness = 0.8 + def.connect_sides = def.connect_sides or {"bottom"} + def.sounds = def.sounds or technic.sounds.node_sound_wood_defaults() + def.description = def.description or S("Arrayed Solar @1 Generator", S(tier)) + def.active = def.active or false + def.drawtype = def.drawtype or "nodebox" + def.paramtype = def.paramtype or "light" + def.node_box = def.nodebox or { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, 0, 0.5}, + } + def.on_construct = def.on_construct or function(pos) + local meta = minetest.get_meta(pos) + meta:set_int(tier.."_EU_supply", 0) + end + def.technic_run = def.technic_run or run + + minetest.register_node(nodename, def) + technic.register_machine(tier, nodename, technic.producer) +end diff --git a/mods/technic_plus_beta/technic/machines/supply_converter.lua b/mods/technic_plus_beta/technic/machines/supply_converter.lua new file mode 100644 index 00000000..a4ce569f --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/supply_converter.lua @@ -0,0 +1,219 @@ +-- The supply converter is a generic device which can convert from +-- LV to MV and back, and HV to MV and back. +-- The machine is configured by the wiring below and above it. +-- +-- It works like this: +-- The top side is setup as the receiver side, the bottom as the producer side. +-- Once the receiver side is powered it will deliver power to the other side. +-- Unused power is wasted just like any other producer! + +local digilines_path = minetest.get_modpath("digilines") + +local S = technic.getter + +local cable_entry = "^technic_cable_connection_overlay.png" + +local function set_supply_converter_formspec(meta) + local formspec = "size[5,2.25]".. + "field[0.3,0.5;2,1;power;"..S("Input Power")..";${power}]" + if digilines_path then + formspec = formspec.. + "field[2.3,0.5;3,1;channel;"..S("Digiline Channel")..";${channel}]" + end + -- The names for these toggle buttons are explicit about which + -- state they'll switch to, so that multiple presses (arising + -- from the ambiguity between lag and a missed press) only make + -- the single change that the user expects. + if meta:get_int("mesecon_mode") == 0 then + formspec = formspec.."button[0,1;5,1;mesecon_mode_1;"..S("Ignoring Mesecon Signal").."]" + else + formspec = formspec.."button[0,1;5,1;mesecon_mode_0;"..S("Controlled by Mesecon Signal").."]" + end + if meta:get_int("enabled") == 0 then + formspec = formspec.."button[0,1.75;5,1;enable;"..S("@1 Disabled", S("Supply Converter")).."]" + else + formspec = formspec.."button[0,1.75;5,1;disable;"..S("@1 Enabled", S("Supply Converter")).."]" + end + meta:set_string("formspec", formspec) +end + +local supply_converter_receive_fields = function(pos, formname, fields, sender) + if not sender or minetest.is_protected(pos, sender:get_player_name()) then + return + end + local meta = minetest.get_meta(pos) + local power = nil + if fields.power then + power = tonumber(fields.power) or 0 + power = math.max(power, 0) + power = math.min(power, 10000) + power = 100 * math.floor(power / 100) + if power == meta:get_int("power") then power = nil end + end + if power then meta:set_int("power", power) end + if fields.channel then meta:set_string("channel", fields.channel) end + if fields.enable then meta:set_int("enabled", 1) end + if fields.disable then meta:set_int("enabled", 0) end + if fields.mesecon_mode_0 then meta:set_int("mesecon_mode", 0) end + if fields.mesecon_mode_1 then meta:set_int("mesecon_mode", 1) end + set_supply_converter_formspec(meta) +end + +local mesecons = { + effector = { + action_on = function(pos, node) + minetest.get_meta(pos):set_int("mesecon_effect", 1) + end, + action_off = function(pos, node) + minetest.get_meta(pos):set_int("mesecon_effect", 0) + end + } +} + + +local digiline_def = { + receptor = { + rules = technic.digilines.rules, + action = function() end + }, + effector = { + rules = technic.digilines.rules, + action = function(pos, node, channel, msg) + if type(msg) ~= "string" then + return + end + local meta = minetest.get_meta(pos) + if channel ~= meta:get_string("channel") then + return + end + msg = msg:lower() + if msg == "get" then + digilines.receptor_send(pos, technic.digilines.rules, channel, { + enabled = meta:get_int("enabled"), + power = meta:get_int("power"), + mesecon_mode = meta:get_int("mesecon_mode") + }) + return + elseif msg == "off" then + meta:set_int("enabled", 0) + elseif msg == "on" then + meta:set_int("enabled", 1) + elseif msg == "toggle" then + local onn = meta:get_int("enabled") + onn = 1-onn -- Mirror onn with pivot 0.5, so switch between 1 and 0. + meta:set_int("enabled", onn) + elseif msg:sub(1, 5) == "power" then + local power = tonumber(msg:sub(7)) + if not power then + return + end + power = math.max(power, 0) + power = math.min(power, 10000) + power = 100 * math.floor(power / 100) + meta:set_int("power", power) + elseif msg:sub(1, 12) == "mesecon_mode" then + meta:set_int("mesecon_mode", tonumber(msg:sub(14))) + else + return + end + set_supply_converter_formspec(meta) + end + }, +} + +local run = function(pos, node, run_stage) + -- run only in producer stage. + if run_stage == technic.receiver then + return + end + + local remain = 0.9 + -- Machine information + local machine_name = S("Supply Converter") + local meta = minetest.get_meta(pos) + local enabled = meta:get_int("enabled") == 1 and + (meta:get_int("mesecon_mode") == 0 or meta:get_int("mesecon_effect") ~= 0) + + local demand = enabled and meta:get_int("power") or 0 + + local pos_up = {x=pos.x, y=pos.y+1, z=pos.z} + local pos_down = {x=pos.x, y=pos.y-1, z=pos.z} + local name_up = minetest.get_node(pos_up).name + local name_down = minetest.get_node(pos_down).name + + local from = technic.get_cable_tier(name_up) + local to = technic.get_cable_tier(name_down) + + if from and to then + local input = meta:get_int(from.."_EU_input") + if (technic.get_timeout(from, pos) <= 0) or (technic.get_timeout(to, pos) <= 0) then + -- Supply converter timed out, either RE or PR network is not running anymore + input = 0 + end + meta:set_int(from.."_EU_demand", demand) + meta:set_int(from.."_EU_supply", 0) + meta:set_int(to.."_EU_demand", 0) + meta:set_int(to.."_EU_supply", input * remain) + meta:set_string("infotext", S("@1 (@2 @3 -> @4 @5)", machine_name, + technic.EU_string(input), from, + technic.EU_string(input * remain), to)) + else + meta:set_string("infotext", S("@1 Has Bad Cabling", machine_name)) + if to then + meta:set_int(to.."_EU_supply", 0) + end + if from then + meta:set_int(from.."_EU_demand", 0) + end + return + end + +end + +minetest.register_node("technic:supply_converter", { + description = S("Supply Converter"), + tiles = { + "technic_supply_converter_tb.png"..cable_entry, + "technic_supply_converter_tb.png"..cable_entry, + "technic_supply_converter_side.png", + "technic_supply_converter_side.png", + "technic_supply_converter_side.png", + "technic_supply_converter_side.png" + }, + groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2, + technic_machine=1, technic_all_tiers=1, axey=2, handy=1}, + is_ground_content = false, + _mcl_blast_resistance = 1, + _mcl_hardness = 0.8, + connect_sides = {"top", "bottom"}, + sounds = technic.sounds.node_sound_wood_defaults(), + on_receive_fields = supply_converter_receive_fields, + on_construct = function(pos) + local meta = minetest.get_meta(pos) + meta:set_string("infotext", S("Supply Converter")) + meta:set_int("power", 10000) + meta:set_int("enabled", 1) + meta:set_int("mesecon_mode", 0) + meta:set_int("mesecon_effect", 0) + set_supply_converter_formspec(meta) + end, + mesecons = mesecons, + digiline = digiline_def, + technic_run = run, + technic_on_disable = run, +}) + +minetest.register_craft({ + output = 'technic:supply_converter 1', + recipe = { + {'basic_materials:gold_wire', 'technic:rubber', 'technic:doped_silicon_wafer'}, + {'technic:mv_transformer', 'technic:machine_casing', 'technic:lv_transformer'}, + {'technic:mv_cable', 'technic:rubber', 'technic:lv_cable'}, + }, + replacements = { {"basic_materials:gold_wire", "basic_materials:empty_spool"}, }, +}) + +for tier, machines in pairs(technic.machines) do + technic.register_machine(tier, "technic:supply_converter", technic.producer_receiver) +end + diff --git a/mods/technic_plus_beta/technic/machines/switching_station.lua b/mods/technic_plus_beta/technic/machines/switching_station.lua new file mode 100644 index 00000000..b230d85b --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/switching_station.lua @@ -0,0 +1,198 @@ +-- See also technic/doc/api.md + +local mesecons_path = minetest.get_modpath("mesecons") +local digilines_path = minetest.get_modpath("digilines") + +local S = technic.getter +local mat = technic.materials + +local cable_entry = "^technic_cable_connection_overlay.png" + +minetest.register_craft({ + output = "technic:switching_station", + recipe = { + {"", "technic:lv_transformer", ""}, + {mat.copper_ingot, "technic:machine_casing", mat.copper_ingot}, + {"technic:lv_cable", "technic:lv_cable", "technic:lv_cable"} + } +}) + +local function start_network(pos) + local tier = technic.sw_pos2tier(pos) + if not tier then + local meta = minetest.get_meta(pos) + meta:set_string("infotext", S("@1 Has No Network", S("Switching Station"))) + else + local network_id = technic.sw_pos2network(pos) or technic.create_network(pos) + local network = network_id and technic.networks[network_id] + if network and technic.switch_insert(pos, network) > 0 then + technic.activate_network(network_id) + end + end +end + +local mesecon_def +if mesecons_path then + mesecon_def = {effector = { + rules = mesecon.rules.default, + }} +end + +minetest.register_node("technic:switching_station",{ + description = S("Switching Station"), + tiles = { + "technic_water_mill_top_active.png", + "technic_water_mill_top_active.png"..cable_entry, + "technic_water_mill_top_active.png", + "technic_water_mill_top_active.png", + "technic_water_mill_top_active.png", + "technic_water_mill_top_active.png"}, + groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2, technic_all_tiers=1, axey=2, handy=1}, + is_ground_content = false, + _mcl_blast_resistance = 1, + _mcl_hardness = 0.8, + connect_sides = {"bottom"}, + sounds = technic.sounds.node_sound_wood_defaults(), + on_construct = function(pos) + local meta = minetest.get_meta(pos) + meta:set_string("infotext", S("Switching Station")) + meta:set_string("formspec", "field[channel;"..S("Digiline Channel")..";${channel}]") + start_network(pos) + + -- start nodetimer + minetest.get_node_timer(pos):start(1.0) + end, + on_destruct = function(pos) + -- Remove network when last switching stations is removed + local network_id = technic.sw_pos2network(pos) + local network = network_id and technic.networks[network_id] + if network and technic.switch_remove(pos, network) < 1 then + technic.remove_network(network_id) + end + end, + on_receive_fields = function(pos, formname, fields, sender) + if not fields.channel then + return + end + local plname = sender:get_player_name() + if minetest.is_protected(pos, plname) then + minetest.record_protection_violation(pos, plname) + return + end + local meta = minetest.get_meta(pos) + meta:set_string("channel", fields.channel) + end, + + -- nodetimer for network activation + on_timer = function(pos) + local network_id = technic.sw_pos2network(pos) + -- Check if network is overloaded / conflicts with another network + if network_id then + local infotext + local meta = minetest.get_meta(pos) + if technic.is_overloaded(network_id) then + local remaining = technic.reset_overloaded(network_id) + if remaining > 0 then + infotext = S("@1 Network Overloaded, Restart in @2ms", S("Switching Station"), remaining / 1000) + else + infotext = S("@1 Restarting Network", S("Switching Station")) + end + technic.network_infotext(network_id, infotext) + else + -- Network exists and is not overloaded, reactivate network + technic.activate_network(network_id) + infotext = technic.network_infotext(network_id) + -- If mesecon signal enabled and power supply or demand changed then send them via digilines. + if mesecons_path and digilines_path and mesecon.is_powered(pos) then + local network = technic.networks[network_id] + if meta:get_int("supply") ~= network.supply or meta:get_int("demand") ~= network.demand then + meta:set_int("supply", network.supply) + meta:set_int("demand", network.demand) + local channel = meta:get_string("channel") + digilines.receptor_send(pos, technic.digilines.rules, channel, { + supply = network.supply, + demand = network.demand + }) + end + end + end + meta:set_string("infotext", infotext) + else + -- Network does not exist yet, attempt to create new network here + start_network(pos) + end + + -- restart the nodetimer again + return true + end, + + -- mesecons + mesecons = mesecon_def, + + -- digiline + digiline = { + receptor = { + rules = technic.digilines.rules, + action = function() end + }, + effector = { + rules = technic.digilines.rules, + action = function(pos, node, channel, msg) + if msg ~= "GET" and msg ~= "get" then + return + end + local meta = minetest.get_meta(pos) + if channel ~= meta:get_string("channel") then + return + end + local network_id = technic.sw_pos2network(pos) + local network = network_id and technic.networks[network_id] + if network then + digilines.receptor_send(pos, technic.digilines.rules, channel, { + supply = network.supply, + demand = network.demand, + lag = network.lag + }) + else + digilines.receptor_send(pos, technic.digilines.rules, channel, { + error = "No network", + }) + end + end + }, + }, +}) + +----------------------------------------------- +-- The action code for the switching station -- +----------------------------------------------- + +-- Timeout ABM +-- Timeout for a node in case it was disconnected from the network +-- A node must be touched by the station continuously in order to function +minetest.register_abm({ + label = "Machines: timeout check", + nodenames = {"group:technic_machine"}, + interval = 1, + chance = 1, + action = function(pos, node, active_object_count, active_object_count_wider) + if not technic.machine_tiers[node.name] then + -- https://github.com/mt-mods/technic/issues/123 + return + end + -- Check for machine timeouts for all tiers + local tiers = technic.machine_tiers[node.name] + local timed_out = true + for _, tier in ipairs(tiers) do + local timeout = technic.get_timeout(tier, pos) + if timeout > 0 then + technic.touch_node(tier, pos, timeout - 1) + timed_out = false + end + end + -- If all tiers for machine timed out take action + if timed_out then + technic.disable_machine(pos, node) + end + end, +}) diff --git a/mods/technic_plus_beta/technic/machines/switching_station_globalstep.lua b/mods/technic_plus_beta/technic/machines/switching_station_globalstep.lua new file mode 100644 index 00000000..b10b47d6 --- /dev/null +++ b/mods/technic_plus_beta/technic/machines/switching_station_globalstep.lua @@ -0,0 +1,76 @@ +local S = technic.getter + +-- the interval between technic_run calls +local technic_run_interval = 1.0 +local set_default_timeout = technic.set_default_timeout + +-- iterate over all collected switching stations and execute the technic_run function +local timer = 0 +minetest.register_globalstep(function(dtime) + timer = timer + dtime + if timer < technic_run_interval or not technic.powerctrl_state then + return + end + timer = 0 + + local max_lag = technic.get_max_lag() + -- slow down technic execution if the lag is higher than usual + if max_lag > 5.0 then + technic_run_interval = 5.0 + elseif max_lag > 2.0 then + technic_run_interval = 4.0 + elseif max_lag > 1.5 then + technic_run_interval = 3.0 + elseif max_lag > 1.0 then + technic_run_interval = 1.5 + else + -- normal run_interval + technic_run_interval = 1.0 + end + set_default_timeout(math.ceil(technic_run_interval) + 1) + + local now = minetest.get_us_time() + + for network_id, network in pairs(technic.active_networks) do + if network.timeout > now and not technic.is_overloaded(network_id) then + -- station active + if network.skip > 0 then + network.skip = network.skip - 1 + else + local start = minetest.get_us_time() + technic.network_run(network_id) + local switch_diff = network.average_lag(minetest.get_us_time() - start) + + -- set lag in microseconds into the "lag" meta field + network.lag = switch_diff + + -- overload detection + if switch_diff > 250000 then + network.skip = 30 + elseif switch_diff > 150000 then + network.skip = 20 + elseif switch_diff > 75000 then + network.skip = 10 + elseif switch_diff > 50000 then + network.skip = 2 + end + + if network.skip > 0 then + -- calculate efficiency in percent and display it + local efficiency = math.floor(1/network.skip*100) + technic.network_infotext(network_id, + S("Polyfuse triggered, current efficiency: @1%, generated lag: @2 ms", + efficiency, math.floor(switch_diff/1000))) + + -- remove laggy network from active index + -- it will be reactivated when a player is near it + technic.active_networks[network_id] = nil + end + end + + else + -- network timed out + technic.active_networks[network_id] = nil + end + end +end) diff --git a/mods/technic_plus_beta/technic/materials.lua b/mods/technic_plus_beta/technic/materials.lua new file mode 100644 index 00000000..4baf6a8f --- /dev/null +++ b/mods/technic_plus_beta/technic/materials.lua @@ -0,0 +1,78 @@ + +local mesecons_materials = minetest.get_modpath("mesecons_materials") +local has_mcl = minetest.get_modpath("mcl_core") +local has_mcl_dye = minetest.get_modpath("mcl_dye") +local has_moreores = minetest.get_modpath("moreores") + +technic.materials = { + stone = has_mcl and "mcl_core:stone" or "default:stone", + cobble = has_mcl and "mcl_core:cobble" or "default:cobble", + mossycobble = has_mcl and "mcl_core:mossycobble" or "default:mossycobble", + gold_ingot = has_mcl and "mcl_core:gold_ingot" or "default:gold_ingot", + gold_lump = has_mcl and "mcl_raw_ores:raw_gold" or "default:gold_lump", + steel_ingot = has_mcl and "mcl_core:iron_ingot" or "default:steel_ingot", + iron_lump = has_mcl and "mcl_raw_ores:raw_iron" or "default:iron_lump", + diamond = has_mcl and "mcl_core:diamond" or "default:diamond", + dirt = has_mcl and "mcl_core:dirt" or "default:dirt", + tin_ingot = has_mcl and "mcl_core:iron_ingot" or "default:tin_ingot", + tin_lump = has_mcl and "mcl_raw_ores:raw_iron" or "default:tin_lump", + bronze_ingot = has_mcl and "mcl_copper:copper_ingot" or "default:bronze_ingot", + copper_ingot = has_mcl and "mcl_copper:copper_ingot" or "default:copper_ingot", + copper_lump = has_mcl and "mcl_copper:raw_copper" or "default:copper_lump", + mese = has_mcl and "mesecons_torch:redstoneblock" or "default:mese", + mese_crystal = has_mcl and "mesecons:redstone" or "default:mese_crystal", + dye_green = has_mcl_dye and "mcl_dye:green" or "dye:green", + dye_red = has_mcl_dye and "mcl_dye:red" or "dye:red", + dye_blue = has_mcl_dye and "mcl_dye:blue" or "dye:blue", + dye_orange = has_mcl and "mcl_dye:orange" or "dye:orange", + dye_grey = has_mcl and "mcl_dye:grey" or "dye:grey", + insulation = mesecons_materials and "mesecons_materials:fiber" or "technic:rubber", + obsidian = has_mcl and "mcl_core:obsidian" or "default:obsidian", + obsidian_glass = has_mcl and "mcl_core:glass" or "default:obsidian_glass", + brick = has_mcl and "mcl_core:brick" or "default:brick", + paper = has_mcl and "mcl_core:paper" or "default:paper", + furnace = has_mcl and "mcl_furnaces:furnace" or "default:furnace", + chest = has_mcl and "mcl_chests:chest" or "default:chest", + sand = has_mcl and "mcl_core:sand" or "default:sand", + ice = has_mcl and "mcl_core:ice" or "default:ice", + clay = has_mcl and "mcl_core:clay" or "default:clay", + clay_lump = has_mcl and "mcl_core:clay_lump" or "default:clay_lump", + stick = has_mcl and "mcl_core:stick" or "default:stick", + dry_shrub = has_mcl and "mcl_core:deadbush" or "default:dry_shrub", + wheat = has_mcl and "mcl_farming:wheat_item" or "farming:wheat", + seed_wheat = has_mcl and "mcl_farming:wheat_seeds" or "farming:seed_wheat", + snowblock = has_mcl and "mcl_core:snowblock" or "default:snowblock", + sandstone = has_mcl and "mcl_core:sandstone" or "default:sandstone", + desert_stone = has_mcl and "mcl_core:redsandstone" or "default:desert_stone", + desert_sand = has_mcl and "mcl_core:redsand" or "default:desert_sand", + desert_sandstone = has_mcl and "mcl_core:redsandstone" or "default:desert_sandstone", + silver_sand = has_mcl and "mcl_core:sand" or "default:silver_sand", + silver_sandstone = has_mcl and "mcl_core:sandstone" or "default:silver_sandstone", + glass = has_mcl and "mcl_core:glass" or "default:glass", + coal_lump = has_mcl and "mcl_core:coal_lump" or "default:coal_lump", + bucket_empty = has_mcl and "mcl_buckets:bucket_empty" or "bucket:bucket_empty", + bucket_water = has_mcl and "mcl_buckets:bucket_water" or "bucket:bucket_water", + bucket_river_water = has_mcl and "mcl_buckets:bucket_river_water" or "bucket:bucket_river_water", + bucket_lava = has_mcl and "mcl_buckets:bucket_lava" or "bucket:bucket_lava", + dirt_with_snow = has_mcl and "mcl_core:snowblock" or "default:dirt_with_snow", + gravel = has_mcl and "mcl_core:gravel" or "default:gravel", + tree = has_mcl and "mcl_core:tree" or "default:tree", + wood = has_mcl and "mcl_core:wood" or "default:wood", + acacia_tree = has_mcl and "mcl_core:acaciatree" or "default:acacia_tree", + acacia_wood = has_mcl and "mcl_core:acaciawood" or "default:acacia_wood", + water_source = has_mcl and "mcl_core:water_source" or "default:water_source", + water_flowing = has_mcl and "mcl_core:water_flowing" or "default:water_flowing", + river_water_source = has_mcl and "mclx_core:river_water_source" or "default:river_water_source", + river_water_flowing = has_mcl and "mclx_core:river_water_flowing" or "default:river_water_flowing", + lava_source = has_mcl and "mcl_core:lava_source" or "default:lava_source", + lava_flowing = has_mcl and "mcl_core:lava_flowing" or "default:lava_flowing", + mithril_ingot = has_moreores and "moreores:mithril_ingot" or has_mcl and "mcl_core:lapis" or "default:steel_ingot", + silver_ingot = has_moreores and "moreores:silver_ingot" or has_mcl and "mcl_core:gold_ingot" or "default:gold_ingot", + pick_silver = has_moreores and "moreores:pick_silver" or has_mcl and "mcl_tools:pick_gold" or "default:gold_pickaxe", + mithril_block = has_moreores and "moreores:mithril_block" or has_mcl and "mcl_core:lapisblock" or "default:goldblock", +} + +if has_mcl and has_moreores then + technic.materials.tin_ingot = "moreores:tin_ingot" + technic.materials.tin_lump = "moreores:tin_lump" +end diff --git a/mods/technic_plus_beta/technic/max_lag.lua b/mods/technic_plus_beta/technic/max_lag.lua new file mode 100644 index 00000000..522a6930 --- /dev/null +++ b/mods/technic_plus_beta/technic/max_lag.lua @@ -0,0 +1,23 @@ + +local multiplier = technic.config:get_int("max_lag_reduction_multiplier") + +local last_step = minetest.get_us_time() + +local max_lag = 0 + +minetest.register_globalstep(function() + -- Calculate own dtime as a workaround to 2 second limit + local now = minetest.get_us_time() + local dtime = now - last_step + last_step = now + + max_lag = max_lag * multiplier -- Decrease slowly + + if dtime > max_lag then + max_lag = dtime + end +end) + +function technic.get_max_lag() + return max_lag / 1000000 +end diff --git a/mods/technic_plus_beta/technic/mod.conf b/mods/technic_plus_beta/technic/mod.conf new file mode 100644 index 00000000..6e8b33d3 --- /dev/null +++ b/mods/technic_plus_beta/technic/mod.conf @@ -0,0 +1,3 @@ +name = technic +depends = pipeworks, technic_worldgen, basic_materials +optional_depends = mcl_core, mcl_sounds, default, bucket, mesecons, mesecons_mvps, digilines, digiline_remote, unified_inventory, dye, craftguide, i3, mtt, vizlib, moreores, mcl_buckets, mcl_explosions, mcl_craftguide diff --git a/mods/technic_plus_beta/technic/models/technic_reactor.obj b/mods/technic_plus_beta/technic/models/technic_reactor.obj new file mode 100644 index 00000000..c71374cb --- /dev/null +++ b/mods/technic_plus_beta/technic/models/technic_reactor.obj @@ -0,0 +1,362 @@ +# Blender v2.78 (sub 0) OBJ File: 'technic-reactor.blend' +# www.blender.org +o Cube.002 +v 0.249998 -0.500500 -0.249998 +v 0.249998 -0.500500 0.249998 +v -0.249999 -0.500500 -0.249998 +v -0.249999 -0.500500 0.249998 +v 0.283224 0.283132 0.423876 +v 0.283224 -0.283316 0.423876 +v -0.283224 0.283132 0.423875 +v -0.283224 -0.283316 0.423875 +v 0.195088 -0.195188 0.470985 +v 0.195088 0.194988 0.470985 +v -0.195088 -0.195188 0.470985 +v -0.195088 0.194988 0.470985 +v 0.099454 -0.099560 0.499495 +v 0.099454 0.099349 0.499495 +v -0.099455 -0.099560 0.499495 +v -0.099455 0.099349 0.499495 +v -0.360476 -0.360431 -0.360476 +v -0.195088 -0.195024 -0.470985 +v -0.195088 0.195153 -0.470985 +v 0.195089 -0.195024 -0.470985 +v 0.195089 0.195153 -0.470985 +v 0.283225 -0.283168 -0.423875 +v 0.283225 0.283281 -0.423875 +v -0.283224 -0.283168 -0.423875 +v -0.283224 0.283281 -0.423875 +v 0.099455 -0.099386 -0.499495 +v 0.099455 0.099525 -0.499495 +v -0.099455 -0.099386 -0.499495 +v -0.099455 0.099525 -0.499495 +v -0.360492 0.360411 0.360457 +v -0.099717 0.499491 0.099455 +v 0.099194 0.499491 0.099456 +v -0.195335 0.470933 0.195089 +v 0.195097 0.470933 0.195089 +v 0.194842 0.471069 0.194640 +v -0.283446 0.423808 0.283224 +v 0.283003 0.424005 0.282855 +v 0.360288 0.360647 0.360170 +v -0.099717 0.499526 -0.099455 +v 0.099194 0.499526 -0.099455 +v -0.194886 0.471001 -0.195088 +v 0.194842 0.471001 -0.195088 +v -0.195335 0.470865 -0.195343 +v -0.283076 0.423907 -0.283224 +v 0.283003 0.423907 -0.283224 +v -0.360358 0.360522 -0.360476 +v 0.360429 0.360474 -0.360515 +v 0.360664 -0.360306 -0.360247 +v -0.423875 -0.283187 0.283224 +v -0.423875 0.283165 0.283224 +v -0.423727 -0.283464 -0.283405 +v -0.423875 0.283165 -0.283224 +v 0.283446 -0.423844 -0.283224 +v -0.283244 -0.423843 -0.283224 +v -0.470985 0.195015 -0.195088 +v -0.470985 -0.195016 -0.195088 +v -0.360287 -0.360683 0.360323 +v 0.283446 -0.423745 0.283465 +v -0.283002 -0.423942 0.283224 +v 0.360664 -0.360306 0.360247 +v 0.423875 0.283152 0.283225 +v 0.423727 0.283428 -0.283405 +v 0.424023 -0.283021 0.282947 +v -0.470985 -0.195017 0.195088 +v 0.470985 0.195317 0.195089 +v 0.424023 -0.283021 -0.282948 +v 0.470985 -0.194860 -0.195088 +v 0.470883 0.195317 -0.195279 +v 0.471087 -0.194860 0.194752 +v -0.471087 0.194824 0.194751 +v -0.499495 0.099176 0.099455 +v -0.499495 -0.099735 0.099455 +v -0.499495 0.099175 -0.099455 +v -0.499495 -0.099735 -0.099455 +v 0.499495 -0.099212 0.099456 +v 0.499495 0.099699 0.099456 +v 0.499495 -0.099212 -0.099455 +v 0.499495 0.099699 -0.099455 +v 0.254894 -0.439053 0.254894 +v 0.254894 -0.438992 -0.254894 +v -0.254894 -0.439019 -0.254894 +v -0.254664 -0.439081 0.254894 +vt 0.2500 0.0000 +vt 0.2451 0.0610 +vt 0.7549 0.0609 +vt 0.7500 0.0000 +vt 0.2500 0.0000 +vt 0.2451 0.0609 +vt 0.7547 0.0609 +vt 0.7500 0.0000 +vt 0.2500 0.0000 +vt 0.2451 0.0609 +vt 0.7549 0.0610 +vt 0.7500 0.0000 +vt 0.2498 0.0000 +vt 0.2449 0.0610 +vt 0.7547 0.0610 +vt 0.7498 0.0000 +vt 0.2168 0.2167 +vt 0.1393 0.1397 +vt 0.1397 0.8606 +vt 0.2168 0.7831 +vt 0.4004 0.4006 +vt 0.3047 0.3050 +vt 0.3047 0.6952 +vt 0.4004 0.5995 +vt 0.7830 0.2168 +vt 0.8605 0.1397 +vt 0.1393 0.1396 +vt 0.2166 0.2168 +vt 0.3049 0.3048 +vt 0.3049 0.6950 +vt 0.6949 0.3050 +vt 0.5993 0.4006 +vt 0.5993 0.5995 +vt 0.6949 0.6952 +vt 0.7830 0.7833 +vt 0.2166 0.7833 +vt 0.7832 0.7831 +vt 0.6951 0.6950 +vt 0.8602 0.8605 +vt 0.1395 0.8605 +vt 0.4005 0.5993 +vt 0.5995 0.5993 +vt 0.6951 0.3048 +vt 0.7832 0.2167 +vt 0.5995 0.4004 +vt 0.8605 0.1396 +vt 0.7834 0.2165 +vt 0.7832 0.7832 +vt 0.8605 0.8605 +vt 0.4005 0.4004 +vt 0.8605 0.8604 +vt 0.1396 0.1395 +vt 0.2170 0.2168 +vt 0.2170 0.7829 +vt 0.1397 0.8602 +vt 0.2168 0.2168 +vt 0.1397 0.1393 +vt 0.1396 0.8604 +vt 0.2168 0.7832 +vt 0.6951 0.6950 +vt 0.3053 0.6948 +vt 0.6953 0.3047 +vt 0.7831 0.2168 +vt 0.7834 0.7832 +vt 0.6953 0.6951 +vt 0.8604 0.1395 +vt 0.3052 0.3049 +vt 0.6949 0.3049 +vt 0.8602 0.1397 +vt 0.7829 0.2170 +vt 0.7832 0.7832 +vt 0.8602 0.8606 +vt 0.3052 0.6946 +vt 0.3049 0.6951 +vt 0.2171 0.2170 +vt 0.1398 0.1397 +vt 0.1395 0.8605 +vt 0.2166 0.7834 +vt 0.4005 0.4008 +vt 0.3049 0.3051 +vt 0.3047 0.6953 +vt 0.4005 0.5997 +vt 0.6951 0.6953 +vt 0.4006 0.4003 +vt 0.4006 0.5992 +vt 0.5995 0.5992 +vt 0.5995 0.4003 +vt 0.6948 0.3051 +vt 0.5995 0.4008 +vt 0.5995 0.5997 +vt 0.5997 0.4005 +vt 0.5997 0.5995 +vt 0.6951 0.3050 +vt 0.3049 0.3050 +vt 0.4008 0.4005 +vt 0.4008 0.5995 +vt 0.8603 0.1393 +vt 0.2169 0.2168 +vt 0.1397 0.1395 +vt 0.1395 0.8605 +vt 0.2166 0.7832 +vt 0.8605 0.8605 +vt 0.1393 0.1398 +vt 0.2166 0.2168 +vt 0.7832 0.2168 +vt 0.8605 0.1395 +vt 0.1393 0.8602 +vt 0.2166 0.7835 +vt 0.7830 0.7832 +vt 0.8603 0.8603 +vt 0.2451 0.2451 +vt 0.7549 0.2451 +vt 0.7547 0.7549 +vt 0.2451 0.7549 +vt 0.2500 0.7500 +vt 0.7500 0.7500 +vt 0.7500 0.2500 +vt 0.2500 0.2500 +vn 0.9968 -0.0794 -0.0000 +vn 0.0000 -0.0794 0.9968 +vn -0.9970 -0.0776 0.0002 +vn 0.0000 -0.0794 -0.9968 +vn 0.6360 0.0002 0.7717 +vn -0.2857 0.0000 -0.9583 +vn 0.0002 -0.6353 -0.7722 +vn 0.4714 -0.0000 0.8819 +vn 0.2857 0.0000 -0.9583 +vn 0.0000 -0.2857 -0.9583 +vn 0.0000 0.4714 -0.8819 +vn -0.0000 0.4714 0.8819 +vn 0.6346 -0.0000 -0.7728 +vn -0.6347 0.0001 -0.7728 +vn -0.0000 0.2857 0.9583 +vn -0.0000 -0.4714 0.8819 +vn -0.2857 -0.0000 0.9583 +vn -0.7727 0.0001 -0.6347 +vn -0.0000 -0.2857 0.9583 +vn -0.4714 0.0000 -0.8819 +vn 0.2857 -0.0000 0.9583 +vn -0.4714 -0.0000 0.8819 +vn 0.4714 0.0000 -0.8819 +vn 0.0001 0.6347 0.7728 +vn 0.0000 -0.4714 -0.8819 +vn 0.0000 0.2857 -0.9583 +vn 0.6339 0.7734 -0.0001 +vn -0.7722 -0.0002 0.6353 +vn -0.8820 0.4713 0.0000 +vn -0.4717 0.8817 -0.0002 +vn 0.0000 0.7730 -0.6344 +vn 0.0000 0.8820 -0.4713 +vn 0.7721 0.0002 0.6355 +vn 0.4711 0.8821 -0.0002 +vn 0.0000 0.0000 -1.0000 +vn 0.7732 -0.0000 -0.6342 +vn -0.0000 -0.0000 1.0000 +vn 0.9583 0.0001 -0.2859 +vn -0.7730 0.6345 -0.0000 +vn 0.8815 0.4723 -0.0001 +vn -1.0000 -0.0000 0.0000 +vn 0.9583 0.0000 0.2857 +vn 0.0000 0.6344 -0.7730 +vn -0.2867 0.9580 -0.0001 +vn -0.9580 -0.2867 0.0000 +vn 0.0000 0.9583 -0.2858 +vn 0.7733 -0.6340 0.0000 +vn 1.0000 0.0000 0.0000 +vn -0.8818 -0.0000 -0.4716 +vn 0.9585 -0.2852 -0.0002 +vn 0.2853 0.9584 -0.0001 +vn 0.9582 0.2862 -0.0002 +vn -0.0000 0.8819 0.4715 +vn 0.0002 -0.6359 0.7718 +vn -0.7728 -0.6346 0.0000 +vn -0.9586 0.2849 -0.0001 +vn -0.6353 -0.0002 0.7722 +vn -0.0000 0.9582 0.2861 +vn -0.9583 0.0000 -0.2857 +vn 0.8821 -0.0001 0.4711 +vn -0.6348 0.7727 -0.0001 +vn -0.8821 0.0001 0.4711 +vn 0.8818 0.0000 -0.4716 +vn -0.9583 -0.0000 0.2857 +vn -0.8820 -0.4713 -0.0000 +vn 0.0000 1.0000 0.0002 +vn 0.8824 -0.4705 -0.0001 +vn 0.7729 0.6346 0.0000 +vn 0.0001 0.7732 0.6342 +vn 0.0002 -0.7722 -0.6354 +vn 0.6351 -0.7724 0.0001 +vn -0.6340 -0.7733 0.0000 +vn 0.0000 -0.8817 -0.4719 +vn -0.4716 -0.8818 0.0001 +vn 0.0003 -0.7720 0.6356 +vn 0.4706 -0.8823 0.0000 +vn 0.0001 -0.8817 0.4718 +vn 0.0000 -1.0000 0.0000 +g Cube.002_Cube.002_allsides +s off +f 1/1/1 80/2/1 79/3/1 2/4/1 +f 2/5/2 79/6/2 82/7/2 4/8/2 +f 4/9/3 82/10/3 81/11/3 3/12/3 +f 3/13/4 81/14/4 80/15/4 1/16/4 +f 6/17/5 60/18/5 38/19/5 5/20/5 +f 28/21/6 18/22/6 19/23/6 29/24/6 +f 22/25/7 48/26/7 17/27/7 24/28/7 +f 9/29/8 6/17/8 5/20/8 10/30/8 +f 20/31/9 26/32/9 27/33/9 21/34/9 +f 26/32/10 20/31/10 18/22/10 28/21/10 +f 23/35/11 21/34/11 19/23/11 25/36/11 +f 10/30/12 5/20/12 7/37/12 12/38/12 +f 48/26/13 22/25/13 23/35/13 47/39/13 +f 24/28/14 17/27/14 46/40/14 25/36/14 +f 14/41/15 10/30/15 12/38/15 16/42/15 +f 6/17/16 9/29/16 11/43/16 8/44/16 +f 11/43/17 15/45/17 16/42/17 12/38/17 +f 17/46/18 51/47/18 52/48/18 46/49/18 +f 9/29/19 13/50/19 15/45/19 11/43/19 +f 18/22/20 24/28/20 25/36/20 19/23/20 +f 13/50/21 9/29/21 10/30/21 14/41/21 +f 8/44/22 11/43/22 12/38/22 7/37/22 +f 22/25/23 20/31/23 21/34/23 23/35/23 +f 5/20/24 38/19/24 30/51/24 7/37/24 +f 20/31/25 22/25/25 24/28/25 18/22/25 +f 21/34/26 27/33/26 29/24/26 19/23/26 +f 47/52/27 45/53/27 37/54/27 38/55/27 +f 49/56/28 57/57/28 30/58/28 50/59/28 +f 52/48/29 55/60/29 70/61/29 50/59/29 +f 43/62/30 44/63/30 36/64/30 33/65/30 +f 45/53/31 47/52/31 46/66/31 44/63/31 +f 42/67/32 45/53/32 44/63/32 43/62/32 41/68/32 +f 60/69/33 63/70/33 61/71/33 38/72/33 +f 45/53/34 42/67/34 35/73/34 34/74/34 37/54/34 +f 28/21/35 29/24/35 27/33/35 26/32/35 +f 66/75/36 48/76/36 47/77/36 62/78/36 +f 13/50/37 14/41/37 16/42/37 15/45/37 +f 77/79/38 67/80/38 68/81/38 78/82/38 +f 46/49/39 52/48/39 50/59/39 30/58/39 +f 68/81/40 62/78/40 61/71/40 65/83/40 +f 72/84/41 71/85/41 73/86/41 74/87/41 +f 69/88/42 75/89/42 76/90/42 65/83/42 +f 47/39/43 23/35/43 25/36/43 46/40/43 +f 39/91/44 41/68/44 43/62/44 33/65/44 31/92/44 +f 74/87/45 56/93/45 64/94/45 72/84/45 +f 40/95/46 42/67/46 41/68/46 39/91/46 +f 48/76/47 66/75/47 63/70/47 60/69/47 +f 77/79/48 78/82/48 76/90/48 75/89/48 +f 51/47/49 56/93/49 55/60/49 52/48/49 +f 67/80/50 77/79/50 75/89/50 69/88/50 +f 42/67/51 40/95/51 32/96/51 35/73/51 +f 78/82/52 68/81/52 65/83/52 76/90/52 +f 37/54/53 34/74/53 33/65/53 36/64/53 +f 60/18/54 6/17/54 8/44/54 57/97/54 +f 51/47/55 17/46/55 57/57/55 49/56/55 +f 55/60/56 73/86/56 71/85/56 70/61/56 +f 57/97/57 8/44/57 7/37/57 30/51/57 +f 34/74/58 35/73/58 32/96/58 31/92/58 33/65/58 +f 56/93/59 74/87/59 73/86/59 55/60/59 +f 63/70/60 69/88/60 65/83/60 61/71/60 +f 44/98/61 46/99/61 30/100/61 36/101/61 +f 64/94/62 49/56/62 50/59/62 70/61/62 +f 67/80/63 66/75/63 62/78/63 68/81/63 +f 72/84/64 64/94/64 70/61/64 71/85/64 +f 56/93/65 51/47/65 49/56/65 64/94/65 +f 40/95/66 39/91/66 31/92/66 32/96/66 +f 66/75/67 67/80/67 69/88/67 63/70/67 +f 62/78/68 47/77/68 38/72/68 61/71/68 +f 30/102/69 38/55/69 37/54/69 36/64/69 +g Cube.002_Cube.002_bottom +f 48/103/70 53/104/70 54/105/70 17/106/70 +f 53/104/71 48/103/71 60/107/71 58/108/71 +f 17/106/72 54/105/72 59/109/72 57/110/72 +f 53/104/73 80/111/73 81/112/73 54/105/73 +f 54/105/74 81/112/74 82/113/74 59/109/74 +f 58/108/75 60/107/75 57/110/75 59/109/75 +f 79/114/76 80/111/76 53/104/76 58/108/76 +f 82/113/77 79/114/77 58/108/77 59/109/77 +f 2/115/78 4/116/78 3/117/78 1/118/78 diff --git a/mods/technic_plus_beta/technic/mtt.lua b/mods/technic_plus_beta/technic/mtt.lua new file mode 100644 index 00000000..939c3986 --- /dev/null +++ b/mods/technic_plus_beta/technic/mtt.lua @@ -0,0 +1,12 @@ + +-- check if all required nodenames are registered +mtt.validate_nodenames(minetest.get_modpath("technic").."/registered_nodes.txt") + +-- test mapgen +mtt.emerge_area({x=0, y=0, z=0}, {x=48, y=48, z=48}) + +mtt.register("technic.max_lag", function(callback) + local lag = technic.get_max_lag() + assert(lag ~= nil and lag > 0) + callback() +end) \ No newline at end of file diff --git a/mods/technic_plus_beta/technic/radiation.lua b/mods/technic_plus_beta/technic/radiation.lua new file mode 100644 index 00000000..36baaf07 --- /dev/null +++ b/mods/technic_plus_beta/technic/radiation.lua @@ -0,0 +1,575 @@ +--[[ +Radioactivity + +Radiation resistance represents the extent to which a material +attenuates radiation passing through it; i.e., how good a radiation +shield it is. This is identified per node type. For materials that +exist in real life, the radiation resistance value that this system +uses for a node type consisting of a solid cube of that material is the +(approximate) number of halvings of ionising radiation that is achieved +by a meter of the material in real life. This is approximately +proportional to density, which provides a good way to estimate it. +Homogeneous mixtures of materials have radiation resistance computed +by a simple weighted mean. Note that the amount of attenuation that +a material achieves in-game is not required to be (and is not) the +same as the attenuation achieved in real life. + +Radiation resistance for a node type may be specified in the node +definition, under the key "radiation_resistance". As an interim +measure, until node definitions widely include this, this code +knows a bunch of values for particular node types in several mods, +and values for groups of node types. The node definition takes +precedence if it specifies a value. Nodes for which no value at +all is known are taken to provide no radiation resistance at all; +this is appropriate for the majority of node types. Only node types +consisting of a fairly homogeneous mass of material should report +non-zero radiation resistance; anything with non-uniform geometry +or complex internal structure should show no radiation resistance. +Fractional resistance values are permitted. +--]] + +local MP = minetest.get_modpath("technic") +local throttle = dofile(MP .. "/util/throttle.lua") + +local S = technic.getter +local has_mcl = minetest.get_modpath("mcl_core") + +local rad_resistance_node = { + ["default:brick"] = 13, + ["default:bronzeblock"] = 45, + ["default:clay"] = 15, + ["default:coalblock"] = 9.6, + ["default:cobble"] = 15, + ["default:copperblock"] = 46, + ["default:desert_cobble"] = 15, + ["default:desert_sand"] = 10, + ["default:desert_stone"] = 17, + ["default:desert_stonebrick"] = 17, + ["default:diamondblock"] = 24, + ["default:dirt"] = 8.2, + ["default:dirt_with_grass"] = 8.2, + ["default:dirt_with_grass_footsteps"] = 8.2, + ["default:dirt_with_snow"] = 8.2, + ["default:glass"] = 17, + ["default:goldblock"] = 170, + ["default:gravel"] = 10, + ["default:ice"] = 5.6, + ["default:lava_flowing"] = 8.5, + ["default:lava_source"] = 17, + ["default:mese"] = 21, + ["default:mossycobble"] = 15, + ["default:tinblock"] = 37, + ["pbj_pup:pbj_pup"] = 10000, + ["pbj_pup:pbj_pup_candies"] = 10000, + ["gloopblocks:rainbow_block_diagonal"] = 5000, + ["gloopblocks:rainbow_block_horizontal"] = 10000, + ["default:nyancat"] = 10000, + ["default:nyancat_rainbow"] = 10000, + ["nyancat:nyancat"] = 10000, + ["nyancat:nyancat_rainbow"] = 10000, + ["default:obsidian"] = 18, + ["default:obsidian_glass"] = 18, + ["default:sand"] = 10, + ["default:sandstone"] = 15, + ["default:sandstonebrick"] = 15, + ["default:snowblock"] = 1.7, + ["default:steelblock"] = 40, + ["default:stone"] = 17, + ["default:stone_with_coal"] = 16, + ["default:stone_with_copper"] = 20, + ["default:stone_with_diamond"] = 18, + ["default:stone_with_gold"] = 34, + ["default:stone_with_iron"] = 20, + ["default:stone_with_mese"] = 17, + ["default:stone_with_tin"] = 19, + ["default:stonebrick"] = 17, + ["default:water_flowing"] = 2.8, + ["default:water_source"] = 5.6, + ["farming:desert_sand_soil"] = 10, + ["farming:desert_sand_soil_wet"] = 10, + ["farming:soil"] = 8.2, + ["farming:soil_wet"] = 8.2, + ["glooptest:akalin_crystal_glass"] = 21, + ["glooptest:akalinblock"] = 40, + ["glooptest:alatro_crystal_glass"] = 21, + ["glooptest:alatroblock"] = 40, + ["glooptest:amethystblock"] = 18, + ["glooptest:arol_crystal_glass"] = 21, + ["glooptest:crystal_glass"] = 21, + ["glooptest:emeraldblock"] = 19, + ["glooptest:heavy_crystal_glass"] = 21, + ["glooptest:mineral_akalin"] = 20, + ["glooptest:mineral_alatro"] = 20, + ["glooptest:mineral_amethyst"] = 17, + ["glooptest:mineral_arol"] = 20, + ["glooptest:mineral_desert_coal"] = 16, + ["glooptest:mineral_desert_iron"] = 20, + ["glooptest:mineral_emerald"] = 17, + ["glooptest:mineral_kalite"] = 20, + ["glooptest:mineral_ruby"] = 18, + ["glooptest:mineral_sapphire"] = 18, + ["glooptest:mineral_talinite"] = 20, + ["glooptest:mineral_topaz"] = 18, + ["glooptest:reinforced_crystal_glass"] = 21, + ["glooptest:rubyblock"] = 27, + ["glooptest:sapphireblock"] = 27, + ["glooptest:talinite_crystal_glass"] = 21, + ["glooptest:taliniteblock"] = 40, + ["glooptest:topazblock"] = 24, + ["mesecons_extrawires:mese_powered"] = 21, + ["moreblocks:cactus_brick"] = 13, + ["moreblocks:cactus_checker"] = 8.5, + ["moreblocks:circle_stone_bricks"] = 17, + ["moreblocks:clean_glass"] = 17, + ["moreblocks:coal_checker"] = 9.0, + ["moreblocks:coal_glass"] = 17, + ["moreblocks:coal_stone"] = 17, + ["moreblocks:coal_stone_bricks"] = 17, + ["moreblocks:glow_glass"] = 17, + ["moreblocks:grey_bricks"] = 15, + ["moreblocks:iron_checker"] = 11, + ["moreblocks:iron_glass"] = 17, + ["moreblocks:iron_stone"] = 17, + ["moreblocks:iron_stone_bricks"] = 17, + ["moreblocks:plankstone"] = 9.3, + ["moreblocks:split_stone_tile"] = 15, + ["moreblocks:split_stone_tile_alt"] = 15, + ["moreblocks:stone_tile"] = 15, + ["moreblocks:super_glow_glass"] = 17, + ["moreblocks:tar"] = 7.0, + ["moreblocks:wood_tile"] = 1.7, + ["moreblocks:wood_tile_center"] = 1.7, + ["moreblocks:wood_tile_down"] = 1.7, + ["moreblocks:wood_tile_flipped"] = 1.7, + ["moreblocks:wood_tile_full"] = 1.7, + ["moreblocks:wood_tile_left"] = 1.7, + ["moreblocks:wood_tile_right"] = 1.7, + ["moreblocks:wood_tile_up"] = 1.7, + ["moreores:mineral_mithril"] = 18, + ["moreores:mineral_silver"] = 21, + ["moreores:mithril_block"] = 26, + ["moreores:silver_block"] = 53, + ["snow:snow_brick"] = 2.8, + ["basic_materials:brass_block"] = 43, + ["technic:carbon_steel_block"] = 40, + ["technic:cast_iron_block"] = 40, + ["technic:chernobylite_block"] = 40, + ["technic:chromium_block"] = 37, + ["technic:corium_flowing"] = 40, + ["technic:corium_source"] = 80, + ["technic:granite"] = 18, + ["technic:lead_block"] = 80, + ["technic:marble"] = 18, + ["technic:marble_bricks"] = 18, + ["technic:mineral_chromium"] = 19, + ["technic:mineral_uranium"] = 71, + ["technic:mineral_zinc"] = 19, + ["technic:stainless_steel_block"] = 40, + ["technic:zinc_block"] = 36, + ["tnt:tnt"] = 11, + ["tnt:tnt_burning"] = 11, +} +local rad_resistance_group = { + concrete = 16, + tree = 3.4, + uranium_block = 500, + wood = 1.7, +} +local cache_radiation_resistance = {} +local function node_radiation_resistance(node_name) + local resistance = cache_radiation_resistance[node_name] + if resistance then + return resistance + end + local def = minetest.registered_nodes[node_name] + if not def then + cache_radiation_resistance[node_name] = 0 + return 0 + end + resistance = def.radiation_resistance or + rad_resistance_node[node_name] + if not resistance then + resistance = 0 + for g, v in pairs(def.groups) do + if v > 0 and rad_resistance_group[g] then + resistance = resistance + rad_resistance_group[g] + end + end + end + resistance = math.sqrt(resistance) + cache_radiation_resistance[node_name] = resistance + return resistance +end + + +--[[ +Radioactive nodes cause damage to nearby players. The damage +effect depends on the intrinsic strength of the radiation source, +the distance between the source and the player, and the shielding +effect of the intervening material. These determine a rate of damage; +total damage caused is the integral of this over time. + +In the absence of effective shielding, for a specific source the +damage rate varies realistically in inverse proportion to the square +of the distance. (Distance is measured to the player's abdomen, +not to the nominal player position which corresponds to the foot.) +However, if the player is inside a non-walkable (liquid or gaseous) +radioactive node, the nominal distance could go to zero, yielding +infinite damage. In that case, the player's body is displacing the +radioactive material, so the effective distance should remain non-zero. +We therefore apply a lower distance bound of sqrt(0.75), which is +the maximum distance one can get from the node center within the node. + +A radioactive node is identified by being in the "radioactive" group, +and the group value signifies the strength of the radiation source. +The group value is the distance from a node at which an unshielded +player will be damaged by 1 HP/s. Or, equivalently, it is the square +root of the damage rate in HP/s that an unshielded player one node +away will take. + +Shielding is assessed by adding the shielding values of all nodes +between the source node and the player, ignoring the source node itself. +As in reality, shielding causes exponential attenuation of radiation. +However, the effect is scaled down relative to real life. A node with +radiation resistance value R yields attenuation of sqrt(R) * 0.1 nepers. +(In real life it would be about R * 0.69 nepers, by the definition +of the radiation resistance values.) The sqrt part of this formula +scales down the differences between shielding types, reflecting the +game's simplification of making expensive materials such as gold +readily available in cubes. The multiplicative factor in the +formula scales down the difference between shielded and unshielded +safe distances, avoiding the latter becoming impractically large. + +Damage is processed at rates down to 0.2 HP/s, which in the absence of +shielding is attained at the distance specified by the "radioactive" +group value. Computed damage rates below 0.2 HP/s result in no +damage at all to the player. This gives the player an opportunity +to be safe, and limits the range at which source/player interactions +need to be considered. +--]] +local abdomen_offset = 1 +local rad_dmg_cutoff = 0.2 +local radiated_players = {} + +-- radiation callback function for external use +-- (radiation counters, etc) +-- parameters: object / damage (before armor calculations) +function technic.radiation_callback(object, damage) +end + +local armor_enabled = technic.config:get_bool("enable_radiation_protection") +local entity_damage = technic.config:get_bool("enable_entity_radiation_damage") +local longterm_damage = technic.config:get_bool("enable_longterm_radiation_damage") + +local function apply_fractional_damage(o, dmg) + local dmg_int = math.floor(dmg) + -- The closer you are to getting one more damage point, + -- the more likely it will be added. + if math.random() < dmg - dmg_int then + dmg_int = dmg_int + 1 + end + if dmg_int > 0 then + local new_hp = math.max(o:get_hp() - dmg_int, 0) + o:set_hp(new_hp) + return new_hp == 0 + end + return false +end + +local function calculate_base_damage(node_pos, object_pos, strength) + local shielding = 0 + local dist = vector.distance(node_pos, object_pos) + + for ray_pos in technic.trace_node_ray(node_pos, + vector.direction(node_pos, object_pos), dist) do + local shield_name = minetest.get_node(ray_pos).name + shielding = shielding + node_radiation_resistance(shield_name) * 0.025 + end + + local dmg = (strength * strength) / + (math.max(0.75, dist * dist) * math.exp(shielding)) + + if dmg < rad_dmg_cutoff then return end + return dmg +end + +local function calculate_damage_multiplier(object) + local ag = object.get_armor_groups and object:get_armor_groups() + if not ag then + return 0 + end + if ag.immortal then + return 0 + end + if ag.radiation then + return 0.01 * ag.radiation + elseif armor_enabled then + return 0 + end + if ag.fleshy then + return math.sqrt(0.01 * ag.fleshy) + end + return 0 +end + +local function calculate_object_center(object) + if object:is_player() then + return {x=0, y=abdomen_offset, z=0} + end + return {x=0, y=0, z=0} +end + +local function dmg_object(pos, object, strength) + local obj_pos = vector.add(object:get_pos(), calculate_object_center(object)) + local mul + if armor_enabled or entity_damage then + -- we need to check may the object be damaged even if armor is disabled + mul = calculate_damage_multiplier(object) + if mul == 0 then + return + end + end + local dmg = calculate_base_damage(pos, obj_pos, strength) + if not dmg then + return + end + + -- execute radiation callback + technic.radiation_callback(object, dmg) + + if armor_enabled then + dmg = dmg * mul + end + apply_fractional_damage(object, dmg) + if longterm_damage and object:is_player() then + local pn = object:get_player_name() + radiated_players[pn] = (radiated_players[pn] or 0) + dmg + end +end + +local enable_radiation_throttling = technic.config:get_bool("enable_radiation_throttling") + +-- max lag tracker +local last_max_lag = 0 + +if enable_radiation_throttling then + local function trackMaxLag() + last_max_lag = technic.get_max_lag() + minetest.after(5, trackMaxLag) + end + + -- kick off lag tracking function + trackMaxLag() +end + +local rad_dmg_mult_sqrt = math.sqrt(1 / rad_dmg_cutoff) +local function dmg_abm(pos, node) + if enable_radiation_throttling and last_max_lag > 1.5 then + -- too much lag, skip radiation check entirely + return + end + + local strength = minetest.get_item_group(node.name, "radioactive") + local max_dist = strength * rad_dmg_mult_sqrt + for _, o in pairs(minetest.get_objects_inside_radius(pos, + max_dist + abdomen_offset)) do + if (entity_damage or o:is_player()) and o:get_hp() > 0 then + dmg_object(pos, o, strength) + end + end +end + +if minetest.settings:get_bool("enable_damage") then + if enable_radiation_throttling then + dmg_abm = throttle(100, dmg_abm) + end + + minetest.register_abm({ + label = "Radiation damage", + nodenames = {"group:radioactive"}, + interval = 1, + chance = 2, + action = dmg_abm, + }) + + if longterm_damage then + minetest.register_globalstep(function(dtime) + for pn, dmg in pairs(radiated_players) do + dmg = dmg - (dtime / 8) + local player = minetest.get_player_by_name(pn) + local killed + if player and dmg > rad_dmg_cutoff then + killed = apply_fractional_damage(player, (dmg * dtime) / 8) + else + dmg = nil + end + -- on_dieplayer will have already set this if the player died + if not killed then + radiated_players[pn] = dmg + end + end + end) + + minetest.register_on_dieplayer(function(player) + radiated_players[player:get_player_name()] = nil + end) + end +end + +-- Radioactive materials that can result from destroying a reactor +local griefing = technic.config:get_bool("enable_corium_griefing") + +for _, state in pairs({"flowing", "source"}) do + minetest.register_node("technic:corium_"..state, { + description = state == "source" and S("Corium Source") or S("Flowing Corium"), + drawtype = (state == "source" and "liquid" or "flowingliquid"), + tiles = {{ + name = "technic_corium_"..state.."_animated.png", + animation = { + type = "vertical_frames", + aspect_w = 16, + aspect_h = 16, + length = 3.0, + }, + }}, + special_tiles = { + { + name = "technic_corium_"..state.."_animated.png", + backface_culling = false, + animation = { + type = "vertical_frames", + aspect_w = 16, + aspect_h = 16, + length = 3.0, + }, + }, + { + name = "technic_corium_"..state.."_animated.png", + backface_culling = true, + animation = { + type = "vertical_frames", + aspect_w = 16, + aspect_h = 16, + length = 3.0, + }, + }, + }, + paramtype = "light", + paramtype2 = (state == "flowing" and "flowingliquid" or nil), + light_source = (state == "source" and 8 or 5), + walkable = false, + pointable = false, + diggable = false, + buildable_to = true, + drop = "", + drowning = 1, + liquidtype = state, + liquid_alternative_flowing = "technic:corium_flowing", + liquid_alternative_source = "technic:corium_source", + liquid_viscosity = 7, + liquid_renewable = false, + damage_per_second = 6, + post_effect_color = {a=192, r=80, g=160, b=80}, + is_ground_content = state == "flowing", + groups = { + liquid = 2, + hot = 3, + igniter = (griefing and 1 or 0), + radioactive = (state == "source" and 12 or 6), + not_in_creative_inventory = (state == "flowing" and 1 or nil), + }, + }) +end + +if rawget(_G, "bucket") and bucket.register_liquid then + bucket.register_liquid( + "technic:corium_source", + "technic:corium_flowing", + "technic:bucket_corium", + "technic_bucket_corium.png", + S("Corium Bucket") + ) +end + +if minetest.get_modpath("mcl_buckets") then + mcl_buckets.register_liquid({ + bucketname = "technic:bucket_corium", + source_place = "technic:corium_source", + source_take = {"technic:corium_source"}, + inventory_image = "technic_bucket_corium.png", + name = S("Corium Bucket"), + longdesc = S("This bucket is filled with radioactive corium."), + usagehelp = S("Place it to empty the bucket and create a radioactive liquid source."), + tt_help = S("Danger Hight Radiation"), + groups = { radioactive = 5 }, + }) +end + +minetest.register_node("technic:chernobylite_block", { + description = S("Chernobylite Block"), + tiles = {"technic_chernobylite_block.png"}, + is_ground_content = false, + groups = {cracky=1, radioactive=4, level= has_mcl and 0 or 2, pickaxey=5}, + _mcl_blast_resistance = 30, + _mcl_hardness = 40, + sounds = technic.sounds.node_sound_stone_defaults(), + light_source = 2, +}) + +minetest.register_abm({ + label = "Corium: boil-off water (sources)", + nodenames = {"group:water"}, + neighbors = {"technic:corium_source"}, + interval = 1, + chance = 3, + action = function(pos, node) + minetest.remove_node(pos) + end, +}) + +minetest.register_abm({ + label = "Corium: boil-off water (flowing)", + nodenames = {"technic:corium_flowing"}, + neighbors = {"group:water"}, + interval = 1, + chance = 3, + action = function(pos, node) + minetest.set_node(pos, {name="technic:chernobylite_block"}) + end, +}) + +minetest.register_abm({ + label = "Corium: become chernobylite", + nodenames = {"technic:corium_flowing"}, + interval = 5, + chance = (griefing and 10 or 1), + action = function(pos, node) + minetest.set_node(pos, {name="technic:chernobylite_block"}) + end, +}) + +if griefing then + minetest.register_abm({ + label = "Corium: griefing", + nodenames = {"technic:corium_source", "technic:corium_flowing"}, + interval = 4, + chance = 4, + action = function(pos, node) + for _, offset in ipairs({ + vector.new(1,0,0), + vector.new(-1,0,0), + vector.new(0,0,1), + vector.new(0,0,-1), + vector.new(0,-1,0), + }) do + if math.random(8) == 1 then + local vpos = vector.add(pos, offset) + local def = minetest.registered_nodes[minetest.get_node(vpos).name] + if def and (not def._mcl_hardness or def._mcl_hardness > 0) then + minetest.dig_node(vpos) + end + end + end + end, + }) +end diff --git a/mods/technic_plus_beta/technic/register.lua b/mods/technic_plus_beta/technic/register.lua new file mode 100644 index 00000000..ac695a8a --- /dev/null +++ b/mods/technic_plus_beta/technic/register.lua @@ -0,0 +1,47 @@ +-- This file includes the functions and data structures for registering machines and tools for LV, MV, HV types. +-- We use the technic namespace for these functions and data to avoid eventual conflict. + +technic.receiver = "RE" +technic.producer = "PR" +technic.producer_receiver = "PR_RE" +technic.battery = "BA" + +technic.machines = {} +technic.power_tools = {} +technic.networks = {} +technic.machine_tiers = {} + +function technic.register_tier(tier, description) + technic.machines[tier] = {} +end + +function technic.register_machine(tier, nodename, machine_type) + -- Lookup table to get compatible node names and machine type by tier + if not technic.machines[tier] then + return + end + technic.machines[tier][nodename] = machine_type + -- Lookup table to get compatible tiers by node name + if not technic.machine_tiers[nodename] then + technic.machine_tiers[nodename] = {} + end + table.insert(technic.machine_tiers[nodename], tier) +end + +function technic.register_power_tool(itemname, itemdef) + local max_charge = itemdef.technic_max_charge or itemdef.max_charge or 10000 + itemdef.max_charge = nil + itemdef.wear_represents = itemdef.wear_represents or "technic_RE_charge" + itemdef.technic_max_charge = max_charge + itemdef.technic_wear_factor = 65535 / max_charge + itemdef.technic_get_charge = itemdef.technic_get_charge or technic.get_charge + itemdef.technic_set_charge = itemdef.technic_set_charge or technic.set_charge + itemdef.on_refill = itemdef.on_refill or function(stack) + local def = stack:get_definition() + def.technic_set_charge(stack, def.technic_max_charge) + return stack + end + itemdef.tool_capabilities = itemdef.tool_capabilities or { punch_attack_uses = 0 } + minetest.register_tool(itemname, itemdef) + technic.power_tools[itemname] = max_charge +end diff --git a/mods/technic_plus_beta/technic/registered_nodes.txt b/mods/technic_plus_beta/technic/registered_nodes.txt new file mode 100644 index 00000000..ffeadd42 --- /dev/null +++ b/mods/technic_plus_beta/technic/registered_nodes.txt @@ -0,0 +1,176 @@ +technic:dummy_light_source +technic:lv_lamp_active +technic:lv_cable_plate_2 +technic:lv_cable_plate_6 +technic:lv_battery_box0 +technic:mv_electric_furnace_active +technic:mv_alloy_furnace_active +technic:mv_compressor +technic:mv_grinder +technic:mv_grinder_active +technic:lv_battery_box1 +technic:lv_battery_box2 +technic:mv_cable_plate_6 +technic:mv_battery_box3 +technic:power_monitor +technic:mv_battery_box4 +technic:mv_battery_box5 +technic:mv_battery_box7 +technic:mv_battery_box8 +technic:mv_generator +technic:mv_solar_array +technic:hydro_turbine +technic:lv_cable_plate_1 +technic:mv_cable_plate_1 +technic:hv_cable +technic:hv_cable_plate_1 +technic:lv_battery_box3 +technic:lv_battery_box7 +technic:solar_panel +technic:lv_solar_array +technic:geothermal +technic:water_mill_active +technic:supply_converter +technic:lv_generator +technic:lv_generator_active +technic:admin_anchor +technic:coal_alloy_furnace_active +technic:constructor_mk3_on +technic:constructor_mk1_off +technic:constructor_mk2_on +technic:constructor_mk2_off +technic:lv_grinder +technic:constructor_mk1_on +technic:injector +technic:switching_station +technic:hv_compressor_active +technic:hv_compressor +technic:lv_led +technic:hv_grinder_active +technic:hv_grinder +technic:hv_electric_furnace_active +technic:hv_electric_furnace +technic:forcefield +technic:lv_compressor +technic:hv_nuclear_reactor_core +technic:hv_solar_array +technic:hv_battery_box8 +technic:hv_battery_box7 +technic:hv_battery_box5 +technic:hv_battery_box4 +technic:hv_battery_box3 +technic:hv_battery_box1 +technic:hv_battery_box0 +technic:uranium1_block +technic:uranium20_block +technic:hv_cable_plate_3 +technic:uranium31_block +technic:hv_cable_plate_2 +technic:mv_freezer_active +technic:mv_freezer +technic:tool_workshop +technic:mv_centrifuge_active +technic:mv_centrifuge +technic:mv_compressor_active +technic:mv_extractor_active +technic:mv_extractor +technic:mv_electric_furnace +technic:mv_alloy_furnace +technic:hydro_turbine_active +technic:mv_generator_active +technic:mv_battery_box6 +technic:mv_battery_box2 +technic:mv_battery_box1 +technic:uranium33_block +technic:mv_battery_box0 +technic:mv_cable_plate_5 +technic:mv_cable_plate_4 +technic:mv_cable_plate_3 +technic:mv_cable_plate_2 +technic:mv_cable +technic:uranium34_block +technic:lv_lamp +technic:lv_led_active +technic:music_player +technic:uranium35_block +technic:lv_compressor_active +technic:lv_extractor_active +technic:uranium9_block +technic:lv_extractor +technic:lv_grinder_active +technic:lv_electric_furnace_active +technic:lv_electric_furnace +technic:uranium10_block +technic:lv_alloy_furnace_active +technic:lv_alloy_furnace +technic:carbon_steel_block +technic:stainless_steel_block +technic:water_mill +technic:sulfur_block +technic:geothermal_active +technic:lv_battery_box8 +technic:lv_battery_box6 +technic:lv_battery_box5 +technic:lv_battery_box4 +technic:uranium12_block +technic:lv_cable_plate_5 +technic:lv_cable_plate_4 +technic:lv_cable_plate_3 +technic:lv_cable +technic:uranium13_block +technic:chernobylite_block +technic:uranium8_block +technic:uranium11_block +technic:uranium32_block +technic:uranium30_block +technic:uranium29_block +technic:uranium28_block +technic:uranium27_block +technic:uranium26_block +technic:uranium25_block +technic:uranium24_block +technic:uranium23_block +technic:hv_cable_plate_4 +technic:uranium16_block +technic:hv_cable_plate_5 +technic:hv_cable_plate_6 +technic:uranium18_block +technic:uranium17_block +technic:uranium15_block +technic:uranium14_block +technic:corium_flowing +technic:corium_source +technic:hv_battery_box2 +technic:uranium2_block +technic:uranium19_block +technic:uranium0_block +technic:hv_battery_box6 +technic:mineral_chromium +technic:mineral_lead +technic:mineral_sulfur +technic:granite +technic:uranium21_block +technic:granite_bricks +technic:marble +technic:marble_bricks +technic:uranium_block +technic:chromium_block +technic:uranium22_block +technic:zinc_block +technic:lead_block +technic:cast_iron_block +technic:uranium3_block +technic:uranium4_block +technic:uranium5_block +technic:uranium6_block +technic:hv_nuclear_reactor_core_active +technic:hv_generator +technic:hv_generator_active +technic:machine_casing +technic:mineral_uranium +technic:quarry +technic:forcefield_emitter_off +technic:constructor_mk3_off +technic:coal_alloy_furnace +technic:mineral_zinc +technic:forcefield_emitter_on diff --git a/mods/technic_plus_beta/technic/sounds/chainsaw.ogg b/mods/technic_plus_beta/technic/sounds/chainsaw.ogg new file mode 100644 index 00000000..5fe7552f Binary files /dev/null and b/mods/technic_plus_beta/technic/sounds/chainsaw.ogg differ diff --git a/mods/technic_plus_beta/technic/sounds/item_drop_pickup.1.ogg b/mods/technic_plus_beta/technic/sounds/item_drop_pickup.1.ogg new file mode 100644 index 00000000..378f03b1 Binary files /dev/null and b/mods/technic_plus_beta/technic/sounds/item_drop_pickup.1.ogg differ diff --git a/mods/technic_plus_beta/technic/sounds/item_drop_pickup.2.ogg b/mods/technic_plus_beta/technic/sounds/item_drop_pickup.2.ogg new file mode 100644 index 00000000..49a1538c Binary files /dev/null and b/mods/technic_plus_beta/technic/sounds/item_drop_pickup.2.ogg differ diff --git a/mods/technic_plus_beta/technic/sounds/item_drop_pickup.3.ogg b/mods/technic_plus_beta/technic/sounds/item_drop_pickup.3.ogg new file mode 100644 index 00000000..85d1ae0a Binary files /dev/null and b/mods/technic_plus_beta/technic/sounds/item_drop_pickup.3.ogg differ diff --git a/mods/technic_plus_beta/technic/sounds/item_drop_pickup.4.ogg b/mods/technic_plus_beta/technic/sounds/item_drop_pickup.4.ogg new file mode 100644 index 00000000..2af592ec Binary files /dev/null and b/mods/technic_plus_beta/technic/sounds/item_drop_pickup.4.ogg differ diff --git a/mods/technic_plus_beta/technic/sounds/mining_drill.ogg b/mods/technic_plus_beta/technic/sounds/mining_drill.ogg new file mode 100644 index 00000000..5f268307 Binary files /dev/null and b/mods/technic_plus_beta/technic/sounds/mining_drill.ogg differ diff --git a/mods/technic_plus_beta/technic/sounds/technic_hv_nuclear_reactor_siren_clear.ogg b/mods/technic_plus_beta/technic/sounds/technic_hv_nuclear_reactor_siren_clear.ogg new file mode 100644 index 00000000..3332debc Binary files /dev/null and b/mods/technic_plus_beta/technic/sounds/technic_hv_nuclear_reactor_siren_clear.ogg differ diff --git a/mods/technic_plus_beta/technic/sounds/technic_hv_nuclear_reactor_siren_danger_loop.ogg b/mods/technic_plus_beta/technic/sounds/technic_hv_nuclear_reactor_siren_danger_loop.ogg new file mode 100644 index 00000000..1f21a169 Binary files /dev/null and b/mods/technic_plus_beta/technic/sounds/technic_hv_nuclear_reactor_siren_danger_loop.ogg differ diff --git a/mods/technic_plus_beta/technic/sounds/technic_laser_mk1.0.ogg b/mods/technic_plus_beta/technic/sounds/technic_laser_mk1.0.ogg new file mode 100644 index 00000000..19be0801 Binary files /dev/null and b/mods/technic_plus_beta/technic/sounds/technic_laser_mk1.0.ogg differ diff --git a/mods/technic_plus_beta/technic/sounds/technic_laser_mk1.1.ogg b/mods/technic_plus_beta/technic/sounds/technic_laser_mk1.1.ogg new file mode 100644 index 00000000..7792be1e Binary files /dev/null and b/mods/technic_plus_beta/technic/sounds/technic_laser_mk1.1.ogg differ diff --git a/mods/technic_plus_beta/technic/sounds/technic_laser_mk2.0.ogg b/mods/technic_plus_beta/technic/sounds/technic_laser_mk2.0.ogg new file mode 100644 index 00000000..2cf15486 Binary files /dev/null and b/mods/technic_plus_beta/technic/sounds/technic_laser_mk2.0.ogg differ diff --git a/mods/technic_plus_beta/technic/sounds/technic_laser_mk2.1.ogg b/mods/technic_plus_beta/technic/sounds/technic_laser_mk2.1.ogg new file mode 100644 index 00000000..b3f9afb0 Binary files /dev/null and b/mods/technic_plus_beta/technic/sounds/technic_laser_mk2.1.ogg differ diff --git a/mods/technic_plus_beta/technic/sounds/technic_laser_mk2.2.ogg b/mods/technic_plus_beta/technic/sounds/technic_laser_mk2.2.ogg new file mode 100644 index 00000000..a4ee0911 Binary files /dev/null and b/mods/technic_plus_beta/technic/sounds/technic_laser_mk2.2.ogg differ diff --git a/mods/technic_plus_beta/technic/sounds/technic_laser_mk3.1.ogg b/mods/technic_plus_beta/technic/sounds/technic_laser_mk3.1.ogg new file mode 100644 index 00000000..f9489137 Binary files /dev/null and b/mods/technic_plus_beta/technic/sounds/technic_laser_mk3.1.ogg differ diff --git a/mods/technic_plus_beta/technic/sounds/technic_laser_mk3.2.ogg b/mods/technic_plus_beta/technic/sounds/technic_laser_mk3.2.ogg new file mode 100644 index 00000000..636c3068 Binary files /dev/null and b/mods/technic_plus_beta/technic/sounds/technic_laser_mk3.2.ogg differ diff --git a/mods/technic_plus_beta/technic/sounds/technic_prospector_hit.ogg b/mods/technic_plus_beta/technic/sounds/technic_prospector_hit.ogg new file mode 100644 index 00000000..3a8ad2d1 Binary files /dev/null and b/mods/technic_plus_beta/technic/sounds/technic_prospector_hit.ogg differ diff --git a/mods/technic_plus_beta/technic/sounds/technic_prospector_miss.ogg b/mods/technic_plus_beta/technic/sounds/technic_prospector_miss.ogg new file mode 100644 index 00000000..0f050d06 Binary files /dev/null and b/mods/technic_plus_beta/technic/sounds/technic_prospector_miss.ogg differ diff --git a/mods/technic_plus_beta/technic/sounds/technic_sonic_screwdriver.ogg b/mods/technic_plus_beta/technic/sounds/technic_sonic_screwdriver.ogg new file mode 100644 index 00000000..d89db54a Binary files /dev/null and b/mods/technic_plus_beta/technic/sounds/technic_sonic_screwdriver.ogg differ diff --git a/mods/technic_plus_beta/technic/sounds/vacuumcleaner.ogg b/mods/technic_plus_beta/technic/sounds/vacuumcleaner.ogg new file mode 100644 index 00000000..39d72de2 Binary files /dev/null and b/mods/technic_plus_beta/technic/sounds/vacuumcleaner.ogg differ diff --git a/mods/technic_plus_beta/technic/textures/technic_acacia_grindings.png b/mods/technic_plus_beta/technic/textures/technic_acacia_grindings.png new file mode 100644 index 00000000..58c49b61 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_acacia_grindings.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_admin_anchor.png b/mods/technic_plus_beta/technic/textures/technic_admin_anchor.png new file mode 100644 index 00000000..0e8b31d7 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_admin_anchor.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_akalin_dust.png b/mods/technic_plus_beta/technic/textures/technic_akalin_dust.png new file mode 100644 index 00000000..da8fadfd Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_akalin_dust.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_alatro_dust.png b/mods/technic_plus_beta/technic/textures/technic_alatro_dust.png new file mode 100644 index 00000000..46db4067 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_alatro_dust.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_arol_dust.png b/mods/technic_plus_beta/technic/textures/technic_arol_dust.png new file mode 100644 index 00000000..dba7de76 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_arol_dust.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_battery.png b/mods/technic_plus_beta/technic/textures/technic_battery.png new file mode 100644 index 00000000..cb3418cd Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_battery.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_battery_reload.png b/mods/technic_plus_beta/technic/textures/technic_battery_reload.png new file mode 100644 index 00000000..a8de376a Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_battery_reload.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_blueparticle.png b/mods/technic_plus_beta/technic/textures/technic_blueparticle.png new file mode 100644 index 00000000..69913f49 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_blueparticle.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_brass_dust.png b/mods/technic_plus_beta/technic/textures/technic_brass_dust.png new file mode 100644 index 00000000..633ce680 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_brass_dust.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_bronze_dust.png b/mods/technic_plus_beta/technic/textures/technic_bronze_dust.png new file mode 100644 index 00000000..d4d9cdfb Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_bronze_dust.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_bucket_corium.png b/mods/technic_plus_beta/technic/textures/technic_bucket_corium.png new file mode 100644 index 00000000..bb52895b Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_bucket_corium.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_cable_connection_overlay.png b/mods/technic_plus_beta/technic/textures/technic_cable_connection_overlay.png new file mode 100644 index 00000000..cd0d1053 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_cable_connection_overlay.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_carbon_cloth.png b/mods/technic_plus_beta/technic/textures/technic_carbon_cloth.png new file mode 100644 index 00000000..c2a284ca Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_carbon_cloth.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_carbon_plate.png b/mods/technic_plus_beta/technic/textures/technic_carbon_plate.png new file mode 100644 index 00000000..af392965 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_carbon_plate.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_carbon_steel_dust.png b/mods/technic_plus_beta/technic/textures/technic_carbon_steel_dust.png new file mode 100644 index 00000000..9fa87e9c Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_carbon_steel_dust.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_cast_iron_dust.png b/mods/technic_plus_beta/technic/textures/technic_cast_iron_dust.png new file mode 100644 index 00000000..a6d5d7aa Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_cast_iron_dust.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_chainsaw.png b/mods/technic_plus_beta/technic/textures/technic_chainsaw.png new file mode 100644 index 00000000..01ed849b Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_chainsaw.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_chernobylite_block.png b/mods/technic_plus_beta/technic/textures/technic_chernobylite_block.png new file mode 100644 index 00000000..a837c66c Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_chernobylite_block.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_chernobylite_dust.png b/mods/technic_plus_beta/technic/textures/technic_chernobylite_dust.png new file mode 100644 index 00000000..94fadd22 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_chernobylite_dust.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_chromium_dust.png b/mods/technic_plus_beta/technic/textures/technic_chromium_dust.png new file mode 100644 index 00000000..594aa6a8 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_chromium_dust.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_coal_alloy_furnace_bottom.png b/mods/technic_plus_beta/technic/textures/technic_coal_alloy_furnace_bottom.png new file mode 100644 index 00000000..0965afd6 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_coal_alloy_furnace_bottom.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_coal_alloy_furnace_front.png b/mods/technic_plus_beta/technic/textures/technic_coal_alloy_furnace_front.png new file mode 100644 index 00000000..2ae2ee42 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_coal_alloy_furnace_front.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_coal_alloy_furnace_front_active.png b/mods/technic_plus_beta/technic/textures/technic_coal_alloy_furnace_front_active.png new file mode 100644 index 00000000..16db883a Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_coal_alloy_furnace_front_active.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_coal_alloy_furnace_side.png b/mods/technic_plus_beta/technic/textures/technic_coal_alloy_furnace_side.png new file mode 100644 index 00000000..0922b91e Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_coal_alloy_furnace_side.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_coal_alloy_furnace_top.png b/mods/technic_plus_beta/technic/textures/technic_coal_alloy_furnace_top.png new file mode 100644 index 00000000..0922b91e Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_coal_alloy_furnace_top.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_coal_dust.png b/mods/technic_plus_beta/technic/textures/technic_coal_dust.png new file mode 100644 index 00000000..4f24ef13 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_coal_dust.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_common_tree_grindings.png b/mods/technic_plus_beta/technic/textures/technic_common_tree_grindings.png new file mode 100644 index 00000000..88efee6c Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_common_tree_grindings.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_composite_plate.png b/mods/technic_plus_beta/technic/textures/technic_composite_plate.png new file mode 100644 index 00000000..e5673b01 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_composite_plate.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_constructor_back.png b/mods/technic_plus_beta/technic/textures/technic_constructor_back.png new file mode 100644 index 00000000..4311b2d0 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_constructor_back.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_constructor_front_off.png b/mods/technic_plus_beta/technic/textures/technic_constructor_front_off.png new file mode 100644 index 00000000..239c7b0c Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_constructor_front_off.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_constructor_front_on.png b/mods/technic_plus_beta/technic/textures/technic_constructor_front_on.png new file mode 100644 index 00000000..3797876d Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_constructor_front_on.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_constructor_mk1_bottom_off.png b/mods/technic_plus_beta/technic/textures/technic_constructor_mk1_bottom_off.png new file mode 100644 index 00000000..10eba287 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_constructor_mk1_bottom_off.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_constructor_mk1_bottom_on.png b/mods/technic_plus_beta/technic/textures/technic_constructor_mk1_bottom_on.png new file mode 100644 index 00000000..8e8f53a1 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_constructor_mk1_bottom_on.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_constructor_mk1_side1_off.png b/mods/technic_plus_beta/technic/textures/technic_constructor_mk1_side1_off.png new file mode 100644 index 00000000..2fa61d64 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_constructor_mk1_side1_off.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_constructor_mk1_side1_on.png b/mods/technic_plus_beta/technic/textures/technic_constructor_mk1_side1_on.png new file mode 100644 index 00000000..a74fb022 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_constructor_mk1_side1_on.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_constructor_mk1_side2_off.png b/mods/technic_plus_beta/technic/textures/technic_constructor_mk1_side2_off.png new file mode 100644 index 00000000..8734ecd2 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_constructor_mk1_side2_off.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_constructor_mk1_side2_on.png b/mods/technic_plus_beta/technic/textures/technic_constructor_mk1_side2_on.png new file mode 100644 index 00000000..6982f156 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_constructor_mk1_side2_on.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_constructor_mk1_top_off.png b/mods/technic_plus_beta/technic/textures/technic_constructor_mk1_top_off.png new file mode 100644 index 00000000..fe0707ab Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_constructor_mk1_top_off.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_constructor_mk1_top_on.png b/mods/technic_plus_beta/technic/textures/technic_constructor_mk1_top_on.png new file mode 100644 index 00000000..b018e46b Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_constructor_mk1_top_on.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_constructor_mk2_bottom_off.png b/mods/technic_plus_beta/technic/textures/technic_constructor_mk2_bottom_off.png new file mode 100644 index 00000000..ed35f351 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_constructor_mk2_bottom_off.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_constructor_mk2_bottom_on.png b/mods/technic_plus_beta/technic/textures/technic_constructor_mk2_bottom_on.png new file mode 100644 index 00000000..8a651072 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_constructor_mk2_bottom_on.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_constructor_mk2_side1_off.png b/mods/technic_plus_beta/technic/textures/technic_constructor_mk2_side1_off.png new file mode 100644 index 00000000..88bdcd69 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_constructor_mk2_side1_off.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_constructor_mk2_side1_on.png b/mods/technic_plus_beta/technic/textures/technic_constructor_mk2_side1_on.png new file mode 100644 index 00000000..c814f496 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_constructor_mk2_side1_on.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_constructor_mk2_side2_off.png b/mods/technic_plus_beta/technic/textures/technic_constructor_mk2_side2_off.png new file mode 100644 index 00000000..09aded3c Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_constructor_mk2_side2_off.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_constructor_mk2_side2_on.png b/mods/technic_plus_beta/technic/textures/technic_constructor_mk2_side2_on.png new file mode 100644 index 00000000..7a59aef1 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_constructor_mk2_side2_on.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_constructor_mk2_top_off.png b/mods/technic_plus_beta/technic/textures/technic_constructor_mk2_top_off.png new file mode 100644 index 00000000..8887e3f6 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_constructor_mk2_top_off.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_constructor_mk2_top_on.png b/mods/technic_plus_beta/technic/textures/technic_constructor_mk2_top_on.png new file mode 100644 index 00000000..1513637f Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_constructor_mk2_top_on.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_constructor_mk3_bottom_off.png b/mods/technic_plus_beta/technic/textures/technic_constructor_mk3_bottom_off.png new file mode 100644 index 00000000..40d53b4d Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_constructor_mk3_bottom_off.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_constructor_mk3_bottom_on.png b/mods/technic_plus_beta/technic/textures/technic_constructor_mk3_bottom_on.png new file mode 100644 index 00000000..316aa93b Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_constructor_mk3_bottom_on.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_constructor_mk3_side1_off.png b/mods/technic_plus_beta/technic/textures/technic_constructor_mk3_side1_off.png new file mode 100644 index 00000000..1278aa2b Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_constructor_mk3_side1_off.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_constructor_mk3_side1_on.png b/mods/technic_plus_beta/technic/textures/technic_constructor_mk3_side1_on.png new file mode 100644 index 00000000..f8b57b6e Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_constructor_mk3_side1_on.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_constructor_mk3_side2_off.png b/mods/technic_plus_beta/technic/textures/technic_constructor_mk3_side2_off.png new file mode 100644 index 00000000..ac71a5e3 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_constructor_mk3_side2_off.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_constructor_mk3_side2_on.png b/mods/technic_plus_beta/technic/textures/technic_constructor_mk3_side2_on.png new file mode 100644 index 00000000..6cfa65ee Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_constructor_mk3_side2_on.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_constructor_mk3_top_off.png b/mods/technic_plus_beta/technic/textures/technic_constructor_mk3_top_off.png new file mode 100644 index 00000000..4d560edb Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_constructor_mk3_top_off.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_constructor_mk3_top_on.png b/mods/technic_plus_beta/technic/textures/technic_constructor_mk3_top_on.png new file mode 100644 index 00000000..0fad0e95 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_constructor_mk3_top_on.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_control_logic_unit.png b/mods/technic_plus_beta/technic/textures/technic_control_logic_unit.png new file mode 100644 index 00000000..ed434ec3 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_control_logic_unit.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_copper_coil.png b/mods/technic_plus_beta/technic/textures/technic_copper_coil.png new file mode 100644 index 00000000..fb1cfe16 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_copper_coil.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_copper_dust.png b/mods/technic_plus_beta/technic/textures/technic_copper_dust.png new file mode 100644 index 00000000..37514663 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_copper_dust.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_copper_plate.png b/mods/technic_plus_beta/technic/textures/technic_copper_plate.png new file mode 100644 index 00000000..bacb4b64 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_copper_plate.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_corium_flowing_animated.png b/mods/technic_plus_beta/technic/textures/technic_corium_flowing_animated.png new file mode 100644 index 00000000..75b163b4 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_corium_flowing_animated.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_corium_source_animated.png b/mods/technic_plus_beta/technic/textures/technic_corium_source_animated.png new file mode 100644 index 00000000..86b79849 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_corium_source_animated.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_diamond_block_blue.png b/mods/technic_plus_beta/technic/textures/technic_diamond_block_blue.png new file mode 100644 index 00000000..73079341 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_diamond_block_blue.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_diamond_block_green.png b/mods/technic_plus_beta/technic/textures/technic_diamond_block_green.png new file mode 100644 index 00000000..709e5c3d Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_diamond_block_green.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_diamond_block_red.png b/mods/technic_plus_beta/technic/textures/technic_diamond_block_red.png new file mode 100644 index 00000000..29810281 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_diamond_block_red.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_diamond_drill_head.png b/mods/technic_plus_beta/technic/textures/technic_diamond_drill_head.png new file mode 100644 index 00000000..eced0ed1 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_diamond_drill_head.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_doped_silicon_wafer.png b/mods/technic_plus_beta/technic/textures/technic_doped_silicon_wafer.png new file mode 100644 index 00000000..31cc3c59 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_doped_silicon_wafer.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_dummy_light_source.png b/mods/technic_plus_beta/technic/textures/technic_dummy_light_source.png new file mode 100644 index 00000000..c8a6b158 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_dummy_light_source.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_flashlight.png b/mods/technic_plus_beta/technic/textures/technic_flashlight.png new file mode 100644 index 00000000..e6f8d938 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_flashlight.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_forcefield_animated.png b/mods/technic_plus_beta/technic/textures/technic_forcefield_animated.png new file mode 100644 index 00000000..26997a60 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_forcefield_animated.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_forcefield_emitter_off.png b/mods/technic_plus_beta/technic/textures/technic_forcefield_emitter_off.png new file mode 100644 index 00000000..48673d63 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_forcefield_emitter_off.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_forcefield_emitter_on.png b/mods/technic_plus_beta/technic/textures/technic_forcefield_emitter_on.png new file mode 100644 index 00000000..1e2c33bf Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_forcefield_emitter_on.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_geothermal_side.png b/mods/technic_plus_beta/technic/textures/technic_geothermal_side.png new file mode 100644 index 00000000..efaf9a9a Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_geothermal_side.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_geothermal_top.png b/mods/technic_plus_beta/technic/textures/technic_geothermal_top.png new file mode 100644 index 00000000..66300a34 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_geothermal_top.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_geothermal_top_active.png b/mods/technic_plus_beta/technic/textures/technic_geothermal_top_active.png new file mode 100644 index 00000000..cc62e9f5 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_geothermal_top_active.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_gold_dust.png b/mods/technic_plus_beta/technic/textures/technic_gold_dust.png new file mode 100644 index 00000000..4a697694 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_gold_dust.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_graphite.png b/mods/technic_plus_beta/technic/textures/technic_graphite.png new file mode 100644 index 00000000..8d10a113 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_graphite.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_hv_battery_box_bottom.png b/mods/technic_plus_beta/technic/textures/technic_hv_battery_box_bottom.png new file mode 100644 index 00000000..b7ab466f Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_hv_battery_box_bottom.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_hv_battery_box_front.png b/mods/technic_plus_beta/technic/textures/technic_hv_battery_box_front.png new file mode 100644 index 00000000..d444e5df Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_hv_battery_box_front.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_hv_battery_box_side.png b/mods/technic_plus_beta/technic/textures/technic_hv_battery_box_side.png new file mode 100644 index 00000000..3cb5faba Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_hv_battery_box_side.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_hv_battery_box_top.png b/mods/technic_plus_beta/technic/textures/technic_hv_battery_box_top.png new file mode 100644 index 00000000..d0a77d57 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_hv_battery_box_top.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_hv_cable.png b/mods/technic_plus_beta/technic/textures/technic_hv_cable.png new file mode 100644 index 00000000..5ff84d72 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_hv_cable.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_hv_cable_wield.png b/mods/technic_plus_beta/technic/textures/technic_hv_cable_wield.png new file mode 100644 index 00000000..6504436a Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_hv_cable_wield.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_hv_compressor_bottom.png b/mods/technic_plus_beta/technic/textures/technic_hv_compressor_bottom.png new file mode 100644 index 00000000..9de5558a Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_hv_compressor_bottom.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_hv_compressor_front.png b/mods/technic_plus_beta/technic/textures/technic_hv_compressor_front.png new file mode 100644 index 00000000..c1295950 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_hv_compressor_front.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_hv_compressor_front_active.png b/mods/technic_plus_beta/technic/textures/technic_hv_compressor_front_active.png new file mode 100644 index 00000000..84931dc9 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_hv_compressor_front_active.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_hv_compressor_side.png b/mods/technic_plus_beta/technic/textures/technic_hv_compressor_side.png new file mode 100644 index 00000000..591fcf2e Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_hv_compressor_side.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_hv_compressor_top.png b/mods/technic_plus_beta/technic/textures/technic_hv_compressor_top.png new file mode 100644 index 00000000..87c06ccf Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_hv_compressor_top.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_hv_digi_cable.png b/mods/technic_plus_beta/technic/textures/technic_hv_digi_cable.png new file mode 100644 index 00000000..d967bcca Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_hv_digi_cable.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_hv_digi_cable_wield.png b/mods/technic_plus_beta/technic/textures/technic_hv_digi_cable_wield.png new file mode 100644 index 00000000..f2f2a693 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_hv_digi_cable_wield.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_hv_electric_furnace_bottom.png b/mods/technic_plus_beta/technic/textures/technic_hv_electric_furnace_bottom.png new file mode 100644 index 00000000..9de5558a Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_hv_electric_furnace_bottom.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_hv_electric_furnace_front.png b/mods/technic_plus_beta/technic/textures/technic_hv_electric_furnace_front.png new file mode 100644 index 00000000..ef0539e5 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_hv_electric_furnace_front.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_hv_electric_furnace_front_active.png b/mods/technic_plus_beta/technic/textures/technic_hv_electric_furnace_front_active.png new file mode 100644 index 00000000..5449093b Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_hv_electric_furnace_front_active.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_hv_electric_furnace_side.png b/mods/technic_plus_beta/technic/textures/technic_hv_electric_furnace_side.png new file mode 100644 index 00000000..591fcf2e Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_hv_electric_furnace_side.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_hv_electric_furnace_top.png b/mods/technic_plus_beta/technic/textures/technic_hv_electric_furnace_top.png new file mode 100644 index 00000000..87c06ccf Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_hv_electric_furnace_top.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_hv_generator_front.png b/mods/technic_plus_beta/technic/textures/technic_hv_generator_front.png new file mode 100644 index 00000000..4f38ff68 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_hv_generator_front.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_hv_generator_front_active.png b/mods/technic_plus_beta/technic/textures/technic_hv_generator_front_active.png new file mode 100644 index 00000000..9384ca33 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_hv_generator_front_active.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_hv_generator_side.png b/mods/technic_plus_beta/technic/textures/technic_hv_generator_side.png new file mode 100644 index 00000000..dde49a84 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_hv_generator_side.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_hv_generator_top.png b/mods/technic_plus_beta/technic/textures/technic_hv_generator_top.png new file mode 100644 index 00000000..0e32f388 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_hv_generator_top.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_hv_grinder_bottom.png b/mods/technic_plus_beta/technic/textures/technic_hv_grinder_bottom.png new file mode 100644 index 00000000..0830531e Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_hv_grinder_bottom.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_hv_grinder_front.png b/mods/technic_plus_beta/technic/textures/technic_hv_grinder_front.png new file mode 100644 index 00000000..fcb08c85 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_hv_grinder_front.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_hv_grinder_front_active.png b/mods/technic_plus_beta/technic/textures/technic_hv_grinder_front_active.png new file mode 100644 index 00000000..b048fc33 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_hv_grinder_front_active.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_hv_grinder_side.png b/mods/technic_plus_beta/technic/textures/technic_hv_grinder_side.png new file mode 100644 index 00000000..d85cb140 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_hv_grinder_side.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_hv_grinder_top.png b/mods/technic_plus_beta/technic/textures/technic_hv_grinder_top.png new file mode 100644 index 00000000..50a44e47 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_hv_grinder_top.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_hv_nuclear_reactor_core.png b/mods/technic_plus_beta/technic/textures/technic_hv_nuclear_reactor_core.png new file mode 100644 index 00000000..05baf76d Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_hv_nuclear_reactor_core.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_hv_solar_array_bottom.png b/mods/technic_plus_beta/technic/textures/technic_hv_solar_array_bottom.png new file mode 100644 index 00000000..ed4ff1ba Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_hv_solar_array_bottom.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_hv_solar_array_side.png b/mods/technic_plus_beta/technic/textures/technic_hv_solar_array_side.png new file mode 100644 index 00000000..7d3115d1 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_hv_solar_array_side.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_hv_solar_array_top.png b/mods/technic_plus_beta/technic/textures/technic_hv_solar_array_top.png new file mode 100644 index 00000000..58fcd729 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_hv_solar_array_top.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_hv_transformer.png b/mods/technic_plus_beta/technic/textures/technic_hv_transformer.png new file mode 100644 index 00000000..00cc1f75 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_hv_transformer.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_hydro_turbine_side.png b/mods/technic_plus_beta/technic/textures/technic_hydro_turbine_side.png new file mode 100644 index 00000000..13e88a0f Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_hydro_turbine_side.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_hydro_turbine_top.png b/mods/technic_plus_beta/technic/textures/technic_hydro_turbine_top.png new file mode 100644 index 00000000..5ac055aa Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_hydro_turbine_top.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_hydro_turbine_top_active.png b/mods/technic_plus_beta/technic/textures/technic_hydro_turbine_top_active.png new file mode 100644 index 00000000..5c15b104 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_hydro_turbine_top_active.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_injector_bottom.png b/mods/technic_plus_beta/technic/textures/technic_injector_bottom.png new file mode 100644 index 00000000..b5ea7157 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_injector_bottom.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_injector_side.png b/mods/technic_plus_beta/technic/textures/technic_injector_side.png new file mode 100644 index 00000000..0144fe8e Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_injector_side.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_injector_top.png b/mods/technic_plus_beta/technic/textures/technic_injector_top.png new file mode 100644 index 00000000..94c689f1 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_injector_top.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_kalite_dust.png b/mods/technic_plus_beta/technic/textures/technic_kalite_dust.png new file mode 100644 index 00000000..99e9c9cc Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_kalite_dust.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_laser_beam_mk1.png b/mods/technic_plus_beta/technic/textures/technic_laser_beam_mk1.png new file mode 100644 index 00000000..b001faf6 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_laser_beam_mk1.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_laser_beam_mk2.png b/mods/technic_plus_beta/technic/textures/technic_laser_beam_mk2.png new file mode 100644 index 00000000..1276b6e8 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_laser_beam_mk2.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_laser_beam_mk3.png b/mods/technic_plus_beta/technic/textures/technic_laser_beam_mk3.png new file mode 100644 index 00000000..0340dc51 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_laser_beam_mk3.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lava_can.png b/mods/technic_plus_beta/technic/textures/technic_lava_can.png new file mode 100644 index 00000000..f7e46e85 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lava_can.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lead_dust.png b/mods/technic_plus_beta/technic/textures/technic_lead_dust.png new file mode 100644 index 00000000..dc299189 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lead_dust.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_light.png b/mods/technic_plus_beta/technic/textures/technic_light.png new file mode 100644 index 00000000..664ad352 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_light.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_alloy_furnace_bottom.png b/mods/technic_plus_beta/technic/textures/technic_lv_alloy_furnace_bottom.png new file mode 100644 index 00000000..b25bcdcf Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_alloy_furnace_bottom.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_alloy_furnace_front.png b/mods/technic_plus_beta/technic/textures/technic_lv_alloy_furnace_front.png new file mode 100644 index 00000000..91497676 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_alloy_furnace_front.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_alloy_furnace_front_active.png b/mods/technic_plus_beta/technic/textures/technic_lv_alloy_furnace_front_active.png new file mode 100644 index 00000000..4ae04859 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_alloy_furnace_front_active.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_alloy_furnace_side.png b/mods/technic_plus_beta/technic/textures/technic_lv_alloy_furnace_side.png new file mode 100644 index 00000000..db9dbbf1 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_alloy_furnace_side.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_alloy_furnace_top.png b/mods/technic_plus_beta/technic/textures/technic_lv_alloy_furnace_top.png new file mode 100644 index 00000000..5553605f Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_alloy_furnace_top.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_battery_box_bottom.png b/mods/technic_plus_beta/technic/textures/technic_lv_battery_box_bottom.png new file mode 100644 index 00000000..2f125d51 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_battery_box_bottom.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_battery_box_side.png b/mods/technic_plus_beta/technic/textures/technic_lv_battery_box_side.png new file mode 100644 index 00000000..5c047e75 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_battery_box_side.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_battery_box_top.png b/mods/technic_plus_beta/technic/textures/technic_lv_battery_box_top.png new file mode 100644 index 00000000..94de9111 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_battery_box_top.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_cable.png b/mods/technic_plus_beta/technic/textures/technic_lv_cable.png new file mode 100644 index 00000000..8effaebc Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_cable.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_cable_wield.png b/mods/technic_plus_beta/technic/textures/technic_lv_cable_wield.png new file mode 100644 index 00000000..3f05e0fe Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_cable_wield.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_compressor_bottom.png b/mods/technic_plus_beta/technic/textures/technic_lv_compressor_bottom.png new file mode 100644 index 00000000..3f0c5da8 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_compressor_bottom.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_compressor_front.png b/mods/technic_plus_beta/technic/textures/technic_lv_compressor_front.png new file mode 100644 index 00000000..4fe9a7a4 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_compressor_front.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_compressor_front_active.png b/mods/technic_plus_beta/technic/textures/technic_lv_compressor_front_active.png new file mode 100644 index 00000000..b66309d4 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_compressor_front_active.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_compressor_side.png b/mods/technic_plus_beta/technic/textures/technic_lv_compressor_side.png new file mode 100644 index 00000000..5f7b8e94 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_compressor_side.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_compressor_top.png b/mods/technic_plus_beta/technic/textures/technic_lv_compressor_top.png new file mode 100644 index 00000000..6f233c11 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_compressor_top.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_digi_cable.png b/mods/technic_plus_beta/technic/textures/technic_lv_digi_cable.png new file mode 100644 index 00000000..3d812e26 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_digi_cable.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_digi_cable_wield.png b/mods/technic_plus_beta/technic/textures/technic_lv_digi_cable_wield.png new file mode 100644 index 00000000..178fc27e Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_digi_cable_wield.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_electric_furnace_bottom.png b/mods/technic_plus_beta/technic/textures/technic_lv_electric_furnace_bottom.png new file mode 100644 index 00000000..dc8f5320 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_electric_furnace_bottom.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_electric_furnace_front.png b/mods/technic_plus_beta/technic/textures/technic_lv_electric_furnace_front.png new file mode 100644 index 00000000..fb60a916 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_electric_furnace_front.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_electric_furnace_front_active.png b/mods/technic_plus_beta/technic/textures/technic_lv_electric_furnace_front_active.png new file mode 100644 index 00000000..fc347a7f Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_electric_furnace_front_active.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_electric_furnace_side.png b/mods/technic_plus_beta/technic/textures/technic_lv_electric_furnace_side.png new file mode 100644 index 00000000..a9af3183 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_electric_furnace_side.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_electric_furnace_top.png b/mods/technic_plus_beta/technic/textures/technic_lv_electric_furnace_top.png new file mode 100644 index 00000000..4ad00d85 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_electric_furnace_top.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_extractor_bottom.png b/mods/technic_plus_beta/technic/textures/technic_lv_extractor_bottom.png new file mode 100644 index 00000000..b25bcdcf Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_extractor_bottom.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_extractor_front.png b/mods/technic_plus_beta/technic/textures/technic_lv_extractor_front.png new file mode 100644 index 00000000..16e658d5 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_extractor_front.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_extractor_front_active.png b/mods/technic_plus_beta/technic/textures/technic_lv_extractor_front_active.png new file mode 100644 index 00000000..3f4cf751 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_extractor_front_active.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_extractor_side.png b/mods/technic_plus_beta/technic/textures/technic_lv_extractor_side.png new file mode 100644 index 00000000..91615b3f Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_extractor_side.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_extractor_top.png b/mods/technic_plus_beta/technic/textures/technic_lv_extractor_top.png new file mode 100644 index 00000000..2b92cf3c Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_extractor_top.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_generator_front.png b/mods/technic_plus_beta/technic/textures/technic_lv_generator_front.png new file mode 100644 index 00000000..c4680816 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_generator_front.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_generator_front_active.png b/mods/technic_plus_beta/technic/textures/technic_lv_generator_front_active.png new file mode 100644 index 00000000..a685f77d Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_generator_front_active.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_generator_side.png b/mods/technic_plus_beta/technic/textures/technic_lv_generator_side.png new file mode 100644 index 00000000..b2bdf633 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_generator_side.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_generator_top.png b/mods/technic_plus_beta/technic/textures/technic_lv_generator_top.png new file mode 100644 index 00000000..f778e295 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_generator_top.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_grinder_bottom.png b/mods/technic_plus_beta/technic/textures/technic_lv_grinder_bottom.png new file mode 100644 index 00000000..b25bcdcf Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_grinder_bottom.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_grinder_front.png b/mods/technic_plus_beta/technic/textures/technic_lv_grinder_front.png new file mode 100644 index 00000000..16e658d5 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_grinder_front.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_grinder_front_active.png b/mods/technic_plus_beta/technic/textures/technic_lv_grinder_front_active.png new file mode 100644 index 00000000..3f4cf751 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_grinder_front_active.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_grinder_side.png b/mods/technic_plus_beta/technic/textures/technic_lv_grinder_side.png new file mode 100644 index 00000000..91615b3f Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_grinder_side.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_grinder_top.png b/mods/technic_plus_beta/technic/textures/technic_lv_grinder_top.png new file mode 100644 index 00000000..2b92cf3c Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_grinder_top.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_lamp_bottom.png b/mods/technic_plus_beta/technic/textures/technic_lv_lamp_bottom.png new file mode 100644 index 00000000..7abc2444 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_lamp_bottom.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_lamp_side.png b/mods/technic_plus_beta/technic/textures/technic_lv_lamp_side.png new file mode 100644 index 00000000..ce12c184 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_lamp_side.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_lamp_top.png b/mods/technic_plus_beta/technic/textures/technic_lv_lamp_top.png new file mode 100644 index 00000000..5f35986f Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_lamp_top.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_led.png b/mods/technic_plus_beta/technic/textures/technic_lv_led.png new file mode 100644 index 00000000..7e451aab Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_led.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_led_inv.png b/mods/technic_plus_beta/technic/textures/technic_lv_led_inv.png new file mode 100644 index 00000000..41d9b96a Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_led_inv.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_solar_array_bottom.png b/mods/technic_plus_beta/technic/textures/technic_lv_solar_array_bottom.png new file mode 100644 index 00000000..0d7d8bbe Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_solar_array_bottom.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_solar_array_side.png b/mods/technic_plus_beta/technic/textures/technic_lv_solar_array_side.png new file mode 100644 index 00000000..73b511cd Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_solar_array_side.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_solar_array_top.png b/mods/technic_plus_beta/technic/textures/technic_lv_solar_array_top.png new file mode 100644 index 00000000..bb1e1074 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_solar_array_top.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_lv_transformer.png b/mods/technic_plus_beta/technic/textures/technic_lv_transformer.png new file mode 100644 index 00000000..40c8ffa0 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_lv_transformer.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_machine_bottom.png b/mods/technic_plus_beta/technic/textures/technic_machine_bottom.png new file mode 100644 index 00000000..b25bcdcf Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_machine_bottom.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_machine_casing.png b/mods/technic_plus_beta/technic/textures/technic_machine_casing.png new file mode 100644 index 00000000..464f6f35 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_machine_casing.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mining_drill.png b/mods/technic_plus_beta/technic/textures/technic_mining_drill.png new file mode 100644 index 00000000..134ebf35 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mining_drill.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mining_drill_mk2.png b/mods/technic_plus_beta/technic/textures/technic_mining_drill_mk2.png new file mode 100644 index 00000000..c1bf4f0d Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mining_drill_mk2.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mining_drill_mk3.png b/mods/technic_plus_beta/technic/textures/technic_mining_drill_mk3.png new file mode 100644 index 00000000..91e7f118 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mining_drill_mk3.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mining_laser_mk1.png b/mods/technic_plus_beta/technic/textures/technic_mining_laser_mk1.png new file mode 100644 index 00000000..0e6e5cfb Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mining_laser_mk1.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mining_laser_mk2.png b/mods/technic_plus_beta/technic/textures/technic_mining_laser_mk2.png new file mode 100644 index 00000000..47808c0c Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mining_laser_mk2.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mining_laser_mk3.png b/mods/technic_plus_beta/technic/textures/technic_mining_laser_mk3.png new file mode 100644 index 00000000..c6aacda0 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mining_laser_mk3.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mithril_dust.png b/mods/technic_plus_beta/technic/textures/technic_mithril_dust.png new file mode 100644 index 00000000..aea3e286 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mithril_dust.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mixed_metal_ingot.png b/mods/technic_plus_beta/technic/textures/technic_mixed_metal_ingot.png new file mode 100644 index 00000000..9973bf43 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mixed_metal_ingot.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_multimeter.png b/mods/technic_plus_beta/technic/textures/technic_multimeter.png new file mode 100644 index 00000000..2b8011a0 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_multimeter.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_multimeter_bg.png b/mods/technic_plus_beta/technic/textures/technic_multimeter_bg.png new file mode 100644 index 00000000..e023e5ec Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_multimeter_bg.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_multimeter_button.png b/mods/technic_plus_beta/technic/textures/technic_multimeter_button.png new file mode 100644 index 00000000..da0b9a98 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_multimeter_button.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_multimeter_button_pressed.png b/mods/technic_plus_beta/technic/textures/technic_multimeter_button_pressed.png new file mode 100644 index 00000000..4848eca2 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_multimeter_button_pressed.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_multimeter_logo.png b/mods/technic_plus_beta/technic/textures/technic_multimeter_logo.png new file mode 100644 index 00000000..4dd19802 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_multimeter_logo.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_music_player_bottom.png b/mods/technic_plus_beta/technic/textures/technic_music_player_bottom.png new file mode 100644 index 00000000..b738f1d7 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_music_player_bottom.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_music_player_side.png b/mods/technic_plus_beta/technic/textures/technic_music_player_side.png new file mode 100644 index 00000000..cc39c1c3 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_music_player_side.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_music_player_top.png b/mods/technic_plus_beta/technic/textures/technic_music_player_top.png new file mode 100644 index 00000000..7ea461c6 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_music_player_top.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_alloy_furnace_bottom.png b/mods/technic_plus_beta/technic/textures/technic_mv_alloy_furnace_bottom.png new file mode 100644 index 00000000..b25bcdcf Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_alloy_furnace_bottom.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_alloy_furnace_front.png b/mods/technic_plus_beta/technic/textures/technic_mv_alloy_furnace_front.png new file mode 100644 index 00000000..f515cd35 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_alloy_furnace_front.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_alloy_furnace_front_active.png b/mods/technic_plus_beta/technic/textures/technic_mv_alloy_furnace_front_active.png new file mode 100644 index 00000000..d7d24069 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_alloy_furnace_front_active.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_alloy_furnace_side.png b/mods/technic_plus_beta/technic/textures/technic_mv_alloy_furnace_side.png new file mode 100644 index 00000000..51b35e29 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_alloy_furnace_side.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_alloy_furnace_top.png b/mods/technic_plus_beta/technic/textures/technic_mv_alloy_furnace_top.png new file mode 100644 index 00000000..d33b6658 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_alloy_furnace_top.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_battery_box_bottom.png b/mods/technic_plus_beta/technic/textures/technic_mv_battery_box_bottom.png new file mode 100644 index 00000000..2f125d51 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_battery_box_bottom.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_battery_box_front.png b/mods/technic_plus_beta/technic/textures/technic_mv_battery_box_front.png new file mode 100644 index 00000000..5e031d68 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_battery_box_front.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_battery_box_side.png b/mods/technic_plus_beta/technic/textures/technic_mv_battery_box_side.png new file mode 100644 index 00000000..4af67bd6 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_battery_box_side.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_battery_box_top.png b/mods/technic_plus_beta/technic/textures/technic_mv_battery_box_top.png new file mode 100644 index 00000000..94de9111 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_battery_box_top.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_cable.png b/mods/technic_plus_beta/technic/textures/technic_mv_cable.png new file mode 100644 index 00000000..bf791834 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_cable.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_cable_wield.png b/mods/technic_plus_beta/technic/textures/technic_mv_cable_wield.png new file mode 100644 index 00000000..9f4e6b0f Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_cable_wield.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_centrifuge_bottom.png b/mods/technic_plus_beta/technic/textures/technic_mv_centrifuge_bottom.png new file mode 100644 index 00000000..602973a7 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_centrifuge_bottom.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_centrifuge_front.png b/mods/technic_plus_beta/technic/textures/technic_mv_centrifuge_front.png new file mode 100644 index 00000000..f4a0daea Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_centrifuge_front.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_centrifuge_front_active.png b/mods/technic_plus_beta/technic/textures/technic_mv_centrifuge_front_active.png new file mode 100644 index 00000000..9f1ccf44 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_centrifuge_front_active.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_centrifuge_side.png b/mods/technic_plus_beta/technic/textures/technic_mv_centrifuge_side.png new file mode 100644 index 00000000..c2423c3b Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_centrifuge_side.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_centrifuge_top.png b/mods/technic_plus_beta/technic/textures/technic_mv_centrifuge_top.png new file mode 100644 index 00000000..4afa7a47 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_centrifuge_top.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_compressor_bottom.png b/mods/technic_plus_beta/technic/textures/technic_mv_compressor_bottom.png new file mode 100644 index 00000000..3f0c5da8 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_compressor_bottom.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_compressor_front.png b/mods/technic_plus_beta/technic/textures/technic_mv_compressor_front.png new file mode 100644 index 00000000..4fe9a7a4 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_compressor_front.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_compressor_front_active.png b/mods/technic_plus_beta/technic/textures/technic_mv_compressor_front_active.png new file mode 100644 index 00000000..b66309d4 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_compressor_front_active.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_compressor_side.png b/mods/technic_plus_beta/technic/textures/technic_mv_compressor_side.png new file mode 100644 index 00000000..5f7b8e94 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_compressor_side.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_compressor_top.png b/mods/technic_plus_beta/technic/textures/technic_mv_compressor_top.png new file mode 100644 index 00000000..6f233c11 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_compressor_top.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_digi_cable.png b/mods/technic_plus_beta/technic/textures/technic_mv_digi_cable.png new file mode 100644 index 00000000..149ed503 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_digi_cable.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_digi_cable_wield.png b/mods/technic_plus_beta/technic/textures/technic_mv_digi_cable_wield.png new file mode 100644 index 00000000..387b2fdf Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_digi_cable_wield.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_electric_furnace_bottom.png b/mods/technic_plus_beta/technic/textures/technic_mv_electric_furnace_bottom.png new file mode 100644 index 00000000..dc8f5320 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_electric_furnace_bottom.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_electric_furnace_front.png b/mods/technic_plus_beta/technic/textures/technic_mv_electric_furnace_front.png new file mode 100644 index 00000000..fb60a916 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_electric_furnace_front.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_electric_furnace_front_active.png b/mods/technic_plus_beta/technic/textures/technic_mv_electric_furnace_front_active.png new file mode 100644 index 00000000..79e4bdf1 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_electric_furnace_front_active.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_electric_furnace_side.png b/mods/technic_plus_beta/technic/textures/technic_mv_electric_furnace_side.png new file mode 100644 index 00000000..034ad984 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_electric_furnace_side.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_electric_furnace_top.png b/mods/technic_plus_beta/technic/textures/technic_mv_electric_furnace_top.png new file mode 100644 index 00000000..4d081754 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_electric_furnace_top.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_extractor_bottom.png b/mods/technic_plus_beta/technic/textures/technic_mv_extractor_bottom.png new file mode 100644 index 00000000..b25bcdcf Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_extractor_bottom.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_extractor_front.png b/mods/technic_plus_beta/technic/textures/technic_mv_extractor_front.png new file mode 100644 index 00000000..4ad92502 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_extractor_front.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_extractor_front_active.png b/mods/technic_plus_beta/technic/textures/technic_mv_extractor_front_active.png new file mode 100644 index 00000000..5354a316 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_extractor_front_active.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_extractor_side.png b/mods/technic_plus_beta/technic/textures/technic_mv_extractor_side.png new file mode 100644 index 00000000..af1588c9 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_extractor_side.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_extractor_top.png b/mods/technic_plus_beta/technic/textures/technic_mv_extractor_top.png new file mode 100644 index 00000000..876b2882 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_extractor_top.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_freezer_bottom.png b/mods/technic_plus_beta/technic/textures/technic_mv_freezer_bottom.png new file mode 100644 index 00000000..6000cb9d Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_freezer_bottom.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_freezer_front.png b/mods/technic_plus_beta/technic/textures/technic_mv_freezer_front.png new file mode 100644 index 00000000..4694f306 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_freezer_front.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_freezer_front_active.png b/mods/technic_plus_beta/technic/textures/technic_mv_freezer_front_active.png new file mode 100644 index 00000000..353a1f2e Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_freezer_front_active.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_freezer_side.png b/mods/technic_plus_beta/technic/textures/technic_mv_freezer_side.png new file mode 100644 index 00000000..570147a7 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_freezer_side.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_freezer_top.png b/mods/technic_plus_beta/technic/textures/technic_mv_freezer_top.png new file mode 100644 index 00000000..26c49f65 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_freezer_top.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_generator_front.png b/mods/technic_plus_beta/technic/textures/technic_mv_generator_front.png new file mode 100644 index 00000000..a94a2b9b Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_generator_front.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_generator_front_active.png b/mods/technic_plus_beta/technic/textures/technic_mv_generator_front_active.png new file mode 100644 index 00000000..b491a277 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_generator_front_active.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_generator_side.png b/mods/technic_plus_beta/technic/textures/technic_mv_generator_side.png new file mode 100644 index 00000000..d09b09cf Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_generator_side.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_generator_top.png b/mods/technic_plus_beta/technic/textures/technic_mv_generator_top.png new file mode 100644 index 00000000..b703b379 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_generator_top.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_grinder_bottom.png b/mods/technic_plus_beta/technic/textures/technic_mv_grinder_bottom.png new file mode 100644 index 00000000..b25bcdcf Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_grinder_bottom.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_grinder_front.png b/mods/technic_plus_beta/technic/textures/technic_mv_grinder_front.png new file mode 100644 index 00000000..4ad92502 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_grinder_front.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_grinder_front_active.png b/mods/technic_plus_beta/technic/textures/technic_mv_grinder_front_active.png new file mode 100644 index 00000000..5354a316 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_grinder_front_active.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_grinder_side.png b/mods/technic_plus_beta/technic/textures/technic_mv_grinder_side.png new file mode 100644 index 00000000..af1588c9 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_grinder_side.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_grinder_top.png b/mods/technic_plus_beta/technic/textures/technic_mv_grinder_top.png new file mode 100644 index 00000000..876b2882 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_grinder_top.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_solar_array_bottom.png b/mods/technic_plus_beta/technic/textures/technic_mv_solar_array_bottom.png new file mode 100644 index 00000000..ed4ff1ba Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_solar_array_bottom.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_solar_array_side.png b/mods/technic_plus_beta/technic/textures/technic_mv_solar_array_side.png new file mode 100644 index 00000000..25a46314 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_solar_array_side.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_solar_array_top.png b/mods/technic_plus_beta/technic/textures/technic_mv_solar_array_top.png new file mode 100644 index 00000000..186e82b7 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_solar_array_top.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_mv_transformer.png b/mods/technic_plus_beta/technic/textures/technic_mv_transformer.png new file mode 100644 index 00000000..2ef7259b Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_mv_transformer.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_power_meter0.png b/mods/technic_plus_beta/technic/textures/technic_power_meter0.png new file mode 100644 index 00000000..ced15068 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_power_meter0.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_power_meter1.png b/mods/technic_plus_beta/technic/textures/technic_power_meter1.png new file mode 100644 index 00000000..ad19fd37 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_power_meter1.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_power_meter2.png b/mods/technic_plus_beta/technic/textures/technic_power_meter2.png new file mode 100644 index 00000000..6ff2c0e4 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_power_meter2.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_power_meter3.png b/mods/technic_plus_beta/technic/textures/technic_power_meter3.png new file mode 100644 index 00000000..67d44d41 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_power_meter3.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_power_meter4.png b/mods/technic_plus_beta/technic/textures/technic_power_meter4.png new file mode 100644 index 00000000..93c9de09 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_power_meter4.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_power_meter5.png b/mods/technic_plus_beta/technic/textures/technic_power_meter5.png new file mode 100644 index 00000000..6188a45d Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_power_meter5.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_power_meter6.png b/mods/technic_plus_beta/technic/textures/technic_power_meter6.png new file mode 100644 index 00000000..5c82eee9 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_power_meter6.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_power_meter7.png b/mods/technic_plus_beta/technic/textures/technic_power_meter7.png new file mode 100644 index 00000000..ad010c8a Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_power_meter7.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_power_meter8.png b/mods/technic_plus_beta/technic/textures/technic_power_meter8.png new file mode 100644 index 00000000..5aa52b8a Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_power_meter8.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_power_meter_bg.png b/mods/technic_plus_beta/technic/textures/technic_power_meter_bg.png new file mode 100644 index 00000000..bd95e9b1 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_power_meter_bg.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_power_meter_fg.png b/mods/technic_plus_beta/technic/textures/technic_power_meter_fg.png new file mode 100644 index 00000000..1c84c03b Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_power_meter_fg.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_power_monitor_front.png b/mods/technic_plus_beta/technic/textures/technic_power_monitor_front.png new file mode 100644 index 00000000..dd0321d4 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_power_monitor_front.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_power_monitor_sides.png b/mods/technic_plus_beta/technic/textures/technic_power_monitor_sides.png new file mode 100644 index 00000000..77dd9338 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_power_monitor_sides.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_prospector.png b/mods/technic_plus_beta/technic/textures/technic_prospector.png new file mode 100644 index 00000000..6ec0f342 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_prospector.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_quarry_bottom.png b/mods/technic_plus_beta/technic/textures/technic_quarry_bottom.png new file mode 100644 index 00000000..67f7f5f4 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_quarry_bottom.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_raw_latex.png b/mods/technic_plus_beta/technic/textures/technic_raw_latex.png new file mode 100644 index 00000000..9c85564b Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_raw_latex.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_river_water_can.png b/mods/technic_plus_beta/technic/textures/technic_river_water_can.png new file mode 100644 index 00000000..7814388e Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_river_water_can.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_rubber.png b/mods/technic_plus_beta/technic/textures/technic_rubber.png new file mode 100644 index 00000000..eb78e9fc Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_rubber.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_rubber_tree_grindings.png b/mods/technic_plus_beta/technic/textures/technic_rubber_tree_grindings.png new file mode 100644 index 00000000..500e4640 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_rubber_tree_grindings.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_sawdust.png b/mods/technic_plus_beta/technic/textures/technic_sawdust.png new file mode 100644 index 00000000..0e37555b Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_sawdust.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_silicon_wafer.png b/mods/technic_plus_beta/technic/textures/technic_silicon_wafer.png new file mode 100644 index 00000000..b236e3c1 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_silicon_wafer.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_silver_dust.png b/mods/technic_plus_beta/technic/textures/technic_silver_dust.png new file mode 100644 index 00000000..045c7a37 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_silver_dust.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_solar_panel_bottom.png b/mods/technic_plus_beta/technic/textures/technic_solar_panel_bottom.png new file mode 100644 index 00000000..0d7d8bbe Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_solar_panel_bottom.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_solar_panel_side.png b/mods/technic_plus_beta/technic/textures/technic_solar_panel_side.png new file mode 100644 index 00000000..73b511cd Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_solar_panel_side.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_solar_panel_top.png b/mods/technic_plus_beta/technic/textures/technic_solar_panel_top.png new file mode 100644 index 00000000..385c0c6f Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_solar_panel_top.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_sonic_screwdriver.png b/mods/technic_plus_beta/technic/textures/technic_sonic_screwdriver.png new file mode 100644 index 00000000..0b02a500 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_sonic_screwdriver.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_stainless_steel_dust.png b/mods/technic_plus_beta/technic/textures/technic_stainless_steel_dust.png new file mode 100644 index 00000000..6e5ce22a Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_stainless_steel_dust.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_stone_dust.png b/mods/technic_plus_beta/technic/textures/technic_stone_dust.png new file mode 100644 index 00000000..c0a7cc2d Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_stone_dust.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_sulfur_dust.png b/mods/technic_plus_beta/technic/textures/technic_sulfur_dust.png new file mode 100644 index 00000000..4222c3b2 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_sulfur_dust.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_supply_converter_side.png b/mods/technic_plus_beta/technic/textures/technic_supply_converter_side.png new file mode 100644 index 00000000..099c1495 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_supply_converter_side.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_supply_converter_tb.png b/mods/technic_plus_beta/technic/textures/technic_supply_converter_tb.png new file mode 100644 index 00000000..26c4efc7 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_supply_converter_tb.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_talinite_dust.png b/mods/technic_plus_beta/technic/textures/technic_talinite_dust.png new file mode 100644 index 00000000..bd42e6e8 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_talinite_dust.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_tin_dust.png b/mods/technic_plus_beta/technic/textures/technic_tin_dust.png new file mode 100644 index 00000000..2f295eb7 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_tin_dust.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_tool_mode1.png b/mods/technic_plus_beta/technic/textures/technic_tool_mode1.png new file mode 100644 index 00000000..e783af46 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_tool_mode1.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_tool_mode2.png b/mods/technic_plus_beta/technic/textures/technic_tool_mode2.png new file mode 100644 index 00000000..4f475e84 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_tool_mode2.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_tool_mode3.png b/mods/technic_plus_beta/technic/textures/technic_tool_mode3.png new file mode 100644 index 00000000..68335693 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_tool_mode3.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_tool_mode4.png b/mods/technic_plus_beta/technic/textures/technic_tool_mode4.png new file mode 100644 index 00000000..2a008cfd Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_tool_mode4.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_tool_mode5.png b/mods/technic_plus_beta/technic/textures/technic_tool_mode5.png new file mode 100644 index 00000000..0a18bb2d Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_tool_mode5.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_tree_tap.png b/mods/technic_plus_beta/technic/textures/technic_tree_tap.png new file mode 100644 index 00000000..4e329c6c Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_tree_tap.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_uranium_dust.png b/mods/technic_plus_beta/technic/textures/technic_uranium_dust.png new file mode 100644 index 00000000..07d5d1c9 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_uranium_dust.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_uranium_fuel.png b/mods/technic_plus_beta/technic/textures/technic_uranium_fuel.png new file mode 100644 index 00000000..7a830450 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_uranium_fuel.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_vacuum.png b/mods/technic_plus_beta/technic/textures/technic_vacuum.png new file mode 100644 index 00000000..859eaf85 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_vacuum.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_water_can.png b/mods/technic_plus_beta/technic/textures/technic_water_can.png new file mode 100644 index 00000000..25c48bd3 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_water_can.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_water_mill_side.png b/mods/technic_plus_beta/technic/textures/technic_water_mill_side.png new file mode 100644 index 00000000..270c9d86 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_water_mill_side.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_water_mill_top.png b/mods/technic_plus_beta/technic/textures/technic_water_mill_top.png new file mode 100644 index 00000000..66300a34 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_water_mill_top.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_water_mill_top_active.png b/mods/technic_plus_beta/technic/textures/technic_water_mill_top_active.png new file mode 100644 index 00000000..cc62e9f5 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_water_mill_top_active.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_workshop_side.png b/mods/technic_plus_beta/technic/textures/technic_workshop_side.png new file mode 100644 index 00000000..3f9fd6c2 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_workshop_side.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_workshop_top.png b/mods/technic_plus_beta/technic/textures/technic_workshop_top.png new file mode 100644 index 00000000..156c2d81 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_workshop_top.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_wrought_iron_dust.png b/mods/technic_plus_beta/technic/textures/technic_wrought_iron_dust.png new file mode 100644 index 00000000..4e69bbf8 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_wrought_iron_dust.png differ diff --git a/mods/technic_plus_beta/technic/textures/technic_zinc_dust.png b/mods/technic_plus_beta/technic/textures/technic_zinc_dust.png new file mode 100644 index 00000000..38599d64 Binary files /dev/null and b/mods/technic_plus_beta/technic/textures/technic_zinc_dust.png differ diff --git a/mods/technic_plus_beta/technic/tools/cans.lua b/mods/technic_plus_beta/technic/tools/cans.lua new file mode 100644 index 00000000..1bde1b03 --- /dev/null +++ b/mods/technic_plus_beta/technic/tools/cans.lua @@ -0,0 +1,138 @@ +local S = technic.getter +local mat = technic.materials + +local function set_can_wear(itemstack, level, max_level) + local temp + if level == 0 then + temp = 0 + else + temp = 65536 - math.floor(level / max_level * 65535) + if temp > 65535 then temp = 65535 end + if temp < 1 then temp = 1 end + end + itemstack:set_wear(temp) +end + +local function get_can_level(itemstack) + if itemstack:get_meta():get_string("") == "" then + return 0 + else + return tonumber(itemstack:get_meta():get_string("")) + end +end + +function technic.register_can(d) + local data = {} + for k, v in pairs(d) do data[k] = v end + minetest.register_tool(data.can_name, { + description = data.can_description, + inventory_image = data.can_inventory_image, + stack_max = 1, + wear_represents = "content_level", + liquids_pointable = true, + on_use = function(itemstack, user, pointed_thing) + if pointed_thing.type ~= "node" then return end + local node = minetest.get_node(pointed_thing.under) + if node.name ~= data.liquid_source_name then return end + local charge = get_can_level(itemstack) + if charge == data.can_capacity then return end + if minetest.is_protected(pointed_thing.under, user:get_player_name()) then + minetest.log("action", user:get_player_name().." tried to take "..node.name.. + " at protected position "..minetest.pos_to_string(pointed_thing.under).." with a "..data.can_name) + return + end + minetest.remove_node(pointed_thing.under) + charge = charge + 1 + itemstack:set_metadata(tostring(charge)) + set_can_wear(itemstack, charge, data.can_capacity) + return itemstack + end, + on_place = function(itemstack, user, pointed_thing) + if pointed_thing.type ~= "node" then return end + local pos = pointed_thing.under + local node_name = minetest.get_node(pos).name + local def = minetest.registered_nodes[node_name] or {} + if def.on_rightclick and user and not user:get_player_control().sneak then + return def.on_rightclick(pos, minetest.get_node(pos), user, itemstack, pointed_thing) + end + if not def.buildable_to or node_name == data.liquid_source_name then + pos = pointed_thing.above + node_name = minetest.get_node(pos).name + def = minetest.registered_nodes[node_name] or {} + -- Try to place node above the pointed source, or abort. + if not def.buildable_to or node_name == data.liquid_source_name then return end + end + local charge = get_can_level(itemstack) + if charge == 0 then return end + if minetest.is_protected(pos, user:get_player_name()) then + minetest.log("action", user:get_player_name().." tried to place "..data.liquid_source_name.. + " at protected position "..minetest.pos_to_string(pos).." with a "..data.can_name) + return + end + minetest.set_node(pos, {name=data.liquid_source_name}) + charge = charge - 1 + itemstack:set_metadata(tostring(charge)) + set_can_wear(itemstack, charge, data.can_capacity) + return itemstack + end, + on_refill = function(stack) + stack:set_metadata(tostring(data.can_capacity)) + set_can_wear(stack, data.can_capacity, data.can_capacity) + return stack + end, + }) +end + +technic.register_can({ + can_name = "technic:water_can", + can_description = S("Water Can"), + can_inventory_image = "technic_water_can.png", + can_capacity = 16, + liquid_source_name = mat.water_source, + liquid_flowing_name = mat.water_flowing, +}) + +minetest.register_craft({ + output = 'technic:water_can 1', + recipe = { + {'technic:zinc_ingot', 'technic:rubber','technic:zinc_ingot'}, + {'technic:carbon_steel_ingot', '', 'technic:carbon_steel_ingot'}, + {'technic:zinc_ingot', 'technic:carbon_steel_ingot', 'technic:zinc_ingot'}, + } +}) + +technic.register_can({ + can_name = "technic:lava_can", + can_description = S("Lava Can"), + can_inventory_image = "technic_lava_can.png", + can_capacity = 8, + liquid_source_name = mat.lava_source, + liquid_flowing_name = mat.lava_flowing, +}) + +minetest.register_craft({ + output = 'technic:lava_can 1', + recipe = { + {'technic:zinc_ingot', 'technic:stainless_steel_ingot','technic:zinc_ingot'}, + {'technic:stainless_steel_ingot', '', 'technic:stainless_steel_ingot'}, + {'technic:zinc_ingot', 'technic:stainless_steel_ingot', 'technic:zinc_ingot'}, + } +}) + +technic.register_can({ + can_name = 'technic:river_water_can', + can_description = S("River Water Can"), + can_inventory_image = "technic_river_water_can.png", + can_capacity = 16, + liquid_source_name = mat.river_water_source, + liquid_flowing_name = mat.river_water_flowing, +}) + +minetest.register_craft({ + output = 'technic:river_water_can 1', + recipe = { + {'technic:zinc_ingot', 'technic:rubber', 'technic:zinc_ingot'}, + {mat.steel_ingot, '', mat.steel_ingot}, + {'technic:zinc_ingot', mat.steel_ingot, 'technic:zinc_ingot'}, + } +}) diff --git a/mods/technic_plus_beta/technic/tools/chainsaw.lua b/mods/technic_plus_beta/technic/tools/chainsaw.lua new file mode 100644 index 00000000..6c5e925d --- /dev/null +++ b/mods/technic_plus_beta/technic/tools/chainsaw.lua @@ -0,0 +1,228 @@ +-- Configuration + +local chainsaw_max_charge = 30000 -- Maximum charge of the saw +local chainsaw_charge_per_node = 12 -- Gives 2500 nodes on a single charge (about 50 complete normal trees) + +local chainsaw_leaves = true -- Cut down tree leaves. +-- Leaf decay may cause slowness on large trees if this is disabled. + +local chainsaw_vines = true -- Cut down vines + +local timber_nodenames = {} -- Cuttable nodes + +local max_saw_radius = 12 -- max x/z distance away from starting position to allow cutting +-- Prevents forest destruction, increase for extra wide trees + +-- Support for nodes not in any supported node groups (tree, leaves, leafdecay, leafdecay_drop) +timber_nodenames["default:papyrus"] = true +timber_nodenames["default:cactus"] = true +timber_nodenames["default:bush_stem"] = true +timber_nodenames["default:acacia_bush_stem"] = true +timber_nodenames["default:pine_bush_stem"] = true + +if minetest.get_modpath("growing_trees") then + timber_nodenames["growing_trees:branch_sprout"] = true + if chainsaw_leaves then + timber_nodenames["growing_trees:leaves"] = true + end +end + +if minetest.get_modpath("snow") then + if chainsaw_leaves then + timber_nodenames["snow:needles"] = true + timber_nodenames["snow:needles_decorated"] = true + timber_nodenames["snow:star"] = true + end +end + +if minetest.get_modpath("trunks") then + if chainsaw_leaves then + timber_nodenames["trunks:moss"] = true + timber_nodenames["trunks:moss_fungus"] = true + timber_nodenames["trunks:treeroot"] = true + end +end + +if minetest.get_modpath("ethereal") then + timber_nodenames["ethereal:bamboo"] = true +end + +local S = technic.getter + +-- Table for saving what was sawed down +local produced = {} + +-- Save the items sawed down so that we can drop them in a nice single stack +local function handle_drops(drops) + for _, item in ipairs(drops) do + local stack = ItemStack(item) + local name = stack:get_name() + local p = produced[name] + if not p then + produced[name] = stack + else + p:set_count(p:get_count() + stack:get_count()) + end + end +end + +-- This function does all the hard work. Recursively we dig the node at hand +-- if it is in the table and then search the surroundings for more stuff to dig. +local function recursive_dig(pos, origin, remaining_charge) + if remaining_charge < chainsaw_charge_per_node then + return remaining_charge + end + local node = minetest.get_node(pos) + + if not timber_nodenames[node.name] then + return remaining_charge + end + + -- Wood found - cut it + handle_drops(minetest.get_node_drops(node.name, "")) + minetest.remove_node(pos) + remaining_charge = remaining_charge - chainsaw_charge_per_node + + -- Check for snow on pine trees, sand/gravel on leaves, etc + minetest.check_for_falling(pos) + + -- Check surroundings and run recursively if any charge left + for y=-1, 1 do + if (pos.y + y) >= origin.y then + for x=-1, 1 do + if (pos.x + x) <= (origin.x + max_saw_radius) and (pos.x + x) >= (origin.x - max_saw_radius) then + for z=-1, 1 do + if (pos.z + z) <= (origin.z + max_saw_radius) and (pos.z + z) >= (origin.z - max_saw_radius) then + local npos = {x=pos.x+x, y=pos.y+y, z=pos.z+z} + if remaining_charge < chainsaw_charge_per_node then + return remaining_charge + end + if timber_nodenames[minetest.get_node(npos).name] then + remaining_charge = recursive_dig(npos, origin, remaining_charge) + end + end + end + end + end + end + end + return remaining_charge +end + +-- Function to randomize positions for new node drops +local function get_drop_pos(pos) + local drop_pos = {} + + for i = 0, 8 do + -- Randomize position for a new drop + drop_pos.x = pos.x + math.random(-3, 3) + drop_pos.y = pos.y - 1 + drop_pos.z = pos.z + math.random(-3, 3) + + -- Move the randomized position upwards until + -- the node is air or unloaded. + for y = drop_pos.y, drop_pos.y + 5 do + drop_pos.y = y + local node = minetest.get_node_or_nil(drop_pos) + + if not node then + -- If the node is not loaded yet simply drop + -- the item at the original digging position. + return pos + elseif node.name == "air" then + -- Add variation to the entity drop position, + -- but don't let drops get too close to the edge + drop_pos.x = drop_pos.x + (math.random() * 0.8) - 0.5 + drop_pos.z = drop_pos.z + (math.random() * 0.8) - 0.5 + return drop_pos + end + end + end + + -- Return the original position if this takes too long + return pos +end + +-- Chainsaw entry point +local function chainsaw_dig(pos, current_charge) + -- Start sawing things down + local remaining_charge = recursive_dig(pos, pos, current_charge) + minetest.sound_play("chainsaw", {pos = pos, gain = 1.0, max_hear_distance = 10}, true) + + -- Now drop items for the player + for name, stack in pairs(produced) do + -- Drop stacks of stack max or less + local count, max = stack:get_count(), stack:get_stack_max() + stack:set_count(max) + while count > max do + minetest.add_item(get_drop_pos(pos), stack) + count = count - max + end + stack:set_count(count) + minetest.add_item(get_drop_pos(pos), stack) + end + + -- Clean up + produced = {} + + return remaining_charge +end + +technic.register_power_tool("technic:chainsaw", { + description = S("Chainsaw"), + inventory_image = "technic_chainsaw.png", + max_charge = chainsaw_max_charge, + on_use = function(itemstack, user, pointed_thing) + if pointed_thing.type ~= "node" then + return + end + + local charge = technic.get_charge(itemstack) + if charge < chainsaw_charge_per_node then + return + end + + local name = user:get_player_name() + if minetest.is_protected(pointed_thing.under, name) then + minetest.record_protection_violation(pointed_thing.under, name) + return + end + + -- Send current charge to digging function so that the + -- chainsaw will stop after digging a number of nodes + charge = chainsaw_dig(pointed_thing.under, charge) + if not technic.creative_mode then + technic.set_charge(itemstack, charge) + end + return itemstack + end, +}) + +local mesecons_button = minetest.get_modpath("mesecons_button") +local has_mcl = minetest.get_modpath("mcl_core") +local trigger = has_mcl and mesecons_button and "mesecons_button:button_wood_off" + or mesecons_button and "mesecons_button:button_off" or "default:mese_crystal_fragment" + +minetest.register_craft({ + output = "technic:chainsaw", + recipe = { + {"technic:stainless_steel_ingot", trigger, "technic:battery"}, + {"basic_materials:copper_wire", "basic_materials:motor", "technic:battery"}, + {"", "", "technic:stainless_steel_ingot"}, + }, + replacements = { {"basic_materials:copper_wire", "basic_materials:empty_spool"}, }, + +}) + +-- Add cuttable nodes after all mods loaded +minetest.after(0, function () + for k, v in pairs(minetest.registered_nodes) do + if v.groups.tree then + timber_nodenames[k] = true + elseif chainsaw_leaves and (v.groups.leaves or v.groups.leafdecay or v.groups.leafdecay_drop) then + timber_nodenames[k] = true + elseif chainsaw_vines and v.groups.vines then + timber_nodenames[k] = true + end + end +end) diff --git a/mods/technic_plus_beta/technic/tools/flashlight.lua b/mods/technic_plus_beta/technic/tools/flashlight.lua new file mode 100644 index 00000000..23aa2e4b --- /dev/null +++ b/mods/technic_plus_beta/technic/tools/flashlight.lua @@ -0,0 +1,115 @@ +-- Original code comes from walkin_light mod by Echo +-- http://minetest.net/forum/viewtopic.php?id=2621 + +local flashlight_max_charge = 30000 + +local S = technic.getter +local mat = technic.materials + +minetest.register_alias("technic:light_off", "air") + +technic.register_power_tool("technic:flashlight", { + description = S("Flashlight"), + inventory_image = "technic_flashlight.png", + max_charge = flashlight_max_charge, +}) + +minetest.register_craft({ + output = "technic:flashlight", + recipe = { + {"technic:rubber", mat.glass, "technic:rubber"}, + {"technic:stainless_steel_ingot", "technic:battery", "technic:stainless_steel_ingot"}, + {"", "technic:battery", ""} + } +}) + +local player_positions = {} +local was_wielding = {} + +local function check_for_flashlight(player) + if player == nil then + return false + end + local inv = player:get_inventory() + local hotbar = inv:get_list("main") + for i = 1, 8 do + if hotbar[i]:get_name() == "technic:flashlight" and technic.use_charge(hotbar[i], 2) then + -- See https://github.com/minetest/minetest/issues/9377 for wield item animation + inv:set_stack("main", i, hotbar[i]) + return true + end + end + return false +end + +minetest.register_on_joinplayer(function(player) + local player_name = player:get_player_name() + local pos = player:get_pos() + local rounded_pos = vector.round(pos) + rounded_pos.y = rounded_pos.y + 1 + player_positions[player_name] = rounded_pos + was_wielding[player_name] = true +end) + +minetest.register_on_leaveplayer(function(player) + local player_name = player:get_player_name() + local pos = player_positions[player_name] + local nodename = minetest.get_node(pos).name + if nodename == "technic:light" then + minetest.remove_node(pos) + end + player_positions[player_name] = nil +end) + +minetest.register_globalstep(function(dtime) + for i, player in pairs(minetest.get_connected_players()) do + local player_name = player:get_player_name() + local flashlight_weared = check_for_flashlight(player) + local pos = player:get_pos() + local rounded_pos = vector.round(pos) + rounded_pos.y = rounded_pos.y + 1 + local old_pos = player_positions[player_name] + local player_moved = old_pos and not vector.equals(old_pos, rounded_pos) + if not old_pos then + old_pos = rounded_pos + player_moved = true + end + + -- Remove light, flashlight weared out or was removed from hotbar + if was_wielding[player_name] and not flashlight_weared then + was_wielding[player_name] = false + local node = minetest.get_node_or_nil(old_pos) + if node and node.name == "technic:light" then + minetest.remove_node(old_pos) + end + elseif (player_moved or not was_wielding[player_name]) and flashlight_weared then + local node = minetest.get_node_or_nil(rounded_pos) + if node and node.name == "air" then + minetest.set_node(rounded_pos, {name="technic:light"}) + end + node = minetest.get_node_or_nil(old_pos) + if node and node.name == "technic:light" then + minetest.remove_node(old_pos) + end + player_positions[player_name] = rounded_pos + was_wielding[player_name] = true + end + end +end) + +if minetest.get_modpath("mcl_core") then + minetest.register_alias("technic:light", "mcl_core:light_14") +else + minetest.register_node("technic:light", { + drawtype = "glasslike", + tiles = {"technic_light.png"}, + paramtype = "light", + groups = {not_in_creative_inventory = 1}, + drop = "", + walkable = false, + buildable_to = true, + sunlight_propagates = true, + light_source = minetest.LIGHT_MAX, + pointable = false, + }) +end diff --git a/mods/technic_plus_beta/technic/tools/init.lua b/mods/technic_plus_beta/technic/tools/init.lua new file mode 100644 index 00000000..25d5e98b --- /dev/null +++ b/mods/technic_plus_beta/technic/tools/init.lua @@ -0,0 +1,21 @@ +local path = technic.modpath.."/tools" + +local function enabled(name) + return technic.config:get_bool("enable_" .. name) +end + +if enabled("mining_drill") then dofile(path.."/mining_drill.lua") end +if enabled("mining_laser") then dofile(path.."/mining_lasers.lua") end +if enabled("flashlight") then dofile(path.."/flashlight.lua") end +if enabled("cans") then dofile(path.."/cans.lua") end +if enabled("chainsaw") then dofile(path.."/chainsaw.lua") end +if enabled("tree_tap") then dofile(path.."/tree_tap.lua") end +if enabled("sonic_screwdriver") then dofile(path.."/sonic_screwdriver.lua") end +if enabled("prospector") then dofile(path.."/prospector.lua") end +if enabled("vacuum") then dofile(path.."/vacuum.lua") end +if enabled("multimeter") then dofile(path.."/multimeter.lua") end + +if minetest.get_modpath("screwdriver") then + -- compatibility alias + minetest.register_alias("technic:screwdriver", "screwdriver:screwdriver") +end diff --git a/mods/technic_plus_beta/technic/tools/mining_drill.lua b/mods/technic_plus_beta/technic/tools/mining_drill.lua new file mode 100644 index 00000000..a2d8766c --- /dev/null +++ b/mods/technic_plus_beta/technic/tools/mining_drill.lua @@ -0,0 +1,358 @@ +local max_charge = {50000, 200000, 300000} +local power_usage_per_node = {200, 500, 600} + +local S = technic.getter +local mat = technic.materials + +minetest.register_craft({ + output = 'technic:mining_drill', + recipe = { + {mat.tin_ingot, 'technic:diamond_drill_head', mat.tin_ingot}, + {'technic:stainless_steel_ingot', 'basic_materials:motor', 'technic:stainless_steel_ingot'}, + {'', 'technic:red_energy_crystal', mat.copper_ingot}, + } +}) +minetest.register_craft({ + output = 'technic:mining_drill_mk2', + recipe = { + {'technic:diamond_drill_head', 'technic:diamond_drill_head', 'technic:diamond_drill_head'}, + {'technic:stainless_steel_ingot', 'technic:mining_drill', 'technic:stainless_steel_ingot'}, + {'', 'technic:green_energy_crystal', ''}, + } +}) +minetest.register_craft({ + output = 'technic:mining_drill_mk3', + recipe = { + {'technic:diamond_drill_head', 'technic:diamond_drill_head', 'technic:diamond_drill_head'}, + {'technic:stainless_steel_ingot', 'technic:mining_drill_mk2', 'technic:stainless_steel_ingot'}, + {'', 'technic:blue_energy_crystal', ''}, + } +}) +for i = 1, 4 do + minetest.register_craft({ + output = 'technic:mining_drill_mk3', + recipe = { + {'technic:diamond_drill_head', 'technic:diamond_drill_head', 'technic:diamond_drill_head'}, + {'technic:stainless_steel_ingot', 'technic:mining_drill_mk2_'..i, 'technic:stainless_steel_ingot'}, + {'', 'technic:blue_energy_crystal', ''}, + } + }) +end + +local mining_drill_mode_text = { + {S("Single node.")}, + {S("3 nodes deep.")}, + {S("3 nodes wide.")}, + {S("3 nodes tall.")}, + {S("3x3 nodes.")}, +} + +local function get_description(mk, mode) + local description = "Mining Drill Mk@1"..(mode > 0 and " Mode @2" or "") + return mode > 0 and S(description, mk, mode) or S(description, mk) +end + +local function drill_dig_it0 (pos,player) + if minetest.is_protected(pos, player:get_player_name()) then + minetest.record_protection_violation(pos, player:get_player_name()) + return + end + local node = minetest.get_node(pos) + if node.name == "air" or node.name == "ignore" then return end + if node.name == mat.lava_source then return end + if node.name == mat.lava_flowing then return end + if node.name == mat.water_source then minetest.remove_node(pos) return end + if node.name == mat.water_flowing then minetest.remove_node(pos) return end + local def = minetest.registered_nodes[node.name] + if not def then return end + def.on_dig(pos, node, player) +end + +local function drill_dig_it1 (player) + local dir=player:get_look_dir() + if math.abs(dir.x)>math.abs(dir.z) then + if dir.x>0 then return 0 end + return 1 + end + if dir.z>0 then return 2 end + return 3 +end + +local function drill_dig_it2 (pos,player) + pos.y=pos.y+1 + drill_dig_it0 (pos,player) + pos.z=pos.z+1 + drill_dig_it0 (pos,player) + pos.z=pos.z-2 + drill_dig_it0 (pos,player) + pos.z=pos.z+1 + pos.y=pos.y-1 + drill_dig_it0 (pos,player) + pos.z=pos.z+1 + drill_dig_it0 (pos,player) + pos.z=pos.z-2 + drill_dig_it0 (pos,player) + pos.z=pos.z+1 + pos.y=pos.y-1 + drill_dig_it0 (pos,player) + pos.z=pos.z+1 + drill_dig_it0 (pos,player) + pos.z=pos.z-2 + drill_dig_it0 (pos,player) +end + +local function drill_dig_it3 (pos,player) + pos.y=pos.y+1 + drill_dig_it0 (pos,player) + pos.x=pos.x+1 + drill_dig_it0 (pos,player) + pos.x=pos.x-2 + drill_dig_it0 (pos,player) + pos.x=pos.x+1 + pos.y=pos.y-1 + drill_dig_it0 (pos,player) + pos.x=pos.x+1 + drill_dig_it0 (pos,player) + pos.x=pos.x-2 + drill_dig_it0 (pos,player) + pos.x=pos.x+1 + pos.y=pos.y-1 + drill_dig_it0 (pos,player) + pos.x=pos.x+1 + drill_dig_it0 (pos,player) + pos.x=pos.x-2 + drill_dig_it0 (pos,player) +end + +local function drill_dig_it4 (pos,player) + drill_dig_it0 (pos,player) + pos.x=pos.x+1 + drill_dig_it0 (pos,player) + pos.x=pos.x-2 + drill_dig_it0 (pos,player) + pos.x=pos.x+1 + pos.z=pos.z+1 + drill_dig_it0 (pos,player) + pos.x=pos.x+1 + drill_dig_it0 (pos,player) + pos.x=pos.x-2 + drill_dig_it0 (pos,player) + pos.x=pos.x+1 + pos.z=pos.z-2 + drill_dig_it0 (pos,player) + pos.x=pos.x+1 + drill_dig_it0 (pos,player) + pos.x=pos.x-2 + drill_dig_it0 (pos,player) +end + +local function cost_to_use(drill_type, mode) + local mult + if mode == 1 then + mult = 1 + elseif mode <= 4 then + mult = 3 + else + mult = 9 + end + return power_usage_per_node[drill_type] * mult +end + +local function drill_dig_it(pos, player, mode) + if mode == 1 then + drill_dig_it0(pos, player) + end + + if mode == 2 then -- 3 deep + local dir = drill_dig_it1(player) + if dir == 0 then -- x+ + drill_dig_it0(pos, player) + pos.x = pos.x + 1 + drill_dig_it0(pos, player) + pos.x = pos.x + 1 + drill_dig_it0(pos, player) + end + if dir == 1 then -- x- + drill_dig_it0(pos, player) + pos.x=pos.x-1 + drill_dig_it0 (pos,player) + pos.x=pos.x-1 + drill_dig_it0 (pos,player) + end + if dir==2 then -- z+ + drill_dig_it0 (pos,player) + pos.z=pos.z+1 + drill_dig_it0 (pos,player) + pos.z=pos.z+1 + drill_dig_it0 (pos,player) + end + if dir==3 then -- z- + drill_dig_it0 (pos,player) + pos.z=pos.z-1 + drill_dig_it0 (pos,player) + pos.z=pos.z-1 + drill_dig_it0 (pos,player) + end + end + + if mode==3 then -- 3 wide + local dir = drill_dig_it1(player) + if dir==0 or dir==1 then -- x + drill_dig_it0 (pos,player) + pos.z=pos.z+1 + drill_dig_it0 (pos,player) + pos.z=pos.z-2 + drill_dig_it0 (pos,player) + end + if dir==2 or dir==3 then -- z + drill_dig_it0 (pos,player) + pos.x=pos.x+1 + drill_dig_it0 (pos,player) + pos.x=pos.x-2 + drill_dig_it0 (pos,player) + end + end + + if mode==4 then -- 3 tall, selected in the middle + drill_dig_it0 (pos,player) + pos.y=pos.y-1 + drill_dig_it0 (pos,player) + pos.y=pos.y-1 + drill_dig_it0 (pos,player) + end + + if mode==5 then -- 3 x 3 + local dir=player:get_look_dir() + if math.abs(dir.y)<0.5 then + dir=drill_dig_it1(player) + if dir==0 or dir==1 then -- x + drill_dig_it2(pos,player) + end + if dir==2 or dir==3 then -- z + drill_dig_it3(pos,player) + end + else + drill_dig_it4(pos,player) + end + end + + minetest.sound_play("mining_drill", {pos = pos, gain = 1.0, max_hear_distance = 10}, true) +end + +local function pos_is_pointable(pos) + local node = minetest.get_node(pos) + local nodedef = minetest.registered_nodes[node.name] + return nodedef and nodedef.pointable +end + +local function mining_drill_mk2_setmode(user,itemstack) + local player_name = user:get_player_name() + local meta = itemstack:get_meta() + local mode = meta:get_int("mode") + if mode == 0 then + minetest.chat_send_player(player_name, S("Use while sneaking to change Mining Drill Mk@1 modes.", 2)) + end + mode = mode < 4 and mode + 1 or 1 + minetest.chat_send_player(player_name, get_description(2, mode)..": "..mining_drill_mode_text[mode][1]) + itemstack:set_name("technic:mining_drill_mk2_"..mode) + meta:set_int("mode", mode) + return itemstack +end + +local function mining_drill_mk3_setmode(user,itemstack) + local player_name = user:get_player_name() + local meta = itemstack:get_meta() + local mode = meta:get_int("mode") + if mode == 0 then + minetest.chat_send_player(player_name, S("Use while sneaking to change Mining Drill Mk@1 modes.", 3)) + end + mode = mode < 5 and mode + 1 or 1 + minetest.chat_send_player(player_name, get_description(3, mode)..": "..mining_drill_mode_text[mode][1]) + itemstack:set_name("technic:mining_drill_mk3_"..mode) + meta:set_int("mode", mode) + return itemstack +end + +local function mining_drill_mk2_handler(itemstack, user, pointed_thing) + local keys = user:get_player_control() + local meta = itemstack:get_meta() + local mode = meta:get_int("mode") + if mode == 0 or keys.sneak then + return mining_drill_mk2_setmode(user, itemstack) + end + if pointed_thing.type ~= "node" or not pos_is_pointable(pointed_thing.under) then + return + end + local charge_to_take = cost_to_use(2, mode) + if technic.use_charge(itemstack, charge_to_take) then + local pos = minetest.get_pointed_thing_position(pointed_thing, false) + drill_dig_it(pos, user, mode) + end + return itemstack +end + +local function mining_drill_mk3_handler(itemstack, user, pointed_thing) + local keys = user:get_player_control() + local meta = itemstack:get_meta() + local mode = meta:get_int("mode") + if mode == 0 or keys.sneak then + return mining_drill_mk3_setmode(user, itemstack) + end + if pointed_thing.type ~= "node" or not pos_is_pointable(pointed_thing.under) then + return + end + local charge_to_take = cost_to_use(3, mode) + if technic.use_charge(itemstack, charge_to_take) then + local pos = minetest.get_pointed_thing_position(pointed_thing, false) + drill_dig_it(pos, user, mode) + end + return itemstack +end + +-- register Mining Drill Mk1 +technic.register_power_tool("technic:mining_drill", { + description = get_description(1, 0), + inventory_image = "technic_mining_drill.png", + max_charge = max_charge[1], + on_use = function(itemstack, user, pointed_thing) + if pointed_thing.type ~= "node" or not pos_is_pointable(pointed_thing.under) then + return itemstack + end + local charge_to_take = cost_to_use(1, 1) + if technic.use_charge(itemstack, charge_to_take) then + local pos = minetest.get_pointed_thing_position(pointed_thing, false) + drill_dig_it(pos, user, 1) + end + return itemstack + end, +}) + +do -- register Mining Drill Mk2 + local inventory_image = "technic_mining_drill_mk2.png" + for i = 0, 4 do + local overlay = i > 0 and "^technic_tool_mode"..i..".png" or "" + technic.register_power_tool("technic:mining_drill_mk2"..(i > 0 and ("_"..i) or ""), { + description = get_description(2, i), + inventory_image = inventory_image .. overlay, + wield_image = inventory_image, + max_charge = max_charge[2], + groups = i > 0 and {not_in_creative_inventory=1} or nil, + on_use = mining_drill_mk2_handler, + }) + end +end + +do -- register Mining Drill Mk3 + local inventory_image = "technic_mining_drill_mk3.png" + for i = 0, 5 do + local overlay = i > 0 and "^technic_tool_mode"..i..".png" or "" + technic.register_power_tool("technic:mining_drill_mk3"..(i > 0 and ("_"..i) or ""), { + description = get_description(3, i), + inventory_image = inventory_image .. overlay, + wield_image = inventory_image, + max_charge = max_charge[3], + groups = i > 0 and {not_in_creative_inventory=1} or nil, + on_use = mining_drill_mk3_handler, + }) + end +end diff --git a/mods/technic_plus_beta/technic/tools/mining_lasers.lua b/mods/technic_plus_beta/technic/tools/mining_lasers.lua new file mode 100644 index 00000000..55a06b21 --- /dev/null +++ b/mods/technic_plus_beta/technic/tools/mining_lasers.lua @@ -0,0 +1,120 @@ + +local mat = technic.materials + +local mining_lasers_list = { +-- {, , , }, + {"1", 7, 50000, 1000}, + {"2", 14, 200000, 2000}, + {"3", 21, 650000, 3000}, +} +local allow_entire_discharging = true + +local S = technic.getter + +minetest.register_craft({ + output = "technic:laser_mk1", + recipe = { + {mat.diamond, "basic_materials:brass_ingot", mat.obsidian_glass}, + {"", "basic_materials:brass_ingot", "technic:red_energy_crystal"}, + {"", "", mat.copper_ingot}, + } +}) +minetest.register_craft({ + output = "technic:laser_mk2", + recipe = { + {mat.diamond, "technic:carbon_steel_ingot", "technic:laser_mk1"}, + {"", "technic:carbon_steel_ingot", "technic:green_energy_crystal"}, + {"", "", mat.copper_ingot}, + } +}) +minetest.register_craft({ + output = "technic:laser_mk3", + recipe = { + {mat.diamond, "technic:carbon_steel_ingot", "technic:laser_mk2"}, + {"", "technic:carbon_steel_ingot", "technic:blue_energy_crystal"}, + {"", "", mat.copper_ingot}, + } +}) + +local function laser_node(pos, node, player) + local def = minetest.registered_nodes[node.name] + if def.liquidtype ~= "none" and def.buildable_to then + minetest.remove_node(pos) + minetest.add_particle({ + pos = pos, + velocity = {x = 0, y = 1.5 + math.random(), z = 0}, + acceleration = {x = 0, y = -1, z = 0}, + size = 6 + math.random() * 2, + texture = "smoke_puff.png^[transform" .. math.random(0, 7), + }) + return + end + def.on_dig(pos, node, player) +end + +local keep_node = {air = true} +local function can_keep_node(name) + if keep_node[name] ~= nil then + return keep_node[name] + end + keep_node[name] = minetest.get_item_group(name, "hot") ~= 0 + return keep_node[name] +end + +local function laser_shoot(player, range, particle_texture, sound) + local player_pos = player:get_pos() + local player_name = player:get_player_name() + local dir = player:get_look_dir() + + local start_pos = vector.new(player_pos) + -- Adjust to head height + start_pos.y = start_pos.y + (player:get_properties().eye_height or 1.625) + minetest.add_particle({ + pos = start_pos, + velocity = dir, + acceleration = vector.multiply(dir, 50), + expirationtime = (math.sqrt(1 + 100 * (range + 0.4)) - 1) / 50, + size = 1, + texture = particle_texture .. "^[transform" .. math.random(0, 7), + }) + minetest.sound_play(sound, {pos = player_pos, max_hear_distance = range}, true) + for pos in technic.trace_node_ray_fat(start_pos, dir, range) do + if minetest.is_protected(pos, player_name) then + minetest.record_protection_violation(pos, player_name) + break + end + local node = minetest.get_node(pos) + if node.name == "ignore" + or not minetest.registered_nodes[node.name] then + break + end + if not can_keep_node(node.name) then + laser_node(pos, node, player) + end + end +end + +for _, m in pairs(mining_lasers_list) do + technic.register_power_tool("technic:laser_mk"..m[1], { + description = S("Mining Laser Mk@1", m[1]), + inventory_image = "technic_mining_laser_mk"..m[1]..".png", + range = 0, + max_charge = m[3], + on_use = function(itemstack, user) + local charge = technic.get_charge(itemstack) + if charge > 0 then + local range = m[2] + if charge < m[4] then + if not allow_entire_discharging then + return + end + -- If charge is too low, give the laser a shorter range + range = range * charge / m[4] + end + technic.use_charge(itemstack, math.min(m[4], charge)) + laser_shoot(user, range, "technic_laser_beam_mk" .. m[1] .. ".png", "technic_laser_mk" .. m[1]) + return itemstack + end + end, + }) +end diff --git a/mods/technic_plus_beta/technic/tools/multimeter.lua b/mods/technic_plus_beta/technic/tools/multimeter.lua new file mode 100644 index 00000000..2ca01293 --- /dev/null +++ b/mods/technic_plus_beta/technic/tools/multimeter.lua @@ -0,0 +1,308 @@ +local S = technic.getter + +local remote_start_ttl = technic.config:get_int("multimeter_remote_start_ttl") + +local max_charge = 50000 +local power_usage = 100 -- Normal network reading uses this much energy +local rs_charge_multiplier = 100 -- Remote start energy requirement multiplier +local texture = "technic_multimeter.png" +local texture_logo = "technic_multimeter_logo.png" +local texture_bg9 = "technic_multimeter_bg.png" +local texture_button = "technic_multimeter_button.png" +local texture_button_pressed = "technic_multimeter_button_pressed.png" +local bgcolor = "#FFC00F" +local bgcolor_lcd = "#4B8E66" +local bghiglight_lcd = "#5CAA77" +local textcolor = "#101010" +--local bgcolor_button = "#626E41" + +local form_width = 8 +local form_height = 11.5 +local btn_count = 3 +local btn_spacing = 0.1 +local btn_width = (form_width - ((btn_count + 1) * btn_spacing)) / btn_count + +local open_formspecs = {} + +local formspec_escape = minetest.formspec_escape +local function fmtf(n) return type(n) == "number" and ("%0.3f"):format(n) or n end +local function fs_x_pos(i) return (btn_spacing * i) + (btn_width * (i - 1)) end +local function create_button(index, y, h, name, label, exit, modifier) + local x = fs_x_pos(index) + local t1 = texture_button .. (modifier and formspec_escape(modifier) or "") + local t2 = texture_button_pressed .. (modifier and formspec_escape(modifier) or "") + local dimensions = ("%s,%s;%s,%s"):format(fmtf(x),fmtf(y),fmtf(btn_width),h) + local properties = ("%s;%s;%s;false;false;%s"):format(t1, name, label, t2) + return ("image_button%s[%s;%s]"):format(exit and "_exit" or "", dimensions, properties) +end + +local formspec_format_string = "formspec_version[3]" .. + ("size[%s,%s;]bgcolor[%s;both;]"):format(fmtf(form_width), fmtf(form_height), bgcolor) .. + ("style_type[*;textcolor=%s;font_size=*1]"):format(textcolor) .. + ("style_type[table;textcolor=%s;font_size=*1;font=mono]"):format(textcolor) .. + ("style_type[label;textcolor=%s;font_size=*2]"):format(textcolor) .. + ("background9[0,0;%s,%s;%s;false;3]"):format(fmtf(form_width), fmtf(form_height), texture_bg9) .. + ("image[0.3,0.3;5.75,1;%s]"):format(texture_logo) .. + "label[0.6,1.5;Network %s]" .. + ("field[%s,2.5;%s,0.8;net;Network ID:;%%s]"):format(fmtf(fs_x_pos(2)),fmtf(btn_width)) .. + create_button(3, "2.5", "0.8", "rs", "Remote start", false, "^[colorize:#10E010:125") .. + create_button(1, form_height - 0.9, "0.8", "wp", "Waypoint", true) .. + create_button(2, form_height - 0.9, "0.8", "up", "Update", false) .. + create_button(3, form_height - 0.9, "0.8", "exit", "Exit", true) .. + ("tableoptions[border=false;background=%s;highlight=%s;color=%s]"):format(bgcolor_lcd,bghiglight_lcd,textcolor) .. + "tablecolumns[indent,width=0.2;text,width=13;text,width=13;text,align=center]" .. + ("table[0.1,3.4;%s,%s;items;1,Property,Value,Unit%%s]"):format(fmtf(form_width - 0.2), fmtf(form_height - 4.4)) + +minetest.register_craft({ + output = 'technic:multimeter', + recipe = { + {'basic_materials:copper_strip', 'technic:rubber', 'basic_materials:copper_strip'}, + {'basic_materials:plastic_sheet', 'basic_materials:ic', 'basic_materials:plastic_sheet'}, + {'technic:battery', 'basic_materials:ic', 'technic:copper_coil'}, + } +}) + +local function use_charge(itemstack, multiplier) + return technic.use_charge(itemstack, power_usage * (multiplier or 1)) +end + +local function async_itemstack_get(player, refstack) + local inv = player:get_inventory() + local invindex, invstack + if inv and refstack then + local invsize = inv:get_size('main') + local name = refstack:get_name() + local count = refstack:get_count() + local meta = refstack:get_meta() + for i=1,invsize do + local stack = inv:get_stack('main', i) + if stack:get_count() == count and stack:get_name() == name and stack:get_meta():equals(meta) then + -- This item stack seems very similar to one that were used originally, use this + invindex = i + invstack = stack + break + end + end + end + return inv, invindex, invstack +end + +--[[ Base58 +local alpha = { + "1","2","3","4","5","6","7","8","9","A","B","C","D","E","F","G","H", + "J","K","L","M","N","P","Q","R","S","T","U","V","W","X","Y","Z", + "a","b","c","d","e","f","g","h","i","j","k","m","n","o", + "p","q","r","s","t","u","v","w","x","y","z" +} --]] +-- Base36 +local alpha = { + "0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F","G","H", + "I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z" +} +local function base36(num) + if type(num) ~= "number" then return end + if num < 36 then return alpha[num + 1] end + local result = "" + while num ~= 0 do + result = alpha[(num % 36) + 1] .. result + num = math.floor(num / 36) + end + return result +end + +-- Clean version of minetest.pos_to_string +local function v2s(v) return ("%s,%s,%s"):format(v.x,v.y,v.z) end +-- Size of hash table +local function count(t) + if type(t) ~= "table" then return 0 end + local c=0 for _ in pairs(t) do c=c+1 end return c +end +-- Percentage value as string +local function percent(val, max) + if type(val) ~= "number" or type(max) ~= "number" then return "" end + local p = (val / max) * 100 + return p > 99.99 and "100" or ("%0.2f"):format(p) +end +-- Get network TTL +local function net_ttl(net) return type(net.timeout) == "number" and (net.timeout - minetest.get_us_time()) end +-- Microseconds to milliseconds +local function us2ms(val) return type(val) == "number" and (val / 1000) or 0 end +-- Microseconds to seconds +local function us2s(val) return type(val) == "number" and (val / 1000 / 1000) or 0 end + +local function formspec(data) + local tablerows = "" + for _,row in ipairs(data.rows) do + tablerows = tablerows .. ",1" .. + "," .. formspec_escape(row[1] or "-") .. + "," .. formspec_escape(row[2] or "-") .. + "," .. formspec_escape(row[3] or "-") + end + local base36_net = base36(data.network_id) or "N/A" + return formspec_format_string:format(base36_net, base36_net, tablerows) +end + +local function multimeter_inspect(itemstack, player, pos, fault) + local id = pos and technic.pos2network(pos) + local rows = {} + local data = { network_id = id, rows = rows } + local name = player:get_player_name() + if id and itemstack and not fault then + table.insert(rows, { "Ref. point", v2s(technic.network2pos(id)), "coord" }) + table.insert(rows, { "Activated", technic.active_networks[id] and "yes" or "no", "active" }) + local net = technic.networks[id] + if net then + table.insert(rows, { "Timeout", ("%0.1f"):format(us2s(net_ttl(net))), "s" }) + table.insert(rows, { "Lag", ("%0.2f"):format(us2ms(net.lag)), "ms" }) + table.insert(rows, { "Skip", net.skip, "cycles" }) + table.insert(rows, {}) + local PR = net.PR_nodes + local RE = net.RE_nodes + local BA = net.BA_nodes + local C = count(net.all_nodes) + table.insert(rows, { "Supply", net.supply, "EU" }) + table.insert(rows, { "Demand", net.demand, "EU" }) + table.insert(rows, { "Battery charge", net.battery_charge, "EU" }) + table.insert(rows, { "Battery charge", percent(net.battery_charge, net.battery_charge_max), "%" }) + table.insert(rows, { "Battery capacity", net.battery_charge_max, "EU" }) + table.insert(rows, {}) + table.insert(rows, { "Nodes", C, "count" }) + table.insert(rows, { "Cables", C - #PR - #RE - #BA, "count" }) -- FIXME: Do not count PR+RE duplicates + table.insert(rows, { "Generators", #PR, "count" }) + table.insert(rows, { "Consumers", #RE, "count" }) + table.insert(rows, { "Batteries", #BA, "count" }) + end + else + table.insert(rows, { "Operation failed", "", "" }) + if not id then + table.insert(rows, {}) + table.insert(rows, { "Bad contact", "No network", "Fault" }) + end + if fault then table.insert(rows, {}) end + if fault == "battery" then + table.insert(rows, { "Recharge", "Insufficient charge", "Fault" }) + elseif fault == "decode" then + table.insert(rows, { "Decoder error", "Net ID decode", "Fault" }) + elseif fault == "switchload" then + table.insert(rows, { "Remote load error", "Load switching station", "Fault" }) + elseif fault == "cableload" then + table.insert(rows, { "Remote load error", "Load ref. cable", "Fault" }) + elseif fault == "protected" then + table.insert(rows, { "Protection error", "Area is protected", "Access" }) + end + if not itemstack then + table.insert(rows, {}) + table.insert(rows, { "Missing FLUTE", "FLUTE not found", "Fault" }) + end + end + open_formspecs[name] = { pos = pos, itemstack = itemstack } + minetest.show_formspec(name, "technic:multimeter", formspec(data)) +end + +local function remote_start_net(player, pos) + local sw_pos = {x=pos.x,y=pos.y+1,z=pos.z} + -- Try to load switch network node + local sw_node = technic.get_or_load_node(sw_pos) + if sw_node.name ~= "technic:switching_station" then return "switchload" end + -- Try to load network node + local tier = technic.sw_pos2tier(sw_pos, true) + if not tier then return "cableload" end + -- Check protections + if minetest.is_protected(pos, player:get_player_name()) then return "protected" end + -- All checks passed, start network + local network_id = technic.sw_pos2network(sw_pos) or technic.create_network(sw_pos) + technic.activate_network(network_id, remote_start_ttl) +end + +local function async_itemstack_use_charge(itemstack, player, multiplier) + local fault = nil + local inv, invindex, invstack = async_itemstack_get(player, itemstack) + if not inv or not invindex or not use_charge(invstack, multiplier) then + -- Multimeter battery empty + fault = "battery" + elseif invstack then + inv:set_stack('main', invindex, invstack) + end + return invstack, fault +end + +minetest.register_on_player_receive_fields(function(player, formname, fields) + if formname ~= "technic:multimeter" then + -- Not our formspec, tell engine to continue with other registered handlers + return + end + local name = player:get_player_name() + local flute = open_formspecs[name] + if fields and name then + local pos = flute and flute.pos + if fields.up then + local itemstack = flute and flute.itemstack + local invstack, fault = async_itemstack_use_charge(itemstack, player) + multimeter_inspect(invstack, player, pos, fault) + return true + elseif fields.wp and pos then + local network_id = technic.pos2network(pos) + local encoded_net_id = base36(network_id) + if encoded_net_id then + local net_pos = technic.network2pos(network_id) + local id = player:hud_add({ + hud_elem_type = "waypoint", + name = ("Network %s"):format(encoded_net_id), + text = "m", + number = 0xE0B020, + world_pos = net_pos + }) + minetest.after(90, function() if player then player:hud_remove(id) end end) + end + elseif fields.rs and fields.net and fields.net ~= "" then + -- Use charge first before even attempting remote start + local itemstack = flute and flute.itemstack + local invstack, fault = async_itemstack_use_charge(itemstack, player, rs_charge_multiplier) + if not fault then + local net_id = tonumber(fields.net, 36) + local net_pos = net_id and technic.network2pos(net_id) + if net_pos then + fault = remote_start_net(player, net_pos) + else + fault = "decode" + end + end + multimeter_inspect(invstack, player, pos, fault) + return true + elseif fields.quit then + open_formspecs[name] = nil + end + end + -- Tell engine to skip rest of formspec handlers + return true +end) + +local function check_node(pos) + local name = minetest.get_node(pos).name + if technic.machine_tiers[name] or technic.get_cable_tier(name) or name == "technic:switching_station" then + return name + end +end + +technic.register_power_tool("technic:multimeter", { + description = S("Multimeter"), + inventory_image = texture, + wield_image = texture, + liquids_pointable = false, + max_charge = max_charge, + on_use = function(itemstack, player, pointed_thing) + local pos = minetest.get_pointed_thing_position(pointed_thing, false) + if pos and pointed_thing.type == "node" then + local name = check_node(pos) + if name then + if name == "technic:switching_station" then + -- Switching station compatibility shim + pos.y = pos.y - 1 + end + open_formspecs[player:get_player_name()] = nil + multimeter_inspect(itemstack, player, pos, not use_charge(itemstack) and "battery") + end + end + return itemstack + end, +}) diff --git a/mods/technic_plus_beta/technic/tools/prospector.lua b/mods/technic_plus_beta/technic/tools/prospector.lua new file mode 100644 index 00000000..b6d565cb --- /dev/null +++ b/mods/technic_plus_beta/technic/tools/prospector.lua @@ -0,0 +1,147 @@ +local S = technic.getter +local mat = technic.materials + +local function migrate_meta(meta) + local data = meta:get("") + if data then + local fields = minetest.deserialize(data, true) + if type(fields) == "table" then + meta:set_string("target", fields.target) + meta:set_int("look_radius", fields.look_radius or 1) + meta:set_int("look_depth", fields.look_depth or 7) + meta:set_string("", "") + return meta:get("target") + end + end +end + +local function get_field(meta) + return (meta:get("look_depth") or 7), (meta:get("look_radius") or 1) +end + +technic.register_power_tool("technic:prospector", { + description = S("Prospector"), + inventory_image = "technic_prospector.png", + max_charge = 300000, + on_use = function(toolstack, user, pointed_thing) + if not user or not user:is_player() or user.is_fake_player then return end + if pointed_thing.type ~= "node" then return end + local meta = toolstack:get_meta() + local target = meta:get("target") or migrate_meta(meta) + if not target then + minetest.chat_send_player(user:get_player_name(), S("Right-click to set target block type")) + return toolstack + end + local look_depth, look_radius = get_field(meta) + local look_diameter = look_radius * 2 + 1 + local charge_to_take = look_depth * (look_depth + 1) * look_diameter * look_diameter + if not technic.use_charge(toolstack, charge_to_take) then + return toolstack + end + local start_pos = pointed_thing.under + local forward = minetest.facedir_to_dir(minetest.dir_to_facedir(user:get_look_dir(), true)) + local right = forward.x ~= 0 and { x=0, y=1, z=0 } or (forward.y ~= 0 and { x=0, y=0, z=1 } or { x=1, y=0, z=0 }) + local up = forward.x ~= 0 and { x=0, y=0, z=1 } or (forward.y ~= 0 and { x=1, y=0, z=0 } or { x=0, y=1, z=0 }) + local base_pos = vector.add(start_pos, vector.multiply(vector.add(right, up), - look_radius)) + local found = false + for f = 0, look_depth-1 do + for r = 0, look_diameter-1 do + for u = 0, look_diameter-1 do + if minetest.get_node(vector.add(vector.add(vector.add(base_pos, vector.multiply(forward, f)), + vector.multiply(right, r)), vector.multiply(up, u))).name == target then + found = true + end + end + end + end + if math.random() < 0.02 then found = not found end + minetest.chat_send_player(user:get_player_name(), + S("@1 is "..(found and "present" or "absent").." in @2 region", + minetest.registered_nodes[target].description, + look_diameter.."x"..look_diameter.."x"..look_depth)) + minetest.sound_play("technic_prospector_"..(found and "hit" or "miss"), + { pos = vector.add(user:get_pos(), { x = 0, y = 1, z = 0 }), gain = 1.0, max_hear_distance = 10 }, true) + return toolstack + end, + on_place = function(toolstack, user, pointed_thing) + if not user or not user:is_player() or user.is_fake_player then + return + end + local meta = toolstack:get_meta() + local target = meta:get("target") or migrate_meta(meta) + local look_depth, look_radius = get_field(meta) + local pointed + if pointed_thing.type == "node" then + local pname = minetest.get_node(pointed_thing.under).name + local pdef = minetest.registered_nodes[pname] + if pdef and (pdef.groups.not_in_creative_inventory or 0) == 0 and pname ~= target then + pointed = pname + end + end + local look_diameter = look_radius * 2 + 1 + minetest.show_formspec(user:get_player_name(), "technic:prospector_control", + "size[7,8.5]".. + "item_image[0,0;1,1;"..toolstack:get_name().."]".. + "label[1,0;"..minetest.formspec_escape(toolstack:get_description()).."]".. + (target and + "label[0,1.5;"..S("Current target:").."]".. + "label[0,2;"..minetest.formspec_escape(minetest.registered_nodes[target].description).."]".. + "item_image[0,2.5;1,1;"..target.."]" or + "label[0,1.5;"..S("No target set").."]").. + (pointed and + "label[3.5,1.5;"..S("May set new target:").."]".. + "label[3.5,2;"..minetest.formspec_escape(minetest.registered_nodes[pointed].description).."]".. + "item_image[3.5,2.5;1,1;"..pointed.."]".. + "button_exit[3.5,3.65;2,0.5;target_"..pointed..";"..S("Set target").."]" or + "label[3.5,1.5;"..S("No new target available").."]").. + "label[0,4.5;"..S("Region cross section:").."]".. + "label[0,5;"..look_diameter.."x"..look_diameter.."]".. + "label[3.5,4.5;"..S("Set region cross section:").."]".. + "button_exit[3.5,5.15;1,0.5;look_radius_0;1x1]".. + "button_exit[4.5,5.15;1,0.5;look_radius_1;3x3]".. + "button_exit[5.5,5.15;1,0.5;look_radius_3;7x7]".. + "label[0,6;"..S("Region depth:").."]".. + "label[0,6.5;"..look_depth.."]".. + "label[3.5,6;"..S("Set region depth:").."]".. + "button_exit[3.5,6.65;1,0.5;look_depth_7;7]".. + "button_exit[4.5,6.65;1,0.5;look_depth_14;14]".. + "button_exit[5.5,6.65;1,0.5;look_depth_21;21]".. + "label[0,7.5;"..S("Accuracy:").."]".. + "label[0,8;98%]") + return toolstack + end, +}) + +minetest.register_on_player_receive_fields(function(user, formname, fields) + if formname ~= "technic:prospector_control" then + return false + end + if not user or not user:is_player() or user.is_fake_player then + return + end + local toolstack = user:get_wielded_item() + if toolstack:get_name() ~= "technic:prospector" then + return true + end + local meta = toolstack:get_meta() + for field, value in pairs(fields) do + if field:sub(1, 7) == "target_" then + meta:set_string("target", field:sub(8)) + elseif field:sub(1, 12) == "look_radius_" then + meta:set_int("look_radius", field:sub(13)) + elseif field:sub(1, 11) == "look_depth_" then + meta:set_int("look_depth", field:sub(12)) + end + end + user:set_wielded_item(toolstack) + return true +end) + +minetest.register_craft({ + output = "technic:prospector", + recipe = { + {mat.pick_silver, mat.mithril_block, "pipeworks:teleport_tube_1"}, + {"basic_materials:brass_ingot", "technic:control_logic_unit", "basic_materials:brass_ingot"}, + {"", "technic:blue_energy_crystal", ""}, + } +}) diff --git a/mods/technic_plus_beta/technic/tools/sonic_screwdriver.lua b/mods/technic_plus_beta/technic/tools/sonic_screwdriver.lua new file mode 100644 index 00000000..f001794a --- /dev/null +++ b/mods/technic_plus_beta/technic/tools/sonic_screwdriver.lua @@ -0,0 +1,86 @@ +local sonic_screwdriver_max_charge = 15000 + +local S = technic.getter +local mat = technic.materials + +-- screwdriver handler code reused from minetest/minetest_game screwdriver @a9ac480 +local ROTATE_FACE = 1 +local ROTATE_AXIS = 2 + +local function nextrange(x, max) + x = x + 1 + if x > max then + x = 0 + end + return x +end + +-- Handles rotation +local function screwdriver_handler(itemstack, user, pointed_thing, mode) + if pointed_thing.type ~= "node" then + return + end + + local pos = pointed_thing.under + + if minetest.is_protected(pos, user:get_player_name()) then + minetest.record_protection_violation(pos, user:get_player_name()) + return + end + + local node = minetest.get_node(pos) + local ndef = minetest.registered_nodes[node.name] + if not ndef or ndef.paramtype2 ~= "facedir" or + (ndef.drawtype == "nodebox" and + ndef.node_box.type ~= "fixed") or + node.param2 == nil then + return + end + + -- contrary to the default screwdriver, do not check for can_dig, to allow rotating machines with CLU's in them + -- this is consistent with the previous sonic screwdriver + + if not technic.use_charge(itemstack, 100) then + return + end + + minetest.sound_play("technic_sonic_screwdriver", {pos = pos, gain = 0.5, max_hear_distance = 10}, true) + + -- Set param2 + local rotationPart = node.param2 % 32 -- get first 4 bits + local preservePart = node.param2 - rotationPart + + local axisdir = math.floor(rotationPart / 4) + local rotation = rotationPart - axisdir * 4 + if mode == ROTATE_FACE then + rotationPart = axisdir * 4 + nextrange(rotation, 3) + elseif mode == ROTATE_AXIS then + rotationPart = nextrange(axisdir, 5) * 4 + end + + node.param2 = preservePart + rotationPart + minetest.swap_node(pos, node) + + return itemstack +end + +technic.register_power_tool("technic:sonic_screwdriver", { + description = S("Sonic Screwdriver (left-click rotates face, right-click rotates axis)"), + inventory_image = "technic_sonic_screwdriver.png", + max_charge = sonic_screwdriver_max_charge, + on_use = function(itemstack, user, pointed_thing) + return screwdriver_handler(itemstack, user, pointed_thing, ROTATE_FACE) + end, + on_place = function(itemstack, user, pointed_thing) + return screwdriver_handler(itemstack, user, pointed_thing, ROTATE_AXIS) + end, +}) + +minetest.register_craft({ + output = "technic:sonic_screwdriver", + recipe = { + {"", mat.diamond, ""}, + {"mesecons_materials:fiber", "technic:battery", "mesecons_materials:fiber"}, + {"mesecons_materials:fiber", mat.mithril_ingot, "mesecons_materials:fiber"} + } +}) diff --git a/mods/technic_plus_beta/technic/tools/tree_tap.lua b/mods/technic_plus_beta/technic/tools/tree_tap.lua new file mode 100644 index 00000000..a37401f4 --- /dev/null +++ b/mods/technic_plus_beta/technic/tools/tree_tap.lua @@ -0,0 +1,87 @@ + +local S = technic.getter +local mat = technic.materials +local mesecons_materials = minetest.get_modpath("mesecons_materials") + +local function drop_raw_latex(pointed_thing, user) + if minetest.get_modpath("mcl_core") then + minetest.add_item(user:get_pos(), "technic:raw_latex") + else + minetest.handle_node_drops(pointed_thing.above, {"technic:raw_latex"}, user) + end +end + +minetest.register_tool("technic:treetap", { + description = S("Tree Tap"), + inventory_image = "technic_tree_tap.png", + on_use = function(itemstack, user, pointed_thing) + if pointed_thing.type ~= "node" then + return + end + local pos = pointed_thing.under + if minetest.is_protected(pos, user:get_player_name()) then + minetest.record_protection_violation(pos, user:get_player_name()) + return + end + local node = minetest.get_node(pos) + local node_name = node.name + if node_name ~= "moretrees:rubber_tree_trunk" then + return + end + node.name = "moretrees:rubber_tree_trunk_empty" + minetest.swap_node(pos, node) + drop_raw_latex(pointed_thing, user) + if not technic.creative_mode then + local item_wear = tonumber(itemstack:get_wear()) + item_wear = item_wear + 819 + if item_wear > 65535 then + itemstack:clear() + return itemstack + end + itemstack:set_wear(item_wear) + end + return itemstack + end, +}) + +minetest.register_craft({ + output = "technic:treetap", + recipe = { + {"pipeworks:tube_1", "group:wood", mat.stick}, + {"", mat.stick, mat.stick} + }, +}) + +minetest.register_craftitem("technic:raw_latex", { + description = S("Raw Latex"), + inventory_image = "technic_raw_latex.png", +}) + +if mesecons_materials then + minetest.register_craft({ + type = "cooking", + recipe = "technic:raw_latex", + output = "mesecons_materials:glue", + }) +end + +minetest.register_craftitem("technic:rubber", { + description = S("Rubber Fiber"), + inventory_image = "technic_rubber.png", +}) + +minetest.register_abm({ + label = "Tools: tree tap", + nodenames = {"moretrees:rubber_tree_trunk_empty"}, + interval = 60, + chance = 15, + action = function(pos, node) + local radius = (moretrees and moretrees.leafdecay_radius) or 5 + local nodes = minetest.find_node_near(pos, radius, {"moretrees:rubber_tree_leaves"}) + if nodes then + node.name = "moretrees:rubber_tree_trunk" + minetest.swap_node(pos, node) + end + end +}) + diff --git a/mods/technic_plus_beta/technic/tools/vacuum.lua b/mods/technic_plus_beta/technic/tools/vacuum.lua new file mode 100644 index 00000000..37561779 --- /dev/null +++ b/mods/technic_plus_beta/technic/tools/vacuum.lua @@ -0,0 +1,50 @@ +-- Configuration +local vacuum_max_charge = 10000 -- 10000 - Maximum charge of the vacuum cleaner +local vacuum_charge_per_object = 100 -- 100 - Capable of picking up 50 objects +local vacuum_range = 8 -- 8 - Area in which to pick up objects + +local S = technic.getter + +technic.register_power_tool("technic:vacuum", { + description = S("Vacuum Cleaner"), + inventory_image = "technic_vacuum.png", + max_charge = vacuum_max_charge, + on_use = function(itemstack, user, pointed_thing) + local original_charge = technic.get_charge(itemstack) + if original_charge < vacuum_charge_per_object then + return + end + minetest.sound_play("vacuumcleaner", {to_player = user:get_player_name(), gain = 0.4}, true) + local pos = user:get_pos() + local inv = user:get_inventory() + local charge = original_charge + for _, object in ipairs(minetest.get_objects_inside_radius(pos, vacuum_range)) do + local entity = object:get_luaentity() + if not object:is_player() and entity and entity.name == "__builtin:item" and entity.itemstring ~= "" then + if inv and inv:room_for_item("main", ItemStack(entity.itemstring)) then + charge = charge - vacuum_charge_per_object + inv:add_item("main", ItemStack(entity.itemstring)) + minetest.sound_play("item_drop_pickup", {to_player = user:get_player_name(), gain = 0.4}, true) + entity.itemstring = "" + object:remove() + if charge < vacuum_charge_per_object then + break + end + end + end + end + if not technic.creative_mode and charge ~= original_charge then + technic.set_charge(itemstack, charge) + return itemstack + end + end, +}) + +minetest.register_craft({ + output = 'technic:vacuum', + recipe = { + {'pipeworks:tube_1', 'pipeworks:filter', 'technic:battery'}, + {'pipeworks:tube_1', 'basic_materials:motor', 'technic:battery'}, + {'technic:stainless_steel_ingot', '', ''}, + } +}) diff --git a/mods/technic_plus_beta/technic/util/throttle.lua b/mods/technic_plus_beta/technic/util/throttle.lua new file mode 100644 index 00000000..99d4ec24 --- /dev/null +++ b/mods/technic_plus_beta/technic/util/throttle.lua @@ -0,0 +1,26 @@ + +local function throttle(callspersecond, fn) + local time = 0 + local count = 0 + + return function(...) + local now = minetest.get_us_time() + if (now - time) > 1000000 then + -- reset time + time = now + count = 0 + else + -- check max calls + count = count + 1 + if count > callspersecond then + return + end + end + + return pcall(fn, ...) + end + +end + + +return throttle diff --git a/mods/technic_plus_beta/technic_chests/README.md b/mods/technic_plus_beta/technic_chests/README.md new file mode 100644 index 00000000..9e1cfc09 --- /dev/null +++ b/mods/technic_plus_beta/technic_chests/README.md @@ -0,0 +1,28 @@ +Technic chests +============== + +[![luacheck](https://github.com/mt-mods/technic/actions/workflows/luacheck.yml/badge.svg)](https://github.com/mt-mods/technic/actions/workflows/luacheck.yml?query=branch%3Amaster) +[![mineunit](https://github.com/mt-mods/technic/actions/workflows/mineunit.yml/badge.svg)](https://github.com/mt-mods/technic/actions/workflows/mineunit.yml?query=branch%3Amaster) +[![mineunit](https://byob.yarr.is/mt-mods/technic/coverage-chests)](https://github.com/mt-mods/technic/actions/workflows/mineunit.yml?query=branch%3Amaster+is%3Asuccess) + +License +------- + +Copyright (C) 2012-2014 Maciej Kasatkin (RealBadAngel) + +Technic chests code is licensed under the GNU LGPLv2+. + +Texture licenses: + +VanessaE: (WTFPL) + * technic\_pencil\_icon.png + * technic\_checkmark\_icon.png + * technic\_chest\_overlay\_*.png + * technic\_*\_chest\_lock\_overlay.png + +sdzen (Elise Staudter) modified by VanessaE (CC BY-SA 3.0): + * copper, iron, silver, gold, mithril chest textures 16x16 + +RealBadAngel: (WTFPL) + * Everything else. + diff --git a/mods/technic_plus_beta/technic_chests/chests.lua b/mods/technic_plus_beta/technic_chests/chests.lua new file mode 100644 index 00000000..7f6183f7 --- /dev/null +++ b/mods/technic_plus_beta/technic_chests/chests.lua @@ -0,0 +1,164 @@ + +local S = minetest.get_translator(minetest.get_current_modname()) + +local function register_chests(data) + local name = data.description:lower() + local type_description = { + S("@1 Chest", S(data.description)), + S("@1 Locked Chest", S(data.description)), + S("@1 Protected Chest", S(data.description)), + } + for i,t in ipairs({"", "_locked", "_protected"}) do + local data_copy = table.copy(data) + data_copy.locked = t == "_locked" + data_copy.protected = t == "_protected" + data_copy.texture_prefix = "technic_"..name.."_chest" + data_copy.description = type_description[i] + technic.chests.register_chest(":technic:"..name..t.."_chest", data_copy) + end +end + +local function register_crafts(name, material, base_open, base_locked, base_protected) + name = name:lower() + if minetest.registered_items[material] then + if minetest.registered_items[base_open] then + minetest.register_craft({ + output = "technic:"..name.."_chest", + recipe = { + {material, material, material}, + {material, base_open, material}, + {material, material, material}, + } + }) + end + if minetest.registered_items[base_locked] then + minetest.register_craft({ + output = "technic:"..name.."_locked_chest", + recipe = { + {material, material, material}, + {material, base_locked, material}, + {material, material, material}, + } + }) + end + if minetest.registered_items[base_protected] then + minetest.register_craft({ + output = "technic:"..name.."_protected_chest", + recipe = { + {material, material, material}, + {material, base_protected, material}, + {material, material, material}, + } + }) + end + end + minetest.register_craft({ + output = "technic:"..name.."_locked_chest", + type = "shapeless", + recipe = {"basic_materials:padlock","technic:"..name.."_chest"} + }) + minetest.register_craft({ + output = "technic:"..name.."_protected_chest", + type = "shapeless", + recipe = {"default:copper_ingot", "technic:"..name.."_chest"} + }) + minetest.register_craft({ + output = "technic:"..name.."_chest", + type = "shapeless", + recipe = {"technic:"..name.."_locked_chest"} + }) + minetest.register_craft({ + output = "technic:"..name.."_chest", + type = "shapeless", + recipe = {"technic:"..name.."_protected_chest"} + }) +end + +-- Iron +register_chests({ + description = "Iron", + width = 9, + height = 5, + sort = true, + infotext = true, +}) +register_crafts( + "Iron", + minetest.get_modpath("technic_worldgen") and "technic:cast_iron_ingot" or "default:steel_ingot", + "default:chest", + "default:chest_locked", + "protector:chest" +) + +-- Copper +register_chests({ + description = "Copper", + width = 12, + height = 5, + sort = true, + infotext = true, + autosort = true, +}) +register_crafts( + "Copper", + "default:copper_ingot", + "technic:iron_chest", + "technic:iron_locked_chest", + "technic:iron_protected_chest" +) + +-- Silver +register_chests({ + description = "Silver", + width = 12, + height = 6, + sort = true, + infotext = true, + autosort = true, + quickmove = true, +}) +register_crafts( + "Silver", + "moreores:silver_ingot", + "technic:copper_chest", + "technic:copper_locked_chest", + "technic:copper_protected_chest" +) + +-- Gold +register_chests({ + description = "Gold", + width = 15, + height = 6, + sort = true, + infotext = true, + autosort = true, + quickmove = true, + color = true, +}) +register_crafts( + "Gold", + "default:gold_ingot", + minetest.get_modpath("moreores") and "technic:silver_chest" or "technic:copper_chest", + minetest.get_modpath("moreores") and "technic:silver_locked_chest" or "technic:copper_locked_chest", + minetest.get_modpath("moreores") and "technic:silver_protected_chest" or "technic:copper_protected_chest" +) + +-- Mithril +register_chests({ + description = "Mithril", + width = 15, + height = 6, + sort = true, + infotext = true, + autosort = true, + quickmove = true, + digilines = true, +}) +register_crafts( + "Mithril", + "moreores:mithril_ingot", + "technic:gold_chest", + "technic:gold_locked_chest", + "technic:gold_protected_chest" +) diff --git a/mods/technic_plus_beta/technic_chests/digilines.lua b/mods/technic_plus_beta/technic_chests/digilines.lua new file mode 100644 index 00000000..8fb2b928 --- /dev/null +++ b/mods/technic_plus_beta/technic_chests/digilines.lua @@ -0,0 +1,102 @@ + +function technic.chests.send_digiline_message(pos, event, player, items) + local set_channel = minetest.get_meta(pos):get_string("channel") + local player_name = player and player:get_player_name() or "" + digilines.receptor_send(pos, digilines.rules.default, set_channel, { + event = event, + items = items, + player = player_name, + pos = pos + }) +end + +local function item_matches(item, stack) + -- Same macthing as pipeworks filter injector + local name = stack:get_name() + local wear = stack:get_wear() + return (not item.name or name == item.name) + and (not item.group or (type(item.group) == "string" and minetest.get_item_group(name, item.group) ~= 0)) + and (not item.wear or (type(item.wear) == "number" and wear == item.wear) or (type(item.wear) == "table" + and (not item.wear[1] or (type(item.wear[1]) == "number" and item.wear[1] <= wear)) + and (not item.wear[2] or (type(item.wear[2]) == "number" and wear < item.wear[2])))) + and (not item.metadata or (type(item.metadata) == "string" and stack:get_meta():get_string("") == item.metadata)) +end + +function technic.chests.digiline_effector(pos, _, channel, msg) + local meta = minetest.get_meta(pos) + local set_channel = meta:get_string("channel") + if channel ~= set_channel then + return + end + if type(msg) ~= "table" or not msg.command then + return + end + local inv = meta:get_inventory() + + if msg.command == "sort" then + technic.chests.sort_inv(inv, meta:get_int("sort_mode")) + + elseif msg.command == "is_empty" then + local empty = inv:is_empty("main") + digilines.receptor_send(pos, digilines.rules.default, set_channel, empty) + + elseif msg.command == "get_list" then + local inv_table = {} + local list = inv:get_list("main") + if list then + for _,stack in ipairs(list) do + if not stack:is_empty() then + table.insert(inv_table, stack:get_name().." "..stack:get_count()) + else + table.insert(inv_table, "") + end + end + end + digilines.receptor_send(pos, digilines.rules.default, set_channel, inv_table) + + elseif msg.command == "get_stack" and type(msg.index) == "number" then + local stack = inv:get_stack("main", msg.index) + local item = stack:to_table() + if item then + -- item available at that slot + local def = minetest.registered_items[stack:get_name()] + item.groups = def and table.copy(def.groups) or {} + digilines.receptor_send(pos, digilines.rules.default, set_channel, item) + else + -- nothing there, return nil + digilines.receptor_send(pos, digilines.rules.default, set_channel, nil) + end + + elseif msg.command == "contains_item" and (type(msg.item) == "string" or type(msg.item) == "table") then + local contains = inv:contains_item("main", msg.item) + digilines.receptor_send(pos, digilines.rules.default, set_channel, contains) + + elseif msg.command == "room_for_item" and (type(msg.item) == "string" or type(msg.item) == "table") then + local room = inv:room_for_item("main", msg.item) + digilines.receptor_send(pos, digilines.rules.default, set_channel, room) + + elseif msg.command == "count_item" and (type(msg.item) == "string" or type(msg.item) == "table") then + local count = 0 + local list = inv:get_list("main") + if list then + if type(msg.item) == "string" then + local itemstack = ItemStack(msg.item) + msg.item = { + name = itemstack:get_name(), + count = itemstack:get_count(), + wear = string.match(msg.item, "%S*:%S*%s%d%s(%d)") and itemstack:get_wear(), + metadata = string.match(msg.item, "%S*:%S*%s%d%s%d(%s.*)") and itemstack:get_meta():get_string("") + } + end + for _,stack in pairs(list) do + if not stack:is_empty() and item_matches(msg.item, stack) then + count = count + stack:get_count() + end + end + if msg.item.count and type(msg.item.count) == "number" and msg.item.count > 1 then + count = math.floor(count / msg.item.count) + end + end + digilines.receptor_send(pos, digilines.rules.default, set_channel, count) + end +end diff --git a/mods/technic_plus_beta/technic_chests/formspec.lua b/mods/technic_plus_beta/technic_chests/formspec.lua new file mode 100644 index 00000000..30ad0480 --- /dev/null +++ b/mods/technic_plus_beta/technic_chests/formspec.lua @@ -0,0 +1,254 @@ + +local S = minetest.get_translator(minetest.get_current_modname()) + +local has_pipeworks = minetest.get_modpath("pipeworks") + +local function get_pipeworks_fs(x, y, meta) + -- Use a container to reposition the pipeworks button. + return "container["..x..","..(y - 4.3).."]".. + pipeworks.fs_helpers.cycling_button( + meta, + pipeworks.button_base, + "splitstacks", + { + pipeworks.button_off, + pipeworks.button_on + } + )..pipeworks.button_label.."container_end[]" +end + +local function get_color_fs(x, y, meta) + local fs = "" + for a = 0, 3 do + for b = 0, 3 do + fs = fs.."image_button["..(x + b * 0.73)..","..(y + 0.1 + a * 0.79)..";0.8,0.8;".. + "technic_colorbutton"..(a * 4 + b)..".png;color_button"..(a * 4 + b + 1)..";]" + end + end + local selected = meta:get_int("color") + local color + if technic.chests.colors[selected] then + color = technic.chests.colors[selected][2] + else + color = S("None") + end + return fs.."label["..(x + 0.1)..","..(y + 3.4)..";"..S("Selected Color: @1", color).."]" +end + +local function get_quickmove_fs(x, y) + return "button["..x..","..y..";3,1;existing_to_chest;"..S("Move existing to Chest").."]".. + "label["..(x + 0.1)..","..(y + 1.15)..";"..S("Move specific")..":\n("..S("Drop to move")..")]".. + "list[context;quickmove;"..(x + 1.8)..","..(y + 1.15)..";1,1]".. + "button["..x..","..(y + 2.3)..";3,1;all_to_chest;"..S("Move all to Chest").."]".. + "button["..x..","..(y + 3.2)..";3,1;all_to_inv;"..S("Move all to Inventory").."]" +end + +local function get_digilines_fs(x, y, meta) + local channel = minetest.formspec_escape(meta:get_string("channel")) + local put = meta:get_int("send_put") == 1 and "true" or "false" + local take = meta:get_int("send_take") == 1 and "true" or "false" + local inject = meta:get_int("send_inject") == 1 and "true" or "false" + local pull = meta:get_int("send_pull") == 1 and "true" or "false" + local overflow = meta:get_int("send_overflow") == 1 and "true" or "false" + return "field["..(x + 0.3)..","..(y + 0.5)..";3,1;channel;Digiline Channel:;"..channel.."]".. + "button["..(x + 0.5)..","..(y + 1.1)..";2,1;save_channel;Save Channel]".. + "checkbox["..(x + 0.1)..","..(y + 1.8)..";send_put;"..S("Send player put messages")..";"..put.."]".. + "checkbox["..(x + 0.1)..","..(y + 2.2)..";send_take;"..S("Send player take messages")..";"..take.."]".. + "checkbox["..(x + 0.1)..","..(y + 2.6)..";send_inject;"..S("Send tube inject messages")..";"..inject.."]".. + "checkbox["..(x + 0.1)..","..(y + 3.0)..";send_pull;"..S("Send tube pull messages")..";"..pull.."]".. + "checkbox["..(x + 0.1)..","..(y + 3.4)..";send_overflow;"..S("Send overflow messages")..";"..overflow.."]" +end + +local function get_infotext_fs(editing, meta) + local infotext = minetest.formspec_escape(meta:get_string("infotext")) + if editing then + return "image_button[0,0.1;0.8,0.8;technic_checkmark_icon.png;save_infotext;]".. + "field[1,0.3;4,1;infotext;;"..infotext.."]" + else + return "image_button[0,0.1;0.8,0.8;technic_pencil_icon.png;edit_infotext;]".. + "label[1,0;"..infotext.."]" + end +end + +local function get_autosort_fs(x, meta) + if meta:get_int("autosort") == 1 then + return "button["..x..",0;2,1;autosort;"..S("Auto-sort is On").."]" + else + return "button["..x..",0;2,1;autosort;"..S("Auto-sort is Off").."]" + end +end + +local function get_sort_fs(x, meta) + local mode = meta:get_int("sort_mode") + local fs = "button["..(x + 2)..",0;1,1;sort;"..S("Sort").."]" + if mode == 1 then + return fs.."button["..x..",0;2,1;sort_mode;"..S("Sort by Quantity").."]" + elseif mode == 2 then + return fs.."button["..x..",0;2,1;sort_mode;"..S("Sort by Type").."]" + elseif mode == 3 then + return fs.."button["..x..",0;2,1;sort_mode;"..S("Sort by Wear").."]" + elseif mode == 4 then + return fs.."button["..x..",0;2,1;sort_mode;"..S("Natural sort").."]" + else + return fs.."button["..x..",0;2,1;sort_mode;"..S("Sort by Item").."]" + end +end + +function technic.chests.get_formspec(data) + local formspec = {} + local top_width = (data.infotext and 6 or 0) + (data.autosort and 2 or 0) + (data.sort and 3 or 0) + local bottom_width = (data.quickmove and 3 or 0) + ((data.color or data.digilines) and 3 or 0) + 8 + local width = math.max(top_width, bottom_width, data.width) + local padding = (width - bottom_width) / 2 + if data.quickmove and (data.color or data.digilines) then + padding = (width - bottom_width) / 4 + elseif data.quickmove or data.color or data.digilines then + padding = (width - bottom_width) / 3 + end + local player_inv_left = padding + if data.quickmove then + player_inv_left = padding + 3 + padding + end + local player_inv_top = data.height + (has_pipeworks and 1.6 or 1.3) + local height = data.height + (has_pipeworks and 5.4 or 5.1) + local chest_inv_left = (width - data.width) / 2 + formspec.base = + "size["..width..","..height.."]".. + "list[context;main;"..chest_inv_left..",1;"..data.width..","..data.height..";]".. + "list[current_player;main;"..player_inv_left..","..player_inv_top..";8,4;]".. + "listring[context;main]".. + "listring[current_player;main]".. + default.get_hotbar_bg(player_inv_left, player_inv_top) + if data.quickmove then + formspec.base = formspec.base..get_quickmove_fs(padding, data.height + 1.2) + end + formspec.padding = padding + formspec.width = width + return formspec +end + +function technic.chests.update_formspec(pos, data, edit_infotext) + local formspec = data.formspec.base + local meta = minetest.get_meta(pos) + if data.infotext then + formspec = formspec..get_infotext_fs(edit_infotext, meta) + end + if data.sort then + formspec = formspec..get_sort_fs(data.formspec.width - 3, meta) + if data.autosort then + formspec = formspec..get_autosort_fs(data.formspec.width - 5, meta) + end + end + if has_pipeworks then + local offset = data.quickmove and (data.formspec.padding * 2 + 3) or data.formspec.padding + formspec = formspec..get_pipeworks_fs(offset, data.height + 1, meta) + end + if data.color or data.digilines then + local offset = data.quickmove and (data.formspec.padding * 3 + 11) or (data.formspec.padding * 2 + 8) + if data.color then + formspec = formspec..get_color_fs(offset, data.height + 1.2, meta) + else + formspec = formspec..get_digilines_fs(offset, data.height + 1.2, meta) + end + end + meta:set_string("formspec", formspec) +end + +function technic.chests.get_receive_fields(nodename, data) + return function(pos, formname, fields, player) + if not fields or not player then + return + end + local meta = minetest.get_meta(pos) + local chest_inv = meta:get_inventory() + local player_inv = player:get_inventory() + if fields.quit then + if meta:get_int("autosort") == 1 then + technic.chests.sort_inv(chest_inv, meta:get_int("sort_mode")) + end + technic.chests.update_formspec(pos, data) + return + end + if not technic.chests.change_allowed(pos, player, data.locked, data.protected) then + return + end + if data.sort and fields.sort then + technic.chests.sort_inv(chest_inv, meta:get_int("sort_mode")) + return + end + if data.quickmove then + if fields.all_to_chest then + local moved_items = technic.chests.move_inv(player_inv, chest_inv) + if data.digilines and meta:get_int("send_put") == 1 then + technic.chests.send_digiline_message(pos, "put", player, moved_items) + end + technic.chests.log_inv_change(pos, player:get_player_name(), "put", "stuff") + return + elseif fields.all_to_inv then + local moved_items = technic.chests.move_inv(chest_inv, player_inv) + if data.digilines and meta:get_int("send_take") == 1 then + technic.chests.send_digiline_message(pos, "take", player, moved_items) + end + technic.chests.log_inv_change(pos, player:get_player_name(), "take", "stuff") + return + elseif fields.existing_to_chest then + local items = technic.chests.get_inv_items(chest_inv) + local moved_items = technic.chests.move_inv(player_inv, chest_inv, items) + if data.digilines and meta:get_int("send_put") == 1 then + technic.chests.send_digiline_message(pos, "put", player, moved_items) + end + technic.chests.log_inv_change(pos, player:get_player_name(), "put", "stuff") + return + end + end + if not technic.chests.change_allowed(pos, player, data.locked, true) then + return -- Protect settings from being changed, even for open chests + end + if has_pipeworks then + pipeworks.fs_helpers.on_receive_fields(pos, fields) + end + if data.sort and fields.sort_mode then + local value = meta:get_int("sort_mode") + meta:set_int("sort_mode", (value + 1) % 5) + end + if data.autosort and fields.autosort then + local value = meta:get_int("autosort") == 1 and 0 or 1 + meta:set_int("autosort", value) + end + if data.color then + for i = 1, 16 do + if fields["color_button"..i] then + local node = minetest.get_node(pos) + if technic.chests.colors[i] then + node.name = nodename.."_"..technic.chests.colors[i][1] + else + node.name = nodename + end + minetest.swap_node(pos, node) + meta:set_int("color", i) + break + end + end + end + if data.digilines then + if fields.save_channel and fields.channel then + meta:set_string("channel", fields.channel) + end + for _,setting in pairs({"send_put", "send_take", "send_inject", "send_pull", "send_overflow"}) do + if fields[setting] then + local value = fields[setting] == "true" and 1 or 0 + meta:set_int(setting, value) + end + end + end + if data.infotext then + if fields.edit_infotext then + technic.chests.update_formspec(pos, data, true) + return + elseif fields.save_infotext and fields.infotext then + meta:set_string("infotext", fields.infotext) + end + end + technic.chests.update_formspec(pos, data) + end +end diff --git a/mods/technic_plus_beta/technic_chests/init.lua b/mods/technic_plus_beta/technic_chests/init.lua new file mode 100644 index 00000000..386e7bd7 --- /dev/null +++ b/mods/technic_plus_beta/technic_chests/init.lua @@ -0,0 +1,82 @@ + +local S = minetest.get_translator(minetest.get_current_modname()) + +local modpath = minetest.get_modpath("technic_chests") + +technic = rawget(_G, "technic") or {} +technic.chests = {} + +technic.chests.colors = { + {"black", S("Black")}, + {"blue", S("Blue")}, + {"brown", S("Brown")}, + {"cyan", S("Cyan")}, + {"dark_green", S("Dark Green")}, + {"dark_grey", S("Dark Grey")}, + {"green", S("Green")}, + {"grey", S("Grey")}, + {"magenta", S("Magenta")}, + {"orange", S("Orange")}, + {"pink", S("Pink")}, + {"red", S("Red")}, + {"violet", S("Violet")}, + {"white", S("White")}, + {"yellow", S("Yellow")}, +} + +function technic.chests.change_allowed(pos, player, owned, protected) + if owned then + if minetest.is_player(player) and not default.can_interact_with_node(player, pos) then + return false + end + elseif protected then + if minetest.is_protected(pos, player:get_player_name()) then + return false + end + end + return true +end + +if minetest.get_modpath("digilines") then + dofile(modpath.."/digilines.lua") +end + +dofile(modpath.."/formspec.lua") +dofile(modpath.."/inventory.lua") +dofile(modpath.."/register.lua") +dofile(modpath.."/chests.lua") + +-- Undo all of the locked wooden chest recipes, and just make them use a padlock. +minetest.register_on_mods_loaded(function() + minetest.clear_craft({output = "default:chest_locked"}) + minetest.register_craft({ + output = "default:chest_locked", + recipe = { + { "group:wood", "group:wood", "group:wood" }, + { "group:wood", "basic_materials:padlock", "group:wood" }, + { "group:wood", "group:wood", "group:wood" } + } + }) + minetest.register_craft({ + output = "default:chest_locked", + type = "shapeless", + recipe = { + "default:chest", + "basic_materials:padlock" + } + }) +end) + +-- Conversion for old chests +minetest.register_lbm({ + name = "technic_chests:old_chest_conversion", + nodenames = {"group:technic_chest"}, + run_at_every_load = false, + action = function(pos, node) + -- Use `on_construct` function because that has data from register function + local def = minetest.registered_nodes[node.name] + if def and def.on_construct then + def.on_construct(pos) + end + end, +}) diff --git a/mods/technic_plus_beta/technic_chests/inventory.lua b/mods/technic_plus_beta/technic_chests/inventory.lua new file mode 100644 index 00000000..7a6f845f --- /dev/null +++ b/mods/technic_plus_beta/technic_chests/inventory.lua @@ -0,0 +1,193 @@ + +-- Table to define order of type sorting +local itemtypes = { + node = 1, + tool = 2, + craft = 3, + none = 4 +} + +-- Not so good compatibility workaround for older than 5.3 servers +local get_translated_string = minetest.get_translated_string or function(_, name) return name end + +function technic.chests.sort_inv(inv, mode) + local list = inv:get_list("main") + if not list then return end + local unique_items = {} + if mode ~= 4 then + local items = {} + for _,stack in pairs(list) do + if not stack:is_empty() then + local name = stack:get_name() + local wear = stack:get_wear() + local meta = stack:get_meta():get_string("") + local count = stack:get_count() + local def = minetest.registered_items[name] + local itemtype = (def and itemtypes[def.type]) and def.type or "none" + local key = string.format("%s %05d %s", name, wear, meta) + if not items[key] then + items[key] = { + stacks = {stack}, + wear = wear, + count = count, + itemtype = itemtype, + key = key, + } + else + items[key].count = items[key].count + count + table.insert(items[key].stacks, stack) + end + end + end + for k,v in pairs(items) do + table.insert(unique_items, v) + end + end + if mode == 1 then + -- Quantity + table.sort(unique_items, function(a, b) + if a.count ~= b.count then + return a.count > b.count + end + return a.key < b.key + end) + elseif mode == 2 then + -- Type + table.sort(unique_items, function(a, b) + if itemtypes[a.itemtype] ~= itemtypes[b.itemtype] then + return itemtypes[a.itemtype] < itemtypes[b.itemtype] + end + return a.key < b.key + end) + elseif mode == 3 then + -- Wear + table.sort(unique_items, function(a, b) + if a.itemtype == "tool" and b.itemtype == "tool" then + if a.wear ~= b.wear then + return a.wear < b.wear + end + return a.key < b.key + elseif a.itemtype == "tool" or b.itemtype == "tool" then + return a.itemtype == "tool" + end + return a.key < b.key + end) + elseif mode == 4 then + -- Natural + do -- Collect item stacks for sorting + local function name(stack) + return stack:get_meta():get("infotext") + or stack:get_description() + or stack:get_name() + end + local lookup = {} + for _,stack in pairs(list) do + local key = get_translated_string('', name(stack)) + if not lookup[key] then + table.insert(unique_items, { + stacks = {stack}, + key = key, + }) + lookup[key] = #unique_items + else + table.insert(unique_items[lookup[key]].stacks, stack) + end + end + end + local function padnum(value) + local dec, n = string.match(value, "(%.?)0*(.+)") + return #dec > 0 and ("%.12f"):format(value) or ("%s%03d%s"):format(dec, #n, n) + end + table.sort(unique_items, function(a, b) + local sort_a = ("%s%3d"):format(tostring(a.key):gsub("%.?%d+", padnum), #b.key) + local sort_b = ("%s%3d"):format(tostring(b.key):gsub("%.?%d+", padnum), #a.key) + return sort_a < sort_b + end) + else + -- Item + table.sort(unique_items, function(a, b) + return a.key < b.key + end) + end + inv:set_list("main", {}) + for _,item in ipairs(unique_items) do + for _,stack in ipairs(item.stacks) do + inv:add_item("main", stack) + end + end +end + +function technic.chests.get_inv_items(inv) + local list = inv:get_list("main") + if not list then return {} end + local keys = {} + for _,stack in pairs(list) do + if not stack:is_empty() then + keys[stack:get_name()] = true + end + end + local items = {} + for k,_ in pairs(keys) do + items[#items + 1] = k + end + return items +end + +function technic.chests.move_inv(from_inv, to_inv, filter) + local list = from_inv:get_list("main") + if not list then return {} end + local moved_items = {} + for i,stack in ipairs(list) do + if not stack:is_empty() then + local move_stack = false + local name = stack:get_name() + if name == filter or not filter then + move_stack = true + elseif type(filter) == "table" then + for _,k in pairs(filter) do + if name == k then + move_stack = true + break + end + end + end + if move_stack then + local leftover = to_inv:add_item("main", stack) + if not leftover:is_empty() then + from_inv:set_stack("main", i, leftover) + stack:set_count(stack:get_count() - leftover:get_count()) + else + from_inv:set_stack("main", i, "") + end + table.insert(moved_items, stack:to_table()) + end + end + end + return moved_items +end + +function technic.chests.log_inv_change(pos, name, change, items) + local spos = minetest.pos_to_string(pos) + if change == "move" then + minetest.log("action", name.." moves "..items.." in chest at "..spos) + elseif change == "put" then + minetest.log("action", name.." puts "..items.." into chest at "..spos) + elseif change == "take" then + minetest.log("action", name.." takes "..items.." from chest at "..spos) + end +end + +function technic.chests.log_fast_move(pos, name, change, items) + local spos = minetest.pos_to_string(pos) + local itemlist = {} + for _, stack in ipairs(items) do + table.insert(itemlist, stack.name.." "..stack.count) + end + if change == "put" then + minetest.log("action", string.format("%s puts items into chest at %s: %s", + name, spos, table.concat(itemlist, ", "))) + elseif change == "take" then + minetest.log("action", string.format("%s takes items from chest at %s: %s", + name, spos, table.concat(itemlist, ", "))) + end +end diff --git a/mods/technic_plus_beta/technic_chests/locale/technic_chests.de.tr b/mods/technic_plus_beta/technic_chests/locale/technic_chests.de.tr new file mode 100644 index 00000000..21a6b7f1 --- /dev/null +++ b/mods/technic_plus_beta/technic_chests/locale/technic_chests.de.tr @@ -0,0 +1,63 @@ +# textdomain: technic_chests + +# German Translation for technic_chests +# Deutsche Übersetzung von technic_chests +# by Xanthin + +@1 Chest=@1truhe +@1 Locked Chest=Verschlossene @1truhe +@1 Locked Chest (owned by @2)=Verschlossene @1truhe (gehoert @2) +Color Filter: @1=Farbfilter: @1 +Edit chest description:=Bearbeite die Beschreibung + +# Colors +Black=Schwarz +Blue=Blau +Brown=Braun +Cyan=Tuerkis +Dark Green=Dunkelgruen +Dark Grey=Dunkelgrau +Green=Gruen +Grey=Grau +Magenta=Magenta +Orange=Orange +Pink=Rosa +Red=Rot +Violet=Violett +White=Weiss +Yellow=Gelb +None=Farblos + +# Materials +Copper=Kupfer +Gold=Gold +Iron=Eisen +Mithril=Mithril +Silver=Silber +Wooden=Holz + +# Sorting +Sort= +Auto-sort is @1= +Off= +On= +@1 (owned by @2)= +@1 Protected Chest= +Selected Color: @1= +Move existing to Chest= +Move specific= +Drop to move= +Move all to Chest= +Move all to Inventory= +Send player put messages= +Send player take messages= +Send tube inject messages= +Send tube pull messages= +Send overflow messages= +Auto-sort is On= +Auto-sort is Off= +Sort by Quantity= +Sort by Type= +Sort by Wear= +Natural sort= +Sort by Item= diff --git a/mods/technic_plus_beta/technic_chests/locale/technic_chests.es.tr b/mods/technic_plus_beta/technic_chests/locale/technic_chests.es.tr new file mode 100644 index 00000000..f394d559 --- /dev/null +++ b/mods/technic_plus_beta/technic_chests/locale/technic_chests.es.tr @@ -0,0 +1,61 @@ +# textdomain: technic_chests + +# technic_chests translation template + +@1 Chest=Cofre de @1 +@1 Locked Chest=Cofre de @1 Bloqueado +@1 Locked Chest (owned by @2)=Cofre de @1 Bloqueado (propiedad de @2) +Color Filter: @1=Filtro por Color: @1 +Edit chest description:=Editar la descripción del cofre + +# Colors +Black=Negro +Blue=Azul +Brown=Café +Cyan=Cian +Dark Green=Verde Oscuro +Dark Grey=Gris Oscuro +Green=Verde +Grey=Gris +Magenta=Magenta +Orange=Naranja +Pink=Rosado +Red=Rojo +Violet=Violeta +White=Blanco +Yellow=Amarillo +None=Ninguno + +# Materials +Copper=Cobre +Gold=Oro +Iron=Hierro +Mithril=Mitrilo +Silver=Plata +Wooden=Madera + +# Sorting +Sort=Ordenar +Auto-sort is @1=El orden Automático esta @1 +Off=Apagado +On=Encendido +@1 (owned by @2)= +@1 Protected Chest= +Selected Color: @1= +Move existing to Chest= +Move specific= +Drop to move= +Move all to Chest= +Move all to Inventory= +Send player put messages= +Send player take messages= +Send tube inject messages= +Send tube pull messages= +Send overflow messages= +Auto-sort is On= +Auto-sort is Off= +Sort by Quantity= +Sort by Type= +Sort by Wear= +Natural sort= +Sort by Item= diff --git a/mods/technic_plus_beta/technic_chests/locale/technic_chests.fr.tr b/mods/technic_plus_beta/technic_chests/locale/technic_chests.fr.tr new file mode 100644 index 00000000..06171c4c --- /dev/null +++ b/mods/technic_plus_beta/technic_chests/locale/technic_chests.fr.tr @@ -0,0 +1,61 @@ +# textdomain: technic_chests + +# technic_chests translation template + +@1 Chest=Coffre en @1 +@1 Locked Chest=Coffre verrouillé en @1 +@1 Locked Chest (owned by @2)=Coffre verrouillé en @1 (appartient à @2) +Color Filter: @1=Filtre couleur : @1 +Edit chest description:=Editer la description du coffre + +# Colors +Black=Noir +Blue=Bleu +Brown=Marron +Cyan=Cyan +Dark Green=Vert foncé +Dark Grey=Gris foncé +Green=Vert +Grey=Gris +Magenta=Magenta +Orange=Orange +Pink=Rose +Red=Rouge +Violet=Violet +White=Blanc +Yellow=Jaune +None=Rien + +# Materials +Copper=cuivre +Gold=or +Iron=fer +Mithril=mithril +Silver=argent +Wooden=bois + +# Sorting +Sort=Tri +Auto-sort is @1=Tri automatique @1 +Off=désactivé +On=activé +@1 (owned by @2)= +@1 Protected Chest= +Selected Color: @1= +Move existing to Chest= +Move specific= +Drop to move= +Move all to Chest= +Move all to Inventory= +Send player put messages= +Send player take messages= +Send tube inject messages= +Send tube pull messages= +Send overflow messages= +Auto-sort is On= +Auto-sort is Off= +Sort by Quantity= +Sort by Type= +Sort by Wear= +Natural sort= +Sort by Item= diff --git a/mods/technic_plus_beta/technic_chests/locale/technic_chests.ja.tr b/mods/technic_plus_beta/technic_chests/locale/technic_chests.ja.tr new file mode 100644 index 00000000..39189c59 --- /dev/null +++ b/mods/technic_plus_beta/technic_chests/locale/technic_chests.ja.tr @@ -0,0 +1,43 @@ +# textdomain: technic_chests + +# technic_chests japanese translation +# technic_chestsの日本語への翻訳 +# by damiemk + +@1 Chest=@1 のチェスト +@1 Locked Chest=@1 ロックされたチェスト +@1 Locked Chest (owned by @2)=@1 のロックされたチェスト (@2 が所有) +Color Filter: @1=カラーフィルター: @1 +Edit chest description:=チェストの説明を編集する: + +# Colors +Black=黒 +Blue=青 +Brown=茶色 +Cyan=シアン +Dark Green=濃い緑色 +Dark Grey=暗灰色 +Green=緑 +Grey=灰色 +Magenta=マジェンタ +Orange=橙色 +Pink=桃色 +Red=赤 +Violet=紫 +White=白 +Yellow=黄色 +None=デフォルト + +# Materials +Copper=銅 +Gold=金 +Iron=鉄 +Mithril=ミスリル +Silver=銀 +Wooden=木造 + +# Sorting +Sort=組織する +Auto-sort is @1=自動組織が @1 になっている +Off=オフ +On=オン diff --git a/mods/technic_plus_beta/technic_chests/locale/technic_chests.pl.tr b/mods/technic_plus_beta/technic_chests/locale/technic_chests.pl.tr new file mode 100644 index 00000000..aecb2be1 --- /dev/null +++ b/mods/technic_plus_beta/technic_chests/locale/technic_chests.pl.tr @@ -0,0 +1,63 @@ +# textdomain: technic_chests + +# Polish Translation for technic_chests +# Polskie tłumaczenie technic_chests +# by mat9117 + +@1 Chest=@1 Skrzynia +@1 Locked Chest=@1 Zamknięta skrzynia +@1 Locked Chest (owned by @2)=@1 Zamknięta skrzynia (należy do @2) +Color Filter: @1=Filtr kolorów: @1 +Edit chest description:=Edytuj opis skrzyni + +# Colors +Black=Czarny +Blue=Niebieski +Brown=Brązowy +Cyan=Cyan +Dark Green=Ciemnozielony +Dark Grey=Ciemnoszary +Green=Zielony +Grey=Szary +Magenta=Magenta +Orange=Pomarańczowy +Pink=Różowy +Red=Czerwony +Violet=Fioletowy +White=Biały +Yellow=Żółty +None=Żaden + +# Materials +Copper=Miedziana +Gold=Złota +Iron=Żelazna +Mithril=Mithrilowa +Silver=Srebrna +Wooden=Drewniana + +# Sorting +Sort=Sortuj +Auto-sort is @1=Autosortowanie jest @1 +Off=Wyłaczone +On=Włączone +@1 (owned by @2)= +@1 Protected Chest= +Selected Color: @1= +Move existing to Chest= +Move specific= +Drop to move= +Move all to Chest= +Move all to Inventory= +Send player put messages= +Send player take messages= +Send tube inject messages= +Send tube pull messages= +Send overflow messages= +Auto-sort is On= +Auto-sort is Off= +Sort by Quantity= +Sort by Type= +Sort by Wear= +Natural sort= +Sort by Item= diff --git a/mods/technic_plus_beta/technic_chests/locale/technic_chests.pt_BR.tr b/mods/technic_plus_beta/technic_chests/locale/technic_chests.pt_BR.tr new file mode 100644 index 00000000..1208c7d3 --- /dev/null +++ b/mods/technic_plus_beta/technic_chests/locale/technic_chests.pt_BR.tr @@ -0,0 +1,63 @@ +# textdomain: technic_chests + +# Braziliam portuguese translation for technic_chests +# Tradução portuguesa brasileira para technic_chests +# By Sires + +@1 Chest=Baú @1 +@1 Locked Chest=Baú Trancado @1 +@1 Locked Chest (owned by @2)=Baú Trancado @1 (pertence a/à @2) +Color Filter: @1=Filtro de Cor: @1 +Edit chest description:=Editar descrição do baú: + +# Colors +Black=Preto +Blue=Azul +Brown=Marrom +Cyan=Ciano +Dark Green=Verde Escuro +Dark Grey=Cinza Escuro +Green=Verde +Grey=Cinza +Magenta=Magenta +Orange=Laranja +Pink=Rosa +Red=Vermelho +Violet=Violeta +White=Branco +Yellow=Amarelo +None=Nada + +# Materials +Copper=Cobre +Gold=Ouro +Iron=Ferro +Mithril=Mithril +Silver=Prata +Wooden=de Madeira + +# Sorting +Sort=Ordenar +Auto-sort is @1=Auto-ordenação está @1 +Off=Desligada +On=Ligada +@1 (owned by @2)= +@1 Protected Chest= +Selected Color: @1= +Move existing to Chest= +Move specific= +Drop to move= +Move all to Chest= +Move all to Inventory= +Send player put messages= +Send player take messages= +Send tube inject messages= +Send tube pull messages= +Send overflow messages= +Auto-sort is On= +Auto-sort is Off= +Sort by Quantity= +Sort by Type= +Sort by Wear= +Natural sort= +Sort by Item= diff --git a/mods/technic_plus_beta/technic_chests/locale/technic_chests.tr.tr b/mods/technic_plus_beta/technic_chests/locale/technic_chests.tr.tr new file mode 100644 index 00000000..5cde5fe1 --- /dev/null +++ b/mods/technic_plus_beta/technic_chests/locale/technic_chests.tr.tr @@ -0,0 +1,63 @@ +# textdomain: technic_chests + +# Turkish translation +# mahmutelmas06@hotmail.com +# Türkçe çeviri + +@1 Chest=@1 Sandık +@1 Locked Chest=@1 Kilitli sandık +@1 Locked Chest (owned by @2)=@1 Kilitli sandık (Sahibi @2) +Color Filter: @1=Renk süzgeci: @1 +Edit chest description:=Sandık bilgilerini düzenle + +# Colors - Renkler +Black=Siyah +Blue=Mavi +Brown=Kahverengi +Cyan=Cam göbeği +Dark Green=Koyu yeşil +Dark Grey=Koyu gri +Green=Yeşil +Grey=Gri +Magenta=Mor +Orange=Turuncu +Pink=Pembe +Red=Kırmızı +Violet=Koyu mor +White=Beyaz +Yellow=Sarı +None=Hiç + +# Materials - Metaryeller +Copper=Bakır +Gold=Altın +Iron=Demir +Mithril=Mithril +Silver=Gümüş +Wooden=Ahşap + +# Sorting - Sıralama +Sort=Sırala +Auto-sort is @1=Otomatik sıralama @1 +Off=Kapalı +On=Açık +@1 (owned by @2)= +@1 Protected Chest= +Selected Color: @1= +Move existing to Chest= +Move specific= +Drop to move= +Move all to Chest= +Move all to Inventory= +Send player put messages= +Send player take messages= +Send tube inject messages= +Send tube pull messages= +Send overflow messages= +Auto-sort is On= +Auto-sort is Off= +Sort by Quantity= +Sort by Type= +Sort by Wear= +Natural sort= +Sort by Item= diff --git a/mods/technic_plus_beta/technic_chests/locale/technic_chests.zh_CN.tr b/mods/technic_plus_beta/technic_chests/locale/technic_chests.zh_CN.tr new file mode 100644 index 00000000..71566438 --- /dev/null +++ b/mods/technic_plus_beta/technic_chests/locale/technic_chests.zh_CN.tr @@ -0,0 +1,53 @@ +# textdomain: technic_chests + +@1 Chest=@1箱子 +@1 Locked Chest=上锁的@1箱子 +@1 Locked Chest (owned by @2)=上锁的@1锁箱子(归@2所有) +Color Filter: @1=颜色筛选器:@1 +Edit chest description:=编辑箱子描述: +Black=黑色 +Blue=蓝色 +Brown=棕色 +Cyan=青色 +Dark Green=深绿色 +Dark Grey=深灰色 +Green=绿色 +Grey=灰色 +Magenta=洋红 +Orange=橙色 +Pink=粉红色 +Red=红色 +Violet=紫罗兰色 +White=白色 +Yellow=黄色 +None=没有 +Copper=铜 +Gold=黄金 +Iron=铁 +Mithril=秘银 +Silver=银 +Wooden=木制 +Sort=排序 +Auto-sort is @1=自动排序为@1 +Off=关 +On=打开 +@1 (owned by @2)= +@1 Protected Chest= +Selected Color: @1= +Move existing to Chest= +Move specific= +Drop to move= +Move all to Chest= +Move all to Inventory= +Send player put messages= +Send player take messages= +Send tube inject messages= +Send tube pull messages= +Send overflow messages= +Auto-sort is On= +Auto-sort is Off= +Sort by Quantity= +Sort by Type= +Sort by Wear= +Natural sort= +Sort by Item= diff --git a/mods/technic_plus_beta/technic_chests/locale/template.txt b/mods/technic_plus_beta/technic_chests/locale/template.txt new file mode 100644 index 00000000..c7273cbe --- /dev/null +++ b/mods/technic_plus_beta/technic_chests/locale/template.txt @@ -0,0 +1,61 @@ +# textdomain: technic_chests + +# technic_chests translation template + +@1 Chest= +@1 Locked Chest= +@1 Locked Chest (owned by @2)= +Color Filter: @1= +Edit chest description:= + +# Colors +Black= +Blue= +Brown= +Cyan= +Dark Green= +Dark Grey= +Green= +Grey= +Magenta= +Orange= +Pink= +Red= +Violet= +White= +Yellow= +None= + +# Materials +Copper= +Gold= +Iron= +Mithril= +Silver= +Wooden= + +# Sorting +Sort= +Auto-sort is @1= +Off= +On= +@1 (owned by @2)= +@1 Protected Chest= +Selected Color: @1= +Move existing to Chest= +Move specific= +Drop to move= +Move all to Chest= +Move all to Inventory= +Send player put messages= +Send player take messages= +Send tube inject messages= +Send tube pull messages= +Send overflow messages= +Auto-sort is On= +Auto-sort is Off= +Sort by Quantity= +Sort by Type= +Sort by Wear= +Natural sort= +Sort by Item= diff --git a/mods/technic_plus_beta/technic_chests/mod.conf b/mods/technic_plus_beta/technic_chests/mod.conf new file mode 100644 index 00000000..155796f4 --- /dev/null +++ b/mods/technic_plus_beta/technic_chests/mod.conf @@ -0,0 +1,3 @@ +name = technic_chests +depends = default, basic_materials +optional_depends = technic, technic_worldgen, moreores, pipeworks, protector, digilines diff --git a/mods/technic_plus_beta/technic_chests/register.lua b/mods/technic_plus_beta/technic_chests/register.lua new file mode 100644 index 00000000..f7dd2533 --- /dev/null +++ b/mods/technic_plus_beta/technic_chests/register.lua @@ -0,0 +1,240 @@ + +local S = minetest.get_translator(minetest.get_current_modname()) + +local has_pipeworks = minetest.get_modpath("pipeworks") +local has_digilines = minetest.get_modpath("digilines") +local has_protector = minetest.get_modpath("protector") + +local tube_entry = has_pipeworks and "^pipeworks_tube_connection_metallic.png" or "" +local protector_overlay = has_protector and "^protector_logo.png" or "^technic_protector_overlay.png" + +local node_groups = { + snappy = 2, + choppy = 2, + oddly_breakable_by_hand = 2, + tubedevice = 1, + tubedevice_receiver = 1, + technic_chest = 1, +} + +local node_groups_no_inv = { + snappy = 2, + choppy = 2, + oddly_breakable_by_hand = 2, + tubedevice = 1, + tubedevice_receiver = 1, + technic_chest = 1, + not_in_creative_inventory = 1, +} + +local function get_tiles(data, color) + local tiles = data.tiles and table.copy(data.tiles) or { + data.texture_prefix.."_top.png"..tube_entry, + data.texture_prefix.."_top.png"..tube_entry, + data.texture_prefix.."_side.png"..tube_entry, + data.texture_prefix.."_side.png"..tube_entry, + data.texture_prefix.."_side.png"..tube_entry, + data.texture_prefix.."_front.png" + } + if data.color and color then + tiles[6] = tiles[6].."^technic_chest_overlay_"..technic.chests.colors[color][1]..".png" + end + if data.locked then + tiles[6] = tiles[6].."^"..data.texture_prefix.."_lock_overlay.png" + elseif data.protected then + tiles[6] = tiles[6]..protector_overlay + end + return tiles +end + +function technic.chests.register_chest(nodename, data) + assert(data.tiles or data.texture_prefix, "technic.chests.register_chest: tiles or texture_prefix required") + assert(data.description, "technic.chests.register_chest: description required") + local colon + colon, nodename = nodename:match("^(:?)(.+)") + + if data.digilines and not has_digilines then + data.digilines = nil + end + + data.formspec = technic.chests.get_formspec(data) + local def = { + description = data.description, + tiles = data.tiles or get_tiles(data), + paramtype2 = "facedir", + is_ground_content = false, + legacy_facedir_simple = true, + groups = node_groups, + sounds = default.node_sound_wood_defaults(), + drop = nodename, + after_place_node = function(pos, placer) + local meta = minetest.get_meta(pos) + if data.locked then + local owner = placer:get_player_name() or "" + meta:set_string("owner", owner) + meta:set_string("infotext", S("@1 (owned by @2)", data.description, owner)) + else + meta:set_string("infotext", data.description) + end + if has_pipeworks then + pipeworks.after_place(pos) + end + end, + after_dig_node = function(pos) + if has_pipeworks then + pipeworks.after_dig(pos) + end + end, + tube = { + insert_object = function(pos, node, stack) + local meta = minetest.get_meta(pos) + if data.digilines and meta:get_int("send_inject") == 1 then + technic.chests.send_digiline_message(pos, "inject", nil, {stack:to_table()}) + end + technic.chests.log_inv_change(pos, "pipeworks tube", "put", stack:get_name()) + return meta:get_inventory():add_item("main", stack) + end, + can_insert = function(pos, node, stack) + local meta = minetest.get_meta(pos) + if meta:get_int("splitstacks") == 1 then + stack = stack:peek_item(1) + end + local can_insert = meta:get_inventory():room_for_item("main", stack) + if not can_insert and data.digilines and meta:get_int("send_overflow") == 1 then + technic.chests.send_digiline_message(pos, "overflow", nil, {stack:to_table()}) + end + return can_insert + end, + remove_items = function(pos, node, stack, dir, count, list, index) + local meta = minetest.get_meta(pos) + local item = stack:take_item(count) + meta:get_inventory():set_stack(list, index, stack) + if data.digilines and meta:get_int("send_pull") == 1 then + technic.chests.send_digiline_message(pos, "pull", nil, {item:to_table()}) + end + technic.chests.log_inv_change(pos, "pipeworks tube", "take", item:get_name()) + return item + end, + input_inventory = "main", + connect_sides = {left=1, right=1, front=1, back=1, top=1, bottom=1}, + }, + on_construct = function(pos) + local inv = minetest.get_meta(pos):get_inventory() + inv:set_size("main", data.width * data.height) + if data.quickmove then + inv:set_size("quickmove", 1) + end + technic.chests.update_formspec(pos, data) + end, + can_dig = function(pos, player) + if not technic.chests.change_allowed(pos, player, data.locked, data.protected) then + return false + end + return minetest.get_meta(pos):get_inventory():is_empty("main") + end, + allow_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player) + if not technic.chests.change_allowed(pos, player, data.locked, data.protected) then + return 0 + end + if data.quickmove and to_list == "quickmove" then + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + local stack = inv:get_stack("main", from_index) + local moved_items = technic.chests.move_inv(inv, player:get_inventory(), stack:get_name()) + if data.digilines and meta:get_int("send_take") == 1 then + technic.chests.send_digiline_message(pos, "take", player, moved_items) + end + technic.chests.log_fast_move(pos, player:get_player_name(), "take", moved_items) + return 0 + end + return count + end, + allow_metadata_inventory_put = function(pos, listname, index, stack, player) + if not technic.chests.change_allowed(pos, player, data.locked, data.protected) then + return 0 + end + if data.quickmove and listname == "quickmove" then + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + local moved_items = technic.chests.move_inv(player:get_inventory(), inv, stack:get_name()) + if data.digilines and meta:get_int("send_put") == 1 then + technic.chests.send_digiline_message(pos, "put", player, moved_items) + end + technic.chests.log_fast_move(pos, player:get_player_name(), "put", moved_items) + return 0 + end + return stack:get_count() + end, + allow_metadata_inventory_take = function(pos, listname, index, stack, player) + if not technic.chests.change_allowed(pos, player, data.locked, data.protected) then + return 0 + end + return stack:get_count() + end, + on_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player) + technic.chests.log_inv_change(pos, player:get_player_name(), "move", "stuff") + end, + on_metadata_inventory_put = function(pos, listname, index, stack, player) + if data.digilines and minetest.get_meta(pos):get_int("send_put") == 1 then + technic.chests.send_digiline_message(pos, "put", player, {stack:to_table()}) + end + technic.chests.log_inv_change(pos, player:get_player_name(), "put", stack:get_name()) + end, + on_metadata_inventory_take = function(pos, listname, index, stack, player) + if data.digilines and minetest.get_meta(pos):get_int("send_take") == 1 then + technic.chests.send_digiline_message(pos, "take", player, {stack:to_table()}) + end + technic.chests.log_inv_change(pos, player:get_player_name(), "take", stack:get_name()) + end, + on_blast = function(pos) + if data.locked or data.protected then + return + end + local drops = {} + default.get_inventory_drops(pos, "main", drops) + drops[#drops+1] = nodename + minetest.remove_node(pos) + return drops + end, + on_receive_fields = technic.chests.get_receive_fields(nodename, data), + } + if data.locked then + def.on_skeleton_key_use = function(pos, player, newsecret) + -- Copied from default chests.lua + local meta = minetest.get_meta(pos) + local owner = meta:get_string("owner") + local player_name = player:get_player_name() + if owner ~= player_name then + minetest.record_protection_violation(pos, player_name) + minetest.chat_send_player(player_name, "You do not own this chest.") + return nil + end + local secret = meta:get_string("key_lock_secret") + if secret == "" then + secret = newsecret + meta:set_string("key_lock_secret", secret) + end + return secret, "a locked chest", owner + end + end + if data.digilines then + def.digiline = { + receptor = {}, + effector = { + action = technic.chests.digiline_effector + }, + } + end + minetest.register_node(colon..nodename, def) + if data.color then + for i = 1, 15 do + local colordef = {} + for k, v in pairs(def) do + colordef[k] = v + end + colordef.groups = node_groups_no_inv + colordef.tiles = get_tiles(data, i) + minetest.register_node(colon..nodename.."_"..technic.chests.colors[i][1], colordef) + end + end +end diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_checkmark_icon.png b/mods/technic_plus_beta/technic_chests/textures/technic_checkmark_icon.png new file mode 100644 index 00000000..d0d55fd1 Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_checkmark_icon.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_black.png b/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_black.png new file mode 100644 index 00000000..a1da761c Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_black.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_blue.png b/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_blue.png new file mode 100644 index 00000000..14896e84 Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_blue.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_brown.png b/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_brown.png new file mode 100644 index 00000000..8a05055d Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_brown.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_cyan.png b/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_cyan.png new file mode 100644 index 00000000..f5cb9d99 Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_cyan.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_dark_green.png b/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_dark_green.png new file mode 100644 index 00000000..a40ccacf Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_dark_green.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_dark_grey.png b/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_dark_grey.png new file mode 100644 index 00000000..bd8e8a5e Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_dark_grey.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_green.png b/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_green.png new file mode 100644 index 00000000..ab3b36b3 Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_green.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_grey.png b/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_grey.png new file mode 100644 index 00000000..c217c8df Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_grey.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_magenta.png b/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_magenta.png new file mode 100644 index 00000000..76dfcbdb Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_magenta.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_orange.png b/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_orange.png new file mode 100644 index 00000000..f2e78642 Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_orange.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_pink.png b/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_pink.png new file mode 100644 index 00000000..3a545ad9 Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_pink.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_red.png b/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_red.png new file mode 100644 index 00000000..6fabfff3 Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_red.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_violet.png b/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_violet.png new file mode 100644 index 00000000..bb64ba8f Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_violet.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_white.png b/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_white.png new file mode 100644 index 00000000..6b4fea3c Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_white.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_yellow.png b/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_yellow.png new file mode 100644 index 00000000..c181b2f1 Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_chest_overlay_yellow.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton0.png b/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton0.png new file mode 100644 index 00000000..bc6080bc Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton0.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton1.png b/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton1.png new file mode 100644 index 00000000..fa4af24a Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton1.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton10.png b/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton10.png new file mode 100644 index 00000000..640324ad Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton10.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton11.png b/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton11.png new file mode 100644 index 00000000..d2773737 Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton11.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton12.png b/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton12.png new file mode 100644 index 00000000..6cc05655 Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton12.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton13.png b/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton13.png new file mode 100644 index 00000000..15177989 Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton13.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton14.png b/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton14.png new file mode 100644 index 00000000..03438ce4 Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton14.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton15.png b/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton15.png new file mode 100644 index 00000000..b670a8a7 Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton15.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton2.png b/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton2.png new file mode 100644 index 00000000..264eff06 Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton2.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton3.png b/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton3.png new file mode 100644 index 00000000..df04ae8f Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton3.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton4.png b/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton4.png new file mode 100644 index 00000000..3f1359fa Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton4.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton5.png b/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton5.png new file mode 100644 index 00000000..db5f31fb Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton5.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton6.png b/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton6.png new file mode 100644 index 00000000..5706a969 Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton6.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton7.png b/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton7.png new file mode 100644 index 00000000..69653806 Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton7.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton8.png b/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton8.png new file mode 100644 index 00000000..4e16a31d Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton8.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton9.png b/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton9.png new file mode 100644 index 00000000..99bf2bb3 Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_colorbutton9.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_copper_chest_front.png b/mods/technic_plus_beta/technic_chests/textures/technic_copper_chest_front.png new file mode 100644 index 00000000..629c4a8f Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_copper_chest_front.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_copper_chest_lock_overlay.png b/mods/technic_plus_beta/technic_chests/textures/technic_copper_chest_lock_overlay.png new file mode 100644 index 00000000..d5924031 Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_copper_chest_lock_overlay.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_copper_chest_side.png b/mods/technic_plus_beta/technic_chests/textures/technic_copper_chest_side.png new file mode 100644 index 00000000..7ba21dda Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_copper_chest_side.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_copper_chest_top.png b/mods/technic_plus_beta/technic_chests/textures/technic_copper_chest_top.png new file mode 100644 index 00000000..31a51ecf Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_copper_chest_top.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_gold_chest_front.png b/mods/technic_plus_beta/technic_chests/textures/technic_gold_chest_front.png new file mode 100644 index 00000000..db566ded Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_gold_chest_front.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_gold_chest_lock_overlay.png b/mods/technic_plus_beta/technic_chests/textures/technic_gold_chest_lock_overlay.png new file mode 100644 index 00000000..cec7369a Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_gold_chest_lock_overlay.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_gold_chest_side.png b/mods/technic_plus_beta/technic_chests/textures/technic_gold_chest_side.png new file mode 100644 index 00000000..d556c141 Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_gold_chest_side.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_gold_chest_top.png b/mods/technic_plus_beta/technic_chests/textures/technic_gold_chest_top.png new file mode 100644 index 00000000..79b0367a Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_gold_chest_top.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_iron_chest_front.png b/mods/technic_plus_beta/technic_chests/textures/technic_iron_chest_front.png new file mode 100644 index 00000000..b0cffb5f Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_iron_chest_front.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_iron_chest_lock_overlay.png b/mods/technic_plus_beta/technic_chests/textures/technic_iron_chest_lock_overlay.png new file mode 100644 index 00000000..b7409301 Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_iron_chest_lock_overlay.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_iron_chest_side.png b/mods/technic_plus_beta/technic_chests/textures/technic_iron_chest_side.png new file mode 100644 index 00000000..ecb3e821 Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_iron_chest_side.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_iron_chest_top.png b/mods/technic_plus_beta/technic_chests/textures/technic_iron_chest_top.png new file mode 100644 index 00000000..57484a41 Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_iron_chest_top.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_mithril_chest_front.png b/mods/technic_plus_beta/technic_chests/textures/technic_mithril_chest_front.png new file mode 100644 index 00000000..1cde4212 Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_mithril_chest_front.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_mithril_chest_lock_overlay.png b/mods/technic_plus_beta/technic_chests/textures/technic_mithril_chest_lock_overlay.png new file mode 100644 index 00000000..ec5ceec0 Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_mithril_chest_lock_overlay.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_mithril_chest_side.png b/mods/technic_plus_beta/technic_chests/textures/technic_mithril_chest_side.png new file mode 100644 index 00000000..12f6f1e5 Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_mithril_chest_side.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_mithril_chest_top.png b/mods/technic_plus_beta/technic_chests/textures/technic_mithril_chest_top.png new file mode 100644 index 00000000..d3a66cee Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_mithril_chest_top.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_pencil_icon.png b/mods/technic_plus_beta/technic_chests/textures/technic_pencil_icon.png new file mode 100644 index 00000000..f8511c74 Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_pencil_icon.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_protector_overlay.png b/mods/technic_plus_beta/technic_chests/textures/technic_protector_overlay.png new file mode 100644 index 00000000..c6f6f51b Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_protector_overlay.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_silver_chest_front.png b/mods/technic_plus_beta/technic_chests/textures/technic_silver_chest_front.png new file mode 100644 index 00000000..e21046a7 Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_silver_chest_front.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_silver_chest_lock_overlay.png b/mods/technic_plus_beta/technic_chests/textures/technic_silver_chest_lock_overlay.png new file mode 100644 index 00000000..af71a01d Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_silver_chest_lock_overlay.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_silver_chest_side.png b/mods/technic_plus_beta/technic_chests/textures/technic_silver_chest_side.png new file mode 100644 index 00000000..98912abd Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_silver_chest_side.png differ diff --git a/mods/technic_plus_beta/technic_chests/textures/technic_silver_chest_top.png b/mods/technic_plus_beta/technic_chests/textures/technic_silver_chest_top.png new file mode 100644 index 00000000..773fa69b Binary files /dev/null and b/mods/technic_plus_beta/technic_chests/textures/technic_silver_chest_top.png differ diff --git a/mods/technic_plus_beta/technic_cnc/README.md b/mods/technic_plus_beta/technic_cnc/README.md new file mode 100644 index 00000000..0ef5636c --- /dev/null +++ b/mods/technic_plus_beta/technic_cnc/README.md @@ -0,0 +1,203 @@ +Technic CNC +----------------- + +Provides CNC machines that allow cutting nodes to selected shapes. + +[![luacheck](https://github.com/mt-mods/technic/actions/workflows/luacheck.yml/badge.svg)](https://github.com/mt-mods/technic/actions/workflows/luacheck.yml?query=branch%3Amaster) +[![mineunit](https://github.com/mt-mods/technic/actions/workflows/mineunit.yml/badge.svg)](https://github.com/mt-mods/technic/actions/workflows/mineunit.yml?query=branch%3Amaster) +[![mineunit](https://byob.yarr.is/mt-mods/technic/coverage-cnc)](https://github.com/mt-mods/technic/actions/workflows/mineunit.yml?query=branch%3Amaster+is%3Asuccess) + +# Machines + +### LV CNC Machine (technic:cnc) + +* Manufactures different shapes from provided raw materials. +* Manufactures products over time if technic is enabled. +* Manufactures products immediately when selecting program if technic is not enabled. +* 1 inventory slot for input materials, 4 inventory slots for products. + +### LV CNC Machine Mk2 (technic:cnc_mk2) + +* All features provided by technic:cnc +* Only available if technic, digilines or pipeworks is available. +* Has digiline API for programming, enabling, disabling, getting status and getting programs. +* Can use technic upgrades for energy saving (RE battery), auto eject (CLU), and public use (chest). +* Has support for pipeworks tubes for receiving raw materials or taking products using filter injectors. + +# Configuration (minetest.conf) + +| Configuration key | Default | Description +|-----------------------------|-------------|--------------------------------------------------------------------------| +| technic_cnc_use_technic | true | Use technic power networks and upgrades, machines require LV network | +| technic_cnc_use_digilines | true | Use digilines to allow configuring machines using digiline messages | +| technic_cnc_use_pipeworks | true | Use pipeworks for tube and injector support | + +# Digilines (technic:cnc_mk2) + +### Simple commands, type: string + +| Command | Description +|-------------------|--------------------------------------------------------------------------------------------------| +| enable | Enables machines, machine will attempt manufacturing products if materials are available | +| disable | Disables machines, machine will stop manufacturing and will not consume power | +| programs | Machine will send table containing all possible programs as keys and product count as values | +| status | Machine will send table with following keys: enabled, time, size, program, user, material | + +Example reply for `programs` command: +```lua +{ + element_end = 2, + slope_inner_edge = 1, + twocurvededge = 1, + cylinder = 2, + stick = 8, + spike = 1, + element_cross = 1, + slope_edge_upsdown = 1, + cylinder_horizontal = 2, + element_edge = 2, + oblate_spheroid = 1, + slope = 2, + slope_lying = 2, + slope_inner_edge_upsdown = 1, + sphere = 1, + element_straight = 2, + slope_upsdown = 2, + pyramid = 2, + element_t = 1, + onecurvededge = 1, + slope_edge = 1 +} +``` + +Example reply for `status` command: +```lua +{ + enabled = true, + time = 2, + user = "SX", + material = { + count = 98, + name = "default:desert_sandstone", + }, + program = "sphere", + size = 2 +} +``` + +### Complex commands, type: table + +Command can contain any combination of keys and will affect only relevant parts of functionality. + +Example with all possible keys set: + +```lua +{ + program = "sphere", + size = 2, + enabled = true +} +``` + +Value for `program` should be one of keys returned by simple command `programs`, it will change CNC program. + +Value for `size` should be number `1` or `2`, other numbers or types are not acceppted. Sets size of programs that can +produce both half and full sized nodes. `2` is for half size and `1` for full size products. + +Value for `ènabled` should be `true` or `false`. Functions similar to simple string commands `enable` and `disable`. + +Invalid values or value types are simply skipped and not used, check your value types +and keys for typos if it seems that machine accepts commands only partially. + +# Technic CNC API for extensions + +API is incomplete, feel free to give suggestions for functionality or other feedback about CNC API. + +### CNC material, program and product extension API: + +*Currently undetermined / to be determined.* + +### CNC machine control and manufacturing API: +```lua +-- Get product item string with count for given program, material and size +-- Return value example: default:desert_sandstone_technic_cnc_stick 8 +function technic_cnc.get_product(program, material, size) + +-- Set program for cnc machine with optional size, size is not changed if size is nil +function technic_cnc.set_program(meta, program, size) + +-- Returns true if CNC machine is enabled and false if machine is disabled +function technic_cnc.is_enabled(meta) -- return true|false + +-- Enables CNC machine +function technic_cnc.enable(meta) + +-- Disables CNC machine +function technic_cnc.disable(meta) + +-- Finds first input stack with items +function technic_cnc.get_material(inventory) + +-- Manufacture product based on current program. +-- Updates src and dst inventories taking required amount from src inventory and placing products into dst inventory +function technic_cnc.produce(meta, inventory) +``` + +### Register new CNC machine defined by your mod: +```lua +-- Textures for machine +local tiles = { + "my_mod_my_cnc_machine_top.png", + "my_mod_my_cnc_machine_bottom.png", + "my_mod_my_cnc_machine_right.png", + "my_mod_my_cnc_machine_left.png", + "my_mod_my_cnc_machine_back.png", + "my_mod_my_cnc_machine_front.png" +} +local tiles_active = { + "my_mod_my_cnc_machine_top_active.png", + "my_mod_my_cnc_machine_bottom_active.png", + "my_mod_my_cnc_machine_right_active.png", + "my_mod_my_cnc_machine_left_active.png", + "my_mod_my_cnc_machine_back_active.png", + "my_mod_my_cnc_machine_front_active.png" +} + +-- +-- Add pipeworks tube connection with overlay textures if pipeworks is available for CNC machines +-- +local tube_def = nil +if technic_cnc.pipeworks then + tiles = technic_cnc.pipeworks.tube_entry_overlay(tiles) + tiles_active = technic_cnc.pipeworks.tube_entry_overlay(tiles_active) + tube_def = technic_cnc.pipeworks.new_tube() +end + +-- +-- Default values provided with example machine registration below. +-- +-- Required definition keys that do not have default value: +-- description, programs, demand +-- Optional definition keys that do not have default value: +-- recipe, upgrade, digilines, tube +-- +technic_cnc.register_cnc_machine("my_mod_name:my_cnc_machine", { + description = "My Mod - My CNC Machine", + input_size = 1, + output_size = 4, + digilines = technic_cnc.digilines, + upgrade = true, + tube = tube_def, + programs = { "sphere", "spike", "stick", "slope" }, + demand = 539, + get_formspec = technic_cnc.formspec.get_formspec, + on_receive_fields = technic_cnc.formspec.on_receive_fields, + recipe = { + {'default:glass', 'default:glass', 'default:glass'}, + {'default:steelblock', 'default:diamond', 'default:steelblock'}, + {'default:steelblock', '', 'default:steelblock'}, + }, + tiles = tiles, + tiles_active = tiles_active, +}) +``` diff --git a/mods/technic_plus_beta/technic_cnc/api.lua b/mods/technic_plus_beta/technic_cnc/api.lua new file mode 100644 index 00000000..0865780a --- /dev/null +++ b/mods/technic_plus_beta/technic_cnc/api.lua @@ -0,0 +1,459 @@ +-- API for the technic CNC machine +-- Again code is adapted from the NonCubic Blocks MOD v1.4 by yves_de_beck + +local S = technic_cnc.getter +local ALPHA_CLIP = minetest.features.use_texture_alpha_string_modes and "clip" or true + +-- Generic function for registering all the different node types +function technic_cnc.register_program(recipeitem, suffix, model, groups, images, description, cbox, sbox) + + local dtype + local nodeboxdef + local meshdef + + if type(model) ~= "string" then -- assume a nodebox if it's a table or function call + dtype = "nodebox" + nodeboxdef = { + type = "fixed", + fixed = model + } + else + dtype = "mesh" + meshdef = model + end + + if cbox and not sbox then sbox = cbox end + + minetest.register_node(":"..recipeitem.."_"..suffix, { + description = description, + drawtype = dtype, + node_box = nodeboxdef, + mesh = meshdef, + tiles = images, + paramtype = "light", + paramtype2 = "facedir", + use_texture_alpha = ALPHA_CLIP, + walkable = true, + groups = groups, + is_ground_content = false, + selection_box = sbox, + collision_box = cbox + }) +end + +-- function to iterate over all the programs the CNC machine knows +function technic_cnc.register_all(recipeitem, groups, images, description) + for _, data in ipairs(technic_cnc.programs) do + -- Disable node creation for disabled node types for some material + local do_register = true + if technic_cnc.programs_disable[recipeitem] ~= nil then + for __, disable in ipairs(technic_cnc.programs_disable[recipeitem]) do + if disable == data.suffix then + do_register = false + end + end + end + -- Create the node if it passes the test + if do_register then + technic_cnc.register_program(recipeitem, data.suffix, data.model, + groups, images, description.." "..data.desc, data.cbox, data.sbox) + end + end +end + +-- REGISTER NEW TECHNIC_CNC_API's PART 2: +-- technic_cnc..register_element_end(subname, recipeitem, groups, images, desc_element_xyz) +------------------------------------------------------------------------------------------------------------ +function technic_cnc.register_slope_edge_etc(recipeitem, groups, images, desc_slope, desc_slope_lying, + desc_slope_upsdown, desc_slope_edge, desc_slope_inner_edge, desc_slope_upsdwn_edge, + desc_slope_upsdwn_inner_edge, desc_pyramid, desc_spike, desc_onecurvededge, desc_twocurvededge, + desc_cylinder, desc_cylinder_horizontal, desc_spheroid, desc_element_straight, desc_element_edge, + desc_element_t, desc_element_cross, desc_element_end) + technic_cnc.register_slope(recipeitem, groups, images, desc_slope) + technic_cnc.register_slope_lying(recipeitem, groups, images, desc_slope_lying) + technic_cnc.register_slope_upsdown(recipeitem, groups, images, desc_slope_upsdown) + technic_cnc.register_slope_edge(recipeitem, groups, images, desc_slope_edge) + technic_cnc.register_slope_inner_edge(recipeitem, groups, images, desc_slope_inner_edge) + technic_cnc.register_slope_edge_upsdown(recipeitem, groups, images, desc_slope_upsdwn_edge) + technic_cnc.register_slope_inner_edge_upsdown(recipeitem, groups, images, desc_slope_upsdwn_inner_edge) + technic_cnc.register_pyramid(recipeitem, groups, images, desc_pyramid) + technic_cnc.register_spike(recipeitem, groups, images, desc_spike) + technic_cnc.register_onecurvededge(recipeitem, groups, images, desc_onecurvededge) + technic_cnc.register_twocurvededge(recipeitem, groups, images, desc_twocurvededge) + technic_cnc.register_cylinder(recipeitem, groups, images, desc_cylinder) + technic_cnc.register_cylinder_horizontal(recipeitem, groups, images, desc_cylinder_horizontal) + technic_cnc.register_spheroid(recipeitem, groups, images, desc_spheroid) + technic_cnc.register_element_straight(recipeitem, groups, images, desc_element_straight) + technic_cnc.register_element_edge(recipeitem, groups, images, desc_element_edge) + technic_cnc.register_element_t(recipeitem, groups, images, desc_element_t) + technic_cnc.register_element_cross(recipeitem, groups, images, desc_element_cross) + technic_cnc.register_element_end(recipeitem, groups, images, desc_element_end) +end + +-- REGISTER STICKS: noncubic.register_xyz(recipeitem, groups, images, desc_element_xyz) +------------------------------------------------------------------------------------------------------------ +function technic_cnc.register_stick_etc(recipeitem, groups, images, desc_stick) + technic_cnc.register_stick(recipeitem, groups, images, desc_stick) +end + +function technic_cnc.register_elements(recipeitem, groups, images, desc_element_straight_double, + desc_element_edge_double, desc_element_t_double, desc_element_cross_double, desc_element_end_double) + technic_cnc.register_element_straight_double(recipeitem, groups, images, desc_element_straight_double) + technic_cnc.register_element_edge_double(recipeitem, groups, images, desc_element_edge_double) + technic_cnc.register_element_t_double(recipeitem, groups, images, desc_element_t_double) + technic_cnc.register_element_cross_double(recipeitem, groups, images, desc_element_cross_double) + technic_cnc.register_element_end_double(recipeitem, groups, images, desc_element_end_double) +end + +-- CNC MACHINE API +------------------------------------------------------------------------------------------------------------ + +function technic_cnc.get_product(program, material, size) + -- Get and return product item string with stack size or nil if product not available + local multiplier = technic_cnc.products[program] + if multiplier then + size = math.max(1, math.min(2, size)) + local twosize = technic_cnc.twosize_products[program] + local double = size == 1 and twosize and "_double" or "" + local product = ("%s_technic_cnc_%s%s"):format(material, program, double) + if minetest.registered_nodes[product] then + return ("%s %d"):format(product, multiplier * (twosize and size or 1)) + end + end +end + +function technic_cnc.set_program(meta, program, size) + if technic_cnc.products[program] then + if size then + meta:set_int("size", math.max(1, math.min(2, size))) + end + meta:set_string("program", program) + return true + end + return false +end + +function technic_cnc.is_enabled(meta) + return meta:get("disable") == nil +end + +function technic_cnc.enable(meta) + meta:set_string("disable", "") +end + +function technic_cnc.disable(meta) + meta:set_string("disable", "1") + meta:set_string("LV_EU_demand", "") +end + +function technic_cnc.get_material(inventory) + local srclist = inventory:get_list("src") + for index, stack in ipairs(srclist) do + if not stack:is_empty() then + return index, stack + end + end +end + +function technic_cnc.produce(meta, inventory) + -- Get and check program + local program = meta:get("program") + if program then + -- Get material stack + local index, materialstack = technic_cnc.get_material(inventory) + if index and materialstack then + -- Get product and produce items if output has enough space + local size = meta:get_int("size") + local product = technic_cnc.get_product(program, materialstack:get_name(), size) + if product and inventory:room_for_item("dst", product) then + -- Remove materials from input inventory + materialstack:take_item() + inventory:set_stack("src", index, materialstack) + + -- Add results to output inventory of machine + inventory:add_item("dst", product) + + return true + end + end + end + return false +end + +-- REGISTER MACHINES +------------------------------------------------------------------------------------------------------------ + +function technic_cnc.register_cnc_machine(nodename, def) + -- Basic sanity check for registration, prefer failing early + assert(type(nodename) == "string" and #nodename > 0, "nodename should be non empty string") + assert(type(def.description) == "string", "description field should be string") + assert(({["nil"]=1,number=1})[type(def.input_size)], "input_size field should be number if set") + assert(({["nil"]=1,number=1})[type(def.output_size)], "output_size field should be number if set") + assert(({["nil"]=1,["function"]=1})[type(def.get_formspec)], "get_formspec should be function if set") + assert(({["nil"]=1,["function"]=1})[type(def.on_receive_fields)], "on_receive_fields should be function if set") + assert(({["nil"]=1,["function"]=1})[type(def.technic_run)], "technic_run should be function if set") + assert(({["nil"]=1,table=1})[type(def.tube)], "tube field should be table if set") + + -- Register recipe if recipe given + if def.recipe then + minetest.register_craft({ + output = nodename, + recipe = def.recipe, + }) + end + + -- Collect / generate basic variables for CNC machine + local nodename_active = nodename .. "_active" + local idle_infotext = S("@1 Idle", def.description) + local active_infotext = S("@1 Active", def.description) + local unpowered_infotext = S("@1 Unpowered", def.description) + local groups = { cracky = 2, technic_machine = 1, technic_lv = 1 } + -- It is possible to override these using def fields + local on_receive_fields = def.on_receive_fields or technic_cnc.formspec.on_receive_fields + local get_formspec = def.get_formspec or technic_cnc.formspec.get_formspec + local input_size = def.input_size or 1 + local output_size = def.output_size or 4 + local technic_run + local after_dig_node + local allow_metadata_inventory_put + local allow_metadata_inventory_take + local allow_metadata_inventory_move + local can_dig + + -- Update few variables in definition table to make some things easier + def.get_formspec = get_formspec + def.input_size = input_size + def.output_size = output_size + + -- UPGRADE OLD CNC MACHINES + local function upgrade_machine(meta) + local oldmeta = meta:get("technic_power_machine") + if oldmeta then + local product = meta:get("cnc_product") + -- Remove old metadata fields + meta:set_string("cnc_product", "") + meta:set_string("cnc_multiplier", "") + meta:set_string("technic_power_machine", "") + if product then + -- Only executed for active machines, old inactive machines do not have cnc_product set + local program_raw = product:match("[%w_]+:[%w_]+_technic_cnc_([%w_]+)") + if program_raw then + local double = "_double" + local size = program_raw:sub(-#double) == double and 1 or 2 + local program = size == 1 and program_raw:sub(1, #program_raw - #double) or program_raw + meta:set_string("program", program) + meta:set_int("size", size) + end + meta:set_string("formspec", get_formspec(nodename, def, meta)) + end + end + end + + if technic_cnc.use_technic and not def.technic_run then + -- Check and get EU demand for Technic CNC machine + assert(type(def.demand) == "number", "demand field must be set for Technic CNC") + + -- Update machine state if needed + local function update_machine(pos, meta, oldname, newname, infotext, demand) + if demand then + meta:set_int("LV_EU_demand", demand) + end + meta:set_string("infotext", infotext) + technic.swap_node(pos, newname) + end + + -- Technic action code performing the transformation, use form handler for when not using technic + technic_run = function(pos, node) + local meta = minetest.get_meta(pos) + upgrade_machine(meta) + + local demand = def.demand + if def.upgrade then + local EU_upgrade, tube_upgrade = technic.handle_machine_upgrades(meta) + if EU_upgrade and EU_upgrade > 0 then + demand = math.max(0, demand - EU_upgrade * demand * 0.2) + end + technic.handle_machine_pipeworks(pos, tube_upgrade) + end + + if not technic_cnc.is_enabled(meta) or not meta:get("program") then + update_machine(pos, meta, node.name, nodename, idle_infotext, 0) + return + end + + -- Get and check material stack + local inv = meta:get_inventory() + if inv:is_empty("src") then + update_machine(pos, meta, node.name, nodename, idle_infotext, 0) + return + end + + local eu_input = meta:get_int("LV_EU_input") + if eu_input < demand then + update_machine(pos, meta, node.name, nodename, unpowered_infotext, demand) + return + end + + local src_time = meta:get_int("src_time") + if src_time >= 3 then + -- Cycle counter expired, reset counter and attempt to produce items + if technic_cnc.produce(meta, inv) then + -- Production succeed, reset cycle counter + meta:set_int("src_time", 0) + else + -- Production failed, set machine status to unpowered and try again after one cycle + meta:set_int("src_time", 2) + update_machine(pos, meta, node.name, nodename, unpowered_infotext, 0) + return + end + else + -- Increment cycle counter + meta:set_int("src_time", src_time + 1) + end + update_machine(pos, meta, node.name, nodename_active, active_infotext, demand) + end + end + + if technic_cnc.use_technic then + allow_metadata_inventory_put = technic.machine_inventory_put + allow_metadata_inventory_take = technic.machine_inventory_take + allow_metadata_inventory_move = technic.machine_inventory_move + can_dig = technic.machine_can_dig + after_dig_node = def.upgrade and technic.machine_after_dig_node or nil + else + allow_metadata_inventory_put = function(pos, listname, index, stack, player) + if minetest.is_protected(pos, player:get_player_name()) then + return 0 + end + return stack:get_count() + end + + allow_metadata_inventory_take = function(pos, listname, index, stack, player) + if minetest.is_protected(pos, player:get_player_name()) then + return 0 + end + return stack:get_count() + end + + allow_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player) + if minetest.is_protected(pos, player:get_player_name()) then + return 0 + end + return count + end + + can_dig = function(pos, player) + if player and minetest.is_protected(pos, player:get_player_name()) then + return false + end + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + return inv:is_empty("dst") and inv:is_empty("src") and default.can_interact_with_node(player, pos) + end + end + + -- Formspec handlers with / without pipeworks + do + local wrapped_on_receive_fields = on_receive_fields + local function update_formspec(meta) + meta:set_string("formspec", get_formspec(nodename, def, meta)) + end + if technic_cnc.pipeworks and def.tube then + local pipeworks_on_receive_fields = technic_cnc.pipeworks.on_receive_fields + on_receive_fields = function(pos, formname, fields, sender) + local meta = minetest.get_meta(pos) + if not wrapped_on_receive_fields(pos, meta, fields, sender, update_formspec) and not fields.quit then + -- Custom pipeworks form handler to skip unnecessary protection messages + pipeworks_on_receive_fields(pos, meta, fields, sender, update_formspec) + end + upgrade_machine(meta) + end + else + on_receive_fields = function(pos, formname, fields, sender) + local meta = minetest.get_meta(pos) + wrapped_on_receive_fields(pos, meta, fields, sender, update_formspec) + upgrade_machine(meta) + end + end + end + + -- Groups for pipeworks + if technic_cnc.pipeworks and def.tube then + groups.tubedevice = 1 + groups.tubedevice_receiver = 1 + end + + -- Only do logging when technic is enabled to avoid duplicating code + local on_metadata_inventory_move = technic_cnc.use_technic and technic.machine_on_inventory_move or nil + local on_metadata_inventory_put = technic_cnc.use_technic and technic.machine_on_inventory_put or nil + local on_metadata_inventory_take = technic_cnc.use_technic and technic.machine_on_inventory_take or nil + + -- Inactive state CNC machine + minetest.register_node(":" .. nodename, { + description = def.description, + tiles = def.tiles, + groups = groups, + connect_sides = {"bottom", "back", "left", "right"}, + paramtype2 = "facedir", + legacy_facedir_simple = true, + is_ground_content = false, + on_construct = function(pos) + local meta = minetest.get_meta(pos) + meta:set_string("infotext", def.description) + meta:set_string("formspec", get_formspec(nodename, def, meta)) + local inv = meta:get_inventory() + inv:set_size("src", def.input_size) + inv:set_size("dst", def.output_size) + if def.upgrade then + inv:set_size("upgrade1", 1) + inv:set_size("upgrade2", 1) + end + end, + after_place = def.tube and pipeworks.after_place, + after_dig_node = def.after_dig_node or after_dig_node, + tube = def.tube, + digilines = def.digilines, + can_dig = def.can_dig or can_dig, + allow_metadata_inventory_put = def.allow_metadata_inventory_put or allow_metadata_inventory_put, + allow_metadata_inventory_take = def.allow_metadata_inventory_take or allow_metadata_inventory_take, + allow_metadata_inventory_move = def.allow_metadata_inventory_move or allow_metadata_inventory_move, + on_metadata_inventory_move = on_metadata_inventory_move, + on_metadata_inventory_put = on_metadata_inventory_put, + on_metadata_inventory_take = on_metadata_inventory_take, + on_receive_fields = on_receive_fields, + technic_run = def.technic_run or technic_run, + }) + + -- Active state CNC machine + if technic_cnc.use_technic then + local groups_active = table.copy(groups) + groups_active.not_in_creative_inventory = 1 + minetest.register_node(":" .. nodename_active, { + description = def.description, + tiles = def.tiles_active, + groups = groups_active, + connect_sides = {"bottom", "back", "left", "right"}, + paramtype2 = "facedir", + drop = nodename, + legacy_facedir_simple = true, + is_ground_content = false, + after_dig_node = def.after_dig_node or after_dig_node, + tube = def.tube, + digilines = def.digilines, + can_dig = def.can_dig or can_dig, + allow_metadata_inventory_put = def.allow_metadata_inventory_put or allow_metadata_inventory_put, + allow_metadata_inventory_take = def.allow_metadata_inventory_take or allow_metadata_inventory_take, + allow_metadata_inventory_move = def.allow_metadata_inventory_move or allow_metadata_inventory_move, + on_metadata_inventory_move = on_metadata_inventory_move, + on_metadata_inventory_put = on_metadata_inventory_put, + on_metadata_inventory_take = on_metadata_inventory_take, + on_receive_fields = on_receive_fields, + technic_run = def.technic_run or technic_run, + technic_disabled_machine_name = nodename, + }) + technic.register_machine("LV", nodename, technic.receiver) + technic.register_machine("LV", nodename_active, technic.receiver) + else + minetest.register_alias(nodename_active, nodename) + end +end diff --git a/mods/technic_plus_beta/technic_cnc/cnc.lua b/mods/technic_plus_beta/technic_cnc/cnc.lua new file mode 100644 index 00000000..39b605ed --- /dev/null +++ b/mods/technic_plus_beta/technic_cnc/cnc.lua @@ -0,0 +1,74 @@ +-- Technic CNC v2.0 by SX +-- Based on Technic CNC v1.0 by kpoppel +-- Based on the NonCubic Blocks MOD v1.4 by yves_de_beck + +local S = technic_cnc.getter + +-- This should handle both onesize_products and twosize_products, currently +-- twosize_products are hardcoded for formspec definitions. +local programs = {} +for key,_ in pairs(technic_cnc.onesize_products) do table.insert(programs, key) end +table.sort(programs) + +-- +-- Register technic:cnc machine +-- +do + technic_cnc.register_cnc_machine("technic:cnc", { + description = technic_cnc.use_technic and S("LV CNC Machine") or S("CNC Machine"), + output_size = 4, + programs = programs, + demand = 450, + recipe = technic_cnc.use_technic and ({ + {'default:glass', 'technic:diamond_drill_head', 'default:glass'}, + {'technic:control_logic_unit', 'technic:machine_casing', 'basic_materials:motor'}, + {'technic:carbon_steel_ingot', 'technic:lv_cable', 'technic:carbon_steel_ingot'}, + }) or ({ + {'default:glass', 'default:diamond', 'default:glass'}, + {'basic_materials:ic', 'default:steelblock', 'basic_materials:motor'}, + {'default:steel_ingot', 'default:mese', 'default:steel_ingot'}, + }), + tiles = { + "technic_cnc_top.png", "technic_cnc_bottom.png", "technic_cnc_side.png", + "technic_cnc_side.png", "technic_cnc_side.png", "technic_cnc_front.png" + }, + tiles_active = { + "technic_cnc_top_active.png", "technic_cnc_bottom.png", "technic_cnc_side.png", + "technic_cnc_side.png", "technic_cnc_side.png", "technic_cnc_front_active.png" + }, + }) +end + +-- +-- Register technic:cnc_mk2 machine +-- +if technic_cnc.use_technic or technic_cnc.pipeworks or technic_cnc.digilines then + local tiles = { + "technic_cnc_mk2_top.png", "technic_cnc_bottom.png", "technic_cnc_mk2_side.png", + "technic_cnc_mk2_side.png", "technic_cnc_mk2_side.png", "technic_cnc_mk2_front.png" + } + local tiles_active = { + "technic_cnc_mk2_top_active.png", "technic_cnc_bottom.png", "technic_cnc_mk2_side.png", + "technic_cnc_mk2_side.png", "technic_cnc_mk2_side.png", "technic_cnc_mk2_front_active.png" + } + if technic_cnc.pipeworks then + tiles = technic_cnc.pipeworks.tube_entry_overlay(tiles) + tiles_active = technic_cnc.pipeworks.tube_entry_overlay(tiles_active) + end + technic_cnc.register_cnc_machine("technic:cnc_mk2", { + description = S("LV CNC Machine") .. " Mk2", + output_size = 4, + digilines = technic_cnc.digilines, + upgrade = true, + tube = technic_cnc.pipeworks and technic_cnc.pipeworks.new_tube() or nil, + programs = programs, + demand = 900, + recipe = { + {'basic_materials:ic', 'technic:cnc', 'basic_materials:ic'}, + {'pipeworks:tube_1', 'technic:machine_casing', 'pipeworks:tube_1'}, + {'technic:cnc', 'digilines:wire_std_00000000', 'technic:cnc'}, + }, + tiles = tiles, + tiles_active = tiles_active, + }) +end diff --git a/mods/technic_plus_beta/technic_cnc/digilines.lua b/mods/technic_plus_beta/technic_cnc/digilines.lua new file mode 100644 index 00000000..8fa392e4 --- /dev/null +++ b/mods/technic_plus_beta/technic_cnc/digilines.lua @@ -0,0 +1,91 @@ + +local rules = technic_cnc.use_technic and technic.digilines.rules or digilines.rules.default +local def = { + receptor = { + rules = rules, + }, + effector = { + rules = rules, + }, +} + +local function check_message(meta, channel, msg) + -- Digiline channel check + if channel ~= meta:get_string("channel") then + return false + end + + -- Message type check + if type(msg) == "string" then + -- String is is always valid, get out skipping all table checks + return true + elseif type(msg) ~= "table" then + return false + end + + -- Verify that size is either nil or number between 1-2 + if msg.size ~= nil and (type(msg.size) ~= "number" or msg.size < 1 or msg.size > 2) then + msg.size = nil + end + + -- Verify program if provided + if msg.program ~= nil then + -- If program is set it must be string and available + if type(msg.program) ~= "string" or not technic_cnc.products[msg.program] then + msg.program = nil + end + end + + -- Message is valid (but not necessarily useful) + return true +end + +function def.effector.action(pos, node, channel, msg) + -- Validate message contents, + local meta = minetest.get_meta(pos) + if not check_message(meta, channel, msg) then + return + end + + -- Process message and execute required actions + if type(msg) == "string" then + msg = msg:lower() + if msg == "programs" then + digilines.receptor_send(pos, rules, channel, technic_cnc.products) + elseif msg == "status" then + local inv = meta:get_inventory() + local srcstack = inv:get_stack("src", 1) + local status = { + enabled = technic_cnc.is_enabled(meta), + time = meta:get_int("src_time"), + size = meta:get_int("size"), + program = meta:get_string("program"), + user = meta:get_string("cnc_user"), + material = { + name = srcstack:get_name(), + count = srcstack:get_count(), + } + } + digilines.receptor_send(pos, rules, channel, status) + elseif msg == "enable" then + technic_cnc.enable(meta) + elseif msg == "disable" then + technic_cnc.disable(meta) + end + else + -- Configure milling programs + if msg.program then + technic_cnc.set_program(meta, msg.program, msg.size) + elseif msg.size then + meta:set_int("size", msg.size) + end + -- Enable / disable CNC machine + if msg.enabled == true then + technic_cnc.enable(meta) + elseif msg.enabled == false then + technic_cnc.disable(meta) + end + end +end + +return def diff --git a/mods/technic_plus_beta/technic_cnc/formspec.lua b/mods/technic_plus_beta/technic_cnc/formspec.lua new file mode 100644 index 00000000..3d0a7af8 --- /dev/null +++ b/mods/technic_plus_beta/technic_cnc/formspec.lua @@ -0,0 +1,183 @@ +local S = technic_cnc.getter + +-- Margin is hardcoded for some elements... +local margin = 0.5 +local padding = 0.2 +local grid_size = 1 + padding + +local fs_prefix = "formspec_version[4]size[%d,%d]style_type[list;size=1,1;spacing=0.2,0.2]label[0.5,0.5;%s]" + +local fs_slimhalf = "label[0.5,3.6;"..S("Slim Elements half / normal height:").."]".. + "image_button[0.5,4;1,0.49;technic_cnc_full%s.png;full; ]".. + "image_button[0.5,4.51;1,0.49;technic_cnc_half%s.png;half; ]" + +-- TODO: These should be defined in programs.lua and provide API to register more +local slimhalf_buttons = { + "element_straight", + "element_end", + "element_cross", + "element_t", + "element_edge" +} + +-- Create button grid that returns paging information (leftover button count). +-- WIP: Starting index could be easily added if needed to provide full paging. +local function image_button_grid(x_start, y_start, width, height, items, selected) + local result = "" + local count = 0 + local row = 0 + local column = 0 + local max_row = math.floor(height / grid_size + 0.1) + local max_column = math.floor(math.min(#items, math.floor(width / grid_size) * max_row) / max_row + 0.1) + for _,name in ipairs(items) do + local x = x_start + column * grid_size + local y = y_start + row * grid_size + local modifier = selected == name and "^[invert:b" or "" + result = result .. ("image_button[%0.1f,%0.1f;1,1;technic_cnc_%s.png%s;%s;]"):format(x, y, name, modifier, name) + count = count + 1 + if column + 1 < max_column then + column = column + 1 + else + column = 0 + row = row + 1 + if row >= max_row then + return result, #items - count + end + end + end + return result, #items - count +end + +local function label(x, y, text) + return ("label[%0.1f,%0.1f;%s]"):format(x, y, text) +end + +local function list(name, x, y, w, h, text) + return (text and label(x, y - 0.5, text) or "") .. + ("list[context;%s;%0.1f,%0.1f;%d,%d;]"):format(name, x, y, w, h) .. + ("listring[current_player;main]listring[context;%s]"):format(name) +end + +local function get_formspec(nodename, def, meta) + local width = grid_size * 11 + margin * 2 + local height = 13 + local fs = fs_prefix:format(width, height, S("Choose Milling Program:")) + local p = meta:get("program") + + -- Programming buttons + local x = margin + local y = 1 + local buttons1, leftover1 = image_button_grid(x, y, width - margin * 2, grid_size * 2, def.programs, p) + + -- Slim / half / normal + x = margin + grid_size + y = 4 + local buttons2, leftover2 = image_button_grid(x, y, width - grid_size - margin * 2, grid_size, slimhalf_buttons, p) + local half = meta:get("size") == "2" + fs = fs .. buttons1 .. fs_slimhalf:format(half and "" or "_active", half and "_active" or "") .. buttons2 + + -- Program paging controls + if leftover1 > 0 or leftover2 > 0 then + x = width - margin - grid_size * 2 + fs = fs .. ("button[%0.1f,%0.1f;%0.1f,%0.1f;paging_prev;Previous]"):format(x, padding, grid_size, 0.6) + .. ("button[%0.1f,%0.1f;%0.1f,%0.1f;paging_next;Next]"):format(x + grid_size, padding, grid_size, 0.6) + end + + -- Some filler for empty unused space + y = height - (grid_size * 4) - margin + padding + --fs = fs .. ("model[10,%0.1f;3,3;;node.obj;%s;0.1,0.1;true;false]"):format(y, table.concat(def.tiles, ",")) + --fs = fs .. ("image[10,%0.1f;3,3;%s]"):format(y, def.tiles[6]) + local size = grid_size * 3 + fs = fs .. ("item_image[%0.1f,%0.1f;%0.1f,%0.1f;%s]"):format(grid_size * 8 + margin, y, size, size, nodename) + + -- Player inventory + fs = fs .. ("list[current_player;main;%0.1f,%0.1f;8,4;]"):format(margin, y) + + -- Input / output inventories + x = grid_size * def.input_size + grid_size + margin + y = 6 + fs = fs .. list("src", margin, y, def.input_size, 1, S("In:")) .. list("dst", x, y, def.output_size, 1, S("Out:")) + + x = grid_size * 8 + margin + + -- Upgrades + if def.upgrade then + fs = fs .. list("upgrade1", x, y, 1, 1, S("Upgrade Slots")) .. list("upgrade2", x + grid_size, y, 1, 1) + end + + -- Stack splitting toggle + if meta and def.tube and technic_cnc.pipeworks then + y = height - margin - grid_size * 4.5 + fs = fs .. technic_cnc.pipeworks.cycling_button(meta, "splitstacks", margin, y) + end + + -- Digilines channel field + if def.digilines then + y = height - grid_size - margin + padding + 0.3 + local w = width - x - margin - grid_size + fs = fs .. ("field[%0.1f,%0.1f;%0.1f,%0.1f;channel;Channel;${channel}]"):format(x + padding, y, w, 0.7) + fs = fs .. ("button[%0.1f,%0.1f;%0.1f,%0.1f;setchannel;Set]"):format(x + w + padding, y, 1, 0.7) + end + + return fs +end + +local function on_receive_fields(pos, meta, fields, sender, update_formspec) + local name = sender:get_player_name() + + if fields.quit or (meta:get_int("public") == 0 and minetest.is_protected(pos, name)) then + return true + end + + -- Program for half/full size + if fields.full then + meta:set_int("size", 1) + update_formspec(meta) + return true + elseif fields.half then + meta:set_int("size", 2) + update_formspec(meta) + return true + elseif fields.paging_next or fields.paging_prev then + -- TODO: Page index should be capped between 0 and max based on button count + local page = meta:get_int("page") + meta:set_int("page", page + (fields.paging_next and 1 or -1)) + return + end + + -- Resolve the node name and the number of items to make + local program_selected + local products = technic_cnc.products + for program, _ in pairs(fields) do + if products[program] then + local update = meta:get("program") ~= program + technic_cnc.set_program(meta, program, meta:get_int("size")) + technic_cnc.enable(meta) + meta:set_string("cnc_user", name) + program_selected = true + if update then + update_formspec(meta) + end + break + end + end + + if program_selected and not technic_cnc.use_technic then + local inv = meta:get_inventory() + technic_cnc.produce(meta, inv) + return true + end + + local setchannel = fields.setchannel or (fields.key_enter and fields.key_enter_field == "channel") + if setchannel and not minetest.is_protected(pos, name) then + meta:set_string("channel", fields.channel) + return true + end + + return program_selected +end + +return { + get_formspec = get_formspec, + on_receive_fields = on_receive_fields, +} diff --git a/mods/technic_plus_beta/technic_cnc/init.lua b/mods/technic_plus_beta/technic_cnc/init.lua new file mode 100644 index 00000000..c959d9a4 --- /dev/null +++ b/mods/technic_plus_beta/technic_cnc/init.lua @@ -0,0 +1,20 @@ +local technic_modpath = minetest.get_modpath("technic") +local digilines_modpath = minetest.get_modpath("digilines") +local pipeworks_modpath = minetest.get_modpath("pipeworks") + +technic_cnc = {} +technic_cnc.modpath = minetest.get_modpath("technic_cnc") +technic_cnc.use_technic = technic_modpath and minetest.settings:get_bool("technic_cnc_use_technic", true) +local use_digilines = digilines_modpath and minetest.settings:get_bool("technic_cnc_use_digilines", true) +local use_pipeworks = pipeworks_modpath and minetest.settings:get_bool("technic_cnc_use_pipeworks", true) + +technic_cnc.getter = minetest.get_translator(minetest.get_current_modname()) + +if use_digilines then technic_cnc.digilines = dofile(technic_cnc.modpath.."/digilines.lua") end +if use_pipeworks then technic_cnc.pipeworks = dofile(technic_cnc.modpath.."/pipeworks.lua") end + +technic_cnc.formspec = dofile(technic_cnc.modpath .. "/formspec.lua") +dofile(technic_cnc.modpath .. "/programs.lua") +dofile(technic_cnc.modpath .. "/api.lua") +dofile(technic_cnc.modpath .. "/materials/init.lua") +dofile(technic_cnc.modpath .. "/cnc.lua") diff --git a/mods/technic_plus_beta/technic_cnc/locale/technic_cnc.de.tr b/mods/technic_plus_beta/technic_cnc/locale/technic_cnc.de.tr new file mode 100644 index 00000000..2f949356 --- /dev/null +++ b/mods/technic_plus_beta/technic_cnc/locale/technic_cnc.de.tr @@ -0,0 +1,109 @@ +# textdomain: technic_cnc + +## CNC +CNC Machine=CNC-Maschine +@1 CNC Machine=@1 CNC-Maschine +Cylinder=Zylinder +Element Cross=Halbes Kreuzelement +Element Cross Double=Kreuzelement +Element Edge=Halbes Eckelement +Element Edge Double=Eckelement +Element End=Halbes Endelement +Element End Double=Endelement +Element Straight=Halbes aufrechtes Element +Element Straight Double=Aufrechtes Element +Element T=Halbes T-Element +Element T Double=T-Element +Horizontal Cylinder=Liegender Zylinder +One Curved Edge Block=Block mit einer abgerundeten Kante +Pyramid=Pyramide +Slope=Schraege +Slope Edge=Schraege mit Ecke +Slope Inner Edge=Schraege mit Innenecke +Slope Lying=Liegende Schraege +Slope Upside Down=Umgedrehte Schraege +Slope Upside Down Edge=Umgedrehte Schraege mit Ecke +Slope Upside Down Inner Edge=Umgedrehte Schraege mit Innenecke +Sphere=Kugel +Spike=Spitze +Stick=Stange +Two Curved Edge Block=Block mit zwei abgerundeten Kanten +Brick=Ziegel: +Cobble=Pflasterstein: +Dirt=Erde: +Leaves=Laub: +Sandstone=Sandstein: +Stone=Stein: +Tree=Baumstamm: +Wooden=Holz: +Oblate spheroid= +Two Curved Edge/Corner Block= +Slope Upside Down Inner Edge/Corner= +Slope Upside Down Outer Edge/Corner= +Slope Inner Edge/Corner= +Slope Outer Edge/Corner= +Allow splitting incoming stacks from tubes= +LV CNC Machine= +@1 Idle= +@1 Active= +@1 Unpowered= +Slim Elements half / normal height:= +Choose Milling Program:= +In:= +Out:= +Upgrade Slots= +Zinc= +Cast Iron= +Stainless Steel= +Marble= +Granite= +Blast-resistant concrete= +Glo Stone= +Crystal= +Banana Wood= +Birch Wood= +Frost Wood= +Palm Wood= +Willow Wood= +Healing Tree Wood= +Redwood= +Grassy dirt= +Junglewood= +Pine= +Acacia= +Aspen= +Stone Brick= +Stone Block= +Desert Stone= +Desert Stone Brick= +Desert Stone Block= +Mossy Cobblestone= +Desert Cobble= +Sandstone Brick= +Sandstone Block= +Desert Sandstone= +Desert Sandstone Brick= +Desert Sandstone Block= +Silver Sandstone= +Silver Sandstone Brick= +Silver Sandstone Block= +Ice= +Obsidian= +Bronze= +Copper= +Tin= +Gold= +Wrought Iron= +Red Clay= +Orange Clay= +Grey Clay= +Stone Tile= +Split Stone Tile= +Checker Stone Tile= +Cactus Checker= +Cactus Brick= +Grey Bricks= +Copper Patina= +Concrete= +Cement= +Brass block= diff --git a/mods/technic_plus_beta/technic_cnc/locale/technic_cnc.es.tr b/mods/technic_plus_beta/technic_cnc/locale/technic_cnc.es.tr new file mode 100644 index 00000000..c35af2d9 --- /dev/null +++ b/mods/technic_plus_beta/technic_cnc/locale/technic_cnc.es.tr @@ -0,0 +1,109 @@ +# textdomain: technic_cnc + +## CNC +CNC Machine=Maquina CNC +@1 CNC Machine=Maquina CNC @1 +Element Edge=Elemento Borde +Tree=Arbol +Element Cross Double=Elemento Cruz Doble +Spike=Pica +Element Edge Double=Elemento Borde Doble +Two Curved Edge Block=Dos Bloques de Borde Curvados +Pyramid=Piramide +Slope Upside Down Inner Edge=Borde Interno de Rampa Al Reves +Slope Upside Down Edge=Borde de Rampa Al Reves +Element Straight Double=Elemento Doble Recto +Sphere=Esfera +Element End Double=Doble Fin de Elemento +Element Straight=Recta de Elemento +Horizontal Cylinder=Cilindro Horizontal +Slope Inner Edge=Borde Interno de Rampa +One Curved Edge Block=Un Bloque de Borde Curvado +Element Cross=Cruce de Elementos +Stick=Varita +Element End=Fin de Elemento +Slope Lying=Rampa en Reposo +Slope Upside Down=Rampa Al Reves +Slope Edge=Borde de Rampa +Slope=Rampa +Element T=Elemento T +Cylinder=Cilindro +Cobble=Adoquines +Stone=Piedra +Brick=Ladrillo +Dirt=Tierra +Sandstone=Arenisca +Wooden=Madera +Leaves=Hojas +Element T Double= +Oblate spheroid= +Two Curved Edge/Corner Block= +Slope Upside Down Inner Edge/Corner= +Slope Upside Down Outer Edge/Corner= +Slope Inner Edge/Corner= +Slope Outer Edge/Corner= +Allow splitting incoming stacks from tubes= +LV CNC Machine= +@1 Idle= +@1 Active= +@1 Unpowered= +Slim Elements half / normal height:= +Choose Milling Program:= +In:= +Out:= +Upgrade Slots= +Zinc= +Cast Iron= +Stainless Steel= +Marble= +Granite= +Blast-resistant concrete= +Glo Stone= +Crystal= +Banana Wood= +Birch Wood= +Frost Wood= +Palm Wood= +Willow Wood= +Healing Tree Wood= +Redwood= +Grassy dirt= +Junglewood= +Pine= +Acacia= +Aspen= +Stone Brick= +Stone Block= +Desert Stone= +Desert Stone Brick= +Desert Stone Block= +Mossy Cobblestone= +Desert Cobble= +Sandstone Brick= +Sandstone Block= +Desert Sandstone= +Desert Sandstone Brick= +Desert Sandstone Block= +Silver Sandstone= +Silver Sandstone Brick= +Silver Sandstone Block= +Ice= +Obsidian= +Bronze= +Copper= +Tin= +Gold= +Wrought Iron= +Red Clay= +Orange Clay= +Grey Clay= +Stone Tile= +Split Stone Tile= +Checker Stone Tile= +Cactus Checker= +Cactus Brick= +Grey Bricks= +Copper Patina= +Concrete= +Cement= +Brass block= diff --git a/mods/technic_plus_beta/technic_cnc/locale/technic_cnc.it.tr b/mods/technic_plus_beta/technic_cnc/locale/technic_cnc.it.tr new file mode 100644 index 00000000..30350de8 --- /dev/null +++ b/mods/technic_plus_beta/technic_cnc/locale/technic_cnc.it.tr @@ -0,0 +1,109 @@ +# textdomain: technic_cnc + +## CNC +CNC Machine=Tornio CNC +@1 CNC Machine=Tornio CNC @1 +Cylinder=Cilindro +Element Cross=Elemento a croce +Element Cross Double=Elemento a croce doppio +Element Edge=Elemento bordo +Element Edge Double=Elemento bordo doppio +Element End=Elemento finale +Element End Double=Elemento finale doppio +Element Straight=Elemento dritto +Element Straight Double=Elemento dritto doppio +Element T=Elemento a T +Element T Double=Elemento a T doppio +Horizontal Cylinder=Cilindro orizzontale +One Curved Edge Block=Blocco con bordo curvo +Pyramid=Piramide +Slope=Inclinato +Slope Edge=Bordo inclinato +Slope Inner Edge=Bordo interno inclinato +Slope Lying=Pendenza bugiarda +Slope Upside Down=Pendenza capovolta +Slope Upside Down Edge=Bordo inclinato capovolto +Slope Upside Down Inner Edge=Bordo interno inclinato capovolto +Sphere=Sfera +Spike=Spuntone +Stick=Bastone +Two Curved Edge Block=Blocco con bordo a doppia curva +Brick=Mattone +Cobble=Ciottolato +Dirt=Terra +Leaves=Foglie +Sandstone=Arenaria +Stone=Pietra +Tree=Albero +Wooden=Legno +Oblate spheroid= +Two Curved Edge/Corner Block= +Slope Upside Down Inner Edge/Corner= +Slope Upside Down Outer Edge/Corner= +Slope Inner Edge/Corner= +Slope Outer Edge/Corner= +Allow splitting incoming stacks from tubes= +LV CNC Machine= +@1 Idle= +@1 Active= +@1 Unpowered= +Slim Elements half / normal height:= +Choose Milling Program:= +In:= +Out:= +Upgrade Slots= +Zinc= +Cast Iron= +Stainless Steel= +Marble= +Granite= +Blast-resistant concrete= +Glo Stone= +Crystal= +Banana Wood= +Birch Wood= +Frost Wood= +Palm Wood= +Willow Wood= +Healing Tree Wood= +Redwood= +Grassy dirt= +Junglewood= +Pine= +Acacia= +Aspen= +Stone Brick= +Stone Block= +Desert Stone= +Desert Stone Brick= +Desert Stone Block= +Mossy Cobblestone= +Desert Cobble= +Sandstone Brick= +Sandstone Block= +Desert Sandstone= +Desert Sandstone Brick= +Desert Sandstone Block= +Silver Sandstone= +Silver Sandstone Brick= +Silver Sandstone Block= +Ice= +Obsidian= +Bronze= +Copper= +Tin= +Gold= +Wrought Iron= +Red Clay= +Orange Clay= +Grey Clay= +Stone Tile= +Split Stone Tile= +Checker Stone Tile= +Cactus Checker= +Cactus Brick= +Grey Bricks= +Copper Patina= +Concrete= +Cement= +Brass block= diff --git a/mods/technic_plus_beta/technic_cnc/locale/technic_cnc.pl.tr b/mods/technic_plus_beta/technic_cnc/locale/technic_cnc.pl.tr new file mode 100644 index 00000000..38aef544 --- /dev/null +++ b/mods/technic_plus_beta/technic_cnc/locale/technic_cnc.pl.tr @@ -0,0 +1,109 @@ +# textdomain: technic_cnc + +## CNC +CNC Machine=Obrabiarka CNC +@1 CNC Machine=@1 Obrabiarka CNC +Cylinder=Walec +Element Cross=Część krzyżowa +Element Cross Double=Podwójna część krzyżowa +Element Edge=Krawędź części +Element Edge Double=Podwójna krawędź części +Element End=Końcowa część +Element End Double=Podwójna końcowa część +Element Straight=Prosta część +Element Straight Double=Podwójna prosta część +Element T=Część T +Element T Double=Podwójna część T +Horizontal Cylinder=Poziomy walec +One Curved Edge Block=Blok z zagiętą krawędzią +Pyramid=Ostrosłup +Slope=Spad +Slope Edge=Krawędź spadu +Slope Inner Edge=Wewnętrzna krawędź spadu +Slope Lying=Leżący spad +Slope Upside Down=Odwrócony spad +Slope Upside Down Edge=Krawędź odwróconego spadu +Slope Upside Down Inner Edge=Wewnętrzna krawędz odwróconego spadu +Sphere=Kula +Spike=Kolec +Stick=Patyk +Two Curved Edge Block=Blok z dwoma zagiętymi krawędziami +Brick=Cegła +Cobble=Bruk +Dirt=Ziemia +Leaves=Liście +Sandstone=Piaskowiec +Stone=Kamień +Tree=Drzewo +Wooden=Drewniany +Oblate spheroid= +Two Curved Edge/Corner Block= +Slope Upside Down Inner Edge/Corner= +Slope Upside Down Outer Edge/Corner= +Slope Inner Edge/Corner= +Slope Outer Edge/Corner= +Allow splitting incoming stacks from tubes= +LV CNC Machine= +@1 Idle= +@1 Active= +@1 Unpowered= +Slim Elements half / normal height:= +Choose Milling Program:= +In:= +Out:= +Upgrade Slots= +Zinc= +Cast Iron= +Stainless Steel= +Marble= +Granite= +Blast-resistant concrete= +Glo Stone= +Crystal= +Banana Wood= +Birch Wood= +Frost Wood= +Palm Wood= +Willow Wood= +Healing Tree Wood= +Redwood= +Grassy dirt= +Junglewood= +Pine= +Acacia= +Aspen= +Stone Brick= +Stone Block= +Desert Stone= +Desert Stone Brick= +Desert Stone Block= +Mossy Cobblestone= +Desert Cobble= +Sandstone Brick= +Sandstone Block= +Desert Sandstone= +Desert Sandstone Brick= +Desert Sandstone Block= +Silver Sandstone= +Silver Sandstone Brick= +Silver Sandstone Block= +Ice= +Obsidian= +Bronze= +Copper= +Tin= +Gold= +Wrought Iron= +Red Clay= +Orange Clay= +Grey Clay= +Stone Tile= +Split Stone Tile= +Checker Stone Tile= +Cactus Checker= +Cactus Brick= +Grey Bricks= +Copper Patina= +Concrete= +Cement= +Brass block= diff --git a/mods/technic_plus_beta/technic_cnc/locale/technic_cnc.zh_CN.tr b/mods/technic_plus_beta/technic_cnc/locale/technic_cnc.zh_CN.tr new file mode 100644 index 00000000..2db9be37 --- /dev/null +++ b/mods/technic_plus_beta/technic_cnc/locale/technic_cnc.zh_CN.tr @@ -0,0 +1,108 @@ +# textdomain: technic_cnc + +CNC Machine=数控机床 +@1 CNC Machine=@1数控机床 +Cylinder=圆柱 +Element Cross=元素交叉 +Element Cross Double=元素交叉双精度 +Element Edge=元素边缘 +Element Edge Double=元素边缘双 +Element End=元素结束 +Element End Double=双端元件 +Element Straight=直线元素 +Element Straight Double=元素直线双精度 +Element T=元素T +Element T Double=元素T双 +Horizontal Cylinder=卧式圆筒 +One Curved Edge Block=一个曲边块 +Pyramid=金字塔 +Slope=坡度 +Slope Edge=斜坡边缘 +Slope Inner Edge=斜坡内边缘 +Slope Lying=斜坡式 +Slope Upside Down=倒坡 +Slope Upside Down Edge=斜坡倒棱 +Slope Upside Down Inner Edge=斜坡上下内缘 +Sphere=球体 +Spike=尖峰 +Stick=棍子 +Two Curved Edge Block=双弯边块 +Brick=砖 +Cobble=卵石 +Dirt=泥土 +Leaves=树叶 +Sandstone=砂岩 +Stone=石头 +Tree=树 +Wooden=木制 +Oblate spheroid= +Two Curved Edge/Corner Block= +Slope Upside Down Inner Edge/Corner= +Slope Upside Down Outer Edge/Corner= +Slope Inner Edge/Corner= +Slope Outer Edge/Corner= +Allow splitting incoming stacks from tubes= +LV CNC Machine= +@1 Idle= +@1 Active= +@1 Unpowered= +Slim Elements half / normal height:= +Choose Milling Program:= +In:= +Out:= +Upgrade Slots= +Zinc= +Cast Iron= +Stainless Steel= +Marble= +Granite= +Blast-resistant concrete= +Glo Stone= +Crystal= +Banana Wood= +Birch Wood= +Frost Wood= +Palm Wood= +Willow Wood= +Healing Tree Wood= +Redwood= +Grassy dirt= +Junglewood= +Pine= +Acacia= +Aspen= +Stone Brick= +Stone Block= +Desert Stone= +Desert Stone Brick= +Desert Stone Block= +Mossy Cobblestone= +Desert Cobble= +Sandstone Brick= +Sandstone Block= +Desert Sandstone= +Desert Sandstone Brick= +Desert Sandstone Block= +Silver Sandstone= +Silver Sandstone Brick= +Silver Sandstone Block= +Ice= +Obsidian= +Bronze= +Copper= +Tin= +Gold= +Wrought Iron= +Red Clay= +Orange Clay= +Grey Clay= +Stone Tile= +Split Stone Tile= +Checker Stone Tile= +Cactus Checker= +Cactus Brick= +Grey Bricks= +Copper Patina= +Concrete= +Cement= +Brass block= diff --git a/mods/technic_plus_beta/technic_cnc/locale/template.txt b/mods/technic_plus_beta/technic_cnc/locale/template.txt new file mode 100644 index 00000000..338ccfdd --- /dev/null +++ b/mods/technic_plus_beta/technic_cnc/locale/template.txt @@ -0,0 +1,109 @@ +# textdomain: technic_cnc + +## CNC +CNC Machine= +@1 CNC Machine= +Cylinder= +Element Cross= +Element Cross Double= +Element Edge= +Element Edge Double= +Element End= +Element End Double= +Element Straight= +Element Straight Double= +Element T= +Element T Double= +Horizontal Cylinder= +One Curved Edge Block= +Pyramid= +Slope= +Slope Edge= +Slope Inner Edge= +Slope Lying= +Slope Upside Down= +Slope Upside Down Edge= +Slope Upside Down Inner Edge= +Sphere= +Spike= +Stick= +Two Curved Edge Block= +Brick= +Cobble= +Dirt= +Leaves= +Sandstone= +Stone= +Tree= +Wooden= +Oblate spheroid= +Two Curved Edge/Corner Block= +Slope Upside Down Inner Edge/Corner= +Slope Upside Down Outer Edge/Corner= +Slope Inner Edge/Corner= +Slope Outer Edge/Corner= +Allow splitting incoming stacks from tubes= +LV CNC Machine= +@1 Idle= +@1 Active= +@1 Unpowered= +Slim Elements half / normal height:= +Choose Milling Program:= +In:= +Out:= +Upgrade Slots= +Zinc= +Cast Iron= +Stainless Steel= +Marble= +Granite= +Blast-resistant concrete= +Glo Stone= +Crystal= +Banana Wood= +Birch Wood= +Frost Wood= +Palm Wood= +Willow Wood= +Healing Tree Wood= +Redwood= +Grassy dirt= +Junglewood= +Pine= +Acacia= +Aspen= +Stone Brick= +Stone Block= +Desert Stone= +Desert Stone Brick= +Desert Stone Block= +Mossy Cobblestone= +Desert Cobble= +Sandstone Brick= +Sandstone Block= +Desert Sandstone= +Desert Sandstone Brick= +Desert Sandstone Block= +Silver Sandstone= +Silver Sandstone Brick= +Silver Sandstone Block= +Ice= +Obsidian= +Bronze= +Copper= +Tin= +Gold= +Wrought Iron= +Red Clay= +Orange Clay= +Grey Clay= +Stone Tile= +Split Stone Tile= +Checker Stone Tile= +Cactus Checker= +Cactus Brick= +Grey Bricks= +Copper Patina= +Concrete= +Cement= +Brass block= diff --git a/mods/technic_plus_beta/technic_cnc/materials/bakedclay.lua b/mods/technic_plus_beta/technic_cnc/materials/bakedclay.lua new file mode 100644 index 00000000..a1016b57 --- /dev/null +++ b/mods/technic_plus_beta/technic_cnc/materials/bakedclay.lua @@ -0,0 +1,23 @@ + +local S = technic_cnc.getter + +technic_cnc.register_all( + "bakedclay:red", + {cracky = 3, not_in_creative_inventory = 1}, + {"baked_clay_red.png"}, + S("Red Clay") +) + +technic_cnc.register_all( + "bakedclay:orange", + {cracky = 3, not_in_creative_inventory = 1}, + {"baked_clay_orange.png"}, + S("Orange Clay") +) + +technic_cnc.register_all( + "bakedclay:grey", + {cracky = 3, not_in_creative_inventory = 1}, + {"baked_clay_grey.png"}, + S("Grey Clay") +) diff --git a/mods/technic_plus_beta/technic_cnc/materials/basic_materials.lua b/mods/technic_plus_beta/technic_cnc/materials/basic_materials.lua new file mode 100644 index 00000000..af945d3c --- /dev/null +++ b/mods/technic_plus_beta/technic_cnc/materials/basic_materials.lua @@ -0,0 +1,23 @@ + +local S = technic_cnc.getter + +technic_cnc.register_all( + "basic_materials:concrete_block", + {cracky = 2, level = 2, not_in_creative_inventory = 1}, + {"basic_materials_concrete_block.png"}, + S("Concrete") +) + +technic_cnc.register_all( + "basic_materials:cement_block", + {cracky = 2, level = 2, not_in_creative_inventory = 1}, + {"basic_materials_cement_block.png"}, + S("Cement") +) + +technic_cnc.register_all( + "basic_materials:brass_block", + {cracky = 1, level = 2, not_in_creative_inventory = 1}, + {"basic_materials_brass_block.png"}, + S("Brass block") +) diff --git a/mods/technic_plus_beta/technic_cnc/materials/default.lua b/mods/technic_plus_beta/technic_cnc/materials/default.lua new file mode 100644 index 00000000..b3b58b28 --- /dev/null +++ b/mods/technic_plus_beta/technic_cnc/materials/default.lua @@ -0,0 +1,256 @@ + +local S = technic_cnc.getter + +technic_cnc.register_all( + "default:dirt", + {snappy = 2,choppy = 2,oddly_breakable_by_hand = 3,not_in_creative_inventory = 1}, + {"default_dirt.png"}, + S("Dirt") +) + +technic_cnc.register_all( + "default:dirt_with_grass", + {snappy = 2,choppy = 2,oddly_breakable_by_hand = 3,not_in_creative_inventory = 1}, + {"default_grass.png"}, + S("Grassy dirt") +) + +technic_cnc.register_all( + "default:wood", + {snappy = 2, choppy = 2, oddly_breakable_by_hand = 2, not_in_creative_inventory = 1}, + {"default_wood.png"}, + S("Wooden") +) + +technic_cnc.register_all( + "default:junglewood", + {snappy = 2, choppy = 2, oddly_breakable_by_hand = 2, not_in_creative_inventory = 1}, + {"default_junglewood.png"}, + S("Junglewood") +) + +technic_cnc.register_all( + "default:pine_wood", + {snappy = 2, choppy = 2, oddly_breakable_by_hand = 2, not_in_creative_inventory = 1}, + {"default_pine_wood.png"}, + S("Pine") +) + +technic_cnc.register_all( + "default:acacia_wood", + {snappy = 2, choppy = 2, oddly_breakable_by_hand = 2, not_in_creative_inventory = 1}, + {"default_acacia_wood.png"}, + S("Acacia") +) + +technic_cnc.register_all( + "default:aspen_wood", + {snappy = 2, choppy = 2, oddly_breakable_by_hand = 2, not_in_creative_inventory = 1}, + {"default_aspen_wood.png"}, + S("Aspen") +) + +technic_cnc.register_all( + "default:stone", + {cracky = 3, stone = 1, not_in_creative_inventory = 1}, + {"default_stone.png"}, + S("Stone") +) + +technic_cnc.register_all( + "default:stonebrick", + {crumbly = 2, cracky = 3, stone = 1, not_in_creative_inventory = 1}, + {"default_stone_brick.png"}, + S("Stone Brick") +) + +technic_cnc.register_all( + "default:stone_block", + {crumbly = 2, cracky = 3, stone = 1, not_in_creative_inventory = 1}, + {"default_stone_block.png"}, + S("Stone Block") +) + +technic_cnc.register_all( + "default:desert_stone", + {cracky = 3, stone = 1, not_in_creative_inventory = 1}, + {"default_desert_stone.png"}, + S("Desert Stone") +) + +technic_cnc.register_all( + "default:desert_stonebrick", + {crumbly = 2, cracky = 3, stone = 1, not_in_creative_inventory = 1}, + {"default_desert_stone_brick.png"}, + S("Desert Stone Brick") +) + +technic_cnc.register_all( + "default:desert_stone_block", + {crumbly = 2, cracky = 3, stone = 1, not_in_creative_inventory = 1}, + {"default_desert_stone_block.png"}, + S("Desert Stone Block") +) + +technic_cnc.register_all( + "default:cobble", + {cracky = 3, stone = 1, not_in_creative_inventory = 1}, + {"default_cobble.png"}, + S("Cobble") +) + +technic_cnc.register_all( + "default:mossycobble", + {cracky = 3, stone = 1, not_in_creative_inventory = 1}, + {"default_mossycobble.png"}, + S("Mossy Cobblestone") +) + +technic_cnc.register_all( + "default:desert_cobble", + {cracky = 3, stone = 1, not_in_creative_inventory = 1}, + {"default_desert_cobble.png"}, + S("Desert Cobble") +) + +technic_cnc.register_all( + "default:brick", + {cracky = 3, not_in_creative_inventory = 1}, + {"default_brick.png"}, + S("Brick") +) + +technic_cnc.register_all( + "default:sandstone", + {crumbly = 2, cracky = 3, not_in_creative_inventory = 1}, + {"default_sandstone.png"}, + S("Sandstone") +) + +technic_cnc.register_all( + "default:sandstonebrick", + {crumbly = 2, cracky = 3, not_in_creative_inventory = 1}, + {"default_sandstone_brick.png"}, + S("Sandstone Brick") +) + +technic_cnc.register_all( + "default:sandstone_block", + {crumbly = 2, cracky = 3, not_in_creative_inventory = 1}, + {"default_sandstone_block.png"}, + S("Sandstone Block") +) + +technic_cnc.register_all( + "default:desert_sandstone", + {crumbly = 2, cracky = 3, not_in_creative_inventory = 1}, + {"default_desert_sandstone.png"}, + S("Desert Sandstone") +) + +technic_cnc.register_all( + "default:desert_sandstone_brick", + {crumbly = 2, cracky = 3, not_in_creative_inventory = 1}, + {"default_desert_sandstone_brick.png"}, + S("Desert Sandstone Brick") +) + +technic_cnc.register_all( + "default:desert_sandstone_block", + {crumbly = 2, cracky = 3, not_in_creative_inventory = 1}, + {"default_desert_sandstone_block.png"}, + S("Desert Sandstone Block") +) + +technic_cnc.register_all( + "default:silver_sandstone", + {crumbly = 2, cracky = 3, not_in_creative_inventory = 1}, + {"default_silver_sandstone.png"}, + S("Silver Sandstone") +) + +technic_cnc.register_all( + "default:silver_sandstone_brick", + {crumbly = 2, cracky = 3, not_in_creative_inventory = 1}, + {"default_silver_sandstone_brick.png"}, + S("Silver Sandstone Brick") +) + +technic_cnc.register_all( + "default:silver_sandstone_block", + {crumbly = 2, cracky = 3, not_in_creative_inventory = 1}, + {"default_silver_sandstone_block.png"}, + S("Silver Sandstone Block") +) + +technic_cnc.register_all( + "default:leaves", + {snappy = 2, choppy = 2, oddly_breakable_by_hand = 3, not_in_creative_inventory = 1}, + {"default_leaves.png"}, + S("Leaves") +) + +technic_cnc.register_all( + "default:tree", + {snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 3, wood = 1, not_in_creative_inventory = 1}, + {"default_tree.png"}, + S("Tree") +) + +technic_cnc.register_all( + "default:ice", + {cracky = 3, puts_out_fire = 1, cools_lava = 1, not_in_creative_inventory = 1}, + {"default_ice.png"}, + S("Ice") +) + +technic_cnc.register_all( + "default:obsidian_block", + {cracky = 1, level = 2, not_in_creative_inventory = 1}, + {"default_obsidian_block.png"}, + S("Obsidian") +) + +technic_cnc.register_all( + "default:bronzeblock", + {cracky = 1, level = 2, not_in_creative_inventory = 1}, + {"default_bronze_block.png"}, + S("Bronze") +) + +technic_cnc.register_all( + "default:copperblock", + {cracky = 1, level = 2, not_in_creative_inventory = 1}, + {"default_copper_block.png"}, + S("Copper") +) + +technic_cnc.register_all( + "default:tinblock", + {cracky = 1, level = 2, not_in_creative_inventory = 1}, + {"default_tin_block.png"}, + S("Tin") +) + +technic_cnc.register_all( + "default:goldblock", + {cracky = 1, level = 2, not_in_creative_inventory = 1}, + {"default_gold_block.png"}, + S("Gold") +) + +if minetest.get_modpath("technic_worldgen") then + technic_cnc.register_all( + "default:steelblock", + {cracky = 1, level = 2, not_in_creative_inventory = 1}, + {"technic_wrought_iron_block.png"}, + S("Wrought Iron") + ) +else + technic_cnc.register_all( + "default:steelblock", + {cracky = 1, level = 2, not_in_creative_inventory = 1}, + {"default_steel_block.png"}, + S("Steel") + ) +end diff --git a/mods/technic_plus_beta/technic_cnc/materials/ethereal.lua b/mods/technic_plus_beta/technic_cnc/materials/ethereal.lua new file mode 100644 index 00000000..fb8fc413 --- /dev/null +++ b/mods/technic_plus_beta/technic_cnc/materials/ethereal.lua @@ -0,0 +1,65 @@ + +local S = technic_cnc.getter + +technic_cnc.register_all( + "ethereal:glostone", + {cracky = 1, not_in_creative_inventory = 1, light_source = 13}, + {"ethereal_glostone.png"}, + S("Glo Stone") +) + +technic_cnc.register_all( + "ethereal:crystal_block", + {snappy = 2, choppy = 2, oddly_breakable_by_hand = 2, not_in_creative_inventory = 1}, + {"ethereal_crystal_block.png"}, + S("Crystal") +) + +technic_cnc.register_all( + "ethereal:banana_wood", + {snappy = 2, choppy = 2, oddly_breakable_by_hand = 2, not_in_creative_inventory = 1}, + {"ethereal_banana_wood.png"}, + S("Banana Wood") +) + +technic_cnc.register_all( + "ethereal:birch_wood", + {snappy = 2, choppy = 2, oddly_breakable_by_hand = 2, not_in_creative_inventory = 1}, + {"moretrees_birch_wood.png"}, + S("Birch Wood") +) + +technic_cnc.register_all( + "ethereal:frost_wood", + {snappy = 2, choppy = 2, oddly_breakable_by_hand = 2, not_in_creative_inventory = 1}, + {"ethereal_frost_wood.png"}, + S("Frost Wood") +) + +technic_cnc.register_all( + "ethereal:palm_wood", + {snappy = 2, choppy = 2, oddly_breakable_by_hand = 2, not_in_creative_inventory = 1}, + {"moretrees_palm_wood.png"}, + S("Palm Wood") +) + +technic_cnc.register_all( + "ethereal:willow_wood", + {snappy = 2, choppy = 2, oddly_breakable_by_hand = 2, not_in_creative_inventory = 1}, + {"ethereal_willow_wood.png"}, + S("Willow Wood") +) + +technic_cnc.register_all( + "ethereal:yellow_wood", + {snappy = 2, choppy = 2, oddly_breakable_by_hand = 2, not_in_creative_inventory = 1}, + {"ethereal_yellow_wood.png"}, + S("Healing Tree Wood") +) + +technic_cnc.register_all( + "ethereal:redwood_wood", + {snappy = 2, choppy = 2, oddly_breakable_by_hand = 2, not_in_creative_inventory = 1}, + {"ethereal_redwood_wood.png"}, + S("Redwood") +) diff --git a/mods/technic_plus_beta/technic_cnc/materials/init.lua b/mods/technic_plus_beta/technic_cnc/materials/init.lua new file mode 100644 index 00000000..f57441c7 --- /dev/null +++ b/mods/technic_plus_beta/technic_cnc/materials/init.lua @@ -0,0 +1,26 @@ + +local path = technic_cnc.modpath .. "/materials/" + +dofile(path .. "default.lua") +dofile(path .. "basic_materials.lua") + +local optional_mods = { + "bakedclay", + "ethereal", + "moreblocks", + "technic_worldgen", +} + +for _, mod in pairs(optional_mods) do + if minetest.get_modpath(mod) then + dofile(path .. mod .. ".lua") + end +end + +local function alias(old, new) + for _,shape in pairs(technic_cnc.programs) do + minetest.register_alias(old .. "_" .. shape.suffix, new .. "_" .. shape.suffix) + end +end + +alias("technic:brass_block", "basic_materials:brass_block") diff --git a/mods/technic_plus_beta/technic_cnc/materials/moreblocks.lua b/mods/technic_plus_beta/technic_cnc/materials/moreblocks.lua new file mode 100644 index 00000000..093e6b07 --- /dev/null +++ b/mods/technic_plus_beta/technic_cnc/materials/moreblocks.lua @@ -0,0 +1,50 @@ + +local S = technic_cnc.getter + +technic_cnc.register_all( + "moreblocks:stone_tile", + {stone = 1, cracky = 3, not_in_creative_inventory = 1}, + {"moreblocks_stone_tile.png"}, + S("Stone Tile")) + +technic_cnc.register_all( + "moreblocks:split_stone_tile", + {stone = 1, cracky = 3, not_in_creative_inventory = 1}, + {"moreblocks_split_stone_tile.png"}, + S("Split Stone Tile") +) + +technic_cnc.register_all( + "moreblocks:checker_stone_tile", + {stone = 1, cracky = 3, not_in_creative_inventory = 1}, + {"moreblocks_checker_stone_tile.png"}, + S("Checker Stone Tile") +) + +technic_cnc.register_all( + "moreblocks:cactus_checker", + {stone = 1, cracky = 3, not_in_creative_inventory = 1}, + {"moreblocks_cactus_checker.png"}, + S("Cactus Checker") +) + +technic_cnc.register_all( + "moreblocks:cactus_brick", + {cracky = 3, not_in_creative_inventory = 1}, + {"moreblocks_cactus_brick.png"}, + S("Cactus Brick") +) + +technic_cnc.register_all( + "moreblocks:grey_bricks", + {cracky = 3, not_in_creative_inventory = 1}, + {"moreblocks_grey_bricks.png"}, + S("Grey Bricks") +) + +technic_cnc.register_all( + "moreblocks:copperpatina", + {cracky = 1, level = 2, not_in_creative_inventory = 1}, + {"moreblocks_copperpatina.png"}, + S("Copper Patina") +) diff --git a/mods/technic_plus_beta/technic_cnc/materials/technic_worldgen.lua b/mods/technic_plus_beta/technic_cnc/materials/technic_worldgen.lua new file mode 100644 index 00000000..0d6f7ae9 --- /dev/null +++ b/mods/technic_plus_beta/technic_cnc/materials/technic_worldgen.lua @@ -0,0 +1,44 @@ + +local S = technic_cnc.getter + +technic_cnc.register_all( + "technic:zinc_block", + {cracky = 1, level = 2, not_in_creative_inventory = 1}, + {"technic_zinc_block.png"}, + S("Zinc") +) + +technic_cnc.register_all( + "technic:cast_iron_block", + {cracky = 1, level = 2, not_in_creative_inventory = 1}, + {"technic_cast_iron_block.png"}, + S("Cast Iron") +) + +technic_cnc.register_all( + "technic:stainless_steel_block", + {cracky = 1, level = 2, not_in_creative_inventory = 1}, + {"technic_stainless_steel_block.png"}, + S("Stainless Steel") +) + +technic_cnc.register_all( + "technic:marble", + {cracky = 3, not_in_creative_inventory = 1}, + {"technic_marble.png"}, + S("Marble") +) + +technic_cnc.register_all( + "technic:granite", + {cracky = 1, not_in_creative_inventory = 1}, + {"technic_granite.png"}, + S("Granite") +) + +technic_cnc.register_all( + "technic:blast_resistant_concrete", + {cracky = 2, level = 2, not_in_creative_inventory = 1}, + {"technic_blast_resistant_concrete_block.png"}, + S("Blast-resistant concrete") +) diff --git a/mods/technic_plus_beta/technic_cnc/mod.conf b/mods/technic_plus_beta/technic_cnc/mod.conf new file mode 100644 index 00000000..4e0f9408 --- /dev/null +++ b/mods/technic_plus_beta/technic_cnc/mod.conf @@ -0,0 +1,3 @@ +name = technic_cnc +depends = default, basic_materials +optional_depends = technic diff --git a/mods/technic_plus_beta/technic_cnc/models/technic_cnc_cylinder.obj b/mods/technic_plus_beta/technic_cnc/models/technic_cnc_cylinder.obj new file mode 100644 index 00000000..b7b97545 --- /dev/null +++ b/mods/technic_plus_beta/technic_cnc/models/technic_cnc_cylinder.obj @@ -0,0 +1,205 @@ +v 0 -0.5 -0.5 +v 0 0.5 -0.5 +v 0.097545 0.5 -0.490393 +v 0.097545 -0.5 -0.490393 +v 0.191342 0.5 -0.46194 +v 0.191342 -0.5 -0.46194 +v 0.277785 0.5 -0.415735 +v 0.277785 -0.5 -0.415735 +v 0.353553 0.5 -0.353554 +v 0.353553 -0.5 -0.353554 +v 0.415735 0.5 -0.277785 +v 0.415735 -0.5 -0.277785 +v 0.46194 0.5 -0.191342 +v 0.46194 -0.5 -0.191342 +v 0.490393 0.5 -0.097545 +v 0.490393 -0.5 -0.097545 +v 0.5 0.5 0 +v 0.5 -0.5 0 +v 0.490393 0.5 0.097545 +v 0.490393 -0.5 0.097545 +v 0.46194 0.5 0.191341 +v 0.46194 -0.5 0.191341 +v 0.415735 0.5 0.277785 +v 0.415735 -0.5 0.277785 +v 0.353553 0.5 0.353553 +v 0.353553 -0.5 0.353553 +v 0.277785 0.5 0.415735 +v 0.277785 -0.5 0.415735 +v 0.191342 0.5 0.46194 +v 0.191342 -0.5 0.46194 +v 0.097545 0.5 0.490392 +v 0.097545 -0.5 0.490392 +v 0 0.5 0.5 +v 0 -0.5 0.5 +v -0.097545 0.5 0.490392 +v -0.097545 -0.5 0.490392 +v -0.191342 0.5 0.461939 +v -0.191342 -0.5 0.461939 +v -0.277785 0.5 0.415734 +v -0.277785 -0.5 0.415734 +v -0.353554 0.5 0.353553 +v -0.353554 -0.5 0.353553 +v -0.415735 0.5 0.277785 +v -0.415735 -0.5 0.277785 +v -0.46194 0.5 0.191341 +v -0.46194 -0.5 0.191341 +v -0.490393 0.5 0.097545 +v -0.490393 -0.5 0.097545 +v -0.5 0.5 -0.000001 +v -0.5 -0.5 -0.000001 +v -0.490393 0.5 -0.097546 +v -0.490393 -0.5 -0.097546 +v -0.46194 0.5 -0.191342 +v -0.46194 -0.5 -0.191342 +v -0.415734 0.5 -0.277786 +v -0.415734 -0.5 -0.277786 +v -0.353553 0.5 -0.353554 +v -0.353553 -0.5 -0.353554 +v -0.277785 0.5 -0.415735 +v -0.277785 -0.5 -0.415735 +v -0.191341 0.5 -0.46194 +v -0.191341 -0.5 -0.46194 +v -0.097544 0.5 -0.490393 +v -0.097544 -0.5 -0.490393 +vn 0 0 -1 +vn 0.1951 0 -0.9808 +vn 0.3827 0 -0.9239 +vn 0.5556 0 -0.8315 +vn 0.7071 0 -0.7071 +vn 0.8315 0 -0.5556 +vn 0.9239 0 -0.3827 +vn 0.9808 0 -0.1951 +vn 1 0 0 +vn 0.9808 0 0.1951 +vn 0.9239 0 0.3827 +vn 0.8315 0 0.5556 +vn 0.7071 0 0.7071 +vn 0.5556 0 0.8315 +vn 0.3827 0 0.9239 +vn 0.1951 0 0.9808 +vn 0 0 1 +vn -0.1951 0 0.9808 +vn -0.3827 0 0.9239 +vn -0.5556 0 0.8315 +vn -0.7071 0 0.7071 +vn -0.8315 0 0.5556 +vn -0.9239 0 0.3827 +vn -0.9808 0 0.1951 +vn -1 0 0 +vn -0.9808 0 -0.1951 +vn -0.9239 0 -0.3827 +vn -0.8315 0 -0.5556 +vn -0.7071 0 -0.7071 +vn -0.5556 0 -0.8315 +vn -0.3827 0 -0.9239 +vn 0 1 0 +vn -0.1951 0 -0.9808 +vn 0 -1 0 +vt 0.500003 0.000001 +vt 0.500004 0.999993 +vt 0.437504 0.999994 +vt 0.437503 0.000001 +vt 0.375004 0.999995 +vt 0.375002 0.000001 +vt 0.312503 0.999996 +vt 0.312502 0 +vt 0.250002 0.999997 +vt 0.250002 0 +vt 0.187502 0.999997 +vt 0.187502 0 +vt 0.125002 0.999998 +vt 0.125002 0 +vt 0.062501 0.999998 +vt 0.062501 0 +vt 0.000001 0.999998 +vt 0.000001 0 +vt 0.999994 0.000001 +vt 0.999998 0.999974 +vt 0.937499 0.999975 +vt 0.937494 0.000002 +vt 0.875 0.999977 +vt 0.874995 0.000002 +vt 0.812501 0.999978 +vt 0.812496 0.000003 +vt 0.750002 0.99998 +vt 0.749996 0.000004 +vt 0.687502 0.999981 +vt 0.687497 0.000004 +vt 0.625002 0.999983 +vt 0.624997 0.000005 +vt 0.562503 0.999984 +vt 0.562498 0.000005 +vt 0.9904 0.402488 +vt 0.999996 0.499996 +vt 0.990387 0.597577 +vt 0.961929 0.691372 +vt 0.915719 0.777812 +vt 0.853532 0.853577 +vt 0.777759 0.915754 +vt 0.691312 0.961954 +vt 0.597514 0.9904 +vt 0.402424 0.990387 +vt 0.308631 0.961929 +vt 0.22219 0.915718 +vt 0.146426 0.853532 +vt 0.084248 0.777759 +vt 0.038049 0.691313 +vt 0.009603 0.597515 +vt 0.000004 0.499997 +vt 0.009615 0.402425 +vt 0.038073 0.308631 +vt 0.084284 0.222189 +vt 0.14647 0.146425 +vt 0.222242 0.084249 +vt 0.308688 0.03805 +vt 0.402486 0.009603 +vt 0.597576 0.009615 +vt 0.691371 0.038074 +vt 0.777812 0.084284 +vt 0.853577 0.146471 +vt 0.915753 0.222244 +vt 0.961953 0.30869 +vt 0.500073 0 +vt 0.915774 0.222274 +vt 1 0.500072 +vt 0.777723 0.915775 +vt 0.499926 0.999999 +vt 0.084223 0.77772 +vt 0 0.499922 +vt 0.222276 0.084224 +s 1 +f 1/1/1 2/2/1 3/3/2 4/4/2 +f 4/4/2 3/3/2 5/5/3 6/6/3 +f 6/6/3 5/5/3 7/7/4 8/8/4 +f 8/8/4 7/7/4 9/9/5 10/10/5 +f 10/10/5 9/9/5 11/11/6 12/12/6 +f 12/12/6 11/11/6 13/13/7 14/14/7 +f 14/14/7 13/13/7 15/15/8 16/16/8 +f 16/16/8 15/15/8 17/17/9 18/18/9 +f 18/19/9 17/20/9 19/21/10 20/22/10 +f 20/22/10 19/21/10 21/23/11 22/24/11 +f 22/24/11 21/23/11 23/25/12 24/26/12 +f 24/26/12 23/25/12 25/27/13 26/28/13 +f 26/28/13 25/27/13 27/29/14 28/30/14 +f 28/30/14 27/29/14 29/31/15 30/32/15 +f 30/32/15 29/31/15 31/33/16 32/34/16 +f 32/34/16 31/33/16 33/2/17 34/1/17 +f 34/1/17 33/2/17 35/3/18 36/4/18 +f 36/4/18 35/3/18 37/5/19 38/6/19 +f 38/6/19 37/5/19 39/7/20 40/8/20 +f 40/8/20 39/7/20 41/9/21 42/10/21 +f 42/10/21 41/9/21 43/11/22 44/12/22 +f 44/12/22 43/11/22 45/13/23 46/14/23 +f 46/14/23 45/13/23 47/15/24 48/16/24 +f 48/16/24 47/15/24 49/17/25 50/18/25 +f 50/19/25 49/20/25 51/21/26 52/22/26 +f 52/22/26 51/21/26 53/23/27 54/24/27 +f 54/24/27 53/23/27 55/25/28 56/26/28 +f 56/26/28 55/25/28 57/27/29 58/28/29 +f 58/28/29 57/27/29 59/29/30 60/30/30 +f 60/30/30 59/29/30 61/31/31 62/32/31 +f 3/35/32 2/36/32 63/37/32 61/38/32 59/39/32 57/40/32 55/41/32 53/42/32 51/43/32 49/2/32 47/44/32 45/45/32 43/46/32 41/47/32 39/48/32 37/49/32 35/50/32 33/51/32 31/52/32 29/53/32 27/54/32 25/55/32 23/56/32 21/57/32 19/58/32 17/1/32 15/59/32 13/60/32 11/61/32 9/62/32 7/63/32 5/64/32 +f 64/34/33 63/33/33 2/2/1 1/1/1 +f 62/32/31 61/31/31 63/33/33 64/34/33 +f 1/65/34 4/59/34 6/60/34 8/61/34 10/62/34 12/66/34 14/64/34 16/35/34 18/67/34 20/37/34 22/38/34 24/39/34 26/40/34 28/68/34 30/42/34 32/43/34 34/69/34 36/44/34 38/45/34 40/46/34 42/47/34 44/70/34 46/49/34 48/50/34 50/71/34 52/52/34 54/53/34 56/54/34 58/55/34 60/72/34 62/57/34 64/58/34 diff --git a/mods/technic_plus_beta/technic_cnc/models/technic_cnc_cylinder_horizontal.obj b/mods/technic_plus_beta/technic_cnc/models/technic_cnc_cylinder_horizontal.obj new file mode 100644 index 00000000..ea480213 --- /dev/null +++ b/mods/technic_plus_beta/technic_cnc/models/technic_cnc_cylinder_horizontal.obj @@ -0,0 +1,205 @@ +v 0.5 0 -0.5 +v -0.5 0 -0.5 +v 0.5 0.097545 -0.490393 +v -0.5 0.097545 -0.490393 +v 0.5 0.191342 -0.46194 +v -0.5 0.191342 -0.46194 +v 0.5 0.277785 -0.415735 +v -0.5 0.277785 -0.415735 +v 0.5 0.353553 -0.353553 +v -0.5 0.353553 -0.353554 +v 0.5 0.415735 -0.277785 +v -0.5 0.415735 -0.277785 +v 0.5 0.46194 -0.191342 +v -0.5 0.46194 -0.191342 +v 0.5 0.490393 -0.097545 +v -0.5 0.490393 -0.097545 +v 0.5 0.5 0 +v -0.5 0.5 0 +v 0.5 0.490393 0.097545 +v -0.5 0.490393 0.097545 +v 0.5 0.46194 0.191342 +v -0.5 0.46194 0.191341 +v 0.5 0.415735 0.277785 +v -0.5 0.415735 0.277785 +v 0.5 0.353553 0.353553 +v -0.5 0.353553 0.353553 +v 0.5 0.277785 0.415735 +v -0.5 0.277785 0.415735 +v 0.5 0.191342 0.46194 +v -0.5 0.191342 0.46194 +v 0.5 0.097545 0.490393 +v -0.5 0.097545 0.490392 +v 0.5 0 0.5 +v -0.5 0 0.5 +v 0.5 -0.097546 0.490392 +v -0.5 -0.097545 0.490392 +v 0.5 -0.191342 0.46194 +v -0.5 -0.191342 0.461939 +v 0.5 -0.277785 0.415734 +v -0.5 -0.277785 0.415734 +v 0.5 -0.353554 0.353553 +v -0.5 -0.353554 0.353553 +v 0.5 -0.415735 0.277785 +v -0.5 -0.415735 0.277785 +v 0.5 -0.46194 0.191341 +v -0.5 -0.46194 0.191341 +v 0.5 -0.490393 0.097545 +v -0.5 -0.490393 0.097544 +v 0.5 -0.5 -0.000001 +v -0.5 -0.5 -0.000001 +v 0.5 -0.490393 -0.097546 +v -0.5 -0.490393 -0.097546 +v 0.5 -0.46194 -0.191342 +v -0.5 -0.46194 -0.191343 +v 0.5 -0.415734 -0.277786 +v -0.5 -0.415734 -0.277786 +v 0.5 -0.353553 -0.353554 +v -0.5 -0.353553 -0.353554 +v 0.5 -0.277785 -0.415735 +v -0.5 -0.277784 -0.415735 +v 0.5 -0.191341 -0.46194 +v -0.5 -0.191341 -0.46194 +v 0.5 -0.097544 -0.490393 +v -0.5 -0.097544 -0.490393 +vn 0 0 -1 +vn 0 0.1951 -0.9808 +vn 0 0.3827 -0.9239 +vn 0 0.5556 -0.8315 +vn 0 0.7071 -0.7071 +vn 0 0.8315 -0.5556 +vn 0 0.9239 -0.3827 +vn 0 0.9808 -0.1951 +vn 0 1 0 +vn 0 0.9808 0.1951 +vn 0 0.9239 0.3827 +vn 0 0.8315 0.5556 +vn 0 0.7071 0.7071 +vn 0 0.5556 0.8315 +vn 0 0.3827 0.9239 +vn 0 0.1951 0.9808 +vn 0 0 1 +vn 0 -0.1951 0.9808 +vn 0 -0.3827 0.9239 +vn 0 -0.5556 0.8315 +vn 0 -0.7071 0.7071 +vn 0 -0.8315 0.5556 +vn 0 -0.9239 0.3827 +vn 0 -0.9808 0.1951 +vn 0 -1 0 +vn 0 -0.9808 -0.1951 +vn 0 -0.9239 -0.3827 +vn 0 -0.8315 -0.5556 +vn 0 -0.7071 -0.7071 +vn 0 -0.5556 -0.8315 +vn 0 -0.3827 -0.9239 +vn -1 0 0 +vn 0 -0.1951 -0.9808 +vn 1 0 0 +vt 0.000003 0.499996 +vt 0.999995 0.499995 +vt 0.999996 0.562495 +vt 0.000002 0.562496 +vt 0.999997 0.624995 +vt 0.000003 0.624996 +vt 0.999998 0.687496 +vt 0.000002 0.687496 +vt 0.999999 0.749997 +vt 0.000002 0.749996 +vt 0.999999 0.812497 +vt 0.000002 0.812497 +vt 1 0.874997 +vt 0.000001 0.874997 +vt 1 0.937498 +vt 0.000001 0.937497 +vt 1 0.999998 +vt 0.000001 0.999998 +vt 0.000003 0.000005 +vt 0.999976 0.000001 +vt 0.999977 0.0625 +vt 0.000003 0.062505 +vt 0.999978 0.124999 +vt 0.000004 0.125004 +vt 0.99998 0.187498 +vt 0.000005 0.187503 +vt 0.999982 0.249997 +vt 0.000005 0.250003 +vt 0.999983 0.312497 +vt 0.000006 0.312502 +vt 0.999985 0.374997 +vt 0.000007 0.375001 +vt 0.999986 0.437496 +vt 0.000007 0.437501 +vt 0.009601 0.597512 +vt 0.009614 0.402424 +vt 0.038072 0.308628 +vt 0.084283 0.222189 +vt 0.146469 0.146424 +vt 0.222242 0.084247 +vt 0.308689 0.038047 +vt 0.402487 0.009601 +vt 0.500033 0 +vt 0.597577 0.009613 +vt 0.691371 0.038072 +vt 0.777811 0.084283 +vt 0.853575 0.146469 +vt 0.915753 0.222242 +vt 0.961952 0.308688 +vt 0.990398 0.402486 +vt 0.990386 0.597576 +vt 0.961928 0.69137 +vt 0.915717 0.777812 +vt 0.853531 0.853576 +vt 0.777759 0.915752 +vt 0.691313 0.961951 +vt 0.597515 0.990398 +vt 0.49997 1 +vt 0.402425 0.990386 +vt 0.30863 0.961927 +vt 0.222189 0.915717 +vt 0.146424 0.85353 +vt 0.084248 0.777757 +vt 0.038048 0.691311 +vt 0.999999 0.500073 +vt 0.777724 0.915774 +vt 0.499927 0.999999 +vt 0.084224 0.777723 +vt 0 0.499925 +vt 0.222279 0.084223 +vt 0.500078 0 +vt 0.915775 0.222276 +s 1 +f 1/1/1 2/2/1 4/3/2 3/4/2 +f 3/4/2 4/3/2 6/5/3 5/6/3 +f 5/6/3 6/5/3 8/7/4 7/8/4 +f 7/8/4 8/7/4 10/9/5 9/10/5 +f 9/10/5 10/9/5 12/11/6 11/12/6 +f 11/12/6 12/11/6 14/13/7 13/14/7 +f 13/14/7 14/13/7 16/15/8 15/16/8 +f 15/16/8 16/15/8 18/17/9 17/18/9 +f 17/19/9 18/20/9 20/21/10 19/22/10 +f 19/22/10 20/21/10 22/23/11 21/24/11 +f 21/24/11 22/23/11 24/25/12 23/26/12 +f 23/26/12 24/25/12 26/27/13 25/28/13 +f 25/28/13 26/27/13 28/29/14 27/30/14 +f 27/30/14 28/29/14 30/31/15 29/32/15 +f 29/32/15 30/31/15 32/33/16 31/34/16 +f 31/34/16 32/33/16 34/2/17 33/1/17 +f 33/1/17 34/2/17 36/3/18 35/4/18 +f 35/4/18 36/3/18 38/5/19 37/6/19 +f 37/6/19 38/5/19 40/7/20 39/8/20 +f 39/8/20 40/7/20 42/9/21 41/10/21 +f 41/10/21 42/9/21 44/11/22 43/12/22 +f 43/12/22 44/11/22 46/13/23 45/14/23 +f 45/14/23 46/13/23 48/15/24 47/16/24 +f 47/16/24 48/15/24 50/17/25 49/18/25 +f 49/19/25 50/20/25 52/21/26 51/22/26 +f 51/22/26 52/21/26 54/23/27 53/24/27 +f 53/24/27 54/23/27 56/25/28 55/26/28 +f 55/26/28 56/25/28 58/27/29 57/28/29 +f 57/28/29 58/27/29 60/29/30 59/30/30 +f 59/30/30 60/29/30 62/31/31 61/32/31 +f 4/35/32 2/1/32 64/36/32 62/37/32 60/38/32 58/39/32 56/40/32 54/41/32 52/42/32 50/43/32 48/44/32 46/45/32 44/46/32 42/47/32 40/48/32 38/49/32 36/50/32 34/2/32 32/51/32 30/52/32 28/53/32 26/54/32 24/55/32 22/56/32 20/57/32 18/58/32 16/59/32 14/60/32 12/61/32 10/62/32 8/63/32 6/64/32 +f 63/34/33 64/33/33 2/2/1 1/1/1 +f 61/32/31 62/31/31 64/33/33 63/34/33 +f 1/65/34 3/51/34 5/52/34 7/53/34 9/54/34 11/66/34 13/56/34 15/57/34 17/67/34 19/59/34 21/60/34 23/61/34 25/62/34 27/68/34 29/64/34 31/35/34 33/69/34 35/36/34 37/37/34 39/38/34 41/39/34 43/70/34 45/41/34 47/42/34 49/71/34 51/44/34 53/45/34 55/46/34 57/47/34 59/72/34 61/49/34 63/50/34 diff --git a/mods/technic_plus_beta/technic_cnc/models/technic_cnc_innercorner.obj b/mods/technic_plus_beta/technic_cnc/models/technic_cnc_innercorner.obj new file mode 100644 index 00000000..ac8ffa84 --- /dev/null +++ b/mods/technic_plus_beta/technic_cnc/models/technic_cnc_innercorner.obj @@ -0,0 +1,28 @@ +v -0.5 0.5 0.5 +v -0.5 0.5 -0.5 +v -0.5 -0.5 -0.5 +v -0.5 -0.5 0.5 +v 0.5 -0.5 -0.5 +v 0.5 0.5 0.5 +v -0.5 -0.5 0.5 +v 0.5 -0.5 0.5 +v 0.5 -0.5 -0.5 +vn 0 0 1 +vn 0 0 -1 +vn 0.7071 0.7071 0 +vn 1 0 0 +vn 0 -1 0 +vn -1 0 0 +vn 0 0.7071 -0.7071 +vt 1 1 +vt 0 1 +vt 0 0 +vt 1 0 +s 0 +f 6/1/1 1/2/1 7/3/1 8/4/1 +f 2/1/2 5/3/2 3/4/2 +f 2/1/3 1/2/3 5/4/3 +f 6/2/4 8/3/4 9/4/4 +f 9/1/5 8/2/5 7/3/5 3/4/5 +f 3/3/6 7/4/6 1/1/6 2/2/6 +f 1/1/7 6/2/7 9/3/7 diff --git a/mods/technic_plus_beta/technic_cnc/models/technic_cnc_innercorner_upsdown.obj b/mods/technic_plus_beta/technic_cnc/models/technic_cnc_innercorner_upsdown.obj new file mode 100644 index 00000000..3aed9f40 --- /dev/null +++ b/mods/technic_plus_beta/technic_cnc/models/technic_cnc_innercorner_upsdown.obj @@ -0,0 +1,28 @@ +v -0.5 -0.5 0.5 +v 0.5 -0.5 0.5 +v 0.5 0.5 0.5 +v -0.5 0.5 0.5 +v 0.5 0.5 -0.5 +v -0.5 -0.5 -0.5 +v -0.5 0.5 0.5 +v -0.5 0.5 -0.5 +v 0.5 0.5 -0.5 +vn -1 0 0 +vn 1 0 0 +vn 0 -0.7071 -0.7071 +vn 0 0 -1 +vn 0 1 0 +vn 0 0 1 +vn 0.7071 -0.7071 0 +vt 0 0 +vt 1 0 +vt 1 1 +vt 0 1 +s 0 +f 6/1/1 1/2/1 7/3/1 8/4/1 +f 2/1/2 5/3/2 3/4/2 +f 2/1/3 1/2/3 5/4/3 +f 6/2/4 8/3/4 9/4/4 +f 9/1/5 8/2/5 7/3/5 3/4/5 +f 3/3/6 7/4/6 1/1/6 2/2/6 +f 1/1/7 6/2/7 9/3/7 diff --git a/mods/technic_plus_beta/technic_cnc/models/technic_cnc_oblate_spheroid.obj b/mods/technic_plus_beta/technic_cnc/models/technic_cnc_oblate_spheroid.obj new file mode 100644 index 00000000..e949f5bf --- /dev/null +++ b/mods/technic_plus_beta/technic_cnc/models/technic_cnc_oblate_spheroid.obj @@ -0,0 +1,300 @@ +# Blender v2.73 (sub 0) OBJ File: 'slope_test_blob_onetexture.blend' +# www.blender.org +o Cube +v 0.213679 -0.450000 -0.213679 +v -0.213679 -0.450000 0.213680 +v 0.213680 -0.450000 0.213680 +v -0.213679 -0.450000 -0.213679 +v 0.213679 0.450000 -0.213679 +v -0.213679 0.450000 -0.213679 +v 0.213679 0.450000 0.213680 +v 0.500000 -0.000003 0.500000 +v 0.277785 -0.415735 0.277785 +v -0.277785 -0.415735 0.277785 +v 0.353553 -0.353554 0.353553 +v -0.353553 -0.353554 0.353553 +v -0.500000 -0.000002 0.500000 +v 0.415735 -0.277786 0.415735 +v -0.277785 0.415735 0.277785 +v 0.277785 0.415735 0.277785 +v -0.415735 -0.277785 0.415735 +v 0.353554 0.353553 0.353554 +v -0.500000 -0.000002 -0.499983 +v 0.461940 -0.191342 0.461940 +v -0.461940 -0.191342 0.461940 +v -0.353553 0.353553 0.353554 +v 0.490393 -0.097546 0.490393 +v 0.500000 -0.000002 -0.500000 +v 0.490393 0.097545 -0.490392 +v 0.490393 0.097545 0.490393 +v -0.490393 -0.097546 0.490393 +v 0.490393 -0.097545 -0.490393 +v 0.461940 0.191341 0.461940 +v -0.461940 0.191341 0.461940 +v 0.461940 0.191342 -0.461940 +v -0.490393 0.097545 0.490393 +v 0.415735 0.277785 0.415735 +v -0.490393 0.097545 -0.490392 +v -0.415735 0.277785 0.415735 +v 0.461940 -0.191341 -0.461940 +v 0.415735 0.277785 -0.415735 +v -0.461940 0.191341 -0.461940 +v -0.415735 0.277785 -0.415735 +v 0.415735 -0.277785 -0.415735 +v -0.490393 -0.097546 -0.490392 +v 0.353553 0.353553 -0.353553 +v -0.213679 0.450000 0.213680 +v -0.353553 0.353553 -0.353553 +v 0.277785 0.415735 -0.277785 +v -0.461940 -0.191342 -0.461939 +v 0.353554 -0.353553 -0.353554 +v -0.277785 0.415735 -0.277785 +v -0.415735 -0.277785 -0.415734 +v 0.277786 -0.415735 -0.277785 +v -0.353553 -0.353554 -0.353553 +v -0.277785 -0.415735 -0.277784 +vt 0.038487 0.679029 +vt 0.010047 0.589789 +vt 0.990397 0.589790 +vt 0.915772 0.767073 +vt 0.084671 0.767071 +vt 0.961957 0.679029 +vt 0.852473 0.146294 +vt 0.914576 0.232749 +vt 0.084146 0.232744 +vt 0.712776 0.000003 +vt 0.221926 0.061588 +vt 0.285951 0.000000 +vt 0.285945 0.999818 +vt 0.221920 0.938229 +vt 0.712771 0.999818 +vt 0.009578 0.589789 +vt 0.989138 0.589792 +vt 0.960721 0.679031 +vt 0.286638 0.000000 +vt 0.777884 0.061589 +vt 0.222561 0.061589 +vt 0.777608 0.938229 +vt 0.222164 0.938229 +vt 0.146413 0.853527 +vt 0.286255 0.999818 +vt 0.713517 0.999818 +vt 0.776800 0.061592 +vt 0.146251 0.146290 +vt 0.000000 0.499907 +vt 0.989139 0.410032 +vt 0.998734 0.499910 +vt 0.853618 0.146291 +vt 0.915772 0.232746 +vt 0.146826 0.146290 +vt 0.961957 0.320789 +vt 0.084672 0.232745 +vt 0.990397 0.410029 +vt 0.038487 0.320789 +vt 0.776796 0.938230 +vt 0.777790 0.938229 +vt 0.146467 0.853526 +vt 0.853556 0.853527 +vt 0.146825 0.853526 +vt 1.000000 0.499907 +vt 0.010047 0.410028 +vt 0.146246 0.853527 +vt 0.222559 0.938228 +vt 0.777882 0.938230 +vt 0.915737 0.767073 +vt 0.084287 0.767072 +vt 0.038083 0.679029 +vt 0.961941 0.679029 +vt 0.037995 0.679029 +vt 0.960723 0.320792 +vt 0.037998 0.320787 +vt 0.009580 0.410028 +vt 0.990167 0.589790 +vt 0.999772 0.499909 +vt 0.961721 0.679029 +vt 0.084246 0.767072 +vt 0.915526 0.767072 +vt 0.853359 0.853527 +vt 0.914573 0.767074 +vt 0.084142 0.767072 +vt 0.852470 0.853528 +vt 0.777609 0.061590 +vt 0.853360 0.146293 +vt 0.222166 0.061589 +vt 0.146414 0.146291 +vt 0.915527 0.232748 +vt 0.084247 0.232746 +vt 0.961721 0.320791 +vt 0.038052 0.320789 +vt 0.990167 0.410031 +vt 0.713686 0.999818 +vt 0.749950 0.250050 +vt 0.749950 0.749950 +vt 0.250050 0.749950 +vt 0.250050 0.250050 +vt 0.713807 0.000000 +vt 0.286258 0.000000 +vt 0.713519 0.000001 +vt 0.250050 0.250050 +vt 0.749950 0.250050 +vt 0.749950 0.749950 +vt 0.286636 0.999817 +vt 0.777791 0.061589 +vt 0.146467 0.146291 +vt 0.084287 0.232745 +vt 0.915737 0.232746 +vt 0.961941 0.320789 +vt 0.000444 0.499907 +vt 0.713687 0.000000 +vt 0.713805 0.999818 +vn -0.620400 0.479600 0.620400 +vn -0.683900 0.254100 0.683900 +vn 0.683900 0.254100 0.683900 +vn 0.531000 0.660300 0.531000 +vn -0.531000 0.660300 0.531000 +vn 0.620400 0.479600 0.620400 +vn -0.429700 -0.794100 0.429700 +vn -0.531000 -0.660300 0.531000 +vn -0.531000 -0.660300 -0.531000 +vn -0.185700 -0.964900 0.185700 +vn -0.325800 -0.887500 -0.325800 +vn -0.185700 -0.964900 -0.185700 +vn -0.185700 0.964900 -0.185700 +vn -0.325800 0.887500 -0.325800 +vn -0.185700 0.964900 0.185700 +vn -0.683900 0.254000 -0.683900 +vn 0.325800 -0.887500 0.325800 +vn -0.325800 -0.887500 0.325800 +vn 0.325800 0.887500 -0.325800 +vn 0.429700 0.794100 -0.429700 +vn 0.185700 0.964900 -0.185700 +vn -0.429700 -0.794100 -0.429700 +vn -0.707100 0.000000 -0.707100 +vn -0.683900 -0.254100 0.683900 +vn -0.707100 0.000000 0.707100 +vn 0.429700 -0.794100 0.429700 +vn 0.531000 -0.660300 0.531000 +vn 0.620400 -0.479600 0.620400 +vn 0.683900 -0.254100 0.683900 +vn -0.620400 -0.479600 0.620400 +vn -0.325800 0.887500 0.325800 +vn 0.185700 0.964900 0.185700 +vn 0.325800 0.887500 0.325800 +vn 0.429700 0.794100 0.429700 +vn -0.429700 0.794100 0.429700 +vn 0.707100 0.000000 0.707100 +vn -0.429700 0.794100 -0.429700 +vn 0.531000 0.660300 -0.531000 +vn 0.683900 0.254100 -0.683900 +vn 0.707100 0.000000 -0.707100 +vn 0.620400 0.479600 -0.620400 +vn -0.620400 0.479600 -0.620400 +vn -0.620400 -0.479600 -0.620400 +vn -0.683900 -0.254000 -0.683900 +vn 0.683900 -0.254100 -0.683900 +vn -0.531000 0.660300 -0.531000 +vn 0.325800 -0.887500 -0.325800 +vn 0.429700 -0.794100 -0.429700 +vn 0.531000 -0.660300 -0.531000 +vn 0.620400 -0.479600 -0.620400 +vn 0.185700 -0.964900 -0.185700 +vn 0.185700 -0.964900 0.185700 +s 1 +f 30/1/1 32/2/2 26/3/3 +f 33/4/4 35/5/5 29/6/6 +f 12/7/7 17/8/8 49/9/9 +f 2/10/10 52/11/11 4/12/12 +f 6/13/13 48/14/14 43/15/15 +f 34/16/16 32/17/2 30/18/1 +f 2/19/10 9/20/17 10/21/18 +f 48/22/14 45/23/19 42/24/20 +f 5/25/21 45/23/19 6/26/13 +f 10/27/18 12/7/7 51/28/22 +f 19/29/23 27/30/24 13/31/25 +f 9/20/17 11/32/26 10/21/18 +f 11/32/26 14/33/27 12/34/7 +f 14/33/27 20/35/28 17/36/8 +f 20/35/28 23/37/29 21/38/30 +f 43/15/15 48/14/14 15/39/31 +f 7/25/32 16/23/33 45/40/19 +f 18/41/34 42/42/20 45/40/19 +f 29/6/6 30/1/1 26/3/3 +f 22/43/35 33/4/4 18/42/34 +f 26/3/3 32/2/2 8/44/36 +f 8/44/36 27/45/24 23/37/29 +f 11/32/26 12/34/7 10/21/18 +f 14/33/27 17/36/8 12/34/7 +f 20/35/28 21/38/30 17/36/8 +f 23/37/29 27/45/24 21/38/30 +f 10/27/18 52/11/11 2/10/10 +f 15/39/31 48/14/14 44/46/37 +f 22/43/35 35/5/5 33/4/4 +f 15/47/31 22/43/35 16/48/33 +f 37/49/38 42/42/20 18/41/34 +f 33/50/4 29/51/6 37/49/38 +f 8/29/36 25/3/39 26/16/3 +f 24/44/40 25/3/39 8/29/36 +f 29/51/6 26/16/3 31/52/41 +f 26/16/3 25/3/39 31/52/41 +f 29/51/6 31/52/41 37/49/38 +f 38/53/42 34/16/16 30/18/1 +f 19/29/23 32/17/2 34/16/16 +f 13/31/25 32/17/2 19/29/23 +f 17/8/8 21/54/30 46/55/43 +f 21/54/30 27/30/24 41/56/44 +f 8/29/36 28/37/45 24/44/40 +f 34/57/16 25/16/39 19/58/23 +f 38/59/42 31/51/41 34/57/16 +f 31/51/41 25/16/39 34/57/16 +f 37/60/38 38/59/42 39/61/46 +f 37/60/38 31/51/41 38/59/42 +f 44/62/37 42/24/20 37/60/38 +f 38/53/42 30/18/1 35/63/5 +f 39/64/46 35/63/5 22/65/35 +f 52/66/11 51/67/22 50/68/47 +f 51/67/22 47/69/48 50/68/47 +f 51/67/22 49/70/9 47/69/48 +f 49/70/9 40/71/49 47/69/48 +f 49/70/9 46/72/43 40/71/49 +f 46/72/43 36/73/50 40/71/49 +f 19/58/23 28/56/45 41/74/44 +f 46/72/43 41/74/44 36/73/50 +f 41/74/44 28/56/45 36/73/50 +f 22/43/35 18/42/34 16/48/33 +f 5/75/21 7/25/32 45/40/19 +f 2/76/10 4/77/12 1/78/51 3/79/52 +f 44/62/37 48/22/14 42/24/20 +f 35/5/5 30/1/1 29/6/6 +f 3/80/52 9/20/17 2/19/10 +f 45/23/19 48/22/14 6/26/13 +f 1/81/51 52/66/11 50/68/47 +f 39/61/46 44/62/37 37/60/38 +f 52/66/11 1/81/51 4/82/12 +f 24/29/40 28/56/45 19/58/23 +f 7/78/32 5/83/21 6/84/13 43/85/15 +f 24/29/40 19/58/23 25/16/39 +f 15/47/31 16/48/33 43/86/15 +f 22/65/35 44/46/37 39/64/46 +f 39/64/46 38/53/42 35/63/5 +f 41/56/44 27/30/24 19/29/23 +f 46/55/43 21/54/30 41/56/44 +f 49/9/9 17/8/8 46/55/43 +f 51/28/22 12/7/7 49/9/9 +f 52/11/11 10/27/18 51/28/22 +f 9/68/17 50/87/47 11/88/26 +f 50/87/47 47/32/48 11/88/26 +f 11/88/26 47/32/48 14/89/27 +f 47/32/48 40/90/49 14/89/27 +f 14/89/27 40/90/49 20/73/28 +f 40/90/49 36/91/50 20/73/28 +f 23/56/29 28/37/45 8/29/36 +f 20/73/28 36/91/50 23/56/29 +f 36/91/50 28/37/45 23/56/29 +f 13/92/25 8/44/36 32/2/2 +f 50/87/47 9/68/17 1/93/51 +f 13/92/25 27/45/24 8/44/36 +f 16/23/33 18/41/34 45/40/19 +f 22/65/35 15/39/31 44/46/37 +f 9/68/17 3/81/52 1/93/51 +f 33/50/4 37/49/38 18/41/34 +f 43/86/15 16/48/33 7/94/32 diff --git a/mods/technic_plus_beta/technic_cnc/models/technic_cnc_one_curved_edge.obj b/mods/technic_plus_beta/technic_cnc/models/technic_cnc_one_curved_edge.obj new file mode 100644 index 00000000..bb82040f --- /dev/null +++ b/mods/technic_plus_beta/technic_cnc/models/technic_cnc_one_curved_edge.obj @@ -0,0 +1,132 @@ +# Blender v2.73 (sub 0) OBJ File: 'slope_test_quarter_round_onetexture.blend' +# www.blender.org +o Cylinder +v -0.500000 0.490393 -0.097545 +v 0.500000 0.490393 -0.097545 +v -0.500000 0.461940 -0.191342 +v 0.500000 0.461940 -0.191342 +v -0.500000 0.415735 -0.277785 +v 0.500000 0.415735 -0.277785 +v -0.500000 0.353553 -0.353553 +v 0.500000 0.353553 -0.353553 +v -0.500000 0.277785 -0.415735 +v 0.500000 0.277785 -0.415735 +v -0.500000 0.191342 -0.461940 +v 0.500000 0.191342 -0.461940 +v -0.500000 0.097545 -0.490393 +v 0.500000 0.097545 -0.490393 +v 0.500000 -0.000000 -0.500000 +v 0.500000 0.490393 -0.097545 +v -0.500000 -0.500000 0.500000 +v -0.500000 -0.500000 -0.500000 +v 0.500000 -0.500000 -0.500000 +v -0.500000 0.500000 0.500000 +v 0.500000 0.500000 0.500000 +v -0.500000 0.000000 -0.500000 +v -0.500000 0.500000 -0.000000 +v 0.500000 0.500000 0.000000 +v -0.500000 0.490393 -0.097545 +v -0.500000 0.461940 -0.191342 +v -0.500000 0.415735 -0.277785 +v -0.500000 0.353553 -0.353553 +v -0.500000 0.277785 -0.415735 +v -0.500000 0.191342 -0.461940 +v -0.500000 0.097545 -0.490393 +v -0.500000 0.000000 0.000000 +v -0.500000 -0.500000 0.500000 +v -0.500000 -0.500000 -0.500000 +v -0.500000 0.500000 0.500000 +v -0.500000 0.000000 -0.500000 +v -0.500000 0.500000 -0.000000 +v 0.500000 0.461940 -0.191342 +v 0.500000 0.415735 -0.277785 +v 0.500000 0.353553 -0.353553 +v 0.500000 0.277785 -0.415735 +v 0.500000 0.191342 -0.461940 +v 0.500000 0.097545 -0.490393 +v 0.500000 -0.000000 -0.500000 +v 0.500000 -0.000000 -0.000000 +v 0.500000 -0.500000 -0.500000 +v 0.500000 -0.500000 0.500000 +v 0.500000 0.500000 0.500000 +v 0.500000 0.500000 0.000000 +v -0.500000 -0.500000 -0.500000 +v 0.500000 -0.500000 -0.500000 +v 0.500000 -0.500000 0.500000 +v -0.500000 -0.500000 0.500000 +v 0.500000 -0.500000 0.500000 +v -0.500000 0.500000 0.500000 +v 0.500000 0.500000 0.500000 +vt 1.000000 0.000000 +vt 1.000000 0.500000 +vt 0.500001 0.500000 +vt 0.500001 1.000000 +vt 0.000003 1.000000 +vt 0.000003 0.000000 +vt 0.597546 0.990393 +vt 0.691342 0.961940 +vt 1.000000 1.000000 +vt 0.990393 0.597545 +vt 0.961940 0.691341 +vt 0.777786 0.915735 +vt 0.853554 0.853553 +vt 0.915735 0.777785 +vt 0.146446 0.853552 +vt 0.084265 0.777783 +vt 0.038060 0.691340 +vt 0.308658 0.961938 +vt 0.222214 0.915733 +vt 0.000000 0.499999 +vt 0.402454 0.990391 +vt 0.009607 0.597544 +vt 1.000000 0.375000 +vt 0.000000 0.375000 +vt 0.000000 0.250000 +vt 1.000000 0.250000 +vt 0.000000 0.125000 +vt 1.000000 0.125000 +vt 0.000000 0.875000 +vt 1.000000 0.875000 +vt 0.000000 0.750000 +vt 1.000000 0.750000 +vt 0.000000 0.625000 +vt 1.000000 0.625000 +vn 1.000000 -0.000000 0.000000 +vn -0.000000 0.000000 1.000000 +vn -0.000000 -1.000000 0.000000 +vn -1.000000 0.000000 0.000000 +vn 0.000000 0.980800 -0.195100 +vn 0.000000 0.923900 -0.382700 +vn -0.000000 0.831500 -0.555600 +vn -0.000000 0.707100 -0.707100 +vn -0.000000 0.555600 -0.831500 +vn -0.000000 0.382700 -0.923900 +vn -0.000000 0.195100 -0.980800 +vn 0.000000 1.000000 -0.000000 +vn 0.000000 0.998800 -0.049100 +vn -0.000000 0.049100 -0.998800 +vn -0.000000 0.000000 -1.000000 +s off +f 46/1/1 44/2/1 45/3/1 49/4/1 48/5/1 47/6/1 +f 16/7/1 49/4/1 45/3/1 38/8/1 +f 55/5/2 53/6/2 54/1/2 56/9/2 +f 43/10/1 42/11/1 45/3/1 44/2/1 +f 39/12/1 38/8/1 45/3/1 40/13/1 +f 41/14/1 40/13/1 45/3/1 42/11/1 +f 50/9/3 51/5/3 52/6/3 17/1/3 +f 28/15/4 29/16/4 30/17/4 32/3/4 +f 26/18/4 27/19/4 28/15/4 32/3/4 +f 35/9/4 37/4/4 32/3/4 36/20/4 34/6/4 33/1/4 +f 37/4/4 25/21/4 26/18/4 32/3/4 +f 30/17/4 31/22/4 36/20/4 32/3/4 +s 1 +f 1/23/5 2/24/5 4/25/6 3/26/6 +f 3/26/6 4/25/6 6/27/7 5/28/7 +f 5/28/7 6/27/7 8/6/8 7/1/8 +f 7/9/8 8/5/8 10/29/9 9/30/9 +f 9/30/9 10/29/9 12/31/10 11/32/10 +f 11/32/10 12/31/10 14/33/11 13/34/11 +f 21/5/12 24/20/13 23/2/13 20/9/12 +f 13/34/11 14/33/11 15/20/14 22/2/14 +f 23/2/13 24/20/13 2/24/5 1/23/5 +f 18/1/15 22/2/14 15/20/14 19/6/15 diff --git a/mods/technic_plus_beta/technic_cnc/models/technic_cnc_outercorner.obj b/mods/technic_plus_beta/technic_cnc/models/technic_cnc_outercorner.obj new file mode 100644 index 00000000..60ccae65 --- /dev/null +++ b/mods/technic_plus_beta/technic_cnc/models/technic_cnc_outercorner.obj @@ -0,0 +1,23 @@ +# Blender v2.73 (sub 0) OBJ File: 'technic-ocorner.blend' +# www.blender.org +o Cube_Cube.002 +v -0.500000 0.500000 0.500000 +v -0.500000 -0.500000 -0.500000 +v -0.500000 -0.500000 0.500000 +v 0.500000 -0.500000 -0.500000 +v 0.500000 -0.500000 0.500000 +vt 1.000000 1.000000 +vt 0.000000 1.000000 +vt 0.000000 0.000000 +vt 1.000000 0.000000 +vn 0.000000 -1.000000 -0.000000 +vn 0.000000 0.000000 1.000000 +vn -1.000000 -0.000000 0.000000 +vn -0.000000 0.707100 -0.707100 +vn 0.707100 0.707100 -0.000000 +s off +f 3/1/1 2/2/1 4/3/1 5/4/1 +f 1/2/2 3/3/2 5/4/2 +f 1/1/3 2/3/3 3/4/3 +f 1/1/4 4/3/4 2/4/4 +f 1/2/5 5/3/5 4/4/5 diff --git a/mods/technic_plus_beta/technic_cnc/models/technic_cnc_outercorner_upsdown.obj b/mods/technic_plus_beta/technic_cnc/models/technic_cnc_outercorner_upsdown.obj new file mode 100644 index 00000000..c89de8ac --- /dev/null +++ b/mods/technic_plus_beta/technic_cnc/models/technic_cnc_outercorner_upsdown.obj @@ -0,0 +1,23 @@ +# Blender v2.73 (sub 0) OBJ File: 'slope_test_ocorner_onetexture.blend' +# www.blender.org +o Cube_Cube.002 +v -0.500000 -0.500000 0.500000 +v 0.500000 0.500000 0.500000 +v -0.500000 0.500000 0.500000 +v 0.500000 0.500000 -0.500000 +v -0.500000 0.500000 -0.500000 +vt 0.000000 0.000000 +vt 1.000000 0.000000 +vt 1.000000 1.000000 +vt 0.000000 1.000000 +vn 0.000000 1.000000 -0.000000 +vn -1.000000 0.000000 -0.000000 +vn 0.000000 0.000000 1.000000 +vn 0.707100 -0.707100 0.000000 +vn -0.000000 -0.707100 -0.707100 +s off +f 3/1/1 2/2/1 4/3/1 5/4/1 +f 1/2/2 3/3/2 5/4/2 +f 1/1/3 2/3/3 3/4/3 +f 1/1/4 4/3/4 2/4/4 +f 1/2/5 5/3/5 4/4/5 diff --git a/mods/technic_plus_beta/technic_cnc/models/technic_cnc_pyramid.obj b/mods/technic_plus_beta/technic_cnc/models/technic_cnc_pyramid.obj new file mode 100644 index 00000000..a618dcf5 --- /dev/null +++ b/mods/technic_plus_beta/technic_cnc/models/technic_cnc_pyramid.obj @@ -0,0 +1,24 @@ +# Blender v2.73 (sub 0) OBJ File: 'slope_test_pyramid_short_onetexture.blend' +# www.blender.org +o Cube +v 0.500000 -0.500000 -0.500000 +v 0.500000 -0.500000 0.500000 +v -0.500000 -0.500000 0.500000 +v -0.500000 -0.500000 -0.500000 +v -0.000000 0.000000 -0.000000 +vt 1.000000 0.500000 +vt 0.000000 0.500000 +vt 0.000000 0.000000 +vt 1.000000 0.000000 +vt 0.500000 0.500000 +vn 0.000000 -1.000000 0.000000 +vn -0.707100 0.707100 -0.000000 +vn 0.000000 0.707100 -0.707100 +vn 0.707100 0.707100 0.000000 +vn -0.000000 0.707100 0.707100 +s off +f 1/1/1 2/2/1 3/3/1 4/4/1 +f 3/4/2 5/5/2 4/3/2 +f 5/5/3 1/3/3 4/4/3 +f 1/4/4 5/5/4 2/3/4 +f 2/4/5 5/5/5 3/3/5 diff --git a/mods/technic_plus_beta/technic_cnc/models/technic_cnc_pyramid_spike.obj b/mods/technic_plus_beta/technic_cnc/models/technic_cnc_pyramid_spike.obj new file mode 100644 index 00000000..b305af2f --- /dev/null +++ b/mods/technic_plus_beta/technic_cnc/models/technic_cnc_pyramid_spike.obj @@ -0,0 +1,24 @@ +# Blender v2.73 (sub 0) OBJ File: 'slope_test_pyramid_onetexture.blend' +# www.blender.org +o Cube +v 0.500000 -0.500000 -0.500000 +v 0.500000 -0.500000 0.500000 +v -0.500000 -0.500000 0.500000 +v -0.500000 -0.500000 -0.500000 +v -0.000000 0.500000 -0.000000 +vt 1.000000 1.000000 +vt 0.000000 1.000000 +vt 0.000000 0.000000 +vt 1.000000 0.000000 +vt 0.500000 1.000000 +vn 0.000000 -1.000000 0.000000 +vn -0.894400 0.447200 -0.000000 +vn 0.000000 0.447200 -0.894400 +vn 0.894400 0.447200 0.000000 +vn -0.000000 0.447200 0.894400 +s off +f 1/1/1 2/2/1 3/3/1 4/4/1 +f 3/4/2 5/5/2 4/3/2 +f 5/5/3 1/3/3 4/4/3 +f 1/4/4 5/5/4 2/3/4 +f 2/4/5 5/5/5 3/3/5 diff --git a/mods/technic_plus_beta/technic_cnc/models/technic_cnc_slope.obj b/mods/technic_plus_beta/technic_cnc/models/technic_cnc_slope.obj new file mode 100644 index 00000000..f6f48607 --- /dev/null +++ b/mods/technic_plus_beta/technic_cnc/models/technic_cnc_slope.obj @@ -0,0 +1,24 @@ +# Blender v2.73 (sub 0) OBJ File: 'slope_test_slope_onetexture.blend' +# www.blender.org +o Cube_Cube.002 +v 0.500000 0.500000 0.500000 +v -0.500000 0.500000 0.500000 +v -0.500000 -0.500000 0.500000 +v 0.500000 -0.500000 0.500000 +v -0.500000 -0.500000 -0.500000 +v 0.500000 -0.500000 -0.500000 +vt 1.000000 1.000000 +vt 0.000000 1.000000 +vt 0.000000 0.000000 +vt 1.000000 0.000000 +vn 0.000000 -0.000000 1.000000 +vn 0.000000 -1.000000 -0.000000 +vn -1.000000 0.000000 0.000000 +vn 1.000000 0.000000 0.000000 +vn 0.000000 0.707100 -0.707100 +s off +f 1/1/1 2/2/1 3/3/1 4/4/1 +f 4/3/2 3/4/2 5/1/2 6/2/2 +f 2/1/3 5/3/3 3/4/3 +f 1/2/4 4/3/4 6/4/4 +f 2/1/5 1/2/5 6/3/5 5/4/5 diff --git a/mods/technic_plus_beta/technic_cnc/models/technic_cnc_slope_horizontal.obj b/mods/technic_plus_beta/technic_cnc/models/technic_cnc_slope_horizontal.obj new file mode 100644 index 00000000..4866a921 --- /dev/null +++ b/mods/technic_plus_beta/technic_cnc/models/technic_cnc_slope_horizontal.obj @@ -0,0 +1,24 @@ +# Blender v2.73 (sub 0) OBJ File: 'technic-slope-horizontal.blend' +# www.blender.org +o Cube_Cube.002 +v -0.500000 0.500000 0.500000 +v -0.500000 -0.500000 0.500000 +v 0.500000 -0.500000 0.500000 +v 0.500000 0.500000 0.500000 +v 0.500000 -0.500000 -0.500000 +v 0.500000 0.500000 -0.500000 +vt 0.000000 1.000000 +vt 0.000000 0.000000 +vt 1.000000 0.000000 +vt 1.000000 1.000000 +vn 0.000000 -0.000000 1.000000 +vn 1.000000 -0.000000 -0.000000 +vn -0.000000 -1.000000 0.000000 +vn 0.000000 1.000000 -0.000000 +vn -0.707100 0.000000 -0.707100 +s off +f 1/1/1 2/2/1 3/3/1 4/4/1 +f 4/1/2 3/2/2 5/3/2 6/4/2 +f 2/3/3 5/1/3 3/2/3 +f 1/4/4 4/1/4 6/2/4 +f 2/3/5 1/4/5 6/1/5 5/2/5 diff --git a/mods/technic_plus_beta/technic_cnc/models/technic_cnc_slope_upsdown.obj b/mods/technic_plus_beta/technic_cnc/models/technic_cnc_slope_upsdown.obj new file mode 100644 index 00000000..68805955 --- /dev/null +++ b/mods/technic_plus_beta/technic_cnc/models/technic_cnc_slope_upsdown.obj @@ -0,0 +1,24 @@ +# Blender v2.73 (sub 0) OBJ File: 'slope_test_slope_onetexture.blend' +# www.blender.org +o Cube_Cube.002 +v -0.500000 -0.500000 0.500000 +v 0.500000 -0.500000 0.500000 +v 0.500000 0.500000 0.500000 +v -0.500000 0.500000 0.500000 +v 0.500000 0.500000 -0.500000 +v -0.500000 0.500000 -0.500000 +vt 0.000000 0.000000 +vt 1.000000 0.000000 +vt 1.000000 1.000000 +vt 0.000000 1.000000 +vn 0.000000 0.000000 1.000000 +vn 0.000000 1.000000 -0.000000 +vn 1.000000 -0.000000 0.000000 +vn -1.000000 0.000000 -0.000000 +vn -0.000000 -0.707100 -0.707100 +s off +f 1/1/1 2/2/1 3/3/1 4/4/1 +f 4/3/2 3/4/2 5/1/2 6/2/2 +f 2/1/3 5/3/3 3/4/3 +f 1/2/4 4/3/4 6/4/4 +f 2/1/5 1/2/5 6/3/5 5/4/5 diff --git a/mods/technic_plus_beta/technic_cnc/models/technic_cnc_sphere.obj b/mods/technic_plus_beta/technic_cnc/models/technic_cnc_sphere.obj new file mode 100644 index 00000000..772b5707 --- /dev/null +++ b/mods/technic_plus_beta/technic_cnc/models/technic_cnc_sphere.obj @@ -0,0 +1,1927 @@ +# Blender v2.73 (sub 0) OBJ File: 'globe.blend' +# www.blender.org +o Sphere +v -0.097545 0.490393 0.000000 +v -0.191342 0.461940 0.000000 +v -0.277785 0.415735 0.000000 +v -0.353553 0.353553 0.000000 +v -0.415735 0.277785 0.000000 +v -0.461940 0.191342 0.000000 +v -0.490393 0.097545 0.000000 +v -0.500000 0.000000 0.000000 +v -0.490393 -0.097545 0.000000 +v -0.461940 -0.191342 0.000000 +v -0.415735 -0.277785 0.000000 +v -0.353553 -0.353553 0.000000 +v -0.277785 -0.415735 0.000000 +v -0.191342 -0.461940 0.000000 +v -0.097545 -0.490393 0.000000 +v -0.095671 0.490393 -0.019030 +v -0.187665 0.461940 -0.037329 +v -0.272448 0.415735 -0.054193 +v -0.346760 0.353553 -0.068975 +v -0.407747 0.277785 -0.081106 +v -0.453064 0.191342 -0.090120 +v -0.480970 0.097545 -0.095671 +v -0.490393 0.000000 -0.097545 +v -0.480970 -0.097545 -0.095671 +v -0.453064 -0.191342 -0.090120 +v -0.407747 -0.277785 -0.081106 +v -0.346760 -0.353553 -0.068975 +v -0.272448 -0.415735 -0.054193 +v -0.187665 -0.461940 -0.037329 +v -0.095671 -0.490393 -0.019030 +v -0.090120 0.490393 -0.037329 +v -0.176777 0.461940 -0.073223 +v -0.256640 0.415735 -0.106304 +v -0.326641 0.353553 -0.135299 +v -0.384089 0.277785 -0.159095 +v -0.426777 0.191342 -0.176777 +v -0.453064 0.097545 -0.187665 +v -0.461940 0.000000 -0.191342 +v -0.453064 -0.097545 -0.187665 +v -0.426777 -0.191342 -0.176777 +v -0.384089 -0.277785 -0.159095 +v -0.326641 -0.353553 -0.135299 +v -0.256640 -0.415735 -0.106304 +v -0.176777 -0.461940 -0.073223 +v -0.090120 -0.490393 -0.037329 +v -0.081106 0.490393 -0.054193 +v -0.159095 0.461940 -0.106304 +v -0.230970 0.415735 -0.154329 +v -0.293969 0.353553 -0.196424 +v -0.345671 0.277785 -0.230970 +v -0.384089 0.191342 -0.256640 +v -0.407746 0.097545 -0.272448 +v -0.415735 0.000000 -0.277785 +v -0.407746 -0.097545 -0.272448 +v -0.384089 -0.191342 -0.256640 +v -0.345671 -0.277785 -0.230970 +v -0.293969 -0.353553 -0.196424 +v -0.230970 -0.415735 -0.154329 +v -0.159095 -0.461940 -0.106304 +v -0.081106 -0.490393 -0.054193 +v -0.068975 0.490393 -0.068975 +v -0.135299 0.461940 -0.135299 +v -0.196424 0.415735 -0.196424 +v -0.250000 0.353553 -0.250000 +v -0.293969 0.277785 -0.293969 +v -0.326641 0.191342 -0.326641 +v -0.346760 0.097545 -0.346760 +v -0.353553 0.000000 -0.353554 +v -0.346760 -0.097545 -0.346760 +v -0.326641 -0.191342 -0.326641 +v -0.293969 -0.277785 -0.293969 +v -0.250000 -0.353553 -0.250000 +v -0.196424 -0.415735 -0.196424 +v -0.135299 -0.461940 -0.135299 +v -0.068975 -0.490393 -0.068975 +v -0.054193 0.490393 -0.081106 +v -0.106304 0.461940 -0.159095 +v -0.154329 0.415735 -0.230970 +v -0.196424 0.353553 -0.293969 +v -0.230970 0.277785 -0.345671 +v -0.256640 0.191342 -0.384089 +v -0.272447 0.097545 -0.407747 +v -0.277785 0.000000 -0.415735 +v -0.272447 -0.097545 -0.407747 +v -0.256640 -0.191342 -0.384089 +v -0.230970 -0.277785 -0.345671 +v -0.196424 -0.353553 -0.293969 +v -0.154329 -0.415735 -0.230970 +v -0.106304 -0.461940 -0.159095 +v -0.054193 -0.490393 -0.081106 +v -0.037329 0.490393 -0.090120 +v -0.073223 0.461940 -0.176777 +v -0.106304 0.415735 -0.256640 +v -0.135299 0.353553 -0.326641 +v -0.159095 0.277785 -0.384089 +v -0.176777 0.191342 -0.426777 +v -0.187665 0.097545 -0.453064 +v -0.191342 0.000000 -0.461940 +v -0.187665 -0.097545 -0.453064 +v -0.176777 -0.191342 -0.426777 +v -0.159095 -0.277785 -0.384089 +v -0.135299 -0.353553 -0.326641 +v -0.106304 -0.415735 -0.256640 +v -0.073223 -0.461940 -0.176777 +v -0.037329 -0.490393 -0.090120 +v -0.019030 0.490393 -0.095671 +v -0.037329 0.461940 -0.187665 +v -0.054193 0.415735 -0.272448 +v -0.068975 0.353553 -0.346760 +v -0.081106 0.277785 -0.407747 +v -0.090120 0.191342 -0.453064 +v -0.095671 0.097545 -0.480970 +v -0.097545 0.000000 -0.490393 +v -0.095671 -0.097545 -0.480970 +v -0.090120 -0.191342 -0.453064 +v -0.081106 -0.277785 -0.407747 +v -0.068975 -0.353553 -0.346760 +v -0.054193 -0.415735 -0.272448 +v -0.037329 -0.461940 -0.187665 +v -0.019030 -0.490393 -0.095671 +v 0.000000 0.490393 -0.097545 +v 0.000000 0.461940 -0.191342 +v 0.000000 0.415735 -0.277785 +v 0.000000 0.353553 -0.353553 +v 0.000000 0.277785 -0.415735 +v 0.000000 0.191342 -0.461940 +v 0.000000 0.097545 -0.490393 +v 0.000000 0.000000 -0.500000 +v 0.000000 -0.097545 -0.490393 +v 0.000000 -0.191342 -0.461940 +v 0.000000 -0.277785 -0.415735 +v 0.000000 -0.353553 -0.353553 +v 0.000000 -0.415735 -0.277785 +v 0.000000 -0.461940 -0.191342 +v 0.000000 -0.490393 -0.097545 +v 0.019030 0.490393 -0.095671 +v 0.037329 0.461940 -0.187665 +v 0.054193 0.415735 -0.272448 +v 0.068975 0.353553 -0.346760 +v 0.081106 0.277785 -0.407747 +v 0.090120 0.191342 -0.453064 +v 0.095671 0.097545 -0.480970 +v 0.097545 0.000000 -0.490393 +v 0.095671 -0.097545 -0.480970 +v 0.090120 -0.191342 -0.453064 +v 0.081106 -0.277785 -0.407747 +v 0.068975 -0.353553 -0.346760 +v 0.054193 -0.415735 -0.272448 +v 0.037329 -0.461940 -0.187665 +v 0.019030 -0.490393 -0.095671 +v 0.037329 0.490393 -0.090120 +v 0.073224 0.461940 -0.176777 +v 0.106304 0.415735 -0.256640 +v 0.135299 0.353553 -0.326641 +v 0.159095 0.277785 -0.384089 +v 0.176777 0.191342 -0.426777 +v 0.187665 0.097545 -0.453064 +v 0.191342 0.000000 -0.461940 +v 0.187665 -0.097545 -0.453064 +v 0.176777 -0.191342 -0.426777 +v 0.159095 -0.277785 -0.384089 +v 0.135299 -0.353553 -0.326641 +v 0.106304 -0.415735 -0.256640 +v 0.073223 -0.461940 -0.176777 +v 0.037329 -0.490393 -0.090120 +v 0.054193 0.490393 -0.081106 +v 0.106304 0.461940 -0.159095 +v 0.154329 0.415735 -0.230970 +v 0.196424 0.353553 -0.293969 +v 0.230970 0.277785 -0.345671 +v 0.256640 0.191342 -0.384089 +v 0.272448 0.097545 -0.407747 +v 0.277785 0.000000 -0.415735 +v 0.272448 -0.097545 -0.407747 +v 0.256640 -0.191342 -0.384089 +v 0.230970 -0.277785 -0.345671 +v 0.196424 -0.353553 -0.293969 +v 0.154329 -0.415735 -0.230970 +v 0.106304 -0.461940 -0.159095 +v 0.054193 -0.490393 -0.081106 +v 0.068975 0.490393 -0.068975 +v 0.135299 0.461940 -0.135299 +v 0.196424 0.415735 -0.196424 +v 0.250000 0.353553 -0.250000 +v 0.293969 0.277785 -0.293969 +v 0.326641 0.191342 -0.326641 +v 0.346760 0.097545 -0.346760 +v 0.353554 0.000000 -0.353553 +v 0.346760 -0.097545 -0.346760 +v 0.326641 -0.191342 -0.326641 +v 0.293969 -0.277785 -0.293969 +v 0.250000 -0.353553 -0.250000 +v 0.196424 -0.415735 -0.196424 +v 0.135299 -0.461940 -0.135299 +v 0.068975 -0.490393 -0.068975 +v 0.081106 0.490393 -0.054193 +v 0.159095 0.461940 -0.106304 +v 0.230970 0.415735 -0.154329 +v 0.293969 0.353553 -0.196424 +v 0.345671 0.277785 -0.230970 +v 0.384089 0.191342 -0.256640 +v 0.407747 0.097545 -0.272447 +v 0.415735 0.000000 -0.277785 +v 0.407747 -0.097545 -0.272447 +v 0.384089 -0.191342 -0.256640 +v 0.345671 -0.277785 -0.230970 +v 0.293969 -0.353553 -0.196424 +v 0.230970 -0.415735 -0.154329 +v 0.159095 -0.461940 -0.106304 +v 0.081106 -0.490393 -0.054193 +v 0.090120 0.490393 -0.037329 +v 0.176777 0.461940 -0.073223 +v 0.256640 0.415735 -0.106304 +v 0.326641 0.353553 -0.135299 +v 0.384089 0.277785 -0.159095 +v 0.426777 0.191342 -0.176777 +v 0.453064 0.097545 -0.187665 +v 0.461940 0.000000 -0.191342 +v 0.453064 -0.097545 -0.187665 +v 0.426777 -0.191342 -0.176777 +v 0.384089 -0.277785 -0.159095 +v 0.326641 -0.353553 -0.135299 +v 0.256640 -0.415735 -0.106304 +v 0.176777 -0.461940 -0.073223 +v 0.090120 -0.490393 -0.037329 +v 0.095671 0.490393 -0.019030 +v 0.187665 0.461940 -0.037329 +v 0.272448 0.415735 -0.054193 +v 0.346760 0.353553 -0.068975 +v 0.407747 0.277785 -0.081106 +v 0.453064 0.191342 -0.090120 +v 0.480970 0.097545 -0.095671 +v 0.490393 0.000000 -0.097545 +v 0.480970 -0.097545 -0.095671 +v 0.453064 -0.191342 -0.090120 +v 0.407747 -0.277785 -0.081106 +v 0.346760 -0.353553 -0.068975 +v 0.272448 -0.415735 -0.054193 +v 0.187665 -0.461940 -0.037329 +v 0.095671 -0.490393 -0.019030 +v 0.097545 0.490393 0.000000 +v 0.191342 0.461940 -0.000000 +v 0.277785 0.415735 -0.000000 +v 0.353554 0.353553 0.000000 +v 0.415735 0.277785 0.000000 +v 0.461940 0.191342 -0.000000 +v 0.490393 0.097545 0.000000 +v 0.500000 0.000000 0.000000 +v 0.490393 -0.097545 0.000000 +v 0.461940 -0.191342 -0.000000 +v 0.415735 -0.277785 0.000000 +v 0.353554 -0.353553 0.000000 +v 0.277785 -0.415735 0.000000 +v 0.191342 -0.461940 -0.000000 +v 0.097545 -0.490393 -0.000000 +v 0.095671 0.490393 0.019030 +v 0.187665 0.461940 0.037329 +v 0.272448 0.415735 0.054193 +v 0.346760 0.353553 0.068975 +v 0.407747 0.277785 0.081106 +v 0.453064 0.191342 0.090120 +v 0.480970 0.097545 0.095671 +v 0.490393 0.000000 0.097545 +v 0.480970 -0.097545 0.095671 +v 0.453064 -0.191342 0.090120 +v 0.407747 -0.277785 0.081106 +v 0.346760 -0.353553 0.068975 +v 0.272448 -0.415735 0.054193 +v 0.187665 -0.461940 0.037329 +v 0.095671 -0.490393 0.019030 +v 0.090120 0.490393 0.037329 +v 0.176777 0.461940 0.073223 +v 0.256640 0.415735 0.106304 +v 0.326641 0.353553 0.135299 +v 0.384089 0.277785 0.159095 +v 0.426777 0.191342 0.176777 +v 0.453064 0.097545 0.187665 +v 0.461940 0.000000 0.191342 +v 0.453064 -0.097545 0.187665 +v 0.426777 -0.191342 0.176777 +v 0.384089 -0.277785 0.159095 +v 0.326641 -0.353553 0.135299 +v 0.256640 -0.415735 0.106304 +v 0.176777 -0.461940 0.073223 +v 0.090120 -0.490393 0.037329 +v 0.081106 0.490393 0.054193 +v 0.159095 0.461940 0.106304 +v 0.230970 0.415735 0.154329 +v 0.293969 0.353553 0.196424 +v 0.345671 0.277785 0.230970 +v 0.384089 0.191342 0.256640 +v 0.407747 0.097545 0.272448 +v 0.415735 0.000000 0.277785 +v 0.407747 -0.097545 0.272448 +v 0.384089 -0.191342 0.256640 +v 0.345671 -0.277785 0.230970 +v 0.293969 -0.353553 0.196424 +v 0.230970 -0.415735 0.154329 +v 0.159095 -0.461940 0.106304 +v 0.081106 -0.490393 0.054193 +v 0.068975 0.490393 0.068975 +v 0.135299 0.461940 0.135299 +v 0.196424 0.415735 0.196424 +v 0.250000 0.353553 0.250000 +v 0.293969 0.277785 0.293969 +v 0.326641 0.191342 0.326641 +v 0.346760 0.097545 0.346760 +v 0.353553 0.000000 0.353553 +v 0.346760 -0.097545 0.346760 +v 0.326641 -0.191342 0.326641 +v 0.293969 -0.277785 0.293969 +v 0.250000 -0.353553 0.250000 +v 0.196424 -0.415735 0.196424 +v 0.135299 -0.461940 0.135299 +v 0.068975 -0.490393 0.068975 +v 0.054193 0.490393 0.081106 +v 0.106304 0.461940 0.159095 +v 0.154329 0.415735 0.230970 +v 0.196424 0.353553 0.293969 +v 0.230970 0.277785 0.345671 +v 0.256640 0.191342 0.384089 +v 0.272448 0.097545 0.407746 +v 0.277785 0.000000 0.415735 +v 0.272448 -0.097545 0.407746 +v 0.256640 -0.191342 0.384089 +v 0.230970 -0.277785 0.345671 +v 0.196424 -0.353553 0.293969 +v 0.154329 -0.415735 0.230970 +v 0.106304 -0.461940 0.159095 +v 0.054193 -0.490393 0.081106 +v 0.037329 0.490393 0.090120 +v 0.073223 0.461940 0.176777 +v 0.106304 0.415735 0.256640 +v 0.135299 0.353553 0.326641 +v 0.159095 0.277785 0.384089 +v 0.176777 0.191342 0.426777 +v 0.187665 0.097545 0.453064 +v 0.191342 0.000000 0.461940 +v 0.187665 -0.097545 0.453064 +v 0.176777 -0.191342 0.426777 +v 0.159095 -0.277785 0.384089 +v 0.135299 -0.353553 0.326641 +v 0.106304 -0.415735 0.256640 +v 0.073223 -0.461940 0.176777 +v 0.037329 -0.490393 0.090120 +v 0.019030 0.490393 0.095671 +v 0.037329 0.461940 0.187665 +v 0.054193 0.415735 0.272448 +v 0.068975 0.353553 0.346760 +v 0.081106 0.277785 0.407746 +v 0.090120 0.191342 0.453064 +v 0.095671 0.097545 0.480970 +v 0.097545 0.000000 0.490393 +v 0.095671 -0.097545 0.480970 +v 0.090120 -0.191342 0.453064 +v 0.081106 -0.277785 0.407746 +v 0.068975 -0.353553 0.346760 +v 0.054193 -0.415735 0.272447 +v 0.037329 -0.461940 0.187665 +v 0.019030 -0.490393 0.095671 +v 0.000000 0.490393 0.097545 +v 0.000000 0.461940 0.191342 +v 0.000000 0.415735 0.277785 +v 0.000000 0.353553 0.353553 +v 0.000000 0.277785 0.415735 +v 0.000000 0.191342 0.461940 +v 0.000000 0.097545 0.490392 +v 0.000000 0.000000 0.500000 +v 0.000000 -0.097545 0.490392 +v 0.000000 -0.191342 0.461940 +v 0.000000 -0.277785 0.415735 +v 0.000000 -0.353553 0.353553 +v 0.000000 -0.415735 0.277785 +v 0.000000 -0.461940 0.191342 +v 0.000000 -0.490393 0.097545 +v -0.019030 0.490393 0.095671 +v -0.037329 0.461940 0.187665 +v -0.054193 0.415735 0.272448 +v -0.068975 0.353553 0.346760 +v -0.081106 0.277785 0.407746 +v -0.090120 0.191342 0.453064 +v -0.095671 0.097545 0.480970 +v -0.097545 0.000000 0.490393 +v -0.095671 -0.097545 0.480970 +v -0.090120 -0.191342 0.453064 +v -0.081106 -0.277785 0.407746 +v -0.068975 -0.353553 0.346760 +v -0.054193 -0.415735 0.272447 +v -0.037329 -0.461940 0.187665 +v -0.019030 -0.490393 0.095671 +v -0.037329 0.490393 0.090120 +v -0.073223 0.461940 0.176777 +v -0.106304 0.415735 0.256640 +v -0.135299 0.353553 0.326641 +v -0.159095 0.277785 0.384089 +v -0.176777 0.191342 0.426777 +v -0.187665 0.097545 0.453063 +v -0.191342 0.000000 0.461940 +v -0.187665 -0.097545 0.453063 +v -0.176777 -0.191342 0.426777 +v -0.159095 -0.277785 0.384089 +v -0.135299 -0.353553 0.326641 +v -0.106304 -0.415735 0.256640 +v -0.073223 -0.461940 0.176777 +v -0.037329 -0.490393 0.090120 +v -0.054193 0.490393 0.081106 +v -0.106304 0.461940 0.159095 +v -0.154329 0.415735 0.230970 +v -0.196424 0.353553 0.293969 +v -0.230970 0.277785 0.345671 +v -0.256640 0.191342 0.384089 +v -0.272447 0.097545 0.407746 +v -0.277785 0.000000 0.415735 +v -0.272447 -0.097545 0.407746 +v -0.256640 -0.191342 0.384089 +v -0.230970 -0.277785 0.345671 +v -0.196424 -0.353553 0.293969 +v -0.154329 -0.415735 0.230970 +v -0.106304 -0.461940 0.159095 +v -0.054193 -0.490393 0.081106 +v -0.068975 0.490393 0.068975 +v -0.135299 0.461940 0.135299 +v -0.196424 0.415735 0.196424 +v -0.250000 0.353553 0.250000 +v -0.293969 0.277785 0.293969 +v -0.326641 0.191342 0.326641 +v -0.346760 0.097545 0.346760 +v -0.353553 0.000000 0.353553 +v -0.346760 -0.097545 0.346760 +v -0.326641 -0.191342 0.326641 +v -0.293969 -0.277785 0.293969 +v -0.250000 -0.353553 0.250000 +v -0.196424 -0.415735 0.196424 +v -0.135299 -0.461940 0.135299 +v -0.068975 -0.490393 0.068975 +v -0.081106 0.490393 0.054193 +v -0.159095 0.461940 0.106304 +v -0.230970 0.415735 0.154329 +v -0.293969 0.353553 0.196424 +v -0.345671 0.277785 0.230970 +v -0.384089 0.191342 0.256640 +v -0.407746 0.097545 0.272447 +v -0.415735 0.000000 0.277785 +v -0.407746 -0.097545 0.272447 +v -0.384089 -0.191342 0.256640 +v -0.345671 -0.277785 0.230970 +v -0.293969 -0.353553 0.196424 +v -0.230970 -0.415735 0.154329 +v -0.159095 -0.461940 0.106304 +v -0.081106 -0.490393 0.054193 +v -0.090120 0.490393 0.037329 +v -0.176776 0.461940 0.073223 +v -0.256640 0.415735 0.106304 +v -0.326641 0.353553 0.135299 +v -0.384089 0.277785 0.159095 +v -0.426776 0.191342 0.176777 +v -0.453063 0.097545 0.187665 +v -0.461939 0.000000 0.191342 +v -0.453063 -0.097545 0.187665 +v -0.426776 -0.191342 0.176777 +v -0.384089 -0.277785 0.159095 +v -0.326641 -0.353553 0.135299 +v -0.256640 -0.415735 0.106304 +v -0.176776 -0.461940 0.073223 +v -0.090120 -0.490393 0.037329 +v -0.095671 0.490393 0.019030 +v -0.187665 0.461940 0.037329 +v -0.272447 0.415735 0.054193 +v -0.346760 0.353553 0.068975 +v -0.407746 0.277785 0.081106 +v -0.453063 0.191342 0.090120 +v -0.480969 0.097545 0.095671 +v -0.490392 0.000000 0.097545 +v -0.480969 -0.097545 0.095671 +v -0.453063 -0.191342 0.090120 +v -0.407746 -0.277785 0.081106 +v -0.346760 -0.353553 0.068975 +v -0.272447 -0.415735 0.054193 +v -0.187665 -0.461940 0.037329 +v -0.095671 -0.490393 0.019030 +v -0.013167 -0.495196 0.000000 +v -0.005039 0.495196 0.012165 +v -0.013167 0.495196 0.000000 +v -0.012914 0.495196 -0.002569 +v -0.012914 -0.495196 -0.002569 +v -0.012165 0.495196 -0.005039 +v -0.012165 -0.495196 -0.005039 +v -0.010948 0.495196 -0.007315 +v -0.010948 -0.495196 -0.007315 +v -0.009311 0.495196 -0.009311 +v -0.009311 -0.495196 -0.009311 +v -0.007315 0.495196 -0.010948 +v -0.007315 -0.495196 -0.010948 +v -0.005039 0.495196 -0.012165 +v -0.005039 -0.495196 -0.012165 +v -0.002569 0.495196 -0.012914 +v -0.002569 -0.495196 -0.012914 +v 0.000000 0.495196 -0.013167 +v 0.000000 -0.495196 -0.013167 +v 0.002569 0.495196 -0.012914 +v 0.002569 -0.495196 -0.012914 +v 0.005039 0.495196 -0.012165 +v 0.005039 -0.495196 -0.012165 +v 0.007316 0.495196 -0.010948 +v 0.007316 -0.495196 -0.010948 +v 0.009311 0.495196 -0.009311 +v 0.009311 -0.495196 -0.009311 +v 0.010948 0.495196 -0.007315 +v 0.010948 -0.495196 -0.007315 +v 0.012165 0.495196 -0.005039 +v 0.012165 -0.495196 -0.005039 +v 0.012915 0.495196 -0.002569 +v 0.012915 -0.495196 -0.002569 +v 0.013168 0.495196 0.000000 +v 0.013168 -0.495196 0.000000 +v 0.012915 0.495196 0.002569 +v 0.012915 -0.495196 0.002569 +v 0.012165 0.495196 0.005039 +v 0.012165 -0.495196 0.005039 +v 0.010948 0.495196 0.007315 +v 0.010948 -0.495196 0.007315 +v 0.009311 0.495196 0.009311 +v 0.009311 -0.495196 0.009311 +v 0.007316 0.495196 0.010948 +v 0.007316 -0.495196 0.010948 +v 0.005039 0.495196 0.012165 +v 0.005039 -0.495196 0.012165 +v 0.002569 0.495196 0.012914 +v 0.002569 -0.495196 0.012914 +v 0.000000 0.495196 0.013167 +v 0.000000 -0.495196 0.013167 +v -0.002569 0.495196 0.012914 +v -0.002569 -0.495196 0.012914 +v -0.005039 -0.495196 0.012165 +v -0.007315 0.495196 0.010948 +v -0.007315 -0.495196 0.010948 +v -0.009311 0.495196 0.009311 +v -0.009311 -0.495196 0.009311 +v -0.010948 0.495196 0.007315 +v -0.010948 -0.495196 0.007315 +v -0.012165 0.495196 0.005039 +v -0.012165 -0.495196 0.005039 +v -0.012914 0.495196 0.002569 +v -0.012914 -0.495196 0.002569 +vt 0.437500 0.750000 +vt 0.437500 0.812500 +vt 0.375000 0.812500 +vt 0.375000 0.750000 +vt 0.437500 0.062500 +vt 0.437500 0.125000 +vt 0.375000 0.125000 +vt 0.375000 0.062500 +vt 0.437500 0.875000 +vt 0.437500 0.937500 +vt 0.375000 0.937500 +vt 0.375000 0.875000 +vt 0.437500 0.187500 +vt 0.437500 0.250000 +vt 0.375000 0.250000 +vt 0.375000 0.187500 +vt 0.437500 0.312500 +vt 0.437500 0.375000 +vt 0.375000 0.375000 +vt 0.375000 0.312500 +vt 0.437500 0.437500 +vt 0.437500 0.500000 +vt 0.375000 0.500000 +vt 0.375000 0.437500 +vt 0.437500 0.562500 +vt 0.437500 0.625000 +vt 0.375000 0.625000 +vt 0.375000 0.562500 +vt 0.437500 0.687500 +vt 0.375000 0.687500 +vt 0.312500 0.437500 +vt 0.312500 0.375000 +vt 0.312500 0.562500 +vt 0.312500 0.500000 +vt 0.312500 0.687500 +vt 0.312500 0.625000 +vt 0.312500 0.812500 +vt 0.312500 0.750000 +vt 0.312500 0.125000 +vt 0.312500 0.062500 +vt 0.312500 0.937500 +vt 0.312500 0.875000 +vt 0.312500 0.250000 +vt 0.312500 0.187500 +vt 0.312500 0.312500 +vt 0.250000 0.437500 +vt 0.250000 0.375000 +vt 0.250000 0.562500 +vt 0.250000 0.500000 +vt 0.250000 0.687500 +vt 0.250000 0.625000 +vt 0.250000 0.812500 +vt 0.250000 0.750000 +vt 0.250000 0.125000 +vt 0.250000 0.062500 +vt 0.250000 0.937500 +vt 0.250000 0.875000 +vt 0.250000 0.250000 +vt 0.250000 0.187500 +vt 0.250000 0.312500 +vt 0.187500 0.437500 +vt 0.187500 0.375000 +vt 0.187500 0.562500 +vt 0.187500 0.500000 +vt 0.187500 0.687500 +vt 0.187500 0.625000 +vt 0.187500 0.812500 +vt 0.187500 0.750000 +vt 0.187500 0.125000 +vt 0.187500 0.062500 +vt 0.187500 0.937500 +vt 0.187500 0.875000 +vt 0.187500 0.250000 +vt 0.187500 0.187500 +vt 0.187500 0.312500 +vt 0.125000 0.437500 +vt 0.125000 0.375000 +vt 0.125000 0.562500 +vt 0.125000 0.500000 +vt 0.125000 0.687500 +vt 0.125000 0.625000 +vt 0.125000 0.812500 +vt 0.125000 0.750000 +vt 0.125000 0.125000 +vt 0.125000 0.062500 +vt 0.125000 0.937500 +vt 0.125000 0.875000 +vt 0.125000 0.250000 +vt 0.125000 0.187500 +vt 0.125000 0.312500 +vt 0.062500 0.437500 +vt 0.062500 0.375000 +vt 0.062500 0.562500 +vt 0.062500 0.500000 +vt 0.062500 0.687500 +vt 0.062500 0.625000 +vt 0.062500 0.812500 +vt 0.062500 0.750000 +vt 0.062500 0.125000 +vt 0.062500 0.062500 +vt 0.062500 0.937500 +vt 0.062500 0.875000 +vt 0.062500 0.250000 +vt 0.062500 0.187500 +vt 0.062500 0.312500 +vt 0.000000 0.437500 +vt 0.000000 0.375000 +vt 0.000000 0.562500 +vt 0.000000 0.500000 +vt 0.000000 0.687500 +vt 0.000000 0.625000 +vt 0.000000 0.812500 +vt 0.000000 0.750000 +vt 0.000000 0.125000 +vt 0.000000 0.062500 +vt 0.000000 0.937500 +vt 0.000000 0.875000 +vt 0.000000 0.250000 +vt 0.000000 0.187500 +vt 0.000000 0.312500 +vt 1.000000 0.375000 +vt 1.000000 0.437500 +vt 0.937500 0.437500 +vt 0.937500 0.375000 +vt 1.000000 0.500000 +vt 1.000000 0.562500 +vt 0.937500 0.562500 +vt 0.937500 0.500000 +vt 1.000000 0.625000 +vt 1.000000 0.687500 +vt 0.937500 0.687500 +vt 0.937500 0.625000 +vt 1.000000 0.750000 +vt 1.000000 0.812500 +vt 0.937500 0.812500 +vt 0.937500 0.750000 +vt 1.000000 0.062500 +vt 1.000000 0.125000 +vt 0.937500 0.125000 +vt 0.937500 0.062500 +vt 1.000000 0.875000 +vt 1.000000 0.937500 +vt 0.937500 0.937500 +vt 0.937500 0.875000 +vt 1.000000 0.187500 +vt 1.000000 0.250000 +vt 0.937500 0.250000 +vt 0.937500 0.187500 +vt 1.000000 0.312500 +vt 0.937500 0.312500 +vt 0.875000 0.437500 +vt 0.875000 0.375000 +vt 0.875000 0.562500 +vt 0.875000 0.500000 +vt 0.875000 0.687500 +vt 0.875000 0.625000 +vt 0.875000 0.812500 +vt 0.875000 0.750000 +vt 0.875000 0.125000 +vt 0.875000 0.062500 +vt 0.875000 0.937500 +vt 0.875000 0.875000 +vt 0.875000 0.250000 +vt 0.875000 0.187500 +vt 0.875000 0.312500 +vt 0.812500 0.437500 +vt 0.812500 0.375000 +vt 0.812500 0.562500 +vt 0.812500 0.500000 +vt 0.812500 0.687500 +vt 0.812500 0.625000 +vt 0.812500 0.812500 +vt 0.812500 0.750000 +vt 0.812500 0.125000 +vt 0.812500 0.062500 +vt 0.812500 0.937500 +vt 0.812500 0.875000 +vt 0.812500 0.250000 +vt 0.812500 0.187500 +vt 0.812500 0.312500 +vt 0.750000 0.437500 +vt 0.750000 0.375000 +vt 0.750000 0.562500 +vt 0.750000 0.500000 +vt 0.750000 0.687500 +vt 0.750000 0.625000 +vt 0.750000 0.812500 +vt 0.750000 0.750000 +vt 0.750000 0.125000 +vt 0.750000 0.062500 +vt 0.750000 0.937500 +vt 0.750000 0.875000 +vt 0.750000 0.250000 +vt 0.750000 0.187500 +vt 0.750000 0.312500 +vt 0.687500 0.437500 +vt 0.687500 0.375000 +vt 0.687500 0.562500 +vt 0.687500 0.500000 +vt 0.687500 0.687500 +vt 0.687500 0.625000 +vt 0.687500 0.812500 +vt 0.687500 0.750000 +vt 0.687500 0.125000 +vt 0.687500 0.062500 +vt 0.687500 0.937500 +vt 0.687500 0.875000 +vt 0.687500 0.250000 +vt 0.687500 0.187500 +vt 0.687500 0.312500 +vt 0.625000 0.437500 +vt 0.625000 0.375000 +vt 0.625000 0.562500 +vt 0.625000 0.500000 +vt 0.625000 0.687500 +vt 0.625000 0.625000 +vt 0.625000 0.812500 +vt 0.625000 0.750000 +vt 0.625000 0.125000 +vt 0.625000 0.062500 +vt 0.625000 0.937500 +vt 0.625000 0.875000 +vt 0.625000 0.250000 +vt 0.625000 0.187500 +vt 0.625000 0.312500 +vt 0.562500 0.437500 +vt 0.562500 0.375000 +vt 0.562500 0.562500 +vt 0.562500 0.500000 +vt 0.562500 0.687500 +vt 0.562500 0.625000 +vt 0.562500 0.812500 +vt 0.562500 0.750000 +vt 0.562500 0.125000 +vt 0.562500 0.062500 +vt 0.562500 0.937500 +vt 0.562500 0.875000 +vt 0.562500 0.250000 +vt 0.562500 0.187500 +vt 0.562500 0.312500 +vt 0.500000 0.437500 +vt 0.500000 0.375000 +vt 0.500000 0.562500 +vt 0.500000 0.500000 +vt 0.500000 0.687500 +vt 0.500000 0.625000 +vt 0.500000 0.812500 +vt 0.500000 0.750000 +vt 0.500000 0.125000 +vt 0.500000 0.062500 +vt 0.500000 0.937500 +vt 0.500000 0.875000 +vt 0.500000 0.250000 +vt 0.500000 0.187500 +vt 0.500000 0.312500 +vt 0.437500 0.000000 +vt 0.375000 0.000000 +vt 0.312500 0.000000 +vt 0.250000 0.000000 +vt 0.187500 0.000000 +vt 0.125000 0.000000 +vt 0.062500 0.000000 +vt 0.000000 0.000000 +vt 1.000000 0.000000 +vt 0.937500 0.000000 +vt 0.875000 0.000000 +vt 0.812500 0.000000 +vt 0.750000 0.000000 +vt 0.687500 0.000000 +vt 0.625000 0.000000 +vt 0.562500 0.000000 +vt 0.500000 0.000000 +vt 0.500000 1.000000 +vt 0.437500 1.000000 +vt 0.562500 1.000000 +vt 0.625000 1.000000 +vt 0.687500 1.000000 +vt 0.750000 1.000000 +vt 0.812500 1.000000 +vt 0.875000 1.000000 +vt 0.937500 1.000000 +vt 1.000000 1.000000 +vt 0.062500 1.000000 +vt -0.000000 1.000000 +vt 0.125000 1.000000 +vt 0.187500 1.000000 +vt 0.250000 1.000000 +vt 0.312500 1.000000 +vt 0.375000 1.000000 +vt 0.031303 0.999906 +vt 0.037377 0.999307 +vt 0.043218 0.997535 +vt 0.048601 0.994658 +vt 0.053319 0.990786 +vt 0.057192 0.986068 +vt 0.060069 0.980685 +vt 0.061841 0.974844 +vt 0.062439 0.968769 +vt 0.061841 0.962695 +vt 0.060069 0.956854 +vt 0.057192 0.951471 +vt 0.053319 0.946753 +vt 0.048601 0.942881 +vt 0.043218 0.940004 +vt 0.037377 0.938232 +vt 0.031303 0.937633 +vt 0.025229 0.938232 +vt 0.019388 0.940004 +vt 0.014005 0.942881 +vt 0.009286 0.946753 +vt 0.005414 0.951471 +vt 0.002537 0.956854 +vt 0.000765 0.962695 +vt 0.000167 0.968770 +vt 0.000765 0.974844 +vt 0.002537 0.980685 +vt 0.005414 0.986068 +vt 0.009286 0.990786 +vt 0.014005 0.994658 +vt 0.019388 0.997535 +vt 0.025229 0.999307 +vn -0.710100 0.704000 0.000000 +vn -0.559800 0.828600 0.000000 +vn -0.549000 0.828600 -0.109200 +vn -0.696500 0.704000 -0.138500 +vn -0.182000 -0.983300 0.000000 +vn -0.387900 -0.921700 0.000000 +vn -0.380400 -0.921700 -0.075700 +vn -0.178400 -0.983300 -0.035500 +vn -0.387900 0.921700 0.000000 +vn -0.182000 0.983300 0.000000 +vn -0.178400 0.983300 -0.035500 +vn -0.380400 0.921700 -0.075700 +vn -0.559800 -0.828600 0.000000 +vn -0.710100 -0.704000 0.000000 +vn -0.696500 -0.704000 -0.138500 +vn -0.549000 -0.828600 -0.109200 +vn -0.833300 -0.552800 0.000000 +vn -0.924700 -0.380500 0.000000 +vn -0.907000 -0.380500 -0.180400 +vn -0.817300 -0.552800 -0.162600 +vn -0.981000 -0.193900 0.000000 +vn -1.000000 0.000000 0.000000 +vn -0.980800 0.000000 -0.195100 +vn -0.962200 -0.193900 -0.191400 +vn -0.981000 0.193900 0.000000 +vn -0.924700 0.380500 0.000000 +vn -0.907000 0.380500 -0.180400 +vn -0.962200 0.193900 -0.191400 +vn -0.833300 0.552800 0.000000 +vn -0.817300 0.552800 -0.162600 +vn -0.906300 -0.193900 -0.375400 +vn -0.854400 -0.380500 -0.353900 +vn -0.906300 0.193900 -0.375400 +vn -0.923900 0.000000 -0.382700 +vn -0.769900 0.552800 -0.318900 +vn -0.854400 0.380500 -0.353900 +vn -0.517100 0.828600 -0.214200 +vn -0.656100 0.704000 -0.271700 +vn -0.358300 -0.921700 -0.148400 +vn -0.168100 -0.983300 -0.069600 +vn -0.168100 0.983300 -0.069600 +vn -0.358300 0.921700 -0.148400 +vn -0.656100 -0.704000 -0.271700 +vn -0.517100 -0.828600 -0.214200 +vn -0.769900 -0.552800 -0.318900 +vn -0.815700 -0.193900 -0.545000 +vn -0.768900 -0.380500 -0.513700 +vn -0.815700 0.193900 -0.545000 +vn -0.831400 0.000000 -0.555600 +vn -0.692900 0.552800 -0.463000 +vn -0.768900 0.380500 -0.513700 +vn -0.465400 0.828600 -0.311000 +vn -0.590400 0.704000 -0.394500 +vn -0.322500 -0.921700 -0.215500 +vn -0.151300 -0.983300 -0.101100 +vn -0.151300 0.983300 -0.101100 +vn -0.322500 0.921700 -0.215500 +vn -0.590400 -0.704000 -0.394500 +vn -0.465400 -0.828600 -0.311000 +vn -0.692900 -0.552800 -0.463000 +vn -0.693700 -0.193900 -0.693700 +vn -0.653900 -0.380500 -0.653900 +vn -0.693700 0.193900 -0.693700 +vn -0.707100 0.000000 -0.707100 +vn -0.589300 0.552800 -0.589300 +vn -0.653900 0.380500 -0.653900 +vn -0.395800 0.828600 -0.395800 +vn -0.502100 0.704000 -0.502100 +vn -0.274300 -0.921700 -0.274300 +vn -0.128600 -0.983300 -0.128600 +vn -0.128600 0.983300 -0.128600 +vn -0.274300 0.921700 -0.274300 +vn -0.502100 -0.704000 -0.502100 +vn -0.395800 -0.828600 -0.395800 +vn -0.589300 -0.552800 -0.589300 +vn -0.545000 -0.193900 -0.815700 +vn -0.513700 -0.380500 -0.768900 +vn -0.545000 0.193900 -0.815700 +vn -0.555600 0.000000 -0.831400 +vn -0.463000 0.552800 -0.692900 +vn -0.513700 0.380500 -0.768900 +vn -0.311000 0.828600 -0.465400 +vn -0.394500 0.704000 -0.590400 +vn -0.215500 -0.921700 -0.322500 +vn -0.101100 -0.983300 -0.151300 +vn -0.101100 0.983300 -0.151300 +vn -0.215500 0.921700 -0.322500 +vn -0.394500 -0.704000 -0.590400 +vn -0.311000 -0.828600 -0.465400 +vn -0.463000 -0.552800 -0.692900 +vn -0.375400 -0.193900 -0.906300 +vn -0.353900 -0.380500 -0.854400 +vn -0.375400 0.193900 -0.906300 +vn -0.382700 0.000000 -0.923900 +vn -0.318900 0.552800 -0.769900 +vn -0.353900 0.380500 -0.854400 +vn -0.214200 0.828600 -0.517100 +vn -0.271700 0.704000 -0.656100 +vn -0.148400 -0.921700 -0.358300 +vn -0.069600 -0.983300 -0.168100 +vn -0.069600 0.983300 -0.168100 +vn -0.148400 0.921700 -0.358300 +vn -0.271700 -0.704000 -0.656100 +vn -0.214200 -0.828600 -0.517100 +vn -0.318900 -0.552800 -0.769900 +vn -0.191400 -0.193900 -0.962200 +vn -0.180400 -0.380500 -0.907000 +vn -0.191400 0.193900 -0.962200 +vn -0.195100 0.000000 -0.980800 +vn -0.162600 0.552800 -0.817300 +vn -0.180400 0.380500 -0.907000 +vn -0.109200 0.828600 -0.549000 +vn -0.138500 0.704000 -0.696500 +vn -0.075700 -0.921700 -0.380400 +vn -0.035500 -0.983300 -0.178400 +vn -0.035500 0.983300 -0.178400 +vn -0.075700 0.921700 -0.380400 +vn -0.138500 -0.704000 -0.696500 +vn -0.109200 -0.828600 -0.549000 +vn -0.162600 -0.552800 -0.817300 +vn 0.000000 -0.193900 -0.981000 +vn 0.000000 -0.380500 -0.924700 +vn 0.000000 0.193900 -0.981000 +vn 0.000000 0.000000 -1.000000 +vn 0.000000 0.552800 -0.833300 +vn 0.000000 0.380500 -0.924700 +vn 0.000000 0.828600 -0.559800 +vn 0.000000 0.704000 -0.710100 +vn 0.000000 -0.921700 -0.387900 +vn 0.000000 -0.983300 -0.182000 +vn 0.000000 0.983300 -0.182000 +vn 0.000000 0.921700 -0.387900 +vn 0.000000 -0.704000 -0.710100 +vn 0.000000 -0.828600 -0.559800 +vn 0.000000 -0.552800 -0.833300 +vn 0.191400 -0.193900 -0.962200 +vn 0.180400 -0.380500 -0.907000 +vn 0.191400 0.193900 -0.962200 +vn 0.195100 0.000000 -0.980800 +vn 0.162600 0.552800 -0.817300 +vn 0.180400 0.380500 -0.907000 +vn 0.109200 0.828600 -0.549000 +vn 0.138500 0.704000 -0.696500 +vn 0.075700 -0.921700 -0.380400 +vn 0.035500 -0.983300 -0.178400 +vn 0.035500 0.983300 -0.178400 +vn 0.075700 0.921700 -0.380400 +vn 0.138500 -0.704000 -0.696500 +vn 0.109200 -0.828600 -0.549000 +vn 0.162600 -0.552800 -0.817300 +vn 0.375400 -0.193900 -0.906300 +vn 0.353900 -0.380500 -0.854400 +vn 0.375400 0.193900 -0.906300 +vn 0.382700 0.000000 -0.923900 +vn 0.318900 0.552800 -0.769900 +vn 0.353900 0.380500 -0.854400 +vn 0.214200 0.828600 -0.517100 +vn 0.271700 0.704000 -0.656100 +vn 0.148400 -0.921700 -0.358300 +vn 0.069600 -0.983300 -0.168100 +vn 0.069600 0.983300 -0.168100 +vn 0.148400 0.921700 -0.358300 +vn 0.271700 -0.704000 -0.656100 +vn 0.214200 -0.828600 -0.517100 +vn 0.318900 -0.552800 -0.769900 +vn 0.545000 -0.193900 -0.815700 +vn 0.513700 -0.380500 -0.768900 +vn 0.545000 0.193900 -0.815700 +vn 0.555600 0.000000 -0.831400 +vn 0.463000 0.552800 -0.692900 +vn 0.513700 0.380500 -0.768900 +vn 0.311000 0.828600 -0.465400 +vn 0.394500 0.704000 -0.590400 +vn 0.215500 -0.921700 -0.322500 +vn 0.101100 -0.983300 -0.151300 +vn 0.101100 0.983300 -0.151300 +vn 0.215500 0.921700 -0.322500 +vn 0.394500 -0.704000 -0.590400 +vn 0.311000 -0.828600 -0.465400 +vn 0.463000 -0.552800 -0.692900 +vn 0.693700 -0.193900 -0.693700 +vn 0.653900 -0.380500 -0.653900 +vn 0.693700 0.193900 -0.693700 +vn 0.707100 0.000000 -0.707100 +vn 0.589300 0.552800 -0.589300 +vn 0.653900 0.380500 -0.653900 +vn 0.395800 0.828600 -0.395800 +vn 0.502100 0.704000 -0.502100 +vn 0.274300 -0.921700 -0.274300 +vn 0.128600 -0.983300 -0.128600 +vn 0.128600 0.983300 -0.128600 +vn 0.274300 0.921700 -0.274300 +vn 0.502100 -0.704000 -0.502100 +vn 0.395800 -0.828600 -0.395800 +vn 0.589300 -0.552800 -0.589300 +vn 0.815700 -0.193900 -0.545000 +vn 0.768900 -0.380500 -0.513700 +vn 0.815700 0.193900 -0.545000 +vn 0.831400 0.000000 -0.555600 +vn 0.692900 0.552800 -0.463000 +vn 0.768900 0.380500 -0.513700 +vn 0.465400 0.828600 -0.311000 +vn 0.590400 0.704000 -0.394500 +vn 0.322500 -0.921700 -0.215500 +vn 0.151300 -0.983300 -0.101100 +vn 0.151300 0.983300 -0.101100 +vn 0.322500 0.921700 -0.215500 +vn 0.590400 -0.704000 -0.394500 +vn 0.465400 -0.828600 -0.311000 +vn 0.692900 -0.552800 -0.463000 +vn 0.906300 -0.193900 -0.375400 +vn 0.854400 -0.380500 -0.353900 +vn 0.906300 0.193900 -0.375400 +vn 0.923900 0.000000 -0.382700 +vn 0.769900 0.552800 -0.318900 +vn 0.854400 0.380500 -0.353900 +vn 0.517100 0.828600 -0.214200 +vn 0.656100 0.704000 -0.271700 +vn 0.358300 -0.921700 -0.148400 +vn 0.168100 -0.983300 -0.069600 +vn 0.168100 0.983300 -0.069600 +vn 0.358300 0.921700 -0.148400 +vn 0.656100 -0.704000 -0.271700 +vn 0.517100 -0.828600 -0.214200 +vn 0.769900 -0.552800 -0.318900 +vn 0.962200 -0.193900 -0.191400 +vn 0.907000 -0.380500 -0.180400 +vn 0.962200 0.193900 -0.191400 +vn 0.980800 0.000000 -0.195100 +vn 0.817300 0.552800 -0.162600 +vn 0.907000 0.380500 -0.180400 +vn 0.549000 0.828600 -0.109200 +vn 0.696500 0.704000 -0.138500 +vn 0.380400 -0.921700 -0.075700 +vn 0.178400 -0.983300 -0.035500 +vn 0.178400 0.983300 -0.035500 +vn 0.380400 0.921700 -0.075700 +vn 0.696500 -0.704000 -0.138500 +vn 0.549000 -0.828600 -0.109200 +vn 0.817300 -0.552800 -0.162600 +vn 0.981000 -0.193900 0.000000 +vn 0.924700 -0.380500 0.000000 +vn 0.981000 0.193900 0.000000 +vn 1.000000 0.000000 0.000000 +vn 0.833300 0.552800 0.000000 +vn 0.924700 0.380500 0.000000 +vn 0.559800 0.828600 0.000000 +vn 0.710100 0.704000 0.000000 +vn 0.387900 -0.921700 0.000000 +vn 0.182000 -0.983300 0.000000 +vn 0.182000 0.983300 0.000000 +vn 0.387900 0.921700 0.000000 +vn 0.710100 -0.704000 0.000000 +vn 0.559800 -0.828600 0.000000 +vn 0.833300 -0.552800 0.000000 +vn 0.962200 -0.193900 0.191400 +vn 0.907000 -0.380500 0.180400 +vn 0.962200 0.193900 0.191400 +vn 0.980800 0.000000 0.195100 +vn 0.817300 0.552800 0.162600 +vn 0.907000 0.380500 0.180400 +vn 0.549000 0.828600 0.109200 +vn 0.696500 0.704000 0.138500 +vn 0.380400 -0.921700 0.075700 +vn 0.178400 -0.983300 0.035500 +vn 0.178400 0.983300 0.035500 +vn 0.380400 0.921700 0.075700 +vn 0.696500 -0.704000 0.138500 +vn 0.549000 -0.828600 0.109200 +vn 0.817300 -0.552800 0.162600 +vn 0.906300 -0.193900 0.375400 +vn 0.854400 -0.380500 0.353900 +vn 0.906300 0.193900 0.375400 +vn 0.923900 0.000000 0.382700 +vn 0.769900 0.552800 0.318900 +vn 0.854400 0.380500 0.353900 +vn 0.517100 0.828600 0.214200 +vn 0.656100 0.704000 0.271700 +vn 0.358300 -0.921700 0.148400 +vn 0.168100 -0.983300 0.069600 +vn 0.168100 0.983300 0.069600 +vn 0.358300 0.921700 0.148400 +vn 0.656100 -0.704000 0.271700 +vn 0.517100 -0.828600 0.214200 +vn 0.769900 -0.552800 0.318900 +vn 0.815700 -0.193900 0.545000 +vn 0.768900 -0.380500 0.513700 +vn 0.815700 0.193900 0.545000 +vn 0.831400 0.000000 0.555600 +vn 0.692900 0.552800 0.463000 +vn 0.768900 0.380500 0.513700 +vn 0.465400 0.828600 0.311000 +vn 0.590400 0.704000 0.394500 +vn 0.322500 -0.921700 0.215500 +vn 0.151300 -0.983300 0.101100 +vn 0.151300 0.983300 0.101100 +vn 0.322500 0.921700 0.215500 +vn 0.590400 -0.704000 0.394500 +vn 0.465400 -0.828600 0.311000 +vn 0.692900 -0.552800 0.463000 +vn 0.693700 -0.193900 0.693700 +vn 0.653900 -0.380500 0.653900 +vn 0.693700 0.193900 0.693700 +vn 0.707100 0.000000 0.707100 +vn 0.589300 0.552800 0.589300 +vn 0.653900 0.380500 0.653900 +vn 0.395800 0.828600 0.395800 +vn 0.502100 0.704000 0.502100 +vn 0.274300 -0.921700 0.274300 +vn 0.128600 -0.983300 0.128600 +vn 0.128600 0.983300 0.128600 +vn 0.274300 0.921700 0.274300 +vn 0.502100 -0.704000 0.502100 +vn 0.395800 -0.828600 0.395800 +vn 0.589300 -0.552800 0.589300 +vn 0.545000 -0.193900 0.815700 +vn 0.513700 -0.380500 0.768900 +vn 0.545000 0.193900 0.815700 +vn 0.555600 0.000000 0.831400 +vn 0.463000 0.552800 0.692900 +vn 0.513700 0.380500 0.768900 +vn 0.311000 0.828600 0.465400 +vn 0.394500 0.704000 0.590400 +vn 0.215500 -0.921700 0.322500 +vn 0.101100 -0.983300 0.151300 +vn 0.101100 0.983300 0.151300 +vn 0.215500 0.921700 0.322500 +vn 0.394500 -0.704000 0.590400 +vn 0.311000 -0.828600 0.465400 +vn 0.463000 -0.552800 0.692900 +vn 0.375400 -0.193900 0.906300 +vn 0.353900 -0.380500 0.854400 +vn 0.375400 0.193900 0.906300 +vn 0.382700 0.000000 0.923900 +vn 0.318900 0.552800 0.769900 +vn 0.353900 0.380500 0.854400 +vn 0.214200 0.828600 0.517100 +vn 0.271700 0.704000 0.656100 +vn 0.148400 -0.921700 0.358300 +vn 0.069600 -0.983300 0.168100 +vn 0.069600 0.983300 0.168100 +vn 0.148400 0.921700 0.358300 +vn 0.271700 -0.704000 0.656100 +vn 0.214200 -0.828600 0.517100 +vn 0.318900 -0.552800 0.769900 +vn 0.191400 -0.193900 0.962200 +vn 0.180400 -0.380500 0.907000 +vn 0.191400 0.193900 0.962200 +vn 0.195100 0.000000 0.980800 +vn 0.162600 0.552800 0.817300 +vn 0.180400 0.380500 0.907000 +vn 0.109200 0.828600 0.549000 +vn 0.138500 0.704000 0.696500 +vn 0.075700 -0.921700 0.380400 +vn 0.035500 -0.983300 0.178400 +vn 0.035500 0.983300 0.178400 +vn 0.075700 0.921700 0.380400 +vn 0.138500 -0.704000 0.696500 +vn 0.109200 -0.828600 0.549000 +vn 0.162600 -0.552800 0.817300 +vn 0.000000 -0.193900 0.981000 +vn 0.000000 -0.380500 0.924700 +vn 0.000000 0.193900 0.981000 +vn 0.000000 0.000000 1.000000 +vn 0.000000 0.552800 0.833300 +vn 0.000000 0.380500 0.924700 +vn 0.000000 0.828600 0.559800 +vn 0.000000 0.704000 0.710100 +vn 0.000000 -0.921700 0.387900 +vn 0.000000 -0.983300 0.182000 +vn 0.000000 0.983300 0.182000 +vn 0.000000 0.921700 0.387900 +vn 0.000000 -0.704000 0.710100 +vn 0.000000 -0.828600 0.559800 +vn 0.000000 -0.552800 0.833300 +vn -0.191400 -0.193900 0.962200 +vn -0.180400 -0.380500 0.907000 +vn -0.191400 0.193900 0.962200 +vn -0.195100 0.000000 0.980800 +vn -0.162600 0.552800 0.817300 +vn -0.180400 0.380500 0.907000 +vn -0.109200 0.828600 0.549000 +vn -0.138500 0.704000 0.696500 +vn -0.075700 -0.921700 0.380400 +vn -0.035500 -0.983300 0.178400 +vn -0.035500 0.983300 0.178400 +vn -0.075700 0.921700 0.380400 +vn -0.138500 -0.704000 0.696500 +vn -0.109200 -0.828600 0.549000 +vn -0.162600 -0.552800 0.817300 +vn -0.375400 -0.193900 0.906300 +vn -0.353900 -0.380500 0.854400 +vn -0.375400 0.193900 0.906300 +vn -0.382700 0.000000 0.923900 +vn -0.318900 0.552800 0.769900 +vn -0.353900 0.380500 0.854400 +vn -0.214200 0.828600 0.517100 +vn -0.271700 0.704000 0.656100 +vn -0.148400 -0.921700 0.358300 +vn -0.069600 -0.983300 0.168100 +vn -0.069600 0.983300 0.168100 +vn -0.148400 0.921700 0.358300 +vn -0.271700 -0.704000 0.656100 +vn -0.214200 -0.828600 0.517100 +vn -0.318900 -0.552800 0.769900 +vn -0.545000 -0.193900 0.815700 +vn -0.513700 -0.380500 0.768900 +vn -0.545000 0.193900 0.815700 +vn -0.555600 0.000000 0.831400 +vn -0.463000 0.552800 0.692900 +vn -0.513700 0.380500 0.768900 +vn -0.311000 0.828600 0.465400 +vn -0.394500 0.704000 0.590400 +vn -0.215500 -0.921700 0.322500 +vn -0.101100 -0.983300 0.151300 +vn -0.101100 0.983300 0.151300 +vn -0.215500 0.921700 0.322500 +vn -0.394500 -0.704000 0.590400 +vn -0.311000 -0.828600 0.465400 +vn -0.463000 -0.552800 0.692900 +vn -0.693700 -0.193900 0.693700 +vn -0.653900 -0.380500 0.653900 +vn -0.693700 0.193900 0.693700 +vn -0.707100 0.000000 0.707100 +vn -0.589300 0.552800 0.589300 +vn -0.653900 0.380500 0.653900 +vn -0.395800 0.828600 0.395800 +vn -0.502100 0.704000 0.502100 +vn -0.274300 -0.921700 0.274300 +vn -0.128600 -0.983300 0.128600 +vn -0.128600 0.983300 0.128600 +vn -0.274300 0.921700 0.274300 +vn -0.502100 -0.704000 0.502100 +vn -0.395800 -0.828600 0.395800 +vn -0.589300 -0.552800 0.589300 +vn -0.815700 -0.193900 0.545000 +vn -0.768900 -0.380500 0.513700 +vn -0.815700 0.193900 0.545000 +vn -0.831400 0.000000 0.555600 +vn -0.692900 0.552800 0.463000 +vn -0.768900 0.380500 0.513700 +vn -0.465400 0.828600 0.311000 +vn -0.590400 0.704000 0.394500 +vn -0.322500 -0.921700 0.215500 +vn -0.151300 -0.983300 0.101100 +vn -0.151300 0.983300 0.101100 +vn -0.322500 0.921700 0.215500 +vn -0.590400 -0.704000 0.394500 +vn -0.465400 -0.828600 0.311000 +vn -0.692900 -0.552800 0.463000 +vn -0.906300 -0.193900 0.375400 +vn -0.854400 -0.380500 0.353900 +vn -0.906300 0.193900 0.375400 +vn -0.923900 0.000000 0.382700 +vn -0.769900 0.552800 0.318900 +vn -0.854400 0.380500 0.353900 +vn -0.517100 0.828600 0.214200 +vn -0.656100 0.704000 0.271700 +vn -0.358300 -0.921700 0.148400 +vn -0.168100 -0.983300 0.069600 +vn -0.168100 0.983300 0.069600 +vn -0.358300 0.921700 0.148400 +vn -0.656100 -0.704000 0.271700 +vn -0.517100 -0.828600 0.214200 +vn -0.769900 -0.552800 0.318900 +vn -0.962200 -0.193900 0.191400 +vn -0.907000 -0.380500 0.180400 +vn -0.962200 0.193900 0.191400 +vn -0.980800 0.000000 0.195100 +vn -0.817300 0.552800 0.162600 +vn -0.907000 0.380500 0.180400 +vn -0.549000 0.828600 0.109200 +vn -0.696500 0.704000 0.138500 +vn -0.380400 -0.921700 0.075700 +vn -0.178400 -0.983300 0.035500 +vn -0.178400 0.983300 0.035500 +vn -0.380400 0.921700 0.075700 +vn -0.696500 -0.704000 0.138500 +vn -0.549000 -0.828600 0.109200 +vn -0.817300 -0.552800 0.162600 +vn -0.030200 -0.999500 0.000000 +vn -0.029600 -0.999500 -0.005900 +vn -0.027900 -0.999500 -0.011500 +vn -0.025100 -0.999500 -0.016800 +vn -0.021300 -0.999500 -0.021300 +vn -0.016800 -0.999500 -0.025100 +vn -0.011500 -0.999500 -0.027900 +vn -0.005900 -0.999500 -0.029600 +vn 0.000000 -0.999500 -0.030200 +vn 0.005900 -0.999500 -0.029600 +vn 0.011500 -0.999500 -0.027900 +vn 0.016800 -0.999500 -0.025100 +vn 0.021300 -0.999500 -0.021300 +vn 0.025100 -0.999500 -0.016800 +vn 0.027900 -0.999500 -0.011500 +vn 0.029600 -0.999500 -0.005900 +vn 0.030200 -0.999500 0.000000 +vn 0.029600 -0.999500 0.005900 +vn 0.027900 -0.999500 0.011500 +vn 0.025100 -0.999500 0.016800 +vn 0.021300 -0.999500 0.021300 +vn 0.016800 -0.999500 0.025100 +vn 0.011500 -0.999500 0.027900 +vn 0.005900 -0.999500 0.029600 +vn 0.000000 -0.999500 0.030200 +vn -0.005900 -0.999500 0.029600 +vn -0.011500 -0.999500 0.027900 +vn -0.016800 -0.999500 0.025100 +vn -0.021300 -0.999500 0.021300 +vn -0.025100 -0.999500 0.016800 +vn -0.027900 -0.999500 0.011500 +vn -0.029600 -0.999500 0.005900 +vn -0.029600 0.999500 0.005900 +vn -0.030200 0.999500 0.000000 +vn -0.027900 0.999500 0.011500 +vn -0.025100 0.999500 0.016800 +vn -0.021300 0.999500 0.021300 +vn -0.016800 0.999500 0.025100 +vn -0.011500 0.999500 0.027900 +vn -0.005900 0.999500 0.029600 +vn 0.000000 0.999500 0.030200 +vn 0.005900 0.999500 0.029600 +vn 0.011500 0.999500 0.027900 +vn 0.016800 0.999500 0.025100 +vn 0.021300 0.999500 0.021300 +vn 0.025100 0.999500 0.016800 +vn 0.027900 0.999500 0.011500 +vn 0.029600 0.999500 0.005900 +vn 0.030200 0.999500 0.000000 +vn 0.029600 0.999500 -0.005900 +vn 0.027900 0.999500 -0.011500 +vn 0.025100 0.999500 -0.016800 +vn 0.021300 0.999500 -0.021300 +vn 0.016800 0.999500 -0.025100 +vn 0.011500 0.999500 -0.027900 +vn 0.005900 0.999500 -0.029600 +vn 0.000000 0.999500 -0.030200 +vn -0.005900 0.999500 -0.029600 +vn -0.011500 0.999500 -0.027900 +vn -0.016800 0.999500 -0.025100 +vn -0.021300 0.999500 -0.021300 +vn -0.025100 0.999500 -0.016800 +vn -0.027900 0.999500 -0.011500 +vn -0.029600 0.999500 -0.005900 +s 1 +f 4/1/1 3/2/2 18/3/3 19/4/4 +f 15/5/5 14/6/6 29/7/7 30/8/8 +f 2/9/9 1/10/10 16/11/11 17/12/12 +f 13/13/13 12/14/14 27/15/15 28/16/16 +f 11/17/17 10/18/18 25/19/19 26/20/20 +f 9/21/21 8/22/22 23/23/23 24/24/24 +f 7/25/25 6/26/26 21/27/27 22/28/28 +f 5/29/29 4/1/1 19/4/4 20/30/30 +f 3/2/2 2/9/9 17/12/12 18/3/3 +f 14/6/6 13/13/13 28/16/16 29/7/7 +f 12/14/14 11/17/17 26/20/20 27/15/15 +f 10/18/18 9/21/21 24/24/24 25/19/19 +f 8/22/22 7/25/25 22/28/28 23/23/23 +f 6/26/26 5/29/29 20/30/30 21/27/27 +f 25/19/19 24/24/24 39/31/31 40/32/32 +f 23/23/23 22/28/28 37/33/33 38/34/34 +f 21/27/27 20/30/30 35/35/35 36/36/36 +f 19/4/4 18/3/3 33/37/37 34/38/38 +f 30/8/8 29/7/7 44/39/39 45/40/40 +f 17/12/12 16/11/11 31/41/41 32/42/42 +f 28/16/16 27/15/15 42/43/43 43/44/44 +f 26/20/20 25/19/19 40/32/32 41/45/45 +f 24/24/24 23/23/23 38/34/34 39/31/31 +f 22/28/28 21/27/27 36/36/36 37/33/33 +f 20/30/30 19/4/4 34/38/38 35/35/35 +f 18/3/3 17/12/12 32/42/42 33/37/37 +f 29/7/7 28/16/16 43/44/44 44/39/39 +f 27/15/15 26/20/20 41/45/45 42/43/43 +f 40/32/32 39/31/31 54/46/46 55/47/47 +f 38/34/34 37/33/33 52/48/48 53/49/49 +f 36/36/36 35/35/35 50/50/50 51/51/51 +f 34/38/38 33/37/37 48/52/52 49/53/53 +f 45/40/40 44/39/39 59/54/54 60/55/55 +f 32/42/42 31/41/41 46/56/56 47/57/57 +f 43/44/44 42/43/43 57/58/58 58/59/59 +f 41/45/45 40/32/32 55/47/47 56/60/60 +f 39/31/31 38/34/34 53/49/49 54/46/46 +f 37/33/33 36/36/36 51/51/51 52/48/48 +f 35/35/35 34/38/38 49/53/53 50/50/50 +f 33/37/37 32/42/42 47/57/57 48/52/52 +f 44/39/39 43/44/44 58/59/59 59/54/54 +f 42/43/43 41/45/45 56/60/60 57/58/58 +f 55/47/47 54/46/46 69/61/61 70/62/62 +f 53/49/49 52/48/48 67/63/63 68/64/64 +f 51/51/51 50/50/50 65/65/65 66/66/66 +f 49/53/53 48/52/52 63/67/67 64/68/68 +f 60/55/55 59/54/54 74/69/69 75/70/70 +f 47/57/57 46/56/56 61/71/71 62/72/72 +f 58/59/59 57/58/58 72/73/73 73/74/74 +f 56/60/60 55/47/47 70/62/62 71/75/75 +f 54/46/46 53/49/49 68/64/64 69/61/61 +f 52/48/48 51/51/51 66/66/66 67/63/63 +f 50/50/50 49/53/53 64/68/68 65/65/65 +f 48/52/52 47/57/57 62/72/72 63/67/67 +f 59/54/54 58/59/59 73/74/74 74/69/69 +f 57/58/58 56/60/60 71/75/75 72/73/73 +f 70/62/62 69/61/61 84/76/76 85/77/77 +f 68/64/64 67/63/63 82/78/78 83/79/79 +f 66/66/66 65/65/65 80/80/80 81/81/81 +f 64/68/68 63/67/67 78/82/82 79/83/83 +f 75/70/70 74/69/69 89/84/84 90/85/85 +f 62/72/72 61/71/71 76/86/86 77/87/87 +f 73/74/74 72/73/73 87/88/88 88/89/89 +f 71/75/75 70/62/62 85/77/77 86/90/90 +f 69/61/61 68/64/64 83/79/79 84/76/76 +f 67/63/63 66/66/66 81/81/81 82/78/78 +f 65/65/65 64/68/68 79/83/83 80/80/80 +f 63/67/67 62/72/72 77/87/87 78/82/82 +f 74/69/69 73/74/74 88/89/89 89/84/84 +f 72/73/73 71/75/75 86/90/90 87/88/88 +f 85/77/77 84/76/76 99/91/91 100/92/92 +f 83/79/79 82/78/78 97/93/93 98/94/94 +f 81/81/81 80/80/80 95/95/95 96/96/96 +f 79/83/83 78/82/82 93/97/97 94/98/98 +f 90/85/85 89/84/84 104/99/99 105/100/100 +f 77/87/87 76/86/86 91/101/101 92/102/102 +f 88/89/89 87/88/88 102/103/103 103/104/104 +f 86/90/90 85/77/77 100/92/92 101/105/105 +f 84/76/76 83/79/79 98/94/94 99/91/91 +f 82/78/78 81/81/81 96/96/96 97/93/93 +f 80/80/80 79/83/83 94/98/98 95/95/95 +f 78/82/82 77/87/87 92/102/102 93/97/97 +f 89/84/84 88/89/89 103/104/104 104/99/99 +f 87/88/88 86/90/90 101/105/105 102/103/103 +f 100/92/92 99/91/91 114/106/106 115/107/107 +f 98/94/94 97/93/93 112/108/108 113/109/109 +f 96/96/96 95/95/95 110/110/110 111/111/111 +f 94/98/98 93/97/97 108/112/112 109/113/113 +f 105/100/100 104/99/99 119/114/114 120/115/115 +f 92/102/102 91/101/101 106/116/116 107/117/117 +f 103/104/104 102/103/103 117/118/118 118/119/119 +f 101/105/105 100/92/92 115/107/107 116/120/120 +f 99/91/91 98/94/94 113/109/109 114/106/106 +f 97/93/93 96/96/96 111/111/111 112/108/108 +f 95/95/95 94/98/98 109/113/113 110/110/110 +f 93/97/97 92/102/102 107/117/117 108/112/112 +f 104/99/99 103/104/104 118/119/119 119/114/114 +f 102/103/103 101/105/105 116/120/120 117/118/118 +f 115/121/107 114/122/106 129/123/121 130/124/122 +f 113/125/109 112/126/108 127/127/123 128/128/124 +f 111/129/111 110/130/110 125/131/125 126/132/126 +f 109/133/113 108/134/112 123/135/127 124/136/128 +f 120/137/115 119/138/114 134/139/129 135/140/130 +f 107/141/117 106/142/116 121/143/131 122/144/132 +f 118/145/119 117/146/118 132/147/133 133/148/134 +f 116/149/120 115/121/107 130/124/122 131/150/135 +f 114/122/106 113/125/109 128/128/124 129/123/121 +f 112/126/108 111/129/111 126/132/126 127/127/123 +f 110/130/110 109/133/113 124/136/128 125/131/125 +f 108/134/112 107/141/117 122/144/132 123/135/127 +f 119/138/114 118/145/119 133/148/134 134/139/129 +f 117/146/118 116/149/120 131/150/135 132/147/133 +f 130/124/122 129/123/121 144/151/136 145/152/137 +f 128/128/124 127/127/123 142/153/138 143/154/139 +f 126/132/126 125/131/125 140/155/140 141/156/141 +f 124/136/128 123/135/127 138/157/142 139/158/143 +f 135/140/130 134/139/129 149/159/144 150/160/145 +f 122/144/132 121/143/131 136/161/146 137/162/147 +f 133/148/134 132/147/133 147/163/148 148/164/149 +f 131/150/135 130/124/122 145/152/137 146/165/150 +f 129/123/121 128/128/124 143/154/139 144/151/136 +f 127/127/123 126/132/126 141/156/141 142/153/138 +f 125/131/125 124/136/128 139/158/143 140/155/140 +f 123/135/127 122/144/132 137/162/147 138/157/142 +f 134/139/129 133/148/134 148/164/149 149/159/144 +f 132/147/133 131/150/135 146/165/150 147/163/148 +f 145/152/137 144/151/136 159/166/151 160/167/152 +f 143/154/139 142/153/138 157/168/153 158/169/154 +f 141/156/141 140/155/140 155/170/155 156/171/156 +f 139/158/143 138/157/142 153/172/157 154/173/158 +f 150/160/145 149/159/144 164/174/159 165/175/160 +f 137/162/147 136/161/146 151/176/161 152/177/162 +f 148/164/149 147/163/148 162/178/163 163/179/164 +f 146/165/150 145/152/137 160/167/152 161/180/165 +f 144/151/136 143/154/139 158/169/154 159/166/151 +f 142/153/138 141/156/141 156/171/156 157/168/153 +f 140/155/140 139/158/143 154/173/158 155/170/155 +f 138/157/142 137/162/147 152/177/162 153/172/157 +f 149/159/144 148/164/149 163/179/164 164/174/159 +f 147/163/148 146/165/150 161/180/165 162/178/163 +f 160/167/152 159/166/151 174/181/166 175/182/167 +f 158/169/154 157/168/153 172/183/168 173/184/169 +f 156/171/156 155/170/155 170/185/170 171/186/171 +f 154/173/158 153/172/157 168/187/172 169/188/173 +f 165/175/160 164/174/159 179/189/174 180/190/175 +f 152/177/162 151/176/161 166/191/176 167/192/177 +f 163/179/164 162/178/163 177/193/178 178/194/179 +f 161/180/165 160/167/152 175/182/167 176/195/180 +f 159/166/151 158/169/154 173/184/169 174/181/166 +f 157/168/153 156/171/156 171/186/171 172/183/168 +f 155/170/155 154/173/158 169/188/173 170/185/170 +f 153/172/157 152/177/162 167/192/177 168/187/172 +f 164/174/159 163/179/164 178/194/179 179/189/174 +f 162/178/163 161/180/165 176/195/180 177/193/178 +f 175/182/167 174/181/166 189/196/181 190/197/182 +f 173/184/169 172/183/168 187/198/183 188/199/184 +f 171/186/171 170/185/170 185/200/185 186/201/186 +f 169/188/173 168/187/172 183/202/187 184/203/188 +f 180/190/175 179/189/174 194/204/189 195/205/190 +f 167/192/177 166/191/176 181/206/191 182/207/192 +f 178/194/179 177/193/178 192/208/193 193/209/194 +f 176/195/180 175/182/167 190/197/182 191/210/195 +f 174/181/166 173/184/169 188/199/184 189/196/181 +f 172/183/168 171/186/171 186/201/186 187/198/183 +f 170/185/170 169/188/173 184/203/188 185/200/185 +f 168/187/172 167/192/177 182/207/192 183/202/187 +f 179/189/174 178/194/179 193/209/194 194/204/189 +f 177/193/178 176/195/180 191/210/195 192/208/193 +f 190/197/182 189/196/181 204/211/196 205/212/197 +f 188/199/184 187/198/183 202/213/198 203/214/199 +f 186/201/186 185/200/185 200/215/200 201/216/201 +f 184/203/188 183/202/187 198/217/202 199/218/203 +f 195/205/190 194/204/189 209/219/204 210/220/205 +f 182/207/192 181/206/191 196/221/206 197/222/207 +f 193/209/194 192/208/193 207/223/208 208/224/209 +f 191/210/195 190/197/182 205/212/197 206/225/210 +f 189/196/181 188/199/184 203/214/199 204/211/196 +f 187/198/183 186/201/186 201/216/201 202/213/198 +f 185/200/185 184/203/188 199/218/203 200/215/200 +f 183/202/187 182/207/192 197/222/207 198/217/202 +f 194/204/189 193/209/194 208/224/209 209/219/204 +f 192/208/193 191/210/195 206/225/210 207/223/208 +f 205/212/197 204/211/196 219/226/211 220/227/212 +f 203/214/199 202/213/198 217/228/213 218/229/214 +f 201/216/201 200/215/200 215/230/215 216/231/216 +f 199/218/203 198/217/202 213/232/217 214/233/218 +f 210/220/205 209/219/204 224/234/219 225/235/220 +f 197/222/207 196/221/206 211/236/221 212/237/222 +f 208/224/209 207/223/208 222/238/223 223/239/224 +f 206/225/210 205/212/197 220/227/212 221/240/225 +f 204/211/196 203/214/199 218/229/214 219/226/211 +f 202/213/198 201/216/201 216/231/216 217/228/213 +f 200/215/200 199/218/203 214/233/218 215/230/215 +f 198/217/202 197/222/207 212/237/222 213/232/217 +f 209/219/204 208/224/209 223/239/224 224/234/219 +f 207/223/208 206/225/210 221/240/225 222/238/223 +f 220/227/212 219/226/211 234/241/226 235/242/227 +f 218/229/214 217/228/213 232/243/228 233/244/229 +f 216/231/216 215/230/215 230/245/230 231/246/231 +f 214/233/218 213/232/217 228/247/232 229/248/233 +f 225/235/220 224/234/219 239/249/234 240/250/235 +f 212/237/222 211/236/221 226/251/236 227/252/237 +f 223/239/224 222/238/223 237/253/238 238/254/239 +f 221/240/225 220/227/212 235/242/227 236/255/240 +f 219/226/211 218/229/214 233/244/229 234/241/226 +f 217/228/213 216/231/216 231/246/231 232/243/228 +f 215/230/215 214/233/218 229/248/233 230/245/230 +f 213/232/217 212/237/222 227/252/237 228/247/232 +f 224/234/219 223/239/224 238/254/239 239/249/234 +f 222/238/223 221/240/225 236/255/240 237/253/238 +f 235/242/227 234/241/226 249/21/241 250/18/242 +f 233/244/229 232/243/228 247/25/243 248/22/244 +f 231/246/231 230/245/230 245/29/245 246/26/246 +f 229/248/233 228/247/232 243/2/247 244/1/248 +f 240/250/235 239/249/234 254/6/249 255/5/250 +f 227/252/237 226/251/236 241/10/251 242/9/252 +f 238/254/239 237/253/238 252/14/253 253/13/254 +f 236/255/240 235/242/227 250/18/242 251/17/255 +f 234/241/226 233/244/229 248/22/244 249/21/241 +f 232/243/228 231/246/231 246/26/246 247/25/243 +f 230/245/230 229/248/233 244/1/248 245/29/245 +f 228/247/232 227/252/237 242/9/252 243/2/247 +f 239/249/234 238/254/239 253/13/254 254/6/249 +f 237/253/238 236/255/240 251/17/255 252/14/253 +f 250/18/242 249/21/241 264/24/256 265/19/257 +f 248/22/244 247/25/243 262/28/258 263/23/259 +f 246/26/246 245/29/245 260/30/260 261/27/261 +f 244/1/248 243/2/247 258/3/262 259/4/263 +f 255/5/250 254/6/249 269/7/264 270/8/265 +f 242/9/252 241/10/251 256/11/266 257/12/267 +f 253/13/254 252/14/253 267/15/268 268/16/269 +f 251/17/255 250/18/242 265/19/257 266/20/270 +f 249/21/241 248/22/244 263/23/259 264/24/256 +f 247/25/243 246/26/246 261/27/261 262/28/258 +f 245/29/245 244/1/248 259/4/263 260/30/260 +f 243/2/247 242/9/252 257/12/267 258/3/262 +f 254/6/249 253/13/254 268/16/269 269/7/264 +f 252/14/253 251/17/255 266/20/270 267/15/268 +f 265/19/257 264/24/256 279/31/271 280/32/272 +f 263/23/259 262/28/258 277/33/273 278/34/274 +f 261/27/261 260/30/260 275/35/275 276/36/276 +f 259/4/263 258/3/262 273/37/277 274/38/278 +f 270/8/265 269/7/264 284/39/279 285/40/280 +f 257/12/267 256/11/266 271/41/281 272/42/282 +f 268/16/269 267/15/268 282/43/283 283/44/284 +f 266/20/270 265/19/257 280/32/272 281/45/285 +f 264/24/256 263/23/259 278/34/274 279/31/271 +f 262/28/258 261/27/261 276/36/276 277/33/273 +f 260/30/260 259/4/263 274/38/278 275/35/275 +f 258/3/262 257/12/267 272/42/282 273/37/277 +f 269/7/264 268/16/269 283/44/284 284/39/279 +f 267/15/268 266/20/270 281/45/285 282/43/283 +f 280/32/272 279/31/271 294/46/286 295/47/287 +f 278/34/274 277/33/273 292/48/288 293/49/289 +f 276/36/276 275/35/275 290/50/290 291/51/291 +f 274/38/278 273/37/277 288/52/292 289/53/293 +f 285/40/280 284/39/279 299/54/294 300/55/295 +f 272/42/282 271/41/281 286/56/296 287/57/297 +f 283/44/284 282/43/283 297/58/298 298/59/299 +f 281/45/285 280/32/272 295/47/287 296/60/300 +f 279/31/271 278/34/274 293/49/289 294/46/286 +f 277/33/273 276/36/276 291/51/291 292/48/288 +f 275/35/275 274/38/278 289/53/293 290/50/290 +f 273/37/277 272/42/282 287/57/297 288/52/292 +f 284/39/279 283/44/284 298/59/299 299/54/294 +f 282/43/283 281/45/285 296/60/300 297/58/298 +f 295/47/287 294/46/286 309/61/301 310/62/302 +f 293/49/289 292/48/288 307/63/303 308/64/304 +f 291/51/291 290/50/290 305/65/305 306/66/306 +f 289/53/293 288/52/292 303/67/307 304/68/308 +f 300/55/295 299/54/294 314/69/309 315/70/310 +f 287/57/297 286/56/296 301/71/311 302/72/312 +f 298/59/299 297/58/298 312/73/313 313/74/314 +f 296/60/300 295/47/287 310/62/302 311/75/315 +f 294/46/286 293/49/289 308/64/304 309/61/301 +f 292/48/288 291/51/291 306/66/306 307/63/303 +f 290/50/290 289/53/293 304/68/308 305/65/305 +f 288/52/292 287/57/297 302/72/312 303/67/307 +f 299/54/294 298/59/299 313/74/314 314/69/309 +f 297/58/298 296/60/300 311/75/315 312/73/313 +f 310/62/302 309/61/301 324/76/316 325/77/317 +f 308/64/304 307/63/303 322/78/318 323/79/319 +f 306/66/306 305/65/305 320/80/320 321/81/321 +f 304/68/308 303/67/307 318/82/322 319/83/323 +f 315/70/310 314/69/309 329/84/324 330/85/325 +f 302/72/312 301/71/311 316/86/326 317/87/327 +f 313/74/314 312/73/313 327/88/328 328/89/329 +f 311/75/315 310/62/302 325/77/317 326/90/330 +f 309/61/301 308/64/304 323/79/319 324/76/316 +f 307/63/303 306/66/306 321/81/321 322/78/318 +f 305/65/305 304/68/308 319/83/323 320/80/320 +f 303/67/307 302/72/312 317/87/327 318/82/322 +f 314/69/309 313/74/314 328/89/329 329/84/324 +f 312/73/313 311/75/315 326/90/330 327/88/328 +f 325/77/317 324/76/316 339/91/331 340/92/332 +f 323/79/319 322/78/318 337/93/333 338/94/334 +f 321/81/321 320/80/320 335/95/335 336/96/336 +f 319/83/323 318/82/322 333/97/337 334/98/338 +f 330/85/325 329/84/324 344/99/339 345/100/340 +f 317/87/327 316/86/326 331/101/341 332/102/342 +f 328/89/329 327/88/328 342/103/343 343/104/344 +f 326/90/330 325/77/317 340/92/332 341/105/345 +f 324/76/316 323/79/319 338/94/334 339/91/331 +f 322/78/318 321/81/321 336/96/336 337/93/333 +f 320/80/320 319/83/323 334/98/338 335/95/335 +f 318/82/322 317/87/327 332/102/342 333/97/337 +f 329/84/324 328/89/329 343/104/344 344/99/339 +f 327/88/328 326/90/330 341/105/345 342/103/343 +f 340/92/332 339/91/331 354/106/346 355/107/347 +f 338/94/334 337/93/333 352/108/348 353/109/349 +f 336/96/336 335/95/335 350/110/350 351/111/351 +f 334/98/338 333/97/337 348/112/352 349/113/353 +f 345/100/340 344/99/339 359/114/354 360/115/355 +f 332/102/342 331/101/341 346/116/356 347/117/357 +f 343/104/344 342/103/343 357/118/358 358/119/359 +f 341/105/345 340/92/332 355/107/347 356/120/360 +f 339/91/331 338/94/334 353/109/349 354/106/346 +f 337/93/333 336/96/336 351/111/351 352/108/348 +f 335/95/335 334/98/338 349/113/353 350/110/350 +f 333/97/337 332/102/342 347/117/357 348/112/352 +f 344/99/339 343/104/344 358/119/359 359/114/354 +f 342/103/343 341/105/345 356/120/360 357/118/358 +f 355/121/347 354/122/346 369/123/361 370/124/362 +f 353/125/349 352/126/348 367/127/363 368/128/364 +f 351/129/351 350/130/350 365/131/365 366/132/366 +f 349/133/353 348/134/352 363/135/367 364/136/368 +f 360/137/355 359/138/354 374/139/369 375/140/370 +f 347/141/357 346/142/356 361/143/371 362/144/372 +f 358/145/359 357/146/358 372/147/373 373/148/374 +f 356/149/360 355/121/347 370/124/362 371/150/375 +f 354/122/346 353/125/349 368/128/364 369/123/361 +f 352/126/348 351/129/351 366/132/366 367/127/363 +f 350/130/350 349/133/353 364/136/368 365/131/365 +f 348/134/352 347/141/357 362/144/372 363/135/367 +f 359/138/354 358/145/359 373/148/374 374/139/369 +f 357/146/358 356/149/360 371/150/375 372/147/373 +f 370/124/362 369/123/361 384/151/376 385/152/377 +f 368/128/364 367/127/363 382/153/378 383/154/379 +f 366/132/366 365/131/365 380/155/380 381/156/381 +f 364/136/368 363/135/367 378/157/382 379/158/383 +f 375/140/370 374/139/369 389/159/384 390/160/385 +f 362/144/372 361/143/371 376/161/386 377/162/387 +f 373/148/374 372/147/373 387/163/388 388/164/389 +f 371/150/375 370/124/362 385/152/377 386/165/390 +f 369/123/361 368/128/364 383/154/379 384/151/376 +f 367/127/363 366/132/366 381/156/381 382/153/378 +f 365/131/365 364/136/368 379/158/383 380/155/380 +f 363/135/367 362/144/372 377/162/387 378/157/382 +f 374/139/369 373/148/374 388/164/389 389/159/384 +f 372/147/373 371/150/375 386/165/390 387/163/388 +f 385/152/377 384/151/376 399/166/391 400/167/392 +f 383/154/379 382/153/378 397/168/393 398/169/394 +f 381/156/381 380/155/380 395/170/395 396/171/396 +f 379/158/383 378/157/382 393/172/397 394/173/398 +f 390/160/385 389/159/384 404/174/399 405/175/400 +f 377/162/387 376/161/386 391/176/401 392/177/402 +f 388/164/389 387/163/388 402/178/403 403/179/404 +f 386/165/390 385/152/377 400/167/392 401/180/405 +f 384/151/376 383/154/379 398/169/394 399/166/391 +f 382/153/378 381/156/381 396/171/396 397/168/393 +f 380/155/380 379/158/383 394/173/398 395/170/395 +f 378/157/382 377/162/387 392/177/402 393/172/397 +f 389/159/384 388/164/389 403/179/404 404/174/399 +f 387/163/388 386/165/390 401/180/405 402/178/403 +f 400/167/392 399/166/391 414/181/406 415/182/407 +f 398/169/394 397/168/393 412/183/408 413/184/409 +f 396/171/396 395/170/395 410/185/410 411/186/411 +f 394/173/398 393/172/397 408/187/412 409/188/413 +f 405/175/400 404/174/399 419/189/414 420/190/415 +f 392/177/402 391/176/401 406/191/416 407/192/417 +f 403/179/404 402/178/403 417/193/418 418/194/419 +f 401/180/405 400/167/392 415/182/407 416/195/420 +f 399/166/391 398/169/394 413/184/409 414/181/406 +f 397/168/393 396/171/396 411/186/411 412/183/408 +f 395/170/395 394/173/398 409/188/413 410/185/410 +f 393/172/397 392/177/402 407/192/417 408/187/412 +f 404/174/399 403/179/404 418/194/419 419/189/414 +f 402/178/403 401/180/405 416/195/420 417/193/418 +f 415/182/407 414/181/406 429/196/421 430/197/422 +f 413/184/409 412/183/408 427/198/423 428/199/424 +f 411/186/411 410/185/410 425/200/425 426/201/426 +f 409/188/413 408/187/412 423/202/427 424/203/428 +f 420/190/415 419/189/414 434/204/429 435/205/430 +f 407/192/417 406/191/416 421/206/431 422/207/432 +f 418/194/419 417/193/418 432/208/433 433/209/434 +f 416/195/420 415/182/407 430/197/422 431/210/435 +f 414/181/406 413/184/409 428/199/424 429/196/421 +f 412/183/408 411/186/411 426/201/426 427/198/423 +f 410/185/410 409/188/413 424/203/428 425/200/425 +f 408/187/412 407/192/417 422/207/432 423/202/427 +f 419/189/414 418/194/419 433/209/434 434/204/429 +f 417/193/418 416/195/420 431/210/435 432/208/433 +f 430/197/422 429/196/421 444/211/436 445/212/437 +f 428/199/424 427/198/423 442/213/438 443/214/439 +f 426/201/426 425/200/425 440/215/440 441/216/441 +f 424/203/428 423/202/427 438/217/442 439/218/443 +f 435/205/430 434/204/429 449/219/444 450/220/445 +f 422/207/432 421/206/431 436/221/446 437/222/447 +f 433/209/434 432/208/433 447/223/448 448/224/449 +f 431/210/435 430/197/422 445/212/437 446/225/450 +f 429/196/421 428/199/424 443/214/439 444/211/436 +f 427/198/423 426/201/426 441/216/441 442/213/438 +f 425/200/425 424/203/428 439/218/443 440/215/440 +f 423/202/427 422/207/432 437/222/447 438/217/442 +f 434/204/429 433/209/434 448/224/449 449/219/444 +f 432/208/433 431/210/435 446/225/450 447/223/448 +f 445/212/437 444/211/436 459/226/451 460/227/452 +f 443/214/439 442/213/438 457/228/453 458/229/454 +f 441/216/441 440/215/440 455/230/455 456/231/456 +f 439/218/443 438/217/442 453/232/457 454/233/458 +f 450/220/445 449/219/444 464/234/459 465/235/460 +f 437/222/447 436/221/446 451/236/461 452/237/462 +f 448/224/449 447/223/448 462/238/463 463/239/464 +f 446/225/450 445/212/437 460/227/452 461/240/465 +f 444/211/436 443/214/439 458/229/454 459/226/451 +f 442/213/438 441/216/441 456/231/456 457/228/453 +f 440/215/440 439/218/443 454/233/458 455/230/455 +f 438/217/442 437/222/447 452/237/462 453/232/457 +f 449/219/444 448/224/449 463/239/464 464/234/459 +f 447/223/448 446/225/450 461/240/465 462/238/463 +f 460/227/452 459/226/451 474/241/466 475/242/467 +f 458/229/454 457/228/453 472/243/468 473/244/469 +f 456/231/456 455/230/455 470/245/470 471/246/471 +f 454/233/458 453/232/457 468/247/472 469/248/473 +f 465/235/460 464/234/459 479/249/474 480/250/475 +f 452/237/462 451/236/461 466/251/476 467/252/477 +f 463/239/464 462/238/463 477/253/478 478/254/479 +f 461/240/465 460/227/452 475/242/467 476/255/480 +f 459/226/451 458/229/454 473/244/469 474/241/466 +f 457/228/453 456/231/456 471/246/471 472/243/468 +f 455/230/455 454/233/458 469/248/473 470/245/470 +f 453/232/457 452/237/462 467/252/477 468/247/472 +f 464/234/459 463/239/464 478/254/479 479/249/474 +f 462/238/463 461/240/465 476/255/480 477/253/478 +f 481/256/481 15/5/5 30/8/8 485/257/482 +f 485/257/482 30/8/8 45/40/40 487/258/483 +f 487/258/483 45/40/40 60/55/55 489/259/484 +f 489/259/484 60/55/55 75/70/70 491/260/485 +f 491/260/485 75/70/70 90/85/85 493/261/486 +f 493/261/486 90/85/85 105/100/100 495/262/487 +f 495/262/487 105/100/100 120/115/115 497/263/488 +f 497/264/488 120/137/115 135/140/130 499/265/489 +f 499/265/489 135/140/130 150/160/145 501/266/490 +f 501/266/490 150/160/145 165/175/160 503/267/491 +f 503/267/491 165/175/160 180/190/175 505/268/492 +f 505/268/492 180/190/175 195/205/190 507/269/493 +f 507/269/493 195/205/190 210/220/205 509/270/494 +f 509/270/494 210/220/205 225/235/220 511/271/495 +f 511/271/495 225/235/220 240/250/235 513/272/496 +f 513/272/496 240/250/235 255/5/250 515/256/497 +f 515/256/497 255/5/250 270/8/265 517/257/498 +f 517/257/498 270/8/265 285/40/280 519/258/499 +f 519/258/499 285/40/280 300/55/295 521/259/500 +f 521/259/500 300/55/295 315/70/310 523/260/501 +f 523/260/501 315/70/310 330/85/325 525/261/502 +f 525/261/502 330/85/325 345/100/340 527/262/503 +f 527/262/503 345/100/340 360/115/355 529/263/504 +f 529/264/504 360/137/355 375/140/370 531/265/505 +f 531/265/505 375/140/370 390/160/385 533/266/506 +f 533/266/506 390/160/385 405/175/400 534/267/507 +f 534/267/507 405/175/400 420/190/415 536/268/508 +f 536/268/508 420/190/415 435/205/430 538/269/509 +f 538/269/509 435/205/430 450/220/445 540/270/510 +f 540/270/510 450/220/445 465/235/460 542/271/511 +f 542/271/511 465/235/460 480/250/475 544/272/512 +f 475/242/467 474/241/466 9/21/21 10/18/18 +f 473/244/469 472/243/468 7/25/25 8/22/22 +f 471/246/471 470/245/470 5/29/29 6/26/26 +f 469/248/473 468/247/472 3/2/2 4/1/1 +f 480/250/475 479/249/474 14/6/6 15/5/5 +f 467/252/477 466/251/476 1/10/10 2/9/9 +f 478/254/479 477/253/478 12/14/14 13/13/13 +f 476/255/480 475/242/467 10/18/18 11/17/17 +f 474/241/466 473/244/469 8/22/22 9/21/21 +f 472/243/468 471/246/471 6/26/26 7/25/25 +f 470/245/470 469/248/473 4/1/1 5/29/29 +f 544/272/512 480/250/475 15/5/5 481/256/481 +f 468/247/472 467/252/477 2/9/9 3/2/2 +f 479/249/474 478/254/479 13/13/13 14/6/6 +f 477/253/478 476/255/480 11/17/17 12/14/14 +f 466/251/476 543/273/513 483/274/514 1/10/10 +f 451/236/461 541/275/515 543/273/513 466/251/476 +f 436/221/446 539/276/516 541/275/515 451/236/461 +f 421/206/431 537/277/517 539/276/516 436/221/446 +f 406/191/416 535/278/518 537/277/517 421/206/431 +f 391/176/401 482/279/519 535/278/518 406/191/416 +f 376/161/386 532/280/520 482/279/519 391/176/401 +f 361/143/371 530/281/521 532/280/520 376/161/386 +f 346/142/356 528/282/522 530/281/521 361/143/371 +f 331/101/341 526/283/523 528/284/522 346/116/356 +f 316/86/326 524/285/524 526/283/523 331/101/341 +f 301/71/311 522/286/525 524/285/524 316/86/326 +f 286/56/296 520/287/526 522/286/525 301/71/311 +f 271/41/281 518/288/527 520/287/526 286/56/296 +f 256/11/266 516/289/528 518/288/527 271/41/281 +f 241/10/251 514/274/529 516/289/528 256/11/266 +f 226/251/236 512/273/530 514/274/529 241/10/251 +f 211/236/221 510/275/531 512/273/530 226/251/236 +f 196/221/206 508/276/532 510/275/531 211/236/221 +f 181/206/191 506/277/533 508/276/532 196/221/206 +f 166/191/176 504/278/534 506/277/533 181/206/191 +f 151/176/161 502/279/535 504/278/534 166/191/176 +f 136/161/146 500/280/536 502/279/535 151/176/161 +f 121/143/131 498/281/537 500/280/536 136/161/146 +f 106/142/116 496/282/538 498/281/537 121/143/131 +f 91/101/101 494/283/539 496/284/538 106/116/116 +f 76/86/86 492/285/540 494/283/539 91/101/101 +f 61/71/71 490/286/541 492/285/540 76/86/86 +f 46/56/56 488/287/542 490/286/541 61/71/71 +f 31/41/41 486/288/543 488/287/542 46/56/56 +f 16/11/11 484/289/544 486/288/543 31/41/41 +f 1/10/10 483/274/514 484/289/544 16/11/11 +f 543/290/513 541/291/515 539/292/516 537/293/517 535/294/518 482/295/519 532/296/520 530/297/521 528/298/522 526/299/523 524/300/524 522/301/525 520/302/526 518/303/527 516/304/528 514/305/529 512/306/530 510/307/531 508/308/532 506/309/533 504/310/534 502/311/535 500/312/536 498/313/537 496/314/538 494/315/539 492/316/540 490/317/541 488/318/542 486/319/543 484/320/544 483/321/514 +f 544/290/512 481/291/481 485/292/482 487/293/483 489/294/484 491/295/485 493/296/486 495/297/487 497/298/488 499/299/489 501/300/490 503/301/491 505/302/492 507/303/493 509/304/494 511/305/495 513/306/496 515/307/497 517/308/498 519/309/499 521/310/500 523/311/501 525/312/502 527/313/503 529/314/504 531/315/505 533/316/506 534/317/507 536/318/508 538/319/509 540/320/510 542/321/511 diff --git a/mods/technic_plus_beta/technic_cnc/models/technic_cnc_two_curved_edge.obj b/mods/technic_plus_beta/technic_cnc/models/technic_cnc_two_curved_edge.obj new file mode 100644 index 00000000..7fbb9356 --- /dev/null +++ b/mods/technic_plus_beta/technic_cnc/models/technic_cnc_two_curved_edge.obj @@ -0,0 +1,209 @@ +v 0.415732 0.277783 0.499997 +v 0.461936 0.19134 0.499997 +v 0.415735 0.277783 -0.415732 +v 0.46194 0.19134 -0.461937 +v 0.490389 0.097544 0.499997 +v 0.353551 0.353551 0.499997 +v 0.353555 0.353551 -0.353551 +v 0.499996 0 0.499997 +v 0.277783 0.415732 0.499997 +v 0.490393 0.097544 -0.490389 +v 0.277787 0.415732 -0.277784 +v 0.19134 0.461936 0.499997 +v 0.191344 0.461937 -0.191341 +v 0.097544 0.490389 0.499997 +v 0.097547 0.490391 -0.097545 +v 0 0.499996 0.499997 +v -0.499997 0.499997 0.499997 +v -0.499997 0.499997 -0.00003 +v -0.499997 0.415735 -0.277785 +v -0.499997 0.46194 -0.191342 +v -0.499997 0.490393 -0.097545 +v -0.5 -0.5 -0.5 +v -0.499997 -0.499997 0.499997 +v 0 0.499998 0 +v -0.499998 0.000014 -0.499999 +v -0.499997 0.353553 -0.353554 +v -0.499998 0.097545 -0.490393 +v -0.499997 0.277785 -0.415735 +v -0.499998 0.191342 -0.46194 +v 0.499997 0 -0.499996 +v 0.5 -0.5 -0.5 +v 0.499997 -0.499997 0.499997 +v -0.499997 -0.499997 0.499997 +v -0.499997 0.499997 0.499997 +v -0.499997 0.499997 -0.00003 +v -0.499997 0.415735 -0.277785 +v -0.499997 0.46194 -0.191342 +v -0.499997 0.490393 -0.097545 +v -0.5 -0.5 -0.5 +v -0.499998 0.000014 -0.499999 +v -0.499997 0.353553 -0.353554 +v -0.499998 0.097545 -0.490393 +v -0.499997 0.277785 -0.415735 +v -0.499998 0.191342 -0.46194 +v -0.499998 -0.033351 0.033348 +v -0.5 -0.5 -0.5 +v 0.5 -0.5 -0.5 +v 0.499997 -0.499997 0.499997 +v 0.415732 0.277783 0.499997 +v 0.461936 0.19134 0.499997 +v 0.490389 0.097544 0.499997 +v 0.353551 0.353551 0.499997 +v 0.499996 0 0.499997 +v 0.277783 0.415732 0.499997 +v 0.19134 0.461936 0.499997 +v -0.499997 -0.499997 0.499997 +v 0.097544 0.490389 0.499997 +v 0 0.499996 0.499997 +v -0.499997 0.499997 0.499997 +v -0.033351 -0.033351 0.499997 +v 0.499997 -0.499997 0.499997 +vn 0 0 1 +vn 0 -1 0 +vn -1 0 0 +vn 0 0.8315 -0.5556 +vn 0 0.8061 -0.5917 +vn 0 0.6786 -0.7345 +vn 0 0.7071 -0.7071 +vn 0.8315 0.5556 0 +vn 0.8493 0.528 0 +vn 0.7345 0.6786 0 +vn 0.7071 0.7071 0 +vn 0 0.1951 -0.9808 +vn 0 0.1827 -0.9832 +vn 0 0.0475 -0.9989 +vn 0 0.0491 -0.9988 +vn 0.2427 0.9701 0 +vn 0.098 0.9952 0 +vn 0.1951 0.9808 0 +vn 0 0.9808 -0.1951 +vn 0 0.9952 -0.098 +vn 0 0.9701 -0.2426 +vn 0 0.528 -0.8493 +vn 0 0.5556 -0.8315 +vn 0.9832 0.1826 0 +vn 0.9327 0.3605 0 +vn 0.9239 0.3827 0 +vn 0.9808 0.1951 0 +vn 0.5917 0.8061 0 +vn 0.4258 0.9048 0 +vn 0.3827 0.9239 0 +vn 0.5556 0.8315 0 +vn 0 0.9048 -0.4258 +vn 0 0.9239 -0.3827 +vn 0 0.3605 -0.9327 +vn 0 0.3827 -0.9239 +vn 0.9988 0.0491 0 +vn 0.9989 0.0475 0 +vn 0 0 -1 +vn 0 1 0 +vn 1 0 0 +vt 1 0.5001 +vt 0.990395 0.597625 +vt 0.466756 0.466756 +vt 1 0.0002 +vt 0.000201 0.000201 +vt 0.597626 0.990394 +vt 0.500101 1 +vt 0.691404 0.961947 +vt 0.77783 0.915751 +vt 0.853583 0.853583 +vt 0.915752 0.777829 +vt 0.000201 1 +vt 0.961948 0.691403 +vt 0 0 +vt 1 0 +vt 1 1 +vt 0 1 +vt 0.533443 0.466757 +vt 0.000202 0.500115 +vt 0.402575 0.990397 +vt 0.308797 0.961949 +vt 0.222371 0.915753 +vt 0.146617 0.853584 +vt 0.084449 0.777831 +vt 0.038253 0.691405 +vt 0.009806 0.597626 +vt 0.999996 0.125448 +vt 0.222353 0.125462 +vt 0.146597 0.000612 +vt 0.999995 0.000594 +vt 0.000178 0.874582 +vt 0.915751 0.874577 +vt 0.85358 0.999436 +vt 0.000178 0.999439 +vt 0.999808 0.625427 +vt 0.009599 0.625446 +vt -0.000005 0.500594 +vt 0.999807 0.500594 +vt 0.597441 0.374574 +vt 0.499912 0.499435 +vt 0 0.499434 +vt 0 0.374576 +vt 0.999999 0.375154 +vt 1 0.499969 +vt 0.500093 0.500015 +vt 0.402562 0.375164 +vt 0.999812 0.999983 +vt 0.146415 1 +vt 0.084244 0.875149 +vt 0.999811 0.875131 +vt 0.990396 0.624861 +vt 0.961947 0.749719 +vt 0.000178 0.749724 +vt 0.000178 0.624866 +vt 0.777649 0.124857 +vt 0.691221 0.249715 +vt 0.000001 0.249719 +vt 0.000001 0.124861 +vt 0.308782 0.250314 +vt 0.999998 0.250301 +vt 0.853403 0 +vt 0.038047 0.750298 +vt 0.999809 0.75028 +vt 0.000177 0.500008 +vt 0 0.5 +vt 0.5 1 +vt 0.5 0.5 +s 1 +f 53/1/1 51/2/1 60/3/1 +f 61/4/1 53/1/1 60/3/1 56/5/1 +f 57/6/1 58/7/1 60/3/1 +f 55/8/1 57/6/1 60/3/1 +f 54/9/1 55/8/1 60/3/1 +f 52/10/1 54/9/1 60/3/1 +f 49/11/1 52/10/1 60/3/1 +f 59/12/1 56/5/1 60/3/1 58/7/1 +f 50/13/1 49/11/1 60/3/1 +f 48/14/2 23/15/2 46/16/2 47/17/2 +f 39/5/3 33/4/3 45/18/3 40/19/3 +f 35/7/3 38/20/3 45/18/3 +f 38/20/3 37/21/3 45/18/3 +f 37/21/3 36/22/3 45/18/3 +f 36/22/3 41/23/3 45/18/3 +f 41/23/3 43/24/3 45/18/3 +f 43/24/3 44/25/3 45/18/3 +f 44/25/3 42/26/3 45/18/3 +f 42/26/3 40/19/3 45/18/3 +f 34/16/3 35/7/3 45/18/3 33/4/3 +f 51/2/1 50/13/1 60/3/1 +f 19/27/4 11/28/5 7/29/6 26/30/7 +f 1/31/8 3/32/9 7/33/10 6/34/11 +f 27/35/12 10/36/13 30/37/14 25/38/15 +f 15/39/16 24/40/17 16/41/17 14/42/18 +f 21/43/19 18/44/20 24/45/20 15/46/21 +f 26/47/7 7/48/6 3/49/22 28/50/23 +f 10/51/24 4/52/25 2/53/26 5/54/27 +f 11/55/28 13/56/29 12/57/30 9/58/31 +f 21/43/19 15/46/21 13/59/32 20/60/33 +f 20/60/33 13/59/32 11/28/5 19/27/4 +f 9/58/31 6/14/11 7/61/10 11/55/28 +f 4/52/25 3/32/9 1/31/8 2/53/26 +f 3/49/22 4/62/34 29/63/35 28/50/23 +f 10/51/24 5/54/27 8/64/36 30/44/37 +f 29/63/35 4/62/34 10/36/13 27/35/12 +f 25/44/15 30/65/14 31/14/38 22/15/38 +f 16/66/39 24/67/39 18/44/39 17/16/39 +f 8/65/36 32/14/40 31/15/40 30/44/37 +f 12/57/30 13/56/29 15/39/16 14/42/18 diff --git a/mods/technic_plus_beta/technic_cnc/pipeworks.lua b/mods/technic_plus_beta/technic_cnc/pipeworks.lua new file mode 100644 index 00000000..18ba0e2e --- /dev/null +++ b/mods/technic_plus_beta/technic_cnc/pipeworks.lua @@ -0,0 +1,63 @@ + +local S = minetest.get_translator("pipeworks") +local tube_entry = "^pipeworks_tube_connection_metallic.png" +local button_base = "image_button[%0.1f,%0.1f;1,0.6" +local button_label = "label[%0.1f,%0.1f;" .. S("Allow splitting incoming stacks from tubes") .. "]" +local cycling_buttons = { pipeworks.button_off, pipeworks.button_on } +local fs_helpers = pipeworks.fs_helpers +local pipeworks_on_receive_fields = pipeworks.fs_helpers.on_receive_fields + +local function new_tube() + return { + insert_object = function(pos, node, stack, direction) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + return inv:add_item("src", stack) + end, + can_insert = technic_cnc.use_technic and technic.default_can_insert or function(pos, node, stack, direction) + local meta = minetest.get_meta(pos) + local inv = meta:get_inventory() + return inv:room_for_item("src", stack) + end, + connect_sides = {left=1, right=1, back=1, bottom=1}, + input_inventory = {"dst"}, + } +end + +local function tube_entry_overlay(tiles) + assert(type(tiles) == "table" and #tiles == 6, "tube_entry_overlay requires table with 6 elements") + return { + tiles[1], tiles[2] .. tube_entry, tiles[3] .. tube_entry, + tiles[4] .. tube_entry, tiles[5] .. tube_entry, tiles[6], + } +end + +local function cycling_button(meta, name, x, y) + local form_buttons = fs_helpers.cycling_button(meta, button_base:format(x, y), name, cycling_buttons) + return form_buttons .. button_label:format(x + 1.2, y + 0.31) +end + +-- Pipeworks does not provide API to selectively silence protection messages. +-- This wrapper handles pipeworks cycling buttons without sending unnecessary protection messages. +local function on_receive_fields(pos, meta, fields, sender, update_formspec) + -- https://github.com/mt-mods/pipeworks/-/blob/master/common.lua#L115 + for field,_ in pairs(fields) do + if field:match("^fs_helpers_cycling:") then + if pipeworks.may_configure(pos, sender) then + pipeworks_on_receive_fields(pos, fields) + update_formspec(meta) + end + -- Handled and protection message sent if necessary + return true + end + end + -- Not handled, caller may continue processing + return false +end + +return { + new_tube = new_tube, + cycling_button = cycling_button, + on_receive_fields = on_receive_fields, + tube_entry_overlay = tube_entry_overlay, +} diff --git a/mods/technic_plus_beta/technic_cnc/programs.lua b/mods/technic_plus_beta/technic_cnc/programs.lua new file mode 100644 index 00000000..a7c7713b --- /dev/null +++ b/mods/technic_plus_beta/technic_cnc/programs.lua @@ -0,0 +1,303 @@ +local S = technic_cnc.getter + +-- Define slope boxes for the various nodes +------------------------------------------- +technic_cnc.programs = { + { suffix = "technic_cnc_stick", + model = {-0.15, -0.5, -0.15, 0.15, 0.5, 0.15}, + desc = S("Stick") + }, + + { suffix = "technic_cnc_element_end_double", + model = {-0.3, -0.5, -0.3, 0.3, 0.5, 0.5}, + desc = S("Element End Double") + }, + + { suffix = "technic_cnc_element_cross_double", + model = { + {0.3, -0.5, -0.3, 0.5, 0.5, 0.3}, + {-0.3, -0.5, -0.5, 0.3, 0.5, 0.5}, + {-0.5, -0.5, -0.3, -0.3, 0.5, 0.3}}, + desc = S("Element Cross Double") + }, + + { suffix = "technic_cnc_element_t_double", + model = { + {-0.3, -0.5, -0.5, 0.3, 0.5, 0.3}, + {-0.5, -0.5, -0.3, -0.3, 0.5, 0.3}, + {0.3, -0.5, -0.3, 0.5, 0.5, 0.3}}, + desc = S("Element T Double") + }, + + { suffix = "technic_cnc_element_edge_double", + model = { + {-0.3, -0.5, -0.5, 0.3, 0.5, 0.3}, + {-0.5, -0.5, -0.3, -0.3, 0.5, 0.3}}, + desc = S("Element Edge Double") + }, + + { suffix = "technic_cnc_element_straight_double", + model = {-0.3, -0.5, -0.5, 0.3, 0.5, 0.5}, + desc = S("Element Straight Double") + }, + + { suffix = "technic_cnc_element_end", + model = {-0.3, -0.5, -0.3, 0.3, 0, 0.5}, + desc = S("Element End") + }, + + { suffix = "technic_cnc_element_cross", + model = { + {0.3, -0.5, -0.3, 0.5, 0, 0.3}, + {-0.3, -0.5, -0.5, 0.3, 0, 0.5}, + {-0.5, -0.5, -0.3, -0.3, 0, 0.3}}, + desc = S("Element Cross") + }, + + { suffix = "technic_cnc_element_t", + model = { + {-0.3, -0.5, -0.5, 0.3, 0, 0.3}, + {-0.5, -0.5, -0.3, -0.3, 0, 0.3}, + {0.3, -0.5, -0.3, 0.5, 0, 0.3}}, + desc = S("Element T") + }, + + { suffix = "technic_cnc_element_edge", + model = { + {-0.3, -0.5, -0.5, 0.3, 0, 0.3}, + {-0.5, -0.5, -0.3, -0.3, 0, 0.3}}, + desc = S("Element Edge") + }, + + { suffix = "technic_cnc_element_straight", + model = {-0.3, -0.5, -0.5, 0.3, 0, 0.5}, + desc = S("Element Straight") + }, + + { suffix = "technic_cnc_oblate_spheroid", + model = "technic_cnc_oblate_spheroid.obj", + desc = S("Oblate spheroid"), + cbox = { + type = "fixed", + fixed = { + { -6/16, 4/16, -6/16, 6/16, 8/16, 6/16 }, + { -8/16, -4/16, -8/16, 8/16, 4/16, 8/16 }, + { -6/16, -8/16, -6/16, 6/16, -4/16, 6/16 } + } + } + }, + + { suffix = "technic_cnc_sphere", + model = "technic_cnc_sphere.obj", + desc = S("Sphere") + }, + + { suffix = "technic_cnc_cylinder_horizontal", + model = "technic_cnc_cylinder_horizontal.obj", + desc = S("Horizontal Cylinder") + }, + + { suffix = "technic_cnc_cylinder", + model = "technic_cnc_cylinder.obj", + desc = S("Cylinder") + }, + + { suffix = "technic_cnc_twocurvededge", + model = "technic_cnc_two_curved_edge.obj", + desc = S("Two Curved Edge/Corner Block") + }, + + { suffix = "technic_cnc_onecurvededge", + model = "technic_cnc_one_curved_edge.obj", + desc = S("One Curved Edge Block") + }, + + { suffix = "technic_cnc_spike", + model = "technic_cnc_pyramid_spike.obj", + desc = S("Spike"), + cbox = { + type = "fixed", + fixed = { + { -2/16, 4/16, -2/16, 2/16, 8/16, 2/16 }, + { -4/16, 0, -4/16, 4/16, 4/16, 4/16 }, + { -6/16, -4/16, -6/16, 6/16, 0, 6/16 }, + { -8/16, -8/16, -8/16, 8/16, -4/16, 8/16 } + } + } + }, + + { suffix = "technic_cnc_pyramid", + model = "technic_cnc_pyramid.obj", + desc = S("Pyramid"), + cbox = { + type = "fixed", + fixed = { + { -2/16, -2/16, -2/16, 2/16, 0, 2/16 }, + { -4/16, -4/16, -4/16, 4/16, -2/16, 4/16 }, + { -6/16, -6/16, -6/16, 6/16, -4/16, 6/16 }, + { -8/16, -8/16, -8/16, 8/16, -6/16, 8/16 } + } + } + }, + + { suffix = "technic_cnc_slope_inner_edge_upsdown", + model = "technic_cnc_innercorner_upsdown.obj", + desc = S("Slope Upside Down Inner Edge/Corner"), + sbox = { + type = "fixed", + fixed = { -0.5, -0.5, -0.5, 0.5, 0.5, 0.5 } + }, + cbox = { + type = "fixed", + fixed = { + { 0.25, -0.25, -0.5, 0.5, -0.5, 0.5 }, + { -0.5, -0.25, 0.25, 0.5, -0.5, 0.5 }, + { 0, 0, -0.5, 0.5, -0.25, 0.5 }, + { -0.5, 0, 0, 0.5, -0.25, 0.5 }, + { -0.25, 0.25, -0.5, 0.5, 0, -0.25 }, + { -0.5, 0.25, -0.25, 0.5, 0, 0.5 }, + { -0.5, 0.5, -0.5, 0.5, 0.25, 0.5 } + } + } + }, + + { suffix = "technic_cnc_slope_edge_upsdown", + model = "technic_cnc_outercorner_upsdown.obj", + desc = S("Slope Upside Down Outer Edge/Corner"), + cbox = { + type = "fixed", + fixed = { + { -8/16, 8/16, -8/16, 8/16, 4/16, 8/16 }, + { -4/16, 4/16, -4/16, 8/16, 0, 8/16 }, + { 0, 0, 0, 8/16, -4/16, 8/16 }, + { 4/16, -4/16, 4/16, 8/16, -8/16, 8/16 } + } + } + }, + + { suffix = "technic_cnc_slope_inner_edge", + model = "technic_cnc_innercorner.obj", + desc = S("Slope Inner Edge/Corner"), + sbox = { + type = "fixed", + fixed = { -0.5, -0.5, -0.5, 0.5, 0.5, 0.5 } + }, + cbox = { + type = "fixed", + fixed = { + { -0.5, -0.5, -0.5, 0.5, -0.25, 0.5 }, + { -0.5, -0.25, -0.25, 0.5, 0, 0.5 }, + { -0.25, -0.25, -0.5, 0.5, 0, -0.25 }, + { -0.5, 0, 0, 0.5, 0.25, 0.5 }, + { 0, 0, -0.5, 0.5, 0.25, 0.5 }, + { -0.5, 0.25, 0.25, 0.5, 0.5, 0.5 }, + { 0.25, 0.25, -0.5, 0.5, 0.5, 0.5 } + } + } + }, + + { suffix = "technic_cnc_slope_edge", + model = "technic_cnc_outercorner.obj", + desc = S("Slope Outer Edge/Corner"), + cbox = { + type = "fixed", + fixed = { + { 4/16, 4/16, 4/16, 8/16, 8/16, 8/16 }, + { 0, 0, 0, 8/16, 4/16, 8/16 }, + { -4/16, -4/16, -4/16, 8/16, 0, 8/16 }, + { -8/16, -8/16, -8/16, 8/16, -4/16, 8/16 } + } + } + }, + + { suffix = "technic_cnc_slope_upsdown", + model = "technic_cnc_slope_upsdown.obj", + desc = S("Slope Upside Down"), + cbox = { + type = "fixed", + fixed = { + { -8/16, 8/16, -8/16, 8/16, 4/16, 8/16 }, + { -8/16, 4/16, -4/16, 8/16, 0, 8/16 }, + { -8/16, 0, 0, 8/16, -4/16, 8/16 }, + { -8/16, -4/16, 4/16, 8/16, -8/16, 8/16 } + } + } + }, + + { suffix = "technic_cnc_slope_lying", + model = "technic_cnc_slope_horizontal.obj", + desc = S("Slope Lying"), + cbox = { + type = "fixed", + fixed = { + { 4/16, -8/16, 4/16, 8/16, 8/16, 8/16 }, + { 0, -8/16, 0, 4/16, 8/16, 8/16 }, + { -4/16, -8/16, -4/16, 0, 8/16, 8/16 }, + { -8/16, -8/16, -8/16, -4/16, 8/16, 8/16 } + } + } + }, + + { suffix = "technic_cnc_slope", + model = "technic_cnc_slope.obj", + desc = S("Slope"), + cbox = { + type = "fixed", + fixed = { + { -8/16, 4/16, 4/16, 8/16, 8/16, 8/16 }, + { -8/16, 0, 0, 8/16, 4/16, 8/16 }, + { -8/16, -4/16, -4/16, 8/16, 0, 8/16 }, + { -8/16, -8/16, -8/16, 8/16, -4/16, 8/16 } + } + } + }, + +} + +-- Allow disabling certain programs for some node. Default is allowing all types for all nodes +technic_cnc.programs_disable = { + -- ["default:brick"] = {"technic_cnc_stick"}, -- Example: Disallow the stick for brick + ["default:dirt"] = { + "technic_cnc_oblate_spheroid", + "technic_cnc_slope_upsdown", + "technic_cnc_edge", "technic_cnc_inner_edge", + "technic_cnc_slope_edge_upsdown", + "technic_cnc_slope_inner_edge_upsdown", + "technic_cnc_stick", + "technic_cnc_cylinder_horizontal" + } +} + +-- TODO: These should be collected automatically through program registration function +-- Also technic_cnc.programs could be parsed and product lists created based on programs. +technic_cnc.onesize_products = { + cylinder = 2, + cylinder_horizontal = 2, + oblate_spheroid = 1, + onecurvededge = 1, + pyramid = 2, + slope = 2, + slope_edge = 1, + slope_edge_upsdown = 1, + slope_inner_edge = 1, + slope_inner_edge_upsdown = 1, + slope_lying = 2, + slope_upsdown = 2, + sphere = 1, + spike = 1, + stick = 8, + twocurvededge = 1, +} + +technic_cnc.twosize_products = { + element_straight = 2, + element_end = 2, + element_cross = 1, + element_t = 1, + element_edge = 2, +} + +-- Lookup tables for all available programs, main use is to verify that requested product is available +technic_cnc.products = {} +for key, size in pairs(technic_cnc.onesize_products) do technic_cnc.products[key] = size end +for key, size in pairs(technic_cnc.twosize_products) do technic_cnc.products[key] = size end diff --git a/mods/technic_plus_beta/technic_cnc/settingtypes.txt b/mods/technic_plus_beta/technic_cnc/settingtypes.txt new file mode 100644 index 00000000..d94dffda --- /dev/null +++ b/mods/technic_plus_beta/technic_cnc/settingtypes.txt @@ -0,0 +1,9 @@ +# Used to disable technic features +technic_cnc_use_technic (Use technic features) bool true + +# Used to disable digilines features +technic_cnc_use_digilines (Use digilines features) bool true + +# Used to disable pipeworks features +technic_cnc_use_pipeworks (Use pipeworks features) bool true + diff --git a/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_bottom.png b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_bottom.png new file mode 100644 index 00000000..fc907e37 Binary files /dev/null and b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_bottom.png differ diff --git a/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_cylinder.png b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_cylinder.png new file mode 100644 index 00000000..c82e8ce5 Binary files /dev/null and b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_cylinder.png differ diff --git a/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_cylinder_horizontal.png b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_cylinder_horizontal.png new file mode 100644 index 00000000..edf07c35 Binary files /dev/null and b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_cylinder_horizontal.png differ diff --git a/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_element_cross.png b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_element_cross.png new file mode 100644 index 00000000..6f879b31 Binary files /dev/null and b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_element_cross.png differ diff --git a/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_element_edge.png b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_element_edge.png new file mode 100644 index 00000000..66682965 Binary files /dev/null and b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_element_edge.png differ diff --git a/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_element_end.png b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_element_end.png new file mode 100644 index 00000000..e8dbbfe9 Binary files /dev/null and b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_element_end.png differ diff --git a/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_element_straight.png b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_element_straight.png new file mode 100644 index 00000000..5c2d5b44 Binary files /dev/null and b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_element_straight.png differ diff --git a/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_element_t.png b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_element_t.png new file mode 100644 index 00000000..f60b5efb Binary files /dev/null and b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_element_t.png differ diff --git a/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_front.png b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_front.png new file mode 100644 index 00000000..e1bf4192 Binary files /dev/null and b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_front.png differ diff --git a/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_front_active.png b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_front_active.png new file mode 100644 index 00000000..2c53defb Binary files /dev/null and b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_front_active.png differ diff --git a/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_full.png b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_full.png new file mode 100644 index 00000000..aeff8a95 Binary files /dev/null and b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_full.png differ diff --git a/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_full_active.png b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_full_active.png new file mode 100644 index 00000000..35b76d31 Binary files /dev/null and b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_full_active.png differ diff --git a/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_half.png b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_half.png new file mode 100644 index 00000000..ba9dad81 Binary files /dev/null and b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_half.png differ diff --git a/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_half_active.png b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_half_active.png new file mode 100644 index 00000000..249ac50b Binary files /dev/null and b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_half_active.png differ diff --git a/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_mk2_front.png b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_mk2_front.png new file mode 100644 index 00000000..089607f2 Binary files /dev/null and b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_mk2_front.png differ diff --git a/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_mk2_front_active.png b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_mk2_front_active.png new file mode 100644 index 00000000..69e10592 Binary files /dev/null and b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_mk2_front_active.png differ diff --git a/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_mk2_side.png b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_mk2_side.png new file mode 100644 index 00000000..1ba53377 Binary files /dev/null and b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_mk2_side.png differ diff --git a/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_mk2_top.png b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_mk2_top.png new file mode 100644 index 00000000..4ea2b214 Binary files /dev/null and b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_mk2_top.png differ diff --git a/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_mk2_top_active.png b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_mk2_top_active.png new file mode 100644 index 00000000..9e5f25f8 Binary files /dev/null and b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_mk2_top_active.png differ diff --git a/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_oblate_spheroid.png b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_oblate_spheroid.png new file mode 100644 index 00000000..7109d3ef Binary files /dev/null and b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_oblate_spheroid.png differ diff --git a/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_onecurvededge.png b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_onecurvededge.png new file mode 100644 index 00000000..4bdceba1 Binary files /dev/null and b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_onecurvededge.png differ diff --git a/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_pyramid.png b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_pyramid.png new file mode 100644 index 00000000..2f299a2a Binary files /dev/null and b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_pyramid.png differ diff --git a/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_side.png b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_side.png new file mode 100644 index 00000000..4feb412c Binary files /dev/null and b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_side.png differ diff --git a/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_slope.png b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_slope.png new file mode 100644 index 00000000..d2b3ce4d Binary files /dev/null and b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_slope.png differ diff --git a/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_slope_edge.png b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_slope_edge.png new file mode 100644 index 00000000..3906f50b Binary files /dev/null and b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_slope_edge.png differ diff --git a/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_slope_edge_upsdown.png b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_slope_edge_upsdown.png new file mode 100644 index 00000000..f507d0fe Binary files /dev/null and b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_slope_edge_upsdown.png differ diff --git a/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_slope_inner_edge.png b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_slope_inner_edge.png new file mode 100644 index 00000000..0184ef1d Binary files /dev/null and b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_slope_inner_edge.png differ diff --git a/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_slope_inner_edge_upsdown.png b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_slope_inner_edge_upsdown.png new file mode 100644 index 00000000..8b4aa25f Binary files /dev/null and b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_slope_inner_edge_upsdown.png differ diff --git a/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_slope_lying.png b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_slope_lying.png new file mode 100644 index 00000000..32ff8abe Binary files /dev/null and b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_slope_lying.png differ diff --git a/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_slope_upsdown.png b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_slope_upsdown.png new file mode 100644 index 00000000..d15bf2ba Binary files /dev/null and b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_slope_upsdown.png differ diff --git a/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_sphere.png b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_sphere.png new file mode 100644 index 00000000..61e71ff9 Binary files /dev/null and b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_sphere.png differ diff --git a/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_spike.png b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_spike.png new file mode 100644 index 00000000..cf826679 Binary files /dev/null and b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_spike.png differ diff --git a/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_stick.png b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_stick.png new file mode 100644 index 00000000..c2846429 Binary files /dev/null and b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_stick.png differ diff --git a/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_top.png b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_top.png new file mode 100644 index 00000000..7fcf6175 Binary files /dev/null and b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_top.png differ diff --git a/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_top_active.png b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_top_active.png new file mode 100644 index 00000000..24e3cd41 Binary files /dev/null and b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_top_active.png differ diff --git a/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_twocurvededge.png b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_twocurvededge.png new file mode 100644 index 00000000..5d7fbe5e Binary files /dev/null and b/mods/technic_plus_beta/technic_cnc/textures/technic_cnc_twocurvededge.png differ diff --git a/mods/technic_plus_beta/technic_worldgen/config.lua b/mods/technic_plus_beta/technic_worldgen/config.lua new file mode 100644 index 00000000..6f8fbd83 --- /dev/null +++ b/mods/technic_plus_beta/technic_worldgen/config.lua @@ -0,0 +1,16 @@ +technic.config = technic.config or Settings(minetest.get_worldpath().."/technic.conf") + +local conf_table = technic.config:to_table() + +local defaults = { + enable_granite_generation = "true", + enable_marble_generation = "true", + enable_rubber_tree_generation = "true", + enable_steel_override = "true", +} + +for k, v in pairs(defaults) do + if conf_table[k] == nil then + technic.config:set(k, v) + end +end diff --git a/mods/technic_plus_beta/technic_worldgen/crafts.lua b/mods/technic_plus_beta/technic_worldgen/crafts.lua new file mode 100644 index 00000000..0966276a --- /dev/null +++ b/mods/technic_plus_beta/technic_worldgen/crafts.lua @@ -0,0 +1,166 @@ + +local S = minetest.get_translator("technic_worldgen") + +local has_mcl = minetest.get_modpath("mcl_core") + +minetest.register_craftitem(":technic:uranium_lump", { + description = S("Uranium Lump"), + inventory_image = "technic_uranium_lump.png", +}) + +minetest.register_craftitem(":technic:uranium_ingot", { + description = S("Uranium Ingot"), + inventory_image = "technic_uranium_ingot.png", + groups = {uranium_ingot = 1}, +}) + +minetest.register_craftitem(":technic:chromium_lump", { + description = S("Chromium Lump"), + inventory_image = "technic_chromium_lump.png", +}) + +minetest.register_craftitem(":technic:chromium_ingot", { + description = S("Chromium Ingot"), + inventory_image = "technic_chromium_ingot.png", +}) + +minetest.register_craftitem(":technic:zinc_lump", { + description = S("Zinc Lump"), + inventory_image = "technic_zinc_lump.png", +}) + +minetest.register_craftitem(":technic:zinc_ingot", { + description = S("Zinc Ingot"), + inventory_image = "technic_zinc_ingot.png", +}) + +minetest.register_craftitem(":technic:lead_lump", { + description = S("Lead Lump"), + inventory_image = "technic_lead_lump.png", +}) + +minetest.register_craftitem(":technic:lead_ingot", { + description = S("Lead Ingot"), + inventory_image = "technic_lead_ingot.png", +}) + +minetest.register_craftitem(":technic:sulfur_lump", { + description = S("Sulfur Lump"), + inventory_image = "technic_sulfur_lump.png", +}) + +minetest.register_craftitem(":technic:cast_iron_ingot", { + description = S("Cast Iron Ingot"), + inventory_image = "technic_cast_iron_ingot.png", +}) + +minetest.register_craftitem(":technic:carbon_steel_ingot", { + description = S("Carbon Steel Ingot"), + inventory_image = "technic_carbon_steel_ingot.png", +}) + +minetest.register_craftitem(":technic:stainless_steel_ingot", { + description = S("Stainless Steel Ingot"), + inventory_image = "technic_stainless_steel_ingot.png", +}) + +local blocks = { + ["uranium"] = "ingot", + ["chromium"] = "ingot", + ["zinc"] = "ingot", + ["lead"] = "ingot", + ["cast_iron"] = "ingot", + ["carbon_steel"] = "ingot", + ["stainless_steel"] = "ingot", + ["sulfur"] = "lump", +} + +for material, form in pairs(blocks) do + local block = "technic:"..material.."_block" + local item = "technic:"..material.."_"..form + + minetest.register_craft({ + output = block, + recipe = { + {item, item, item}, + {item, item, item}, + {item, item, item}, + } + }) + + minetest.register_craft({ + output = item.." 9", + recipe = {{block}} + }) +end + +minetest.register_craft({ + type = "cooking", + recipe = "technic:zinc_lump", + output = "technic:zinc_ingot", +}) + +minetest.register_craft({ + type = "cooking", + recipe = "technic:chromium_lump", + output = "technic:chromium_ingot", +}) + +minetest.register_craft({ + type = "cooking", + recipe = "technic:uranium_lump", + output = "technic:uranium_ingot", +}) + +minetest.register_craft({ + type = "cooking", + recipe = "technic:lead_lump", + output = "technic:lead_ingot", +}) + +minetest.register_craft({ + type = "cooking", + recipe = has_mcl and "mcl_core:iron_ingot" or "default:steel_ingot", + output = "technic:cast_iron_ingot", +}) + +minetest.register_craft({ + type = "cooking", + recipe = "technic:cast_iron_ingot", + cooktime = 2, + output = "technic:wrought_iron_ingot", +}) + +minetest.register_craft({ + type = "cooking", + recipe = "technic:carbon_steel_ingot", + cooktime = 2, + output = "technic:wrought_iron_ingot", +}) + +if not minetest.get_modpath("underch") then + minetest.register_craft({ + output = "technic:marble_bricks 4", + recipe = { + {"technic:marble","technic:marble"}, + {"technic:marble","technic:marble"} + } + }) +end + +minetest.register_craft({ + output = "technic:granite_bricks 4", + recipe = { + {"technic:granite","technic:granite"}, + {"technic:granite","technic:granite"} + } +}) + +minetest.register_craft({ + output = "technic:blast_resistant_concrete 5", + recipe = { + {"basic_materials:concrete_block", "technic:composite_plate", "basic_materials:concrete_block"}, + {"technic:composite_plate", "basic_materials:concrete_block", "technic:composite_plate"}, + {"basic_materials:concrete_block", "technic:composite_plate", "basic_materials:concrete_block"}, + } +}) diff --git a/mods/technic_plus_beta/technic_worldgen/init.lua b/mods/technic_plus_beta/technic_worldgen/init.lua new file mode 100644 index 00000000..bbe90602 --- /dev/null +++ b/mods/technic_plus_beta/technic_worldgen/init.lua @@ -0,0 +1,52 @@ + +local modpath = minetest.get_modpath("technic_worldgen") + +technic = rawget(_G, "technic") or {} + +technic.sounds = {} +if minetest.get_modpath("default") then + technic.sounds = default +end +if minetest.get_modpath("mcl_sounds") then + technic.sounds = mcl_sounds +end + +dofile(modpath.."/config.lua") +dofile(modpath.."/nodes.lua") +dofile(modpath.."/oregen.lua") +dofile(modpath.."/crafts.lua") +if minetest.get_modpath("default") and technic.config:get_bool("enable_steel_override") then + dofile(modpath.."/overrides.lua") +end + +-- Rubber trees, moretrees also supplies these +if not minetest.get_modpath("moretrees") then + dofile(modpath.."/rubber.lua") +else + -- Older versions of technic provided rubber trees regardless + minetest.register_alias("technic:rubber_sapling", "moretrees:rubber_tree_sapling") + minetest.register_alias("technic:rubber_tree_empty", "moretrees:rubber_tree_trunk_empty") +end + +-- mg suppport +if minetest.get_modpath("mg") then + dofile(modpath.."/mg.lua") +end + +minetest.register_alias("technic:uranium", "technic:uranium_lump") + +if minetest.get_modpath("default") then + minetest.register_alias("technic:wrought_iron_ingot", "default:steel_ingot") + minetest.register_alias("technic:wrought_iron_block", "default:steelblock") + minetest.register_alias("technic:diamond_block", "default:diamondblock") + minetest.register_alias("technic:diamond", "default:diamond") + minetest.register_alias("technic:mineral_diamond", "default:stone_with_diamond") +end + +if minetest.get_modpath("mcl_core") then + minetest.register_alias("technic:wrought_iron_ingot", "mcl_core:iron_ingot") + minetest.register_alias("technic:wrought_iron_block", "mcl_core:ironblock") + minetest.register_alias("technic:diamond_block", "mcl_core:diamondblock") + minetest.register_alias("technic:diamond", "mcl_core:diamond") + minetest.register_alias("technic:mineral_diamond", "mcl_core:stone_with_diamond") +end diff --git a/mods/technic_plus_beta/technic_worldgen/locale/technic_worldgen.de.tr b/mods/technic_plus_beta/technic_worldgen/locale/technic_worldgen.de.tr new file mode 100644 index 00000000..29e2ed16 --- /dev/null +++ b/mods/technic_plus_beta/technic_worldgen/locale/technic_worldgen.de.tr @@ -0,0 +1,51 @@ +# textdomain: technic_worldgen + +# German Translation for technic_worldgen +# Deutsche Übersetzung von technic_worldgen +# by Xanthin + +## crafts.lua +Uranium Lump=Uranklumpen +Uranium Ingot=Uranbarren +Chromium Lump=Chromklumpen +Chromium Ingot=Chrombarren +Zinc Lump=Zinkklumpen +Zinc Ingot=Zinkbarren +Brass Ingot=Messingbarren +Wrought Iron Ingot=Schmiedeeisenbarren +Cast Iron Ingot=Gusseisenbarren +Carbon Steel Ingot=Kohlenstoffstahlbarren +Stainless Steel Ingot=Edelstahlbarren +Iron=Eisen + +## nodes.lua +Uranium Ore=Uranerz +Chromium Ore=Chromerz +Zinc Ore=Zinkerz +Granite=Granit +Marble=Marmor +Marble Bricks=Marmorziegel +Uranium Block=Uranblock +Chromium Block=Chromblock +Zinc Block=Zinkblock +Wrought Iron Block=Schmiedeeisenblock +Cast Iron Block=Gusseisenblock +Carbon Steel Block=Kohlenstoffstahlblock +Stainless Steel Block=Edelstahlblock +Brass Block=Messingblock +Wrought Iron=Schmiedeeisen +Blast-resistant Concrete Block=Explosionsbestaendiger Betonblock + +## rubber.lua +Rubber Tree Sapling=Gummibaumsetzling +Rubber Tree=Gummibaum + +Lead Lump=Bleiklumpen +Lead Ingot=Bleibarren +Sulfur Lump=Schwefelklumpen +Rubber Tree Leaves=Gummibaumblätter +Lead Ore=Bleierz +Sulfur Ore=Schwefelerz +Granite Bricks=Granitblock +Lead Block=Bleibblock +Sulfur Block=Schwefelblock diff --git a/mods/technic_plus_beta/technic_worldgen/locale/technic_worldgen.es.tr b/mods/technic_plus_beta/technic_worldgen/locale/technic_worldgen.es.tr new file mode 100644 index 00000000..26dc3e22 --- /dev/null +++ b/mods/technic_plus_beta/technic_worldgen/locale/technic_worldgen.es.tr @@ -0,0 +1,48 @@ +# textdomain: technic_worldgen + +# technic_worldgen traducido por Carlos Barraza + +###crafts.lua +Uranium Lump=Pepita de Uranio +Uranium Ingot=Lingote de Uranio +Chromium Lump=Pepita de Cromo +Chromium Ingot=Lingote de Cromo +Zinc Lump=Pepita de Zinc +Zinc Ingot=Lingote de Zinc +Brass Ingot=Lingote de Latón +Wrought Iron Ingot=Lingote de Hierro Forjado +Cast Iron Ingot=Lingote de Hierro Fundido +Carbon Steel Ingot=Lingote de Acero al Carbon +Stainless Steel Ingot=Lingote de Acero inoxidable +Iron=Lingote + +###nodes.lua +Uranium Ore=Mineral de Uranio +Chromium Ore=Mineral de Cromo +Zinc Ore=Mineral de Zinc +Granite=Granito +Marble=Mármol +Marble Bricks=Ladrillos de Mármol +Uranium Block=Bloque de Uranio +Chromium Block=Bloque de Cromo +Zinc Block=Bloque de Zinc +Wrought Iron Block=Bloque de Hierro Forjado +Cast Iron Block=Bloque de Hierro Fundido +Carbon Steel Block=Bloque de Acero al Carbon +Stainless Steel Block=Bloque de Acero Inoxidable +Brass Block=Bloque de Latón +Wrought Iron=Hierro Forjado +Blast-resistant Concrete Block=Bloque de concreto resistente a explosiones + +###rubber.lua +Rubber Tree Sapling=Retoño de Árbol de Goma +Rubber Tree=Árbol de Goma +Lead Lump= +Lead Ingot= +Sulfur Lump= +Rubber Tree Leaves= +Lead Ore= +Sulfur Ore= +Granite Bricks= +Lead Block= +Sulfur Block= diff --git a/mods/technic_plus_beta/technic_worldgen/locale/technic_worldgen.fr.tr b/mods/technic_plus_beta/technic_worldgen/locale/technic_worldgen.fr.tr new file mode 100644 index 00000000..bdf004b6 --- /dev/null +++ b/mods/technic_plus_beta/technic_worldgen/locale/technic_worldgen.fr.tr @@ -0,0 +1,49 @@ +# textdomain: technic_worldgen + +# template.txt +# technic_worldgen translation template + +###crafts.lua +Uranium Lump=Morceau d'uranium +Uranium Ingot=Lingot d'uranium +Chromium Lump=Morceau de chrome +Chromium Ingot=Lingot de chrome +Zinc Lump=Morceau de zinc +Zinc Ingot=Lingot de zinc +Brass Ingot=Lingot de laiton +Wrought Iron Ingot=Lingot de fer forgé +Cast Iron Ingot=Lingot de fonte +Carbon Steel Ingot=Lingot d'acier au carbone +Stainless Steel Ingot=Lingot d'acier inoxydable +Iron=Fer + +###nodes.lua +Uranium Ore=Minerai d'uranium +Chromium Ore=Minerai de chrome +Zinc Ore=Minerai de zinc +Granite=Granite +Marble=Marbre +Marble Bricks=Briques en marbre +Uranium Block=Bloc d'uranium +Chromium Block=Bloc de chrome +Zinc Block=Bloc de zinc +Wrought Iron Block=Bloc de fer forgé +Cast Iron Block=Bloc de fonte +Carbon Steel Block=Bloc d'acier au carbone +Stainless Steel Block=Bloc d'acier inoxydable +Brass Block=Bloc de laiton +Wrought Iron=Fer forgé +Blast-resistant Concrete Block=Bloc de béton anti explosions + +###rubber.lua +Rubber Tree Sapling=Pousse d'arbre à caoutchouc +Rubber Tree=Arbre à caoutchouc +Lead Lump= +Lead Ingot= +Sulfur Lump= +Rubber Tree Leaves= +Lead Ore= +Sulfur Ore= +Granite Bricks= +Lead Block= +Sulfur Block= diff --git a/mods/technic_plus_beta/technic_worldgen/locale/technic_worldgen.ja.tr b/mods/technic_plus_beta/technic_worldgen/locale/technic_worldgen.ja.tr new file mode 100644 index 00000000..26c744be --- /dev/null +++ b/mods/technic_plus_beta/technic_worldgen/locale/technic_worldgen.ja.tr @@ -0,0 +1,48 @@ +# textdomain: technic_worldgen + +# technic_worldgen japanese translation + +###crafts.lua +Uranium Lump= +Uranium Ingot= +Chromium Lump= +Chromium Ingot= +Zinc Lump= +Zinc Ingot= +Brass Ingot= +Wrought Iron Ingot= +Cast Iron Ingot= +Carbon Steel Ingot= +Stainless Steel Ingot= +Iron= + +###nodes.lua +Uranium Ore= +Chromium Ore= +Zinc Ore= +Granite= +Marble= +Marble Bricks= +Uranium Block= +Chromium Block= +Zinc Block= +Wrought Iron Block= +Cast Iron Block= +Carbon Steel Block= +Stainless Steel Block= +Brass Block= +Wrought Iron= +Blast-resistant Concrete Block=耐爆性コンクリートのブロック + +###rubber.lua +Rubber Tree Sapling= +Rubber Tree= +Lead Lump= +Lead Ingot= +Sulfur Lump= +Rubber Tree Leaves= +Lead Ore= +Sulfur Ore= +Granite Bricks= +Lead Block= +Sulfur Block= diff --git a/mods/technic_plus_beta/technic_worldgen/locale/technic_worldgen.pl.tr b/mods/technic_plus_beta/technic_worldgen/locale/technic_worldgen.pl.tr new file mode 100644 index 00000000..391ac3c9 --- /dev/null +++ b/mods/technic_plus_beta/technic_worldgen/locale/technic_worldgen.pl.tr @@ -0,0 +1,50 @@ +# textdomain: technic_worldgen + +# Polish Translation for technic_worldgen +# Polskie tłumaczenie technic_worldgen +# by mat9117 + +###crafts.lua +Uranium Lump=Bryłka uranu +Uranium Ingot=Sztabka uranu +Chromium Lump=Bryłka chromu +Chromium Ingot=Sztabka chromu +Zinc Lump=Bryłka cynku +Zinc Ingot=Sztabka cynku +Brass Ingot=Sztabka mosiądzu +Wrought Iron Ingot=Sztabka kutego żelaza +Cast Iron Ingot=Sztabka żelaziwa +Carbon Steel Ingot=Sztabka stali węglowej +Stainless Steel Ingot=Sztabka nierdzewnej stali +Iron=Żelazo + +###nodes.lua +Uranium Ore=Ruda uranu +Chromium Ore=Ruda chromu +Zinc Ore=Ruda cynku +Granite=Granit +Marble=Marmur +Marble Bricks=Marmurowe cegły +Uranium Block=Blok uranu +Chromium Block=Blok chromu +Zinc Block=Blok cynku +Wrought Iron Block=Blok kutego żelaza +Cast Iron Block=Blok żelaziwa +Carbon Steel Block=Blok stali węglowej +Stainless Steel Block=Blok stali nierdzewnej +Brass Block=Blok mosiądzu +Wrought Iron=Kute żelazo +Blast-resistant Concrete Block=Przeciwwybuchowy blok betonu + +###rubber.lua +Rubber Tree Sapling=Sadzonka kauczukowca +Rubber Tree=Kauczukowiec +Lead Lump= +Lead Ingot= +Sulfur Lump= +Rubber Tree Leaves= +Lead Ore= +Sulfur Ore= +Granite Bricks= +Lead Block= +Sulfur Block= diff --git a/mods/technic_plus_beta/technic_worldgen/locale/technic_worldgen.pt_BR.tr b/mods/technic_plus_beta/technic_worldgen/locale/technic_worldgen.pt_BR.tr new file mode 100644 index 00000000..eaaacab6 --- /dev/null +++ b/mods/technic_plus_beta/technic_worldgen/locale/technic_worldgen.pt_BR.tr @@ -0,0 +1,50 @@ +# textdomain: technic_worldgen + +# Braziliam portuguese translation for technic_worldgen +# Tradução portuguesa brasileira para technic_worldgen +# By Sires + +###crafts.lua +Uranium Lump=Pedaço de Urânio +Uranium Ingot=Lingote de Urânio +Chromium Lump=Pedaço de Crômio +Chromium Ingot=Lingote de Crômio +Zinc Lump=Pedaço de Zinco +Zinc Ingot=Lingote de Zinco +Brass Ingot=Lingote de Latão +Wrought Iron Ingot=Lingote de Ferro Forjado +Cast Iron Ingot=Lingote de Ferro Fundido +Carbon Steel Ingot=Lingote de Aço Carbono +Stainless Steel Ingot=Lingote de Ferro Inoxidável +Iron=Ferro + +###nodes.lua +Uranium Ore=Minério de Urânio +Chromium Ore=Minério de Crômio +Zinc Ore=Minério de Zinco +Granite=Granito +Marble=Mármore +Marble Bricks=Tijolos de Mármore +Uranium Block=Bloco de Urânio +Chromium Block=Bloco de Crômio +Zinc Block=Bloco de Zinco +Wrought Iron Block=Bloco de Ferro Forjado +Cast Iron Block=Bloco de Ferro Fundido +Carbon Steel Block=Bloco de Aço Carbono +Stainless Steel Block=Bloco de Aço Inoxidável +Brass Block=Bloco de Latão +Wrought Iron=Ferro Forjado +Blast-resistant Concrete Block=Bloco de Concreto resistente-a-explosões + +###rubber.lua +Rubber Tree Sapling=Muda de Árvore de Borracha +Rubber Tree=Árvore de Borracha +Lead Lump= +Lead Ingot= +Sulfur Lump= +Rubber Tree Leaves= +Lead Ore= +Sulfur Ore= +Granite Bricks= +Lead Block= +Sulfur Block= diff --git a/mods/technic_plus_beta/technic_worldgen/locale/technic_worldgen.tr.tr b/mods/technic_plus_beta/technic_worldgen/locale/technic_worldgen.tr.tr new file mode 100644 index 00000000..55c24e75 --- /dev/null +++ b/mods/technic_plus_beta/technic_worldgen/locale/technic_worldgen.tr.tr @@ -0,0 +1,50 @@ +# textdomain: technic_worldgen + +# Turkish translation +# mahmutelmas06@hotmail.com +# Türkçe çeviri + +###crafts.lua +Uranium Lump=Uranyum yığını +Uranium Ingot=Uranyum külçesi +Chromium Lump=Krom yığını +Chromium Ingot=Krom külçesi +Zinc Lump=Çinko yığını +Zinc Ingot=Çünko külçesi +Brass Ingot=Pirinç yığını +Wrought Iron Ingot=İşlenmiş demir yığını +Cast Iron Ingot=Döküm demir yığını +Carbon Steel Ingot=Karbon çelik külçe +Stainless Steel Ingot=Paslanmaz çelik külçe +Iron=Demir + +###nodes.lua +Uranium Ore=Uranyum madeni +Chromium Ore=Krom madeni +Zinc Ore=Çinko madeni +Granite=Granit +Marble=Mermer +Marble Bricks=Mermer tuğla +Uranium Block=Uranyum blok +Chromium Block=Karbon blok +Zinc Block=Çinko blok +Wrought Iron Block=İşlenmiş demir blok +Cast Iron Block=Döküm demir blok +Carbon Steel Block=Karbon çelik blok +Stainless Steel Block=Paslanmaz çelik blok +Brass Block=Pirinç blok +Wrought Iron=İşlenmiş demir +Blast-resistant Concrete Block=Patlamaya dayanıklı beton blok + +###rubber.lua +Rubber Tree Sapling=Kauçuk ağacı fidanı +Rubber Tree=Kauçuk ağacı +Lead Lump= +Lead Ingot= +Sulfur Lump= +Rubber Tree Leaves= +Lead Ore= +Sulfur Ore= +Granite Bricks= +Lead Block= +Sulfur Block= diff --git a/mods/technic_plus_beta/technic_worldgen/locale/technic_worldgen.zh_CN.tr b/mods/technic_plus_beta/technic_worldgen/locale/technic_worldgen.zh_CN.tr new file mode 100644 index 00000000..15c9e31a --- /dev/null +++ b/mods/technic_plus_beta/technic_worldgen/locale/technic_worldgen.zh_CN.tr @@ -0,0 +1,42 @@ +# textdomain: technic_worldgen + +# Author: wzy2006 <3450354617@qq.com> +Uranium Lump=铀粒 +Uranium Ingot=铀锭 +Chromium Lump=铬粒 +Chromium Ingot=铬锭 +Zinc Lump=锌粒 +Zinc Ingot=锌锭 +Brass Ingot=黄铜锭 +Wrought Iron Ingot=熟铁锭 +Cast Iron Ingot=铸铁锭 +Carbon Steel Ingot=碳钢锭 +Stainless Steel Ingot=不锈钢锭 +Iron=铁 +Uranium Ore=铀矿石 +Chromium Ore=铬矿 +Zinc Ore=锌矿 +Granite=花岗岩 +Marble=大理石 +Marble Bricks=大理石砖 +Uranium Block=铀块 +Chromium Block=铬块 +Zinc Block=锌块 +Wrought Iron Block=熟铁块 +Cast Iron Block=铸铁块 +Carbon Steel Block=碳钢块 +Stainless Steel Block=不锈钢块 +Brass Block=黄铜块 +Wrought Iron=熟铁 +Rubber Tree Sapling=橡胶树苗 +Rubber Tree=橡胶树 +Lead Lump= +Lead Ingot= +Sulfur Lump= +Rubber Tree Leaves= +Lead Ore= +Sulfur Ore= +Granite Bricks= +Lead Block= +Sulfur Block= +Blast-resistant Concrete Block=抗爆混凝土块 diff --git a/mods/technic_plus_beta/technic_worldgen/locale/template.txt b/mods/technic_plus_beta/technic_worldgen/locale/template.txt new file mode 100644 index 00000000..d9d6d9e9 --- /dev/null +++ b/mods/technic_plus_beta/technic_worldgen/locale/template.txt @@ -0,0 +1,49 @@ +# textdomain: technic_worldgen + +# template.txt +# technic_worldgen translation template + +###crafts.lua +Uranium Lump= +Uranium Ingot= +Chromium Lump= +Chromium Ingot= +Zinc Lump= +Zinc Ingot= +Brass Ingot= +Wrought Iron Ingot= +Cast Iron Ingot= +Carbon Steel Ingot= +Stainless Steel Ingot= +Iron= + +###nodes.lua +Uranium Ore= +Chromium Ore= +Zinc Ore= +Granite= +Marble= +Marble Bricks= +Uranium Block= +Chromium Block= +Zinc Block= +Wrought Iron Block= +Cast Iron Block= +Carbon Steel Block= +Stainless Steel Block= +Brass Block= +Wrought Iron= +Blast-resistant Concrete Block= + +###rubber.lua +Rubber Tree Sapling= +Rubber Tree= +Lead Lump= +Lead Ingot= +Sulfur Lump= +Rubber Tree Leaves= +Lead Ore= +Sulfur Ore= +Granite Bricks= +Lead Block= +Sulfur Block= diff --git a/mods/technic_plus_beta/technic_worldgen/mg.lua b/mods/technic_plus_beta/technic_worldgen/mg.lua new file mode 100644 index 00000000..74807d7e --- /dev/null +++ b/mods/technic_plus_beta/technic_worldgen/mg.lua @@ -0,0 +1,90 @@ +mg.register_ore({ + name = "technic:mineral_uranium", + wherein = "default:stone", + seeddiff = 11, + maxvdistance = 10.5, + maxheight = -80, + minheight = -300, + sizen = 20, + sizedev = 10, + seglenghtn = 3, + seglenghtdev = 1, + segincln = 0.4, + segincldev = 0.6, + turnangle = 57, + numperblock = 1, + fork_chance = 0 +}) + +mg.register_ore({ + name = "technic:mineral_chromium", + wherein = "default:stone", + seeddiff = 12, + maxvdistance = 10.5, + maxheight = -100, + sizen = 50, + sizedev = 20, + seglenghtn = 8, + seglenghtdev = 3, + segincln = 0, + segincldev = 0.6, + turnangle = 57, + forkturnangle = 57, + numperblock = 2 +}) + +mg.register_ore({ + name = "technic:mineral_zinc", + wherein = "default:stone", + seeddiff = 13, + maxvdistance = 10.5, + maxheight = 2, + seglenghtn = 15, + seglenghtdev = 6, + segincln = 0, + segincldev = 0.6, + turnangle = 57, + forkturnangle = 57, + numperblock = 2 +}) + +mg.register_ore({ + name = "technic:mineral_lead", + wherein = "default:stone", + seeddiff = 14, + maxvdistance = 10.5, + maxheight = 16, + seglenghtn = 15, + seglenghtdev = 6, + segincln = 0, + segincldev = 0.6, + turnangle = 57, + forkturnangle = 57, + numperblock = 3 +}) + +if technic.config:get_bool("enable_granite_generation") then + mg.register_ore_sheet({ + name = "technic:granite", + wherein = "default:stone", + height_min = -31000, + height_max = -150, + tmin = 3, + tmax = 6, + threshhold = 0.4, + noise_params = {offset=0, scale=15, spread={x=130, y=130, z=130}, seed=24, octaves=3, persist=0.70} + }) +end + +if technic.config:get_bool("enable_marble_generation") then + mg.register_ore_sheet({ + name = "technic:marble", + wherein = "default:stone", + height_min = -31000, + height_max = -50, + tmin = 3, + tmax = 6, + threshhold = 0.4, + noise_params = {offset=0, scale=15, spread={x=130, y=130, z=130}, seed=23, octaves=3, persist=0.70} + }) +end diff --git a/mods/technic_plus_beta/technic_worldgen/mod.conf b/mods/technic_plus_beta/technic_worldgen/mod.conf new file mode 100644 index 00000000..93ced82d --- /dev/null +++ b/mods/technic_plus_beta/technic_worldgen/mod.conf @@ -0,0 +1,3 @@ +name = technic_worldgen +depends = +optional_depends = default, mcl_core, mcl_sounds, mcl_init, mcl_worlds, mg, underch diff --git a/mods/technic_plus_beta/technic_worldgen/nodes.lua b/mods/technic_plus_beta/technic_worldgen/nodes.lua new file mode 100644 index 00000000..d927fd51 --- /dev/null +++ b/mods/technic_plus_beta/technic_worldgen/nodes.lua @@ -0,0 +1,201 @@ + +local S = minetest.get_translator("technic_worldgen") + +local has_mcl = minetest.get_modpath("mcl_core") + +minetest.register_node(":technic:mineral_uranium", { + description = S("Uranium Ore"), + tiles = {"default_stone.png^technic_mineral_uranium.png"}, + is_ground_content = true, + groups = {cracky=3, radioactive=1, pickaxey=1}, + _mcl_hardness = 0.8, + _mcl_blast_resistance = 1, + sounds = technic.sounds.node_sound_stone_defaults(), + drop = "technic:uranium_lump", +}) + +minetest.register_node(":technic:mineral_chromium", { + description = S("Chromium Ore"), + tiles = {"default_stone.png^technic_mineral_chromium.png"}, + is_ground_content = true, + groups = {cracky=3, pickaxey=1}, + _mcl_hardness = 0.8, + _mcl_blast_resistance = 1, + sounds = technic.sounds.node_sound_stone_defaults(), + drop = "technic:chromium_lump", +}) + +minetest.register_node(":technic:mineral_zinc", { + description = S("Zinc Ore"), + tiles = {"default_stone.png^technic_mineral_zinc.png"}, + is_ground_content = true, + groups = {cracky=3, pickaxey=1}, + _mcl_hardness = 0.8, + _mcl_blast_resistance = 1, + sounds = technic.sounds.node_sound_stone_defaults(), + drop = "technic:zinc_lump", +}) + +minetest.register_node(":technic:mineral_lead", { + description = S("Lead Ore"), + tiles = {"default_stone.png^technic_mineral_lead.png"}, + is_ground_content = true, + groups = {cracky=3, pickaxey=1}, + _mcl_hardness = 0.8, + _mcl_blast_resistance = 1, + sounds = technic.sounds.node_sound_stone_defaults(), + drop = "technic:lead_lump", +}) + +minetest.register_node(":technic:mineral_sulfur", { + description = S("Sulfur Ore"), + tiles = {"default_stone.png^technic_mineral_sulfur.png"}, + is_ground_content = true, + groups = {cracky=3, pickaxey=1}, + _mcl_hardness = 0.8, + _mcl_blast_resistance = 1, + sounds = technic.sounds.node_sound_stone_defaults(), + drop = "technic:sulfur_lump", +}) + +if has_mcl then + minetest.register_alias("technic:granite", "mcl_core:granite") + minetest.register_alias("technic:granite_bricks", "mcl_core:granite_smooth") +else + minetest.register_node(":technic:granite", { + description = S("Granite"), + tiles = {"technic_granite.png"}, + is_ground_content = true, + groups = {cracky=1}, + sounds = technic.sounds.node_sound_stone_defaults(), + }) + + minetest.register_node(":technic:granite_bricks", { + description = S("Granite Bricks"), + tiles = {"technic_granite_bricks.png"}, + is_ground_content = false, + groups = {cracky=1}, + sounds = technic.sounds.node_sound_stone_defaults(), + }) +end + +if minetest.get_modpath("underch") then + minetest.register_alias("technic:marble", "underch:marble") + minetest.register_alias("technic:marble_bricks", "underch:marble_brick") +else + minetest.register_node(":technic:marble", { + description = S("Marble"), + tiles = {"technic_marble.png"}, + is_ground_content = true, + groups = {cracky=3, marble=1, pickaxey=1}, + _mcl_hardness = 0.8, + _mcl_blast_resistance = 1, + sounds = technic.sounds.node_sound_stone_defaults(), + }) + + minetest.register_node(":technic:marble_bricks", { + description = S("Marble Bricks"), + tiles = {"technic_marble_bricks.png"}, + is_ground_content = false, + groups = {cracky=3, pickaxey=1}, + _mcl_hardness = 0.8, + _mcl_blast_resistance = 1, + sounds = technic.sounds.node_sound_stone_defaults(), + }) +end + +minetest.register_node(":technic:uranium_block", { + description = S("Uranium Block"), + tiles = {"technic_uranium_block.png"}, + is_ground_content = false, + groups = {uranium_block=1, cracky=1, level=has_mcl and 0 or 2, radioactive=2, pickaxey=4}, + _mcl_hardness = 1, + _mcl_blast_resistance = 1, + sounds = technic.sounds.node_sound_stone_defaults() +}) + +minetest.register_node(":technic:chromium_block", { + description = S("Chromium Block"), + tiles = {"technic_chromium_block.png"}, + is_ground_content = false, + groups = {cracky=1, level=has_mcl and 0 or 2, pickaxey=4}, + _mcl_hardness = 1, + _mcl_blast_resistance = 1, + sounds = technic.sounds.node_sound_stone_defaults() +}) + +minetest.register_node(":technic:zinc_block", { + description = S("Zinc Block"), + tiles = {"technic_zinc_block.png"}, + is_ground_content = false, + groups = {cracky=1, level=has_mcl and 0 or 2, pickaxey=4}, + _mcl_hardness = 1, + _mcl_blast_resistance = 1, + sounds = technic.sounds.node_sound_stone_defaults() +}) + +minetest.register_node(":technic:lead_block", { + description = S("Lead Block"), + tiles = {"technic_lead_block.png"}, + is_ground_content = false, + groups = {cracky=1, level=has_mcl and 0 or 2, pickaxey=4}, + _mcl_hardness = 1, + _mcl_blast_resistance = 1, + sounds = technic.sounds.node_sound_stone_defaults() +}) + +minetest.register_node(":technic:cast_iron_block", { + description = S("Cast Iron Block"), + tiles = {"technic_cast_iron_block.png"}, + is_ground_content = false, + groups = {cracky=1, level=has_mcl and 0 or 2, pickaxey=4}, + _mcl_hardness = 1, + _mcl_blast_resistance = 1, + sounds = technic.sounds.node_sound_stone_defaults() +}) + +minetest.register_node(":technic:carbon_steel_block", { + description = S("Carbon Steel Block"), + tiles = {"technic_carbon_steel_block.png"}, + is_ground_content = false, + groups = {cracky=1, level=has_mcl and 0 or 2, pickaxey=4}, + _mcl_hardness = 1, + _mcl_blast_resistance = 1, + sounds = technic.sounds.node_sound_stone_defaults() +}) + +minetest.register_node(":technic:stainless_steel_block", { + description = S("Stainless Steel Block"), + tiles = {"technic_stainless_steel_block.png"}, + is_ground_content = false, + groups = {cracky=1, level=has_mcl and 0 or 2, pickaxey=4}, + _mcl_hardness = 1, + _mcl_blast_resistance = 1, + sounds = technic.sounds.node_sound_stone_defaults() +}) + +minetest.register_node(":technic:sulfur_block", { + description = S("Sulfur Block"), + tiles = {"technic_sulfur_block.png"}, + is_ground_content = false, + groups = {cracky = 3, pickaxey=1, handy=1}, + _mcl_hardness = 1, + _mcl_blast_resistance = 1, + sounds = technic.sounds.node_sound_stone_defaults() +}) + +minetest.register_node(":technic:blast_resistant_concrete", { + description = S("Blast-resistant Concrete Block"), + tiles = {"technic_blast_resistant_concrete_block.png"}, + is_ground_content = false, + groups = {cracky = 1, level = has_mcl and 0 or 3, concrete = 1, pickaxey=5}, + _mcl_hardness = 5, + _mcl_blast_resistance = 9, + sounds = technic.sounds.node_sound_stone_defaults(), + on_blast = function(pos, intensity) + if intensity > 9 then + minetest.remove_node(pos) + return {"technic:blast_resistant_concrete"} + end + end +}) diff --git a/mods/technic_plus_beta/technic_worldgen/oregen.lua b/mods/technic_plus_beta/technic_worldgen/oregen.lua new file mode 100644 index 00000000..2f78ba30 --- /dev/null +++ b/mods/technic_plus_beta/technic_worldgen/oregen.lua @@ -0,0 +1,248 @@ + +local has_mcl = minetest.get_modpath("mcl_core") +local stones = {"default:stone", "mcl_core:stone", "mcl_deepslate:deepslate"} + +local uranium_params = { + offset = 0, + scale = 1, + spread = {x = 100, y = 100, z = 100}, + seed = 420, + octaves = 3, + persist = 0.7 +} +local uranium_threshold = 0.55 + +local chromium_params = { + offset = 0, + scale = 1, + spread = {x = 100, y = 100, z = 100}, + seed = 421, + octaves = 3, + persist = 0.7 +} +local chromium_threshold = 0.55 + +local zinc_params = { + offset = 0, + scale = 1, + spread = {x = 100, y = 100, z = 100}, + seed = 422, + octaves = 3, + persist = 0.7 +} +local zinc_threshold = 0.5 + +local lead_params = { + offset = 0, + scale = 1, + spread = {x = 100, y = 100, z = 100}, + seed = 423, + octaves = 3, + persist = 0.7 +} +local lead_threshold = 0.3 + +minetest.register_ore({ + ore_type = "scatter", + ore = "technic:mineral_uranium", + wherein = stones, + clust_scarcity = 8*8*8, + clust_num_ores = 4, + clust_size = 3, + y_min = has_mcl and mcl_vars.mg_overworld_min or -300, + y_max = has_mcl and mcl_worlds.layer_to_y(80) or -80, + noise_params = uranium_params, + noise_threshold = uranium_threshold, +}) + +minetest.register_ore({ + ore_type = "scatter", + ore = "technic:mineral_chromium", + wherein = stones, + clust_scarcity = 8*8*8, + clust_num_ores = 2, + clust_size = 3, + y_min = has_mcl and mcl_vars.mg_overworld_min or -200, + y_max = has_mcl and mcl_worlds.layer_to_y(80) or -100, + noise_params = chromium_params, + noise_threshold = chromium_threshold, +}) + +minetest.register_ore({ + ore_type = "scatter", + ore = "technic:mineral_chromium", + wherein = stones, + clust_scarcity = 6*6*6, + clust_num_ores = 2, + clust_size = 3, + y_min = has_mcl and mcl_vars.mg_overworld_min or -31000, + y_max = has_mcl and mcl_worlds.layer_to_y(80) or -200, + flags = "absheight", + noise_params = chromium_params, + noise_threshold = chromium_threshold, +}) + +minetest.register_ore({ + ore_type = "scatter", + ore = "technic:mineral_zinc", + wherein = stones, + clust_scarcity = 8*8*8, + clust_num_ores = 5, + clust_size = 7, + y_min = -32, + y_max = 2, + noise_params = zinc_params, + noise_threshold = zinc_threshold, +}) + +minetest.register_ore({ + ore_type = "scatter", + ore = "technic:mineral_zinc", + wherein = stones, + clust_scarcity = 6*6*6, + clust_num_ores = 4, + clust_size = 3, + y_min = has_mcl and mcl_vars.mg_overworld_min or -31000, + y_max = -32, + flags = "absheight", + noise_params = zinc_params, + noise_threshold = zinc_threshold, +}) + +minetest.register_ore({ + ore_type = "scatter", + ore = "technic:mineral_lead", + wherein = stones, + clust_scarcity = 9*9*9, + clust_num_ores = 5, + clust_size = 3, + y_min = -16, + y_max = 16, + noise_params = lead_params, + noise_threshold = lead_threshold, +}) + +minetest.register_ore({ + ore_type = "scatter", + ore = "technic:mineral_lead", + wherein = stones, + clust_scarcity = 8*8*8, + clust_num_ores = 5, + clust_size = 3, + y_min = has_mcl and mcl_vars.mg_overworld_min or -128, + y_max = -16, + noise_params = lead_params, + noise_threshold = lead_threshold, +}) + +minetest.register_ore({ + ore_type = "scatter", + ore = "technic:mineral_lead", + wherein = stones, + clust_scarcity = 6*6*6, + clust_num_ores = 5, + clust_size = 3, + y_min = has_mcl and mcl_vars.mg_overworld_min or -31000, + y_max = has_mcl and mcl_worlds.layer_to_y(80) or -128, + flags = "absheight", + noise_params = lead_params, + noise_threshold = lead_threshold, +}) + +-- Sulfur +local sulfur_buf = {} +local sulfur_noise + +minetest.register_on_generated(function(minp, maxp) + local vm, emin, emax = minetest.get_mapgen_object("voxelmanip") + local a = VoxelArea:new({MinEdge=emin, MaxEdge=emax}) + vm:get_data(sulfur_buf) + local pr = PseudoRandom(17 * minp.x + 42 * minp.y + 101 * minp.z) + sulfur_noise = sulfur_noise or minetest.get_perlin(9876, 3, 0.5, 100) + + local lava = has_mcl and "mcl_core:lava_source" or "default:lava_source" + local lava_flowing = has_mcl and "mcl_core:lava_flowing" or "default:lava_flowing" + local stone = has_mcl and "mcl_core:stone" or "default:stone" + local c_lava = minetest.get_content_id(lava) + local c_lava_flowing = minetest.get_content_id(lava_flowing) + local c_stone = minetest.get_content_id(stone) + local c_sulfur = minetest.get_content_id("technic:mineral_sulfur") + + local grid_size = 5 + for x = minp.x + math.floor(grid_size / 2), maxp.x, grid_size do + for y = minp.y + math.floor(grid_size / 2), maxp.y, grid_size do + for z = minp.z + math.floor(grid_size / 2), maxp.z, grid_size do + local c = sulfur_buf[a:index(x, y, z)] + if (c == c_lava or c == c_lava_flowing) + and sulfur_noise:get3d({x = x, y = z, z = z}) >= 0.4 then + for i in a:iter( + math.max(minp.x, x - grid_size), + math.max(minp.y, y - grid_size), + math.max(minp.z, z - grid_size), + math.min(maxp.x, x + grid_size), + math.min(maxp.y, y + grid_size), + math.min(maxp.z, z + grid_size) + ) do + if sulfur_buf[i] == c_stone and pr:next(1, 10) <= 7 then + sulfur_buf[i] = c_sulfur + end + end + end + end + end + end + + vm:set_data(sulfur_buf) + vm:write_to_map(sulfur_buf) +end) + +-- in MCL sulfur is generated in the nether +if has_mcl then + minetest.register_ore({ + ore_type = "scatter", + ore = "technic:mineral_sulfur", + wherein = {"mcl_nether:netherrack", "mcl_blackstone:blackstone"}, + clust_scarcity = 830, + clust_num_ores = 5, + clust_size = 3, + y_min = mcl_vars.mg_nether_min, + y_max = mcl_vars.mg_nether_max, + }) +end + +if technic.config:get_bool("enable_marble_generation") + and not minetest.get_modpath("underch") then + minetest.register_ore({ + ore_type = "sheet", + ore = "technic:marble", + wherein = stones, + clust_scarcity = 1, + clust_num_ores = 1, + clust_size = 3, + y_min = has_mcl and mcl_vars.mg_overworld_min or -31000, + y_max = has_mcl and mcl_worlds.layer_to_y(80) or -50, + noise_threshold = 0.4, + noise_params = { + offset = 0, scale = 15, spread = {x = 150, y = 150, z = 150}, + seed = 23, octaves = 3, persist = 0.70 + } + }) +end + +if technic.config:get_bool("enable_granite_generation") and not has_mcl then + minetest.register_ore({ + ore_type = "sheet", + ore = "technic:granite", + wherein = stones, + clust_scarcity = 1, + clust_num_ores = 1, + clust_size = 4, + y_min = -31000, + y_max = -150, + noise_threshold = 0.4, + noise_params = { + offset = 0, scale = 15, spread = {x = 130, y = 130, z = 130}, + seed = 24, octaves = 3, persist = 0.70 + } + }) +end diff --git a/mods/technic_plus_beta/technic_worldgen/overrides.lua b/mods/technic_plus_beta/technic_worldgen/overrides.lua new file mode 100644 index 00000000..b6a942d8 --- /dev/null +++ b/mods/technic_plus_beta/technic_worldgen/overrides.lua @@ -0,0 +1,83 @@ + +local S = minetest.get_translator("technic_worldgen") + +minetest.override_item("default:steel_ingot", { + description = S("Wrought Iron Ingot"), + -- Make the color of the ingot a bit darker to separate it better from tin + inventory_image = "technic_wrought_iron_ingot.png^[multiply:#bbbbbbff", +}) + +-- Override description and textures of "steel" items + +local excluded_words = { + "[Cc]arbon", + "[Ss]tainless", + "[Ff]lint", +} + +local function is_steel(name, desc) + name = name:gsub(".+:(.+)", "%1") -- Ignore mod name + if name:match("[Ss]teel") or desc:match("[Ss]teel") then + for _, word in pairs(excluded_words) do + if name:match(word) or desc:match(word) then + return false + end + end + return true + end +end + +local function edit_desc(desc, old, new) + desc = desc:gsub(old, new) + desc = desc:gsub(old:lower(), new:lower()) + return desc +end + +local function replace_texture(tile) + local new_tile + if type(tile) == "string" then + new_tile = tile:gsub("default_steel_block.png", "technic_wrought_iron_block.png") + else + new_tile = {} + for k, v in pairs(tile) do + if k == "name" then + new_tile[k] = v:gsub("default_steel_block.png", "technic_wrought_iron_block.png") + else + new_tile[k] = v + end + end + end + return new_tile +end + +local function do_override(name, def) + local desc = def.description + if not is_steel(name, desc) then + return + end + local override = {} + if name:find("steelblock") then + override.description = edit_desc(desc, "Steel", "Wrought Iron") + else + override.description = edit_desc(desc, "Steel", "Iron") + end + if def.tiles then + override.tiles = {} + for _, tile in ipairs(def.tiles) do + table.insert(override.tiles, replace_texture(tile)) + end + end + if def.inventory_image then + override.inventory_image = replace_texture(def.inventory_image) + end + if def.wield_image then + override.wield_image = replace_texture(def.wield_image) + end + minetest.override_item(name, override) +end + +minetest.register_on_mods_loaded(function() + for name, def in pairs(minetest.registered_items) do + do_override(name, def) + end +end) diff --git a/mods/technic_plus_beta/technic_worldgen/rubber.lua b/mods/technic_plus_beta/technic_worldgen/rubber.lua new file mode 100644 index 00000000..5917c898 --- /dev/null +++ b/mods/technic_plus_beta/technic_worldgen/rubber.lua @@ -0,0 +1,116 @@ +-- Code of rubber tree by PilzAdam + +local S = minetest.get_translator("technic_worldgen") + +local has_mcl = minetest.get_modpath("mcl_core") + +minetest.register_node(":moretrees:rubber_tree_sapling", { + description = S("Rubber Tree Sapling"), + drawtype = "plantlike", + tiles = {"technic_rubber_sapling.png"}, + inventory_image = "technic_rubber_sapling.png", + wield_image = "technic_rubber_sapling.png", + paramtype = "light", + walkable = false, + groups = {dig_immediate=3, flammable=2, sapling=1}, + sounds = technic.sounds.node_sound_defaults(), +}) + +minetest.register_craft({ + type = "fuel", + recipe = "moretrees:rubber_tree_sapling", + burntime = 10 +}) + +minetest.register_node(":moretrees:rubber_tree_trunk", { + description = S("Rubber Tree"), + tiles = {"default_tree_top.png", "default_tree_top.png", + "technic_rubber_tree_full.png"}, + groups = {tree=1, snappy=1, choppy=2, oddly_breakable_by_hand=1, + flammable=2, axey=1, handy=1}, + _mcl_blast_resistance = 2, + _mcl_hardness = 2, + sounds = technic.sounds.node_sound_wood_defaults(), +}) + +minetest.register_node(":moretrees:rubber_tree_trunk_empty", { + description = S("Rubber Tree"), + tiles = {"default_tree_top.png", "default_tree_top.png", + "technic_rubber_tree_empty.png"}, + groups = {tree=1, snappy=1, choppy=2, oddly_breakable_by_hand=1, + flammable=2, not_in_creative_inventory=1, axey=1, handy=1}, + _mcl_blast_resistance = 2, + _mcl_hardness = 2, + sounds = technic.sounds.node_sound_wood_defaults(), +}) + +local leaves_drop = { + max_items = 1, + items = { + {items = {"moretrees:rubber_tree_sapling"}, rarity = 20}, + {items = {"moretrees:rubber_tree_leaves"}} + } +} + +if has_mcl then + leaves_drop.items = { + {items = {"moretrees:rubber_tree_sapling"}, rarity = 20}, + {items = {"mcl_core:stick 1"}, rarity = 30}, + {items = {"mcl_core:stick 2"}, rarity = 40}, + {items = {"mcl_core:apple"}, rarity = 50} + } +end + +minetest.register_node(":moretrees:rubber_tree_leaves", { + drawtype = "allfaces_optional", + description = S("Rubber Tree Leaves"), + tiles = {"technic_rubber_leaves.png"}, + paramtype = "light", + groups = {snappy=3, leafdecay=3, flammable=2, leaves=1, swordy=1, handy=1}, + _mcl_blast_resistance = 0.2, + _mcl_hardness = 0.2, + _mcl_silk_touch_drop = true, + drop = leaves_drop, + sounds = technic.sounds.node_sound_leaves_defaults(), +}) + +technic.rubber_tree_model={ + axiom = "FFFFA", + rules_a = "[&FFBFA]////[&BFFFA]////[&FBFFA]", + rules_b = "[&FFA]////[&FFA]////[&FFA]", + trunk = "moretrees:rubber_tree_trunk", + leaves = "moretrees:rubber_tree_leaves", + angle = 35, + iterations = 3, + random_level = 1, + trunk_type = "double", + thin_branches = true +} + +minetest.register_abm({ + nodenames = {"moretrees:rubber_tree_sapling"}, + label = "Worldgen: grow rubber tree sapling", + interval = 60, + chance = 20, + action = function(pos, node) + minetest.remove_node(pos) + minetest.spawn_tree(pos, technic.rubber_tree_model) + end +}) + +if technic.config:get_bool("enable_rubber_tree_generation") then + minetest.register_on_generated(function(minp, maxp, blockseed) + if math.random(1, 100) > 5 then + return + end + local tmp = { + x = (maxp.x - minp.x) / 2 + minp.x, + y = (maxp.y - minp.y) / 2 + minp.y, + z = (maxp.z - minp.z) / 2 + minp.z} + local pos = minetest.find_node_near(tmp, maxp.x - minp.x, + {has_mcl and "mcl_core:dirt_with_grass" or "default:dirt_with_grass"}) + if pos ~= nil then + minetest.spawn_tree({x=pos.x, y=pos.y+1, z=pos.z}, technic.rubber_tree_model) + end + end) +end diff --git a/mods/technic_plus_beta/technic_worldgen/textures/technic_blast_resistant_concrete_block.png b/mods/technic_plus_beta/technic_worldgen/textures/technic_blast_resistant_concrete_block.png new file mode 100644 index 00000000..4136c7f2 Binary files /dev/null and b/mods/technic_plus_beta/technic_worldgen/textures/technic_blast_resistant_concrete_block.png differ diff --git a/mods/technic_plus_beta/technic_worldgen/textures/technic_carbon_steel_block.png b/mods/technic_plus_beta/technic_worldgen/textures/technic_carbon_steel_block.png new file mode 100644 index 00000000..1841f779 Binary files /dev/null and b/mods/technic_plus_beta/technic_worldgen/textures/technic_carbon_steel_block.png differ diff --git a/mods/technic_plus_beta/technic_worldgen/textures/technic_carbon_steel_ingot.png b/mods/technic_plus_beta/technic_worldgen/textures/technic_carbon_steel_ingot.png new file mode 100644 index 00000000..ea260106 Binary files /dev/null and b/mods/technic_plus_beta/technic_worldgen/textures/technic_carbon_steel_ingot.png differ diff --git a/mods/technic_plus_beta/technic_worldgen/textures/technic_cast_iron_block.png b/mods/technic_plus_beta/technic_worldgen/textures/technic_cast_iron_block.png new file mode 100644 index 00000000..cc980012 Binary files /dev/null and b/mods/technic_plus_beta/technic_worldgen/textures/technic_cast_iron_block.png differ diff --git a/mods/technic_plus_beta/technic_worldgen/textures/technic_cast_iron_ingot.png b/mods/technic_plus_beta/technic_worldgen/textures/technic_cast_iron_ingot.png new file mode 100644 index 00000000..c18ee71f Binary files /dev/null and b/mods/technic_plus_beta/technic_worldgen/textures/technic_cast_iron_ingot.png differ diff --git a/mods/technic_plus_beta/technic_worldgen/textures/technic_chromium_block.png b/mods/technic_plus_beta/technic_worldgen/textures/technic_chromium_block.png new file mode 100644 index 00000000..f5cdfe95 Binary files /dev/null and b/mods/technic_plus_beta/technic_worldgen/textures/technic_chromium_block.png differ diff --git a/mods/technic_plus_beta/technic_worldgen/textures/technic_chromium_ingot.png b/mods/technic_plus_beta/technic_worldgen/textures/technic_chromium_ingot.png new file mode 100644 index 00000000..92b279c1 Binary files /dev/null and b/mods/technic_plus_beta/technic_worldgen/textures/technic_chromium_ingot.png differ diff --git a/mods/technic_plus_beta/technic_worldgen/textures/technic_chromium_lump.png b/mods/technic_plus_beta/technic_worldgen/textures/technic_chromium_lump.png new file mode 100644 index 00000000..7abf0e64 Binary files /dev/null and b/mods/technic_plus_beta/technic_worldgen/textures/technic_chromium_lump.png differ diff --git a/mods/technic_plus_beta/technic_worldgen/textures/technic_granite.png b/mods/technic_plus_beta/technic_worldgen/textures/technic_granite.png new file mode 100644 index 00000000..88a7b329 Binary files /dev/null and b/mods/technic_plus_beta/technic_worldgen/textures/technic_granite.png differ diff --git a/mods/technic_plus_beta/technic_worldgen/textures/technic_granite_bricks.png b/mods/technic_plus_beta/technic_worldgen/textures/technic_granite_bricks.png new file mode 100644 index 00000000..1635f6e5 Binary files /dev/null and b/mods/technic_plus_beta/technic_worldgen/textures/technic_granite_bricks.png differ diff --git a/mods/technic_plus_beta/technic_worldgen/textures/technic_lead_block.png b/mods/technic_plus_beta/technic_worldgen/textures/technic_lead_block.png new file mode 100644 index 00000000..11da56a6 Binary files /dev/null and b/mods/technic_plus_beta/technic_worldgen/textures/technic_lead_block.png differ diff --git a/mods/technic_plus_beta/technic_worldgen/textures/technic_lead_ingot.png b/mods/technic_plus_beta/technic_worldgen/textures/technic_lead_ingot.png new file mode 100644 index 00000000..32ac4965 Binary files /dev/null and b/mods/technic_plus_beta/technic_worldgen/textures/technic_lead_ingot.png differ diff --git a/mods/technic_plus_beta/technic_worldgen/textures/technic_lead_lump.png b/mods/technic_plus_beta/technic_worldgen/textures/technic_lead_lump.png new file mode 100644 index 00000000..7e9482d5 Binary files /dev/null and b/mods/technic_plus_beta/technic_worldgen/textures/technic_lead_lump.png differ diff --git a/mods/technic_plus_beta/technic_worldgen/textures/technic_marble.png b/mods/technic_plus_beta/technic_worldgen/textures/technic_marble.png new file mode 100644 index 00000000..3c3913d4 Binary files /dev/null and b/mods/technic_plus_beta/technic_worldgen/textures/technic_marble.png differ diff --git a/mods/technic_plus_beta/technic_worldgen/textures/technic_marble_bricks.png b/mods/technic_plus_beta/technic_worldgen/textures/technic_marble_bricks.png new file mode 100644 index 00000000..7db142f5 Binary files /dev/null and b/mods/technic_plus_beta/technic_worldgen/textures/technic_marble_bricks.png differ diff --git a/mods/technic_plus_beta/technic_worldgen/textures/technic_mineral_chromium.png b/mods/technic_plus_beta/technic_worldgen/textures/technic_mineral_chromium.png new file mode 100644 index 00000000..5f7cfc07 Binary files /dev/null and b/mods/technic_plus_beta/technic_worldgen/textures/technic_mineral_chromium.png differ diff --git a/mods/technic_plus_beta/technic_worldgen/textures/technic_mineral_lead.png b/mods/technic_plus_beta/technic_worldgen/textures/technic_mineral_lead.png new file mode 100644 index 00000000..01515774 Binary files /dev/null and b/mods/technic_plus_beta/technic_worldgen/textures/technic_mineral_lead.png differ diff --git a/mods/technic_plus_beta/technic_worldgen/textures/technic_mineral_sulfur.png b/mods/technic_plus_beta/technic_worldgen/textures/technic_mineral_sulfur.png new file mode 100644 index 00000000..28445b35 Binary files /dev/null and b/mods/technic_plus_beta/technic_worldgen/textures/technic_mineral_sulfur.png differ diff --git a/mods/technic_plus_beta/technic_worldgen/textures/technic_mineral_uranium.png b/mods/technic_plus_beta/technic_worldgen/textures/technic_mineral_uranium.png new file mode 100644 index 00000000..4258bbc5 Binary files /dev/null and b/mods/technic_plus_beta/technic_worldgen/textures/technic_mineral_uranium.png differ diff --git a/mods/technic_plus_beta/technic_worldgen/textures/technic_mineral_zinc.png b/mods/technic_plus_beta/technic_worldgen/textures/technic_mineral_zinc.png new file mode 100644 index 00000000..f8e042a7 Binary files /dev/null and b/mods/technic_plus_beta/technic_worldgen/textures/technic_mineral_zinc.png differ diff --git a/mods/technic_plus_beta/technic_worldgen/textures/technic_rubber_leaves.png b/mods/technic_plus_beta/technic_worldgen/textures/technic_rubber_leaves.png new file mode 100644 index 00000000..ffd63f5f Binary files /dev/null and b/mods/technic_plus_beta/technic_worldgen/textures/technic_rubber_leaves.png differ diff --git a/mods/technic_plus_beta/technic_worldgen/textures/technic_rubber_sapling.png b/mods/technic_plus_beta/technic_worldgen/textures/technic_rubber_sapling.png new file mode 100644 index 00000000..1f59d388 Binary files /dev/null and b/mods/technic_plus_beta/technic_worldgen/textures/technic_rubber_sapling.png differ diff --git a/mods/technic_plus_beta/technic_worldgen/textures/technic_rubber_tree_empty.png b/mods/technic_plus_beta/technic_worldgen/textures/technic_rubber_tree_empty.png new file mode 100644 index 00000000..dc36fa56 Binary files /dev/null and b/mods/technic_plus_beta/technic_worldgen/textures/technic_rubber_tree_empty.png differ diff --git a/mods/technic_plus_beta/technic_worldgen/textures/technic_rubber_tree_full.png b/mods/technic_plus_beta/technic_worldgen/textures/technic_rubber_tree_full.png new file mode 100644 index 00000000..def5cf62 Binary files /dev/null and b/mods/technic_plus_beta/technic_worldgen/textures/technic_rubber_tree_full.png differ diff --git a/mods/technic_plus_beta/technic_worldgen/textures/technic_stainless_steel_block.png b/mods/technic_plus_beta/technic_worldgen/textures/technic_stainless_steel_block.png new file mode 100644 index 00000000..e1c58658 Binary files /dev/null and b/mods/technic_plus_beta/technic_worldgen/textures/technic_stainless_steel_block.png differ diff --git a/mods/technic_plus_beta/technic_worldgen/textures/technic_stainless_steel_ingot.png b/mods/technic_plus_beta/technic_worldgen/textures/technic_stainless_steel_ingot.png new file mode 100644 index 00000000..89a0ff4e Binary files /dev/null and b/mods/technic_plus_beta/technic_worldgen/textures/technic_stainless_steel_ingot.png differ diff --git a/mods/technic_plus_beta/technic_worldgen/textures/technic_sulfur_block.png b/mods/technic_plus_beta/technic_worldgen/textures/technic_sulfur_block.png new file mode 100644 index 00000000..e3d85b95 Binary files /dev/null and b/mods/technic_plus_beta/technic_worldgen/textures/technic_sulfur_block.png differ diff --git a/mods/technic_plus_beta/technic_worldgen/textures/technic_sulfur_lump.png b/mods/technic_plus_beta/technic_worldgen/textures/technic_sulfur_lump.png new file mode 100644 index 00000000..4a7b2521 Binary files /dev/null and b/mods/technic_plus_beta/technic_worldgen/textures/technic_sulfur_lump.png differ diff --git a/mods/technic_plus_beta/technic_worldgen/textures/technic_uranium_block.png b/mods/technic_plus_beta/technic_worldgen/textures/technic_uranium_block.png new file mode 100644 index 00000000..02f2b03f Binary files /dev/null and b/mods/technic_plus_beta/technic_worldgen/textures/technic_uranium_block.png differ diff --git a/mods/technic_plus_beta/technic_worldgen/textures/technic_uranium_ingot.png b/mods/technic_plus_beta/technic_worldgen/textures/technic_uranium_ingot.png new file mode 100644 index 00000000..02b2d704 Binary files /dev/null and b/mods/technic_plus_beta/technic_worldgen/textures/technic_uranium_ingot.png differ diff --git a/mods/technic_plus_beta/technic_worldgen/textures/technic_uranium_lump.png b/mods/technic_plus_beta/technic_worldgen/textures/technic_uranium_lump.png new file mode 100644 index 00000000..c0efc194 Binary files /dev/null and b/mods/technic_plus_beta/technic_worldgen/textures/technic_uranium_lump.png differ diff --git a/mods/technic_plus_beta/technic_worldgen/textures/technic_wrought_iron_block.png b/mods/technic_plus_beta/technic_worldgen/textures/technic_wrought_iron_block.png new file mode 100644 index 00000000..ccb6e96c Binary files /dev/null and b/mods/technic_plus_beta/technic_worldgen/textures/technic_wrought_iron_block.png differ diff --git a/mods/technic_plus_beta/technic_worldgen/textures/technic_wrought_iron_ingot.png b/mods/technic_plus_beta/technic_worldgen/textures/technic_wrought_iron_ingot.png new file mode 100644 index 00000000..b8dd3860 Binary files /dev/null and b/mods/technic_plus_beta/technic_worldgen/textures/technic_wrought_iron_ingot.png differ diff --git a/mods/technic_plus_beta/technic_worldgen/textures/technic_zinc_block.png b/mods/technic_plus_beta/technic_worldgen/textures/technic_zinc_block.png new file mode 100644 index 00000000..19ec8f12 Binary files /dev/null and b/mods/technic_plus_beta/technic_worldgen/textures/technic_zinc_block.png differ diff --git a/mods/technic_plus_beta/technic_worldgen/textures/technic_zinc_ingot.png b/mods/technic_plus_beta/technic_worldgen/textures/technic_zinc_ingot.png new file mode 100644 index 00000000..9585447c Binary files /dev/null and b/mods/technic_plus_beta/technic_worldgen/textures/technic_zinc_ingot.png differ diff --git a/mods/technic_plus_beta/technic_worldgen/textures/technic_zinc_lump.png b/mods/technic_plus_beta/technic_worldgen/textures/technic_zinc_lump.png new file mode 100644 index 00000000..f6c4f782 Binary files /dev/null and b/mods/technic_plus_beta/technic_worldgen/textures/technic_zinc_lump.png differ diff --git a/mods/xcompat/.github/workflows/farlands_reloaded.yml b/mods/xcompat/.github/workflows/farlands_reloaded.yml new file mode 100644 index 00000000..176f2d9a --- /dev/null +++ b/mods/xcompat/.github/workflows/farlands_reloaded.yml @@ -0,0 +1,23 @@ +name: farlands_reloaded +on: [push, pull_request] +jobs: + test: + runs-on: ubuntu-latest + timeout-minutes: 10 + steps: + - name: Checkout + uses: actions/checkout@main + - uses: buckaroobanzay/mtt@main + with: + modname: xcompat + git_game_repo: https://github.com/TerraQuest-Studios/farlands_reloaded + git_dependencies: | + https://github.com/mt-mods/unifieddyes + https://github.com/mt-mods/basic_materials + https://github.com/OgelGames/fakelib + https://github.com/mt-mods/pipeworks + https://github.com/mt-mods/steel + https://github.com/mt-mods/display_modpack + https://github.com/mt-mods/homedecor_modpack + additional_config: | + mtt_nodelist = farlands_reloaded.txt \ No newline at end of file diff --git a/mods/xcompat/.github/workflows/hades_revisited.yml b/mods/xcompat/.github/workflows/hades_revisited.yml new file mode 100644 index 00000000..650e49b5 --- /dev/null +++ b/mods/xcompat/.github/workflows/hades_revisited.yml @@ -0,0 +1,23 @@ +name: hades_revisited +on: [push, pull_request] +jobs: + test: + runs-on: ubuntu-latest + timeout-minutes: 10 + steps: + - name: Checkout + uses: actions/checkout@main + - uses: buckaroobanzay/mtt@main + with: + modname: xcompat + git_game_repo: https://codeberg.org/Wuzzy/Hades_Revisited + git_dependencies: | + https://github.com/mt-mods/unifieddyes + https://github.com/mt-mods/basic_materials + https://github.com/OgelGames/fakelib + https://github.com/mt-mods/pipeworks + https://github.com/mt-mods/steel + https://github.com/mt-mods/display_modpack + https://github.com/mt-mods/homedecor_modpack + additional_config: | + mtt_nodelist = hades_revisited.txt \ No newline at end of file diff --git a/mods/xcompat/.github/workflows/luacheck.yml b/mods/xcompat/.github/workflows/luacheck.yml new file mode 100644 index 00000000..18088bce --- /dev/null +++ b/mods/xcompat/.github/workflows/luacheck.yml @@ -0,0 +1,10 @@ +name: luacheck +on: [push, pull_request] +jobs: + luacheck: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@main + - name: Luacheck + uses: lunarmodules/luacheck@master diff --git a/mods/xcompat/.github/workflows/mineclonia.yml b/mods/xcompat/.github/workflows/mineclonia.yml new file mode 100644 index 00000000..d9ef8207 --- /dev/null +++ b/mods/xcompat/.github/workflows/mineclonia.yml @@ -0,0 +1,23 @@ +name: mineclonia +on: [push, pull_request] +jobs: + test: + runs-on: ubuntu-latest + timeout-minutes: 10 + steps: + - name: Checkout + uses: actions/checkout@main + - uses: buckaroobanzay/mtt@main + with: + modname: xcompat + git_game_repo: https://codeberg.org/mineclonia/mineclonia + git_dependencies: | + https://github.com/mt-mods/unifieddyes + https://github.com/mt-mods/basic_materials + https://github.com/OgelGames/fakelib + https://github.com/mt-mods/pipeworks + https://github.com/mt-mods/steel + https://github.com/mt-mods/display_modpack + https://github.com/mt-mods/homedecor_modpack + additional_config: | + mtt_nodelist = mineclonia.txt \ No newline at end of file diff --git a/mods/xcompat/.github/workflows/minetest_game.yml b/mods/xcompat/.github/workflows/minetest_game.yml new file mode 100644 index 00000000..6b887cda --- /dev/null +++ b/mods/xcompat/.github/workflows/minetest_game.yml @@ -0,0 +1,23 @@ +name: minetest_game +on: [push, pull_request] +jobs: + test: + runs-on: ubuntu-latest + timeout-minutes: 10 + steps: + - name: Checkout + uses: actions/checkout@main + - uses: buckaroobanzay/mtt@main + with: + modname: xcompat + git_game_repo: https://github.com/minetest/minetest_game + git_dependencies: | + https://github.com/mt-mods/unifieddyes + https://github.com/mt-mods/basic_materials + https://github.com/OgelGames/fakelib + https://github.com/mt-mods/pipeworks + https://github.com/mt-mods/steel + https://github.com/mt-mods/display_modpack + https://github.com/mt-mods/homedecor_modpack + additional_config: | + mtt_nodelist = minetest.txt \ No newline at end of file diff --git a/mods/xcompat/.github/workflows/voxelibre.yml b/mods/xcompat/.github/workflows/voxelibre.yml new file mode 100644 index 00000000..9c2e93f5 --- /dev/null +++ b/mods/xcompat/.github/workflows/voxelibre.yml @@ -0,0 +1,23 @@ +name: voxelibre +on: [push, pull_request] +jobs: + test: + runs-on: ubuntu-latest + timeout-minutes: 10 + steps: + - name: Checkout + uses: actions/checkout@main + - uses: buckaroobanzay/mtt@main + with: + modname: xcompat + git_game_repo: https://git.minetest.land/VoxeLibre/VoxeLibre/ + git_dependencies: | + https://github.com/mt-mods/unifieddyes + https://github.com/mt-mods/basic_materials + https://github.com/OgelGames/fakelib + https://github.com/mt-mods/pipeworks + https://github.com/mt-mods/steel + https://github.com/mt-mods/display_modpack + https://github.com/mt-mods/homedecor_modpack + additional_config: | + mtt_nodelist = voxelibre.txt \ No newline at end of file diff --git a/mods/xcompat/.luacheckrc b/mods/xcompat/.luacheckrc new file mode 100644 index 00000000..e46563b5 --- /dev/null +++ b/mods/xcompat/.luacheckrc @@ -0,0 +1,21 @@ +globals = { + "minetest", + "xcompat", +} + +read_globals = { + "default", + "mcl_sounds", + "ks_sounds", + "nodes_nature", + "fl_stone", + "fl_topsoil", + "fl_trees", + "hades_sounds", + "rp_sounds", + "mtt", + "sounds", + "player_api", + "mcl_player", + "fl_player", +} diff --git a/mods/xcompat/LICENSE b/mods/xcompat/LICENSE new file mode 100644 index 00000000..b04a4864 --- /dev/null +++ b/mods/xcompat/LICENSE @@ -0,0 +1,19 @@ + +MIT Copyright 2021-2024 wsor4035 + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/mods/xcompat/README.md b/mods/xcompat/README.md new file mode 100644 index 00000000..e3d1e265 --- /dev/null +++ b/mods/xcompat/README.md @@ -0,0 +1,34 @@ +# XCompat + +[![luacheck](https://github.com/mt-mods/xcompat/actions/workflows/luacheck.yml/badge.svg?branch=master)](https://github.com/mt-mods/xcompat/actions/workflows/luacheck.yml) +[![ContentDB](https://content.minetest.net/packages/mt-mods/xcompat/shields/downloads/)](https://content.minetest.net/packages/mt-mods/xcompat/) + +Provides cross compatibility between games and mods for sounds and crafting materials. + +Thanks to: +* MisterE, OgelGames, and Blockhead for naming advice/suggestion. +* luk3yx, Blockhead, BuckarooBanzai for bouncing ideas on the concept of this mod. + +## Usage + +See the respective sub apis doc file in /doc for detailed documentation. + +## Directly supported games and mods + +| Games | Sounds | Materials | Textures | Player | +| ----------------- | --------- | --------- | --------- | ------ | +| Minetest Game | x | x | x | x | +| MineClone2 | x | x | | x | +| Mineclonia | x | x | | x | +| Hades Revisited | x | x | | | +| Farlands Reloaded | x | x | x | x | +| Exile | x | | | | +| KSurvive 2 | x | | | | +| Forgotten Lands | x | | | | + +For functions see /doc/functions.md for the specifics relating to the function + +**Mods** +* `basic_materials` +* `mesecons_materials` +* `moreores` diff --git a/mods/xcompat/doc/functions.md b/mods/xcompat/doc/functions.md new file mode 100644 index 00000000..fd4541a1 --- /dev/null +++ b/mods/xcompat/doc/functions.md @@ -0,0 +1,13 @@ +# Functions API + +## `can_interact_with_node(player, pos)` +returns `bool` + +checks for the ability to interact with a node via: +* if a player +* owner metadata key +* protection_bypass + +supports +* minetest game default if present +* else polyfill \ No newline at end of file diff --git a/mods/xcompat/doc/gameid.md b/mods/xcompat/doc/gameid.md new file mode 100644 index 00000000..a09f9be5 --- /dev/null +++ b/mods/xcompat/doc/gameid.md @@ -0,0 +1,12 @@ +# GameId API + +## minetest versions >= 5.7 + +simply returns `minetest.get_game_info().id` + +## minetest versions < 5.7 + +approximates the gameid value via a hardcoded table of gameid=>modname +and then checks via `minetest.get_modpath()`. If it fails, it falls +back to using `xcompat_unknown_gameid` as the id. See the chart in the +readme for which games are supported \ No newline at end of file diff --git a/mods/xcompat/doc/materials.md b/mods/xcompat/doc/materials.md new file mode 100644 index 00000000..6eca5b36 --- /dev/null +++ b/mods/xcompat/doc/materials.md @@ -0,0 +1,3 @@ +# Materials API + +consult `/src/materials/minetest.lua` at this time \ No newline at end of file diff --git a/mods/xcompat/doc/player.md b/mods/xcompat/doc/player.md new file mode 100644 index 00000000..cdb84311 --- /dev/null +++ b/mods/xcompat/doc/player.md @@ -0,0 +1,13 @@ +# Player API + +mimic mtg player_api + +## NOTE + +`xcompat.player.player_attached` + +read/write from it is fine, looping over it is not as it is a proxy table. this +would need lua5.2 __pairs/__ipairs metamethods support which i could polyfill +for using https://stackoverflow.com/a/77354254 but didnt feel like doing at +this time. (luajit supports this via 5.2 extensions). additionally see issue: +https://github.com/minetest/minetest/issues/15133 \ No newline at end of file diff --git a/mods/xcompat/doc/sounds.md b/mods/xcompat/doc/sounds.md new file mode 100644 index 00000000..3b13d62f --- /dev/null +++ b/mods/xcompat/doc/sounds.md @@ -0,0 +1,35 @@ +# Sound API + +## Option 1: Agnostically depend + +You can do this by using a custom field in your node def instead of the `sounds` key. + +```lua +minetest.register_node(nodename, { + ... + _sound_def = { + key = "", + input = {}, + }, + ... +}) +``` + +where: + +* key: string name of the field from the sound api you want to use, for example `node_sound_stone_defaults` +* input: table input of fields you want passed to the key field, used to override specific sounds. + +## Option 2: Hard depend + +add this mod to your mod.confs depends and directly call the sound_api as follows + +```lua +minetest.register_node(nodename, { + ... + sounds = xcompat.sounds.node_sound_stone_defaults(input) + ... +}) +``` + +* input: optional table to override some or all of returned values \ No newline at end of file diff --git a/mods/xcompat/doc/textures.md b/mods/xcompat/doc/textures.md new file mode 100644 index 00000000..973e9341 --- /dev/null +++ b/mods/xcompat/doc/textures.md @@ -0,0 +1,3 @@ +# Textures API + +consult `/src/texture/minetest.lua` at this time \ No newline at end of file diff --git a/mods/xcompat/gitattributes b/mods/xcompat/gitattributes new file mode 100644 index 00000000..1a19d520 --- /dev/null +++ b/mods/xcompat/gitattributes @@ -0,0 +1,2 @@ +test export-ignore +.github export-ignore \ No newline at end of file diff --git a/mods/xcompat/init.lua b/mods/xcompat/init.lua new file mode 100644 index 00000000..883b0d3e --- /dev/null +++ b/mods/xcompat/init.lua @@ -0,0 +1,51 @@ +local modpath = minetest.get_modpath("xcompat") + +xcompat = { + modpath = modpath, +} + +xcompat.gameid = dofile(modpath .. "/src/gameid.lua") +xcompat.utilities = dofile(modpath .. "/src/utilities.lua") + +xcompat.sounds = dofile(modpath .. "/src/sounds.lua") +xcompat.materials = dofile(modpath .. "/src/materials.lua") +xcompat.textures = dofile(modpath .. "/src/textures.lua") +xcompat.functions = dofile(modpath .. "/src/functions.lua") +xcompat.player = dofile(modpath .. "/src/player.lua") + +local function validate_sound(key) + if key and xcompat.sounds[key] then + return true + elseif key then + minetest.log("warning", "attempted to call invalid sound: "..key) + else + minetest.log("warning", "sound_def is missing a sound_api key") + end + return false +end + +minetest.register_on_mods_loaded(function() + for name, def in pairs(minetest.registered_nodes) do + if def._sound_def and validate_sound(def._sound_def.key) then + minetest.override_item(name, { + sounds = xcompat.sounds[def._sound_def.key](def._sound_def.input) + }) + end + end + + local old_reg_node = minetest.register_node + function minetest.register_node(name, def) + if def._sound_def and validate_sound(def._sound_def.key) then + def.sounds = xcompat.sounds[def._sound_def.key](def._sound_def.input) + end + + old_reg_node(name, def) + end +end) + +dofile(modpath .. "/src/commands.lua") + +if minetest.get_modpath("mtt") and mtt.enabled then + -- register tests + dofile(modpath .. "/mtt.lua") +end diff --git a/mods/xcompat/mod.conf b/mods/xcompat/mod.conf new file mode 100644 index 00000000..b53aec52 --- /dev/null +++ b/mods/xcompat/mod.conf @@ -0,0 +1,6 @@ +name = xcompat +description = Provides cross compatibility between mods and games for sounds and crafting materials. +optional_depends = default, fl_stone, fl_trees, mcl_sounds, hades_sounds, ks_sounds, nodes_nature, fl_topsoil, fl_trees, mcl_core, farming, x_farming, sounds, mtt, player_api, mcl_player, fl_player +release = 30345 +author = mt-mods +title = Xcompat diff --git a/mods/xcompat/mtt.lua b/mods/xcompat/mtt.lua new file mode 100644 index 00000000..e407cfef --- /dev/null +++ b/mods/xcompat/mtt.lua @@ -0,0 +1,10 @@ + +-- emerge a part of the world (basic smoketest) +mtt.emerge_area({ x=0, y=0, z=0 }, { x=10, y=10, z=10 }) + +-- check nodelist +local mtt_nodelist = minetest.settings:get("mtt_nodelist") +if mtt_nodelist then + -- nodelist specified, check if all the required nodes are present + mtt.validate_nodenames(minetest.get_modpath("xcompat") .. "/test/nodelist/" .. mtt_nodelist) +end \ No newline at end of file diff --git a/mods/xcompat/src/commands.lua b/mods/xcompat/src/commands.lua new file mode 100644 index 00000000..15bf4e76 --- /dev/null +++ b/mods/xcompat/src/commands.lua @@ -0,0 +1,76 @@ +local materials_list = minetest.get_dir_list(xcompat.modpath.."/src/materials", false) +local materials = {} +for _, material in ipairs(materials_list) do + local gameid = material:sub(1, -5) + materials[gameid] = dofile(xcompat.modpath.."/src/materials/"..material) +end + +local textures_list = minetest.get_dir_list(xcompat.modpath.."/src/textures", false) +local textures = {} +for _, texture in ipairs(textures_list) do + local gameid = texture:sub(1, -5) + textures[gameid] = dofile(xcompat.modpath.."/src/textures/"..texture) +end + +local sounds_list = minetest.get_dir_list(xcompat.modpath.."/src/sounds", false) +local sounds = {} +for _, sound in ipairs(sounds_list) do + local gameid = sound:sub(1, -5) + sounds[gameid] = dofile(xcompat.modpath.."/src/sounds/"..sound) +end + +minetest.register_chatcommand("xcompat_test_materials", { + description = "Test materials", + privs = {server=true}, + func = function(name, _) + local reference_materials = materials["minetest"] + + for gameid, game_materials in pairs(materials) do + for material, _ in pairs(reference_materials) do + if not game_materials[material] then + minetest.chat_send_player(name, "Missing material: "..material.." in game: "..gameid) + end + end + end + + minetest.chat_send_player(name, "Materials test complete") + end +}) + +--WARNING: only handles top level of table currently +--TODO: handle nested tables +minetest.register_chatcommand("xcompat_test_textures", { + description = "Test textures", + privs = {server=true}, + func = function(name, _) + local reference_textures = textures["xcompat_agnostic"] + + for gameid, game_textures in pairs(textures) do + for texture, _ in pairs(reference_textures) do + if not game_textures[texture] then + minetest.chat_send_player(name, "Missing texture: "..texture.." in game: "..gameid) + end + end + end + + minetest.chat_send_player(name, "Textures test complete") + end +}) + +minetest.register_chatcommand("xcompat_test_sounds", { + description = "Test sounds", + privs = {server=true}, + func = function(name, _) + local reference_sounds = sounds["xcompat_agnostic"] + + for gameid, game_sounds in pairs(sounds) do + for sound, _ in pairs(reference_sounds) do + if not game_sounds[sound] then + minetest.chat_send_player(name, "Missing sound: "..sound.." in game: "..gameid) + end + end + end + + minetest.chat_send_player(name, "Sounds test complete") + end +}) diff --git a/mods/xcompat/src/functions.lua b/mods/xcompat/src/functions.lua new file mode 100644 index 00000000..51700b93 --- /dev/null +++ b/mods/xcompat/src/functions.lua @@ -0,0 +1,55 @@ +local functions = {} + +function functions.can_interact_with_node(player, pos) + --if we have default, use it + if default then return default.can_interact_with_node(player, pos) end + + local owner = minetest.get_meta(pos):get_string("owner") or "" + + --check that we have a valid player + if not player or not player:is_player() then return false end + --check there privs for compat with areas + if minetest.check_player_privs(player, "protection_bypass") then return true end + --if a normal player, check if they are the owner + if owner == "" or owner == player:get_player_name() then return true end + + return false +end + +function functions.sapling_on_place( + itemstack, player, pointed_thing, sapling_name, minp_relative, maxp_relative, interval +) + if default then + return default.sapling_on_place( + itemstack, player, pointed_thing, sapling_name, minp_relative, maxp_relative, interval + ) + end + + local pos = pointed_thing.above + local pname = player and player:get_player_name() or "" + local below_node = minetest.get_node_or_nil(pointed_thing.under) + + if below_node and minetest.registered_items[below_node.name] and + minetest.registered_items[below_node.name].buildable_to then + + pos = pointed_thing.under + end + + --check protection + if minetest.is_protected(pos, pname) then + minetest.record_protection_violation(pos, pname) + return itemstack + end + + --actually place sapling + minetest.set_node(pos, {name = sapling_name}) + + --handle survival + if not minetest.is_creative_enabled(pname) then + itemstack:take_item() + end + + return itemstack +end + +return functions \ No newline at end of file diff --git a/mods/xcompat/src/gameid.lua b/mods/xcompat/src/gameid.lua new file mode 100644 index 00000000..b21b0b1a --- /dev/null +++ b/mods/xcompat/src/gameid.lua @@ -0,0 +1,33 @@ +local game_alias = { + mineclone2 = "mineclonia", +} + +local game_modnames = { + mineclonia = "mcl_core", + farlands_reloaded = "fl_core", + minetest = "default", + hades = "hades_core", + exile = "exile_env_sounds", + ksurvive2 = "ks_metals", +} + +local gameid = "xcompat_unknown_gameid" + +if type(minetest.get_game_info) == "function" then + gameid = minetest.get_game_info().id +else + for game, modname in pairs(game_modnames) do + if minetest.get_modpath(modname) then + gameid = game + break + end + end +end + +--for games that are similar/derviatives of other games +if game_alias[gameid] then gameid = game_alias[gameid] end + +--while minetest game derviates are not supported, we can still try to detect them +if minetest.get_modpath("default") then gameid = "minetest" end + +return gameid \ No newline at end of file diff --git a/mods/xcompat/src/materials.lua b/mods/xcompat/src/materials.lua new file mode 100644 index 00000000..0512eafb --- /dev/null +++ b/mods/xcompat/src/materials.lua @@ -0,0 +1,8 @@ +local filename = xcompat.gameid + +--if we dont have a materials file for the game, use minetest +if not xcompat.utilities.file_exists(xcompat.modpath .. "/src/materials/" .. filename .. ".lua") then + filename = "minetest" +end + +return dofile(xcompat.modpath .. "/src/materials/" .. filename .. ".lua") diff --git a/mods/xcompat/src/materials/farlands_reloaded.lua b/mods/xcompat/src/materials/farlands_reloaded.lua new file mode 100644 index 00000000..7ed19551 --- /dev/null +++ b/mods/xcompat/src/materials/farlands_reloaded.lua @@ -0,0 +1,93 @@ +local materials = { + sand = "fl_stone:sand", + sandstone = "fl_stone:sandstone", + gravel = "fl_topsoil:gravel", + flint = "fl_topsoil:flint", + copper_ingot = "fl_ores:copper_ingot", + steel_ingot = "fl_ores:iron_ingot", + gold_ingot = "fl_ores:gold_ingot", + tin_ingot = "fl_ores:tin_ingot", + copper_block = "fl_ores:copper_block", + steel_block = "fl_ores:iron_block", + gold_block = "fl_ores:gold_block", + tin_block = "fl_ores:tin_block", + axe_steel = "fl_tools:steel_axe", + axe_diamond = "fl_tools:diamond_axe", + axe_bronze = "fl_tools:bronze_axe", + axe_stone = "fl_tools:stone_axe", + axe_wood = "fl_tools:wood_axe", + pick_steel = "fl_tools:steel_pick", + mese = "fl_ores:iron_ingot", + mese_crystal = "fl_ores:iron_ingot", + mese_crystal_fragment = "fl_ores:iron_ingot", + torch = "fl_light_sources:torch", + diamond = "fl_ores:diamond", + clay_lump = "fl_bricks:clay_lump", + water_bucket = "fl_bucket:bucket_water", + empty_bucket = "fl_bucket:bucket", + dye_dark_grey = "fl_dyes:dark_grey_dye", + dye_black = "fl_dyes:black_dye", + dye_white = "fl_dyes:white_dye", + dye_green = "fl_dyes:green_dye", + dye_red = "fl_dyes:red_dye", + dye_yellow = "fl_dyes:yellow_dye", + dye_brown = "fl_dyes:brown_dye", + dye_blue = "fl_dyes:blue_dye", + dye_violet = "fl_dyes:violet_dye", + dye_grey = "fl_dyes:grey_dye", + dye_dark_green = "fl_dyes:dark_green_dye", + dye_orange = "fl_dyes:orange_dye", + dye_pink = "fl_dyes:pink_dye", + dye_cyan = "fl_dyes:cyan_dye", + dye_magenta = "fl_dyes:magenta_dye", + silver_ingot = "fl_ores:iron_ingot", + silicon = "mesecons_materials:silicon", + string = "fl_plantlife:oxeye_daisy", + paper = "", + book = "", + iron_lump = "fl_ores:iron_ore", + wool_grey = "", + wool_green = "", + wool_dark_green = "", + wool_brown = "", + wool_black = "", + wool_white = "", + slab_stone = "fl_stone:stone_slab", + slab_wood = "fl_trees:apple_plank_slab", + glass = "fl_glass:framed_glass", + glass_block = "fl_glass:framed_glass", + glass_bottle = "fl_bottles:bottle", + coal_lump = "fl_ores:coal_ore", + stone = "fl_stone:stone", + desert_stone = "fl_stone:desert_stone", + desert_sand = "fl_stone:desert_sand", + chest = "fl_storage:wood_chest", + cobble = "fl_stone:stone_rubble", + brick = "", + obsidian_glass = "", + water_source = "fl_liquids:water_source", + water_flowing = "fl_liquids:water_flowing", + dirt = "fl_stone:dirt", + dirt_with_grass = "fl_topsoil:dirt_with_grass", + apple_leaves = "fl_trees:apple_leaves", + apple_log = "fl_trees:apple_trunk", + apple_planks = "fl_trees:apple_plank", + birch_leaves = "fl_trees:aspen_leaves", + birch_log = "fl_trees:aspen_trunk", + birch_planks = "fl_trees:aspen_plank", + jungle_leaves = "fl_trees:jungletree_leaves", + bowl = "", + stick = "fl_trees:stick", +} + +if minetest.get_modpath("basic_materials") then + materials.paper = "basic_materials:plastic_sheet" +end + +if minetest.registered_items["farming:bowl"] then + materials.bowl = "farming:bowl" +elseif minetest.get_modpath("x_farming") then + materials.bowl = "x_farming:bowl" +end + +return materials \ No newline at end of file diff --git a/mods/xcompat/src/materials/hades_revisited.lua b/mods/xcompat/src/materials/hades_revisited.lua new file mode 100644 index 00000000..a40f1f38 --- /dev/null +++ b/mods/xcompat/src/materials/hades_revisited.lua @@ -0,0 +1,107 @@ +local materials = { + sand = "hades_core:fertile_sand", + sandstone = "hades_core:sandstone", + gravel = "hades_core:gravel", + flint = "", + copper_ingot = "hades_core:copper_ingot", + steel_ingot = "hades_core:steel_ingot", + gold_ingot = "hades_core:gold_ingot", + tin_ingot = "hades_core:tin_ingot", + silver_ingot = "--unknown--", + copper_block = "hades_core:copperblock", + steel_block = "hades_core:steelblock", + gold_block = "hades_core:goldblock", + tin_block = "hades_core:tinblock", + axe_steel = "hades_core:axe_steel", + axe_diamond = "hades_core:axe_diamond", + axe_bronze = "hades_core:axe_bronze", + axe_stone = "hades_core:axe_stone", + axe_wood = "hades_core:axe_wood", + pick_steel = "hades_core:pick_steel", + mese = "hades_core:mese", + mese_crystal = "hades_core:mese_crystal", + mese_crystal_fragment = "hades_core:mese_crystal_fragment", + torch = "hades_torches:torch", + diamond = "hades_core:diamond", + clay_lump = "hades_core:clay_lump", + clay_brick = "hades_core:clay_brick", + + --[[ + Since hades doesnt have buckets or water for the user, + using dirt from near water to pull the water out + ]] + water_bucket = "hades_core:dirt", + empty_bucket = "hades_core:fertile_sand", + dye_dark_grey = "dye:dark_grey", + dye_black = "dye:black", + dye_white = "dye:white", + dye_green = "dye:green", + dye_red = "dye:red", + dye_yellow = "dye:yellow", + dye_brown = "dye:brown", + dye_blue = "dye:blue", + dye_violet = "dye:violet", + dye_grey = "dye:grey", + dye_dark_green = "dye:dark_green", + dye_orange = "dye:orange", + dye_pink = "dye:pink", + dye_cyan = "dye:cyan", + dye_magenta = "dye:magenta", + silicon = "hades_materials:silicon", + string = "hades_farming:string", + paper = "hades_core:paper", + book = "hades_core:book", + iron_lump = "hades_core:iron_lump", + wool_grey = "wool:grey", + wool_green = "wool:green", + wool_dark_green = "wool:dark_green", + wool_brown = "wool:brown", + wool_black = "wool:black", + wool_white = "wool:white", + slab_stone = "stairs:slab_stone", + slab_wood = "stairs:slab_wood", + glass = "hades_core:glass", + glass_block = "hades_core:glass", + glass_bottle = "vessels:glass_bottle", + obsidian_glass = "hades_core:obsidian_glass", + coal_lump = "hades_core:coal_lump", + stone = "hades_core:stone", + desert_stone = "hades_core:stone_baked", + desert_sand = "hades_core:volcanic_sand", + chest = "hades_chests:chest"; + cobble = "hades_core:cobble", + brick = "hades_core:brick", + water_source = "hades_core:water_source", + water_flowing = "hades_core:water_flowing", + dirt = "hades_core:dirt", + dirt_with_grass = "hades_core:dirt_with_grass", + apple_leaves = "hades_trees:leaves", + apple_log = "hades_trees:tree", + apple_planks = "hades_trees:wood", + birch_leaves = "hades_core:birch_leaves", + birch_log = "hades_trees:birch_tree", + birch_planks = "hades_trees:cream_wood", + jungle_leaves = "hades_trees:jungle_leaves", +--hades has no bowl but you get plate on eat so makes most sense? + bowl = "hades_food:plate", + stick = "hades_core:stick", +} + +if minetest.get_modpath("hades_bucket") then + materials["water_bucket"] = "hades_bucket:bucket_water" + materials["empty_bucket"] = "hades_bucket:bucket_empty" +end +if minetest.get_modpath("hades_extraores") then + materials["silver_ingot"] = "hades_extraores:silver_ingot" + materials["aluminum_ingot"] = "hades_extraores:aluminum_ingot" +end +if minetest.get_modpath("hades_default") then + materials.desert_sand = "hades_default:desert_sand" +end +if minetest.get_modpath("hades_technic") then + materials.lead_ingot = "hades_technic:lead_ingot" + materials.carbon_steel_ingot = "hades_technic:carbon_steel_ingot" + materials.stainless_steel_ingot = "hades_technic:stainless_steel_ingot" +end + +return materials \ No newline at end of file diff --git a/mods/xcompat/src/materials/mineclonia.lua b/mods/xcompat/src/materials/mineclonia.lua new file mode 100644 index 00000000..261f53be --- /dev/null +++ b/mods/xcompat/src/materials/mineclonia.lua @@ -0,0 +1,117 @@ +--note this file handles mineclonia, mineclone2, and its rename voxelibre + +local mcl_dyes = minetest.get_modpath("mcl_dyes") +local mcl_dyes_name = mcl_dyes and "mcl_dyes" or "mcl_dye" + +local materials = { + sand = "mcl_core:sand", + sandstone = "mcl_core:sandstone", + gravel = "mcl_core:gravel", + flint = "mcl_core:flint", + copper_ingot = "mcl_copper:copper_ingot", + steel_ingot = "mcl_core:iron_ingot", + gold_ingot = "mcl_core:gold_ingot", + tin_ingot = "mcl_core:iron_ingot", + copper_block = "mcl_copper:block", + steel_block = "mcl_core:ironblock", + gold_block = "mcl_core:goldblock", + tin_block = "mcl_core:ironblock", + axe_steel = "mcl_core:axe_steel", + axe_diamond = "mcl_core:axe_diamond", + axe_bronze = "mcl_core:axe_bronze", + axe_stone = "mcl_core:axe_stone", + axe_wood = "mcl_core:axe_wood", + pick_steel = "mcl_core:pick_steel", + torch = "mcl_torches:torch", + diamond = "mcl_core:diamond", + clay_lump = "mcl_core:clay_lump", + water_bucket = "mcl_buckets:bucket_water", + empty_bucket = "mcl_buckets:bucket_empty", + dye_dark_grey = mcl_dyes_name .. ":dark_grey", + dye_black = mcl_dyes_name .. ":black", + dye_white = mcl_dyes_name .. ":white", + dye_green = mcl_dyes_name .. ":green", + dye_red = mcl_dyes_name .. ":red", + dye_yellow = mcl_dyes_name .. ":yellow", + dye_brown = mcl_dyes_name .. ":brown", + dye_blue = mcl_dyes_name .. ":blue", + dye_violet = mcl_dyes_name .. ":violet", + dye_grey = mcl_dyes_name .. ":grey", + dye_dark_green = mcl_dyes_name .. ":dark_green", + dye_orange = mcl_dyes_name .. ":orange", + dye_pink = mcl_dyes_name .. ":pink", + dye_cyan = mcl_dyes_name .. ":cyan", + dye_magenta = mcl_dyes_name .. ":magenta", + silicon = "mcl_core:iron_ingot", + string = "mcl_mobitems:string", + paper = "mcl_core:paper", + book = "mcl_books:book", + iron_lump = "mcl_raw_ores:raw_iron", + wool_grey = "mcl_wool:grey", + wool_green = "mcl_wool:green", + wool_dark_green = "mcl_wool:dark_green", + wool_brown = "mcl_wool:brown", + wool_black = "mcl_wool:black", + wool_white = "mcl_wool:white", + slab_stone = "mcl_stairs:slab_stone", + slab_wood = "mcl_stairs:slab_wood", + glass = "mcl_core:glass", + glass_block = "mcl_core:glass", + glass_bottle = "mcl_potions:glass_bottle", + coal_lump = "mcl_core:coal_lump", + stone = "mcl_core:stone", + desert_stone = "mcl_core:redsandstone", + desert_sand = "mcl_core:sand", + chest = "mcl_chests:chest", + cobble = "mcl_core:cobble", + brick = "mcl_core:brick", + obsidian_glass = "", + water_source = "mcl_core:water_source", + water_flowing = "mcl_core:water_flowing", + dirt = "mcl_core:dirt", + dirt_with_grass = "mcl_core:dirt_with_grass", + bowl = "mcl_core:bowl", + stick = "mcl_core:stick", +} + +if minetest.get_modpath("mcl_redstone") then + materials.mese = "mcl_redstone_torch:redstoneblock" + materials.mese_crystal = "mcl_redstone:redstone" + materials.mese_crystal_fragment = "mcl_core:iron_ingot" +else + materials.mese = "mesecons_torch:redstoneblock" + materials.mese_crystal = "mesecons:redstone" + materials.mese_crystal_fragment = "mcl_core:iron_ingot" +end + +if minetest.get_modpath("mcl_trees") then + materials.apple_leaves = "mcl_trees:leaves_oak" + materials.apple_log = "mcl_trees:tree_oak" + materials.apple_planks = "mcl_trees:wood_oak" + materials.birch_leaves = "mcl_trees:leaves_birch" + materials.birch_log = "mcl_trees:tree_birch" + materials.birch_planks = "mcl_trees:wood_birch" + materials.jungle_leaves = "mcl_trees:leaves_jungle" +else + materials.apple_leaves = "mcl_core:leaves" + materials.apple_log = "mcl_core:tree" + materials.apple_planks = "mcl_core:wood" + materials.birch_leaves = "mcl_core:birchleaves" + materials.birch_log = "mcl_core:birchtree" + materials.birch_planks = "mcl_core:birchwood" + materials.jungle_leaves = "mcl_core:jungleleaves" +end + +if minetest.get_modpath("moreores") then + materials.tin_ingot = "moreores:tin_ingot" + materials.tin_block = "moreores:tin_block" + materials.silver_ingot = "moreores:silver_ingot" +end + +if minetest.get_modpath("technic") then + materials.lead_ingot = "technic:lead_ingot" + materials.carbon_steel_ingot = "technic:carbon_steel_ingot" + materials.stainless_steel_ingot = "technic:stainless_steel_ingot" +end + +return materials diff --git a/mods/xcompat/src/materials/minetest.lua b/mods/xcompat/src/materials/minetest.lua new file mode 100644 index 00000000..feab7480 --- /dev/null +++ b/mods/xcompat/src/materials/minetest.lua @@ -0,0 +1,106 @@ +local materials = { + sand = "default:sand", + sandstone = "default:sandstone", + gravel = "default:gravel", + flint = "default:flint", + copper_ingot = "default:copper_ingot", + steel_ingot = "default:steel_ingot", + gold_ingot = "default:gold_ingot", + tin_ingot = "default:tin_ingot", + copper_block = "default:copperblock", + steel_block = "default:steelblock", + gold_block = "default:goldblock", + tin_block = "default:tinblock", + axe_steel = "default:axe_steel", + axe_diamond = "default:axe_diamond", + axe_bronze = "default:axe_bronze", + axe_stone = "default:axe_stone", + axe_wood = "default:axe_wood", + pick_steel = "default:pick_steel", + mese = "default:mese", + mese_crystal = "default:mese_crystal", + mese_crystal_fragment = "default:mese_crystal_fragment", + torch = "default:torch", + diamond = "default:diamond", + clay_lump = "default:clay_lump", + water_bucket = "bucket:bucket_water", + empty_bucket = "bucket:bucket_empty", + dye_dark_grey = "dye:dark_grey", + dye_black = "dye:black", + dye_white = "dye:white", + dye_green = "dye:green", + dye_red = "dye:red", + dye_yellow = "dye:yellow", + dye_brown = "dye:brown", + dye_blue = "dye:blue", + dye_violet = "dye:violet", + dye_grey = "dye:grey", + dye_dark_green = "dye:dark_green", + dye_orange = "dye:orange", + dye_pink = "dye:pink", + dye_cyan = "dye:cyan", + dye_magenta = "dye:magenta", + silicon = "mesecons_materials:silicon", + string = "farming:string", + paper = "default:paper", + book = "default:book", + iron_lump = "default:iron_lump", + wool_grey = "wool:grey", + wool_green = "wool:green", + wool_dark_green = "wool:dark_green", + wool_brown = "wool:brown", + wool_black = "wool:black", + wool_white = "wool:white", + slab_stone = "stairs:slab_stone", + slab_wood = "stairs:slab_wood", + glass = "default:glass", + glass_block = "default:glass", + glass_bottle = "vessels:glass_bottle", + coal_lump = "default:coal_lump", + stone = "default:stone", + desert_stone = "default:desert_stone", + desert_sand = "default:desert_sand", + chest = "default:chest", + cobble = "default:cobble", + brick = "default:brick", + obsidian_glass = "default:obsidian_glass", + water_source = "default:water_source", + water_flowing = "default:water_flowing", + dirt = "default:dirt", + dirt_with_grass = "default:dirt_with_grass", + apple_leaves = "default:leaves", + apple_log = "default:tree", + apple_planks = "default:wood", + birch_leaves = "default:aspen_leaves", + birch_log = "default:aspen_tree", + birch_planks = "default:aspen_wood", + jungle_leaves = "default:jungleleaves", + bowl = "", + stick = "default:stick", +} + +if minetest.registered_items["farming:bowl"] then + materials.bowl = "farming:bowl" +elseif minetest.get_modpath("x_farming") then + materials.bowl = "x_farming:bowl" +end + +if minetest.get_modpath("moreores") then + materials.silver_ingot = "moreores:silver_ingot" +end + +if minetest.get_modpath("technic") then + materials.lead_ingot = "technic:lead_ingot" + materials.carbon_steel_ingot = "technic:carbon_steel_ingot" + materials.stainless_steel_ingot = "technic:stainless_steel_ingot" +end + +if minetest.get_modpath("aloz") then + materials.aluminum_ingot = "aloz:aluminum_ingot" +end + +if minetest.get_modpath("techage") then + materials.aluminum_ingot = "techage:aluminum" +end + +return materials \ No newline at end of file diff --git a/mods/xcompat/src/player.lua b/mods/xcompat/src/player.lua new file mode 100644 index 00000000..fa03f419 --- /dev/null +++ b/mods/xcompat/src/player.lua @@ -0,0 +1,8 @@ +local filename = xcompat.gameid + +--if we dont have a player file for the game, use minetest +if not xcompat.utilities.file_exists(xcompat.modpath .. "/src/player/" .. filename .. ".lua") then + filename = "xcompat_agnostic" +end + +return dofile(xcompat.modpath .. "/src/player/" .. filename .. ".lua") \ No newline at end of file diff --git a/mods/xcompat/src/player/farlands_reloaded.lua b/mods/xcompat/src/player/farlands_reloaded.lua new file mode 100644 index 00000000..288d9ba9 --- /dev/null +++ b/mods/xcompat/src/player/farlands_reloaded.lua @@ -0,0 +1,51 @@ +local papi = {} + +local models = {} +function papi.register_model(name, def) + models[name] = def +end + +function papi.set_model(player, model_name) + local model = models[model_name] + + if not model then return end + + player:set_properties({ + mesh = model_name, + textures = model.textures, + visual = "mesh", + visual_size = model.visual_size, + stepheight = model.stepheight + }) +end + +function papi.get_animation(_) + --stub to keep from crashing +end + +function papi.get_textures(player) + return player:get_properties().textures +end + +function papi.set_textures(player, textures) + player:set_properties({textures = textures}) +end + +function papi.set_animation(player, anim_name, speed, loop) + player:set_animation(fl_player.animations[anim_name], speed, 0, loop) +end + +local metatable = { + __index = function (_, key) + return fl_player.ignore[key] + end, + __newindex = function (_, key, value) + rawset(fl_player.ignore, key, value) + end +} + +papi.player_attached = {} + +setmetatable(papi.player_attached, metatable) + +return papi \ No newline at end of file diff --git a/mods/xcompat/src/player/mineclonia.lua b/mods/xcompat/src/player/mineclonia.lua new file mode 100644 index 00000000..4758be95 --- /dev/null +++ b/mods/xcompat/src/player/mineclonia.lua @@ -0,0 +1,40 @@ +local papi = {} + +function papi.register_model(name, def) + return mcl_player.player_register_model(name, def) +end + +function papi.set_model(player, model) + return mcl_player.player_set_model(player, model) +end + +function papi.get_animation(player) + return mcl_player.player_get_animation(player) +end + +function papi.get_textures(player) + return player:get_properties().textures +end + +function papi.set_textures(player, textures) + player:set_properties({textures = textures}) +end + +function papi.set_animation(player, anim_name, speed, _) + return mcl_player.player_set_animation(player, anim_name, speed) +end + +local metatable = { + __index = function (_, key) + return mcl_player.player_attached[key] + end, + __newindex = function (_, key, value) + rawset(mcl_player.player_attached, key, value) + end +} + +papi.player_attached = {} + +setmetatable(papi.player_attached, metatable) + +return papi \ No newline at end of file diff --git a/mods/xcompat/src/player/minetest.lua b/mods/xcompat/src/player/minetest.lua new file mode 100644 index 00000000..75f4f082 --- /dev/null +++ b/mods/xcompat/src/player/minetest.lua @@ -0,0 +1,41 @@ +local papi = {} + +function papi.register_model(name, def) + return player_api.register_model(name, def) +end + +function papi.set_model(player, model) + return player_api.set_model(player, model) +end + +function papi.get_animation(player) + return player_api.get_animation(player) +end + +function papi.get_textures(player) + return player_api.get_textures(player) +end + +function papi.set_textures(player, texture) + return player_api.set_textures(player, texture) +end + +function papi.set_animation(player, anim_name, speed, loop) + return player_api.set_animation(player, anim_name, speed, loop) +end + + +local metatable = { + __index = function (_, key) + return player_api.player_attached[key] + end, + __newindex = function (_, key, value) + rawset(player_api.player_attached, key, value) + end +} + +papi.player_attached = {} + +setmetatable(papi.player_attached, metatable) + +return papi \ No newline at end of file diff --git a/mods/xcompat/src/player/xcompat_agnostic.lua b/mods/xcompat/src/player/xcompat_agnostic.lua new file mode 100644 index 00000000..3a5523e9 --- /dev/null +++ b/mods/xcompat/src/player/xcompat_agnostic.lua @@ -0,0 +1,41 @@ +local papi = {} + +local models = {} +function papi.register_model(name, def) + models[name] = def +end + +function papi.set_model(player, model_name) + local model = models[model_name] + + if not model then return end + + player:set_properties({ + mesh = model_name, + textures = model.textures, + visual = "mesh", + visual_size = model.visual_size, + stepheight = model.stepheight + }) +end + +function papi.get_animation(_) + --stub to keep from crashing +end + +function papi.get_textures(player) + return player:get_properties().textures +end + +function papi.set_textures(player, textures) + player:set_properties({textures = textures}) +end + +function papi.set_animation(_, _, _, _) + --stub to keep from crashing +end + +--nothing to do here as we have no globalstep .....that we know about anyways +papi.player_attached = {} + +return papi \ No newline at end of file diff --git a/mods/xcompat/src/sounds.lua b/mods/xcompat/src/sounds.lua new file mode 100644 index 00000000..a8712593 --- /dev/null +++ b/mods/xcompat/src/sounds.lua @@ -0,0 +1,8 @@ +local filename = xcompat.gameid + +--if we dont have a materials file for the game, use minetest +if not xcompat.utilities.file_exists(xcompat.modpath .. "/src/sounds/" .. filename .. ".lua") then + filename = "xcompat_agnostic" +end + +return dofile(xcompat.modpath .. "/src/sounds/" .. filename .. ".lua") \ No newline at end of file diff --git a/mods/xcompat/src/sounds/exile.lua b/mods/xcompat/src/sounds/exile.lua new file mode 100644 index 00000000..c944ed65 --- /dev/null +++ b/mods/xcompat/src/sounds/exile.lua @@ -0,0 +1,67 @@ +local sound_api = {} + +function sound_api.node_sound_default(soundtable) + return nodes_nature.node_sound_default(soundtable) +end + +function sound_api.node_sound_stone_defaults(soundtable) + return nodes_nature.node_sound_stone_defaults(soundtable) +end + +function sound_api.node_sound_dirt_defaults(soundtable) + return nodes_nature.node_sound_dirt_defaults(soundtable) +end + +--return dirt as some games use dirt vs grass +function sound_api.node_sound_grass_defaults(soundtable) + return sound_api.node_sound_dirt_defaults(soundtable) +end + +function sound_api.node_sound_sand_defaults(soundtable) + return nodes_nature.node_sound_sand_defaults(soundtable) +end + +function sound_api.node_sound_gravel_defaults(soundtable) + return nodes_nature.node_sound_gravel_defaults(soundtable) +end + +function sound_api.node_sound_wood_defaults(soundtable) + return nodes_nature.node_sound_wood_defaults(soundtable) +end + +function sound_api.node_sound_leaves_defaults(soundtable) + return nodes_nature.node_sound_leaves_defaults(soundtable) +end + +function sound_api.node_sound_glass_defaults(soundtable) + return nodes_nature.node_sound_glass_defaults(soundtable) +end + + +function sound_api.node_sound_ice_defaults(soundtable) + --s/ice/glass + return nodes_nature.node_sound_glass_defaults(soundtable) +end + +function sound_api.node_sound_metal_defaults(soundtable) + return soundtable +end + +function sound_api.node_sound_water_defaults(soundtable) + return nodes_nature.node_sound_water_defaults(soundtable) +end + +function sound_api.node_sound_lava_defaults(soundtable) + --s/lava/water + return nodes_nature.node_sound_water_defaults(soundtable) +end + +function sound_api.node_sound_snow_defaults(soundtable) + return nodes_nature.node_sound_snow_defaults(soundtable) +end + +function sound_api.node_sound_wool_defaults(soundtable) + return soundtable +end + +return sound_api \ No newline at end of file diff --git a/mods/xcompat/src/sounds/farlands_reloaded.lua b/mods/xcompat/src/sounds/farlands_reloaded.lua new file mode 100644 index 00000000..e5be8074 --- /dev/null +++ b/mods/xcompat/src/sounds/farlands_reloaded.lua @@ -0,0 +1,65 @@ +local sound_api = {} + +function sound_api.node_sound_default(soundtable) + return soundtable +end + +function sound_api.node_sound_stone_defaults(soundtable) + return fl_stone.sounds.stone(soundtable) +end + +function sound_api.node_sound_dirt_defaults(soundtable) + return fl_topsoil.sounds.grass(soundtable) +end + +--return dirt as some games use dirt vs grass +function sound_api.node_sound_grass_defaults(soundtable) + return sound_api.node_sound_dirt_defaults(soundtable) +end + +function sound_api.node_sound_sand_defaults(soundtable) + return fl_stone.sounds.sand(soundtable) +end + +function sound_api.node_sound_gravel_defaults(soundtable) + return fl_topsoil.sounds.gravel(soundtable) +end + +function sound_api.node_sound_wood_defaults(soundtable) + return fl_trees.sounds.wood(soundtable) +end + +function sound_api.node_sound_leaves_defaults(soundtable) + return soundtable +end + +function sound_api.node_sound_glass_defaults(soundtable) + return soundtable +end + + +function sound_api.node_sound_ice_defaults(soundtable) + return soundtable +end + +function sound_api.node_sound_metal_defaults(soundtable) + return soundtable +end + +function sound_api.node_sound_water_defaults(soundtable) + return soundtable +end + +function sound_api.node_sound_lava_defaults(soundtable) + return soundtable +end + +function sound_api.node_sound_snow_defaults(soundtable) + return fl_topsoil.sounds.snow(soundtable) +end + +function sound_api.node_sound_wool_defaults(soundtable) + return soundtable +end + +return sound_api \ No newline at end of file diff --git a/mods/xcompat/src/sounds/forgotten_lands.lua b/mods/xcompat/src/sounds/forgotten_lands.lua new file mode 100644 index 00000000..96eb7d94 --- /dev/null +++ b/mods/xcompat/src/sounds/forgotten_lands.lua @@ -0,0 +1,63 @@ +local sound_api = {} + +function sound_api.node_sound_default(soundtable) + return soundtable +end + +function sound_api.node_sound_stone_defaults(soundtable) + return sounds.stone(soundtable) +end + +function sound_api.node_sound_dirt_defaults(soundtable) + return sounds.dirt(soundtable) +end + +function sound_api.node_sound_grass_defaults(soundtable) + return sounds.grass(soundtable) +end + +function sound_api.node_sound_sand_defaults(soundtable) + return sounds.sand(soundtable) +end + +function sound_api.node_sound_gravel_defaults(soundtable) + return sounds.gravel(soundtable) +end + +function sound_api.node_sound_wood_defaults(soundtable) + return sounds.wood(soundtable) +end + +function sound_api.node_sound_leaves_defaults(soundtable) + return soundtable +end + +function sound_api.node_sound_glass_defaults(soundtable) + return sounds.glass(soundtable) +end + +function sound_api.node_sound_ice_defaults(soundtable) + return soundtable +end + +function sound_api.node_sound_metal_defaults(soundtable) + return soundtable +end + +function sound_api.node_sound_water_defaults(soundtable) + return soundtable +end + +function sound_api.node_sound_lava_defaults(soundtable) + return soundtable +end + +function sound_api.node_sound_snow_defaults(soundtable) + return soundtable +end + +function sound_api.node_sound_wool_defaults(soundtable) + return soundtable +end + +return sound_api \ No newline at end of file diff --git a/mods/xcompat/src/sounds/hades_revisited.lua b/mods/xcompat/src/sounds/hades_revisited.lua new file mode 100644 index 00000000..a8a2a04e --- /dev/null +++ b/mods/xcompat/src/sounds/hades_revisited.lua @@ -0,0 +1,66 @@ +local sound_api = {} + +function sound_api.node_sound_default(soundtable) + return hades_sounds.node_sound_defaults(soundtable) +end + +function sound_api.node_sound_stone_defaults(soundtable) + return hades_sounds.node_sound_stone_defaults(soundtable) +end + +function sound_api.node_sound_dirt_defaults(soundtable) + return hades_sounds.node_sound_dirt_defaults(soundtable) +end + +--return dirt as some games use dirt vs grass +function sound_api.node_sound_grass_defaults(soundtable) + return hades_sounds.node_sound_grass_defaults(soundtable) +end + +function sound_api.node_sound_sand_defaults(soundtable) + return hades_sounds.node_sound_sand_defaults(soundtable) +end + +function sound_api.node_sound_gravel_defaults(soundtable) + return hades_sounds.node_sound_gravel_defaults(soundtable) +end + +function sound_api.node_sound_wood_defaults(soundtable) + return hades_sounds.node_sound_wood_defaults(soundtable) +end + +function sound_api.node_sound_leaves_defaults(soundtable) + return hades_sounds.node_sound_leaves_defaults(soundtable) +end + +function sound_api.node_sound_glass_defaults(soundtable) + return hades_sounds.node_sound_glass_defaults(soundtable) +end + + +function sound_api.node_sound_ice_defaults(soundtable) + --s/ice/glass + return hades_sounds.node_sound_glass_defaults(soundtable) +end + +function sound_api.node_sound_metal_defaults(soundtable) + return hades_sounds.node_sound_metal_defaults(soundtable) +end + +function sound_api.node_sound_water_defaults(soundtable) + return hades_sounds.node_sound_water_defaults(soundtable) +end + +function sound_api.node_sound_lava_defaults(soundtable) + return hades_sounds.node_sound_lava_defaults(soundtable) +end + +function sound_api.node_sound_snow_defaults(soundtable) + return soundtable +end + +function sound_api.node_sound_wool_defaults(soundtable) + return soundtable +end + +return sound_api \ No newline at end of file diff --git a/mods/xcompat/src/sounds/ksurvive2.lua b/mods/xcompat/src/sounds/ksurvive2.lua new file mode 100644 index 00000000..70ae03b3 --- /dev/null +++ b/mods/xcompat/src/sounds/ksurvive2.lua @@ -0,0 +1,107 @@ +local sound_api = {} + +--ks_sounds conversion +--currently loggy and bedrock are ignored +local ks = {} + +function ks.node_sound_defaults(soundtable) + soundtable = soundtable or {} + soundtable.footstep = soundtable.footstep or ks_sounds.generalnode_sounds.footstep + soundtable.dug = soundtable.dug or ks_sounds.generalnode_sounds.dug + soundtable.dig = soundtable.dig or ks_sounds.generalnode_sounds.dig + soundtable.place = soundtable.place or ks_sounds.generalnode_sounds.place + return soundtable +end + +function ks.node_sound_wood_defaults(soundtable) + soundtable = soundtable or {} + soundtable.footstep = soundtable.footstep or ks_sounds.woodennode_sounds.footstep + soundtable.dug = soundtable.dug or ks_sounds.woodennode_sounds.dug + soundtable.dig = soundtable.dig or ks_sounds.woodennode_sounds.dig + soundtable.place = soundtable.place or ks_sounds.woodennode_sounds.place + ks.node_sound_defaults(soundtable) + return soundtable +end + +function ks.node_sound_leaves_defaults(soundtable) + soundtable = soundtable or {} + soundtable.footstep = soundtable.footstep or ks_sounds.leafynode_sounds.footstep + soundtable.dug = soundtable.dug or ks_sounds.leafynode_sounds.dug + soundtable.dig = soundtable.dig or ks_sounds.leafynode_sounds.dig + soundtable.place = soundtable.place or ks_sounds.leafynode_sounds.place + ks.node_sound_defaults(soundtable) + return soundtable +end + +function ks.node_sound_snow_defaults(soundtable) + soundtable = soundtable or {} + soundtable.footstep = soundtable.footstep or ks_sounds.snowynode_sounds.footstep + soundtable.dug = soundtable.dug or ks_sounds.snowynode_sounds.dug + soundtable.dig = soundtable.dig or ks_sounds.snowynode_sounds.dig + soundtable.place = soundtable.place or ks_sounds.snowynode_sounds.place + ks.node_sound_defaults(soundtable) + return soundtable +end + +function sound_api.node_sound_default(soundtable) + return ks.node_sound_default(soundtable) +end + +function sound_api.node_sound_stone_defaults(soundtable) + return soundtable +end + +function sound_api.node_sound_dirt_defaults(soundtable) + return soundtable +end + +--return dirt as some games use dirt vs grass +function sound_api.node_sound_grass_defaults(soundtable) + return sound_api.node_sound_dirt_defaults(soundtable) +end + +function sound_api.node_sound_sand_defaults(soundtable) + return soundtable +end + +function sound_api.node_sound_gravel_defaults(soundtable) + return soundtable +end + +function sound_api.node_sound_wood_defaults(soundtable) + return ks.node_sound_wood_default(soundtable) +end + +function sound_api.node_sound_leaves_defaults(soundtable) + return ks.node_sound_leaves_default(soundtable) +end + +function sound_api.node_sound_glass_defaults(soundtable) + return soundtable +end + +function sound_api.node_sound_ice_defaults(soundtable) + return soundtable +end + +function sound_api.node_sound_metal_defaults(soundtable) + return soundtable +end + +function sound_api.node_sound_water_defaults(soundtable) + return soundtable +end + +function sound_api.node_sound_lava_defaults(soundtable) + return soundtable +end + +function sound_api.node_sound_snow_defaults(soundtable) + return ks.node_sound_snow_default(soundtable) +end + +function sound_api.node_sound_wool_defaults(soundtable) + return soundtable +end + +return sound_api \ No newline at end of file diff --git a/mods/xcompat/src/sounds/mineclonia.lua b/mods/xcompat/src/sounds/mineclonia.lua new file mode 100644 index 00000000..5de0753b --- /dev/null +++ b/mods/xcompat/src/sounds/mineclonia.lua @@ -0,0 +1,67 @@ +--note this file handles mineclonia, mineclone2, and its rename voxelibre + +local sound_api = {} + +function sound_api.node_sound_default(soundtable) + return mcl_sounds.node_sound_defaults(soundtable) +end + +function sound_api.node_sound_stone_defaults(soundtable) + return mcl_sounds.node_sound_stone_defaults(soundtable) +end + +function sound_api.node_sound_dirt_defaults(soundtable) + return mcl_sounds.node_sound_dirt_defaults(soundtable) +end + +--return dirt as some games use dirt vs grass +function sound_api.node_sound_grass_defaults(soundtable) + return sound_api.node_sound_dirt_defaults(soundtable) +end + +function sound_api.node_sound_sand_defaults(soundtable) + return mcl_sounds.node_sound_sand_defaults(soundtable) +end + +function sound_api.node_sound_gravel_defaults(soundtable) + return mcl_sounds.node_sound_sand_defaults(soundtable) +end + +function sound_api.node_sound_wood_defaults(soundtable) + return mcl_sounds.node_sound_wood_defaults(soundtable) +end + +function sound_api.node_sound_leaves_defaults(soundtable) + return mcl_sounds.node_sound_leaves_defaults(soundtable) +end + +function sound_api.node_sound_glass_defaults(soundtable) + return mcl_sounds.node_sound_glass_defaults(soundtable) +end + + +function sound_api.node_sound_ice_defaults(soundtable) + return mcl_sounds.node_sound_glass_defaults(soundtable) +end + +function sound_api.node_sound_metal_defaults(soundtable) + return mcl_sounds.node_sound_metal_defaults(soundtable) +end + +function sound_api.node_sound_water_defaults(soundtable) + return mcl_sounds.node_sound_water_defaults(soundtable) +end + +function sound_api.node_sound_lava_defaults(soundtable) + return mcl_sounds.node_sound_lava_defaults(soundtable) +end + +function sound_api.node_sound_snow_defaults(soundtable) + return mcl_sounds.node_sound_snow_defaults(soundtable) +end + +function sound_api.node_sound_wool_defaults(soundtable) + return mcl_sounds.node_sound_wool_defaults(soundtable) +end + +return sound_api \ No newline at end of file diff --git a/mods/xcompat/src/sounds/minetest.lua b/mods/xcompat/src/sounds/minetest.lua new file mode 100644 index 00000000..3c2485e4 --- /dev/null +++ b/mods/xcompat/src/sounds/minetest.lua @@ -0,0 +1,67 @@ +local sound_api = {} + +function sound_api.node_sound_default(soundtable) + return default.node_sound_defaults(soundtable) +end + +function sound_api.node_sound_stone_defaults(soundtable) + return default.node_sound_stone_defaults(soundtable) +end + +function sound_api.node_sound_dirt_defaults(soundtable) + return default.node_sound_dirt_defaults(soundtable) +end + +--return dirt as some games use dirt vs grass +function sound_api.node_sound_grass_defaults(soundtable) + return sound_api.node_sound_dirt_defaults(soundtable) +end + +function sound_api.node_sound_sand_defaults(soundtable) + return default.node_sound_sand_defaults(soundtable) +end + +function sound_api.node_sound_gravel_defaults(soundtable) + return default.node_sound_gravel_defaults(soundtable) +end + +function sound_api.node_sound_wood_defaults(soundtable) + return default.node_sound_wood_defaults(soundtable) +end + +function sound_api.node_sound_leaves_defaults(soundtable) + return default.node_sound_leaves_defaults(soundtable) +end + +function sound_api.node_sound_glass_defaults(soundtable) + return default.node_sound_glass_defaults(soundtable) +end + + +function sound_api.node_sound_ice_defaults(soundtable) + return default.node_sound_ice_defaults(soundtable) +end + +function sound_api.node_sound_metal_defaults(soundtable) + return default.node_sound_metal_defaults(soundtable) +end + +function sound_api.node_sound_water_defaults(soundtable) + return default.node_sound_water_defaults(soundtable) +end + +function sound_api.node_sound_lava_defaults(soundtable) + --s/lava/water + return default.node_sound_water_defaults(soundtable) +end + +function sound_api.node_sound_snow_defaults(soundtable) + return default.node_sound_snow_defaults(soundtable) +end + +function sound_api.node_sound_wool_defaults(soundtable) + --s/wool/default + return default.node_sound_defaults(soundtable) +end + +return sound_api \ No newline at end of file diff --git a/mods/xcompat/src/sounds/xcompat_agnostic.lua b/mods/xcompat/src/sounds/xcompat_agnostic.lua new file mode 100644 index 00000000..2dbdf30c --- /dev/null +++ b/mods/xcompat/src/sounds/xcompat_agnostic.lua @@ -0,0 +1,63 @@ +local sound_api = {} + +function sound_api.node_sound_default(soundtable) + return soundtable +end + +function sound_api.node_sound_stone_defaults(soundtable) + return soundtable +end + +function sound_api.node_sound_dirt_defaults(soundtable) + return soundtable +end + +function sound_api.node_sound_grass_defaults(soundtable) + return soundtable +end + +function sound_api.node_sound_sand_defaults(soundtable) + return soundtable +end + +function sound_api.node_sound_gravel_defaults(soundtable) + return soundtable +end + +function sound_api.node_sound_wood_defaults(soundtable) + return soundtable +end + +function sound_api.node_sound_leaves_defaults(soundtable) + return soundtable +end + +function sound_api.node_sound_glass_defaults(soundtable) + return soundtable +end + +function sound_api.node_sound_ice_defaults(soundtable) + return soundtable +end + +function sound_api.node_sound_metal_defaults(soundtable) + return soundtable +end + +function sound_api.node_sound_water_defaults(soundtable) + return soundtable +end + +function sound_api.node_sound_lava_defaults(soundtable) + return soundtable +end + +function sound_api.node_sound_snow_defaults(soundtable) + return soundtable +end + +function sound_api.node_sound_wool_defaults(soundtable) + return soundtable +end + +return sound_api \ No newline at end of file diff --git a/mods/xcompat/src/textures.lua b/mods/xcompat/src/textures.lua new file mode 100644 index 00000000..ceb7736a --- /dev/null +++ b/mods/xcompat/src/textures.lua @@ -0,0 +1,8 @@ +local filename = xcompat.gameid + +--if we dont have a materials file for the game, use minetest +if not xcompat.utilities.file_exists(xcompat.modpath .. "/src/textures/" .. filename .. ".lua") then + filename = "xcompat_agnostic" +end + +return dofile(xcompat.modpath .. "/src/textures/" .. filename .. ".lua") \ No newline at end of file diff --git a/mods/xcompat/src/textures/farlands_reloaded.lua b/mods/xcompat/src/textures/farlands_reloaded.lua new file mode 100644 index 00000000..eb06cd69 --- /dev/null +++ b/mods/xcompat/src/textures/farlands_reloaded.lua @@ -0,0 +1,57 @@ +local textures = { + gravel = "farlands_gravel.png", + brick = "farlands_brick.png", + + metal = { + steel = { + ore = "farlands_iron_ingot.png", + ingot = "farlands_iron_ingot.png", + block = "farlands_iron_block.png", + }, + gold = { + ore = "farlands_gold_ore.png", + ingot = "farlands_gold_ingot.png", + block = "farlands_gold_block.png", + }, + }, + glass = { + pane = "farlands_glass.png", + detail = "farlands_glass_detail.png", + }, + wood = { + apple = { + sapling = "farlands_apple_sapling.png", + planks = "farlands_apple_planks.png", + trunk_side = "farlands_apple_trunk.png", + trunk_top = "farlands_apple_trunk_top.png", + leaves = "farlands_apple_leaves.png", + }, + jungle = { + sapling = "farlands_jungletree_sapling.png", + planks = "farlands_jungletree_planks.png", + trunk_side = "farlands_jungletree_trunk.png", + trunk_top = "farlands_jungletree_trunk_top.png", + leaves = "farlands_jungletree_leaves.png", + }, + }, + water = { + tile = "farlands_water.png", + animated = { + source = "farlands_water_source_animated.png", + flowing = "farlands_water_flowing_animated.png", + }, + }, + wool = { + white = "farlands_wool.png", + black = "farlands_wool.png", + grey = "farlands_wool.png", + dark_grey = "farlands_wool.png", + }, + grass = { + top = "farlands_grass.png", + side = "farlands_dirt.png^farlands_grass_side.png", + dirt = "farlands_dirt.png", + }, +} + +return textures \ No newline at end of file diff --git a/mods/xcompat/src/textures/minetest.lua b/mods/xcompat/src/textures/minetest.lua new file mode 100644 index 00000000..2216922c --- /dev/null +++ b/mods/xcompat/src/textures/minetest.lua @@ -0,0 +1,57 @@ +local textures = { + gravel = "default_gravel.png", + brick = "default_brick.png", + + metal = { + steel = { + ore = "default_iron_lump.png", + ingot = "default_steel_ingot.png", + block = "default_steel_block.png", + }, + gold = { + ore = "default_gold_lump.png", + ingot = "default_gold_ingot.png", + block = "default_gold_block.png", + }, + }, + glass = { + pane = "default_glass.png", + detail = "default_glass_detail.png", + }, + wood = { + apple = { + sapling = "default_sapling.png", + planks = "default_wood.png", + trunk_side = "default_tree.png", + trunk_top = "default_tree_top.png", + leaves = "default_leaves.png", + }, + jungle = { + sapling = "default_junglesapling.png", + planks = "default_junglewood.png", + trunk_side = "default_jungletree.png", + trunk_top = "default_jungletree_top.png", + leaves = "default_jungleleaves.png", + }, + }, + water = { + tile = "default_water.png", + animated = { + source = "default_water_source_animated.png", + flowing = "default_water_flowing_animated.png", + }, + }, + wool = { + white = "wool_white.png", + black = "wool_black.png", + grey = "wool_grey.png", + dark_grey = "wool_dark_grey.png", + }, + grass = { + top = "default_grass.png", + side = "default_dirt.png^default_grass_side.png", + dirt = "default_dirt.png", + }, +} + +return textures \ No newline at end of file diff --git a/mods/xcompat/src/textures/xcompat_agnostic.lua b/mods/xcompat/src/textures/xcompat_agnostic.lua new file mode 100644 index 00000000..ae26238a --- /dev/null +++ b/mods/xcompat/src/textures/xcompat_agnostic.lua @@ -0,0 +1,65 @@ +local textures = { + gravel = "[combine:16x16^[noalpha^[colorize:#3a3b3c", + brick = "[combine:16x16^[noalpha^[colorize:#AA4A44", + + metal = { + steel = { + ore = "[combine:16x16^[noalpha^[colorize:#D3D3D3", + ingot = "[combine:16x16^[noalpha^[colorize:#D3D3D3", + block = "[combine:16x16^[noalpha^[colorize:#D3D3D3", + }, + gold = { + ore = "[combine:16x16^[noalpha^[colorize:#FFD700", + ingot = "[combine:16x16^[noalpha^[colorize:#FFD700", + block = "[combine:16x16^[noalpha^[colorize:#FFD700", + }, + }, + glass = { + pane = "[combine:16x16:" .. + "0,0=\\[combine\\:1x16\\^[noalpha\\^[colorize\\:#ffffff:" .. + "0,0=\\[combine\\:16x1\\^[noalpha\\^[colorize\\:#ffffff:" .. + "0,15=\\[combine\\:16x1\\^[noalpha\\^[colorize\\:#ffffff:" .. + "15,0=\\[combine\\:1x16\\^[noalpha\\^[colorize\\:#ffffff", + detail = "[combine:16x16:" .. + "0,0=\\[combine\\:1x16\\^[noalpha\\^[colorize\\:#ffffff:" .. + "0,0=\\[combine\\:16x1\\^[noalpha\\^[colorize\\:#ffffff:" .. + "0,15=\\[combine\\:16x1\\^[noalpha\\^[colorize\\:#ffffff:" .. + "15,0=\\[combine\\:1x16\\^[noalpha\\^[colorize\\:#ffffff", + }, + wood = { + apple = { + sapling = "[combine:16x16^[noalpha^[colorize:#654321", + planks = "[combine:16x16^[noalpha^[colorize:#654321", + trunk_side = "[combine:16x16^[noalpha^[colorize:#654321", + trunk_top = "[combine:16x16^[noalpha^[colorize:#654321", + leaves = "[combine:16x16^[noalpha^[colorize:#654321", + }, + jungle = { + sapling = "[combine:16x16^[noalpha^[colorize:#563d2d", + planks = "[combine:16x16^[noalpha^[colorize:#563d2d", + trunk_side = "[combine:16x16^[noalpha^[colorize:#563d2d", + trunk_top = "[combine:16x16^[noalpha^[colorize:#563d2d", + leaves = "[combine:16x16^[noalpha^[colorize:#563d2d", + }, + }, + water = { + tile = "[combine:16x16^[noalpha^[colorize:#00008b", + animated = { + source = "[combine:16x16^[noalpha^[colorize:#00008b", + flowing = "[combine:16x16^[noalpha^[colorize:#00008b", + }, + }, + wool = { + white = "[combine:16x16^[noalpha^[colorize:#ffffff", + black = "[combine:16x16^[noalpha^[colorize:#000000", + grey = "[combine:16x16^[noalpha^[colorize:#313b3c", + dark_grey = "[combine:16x16^[noalpha^[colorize:#313b3c", + }, + grass = { + top = "[combine:16x16^[noalpha^[colorize:#006400", + side = "[combine:16x16^[noalpha^[colorize:#006400", + dirt = "[combine:16x16^[noalpha^[colorize:#563d2d", + }, +} + +return textures \ No newline at end of file diff --git a/mods/xcompat/src/utilities.lua b/mods/xcompat/src/utilities.lua new file mode 100644 index 00000000..61a74110 --- /dev/null +++ b/mods/xcompat/src/utilities.lua @@ -0,0 +1,8 @@ +local utilities = {} + +function utilities.file_exists(name) + local f=io.open(name,"r") + if f~=nil then io.close(f) return true else return false end +end + +return utilities \ No newline at end of file diff --git a/mods/xcompat/test/nodelist/farlands_reloaded.txt b/mods/xcompat/test/nodelist/farlands_reloaded.txt new file mode 100644 index 00000000..29833c76 --- /dev/null +++ b/mods/xcompat/test/nodelist/farlands_reloaded.txt @@ -0,0 +1,356 @@ +fl_furniture:yellow_ipe_table +fl_trees:palm_trunk +fl_stone:mossy_stone +fl_trees:acacia_sapling +fl_doors:copper_door_a +fl_trees:jungletree_plank +fl_workshop:furnace_active +fl_topsoil:wet_farmland +fl_trees:spruce_leaves +fl_stone:stone_brick +fl_light_sources:lantern +fl_plantlife:red_mushroom_leaves +fl_stone:basalt +fl_topsoil:condensed_ice +fl_doors:apple_door_b +fl_beds:bed_pink +fl_plantlife:petunia_blue +fl_trees:acacia_leaves +fl_stone:basalt_block +fl_ores:coal_in_tuff +fl_topsoil:sea_grass_3 +fl_agriculture:carrot_2 +fl_beds:bed_violet +fl_stone:basalt_rubble +fl_furniture:spruce_bench +fl_ores:copper_in_tuff +fl_trees:willow_plank +fl_trees:yellow_ipe_plank_fence +fl_storage:spruce_vessel_shelf +fl_beds:bed_blue +fl_stone:stone_block +fl_stone:tuff_rubble +fl_ores:mithite_in_stone +fl_topsoil:savannah_dirt_with_grass +fl_furniture:pine_table +fl_trees:pine_plank_fence +fl_furniture:baobab_chair +fl_plantlife:grass_2 +fl_trees:pine_sapling +fl_beds:bed_dark_green +fl_plantlife:cactus +fl_storage:spruce_book_shelf +fl_signs:sign_wood +fl_plantlife:pink_ground_flower +fl_doors:steel_door_b +fl_topsoil:sea_grass_1 +fl_trees:aspen_leaves +fl_stone:ors_brick +fl_doors:jungletree_door_a +fl_paintings:forest +fl_storage:spruce_multi_shelf +fl_beds:bed_red +fl_tnt:tnt +fl_beds:bed_brown +fl_storage:pine_multi_shelf +fl_ores:mithite_block +fl_beds:bed_orange +fl_ores:coal_in_desert_stone +fl_plantlife:red_ground_flower +fl_ores:gold_in_desert_stone +fl_stone:silver_sandstone_block +fl_storage:wood_chest +fl_furniture:aspen_table +fl_doors:aspen_door_a +fl_stone:ors +fl_stone:sandstone_brick +fl_doors:pine_door_b +fl_furniture:acacia_table +fl_trees:acacia_trunk +fl_stone:mossy_stone_block +fl_doors:baobab_door_b +fl_plantlife:pansy_purple +fl_industrial:conveyor_funnel +fl_stone:savannah_rubble +fl_trains:straight_rise_track +fl_storage:baobab_book_shelf +fl_plantlife:purple_allium +fl_ores:diamond_block +fl_topsoil:dirt_with_grass +fl_plantlife:ground_waterlily +fl_plantlife:flowerpot +fl_plantlife:grass_4 +fl_storage:pine_book_shelf +fl_doors:palm_door_a +fl_furniture:willow_table +fl_trains:straight_45_track +fl_trees:palm_leaves +fl_glass:framed_glass_panes +fl_storage:yellow_ipe_vessel_shelf +fl_ores:coal_block +fl_plantlife:dandelion_yellow +fl_beds:bed_cyan +fl_topsoil:gravel +fl_storage:acacia_book_shelf +fl_furniture:baobab_bench +fl_furniture:willow_bench +fl_plantlife:savannah_grass_1 +fl_industrial:conveyor +fl_storage:acacia_vessel_shelf +fl_light_sources:chain +fl_trees:spruce_plank +fl_trees:apple_leaves +fl_trees:baobab_leaves +fl_stone:silver_sand +fl_stone:desert_stone +fl_furniture:spruce_chair +fl_ores:copper_in_desert_stone +fl_topsoil:snow_block +fl_ores:mithite_in_savannah +fl_trees:acacia_plank +fl_topsoil:dirt +fl_fire:fire +fl_stone:gneiss_rubble +fl_furniture:acacia_bench +fl_storage:willow_vessel_shelf +fl_plantlife:lantana +fl_stone:sandstone +fl_furniture:jungletree_chair +fl_workshop:furnace +fl_stone:gneiss +fl_agriculture:potato_4 +fl_topsoil:permafrost_with_stones +fl_topsoil:snow +fl_trees:baobab_plank +fl_stone:tuff_brick +fl_stone:desert_sandstone_block +fl_bones:bone_block +fl_stone:basalt_brick +fl_doors:steel_door_a +fl_furniture:aspen_bench +fl_ores:tin_in_savannah +fl_trees:palm_plank_fence +fl_doors:apple_door_a +fl_wool:wool +fl_furniture:spruce_table +fl_agriculture:carrot_1 +fl_ores:iron_in_stone +fl_stone:desert_sandstone_brick +fl_storage:apple_empty_shelf +fl_stone:gneiss_block +fl_stone:mossy_stone_rubble +fl_agriculture:carrot_3 +fl_trees:willow_trunk +fl_trees:pine_leaves +fl_trains:curve_right_track +fl_doors:copper_door_b +fl_doors:jungletree_door_b +fl_furniture:jungletree_bench +fl_doors:willow_door_b +fl_topsoil:sea_grass_2 +fl_ores:gold_in_ors +fl_doors:willow_door_a +fl_trains:switch_right_track +fl_doors:aspen_door_b +fl_doors:palm_door_b +fl_stone:stone +fl_plantlife:rose +fl_doors:yellow_ipe_door_b +fl_doors:yellow_ipe_door_a +fl_plantlife:grass_3 +fl_storage:apple_vessel_shelf +fl_plantlife:tulip +fl_light_sources:torch +fl_trees:palm_sapling +fl_doors:blocker_top +fl_bricks:terracotta +fl_bricks:clay_block +fl_bricks:brick +fl_agriculture:carrot_4 +fl_paintings:cthulhu +fl_trees:aspen_trunk +fl_furniture:willow_chair +fl_glass:tinted_framed_glass_panes +fl_stone:sandstone_block +fl_glass:tinted_framed_glass +fl_ores:gold_block +fl_furniture:apple_chair +fl_glass:framed_glass +fl_storage:pine_vessel_shelf +fl_beds:bed_yellow +fl_beds:bed_black +fl_stone:silver_sandstone +fl_beds:bed_dark_grey +fl_beds:bed_green +fl_ores:tin_in_tuff +fl_beds:bed_grey +fl_beds:bed_magenta +fl_beds:bed_white +fl_wildlife:spawner +fl_wool:wool_carpet +fl_paintings:dragon +fl_topsoil:dirt_with_snow +fl_ores:tin_block +fl_furniture:baobab_table +fl_dyes:demo_node +fl_plantlife:viola +fl_ores:diamond_in_ors +fl_plantlife:savannah_grass_4 +fl_plantlife:oxeye_daisy +fl_plantlife:geranium +fl_plantlife:mushroom_trunk +fl_stone:ors_rubble +fl_doors:baobab_door_a +fl_light_sources:lantern_c +fl_doors:acacia_door_b +fl_plantlife:petunia_white +fl_storage:spruce_empty_shelf +fl_plantlife:petunia_pink +fl_ores:tin_in_stone +fl_ores:mithite_in_desert_stone +fl_stone:desert_sand +fl_plantlife:pansy_blue +fl_plantlife:frozen_rose +fl_ores:gold_in_tuff +fl_stone:savannah_brick +fl_ores:coal_in_savannah +fl_plantlife:blue_ground_flower +fl_ores:iron_in_desert_stone +fl_industrial:injector +fl_trees:aspen_plank_fence +fl_plantlife:savannah_grass_2 +fl_plantlife:dandelion_white +fl_plantlife:flame_lily +fl_plantlife:brown_mushroom +fl_plantlife:red_mushroom +fl_trees:jungletree_plank_fence +fl_plantlife:brown_mushroom_leaves +fl_plantlife:raw_mushroom_leaves +fl_plantlife:savannah_grass_5 +fl_stone:tuff_block +fl_plantlife:savannah_grass_3 +fl_trees:acacia_plank_fence +fl_trees:jungletree_sapling +fl_furniture:pine_bench +fl_plantlife:grass_1 +fl_plantlife:lavender_flower +fl_ores:coal_in_stone +fl_plantlife:grass_5 +fl_ores:bronze_block +fl_trees:yellow_ipe_plank +fl_stone:gneiss_brick +fl_ores:diamond_in_savannah +fl_trees:pine_plank +fl_ores:diamond_in_desert_stone +fl_ores:diamond_in_tuff +fl_storage:baobab_empty_shelf +fl_storage:yellow_ipe_empty_shelf +fl_paintings:landscape +fl_stairs:tablesaw +fl_furniture:yellow_ipe_chair +fl_ores:copper_in_ors +fl_trees:apple_trunk +fl_trees:yellow_ipe_leaves +fl_trees:dead_aspen_leaves +fl_liquids:water_flowing +fl_furniture:aspen_chair +fl_plantlife:lobelia +fl_topsoil:dry_farmland +fl_trees:apple_plank +ignore +fl_trains:switch_left_track +fl_storage:willow_empty_shelf +fl_trees:spruce_plank_fence +fl_ores:copper_in_savannah +fl_stone:sand +fl_furniture:pine_chair +fl_storage:aspen_empty_shelf +fl_topsoil:coarse_dirt +fl_storage:acacia_multi_shelf +fl_ores:mithite_in_ors +fl_paintings:waterlilie +fl_stone:tuff +fl_stone:savannah_block +fl_trees:willow_plank_fence +fl_storage:baobab_vessel_shelf +fl_furniture:apple_table +fl_paintings:rose +fl_liquids:river_water_source +fl_trees:pine_trunk +fl_storage:aspen_vessel_shelf +fl_topsoil:ice +fl_storage:aspen_book_shelf +fl_liquids:lava_source +fl_agriculture:potato_2 +fl_storage:aspen_multi_shelf +fl_storage:willow_book_shelf +fl_furniture:acacia_chair +fl_trains:crossing_track +fl_trees:apple_plank_fence +fl_liquids:river_water_flowing +fl_trees:baobab_sapling +fl_ores:gold_in_stone +fl_trains:curve_left_track +fl_trains:straight_track +fl_doors:acacia_door_a +fl_storage:apple_multi_shelf +fl_trees:aspen_plank +fl_trees:spruce_trunk +fl_stone:desert_stone_rubble +fl_trees:baobab_trunk +fl_ores:copper_in_stone +fl_industrial:conveyor_left +fl_storage:acacia_empty_shelf +fl_trees:palm_plank +fl_agriculture:potato_1 +fl_trees:apple_sapling +fl_trees:baobab_plank_fence +fl_furniture:yellow_ipe_bench +fl_ores:tin_in_desert_stone +fl_furniture:palm_bench +fl_storage:yellow_ipe_book_shelf +fl_stone:savannah +fl_furniture:apple_bench +fl_ores:iron_block +fl_furniture:palm_chair +fl_glass:tinted_connected_glass +fl_agriculture:potato_3 +fl_trees:aspen_sapling +fl_storage:baobab_multi_shelf +fl_storage:willow_multi_shelf +fl_furniture:palm_table +fl_furniture:jungletree_table +fl_trees:jungletree_trunk +fl_stone:stone_rubble +fl_doors:pine_door_a +fl_storage:pine_empty_shelf +fl_stone:mossy_stone_brick +fl_stone:ors_block +fl_paintings:possessedwoman +fl_storage:apple_book_shelf +fl_storage:yellow_ipe_multi_shelf +fl_stone:desert_stone_block +fl_stone:desert_stone_brick +fl_trees:jungletree_leaves +fl_liquids:water_source +fl_stone:desert_sandstone +fl_trees:willow_leaves +fl_workshop:anvil +fl_paintings:mistiriusgirl +fl_trees:yellow_ipe_trunk +fl_topsoil:savannah_dirt +fl_ores:coal_in_ors +fl_topsoil:permafrost +fl_liquids:lava_flowing +fl_ores:iron_in_ors +fl_industrial:conveyor_right +fl_ores:iron_in_tuff +fl_ores:iron_in_savannah +fl_ores:copper_block +fl_stone:silver_sandstone_brick +air +fl_ores:gold_in_savannah +fl_ores:tin_in_ors +fl_ores:mithite_in_tuff +fl_stone:bedrock +fl_ores:diamond_in_stone diff --git a/mods/xcompat/test/nodelist/hades_revisited.txt b/mods/xcompat/test/nodelist/hades_revisited.txt new file mode 100644 index 00000000..0d219dc2 --- /dev/null +++ b/mods/xcompat/test/nodelist/hades_revisited.txt @@ -0,0 +1,2966 @@ +columnia:column_linktee_hades_core_tuff_baked +gluncarp:white +hades_bedrock:bedrock +columnia:column_stairsubpillar_hades_trees_colwood_dark_green +columnia:column_bottom_hades_trees_colwood_dark_grey +hades_core:brick_dark_grey +hades_doors:door_stone_e +columnia:column_crosslink_hades_core_essexite +hades_core:apolline_brick +columnia:column_linkcross_hades_core_orangite +hades_stairs:stair_cream_wood +hades_furniture:table_lamp_med +columnia:column_top_hades_core_orangite +columnia:column_mid_hades_core_brick_pink +columnia:column_linktee_hades_core_tuff +hades_chests:chest_green +hades_stairs:slab_marble +hades_stairs:stair_out_colwood_dark_grey +hades_stairs:stair_tuff_baked +columnia:column_stairsubpillar_hades_core_mossycobble +hades_flowers:violet +hades_refruit:bud_orange +hades_stairs:stair_in_floor_marble_marble +columnia:column_linktee_down_hades_trees_colwood_red +columnia:column_stairsubpillar_hades_trees_birch_bark +hades_doors:door_chondrite_d +hades_glowcrystals:window_glow +hades_stairs:stair_birch_bark +columnia:column_bottom_hades_core_orangite +columnia:column_linkangle_down_hades_core_chondrite_brick +hades_doors:door_steel_white_d +hades_doors:door_stone_baked_b +hades_core:water_flowing +hades_doors:gate_jungle_wood_closed +columnia:column_linktee_columnia_rusty_block +columnia:column_linkangle_hades_trees_colwood_yellow +columnia:column_linkangle_hades_trees_pale_bark +hades_stairs:slab_tuff_baked +hades_stairs:stair_in_brick_pink +columnia:column_mid_hades_trees_colwood_magenta +hades_doors:door_steel_green_a +hades_stairs:step_brick_dark_green +hades_doors:door_steel_red_a +hades_stairs:stair_in_pale_bark +columnia:column_bottom_hades_trees_colwood_uncolored +columnia:column_linkvertical_hades_core_apolline +columnia:column_linkangle_down_hades_core_azurite +hades_stairs:slab_colwood_pink +hades_stairs:slab_jungle_bark +columnia:column_bottom_hades_core_brick_magenta +columnia:column_linkdown_hades_trees_jungle_wood +hades_trees:wood +hades_torches:torch +hades_trees:cocoa_pod +hades_fences:fence_rusty +hades_stairs:step_out_colwood_green +columnia:column_linktee_hades_core_essexite +columnia:column_linkangle_down_hades_trees_colwood_white +gluncarp:blackgold +hades_core:stone_with_emerald +hades_stairs:slab_copperblock +columnia:column_linkcross_hades_trees_wood +columnia:column_mid_hades_core_brick_dark_grey +hades_tiles:floor_stone_tuffbaked +columnia:column_linktee_hades_core_brick_dark_grey +columnia:column_linkangle_down_hades_core_brick_violet +hades_stairs:step_out_cinnabar +hades_stairs:stair_out_floor_cream_cream +hades_core:brick_black +hades_trees:leaves +hades_bushes:orange +hades_stairs:stair_out_orangite +columnia:column_linktee_down_hades_trees_colwood_grey +hades_core:emerald_block +hades_trees:jungle_sapling +columnia:column_link_hades_trees_colwood_red +hades_stairs:slab_cyan +hades_farming:soil +hades_cloth:green +hades_doors:door_steel_black_b +hades_trees:birch_tree +hades_doors:door_sandstone_volcanic_e +columnia:column_linkangle_hades_core_marble +hades_doors:door_glass_b +hades_doors:door_chondrite_e +hades_stairs:stair_floor_stonebaked_stonebaked +hades_stairs:stair_out_sandstone_volcanic_brick +columnia:column_linkangle_down_hades_core_brick_red +columnia:column_stairsubpillar_hades_core_tuff_baked +columnia:column_stairsub_hades_trees_colwood_violet +hades_doors:door_dungeon1_c +hades_core:chondrite_brick +columnia:column_linkangle_down_hades_trees_colwood_violet +hades_windows:paperwall +hades_torches:torch_wall +columnia:column_stairsubpillar_hades_core_brick_blue +hades_stairs:stair_blue +hades_stairs:slab_floor_cream_cream +columnia:column_stairsub_hades_trees_canvas_bark +hades_doors:door_steel_red_b +hades_core:tinblock +hades_stairs:stair_in_stone +columnia:column_crosslink_hades_core_brick_black +hades_tiles:floor_tuffbaked_tuff +hades_doors:door_dungeon2_a +columnia:column_linkdown_hades_core_cobble_baked +columnia:column_linkangle_down_hades_core_cobble_sandstone +hades_core:stone +columnia:column_stairsubpillar_hades_trees_colwood_dark_grey +hades_stairs:slab_chondrite_brick +hades_windows:window_cream_wood +hades_stairs:step_colwood_uncolored +columnia:column_linktee_hades_trees_colwood_black +columnia:column_crosslink_hades_core_lillite +hades_walls:cobble_baked +hades_core:copperblock +hades_stairs:stair_in_white +columnia:column_linkvertical_hades_core_brick_white +columnia:column_linktee_down_hades_core_cobble_sandstone +hades_trees:banana_leaves +columnia:column_linkangle_hades_core_sandstone_volcanic +columnia:column_linkvertical_hades_trees_pale_bark +hades_refruit:flower_orange +hades_doors:door_steel_green_b +hades_stairs:stair_out_stone +hades_stairs:stair_out_brick_orange +columnia:column_linkvertical_hades_core_stone +columnia:column_linktee_down_hades_core_stone_baked +hades_stairs:stair_out_white +columnia:column_stairsubpillar_hades_core_basalt +hades_refruit:bud_olive +hades_stairs:slab_essexite +hades_stairs:step_in_colwood_uncolored +hades_waterplants:seaweed +gluncarp:cloth_blackgold +hades_stairs:slab_cream_wood +hades_doors:door_steel_pink_a +hades_farming:seed_tomato +hades_doors:door_steel_brown_a +hades_stairs:step_in_stonebrick_baked +hades_stairs:slab_brick_violet +hades_stairs:slab_charred_bark +hades_doors:door_steel_white_e +columnia:column_stairsubpillar_hades_core_brick_dark_grey +columnia:column_link_hades_core_sandstone_volcanic +signs_lib:sign_wall_white_red +hades_stairs:step_brick_brown +columnia:column_stairsubpillar_hades_core_essexite +columnia:column_linkangle_down_hades_core_stone +columnia:column_bottom_hades_trees_wood +columnia:column_link_hades_core_olivine +columnia:column_linkangle_hades_trees_cream_wood +hades_stairs:slab_green +columnia:column_linkangle_hades_core_olivine_brick +hades_fences:fence_cream_wood +columnia:column_stairsubpillar_hades_core_obsidian +hades_stairs:slab_double_steelblock +columnia:column_stairsubpillar_hades_core_stonebrick_baked +columnia:column_bottom_hades_core_tuff_baked_brick +hades_trees:canvas_sapling +hades_stairs:slab_cobble_sandstone_volcanic +columnia:column_bottom_hades_trees_colwood_dark_green +hades_stairs:slab_pink +columnia:column_linkdown_hades_trees_lush_wood +hades_stairs:stair_stone_baked +hades_doors:door_rusty_c +columnia:column_mid_hades_trees_colwood_red +columnia:column_stairsub_hades_core_chondrite_brick +columnia:column_bottom_hades_core_cobble_sandstone_volcanic +columnia:column_stairsub_hades_trees_colwood_grey +columnia:column_crosslink_hades_core_cobble_sandstone +hades_doors:door_steel_darkgreen_b +columnia:column_linkangle_down_hades_core_obsidian +hades_stairs:step_in_olivine +hades_stairs:slab_double_copperblock +hades_core:floor_chondrite_stone +hades_doors:door_steel_black_c +hades_tiles:floor_tuffbaked_tuffbaked +columnia:column_linktee_hades_trees_colwood_violet +columnia:column_linkcrossdown_hades_core_tuff +hades_trees:colwood_green +hades_doors:door_stone_baked_c +hades_doors:door_obsidian_glass_b +hades_chests:chest_green_locked +columnia:column_linkangle_hades_core_olivine +hades_doors:door_glass_e +columnia:column_linkangle_hades_core_brick_cyan +hades_stairs:stair_in_floor_pale_pale +hades_stairs:step_in_essexite +columnia:column_linkcrossdown_hades_trees_birch_bark +hades_stairs:stair_brick_cyan +columnia:column_linkdown_hades_trees_colwood_white +hades_stairs:stair_azurite +columnia:column_linkcrossdown_hades_core_cinnabar +hades_stairs:step_brick_red +columnia:column_link_hades_trees_pale_bark +hades_tiles:floor_lush_pale +hades_trees:charred_tree +hades_stairs:stair_in_brick_brown +columnia:column_linkvertical_hades_core_tuff_baked_brick +hades_stairs:stair_in_red +hades_doors:door_steel_red_c +hades_stairs:slab_pale_bark +columnia:column_link_hades_core_brick_yellow +hades_doors:door_rusty_a +hades_stairs:stair_out_orange +columnia:column_linkvertical_hades_trees_jungle_wood +columnia:column_linkvertical_hades_trees_colwood_uncolored +columnia:column_link_hades_core_cobble_sandstone +hades_furnaces:furnace +hades_stairs:step_in_jungle_wood +hades_flowerpots:flower_pot_cultivated_jungle_leaves +columnia:column_linkangle_down_hades_core_brick_magenta +hades_doors:door_wood_e +air +columnia:column_linkcrossdown_hades_core_brick +columnia:column_linkangle_down_hades_trees_colwood_orange +columnia:column_linkangle_down_hades_trees_wood +hades_stairs:step_tinblock +hades_farming:straw +columnia:column_linkvertical_columnia_rusty_block +hades_grass:dead_grass_5 +hades_trees:colwood_dark_green +columnia:column_mid_hades_trees_pale_wood +hades_core:volcanic_sand +hades_stairs:slab_brick_dark_green +hades_doors:door_steel_pink_b +hades_doors:door_steel_green_c +hades_stairs:step_in_tuff_baked_brick +columnia:column_linktee_down_hades_trees_wood +columnia:column_stairsubpillar_hades_core_brick +hades_trees:colwood_pink +hades_trees:orange_sapling +hades_waterplants:seaweed_4 +columnia:column_bottom_hades_core_brick_orange +columnia:column_bottom_hades_core_turquosite +hades_stairs:stair_out_floor_tuff_tuff +columnia:column_mid_hades_core_sandstone_volcanic_brick +columnia:column_linkcross_hades_core_apolline +columnia:column_linkangle_hades_core_tuff_brick +hades_stairs:step_out_colwood_uncolored +columnia:column_linkcrossdown_hades_trees_colwood_brown +hades_itemshow:pedestal_cinnabar +hades_stairs:slab_brick_cyan +columnia:column_crosslink_hades_trees_jungle_wood +columnia:column_linktee_down_hades_core_tuff_brick +hades_doors:door_steel_darkgreen_e +columnia:column_linktee_hades_core_brick_red +columnia:column_linkdown_hades_core_brick_orange +hades_stairs:stair_in_colwood_dark_green +hades_stairs:step_in_floor_wood_wood +columnia:column_linkcross_hades_core_brick_brown +columnia:column_bottom_hades_core_basalt_brick +columnia:column_crosslink_hades_core_chondrite_brick +columnia:column_linkcross_hades_core_tuff +columnia:column_linkangle_hades_core_tuff_baked_brick +hades_stairs:stair_out_grey +hades_refruit:flower_banana +columnia:column_linkvertical_hades_core_brick_red +columnia:column_crosslink_hades_core_obsidian +columnia:column_link_hades_trees_colwood_green +hades_stairs:stair_colwood_red +hades_tiles:floor_sandstonevolcanic_sandstone +hades_stairs:stair_in_violet +hades_stairs:stair_in_sandstone_volcanic +columnia:machine +columnia:column_linkcrossdown_hades_core_tuff_brick +hades_core:cactus_brick +columnia:column_linkdown_hades_core_stonebrick_baked +hades_core:papyrus +columnia:column_linkangle_hades_core_chondrite +columnia:column_top_hades_core_brick_yellow +hades_chests:chest_red_locked +hades_stairs:slab_yellow +hades_doors:door_sandstone_d +columnia:column_linkcrossdown_hades_core_brick_brown +hades_doors:door_essexite_d +gluncarp:brown +hades_windows:window_jungle_wood +hades_furniture:table_lamp_hi +columnia:column_stairsub_hades_core_tuff_brick +columnia:column_linkangle_hades_core_brick_brown +columnia:column_linktee_hades_core_tuff_baked_brick +hades_trees:cultivated_jungle_leaves +columnia:column_stairsubpillar_hades_core_cobble_sandstone +columnia:column_linkvertical_hades_core_essexite_brick +hades_doors:door_wood_jungle_a +hades_itemshow:pedestal_azurite +hades_core:ladder_bronze +columnia:column_stairsubpillar_hades_core_brick_pink +hades_doors:door_obsidian_glass_a +columnia:column_linkvertical_hades_trees_colwood_grey +hades_bushes:blue +hades_stairs:stair_in_brick_dark_green +columnia:column_linktee_down_hades_core_tuff +columnia:column_bottom_hades_trees_colwood_pink +columnia:column_link_hades_trees_colwood_dark_grey +columnia:column_stairsub_hades_trees_lush_wood +columnia:column_top_hades_core_stone +columnia:column_crosslink_hades_trees_colwood_green +hades_core:cactus +hades_windows:window_wood_green +hades_core:basalt_block +columnia:column_linkcrossdown_hades_core_essexite +columnia:column_linkvertical_hades_core_sandstone +hades_trees:burned_branches +columnia:column_bottom_hades_core_sandstone_volcanic_brick +hades_core:sandstone_volcanic_brick +hades_stairs:slab_colwood_dark_green +columnia:column_link_hades_core_chondrite_brick +columnia:column_top_hades_core_brick_orange +columnia:column_linkvertical_hades_trees_colwood_pink +hades_stairs:stair_in_straw +hades_doors:door_steel_brown_c +hades_stairs:slab_colwood_violet +hades_doors:door_steel_magenta_d +hades_doors:door_marble_d +columnia:column_link_hades_core_brick_violet +hades_stairs:stair_in_colwood_magenta +hades_stairs:slab_brick_black +hades_trees:charred_bark +columnia:column_linkcross_hades_core_brick_dark_green +columnia:column_crosslink_hades_core_brick_grey +hades_fences:fence_wood_black +hades_stairs:step_out_floor_pale_pale +columnia:column_linkcrossdown_hades_core_brick_pink +columnia:column_linkvertical_hades_core_olivine +columnia:column_crosslink_hades_core_stone +columnia:column_mid_hades_core_tuff +columnia:column_stairsubpillar_hades_core_chondrite +columnia:column_linkvertical_hades_core_basalt +columnia:column_mid_hades_trees_colwood_uncolored +hades_glowcrystals:glowcrystal_ore +columnia:column_linktee_down_hades_core_mossycobble +columnia:column_stairsub_hades_core_brick_violet +hades_doors:door_wood_lush_a +columnia:column_linktee_hades_core_essexite_brick +columnia:column_linkcrossdown_hades_core_brick_blue +hades_stairs:step_out_colwood_blue +hades_core:lava_source +hades_doors:door_steel_pink_c +columnia:column_linktee_down_hades_core_basalt_brick +columnia:column_stairsubpillar_hades_core_brick_black +hades_doors:door_wood_jungle_b +hades_stairs:slab_orange +columnia:column_mid_hades_trees_colwood_white +hades_stairs:stair_out_chondrite +columnia:column_linkangle_down_hades_core_brick_orange +columnia:column_linkangle_down_hades_core_basalt +hades_doors:door_steel_darkgreen_d +columnia:column_top_hades_trees_birch_bark +hades_flowerpots:flower_pot_canvas_leaves +hades_tiles:floor_essexitegold_essexitegold +columnia:column_linkcross_hades_core_brick_magenta +columnia:column_linktee_down_hades_core_essexite +hades_stairs:step_out_essexite +columnia:column_stairsub_hades_trees_colwood_orange +columnia:column_crosslink_hades_core_stone_baked +hades_stairs:stair_out_floor_stonebaked_stonebaked +hades_fences:fence_wood_pink +columnia:column_stairsub_hades_core_essexite +hades_stairs:step_in_floor_marble_marble +hades_stairs:step_brick_violet +columnia:column_crosslink_hades_core_mossycobble +hades_stairs:step_steelblock +hades_flowers:orange +columnia:column_linkdown_hades_core_marble +hades_tiles:floor_tuffbaked_stone +columnia:column_linkdown_hades_core_tuff +hades_stairs:stair_out_marble +columnia:column_mid_hades_core_basalt +hades_doors:gate_pale_wood_closed +columnia:column_linktee_hades_core_brick_white +hades_waterplants:waterlily_s4 +columnia:column_linkvertical_hades_core_orangite +columnia:column_crosslink_hades_core_brick_dark_grey +columnia:column_linktee_hades_core_brick_pink +columnia:column_crosslink_hades_trees_colwood_white +columnia:column_crosslink_hades_core_cobble_sandstone_volcanic +columnia:column_bottom_hades_core_tuff_baked +hades_flowerpots:flower_pot_yellow +hades_trees:sapling +hades_windows:window_wood_blue +columnia:column_linkdown_hades_core_brick_blue +columnia:column_linkdown_hades_trees_colwood_dark_green +hades_core:brick_red +columnia:column_top_hades_core_tuff_brick +columnia:column_stairsubpillar_hades_trees_colwood_cyan +columnia:column_top_hades_trees_bark +hades_doors:door_marble_c +hades_chests:chest_blue +hades_bushes:red +hades_tiles:floor_tuff_chondrite +columnia:column_linkdown_hades_trees_bark +columnia:column_linkangle_hades_trees_colwood_green +columnia:column_stairsubpillar_columnia_rusty_block +hades_doors:door_sandstone_volcanic_d +columnia:column_linkangle_down_hades_core_tuff_brick +hades_doors:gate_cream_wood_closed +columnia:column_linkdown_hades_core_tuff_brick +columnia:column_linktee_down_hades_core_chondrite_brick +hades_refruit:bud_coconut +hades_stairs:step_glowcrystal_block +hades_stairs:slab_white +hades_doors:hidden +columnia:column_linkangle_hades_trees_bark +columnia:column_linkdown_hades_trees_canvas_bark +columnia:column_linkcross_hades_core_brick_orange +columnia:column_linktee_down_hades_core_brick_violet +hades_stairs:stair_out_brick_brown +columnia:column_linkvertical_hades_core_basalt_brick +hades_stairs:stair_out_stone_baked +hades_stairs:stair_in_tuff +columnia:column_top_hades_core_basalt_brick +columnia:column_link_hades_core_brick_black +hades_waterplants:waterlily_225 +columnia:column_linkangle_hades_trees_birch_bark +columnia:column_linkdown_hades_core_brick_dark_grey +columnia:column_link_hades_trees_colwood_black +columnia:column_link_hades_core_brick_white +columnia:column_linktee_hades_core_cinnabar +hades_core:brick_yellow +hades_stairs:stair_out_brick_dark_grey +columnia:column_linktee_down_hades_core_brick_grey +columnia:column_stairsub_hades_core_cinnabar +columnia:column_crosslink_hades_trees_colwood_grey +columnia:column_crosslink_hades_core_olivine_brick +gluncarp:blue +hades_core:brick_magenta +hades_stairs:stair_in_floor_stonebaked_stonebaked +hades_doors:door_wood_lush_b +hades_stairs:step_in_basalt_brick +columnia:column_stairsub_hades_core_obsidianbrick +hades_stairs:stair_floor_essexitegold_essexitegold +columnia:column_stairsubpillar_hades_core_brick_orange +hades_stairs:step_in_brick_dark_grey +columnia:column_linkdown_hades_core_sandstone +hades_stairs:step_out_floor_essexitegold_essexitegold +columnia:column_crosslink_hades_trees_colwood_red +columnia:column_stairsub_hades_core_brick_grey +columnia:column_linkangle_down_hades_core_tuff_baked_brick +hades_furniture:binding_rusty_bars +columnia:column_linktee_hades_trees_canvas_bark +columnia:column_link_hades_trees_colwood_pink +hades_stairs:step_out_basalt +columnia:column_mid_hades_trees_colwood_green +hades_vines:cave +columnia:column_linkangle_down_columnia_rusty_block +columnia:column_link_hades_core_brick_brown +hades_stairs:step_apolline +hades_doors:trapdoor +columnia:column_bottom_hades_core_sandstone_volcanic +columnia:column_link_hades_trees_pale_wood +columnia:column_linkangle_down_hades_trees_pale_bark +hades_tiles:floor_stone_sandstonevolcanic +hades_stairs:stair_colwood_violet +hades_doors:trapdoor_pale +columnia:column_mid_hades_core_tuff_baked +hades_fences:fence_wood_yellow +hades_stairs:step_in_colwood_white +hades_stairs:slab_floor_pale_pale +columnia:column_stairsubpillar_hades_core_tuff_brick +hades_trees:colwood_grey +columnia:column_crosslink_hades_core_orangite +hades_stairs:stair_out_charred_bark +hades_core:obsidian_glass +columnia:column_linkangle_down_hades_core_cobble_sandstone_volcanic +hades_doors:door_wood_jungle_c +hades_itemshow:pedestal_orangite +hades_stairs:stair_brick_white +hades_core:olivine +columnia:column_linkvertical_hades_core_turquosite +hades_stairs:slab_bark +hades_stairs:stair_in_basalt_brick +columnia:column_linkangle_down_hades_core_brick_brown +hades_farming:spice_2 +columnia:column_bottom_hades_trees_colwood_orange +hades_stairs:stair_essexite +columnia:column_bottom_hades_trees_pale_bark +hades_core:brick_orange +hades_torches:torch_low_ceiling +hades_core:water_source +hades_doors:door_wood_pale_b +columnia:column_crosslink_hades_core_stonebrick_baked +columnia:column_linktee_down_hades_core_tuff_baked_brick +hades_trees:cream_wood +columnia:column_stairsub_hades_core_tuff_baked +hades_stairs:step_in_cobble_sandstone_volcanic +columnia:column_link_hades_core_chondrite +hades_refruit:flower_olive +columnia:column_linkangle_down_hades_core_basalt_brick +columnia:column_linkcrossdown_hades_core_chondrite +hades_wardrobes:wardrobe +hades_stairs:stair_out_black +hades_stairs:step_in_colwood_dark_grey +hades_tiles:floor_tuff_tuff +columnia:column_linkcross_hades_trees_jungle_wood +hades_stairs:step_in_jungle_bark +hades_windows:window_obsidian +columnia:column_linktee_hades_core_stone +hades_doors:door_steel_brown_b +hades_doors:door_rusty_d +hades_core:goldblock +hades_stairs:stair_in_brown +hades_tiles:floor_sandstone_stonebaked +hades_chests:chest +columnia:column_crosslink_hades_core_brick_green +hades_fences:fence_wood_magenta +columnia:column_mid_hades_core_cobble_sandstone_volcanic +columnia:column_linkcrossdown_hades_trees_colwood_pink +hades_furnaces:prism_furnace +hades_stairs:stair_brick_black +hades_doors:door_essexite_a +hades_stairs:step_colwood_brown +columnia:column_linktee_hades_core_cobble_sandstone +hades_doors:door_dungeon2_e +columnia:column_stairsubpillar_hades_core_cobble_baked +hades_stairs:step_out_brick_pink +hades_doors:door_steel_violet_d +hades_stairs:step_out_floor_essexite_essexite +hades_stairs:stair_in_colwood_red +columnia:column_linktee_down_hades_trees_colwood_yellow +columnia:column_stairsub_hades_core_brick_cyan +hades_flowerpots:flower_pot_coconut_sapling +columnia:column_linkangle_hades_core_brick_green +hades_stairs:slab_red +columnia:column_stairsub_hades_core_brick +columnia:column_linkvertical_hades_core_tuff_baked +hades_stairs:stair_grey +columnia:column_bottom_hades_core_sandstone +columnia:column_linktee_down_hades_trees_colwood_brown +columnia:column_stairsubpillar_hades_core_marble +columnia:column_bottom_hades_trees_colwood_grey +hades_tiles:floor_tuff_stone +hades_doors:door_sandstone_volcanic_a +columnia:column_crosslink_hades_core_tuff_baked +hades_stairs:step_in_colwood_brown +hades_core:cobble_sandstone +hades_doors:door_steel_magenta_b +hades_tiles:floor_stonebaked_sandstone +columnia:column_link_hades_trees_colwood_violet +hades_doors:door_rusty_b +columnia:column_stairsubpillar_hades_trees_colwood_violet +columnia:column_linkcrossdown_hades_core_brick_white +hades_doors:door_wood_b +hades_fences:fence_wood_violet +hades_windows:window_wood_cyan +columnia:column_linkcross_hades_core_brick +columnia:column_bottom_columnia_rusty_block +hades_farming:tomato_2 +hades_farming:wheat_3 +columnia:column_bottom_hades_trees_bark +columnia:column_linkangle_hades_trees_colwood_grey +columnia:column_linktee_down_hades_core_stone +columnia:column_crosslink_hades_core_sandstone_volcanic_brick +columnia:column_linkvertical_hades_core_brick_pink +columnia:column_linkcrossdown_hades_core_cobble_sandstone_volcanic +hades_stairs:stair_in_yellow +hades_trees:pale_leaves +hades_doors:door_steel_darkgrey_e +columnia:column_link_hades_core_obsidian +hades_itemshow:pedestal_essexite +columnia:column_stairsub_hades_core_sandstone_volcanic +hades_stairs:stair_in_pink +columnia:column_linkdown_hades_trees_colwood_pink +columnia:column_linkangle_down_hades_core_brick_yellow +columnia:column_stairsubpillar_hades_core_brick_white +hades_stairs:step_in_colwood_blue +columnia:column_linkangle_down_hades_core_brick_cyan +columnia:column_crosslink_hades_core_apolline +columnia:column_link_hades_trees_wood +columnia:column_linkdown_hades_core_chondrite_brick +hades_doors:door_steel_orange_d +columnia:column_linkvertical_hades_trees_colwood_violet +columnia:column_linkangle_down_hades_trees_colwood_blue +hades_stairs:slab_colwood_black +columnia:column_top_hades_trees_colwood_blue +columnia:column_linkdown_hades_trees_colwood_green +hades_stairs:stair_out_cobble_sandstone_volcanic +columnia:column_top_hades_trees_colwood_orange +hades_core:cobble_baked +hades_doors:door_steel_cyan_b +hades_stairs:slab_colwood_brown +columnia:column_linkcross_hades_core_azurite +hades_stairs:step_in_floor_sandstone_sandstone +hades_core:cactus_block +hades_stairs:stair_colwood_green +columnia:column_linktee_hades_trees_colwood_uncolored +hades_stairs:step_out_brick_dark_green +hades_core:stone_with_sapphire +hades_core:marble_brick +hades_doors:door_wood_pale_c +columnia:column_stairsubpillar_hades_core_brick_violet +hades_core:gravel +columnia:column_linkcrossdown_hades_core_tuff_baked_brick +hades_doors:door_steel_cyan_c +hades_stairs:step_out_brick_yellow +hades_stairs:step_in_obsidianbrick +columnia:column_linkcrossdown_hades_trees_cream_wood +hades_stairs:step_in_stone_baked +columnia:column_linkangle_down_hades_core_tuff +hades_doors:gate_wood_open +hades_stairs:step_out_magenta +columnia:column_stairsubpillar_hades_trees_lush_wood +hades_farming:spice_1 +hades_stairs:slab_dark_grey +hades_tiles:floor_chondrite_chondrite +columnia:column_linktee_down_hades_core_brick_dark_grey +hades_flowerpots:flower_pot_sapling +columnia:column_linkvertical_hades_core_brick_magenta +hades_stairs:stair_out_brick_grey +columnia:column_linkdown_hades_trees_colwood_red +columnia:column_crosslink_hades_core_brick_orange +columnia:column_linkcrossdown_hades_core_basalt +columnia:column_linkvertical_hades_core_brick +columnia:column_crosslink_hades_trees_lush_wood +hades_stairs:slab_glowcrystal_block +columnia:column_linkangle_hades_core_tuff +columnia:column_linkangle_hades_core_brick_white +columnia:column_stairsubpillar_hades_core_tuff_baked_brick +columnia:column_linktee_down_hades_trees_colwood_blue +hades_doors:door_steel_yellow_d +columnia:column_linktee_down_hades_core_brick_red +columnia:column_stairsub_hades_core_basalt +columnia:column_linkdown_hades_trees_birch_bark +columnia:column_link_hades_core_brick_dark_grey +columnia:column_linkcross_hades_trees_colwood_white +columnia:column_linkvertical_hades_core_tuff_brick +columnia:column_linkdown_hades_core_brick_pink +hades_doors:door_marble_a +columnia:column_crosslink_hades_trees_colwood_black +hades_walls:cobble +columnia:column_linkdown_hades_core_cinnabar +hades_stairs:slab_brick_green +columnia:column_top_hades_core_cinnabar +hades_trees:colwood_magenta +hades_doors:door_steel_violet_e +hades_core:stone_block_baked +columnia:column_stairsubpillar_hades_core_cobble +columnia:column_linkangle_down_hades_core_orangite +columnia:column_stairsubpillar_hades_core_sandstone +columnia:column_bottom_hades_core_brick_grey +hades_doors:door_dungeon2_d +signs_lib:sign_wall_locked +hades_fences:fence_wood +hades_farming:wheat_2 +hades_doors:door_chondrite_b +hades_furniture:L_binding_bars +columnia:column_linkvertical_hades_trees_colwood_dark_green +hades_doors:door_wood_a +hades_stairs:step_in_pale_bark +hades_stairs:step_out_orangite +hades_doors:door_basalt_c +hades_stairs:stair_in_tuff_baked_brick +columnia:column_linkvertical_hades_core_cobble_baked +columnia:column_top_hades_core_brick_violet +hades_stairs:stair_in_colwood_black +hades_stairs:stair_out_straw +columnia:column_link_hades_core_stonebrick_baked +hades_stairs:slab_floorblock_chondrite_stone +hades_trees:coconut +columnia:column_top_hades_core_marble +columnia:column_linkangle_hades_trees_jungle_wood +hades_stairs:step_out_colwood_magenta +hades_core:apolline +hades_flowerpots:flower_pot_blue +hades_stairs:step_colwood_grey +hades_farming:strawberry_3 +columnia:column_link_hades_trees_colwood_dark_green +gluncarp:green +columnia:column_top_hades_core_brick_pink +hades_stairs:step_out_colwood_black +columnia:column_crosslink_hades_trees_colwood_yellow +hades_tiles:floor_cream_pale +columnia:column_linkangle_hades_core_brick_magenta +columnia:column_linkvertical_hades_trees_colwood_white +hades_doors:door_steel_white_b +columnia:column_bottom_hades_core_chondrite_brick +columnia:column_bottom_hades_trees_canvas_bark +columnia:column_linktee_down_hades_trees_colwood_black +hades_stairs:stair_in_sandstonebrick +hades_doors:door_steel_darkgrey_d +hades_waterplants:waterlily_675 +columnia:column_linkcross_hades_trees_colwood_green +columnia:column_linkangle_hades_core_basalt +hades_stairs:stair_in_colwood_blue +hades_fences:fence_jungle_wood +columnia:column_linktee_down_hades_core_sandstone_volcanic_brick +hades_doors:door_wood_cream_e +columnia:column_crosslink_hades_core_brick_brown +columnia:column_link_hades_core_tuff +hades_core:brick_dark_green +columnia:column_bottom_hades_core_olivine +hades_stairs:slab_colwood_grey +hades_farming:tomato_1 +hades_stairs:slab_birch_bark +columnia:column_linkdown_hades_core_cobble_sandstone +hades_doors:door_steel_c +columnia:column_top_hades_core_essexite +columnia:column_linkdown_hades_core_orangite +hades_core:mese +gluncarp:yellow +hades_flowers:white +hades_core:ladder_jungle_wood +columnia:column_bottom_hades_core_stone +columnia:column_bottom_hades_core_lillite +hades_stairs:step_floor_essexitegold_essexitegold +columnia:column_linkcrossdown_hades_trees_colwood_dark_grey +columnia:column_linkcross_hades_core_marble +hades_trees:colwood_white +hades_stairs:step_in_colwood_dark_green +columnia:column_stairsub_hades_core_brick_red +hades_trees:coconut_sapling +hades_core:azurite_block +columnia:column_stairsub_hades_trees_birch_bark +columnia:column_linkvertical_hades_core_obsidian +hades_stairs:slab_stone_baked +columnia:column_linkdown_hades_core_cobble_sandstone_volcanic +columnia:column_linkcrossdown_hades_core_stone_baked +hades_stairs:step_out_lush_wood +hades_itemshow:pedestal_lillite +hades_stairs:stair_pale_bark +hades_itemshow:pedestal_turquosite +hades_itemshow:pedestal_olivine +hades_itemshow:pedestal_apolline +hades_itemshow:pedestal_basalt +hades_stairs:step_brick_magenta +gluncarp:red +hades_stairs:step_in_cinnabar_brick +columnia:column_linkdown_hades_core_brick_green +hades_itemshow:pedestal_obsidian +hades_itemshow:pedestal_sandstone_volcanic +hades_stairs:step_out_yellow +hades_itemshow:pedestal_sandstone +hades_itemshow:pedestal_marble +columnia:column_stairsubpillar_hades_core_brick_green +hades_itemshow:pedestal_stone_baked +hades_tiles:floor_tuff_tuffbaked +hades_stairs:stair_in_brick_black +columnia:column_linkcrossdown_hades_core_brick_red +hades_itemshow:pedestal_stone +hades_core:stone_with_tin +columnia:column_link_hades_core_brick +hades_walls:mossycobble +hades_stairs:step_out_sandstone +hades_stairs:step_floor_cream_cream +hades_stairs:stair_pink +columnia:column_linktee_hades_trees_colwood_yellow +columnia:column_linkcrossdown_hades_core_brick_dark_grey +mobs_hades:cobweb +columnia:column_linkvertical_hades_core_brick_cyan +hades_stairs:stair_out_azurite +columnia:column_linktee_down_hades_core_sandstone +mobs:spawner +hades_trees:orange_tree +hades_meshhand:hand +gluncarp:machine +columnia:column_linktee_hades_core_brick_dark_green +hades_bushes:yellow +columnia:column_linkcross_hades_core_essexite_brick +hades_stairs:step_floor_jungle_jungle +columnia:column_top_hades_trees_cream_wood +hades_food:tomatosalad +columnia:column_linkangle_hades_core_brick_grey +hades_stairs:stair_lillite +columnia:column_link_hades_trees_canvas_bark +hades_doors:door_steel_yellow_e +hades_stairs:slab_turquosite +hades_food:bottle_olive_oil +hades_stairs:step_in_pink +columnia:column_linkcrossdown_hades_core_brick_violet +hades_stairs:step_out_colwood_orange +hades_doors:door_dungeon2_c +hades_core:chondrite +hades_food:plate +hades_stairs:slab_double_floorblock_chondrite_stone +hades_stairs:stair_in_cactus_brick +hades_stairs:stair_colwood_orange +hades_stairs:slab_floorblock_bstone_sandstone +hades_stairs:slab_double_floorblock_marble_essexite2 +hades_stairs:slab_floorblock_marble_essexite2 +columnia:column_linkdown_hades_trees_colwood_blue +columnia:column_linkcross_hades_core_obsidianbrick +hades_stairs:slab_floorblock_essexite_gold_block +hades_stairs:step_in_lillite_brick +hades_stairs:step_out_lillite_brick +hades_stairs:step_lillite_brick +hades_stairs:slab_lillite_brick +columnia:column_stairsub_hades_trees_colwood_pink +hades_stairs:stair_in_lillite_brick +hades_stairs:stair_out_lillite_brick +columnia:column_linkvertical_hades_core_brick_dark_grey +columnia:column_linktee_down_hades_trees_birch_bark +hades_stairs:stair_lillite_brick +hades_stairs:step_in_turquosite_brick +hades_stairs:step_out_turquosite_brick +hades_tiles:floor_sandstone_sandstonevolcanic +hades_stairs:step_turquosite_brick +hades_doors:door_sandstone_volcanic_c +columnia:column_linktee_down_hades_core_brick_cyan +hades_stairs:slab_turquosite_brick +hades_stairs:stair_in_turquosite_brick +hades_stairs:stair_out_turquosite_brick +hades_stairs:stair_turquosite_brick +columnia:column_linkcross_hades_core_brick_black +hades_stairs:step_in_azurite_brick +hades_stairs:slab_floor_lush_lush +hades_stairs:step_out_azurite_brick +columnia:column_bottom_hades_core_cobble +hades_stairs:step_azurite_brick +columnia:column_stairsubpillar_hades_core_sandstone_volcanic +hades_stairs:stair_out_brick_dark_green +columnia:column_linkangle_down_hades_trees_colwood_pink +hades_stairs:slab_azurite_brick +hades_stairs:stair_in_azurite_brick +hades_stairs:stair_out_azurite_brick +columnia:column_mid_hades_core_cinnabar +hades_stairs:stair_azurite_brick +columnia:column_top_hades_core_brick_red +hades_furniture:table_white +hades_stairs:step_in_olivine_brick +columnia:column_linkangle_down_hades_core_mossycobble +columnia:column_link_hades_trees_colwood_white +columnia:column_bottom_hades_core_chondrite +columnia:column_link_hades_core_brick_magenta +columnia:column_linkvertical_hades_trees_colwood_red +hades_stairs:step_out_olivine_brick +hades_stairs:step_olivine_brick +hades_stairs:slab_olivine_brick +hades_stairs:stair_in_olivine_brick +columnia:column_linkcross_hades_trees_colwood_grey +hades_tiles:floor_cream_cream +hades_windows:window_wood_darkgrey +hades_stairs:stair_out_olivine_brick +hades_stairs:stair_olivine_brick +columnia:column_linktee_down_hades_core_sandstone_volcanic +hades_itemshow:pedestal_chondrite +hades_core:cobble_block +hades_doors:door_steel_white_c +hades_stairs:step_out_cinnabar_brick +hades_tiles:floor_sandstone_tuffbaked +hades_stairs:step_cinnabar_brick +hades_stairs:slab_cinnabar_brick +hades_stairs:stair_in_olivine +hades_stairs:stair_in_cinnabar_brick +hades_stairs:stair_out_cinnabar_brick +hades_core:steelblock +hades_stairs:stair_cinnabar_brick +hades_stairs:step_in_orangite_brick +hades_stairs:step_out_orangite_brick +hades_stairs:stair_in_brick_dark_grey +columnia:column_linkcrossdown_hades_trees_colwood_red +hades_refruit:bud_apple +hades_stairs:step_orangite_brick +hades_stairs:slab_orangite_brick +hades_stairs:stair_in_orangite_brick +hades_stairs:stair_out_orangite_brick +hades_stairs:stair_orangite_brick +hades_stairs:step_in_apolline_brick +hades_stairs:step_out_apolline_brick +columnia:column_linkcrossdown_hades_trees_colwood_black +hades_stairs:step_apolline_brick +hades_stairs:slab_apolline_brick +hades_stairs:stair_in_apolline_brick +columnia:column_linkangle_down_hades_core_lillite +hades_grass:dead_grass_4 +hades_stairs:stair_out_apolline_brick +hades_trees:pale_sapling +hades_stairs:stair_apolline_brick +columnia:column_bottom_hades_trees_colwood_cyan +hades_stairs:step_out_apolline +columnia:column_link_hades_core_olivine_brick +columnia:column_mid_hades_trees_bark +hades_stairs:step_lillite +columnia:column_linkdown_hades_core_mossycobble +hades_farming:cotton_2 +hades_stairs:slab_basalt_brick +hades_stairs:stair_in_lillite +signs_lib:sign_wall_yellow +columnia:column_linktee_hades_core_brick_orange +columnia:column_stairsub_hades_trees_colwood_black +columnia:column_linktee_hades_core_olivine +hades_stairs:step_in_turquosite +hades_stairs:slab_sandstonebrick +hades_stairs:step_out_turquosite +columnia:column_link_hades_core_brick_green +columnia:column_top_hades_core_obsidian +columnia:column_linktee_down_hades_trees_colwood_orange +hades_stairs:step_turquosite +hades_chests:chest_dark_grey_locked +hades_stairs:step_out_colwood_yellow +hades_stairs:stair_in_turquosite +hades_stairs:stair_out_turquosite +columnia:column_linkvertical_hades_trees_birch_bark +hades_stairs:stair_turquosite +columnia:column_linkvertical_hades_core_marble +hades_stairs:step_in_azurite +columnia:column_bottom_hades_core_tuff +hades_stairs:step_azurite +hades_stairs:slab_tuff +hades_stairs:stair_in_azurite +hades_core:marble_block +hades_stairs:step_out_olivine +hades_vines:root +hades_stairs:step_olivine +hades_tiles:floor_tuff_stonebaked +columnia:column_linkdown_hades_trees_colwood_cyan +hades_stairs:step_in_lush_wood +hades_stairs:step_in_cinnabar +hades_stairs:step_cinnabar +hades_core:gravel_volcanic_block +hades_stairs:step_brick_orange +hades_stairs:stair_in_cinnabar +columnia:column_stairsub_hades_core_cactus_brick +hades_stairs:stair_out_wood +hades_stairs:stair_cinnabar +hades_stairs:step_goldblock +hades_stairs:step_orangite +columnia:column_stairsub_hades_core_stone_baked +hades_stairs:slab_stonebrick_baked +hades_stairs:slab_orangite +hades_stairs:stair_out_essexite +hades_core:brick_brown +hades_stairs:slab_jungle_wood +columnia:column_linkdown_hades_core_brick_yellow +columnia:column_stairsubpillar_hades_trees_colwood_yellow +hades_stairs:stair_in_orangite +hades_stairs:stair_orangite +hades_stairs:step_in_apolline +hades_doors:gate_pale_wood_open +hades_stairs:step_out_lillite +columnia:column_top_hades_trees_colwood_grey +columnia:column_linkvertical_hades_core_brick_blue +hades_stairs:step_out_tuff_baked_brick +hades_core:stone_with_diamond +hades_stairs:step_chondrite +hades_stairs:stair_tuff_baked_brick +hades_core:brick_grey +hades_flowerpots:flower_pot_red +hades_chests:chest_magenta +hades_stairs:stair_apolline +hades_stairs:step_out_floor_marble_marble +hades_stairs:step_floor_marble_marble +columnia:column_linkcross_hades_core_cobble +hades_windows:window_wood +columnia:column_crosslink_hades_trees_canvas_bark +columnia:column_crosslink_hades_trees_colwood_cyan +hades_stairs:slab_floor_marble_marble +hades_stairs:stair_out_floor_marble_marble +columnia:column_linkvertical_hades_trees_colwood_dark_grey +hades_chests:chest_violet_locked +hades_core:bronzeblock +columnia:column_stairsub_hades_core_mossycobble +hades_stairs:slab_floor_essexitegold_essexitegold +hades_stairs:step_dark_grey +hades_stairs:stair_sandstone_volcanic +columnia:column_linkcross_hades_core_brick_dark_grey +hades_stairs:step_in_colwood_orange +columnia:column_linktee_hades_trees_colwood_magenta +columnia:column_linkangle_down_hades_trees_lush_wood +hades_stairs:stair_out_floor_essexitegold_essexitegold +hades_stairs:step_in_floor_essexite_essexite +columnia:column_stairsub_hades_core_apolline +columnia:column_linkdown_hades_trees_cream_wood +hades_stairs:step_floor_essexite_essexite +hades_stairs:stair_in_floor_essexite_essexite +hades_stairs:stair_out_floor_essexite_essexite +hades_trees:colwood_cyan +columnia:column_linktee_hades_core_cobble_sandstone_volcanic +hades_core:dirt_with_grass_l1 +hades_stairs:step_in_floor_chondrite_chondrite +columnia:column_stairsubpillar_hades_trees_colwood_orange +hades_stairs:step_out_floor_chondrite_chondrite +hades_core:ruby_block +hades_stairs:step_in_stonebrick +hades_stairs:step_floor_chondrite_chondrite +hades_doors:door_rusty_e +columnia:column_stairsub_hades_core_brick_pink +hades_cloth:pink +columnia:column_top_hades_core_brick_dark_grey +hades_stairs:stair_glowcrystal_block +hades_stairs:slab_charred_wood +hades_stairs:stair_out_floor_chondrite_chondrite +hades_doors:door_obsidian_glass_d +hades_stairs:stair_floor_chondrite_chondrite +hades_stairs:step_in_floor_sandstonevolcanic_sandstonevolcanic +columnia:column_crosslink_hades_core_sandstonebrick +hades_stairs:step_floor_sandstonevolcanic_sandstonevolcanic +hades_stairs:stair_in_brick_orange +columnia:column_stairsubpillar_hades_trees_colwood_uncolored +hades_stairs:slab_tuff_brick +hades_stairs:stair_in_floor_sandstonevolcanic_sandstonevolcanic +hades_stairs:stair_in_jungle_wood +hades_stairs:step_canvas_bark +hades_stairs:step_cobble_sandstone_volcanic +hades_doors:trapdoor_lush_open +hades_stairs:step_out_floor_sandstone_sandstone +columnia:column_linkangle_hades_core_essexite_brick +columnia:column_bottom_hades_core_brick_violet +hades_stairs:step_floor_sandstone_sandstone +hades_stairs:slab_floor_sandstone_sandstone +hades_stairs:stair_in_floor_sandstone_sandstone +hades_stairs:stair_out_floor_sandstone_sandstone +hades_stairs:stair_floor_sandstone_sandstone +hades_stairs:step_in_floor_tuffbaked_tuffbaked +hades_stairs:step_out_floor_tuffbaked_tuffbaked +hades_stairs:step_floor_tuffbaked_tuffbaked +hades_stairs:step_in_tuff_baked +columnia:column_linkangle_down_hades_trees_colwood_brown +hades_stairs:stair_in_floor_tuffbaked_tuffbaked +hades_chests:chest_pink_locked +hades_stairs:stair_out_floor_tuffbaked_tuffbaked +columnia:column_top_hades_core_brick_cyan +hades_stairs:stair_floor_tuffbaked_tuffbaked +hades_stairs:step_in_floor_tuff_tuff +columnia:column_crosslink_hades_trees_jungle_bark +hades_stairs:step_floor_tuff_tuff +hades_stairs:slab_floor_tuff_tuff +hades_stairs:stair_in_floor_tuff_tuff +hades_trees:orange_leaves +hades_trees:jungle_tree +columnia:column_linkdown_hades_core_tuff_baked +hades_stairs:step_in_floor_stonebaked_stonebaked +hades_stairs:step_out_floor_stonebaked_stonebaked +hades_stairs:step_floor_stonebaked_stonebaked +hades_chests:chest_dark_green +columnia:column_linkcrossdown_hades_trees_bark +columnia:column_stairsub_hades_trees_colwood_dark_grey +hades_furniture:armchair_white +hades_stairs:step_in_tuff +columnia:column_stairsubpillar_hades_core_apolline +hades_stairs:step_in_floor_stone_stone +hades_stairs:stair_out_stonebrick_baked +hades_stairs:step_floor_stone_stone +columnia:column_linktee_down_hades_trees_colwood_white +columnia:column_linkdown_hades_core_brick_red +columnia:column_linkcrossdown_hades_core_olivine +columnia:column_crosslink_hades_trees_wood +columnia:column_crosslink_hades_core_obsidianbrick +hades_stairs:step_cobble_baked +hades_stairs:stair_in_floor_stone_stone +columnia:column_linktee_hades_core_mossycobble +hades_stairs:stair_floor_stone_stone +hades_stairs:step_in_floor_jungle_jungle +hades_stairs:step_out_floor_jungle_jungle +hades_flowerpots:flower_pot_pale_sapling +columnia:column_top_hades_trees_colwood_dark_grey +columnia:column_linktee_hades_core_sandstonebrick +columnia:column_linkvertical_hades_trees_colwood_green +hades_stairs:stair_floor_jungle_jungle +columnia:column_linkangle_hades_trees_colwood_red +hades_stairs:step_in_floor_cream_cream +hades_stairs:step_out_floor_cream_cream +hades_itemshow:frame +hades_stairs:stair_in_floor_cream_cream +hades_core:lillite_brick +columnia:column_linktee_down_hades_core_brick_green +hades_stairs:stair_floor_cream_cream +hades_stairs:step_out_jungle_wood +hades_stairs:stair_tinblock +columnia:column_stairsub_hades_trees_colwood_yellow +columnia:column_linkcross_hades_core_tuff_brick +columnia:column_bottom_hades_trees_colwood_brown +hades_stairs:step_in_floor_pale_pale +columnia:column_linkcross_hades_trees_canvas_bark +hades_flowers:blue +hades_stairs:step_floor_pale_pale +hades_stairs:stair_out_floor_pale_pale +hades_stairs:stair_floor_pale_pale +hades_stairs:stair_out_red +hades_stairs:stair_out_charred_wood +columnia:column_linkangle_down_hades_trees_colwood_magenta +hades_stairs:stair_out_bronzeblock +columnia:column_linkvertical_hades_core_cobble +hades_stairs:step_out_floor_lush_lush +hades_stairs:slab_grey +columnia:column_linkangle_down_hades_core_sandstonebrick +hades_stairs:stair_colwood_uncolored +hades_core:basalt_brick +hades_stairs:stair_floor_lush_lush +hades_stairs:step_out_floor_wood_wood +hades_stairs:step_floor_wood_wood +columnia:column_stairsub_hades_core_brick_magenta +columnia:column_top_hades_core_brick_dark_green +columnia:column_link_hades_core_sandstone +hades_stairs:stair_marble +hades_core:azurite +hades_stairs:stair_out_floor_wood_wood +hades_stairs:stair_floor_wood_wood +hades_stairs:step_in_glowcrystal_block +hades_doors:door_wood_c +columnia:column_linktee_hades_core_cactus_brick +columnia:column_crosslink_hades_core_cobble_baked +hades_stairs:step_out_glowcrystal_block +hades_stairs:stair_in_glowcrystal_block +hades_trees:colwood_yellow +hades_core:lillite_block +hades_doors:door_basalt_a +hades_stairs:stair_in_floor_chondrite_chondrite +hades_stairs:step_in_dark_green +hades_stairs:step_out_dark_green +hades_stairs:step_dark_green +columnia:column_linktee_hades_core_turquosite +hades_stairs:stair_in_dark_green +hades_stairs:stair_out_dark_green +hades_flowers:yellow +columnia:column_linkangle_hades_trees_colwood_white +hades_stairs:stair_dark_green +hades_stairs:step_in_dark_grey +columnia:column_linkcrossdown_hades_core_olivine_brick +hades_stairs:step_out_dark_grey +hades_stairs:stair_in_floor_essexitegold_essexitegold +hades_stairs:stair_in_dark_grey +hades_vines:vines_block +hades_stairs:stair_out_dark_grey +hades_stairs:stair_dark_grey +columnia:column_linktee_hades_core_cobble_baked +hades_stairs:step_out_pink +hades_stairs:step_pink +columnia:column_linkcrossdown_hades_trees_orange_bark +columnia:column_linkangle_down_hades_trees_jungle_wood +hades_stairs:step_out_brown +hades_stairs:step_brown +hades_stairs:slab_brown +hades_stairs:stair_out_brown +hades_stairs:stair_brown +hades_stairs:step_in_violet +hades_stairs:step_out_violet +columnia:column_linktee_down_hades_core_brick_pink +hades_doors:door_steel_bar_d +columnia:column_bottom_hades_trees_jungle_wood +columnia:column_stairsub_hades_trees_wood +hades_stairs:step_violet +hades_stairs:slab_violet +columnia:column_linkangle_hades_core_stone +hades_stairs:stair_out_violet +hades_stairs:stair_violet +hades_stairs:step_in_orange +columnia:column_linktee_hades_trees_colwood_brown +columnia:column_crosslink_hades_trees_pale_bark +hades_doors:door_steel_a +columnia:column_bottom_hades_core_marble +hades_windows:window_wood_violet +hades_stairs:step_orange +columnia:column_mid_hades_core_azurite +columnia:column_stairsub_hades_core_orangite +hades_stairs:step_sandstonebrick +columnia:column_bottom_hades_trees_orange_bark +hades_stairs:step_magenta +hades_stairs:step_out_colwood_cyan +hades_stairs:slab_magenta +hades_stairs:stair_in_magenta +columnia:column_linkdown_hades_trees_colwood_brown +hades_refruit:flower_apple +columnia:column_stairsub_hades_core_brick_white +hades_stairs:step_out_marble +hades_stairs:step_in_blue +hades_stairs:step_out_blue +hades_stairs:step_blue +columnia:column_linkcrossdown_hades_core_obsidian +hades_stairs:stair_out_blue +hades_chests:chest_black +hades_stairs:step_out_cyan +hades_stairs:step_cyan +hades_cloth:black +columnia:column_crosslink_hades_trees_colwood_pink +columnia:column_crosslink_hades_trees_bark +hades_stairs:stair_out_cyan +hades_chests:chest_cyan +hades_stairs:stair_out_colwood_blue +hades_stairs:step_in_green +columnia:column_linkcrossdown_hades_core_brick_yellow +hades_stairs:step_out_green +hades_stairs:step_green +gluncarp:pink +columnia:column_linkvertical_hades_core_brick_grey +hades_core:tuff +columnia:column_link_hades_trees_colwood_orange +hades_stairs:stair_in_green +hades_stairs:stair_out_green +hades_stairs:stair_in_marble_brick +hades_stairs:step_in_yellow +hades_stairs:step_yellow +columnia:column_linkvertical_hades_core_cactus_brick +columnia:column_linkangle_hades_core_chondrite_brick +hades_fences:fence_wood_green +hades_doors:door_steel_darkgreen_c +hades_stairs:step_in_red +columnia:column_linkdown_hades_core_olivine_brick +hades_tiles:floor_cream_jungle +hades_stairs:stair_out_brick_green +columnia:column_linkcross_hades_core_tuff_baked_brick +hades_stairs:step_out_red +hades_stairs:step_red +hades_stairs:step_in_black +hades_core:chondrite_block +hades_stairs:step_out_black +hades_stairs:step_black +columnia:column_mid_hades_core_lillite_brick +columnia:column_bottom_hades_core_cobble_baked +hades_core:sapphire_block +hades_stairs:stair_in_black +hades_stairs:step_out_charred_wood +hades_stairs:stair_in_charred_wood +columnia:column_mid_hades_trees_colwood_dark_grey +hades_stairs:step_colwood_white +columnia:column_bottom_hades_trees_colwood_white +hades_stairs:step_out_grey +hades_stairs:step_grey +signs_lib:sign_wall_green +hades_stairs:step_floor_lush_lush +hades_stairs:step_out_cobble +hades_stairs:stair_in_grey +hades_stairs:step_in_white +columnia:column_top_hades_core_azurite +hades_core:stonebrick_baked +hades_stairs:step_out_white +hades_stairs:step_white +hades_stairs:stair_white +hades_stairs:step_in_straw +hades_tiles:floor_marble_marble +columnia:column_mid_hades_core_mossycobble +columnia:column_stairsub_hades_trees_colwood_blue +hades_stairs:step_out_straw +hades_stairs:step_straw +hades_stairs:slab_straw +hades_stairs:stair_straw +hades_stairs:step_out_obsidianbrick +hades_doors:door_obsidian_glass_c +columnia:column_linkdown_hades_core_cactus_brick +hades_stairs:step_obsidianbrick +hades_tiles:floor_lush_wood +hades_flowerpots:flower_pot_violet +hades_doors:door_steel_darkgrey_a +hades_stairs:stair_in_obsidianbrick +hades_tiles:floor_stone_stonebaked +hades_stairs:stair_obsidianbrick +columnia:column_stairsub_hades_core_basalt_brick +columnia:column_linkcross_hades_trees_lush_wood +hades_stairs:step_in_cactus_brick +hades_stairs:step_out_cactus_brick +hades_stairs:stair_cobble +hades_stairs:step_cactus_brick +hades_doors:door_stone_d +hades_stairs:slab_cactus_brick +columnia:column_linkangle_down_hades_core_marble +hades_stairs:slab_double_floorblock_bstone_sandstone +columnia:column_linkangle_hades_core_essexite +columnia:column_linkcross_hades_core_chondrite +columnia:column_linkangle_hades_core_brick_dark_grey +hades_vines:willow_rotten +hades_stairs:stair_out_cactus_brick +hades_stairs:stair_cactus_brick +hades_stairs:step_in_rusty_block +hades_stairs:step_out_rusty_block +hades_stairs:step_rusty_block +hades_stairs:slab_rusty_block +hades_stairs:stair_in_rusty_block +hades_stairs:stair_out_rusty_block +columnia:column_linktee_hades_core_chondrite_brick +columnia:column_linktee_down_hades_core_brick_dark_green +hades_stairs:stair_rusty_block +columnia:column_linkcrossdown_hades_core_stonebrick_baked +hades_stairs:stair_in_essexite +hades_stairs:step_in_essexite_brick +columnia:column_linktee_hades_core_olivine_brick +hades_stairs:step_out_essexite_brick +columnia:column_top_hades_core_chondrite +hades_stairs:step_essexite_brick +hades_stairs:slab_essexite_brick +hades_stairs:stair_in_essexite_brick +hades_stairs:stair_out_essexite_brick +hades_stairs:stair_essexite_brick +hades_stairs:slab_floor_tuffbaked_tuffbaked +hades_stairs:step_out_tuff_baked +hades_stairs:stair_brick_dark_green +hades_core:clay +columnia:column_linkcrossdown_hades_core_brick_magenta +hades_stairs:stair_in_tuff_baked +columnia:column_linktee_down_hades_core_marble +hades_stairs:stair_out_tuff_baked +hades_doors:door_basalt_d +hades_stairs:step_tuff_baked_brick +columnia:column_linktee_down_hades_core_chondrite +hades_stairs:slab_tuff_baked_brick +hades_stairs:stair_out_tuff_baked_brick +hades_doors:door_steel_grey_d +columnia:column_linkvertical_hades_core_brick_violet +columnia:column_stairsubpillar_hades_core_brick_yellow +hades_stairs:stair_in_apolline +hades_stairs:step_out_tuff +hades_stairs:step_tuff +hades_stairs:slab_azurite +columnia:column_linkdown_hades_core_marble_brick +hades_stairs:stair_tuff +hades_stairs:step_in_tuff_brick +hades_stairs:step_out_tuff_brick +gluncarp:cyan +columnia:column_linktee_down_hades_core_brick_yellow +columnia:column_linktee_down_hades_core_obsidian +hades_stairs:stair_out_brick_white +hades_tiles:floor_stonebaked_stonebaked +hades_stairs:step_tuff_brick +hades_stairs:slab_floor_sandstonevolcanic_sandstonevolcanic +hades_stairs:stair_in_tuff_brick +hades_furniture:armchair_red +hades_stairs:stair_out_tuff_brick +hades_stairs:stair_tuff_brick +hades_stairs:step_in_marble +columnia:column_mid_hades_core_essexite +hades_tiles:floor_tuffbaked_chondrite +columnia:column_linkdown_hades_core_brick_grey +columnia:column_linkangle_down_hades_trees_colwood_black +hades_stairs:step_in_chondrite_brick +columnia:column_top_hades_trees_colwood_brown +hades_stairs:step_marble +hades_stairs:step_in_brick_grey +hades_stairs:slab_floor_wood_wood +hades_stairs:step_in_marble_brick +hades_stairs:step_out_marble_brick +hades_stairs:step_marble_brick +hades_stairs:slab_marble_brick +hades_stairs:stair_green +hades_stairs:stair_out_marble_brick +hades_stairs:stair_marble_brick +hades_stairs:step_in_chondrite +columnia:column_linkcrossdown_hades_trees_jungle_wood +columnia:column_stairsub_hades_core_brick_yellow +hades_stairs:slab_apolline +hades_doors:trapdoor_rusty_bar +hades_stairs:stair_out_colwood_cyan +hades_stairs:step_out_brick_black +columnia:column_linkcross_hades_core_brick_green +hades_core:tuff_block +hades_stairs:stair_in_chondrite +columnia:column_linkangle_down_hades_core_brick_blue +hades_chests:chest_orange_locked +hades_stairs:step_out_chondrite_brick +hades_stairs:stair_in_steelblock +hades_stairs:step_chondrite_brick +columnia:column_linktee_down_hades_core_olivine_brick +columnia:column_stairsubpillar_hades_core_lillite +columnia:column_linkvertical_hades_core_azurite_brick +hades_stairs:stair_chondrite_brick +hades_core:gravel_block +hades_stairs:step_in_basalt +hades_cloth:violet +hades_stairs:step_basalt +hades_stairs:slab_basalt +hades_stairs:stair_in_basalt +columnia:column_linkcrossdown_hades_core_marble +hades_stairs:stair_out_basalt +columnia:column_linktee_hades_core_brick_black +hades_furniture:armchair_dark_green +columnia:column_linktee_down_hades_trees_colwood_dark_green +hades_furniture:chair_uncolored +hades_core:essexite +columnia:column_top_hades_core_olivine_brick +hades_stairs:step_out_basalt_brick +hades_stairs:step_basalt_brick +hades_stairs:step_out_colwood_white +columnia:column_stairsub_hades_core_turquosite +hades_stairs:step_out_stonebrick +hades_stairs:step_stonebrick +hades_tiles:floor_pale_lush +hades_stairs:step_out_tinblock +hades_stairs:stair_out_stonebrick +hades_stairs:stair_stonebrick +columnia:column_linktee_hades_core_azurite_brick +hades_stairs:step_out_sandstone_volcanic_brick +hades_stairs:step_sandstone_volcanic_brick +columnia:column_bottom_hades_core_apolline +hades_doors:door_steel_d +columnia:column_linkdown_hades_trees_colwood_yellow +hades_stairs:stair_out_cobble_baked +columnia:column_linkdown_hades_core_obsidian +hades_stairs:step_brick_dark_grey +hades_stairs:stair_out_olivine +hades_stairs:step_out_cobble_sandstone_volcanic +hades_core:brick_blue +hades_stairs:stair_floor_sandstonevolcanic_sandstonevolcanic +hades_stairs:stair_in_cobble_sandstone_volcanic +hades_stairs:stair_in_cyan +hades_stairs:step_in_sandstone_volcanic +columnia:column_linktee_down_hades_core_obsidianbrick +hades_grass:grass_3 +hades_stairs:step_out_sandstone_volcanic +columnia:column_link_hades_core_marble_brick +hades_stairs:step_brick_grey +hades_trees:colwood_blue +hades_core:dirt_with_grass_l3 +columnia:column_linkdown_hades_trees_pale_wood +columnia:column_mid_hades_core_lillite +columnia:column_top_hades_trees_jungle_wood +hades_stairs:stair_orange +hades_stairs:stair_out_sandstonebrick +columnia:column_linkdown_hades_core_apolline +hades_chests:chest_yellow +hades_stairs:stair_sandstonebrick +columnia:column_linkangle_hades_core_mossycobble +hades_stairs:step_in_cobble_sandstone +hades_stairs:step_out_cobble_sandstone +columnia:column_linkcross_hades_core_brick_red +hades_stairs:step_cobble_sandstone +columnia:column_linktee_down_hades_trees_pale_wood +hades_vines:jungle_rotten +hades_stairs:stair_in_cobble_sandstone +hades_stairs:stair_out_cobble_sandstone +columnia:column_linkcross_hades_core_obsidian +hades_stairs:stair_cobble_sandstone +hades_doors:door_sandstone_e +hades_itemshow:pedestal_top +hades_stairs:step_sandstone +columnia:column_top_hades_core_lillite +gluncarp:dark_grey +hades_doors:door_sandstone_c +hades_stairs:stair_out_brick +hades_stairs:stair_sandstone +hades_stairs:step_in_brick_yellow +columnia:column_linkangle_down_hades_trees_colwood_yellow +hades_doors:gate_wood_closed +hades_stairs:stair_out_brick_magenta +hades_stairs:step_in_brick_cyan +hades_stairs:slab_brick_yellow +hades_stairs:stair_in_brick_yellow +hades_bushes:violet +columnia:column_linkcross_hades_core_brick_pink +hades_stairs:stair_out_brick_yellow +hades_stairs:stair_brick_yellow +hades_tiles:floor_sandstone_chondrite +hades_stairs:step_out_brick_white +hades_stairs:step_brick_white +hades_cloth:brown +columnia:column_linkvertical_hades_core_marble_brick +hades_stairs:step_in_brick_violet +hades_stairs:step_out_brick_violet +hades_stairs:stair_in_brick_violet +hades_stairs:stair_out_brick_violet +hades_flowerpots:flower_pot_olive_sapling +hades_stairs:step_in_brick_red +columnia:column_top_hades_trees_colwood_green +columnia:column_linkangle_down_hades_trees_orange_bark +columnia:column_stairsubpillar_hades_core_sandstone_volcanic_brick +columnia:column_crosslink_hades_core_brick_red +hades_trees:charred_wood +hades_bushes:green +hades_stairs:stair_out_brick_red +columnia:column_stairsub_hades_trees_cream_wood +hades_windows:window_wood_grey +hades_stairs:stair_brick_red +hades_stairs:step_in_brick_pink +signs_lib:sign_hanging +hades_stairs:step_brick_pink +columnia:column_linkangle_down_hades_core_sandstone_volcanic_brick +hades_stairs:slab_brick_pink +columnia:column_bottom_hades_core_cactus_brick +hades_trees:canvas_leaves +hades_stairs:stair_brick_pink +hades_core:diamondblock +hades_stairs:step_in_brick_orange +hades_stairs:step_out_brick_orange +columnia:column_link_hades_core_sandstone_volcanic_brick +hades_stairs:slab_brick_orange +hades_stairs:stair_brick_orange +hades_stairs:step_in_brick_magenta +hades_doors:door_chondrite_a +hades_core:lava_flowing +hades_farming:tomato_3 +hades_core:brick +columnia:column_bottom_hades_core_stone_baked +hades_stairs:stair_in_brick_magenta +hades_stairs:step_brick_yellow +hades_stairs:stair_brick_magenta +hades_stairs:stair_in_marble +hades_fences:fence_wood_cyan +hades_stairs:step_out_brick_grey +hades_tiles:floor_stone_chondrite +hades_stairs:stair_out_colwood_yellow +columnia:column_linkangle_down_hades_core_brick_white +hades_core:olivine_block +columnia:column_linktee_down_hades_core_stonebrick +columnia:column_linkangle_hades_core_obsidian +columnia:column_stairsubpillar_hades_core_turquosite_brick +columnia:column_linktee_down_hades_trees_colwood_dark_grey +hades_stairs:step_out_brick_green +columnia:column_crosslink_hades_core_chondrite +hades_stairs:stair_in_brick_green +columnia:column_top_hades_core_brick_magenta +columnia:column_top_hades_core_cobble_sandstone +hades_stairs:stair_in_sandstone_volcanic_brick +columnia:column_linktee_down_hades_core_brick_white +columnia:column_bottom_hades_trees_colwood_magenta +hades_stairs:slab_brick_dark_grey +hades_stairs:stair_brick_dark_grey +columnia:column_linkvertical_hades_core_tuff +hades_stairs:step_tuff_baked +hades_stairs:step_out_brick_cyan +hades_core:turquosite_brick +hades_stairs:stair_in_brick_cyan +hades_stairs:stair_out_brick_cyan +signs_lib:sign_yard +columnia:column_linktee_hades_core_tuff_brick +hades_stairs:step_in_brick_brown +columnia:column_linkangle_down_hades_core_obsidianbrick +hades_stairs:slab_brick_brown +hades_core:floor_marble_essexite2 +columnia:column_linkangle_hades_core_sandstone +hades_stairs:step_in_brick_blue +hades_tiles:floor_cream_wood +hades_core:stone_with_ruby +hades_stairs:stair_in_colwood_orange +hades_core:turquosite_block +hades_cloth:cyan +hades_stairs:step_brick_blue +hades_stairs:slab_brick_blue +columnia:column_top_hades_core_tuff_baked_brick +hades_stairs:stair_in_brick_blue +columnia:column_link_hades_core_brick_dark_green +hades_stairs:stair_brick_blue +hades_doors:door_stone_c +columnia:column_linkvertical_hades_trees_wood +hades_stairs:step_in_brick_black +columnia:column_stairsubpillar_hades_trees_colwood_red +hades_doors:door_essexite_c +hades_doors:door_steel_orange_a +hades_stairs:stair_out_tuff +columnia:column_mid_hades_trees_colwood_brown +hades_stairs:step_in_brick +columnia:column_linkcrossdown_hades_core_cobble +columnia:column_linkcross_hades_core_olivine +hades_stairs:stair_in_colwood_pink +hades_stairs:step_out_brick +hades_waterplants:waterlily +hades_stairs:step_brick +hades_lamps:lantern_rusty +columnia:column_linkcrossdown_hades_core_brick_orange +columnia:column_linktee_hades_trees_lush_wood +columnia:column_linktee_hades_trees_bark +columnia:column_linkcrossdown_hades_trees_jungle_bark +hades_stairs:stair_brick +columnia:column_crosslink_hades_trees_colwood_orange +hades_stairs:step_in_cobble_baked +columnia:column_link_hades_trees_cream_wood +hades_stairs:stair_pale_wood +hades_stairs:step_out_cobble_baked +hades_stairs:slab_cobble_baked +hades_core:mossystone +hades_stairs:stair_in_cobble_baked +columnia:column_top_hades_trees_wood +hades_stairs:slab_sandstone_volcanic_brick +columnia:column_linkvertical_hades_core_orangite_brick +columnia:column_top_hades_trees_jungle_bark +hades_stairs:step_cobble +hades_doors:door_steel_blue_a +hades_stairs:stair_in_cobble +columnia:column_crosslink_columnia_rusty_block +hades_tiles:floor_sandstonevolcanic_sandstonevolcanic +hades_stairs:stair_out_cobble +columnia:column_crosslink_hades_core_essexite_brick +columnia:column_stairsub_hades_core_lillite_brick +hades_stairs:step_stone_baked +columnia:column_linkangle_down_hades_trees_jungle_bark +hades_stairs:slab_lush_wood +columnia:column_crosslink_hades_core_cobble +hades_stairs:step_stonebrick_baked +hades_cloth:dark_green +hades_stairs:step_out_pale_bark +hades_stairs:stair_in_stonebrick_baked +hades_stairs:step_out_floor_stone_stone +hades_tiles:floor_chondrite_stonebaked +hades_core:brick_green +hades_doors:door_steel_grey_a +hades_stairs:step_in_charred_wood +hades_stairs:step_out_stone +columnia:column_linktee_down_hades_core_essexite_brick +hades_stairs:step_stone +hades_stairs:slab_stone +hades_stairs:stair_stone +hades_stairs:step_in_goldblock +hades_stairs:step_out_goldblock +columnia:column_mid_hades_core_stonebrick_baked +columnia:column_linkvertical_hades_core_cinnabar +hades_stairs:step_in_orangite +columnia:column_stairsub_hades_core_cinnabar_brick +hades_core:sandstone_volcanic +hades_stairs:slab_goldblock +hades_stairs:stair_in_goldblock +hades_stairs:stair_out_goldblock +hades_core:fertile_sand +hades_farming:seed_spice +hades_stairs:stair_goldblock +hades_doors:door_marble_e +hades_stairs:step_in_tinblock +columnia:column_stairsubpillar_hades_trees_pale_bark +hades_stairs:stair_in_stonebrick +hades_tiles:floor_stone_tuff +columnia:column_link_hades_core_brick_orange +hades_stairs:slab_double_tinblock +hades_stairs:step_pale_wood +hades_stairs:stair_in_tinblock +hades_stairs:stair_out_tinblock +columnia:column_bottom_hades_core_brick_black +hades_stairs:step_in_bronzeblock +hades_doors:door_steel_yellow_a +hades_stairs:step_out_bronzeblock +hades_farming:cotton_3 +hades_stairs:stair_out_colwood_uncolored +columnia:column_linkangle_down_hades_core_brick_grey +hades_core:stone_with_coal +hades_stairs:step_bronzeblock +hades_stairs:slab_double_bronzeblock +columnia:column_crosslink_hades_core_brick_white +hades_core:cinnabar +hades_stairs:slab_bronzeblock +hades_furniture:armchair_blue +columnia:column_link_hades_core_tuff_baked_brick +hades_stairs:stair_in_bronzeblock +columnia:column_stairsubpillar_hades_trees_colwood_white +hades_stairs:step_in_floor_lush_lush +hades_stairs:stair_bronzeblock +columnia:column_link_columnia_rusty_block +hades_stairs:step_in_copperblock +columnia:column_linkangle_hades_trees_colwood_magenta +columnia:column_mid_hades_core_brick_blue +hades_stairs:step_copperblock +hades_stairs:stair_in_copperblock +columnia:column_mid_hades_core_cobble_sandstone +hades_stairs:stair_copperblock +hades_vessels:glass_bottle +columnia:column_linkcross_hades_core_sandstonebrick +hades_stairs:step_out_steelblock +hades_stairs:slab_steelblock +hades_stairs:stair_out_steelblock +columnia:column_linkcrossdown_hades_core_cinnabar_brick +hades_stairs:stair_out_bark +hades_stairs:step_colwood_yellow +hades_stairs:slab_colwood_yellow +columnia:column_linkangle_hades_trees_pale_wood +hades_doors:door_steel_violet_b +hades_stairs:slab_brick_grey +columnia:column_bottom_hades_core_azurite +columnia:column_top_hades_core_sandstone +hades_stairs:stair_colwood_yellow +hades_stairs:stair_bark +hades_stairs:stair_out_basalt_brick +columnia:column_linkvertical_hades_trees_colwood_yellow +hades_chests:chest_dark_grey +hades_furniture:armchair +columnia:column_linkcross_hades_trees_colwood_dark_grey +hades_stairs:stair_out_colwood_white +hades_stairs:stair_colwood_white +columnia:column_linkvertical_hades_trees_orange_bark +hades_stairs:stair_in_colwood_yellow +hades_stairs:step_colwood_violet +hades_stairs:stair_out_brick_pink +columnia:column_linktee_hades_trees_birch_bark +columnia:column_linkdown_hades_trees_colwood_black +columnia:column_linktee_down_hades_core_turquosite_brick +hades_stairs:step_in_colwood_red +hades_stairs:step_out_colwood_red +columnia:column_stairsub_hades_core_stone +columnia:column_linkcross_columnia_rusty_block +hades_stairs:stair_colwood_dark_green +columnia:column_linkangle_hades_core_lillite_brick +hades_beds:fancy_bed_top +hades_stairs:slab_colwood_red +hades_trees:apple +hades_windows:window_wood_white +columnia:column_linkcross_hades_core_stonebrick_baked +hades_core:stonebrick +hades_stairs:stair_out_colwood_red +columnia:column_stairsub_hades_trees_orange_bark +hades_stairs:step_out_colwood_pink +hades_stairs:step_colwood_pink +columnia:column_linkvertical_hades_core_brick_brown +hades_fences:fence_wood_white +hades_stairs:stair_colwood_pink +hades_stairs:step_charred_bark +columnia:column_link_hades_core_sandstonebrick +hades_stairs:stair_out_colwood_orange +columnia:column_linkcrossdown_hades_trees_lush_wood +hades_stairs:step_colwood_magenta +columnia:column_linkcross_hades_core_lillite +columnia:column_linktee_down_hades_core_brick_blue +columnia:column_linkdown_hades_core_brick_magenta +columnia:column_top_hades_trees_pale_bark +hades_stairs:stair_out_floor_sandstonevolcanic_sandstonevolcanic +columnia:column_stairsubpillar_hades_core_brick_dark_green +hades_core:obsidian +hades_doors:door_steel_cyan_d +hades_stairs:step_in_colwood_grey +columnia:column_linktee_down_hades_core_olivine +hades_stairs:step_out_colwood_grey +hades_glowcrystals:glowcrystal_block +hades_stairs:stair_in_colwood_grey +columnia:column_linkangle_hades_trees_jungle_bark +columnia:column_link_hades_core_azurite +hades_doors:trapdoor_steel_open +columnia:column_linkdown_hades_core_sandstone_volcanic +hades_stairs:step_colwood_green +hades_stairs:slab_colwood_green +hades_doors:trapdoor_lush +hades_stairs:stair_out_colwood_green +columnia:column_linkcrossdown_hades_core_sandstone +columnia:column_bottom_hades_core_brick_dark_grey +hades_trees:colwood_red +hades_stairs:step_out_colwood_dark_grey +hades_stairs:step_colwood_dark_grey +hades_stairs:slab_colwood_dark_grey +columnia:column_linkcrossdown_hades_trees_colwood_grey +hades_stairs:stair_in_colwood_dark_grey +hades_stairs:stair_colwood_dark_grey +hades_stairs:stair_in_blue +hades_stairs:step_colwood_dark_green +columnia:column_linkcrossdown_hades_core_basalt_brick +hades_stairs:step_in_colwood_cyan +hades_core:glass +columnia:column_crosslink_hades_core_lillite_brick +hades_fences:fence_lush_wood +hades_stairs:slab_chondrite +hades_stairs:stair_out_glowcrystal_block +hades_doors:door_basalt_b +hades_stairs:step_out_colwood_brown +hades_stairs:stair_in_colwood_brown +hades_trees:colwood_uncolored +hades_stairs:stair_out_colwood_brown +hades_stairs:stair_jungle_wood +hades_stairs:stair_colwood_brown +hades_stairs:step_colwood_blue +columnia:column_linkvertical_hades_core_essexite +hades_stairs:stair_cyan +hades_stairs:stair_colwood_blue +columnia:column_linktee_hades_core_brick_yellow +hades_windows:window_wood_red +hades_stairs:step_in_colwood_black +hades_stairs:step_colwood_black +hades_stairs:stair_out_colwood_black +hades_stairs:stair_colwood_black +hades_stairs:slab_colwood_uncolored +hades_stairs:step_lush_wood +hades_stairs:stair_out_floor_lush_lush +hades_trees:pale_bark +hades_stairs:step_in_charred_bark +hades_doors:door_steel_blue_d +hades_stairs:step_colwood_orange +hades_stairs:stair_in_charred_bark +columnia:column_crosslink_hades_core_marble +columnia:column_linktee_down_hades_core_brick_orange +columnia:column_linktee_down_hades_trees_orange_bark +hades_stairs:stair_charred_bark +columnia:column_linkcross_hades_core_sandstone +columnia:column_linkdown_hades_trees_colwood_dark_grey +hades_stairs:step_in_canvas_bark +hades_stairs:step_out_canvas_bark +hades_stairs:stair_out_colwood_magenta +columnia:column_link_hades_core_brick_grey +hades_stairs:slab_canvas_bark +hades_stairs:stair_in_canvas_bark +hades_stairs:stair_out_canvas_bark +hades_stairs:stair_canvas_bark +hades_stairs:step_in_orange_bark +hades_stairs:step_out_orange_bark +hades_stairs:step_orange_bark +hades_stairs:slab_orange_bark +hades_stairs:stair_in_orange_bark +hades_stairs:stair_out_orange_bark +hades_stairs:stair_orange_bark +hades_stairs:step_in_birch_bark +hades_stairs:step_out_birch_bark +hades_stairs:step_birch_bark +columnia:column_stairsub_columnia_rusty_block +hades_stairs:stair_in_birch_bark +hades_stairs:stair_out_birch_bark +columnia:column_linktee_hades_core_basalt +hades_stairs:step_pale_bark +hades_stairs:stair_out_pale_bark +hades_stairs:step_out_jungle_bark +hades_stairs:step_jungle_bark +hades_stairs:slab_blue +hades_doors:door_sandstone_volcanic_b +columnia:column_linkcross_hades_core_essexite +hades_stairs:stair_jungle_bark +columnia:column_linktee_hades_core_turquosite_brick +columnia:column_crosslink_hades_core_sandstone +hades_stairs:step_out_bark +columnia:column_linkangle_hades_core_brick_red +hades_trees:birch_leaves +columnia:column_linktee_hades_trees_colwood_dark_green +hades_stairs:step_bark +hades_stairs:stair_in_bark +hades_stairs:step_in_colwood_yellow +hades_stairs:step_in_stone +hades_stairs:step_charred_wood +columnia:column_linkcross_hades_core_stone_baked +hades_stairs:stair_black +hades_stairs:stair_charred_wood +hades_stairs:step_in_cream_wood +hades_trees:colwood_brown +hades_stairs:step_out_cream_wood +columnia:column_top_hades_core_apolline_brick +hades_fences:fence_wood_orange +columnia:column_linktee_hades_core_obsidian +hades_windows:window_lush_wood +hades_stairs:stair_in_cream_wood +hades_stairs:stair_out_cream_wood +columnia:column_linkangle_columnia_rusty_block +hades_stairs:stair_olivine +hades_itemshow:showcase +hades_stairs:stair_in_colwood_uncolored +columnia:column_link_hades_core_orangite +hades_stairs:step_out_stonebrick_baked +hades_stairs:stair_in_lush_wood +hades_stairs:stair_out_lush_wood +hades_stairs:stair_lush_wood +hades_stairs:step_jungle_wood +columnia:column_linkdown_hades_trees_jungle_bark +hades_stairs:step_out_pale_wood +hades_stairs:slab_tinblock +columnia:column_stairsubpillar_hades_core_brick_brown +hades_stairs:stair_in_pale_wood +columnia:column_linkdown_hades_core_olivine +columnia:column_linkangle_hades_core_stonebrick_baked +hades_stairs:stair_out_pale_wood +hades_core:stone_block +hades_stairs:step_out_wood +hades_stairs:step_wood +hades_core:orangite_block +hades_stairs:slab_wood +columnia:column_linkangle_hades_core_tuff_baked +hades_trees:orange_bark +hades_stairs:stair_in_wood +columnia:column_linkcross_hades_core_cinnabar_brick +hades_farming:spice_3 +hades_core:ladder_lush_wood +hades_farming:strawberry_2 +hades_windows:window_wood_black +hades_farming:strawberry_1 +hades_farming:seed_strawberry +hades_doors:door_steel_green_d +hades_farming:potato_3 +columnia:column_linkangle_down_hades_core_essexite_brick +hades_farming:potato_2 +hades_farming:potato_1 +hades_vines:jungle +hades_doors:door_steel_b +hades_farming:seed_potato +hades_stairs:slab_brick_magenta +hades_flowerpots:flower_pot_branch_bush +hades_stairs:slab_lillite +columnia:column_linktee_hades_core_sandstone_volcanic_brick +columnia:column_linkangle_down_hades_trees_colwood_grey +hades_farming:cotton_1 +hades_farming:seed_cotton +columnia:column_linkcross_hades_trees_colwood_blue +hades_farming:wheat_1 +hades_stairs:stair_colwood_cyan +hades_farming:soil_wet +hades_stairs:stair_out_pink +hades_doors:door_steel_grey_c +hades_doors:door_steel_cyan_e +hades_grass:junglegrass +hades_grass:seed_grass +hades_stairs:slab_cobble_sandstone +hades_grass:grass_4 +hades_grass:grass_2 +hades_grass:grass_1 +hades_bones:bones +hades_beds:bed_top +hades_doors:door_sandstone_b +columnia:column_stairsub_hades_core_azurite +hades_cloth:dark_grey +columnia:column_linkcrossdown_hades_core_tuff_baked +hades_stairs:slab_brick_white +hades_cloth:orange +hades_cloth:magenta +hades_doors:door_steel_red_d +hades_cloth:blue +columnia:column_linkvertical_hades_core_brick_yellow +hades_stairs:step_out_brick_blue +columnia:column_stairsubpillar_hades_trees_colwood_black +columnia:column_mid_hades_trees_pale_bark +hades_doors:door_steel_yellow_b +columnia:column_top_hades_core_olivine +hades_cloth:red +hades_cloth:grey +hades_cloth:white +columnia:column_linktee_down_columnia_rusty_block +hades_trees:jungle_bark +columnia:column_linkcrossdown_columnia_rusty_block +columnia:column_linkdown_columnia_rusty_block +columnia:column_stairsub_hades_core_tuff_baked_brick +columnia:column_linkvertical_hades_core_obsidianbrick +hades_doors:door_wood_cream_b +columnia:column_mid_columnia_rusty_block +columnia:column_stairsubpillar_hades_core_lillite_brick +hades_stairs:step_out_stone_baked +columnia:column_linktee_down_hades_core_lillite_brick +columnia:column_linktee_hades_core_lillite_brick +columnia:column_linkangle_down_hades_core_lillite_brick +columnia:column_link_hades_core_essexite +hades_stairs:step_colwood_red +columnia:column_linkvertical_hades_core_lillite_brick +columnia:column_linkcrossdown_hades_core_lillite_brick +hades_doors:door_steel_black_d +columnia:column_crosslink_hades_core_brick_violet +hades_core:brick_white +columnia:column_stairsub_hades_core_cobble_sandstone_volcanic +columnia:column_linkcross_hades_core_lillite_brick +columnia:lamp_ceiling +columnia:column_linkdown_hades_core_lillite_brick +columnia:column_link_hades_core_lillite_brick +columnia:column_linktee_down_hades_core_brick_magenta +hades_stairs:slab_colwood_cyan +columnia:column_bottom_hades_core_lillite_brick +hades_doors:door_wood_cream_c +columnia:column_top_hades_core_lillite_brick +hades_stairs:slab_black +hades_fences:fence_wood_blue +columnia:column_linktee_hades_core_stonebrick_baked +columnia:column_linkcrossdown_hades_trees_pale_bark +columnia:column_stairsub_hades_core_lillite +columnia:column_linktee_down_hades_core_lillite +hades_stairs:stair_cobble_sandstone_volcanic +hades_doors:trapdoor_cream +columnia:column_linkdown_hades_core_brick +hades_fences:fence_pale_wood +columnia:column_linkvertical_hades_core_lillite +columnia:column_mid_hades_core_tuff_brick +columnia:column_linkcrossdown_hades_core_lillite +hades_stairs:slab_colwood_magenta +columnia:column_crosslink_hades_core_turquosite +columnia:column_link_hades_core_lillite +hades_core:tuff_brick +hades_stairs:stair_in_sandstone +hades_stairs:step_in_sandstonebrick +columnia:column_linkcrossdown_hades_core_chondrite_brick +columnia:column_linkdown_hades_core_brick_brown +hades_chests:chest_orange +hades_core:stone_with_gold +columnia:column_stairsubpillar_hades_core_azurite_brick +columnia:column_stairsub_hades_core_azurite_brick +columnia:column_linktee_down_hades_core_azurite_brick +hades_stairs:step_in_sandstone_volcanic_brick +hades_refruit:flower_cocoa +columnia:column_top_hades_core_tuff +columnia:column_linkcrossdown_hades_core_brick_green +columnia:column_linkangle_down_hades_core_azurite_brick +columnia:column_top_hades_core_brick_brown +columnia:column_link_hades_core_stone +columnia:column_linkangle_hades_core_azurite_brick +hades_stairs:stair_out_chondrite_brick +columnia:column_linkangle_hades_core_brick_black +columnia:column_linkcrossdown_hades_core_azurite_brick +columnia:column_linkvertical_hades_core_chondrite +columnia:column_linkcross_hades_core_azurite_brick +columnia:column_linkdown_hades_core_azurite_brick +columnia:column_linkcross_hades_trees_colwood_orange +columnia:column_linkangle_hades_core_brick_orange +columnia:column_link_hades_core_azurite_brick +columnia:column_crosslink_hades_core_azurite_brick +columnia:column_bottom_hades_core_azurite_brick +columnia:column_top_hades_core_azurite_brick +columnia:column_mid_hades_core_azurite_brick +hades_beds:fancy_bed_bottom +columnia:column_linktee_down_hades_core_azurite +columnia:column_bottom_hades_trees_colwood_violet +columnia:column_linktee_hades_core_azurite +hades_core:brick_pink +hades_doors:trapdoor_jungle +columnia:column_stairsubpillar_hades_core_brick_cyan +hades_doors:door_glass_c +gluncarp:grey +columnia:column_linkangle_down_hades_trees_colwood_green +columnia:column_linkdown_hades_core_chondrite +columnia:column_linkvertical_hades_core_azurite +columnia:column_link_hades_core_brick_red +columnia:column_linkcrossdown_hades_core_azurite +columnia:column_linkdown_hades_core_azurite +columnia:column_link_hades_trees_birch_bark +columnia:column_linkdown_hades_trees_pale_bark +hades_core:dirt_with_grass +columnia:column_mid_hades_core_marble +hades_stairs:stair_in_orange +hades_doors:door_stone_baked_e +hades_stairs:stair_brick_grey +columnia:column_stairsub_hades_core_turquosite_brick +hades_trash:trash_can_plastic +hades_stairs:stair_out_colwood_violet +columnia:column_stairsub_hades_core_brick_green +columnia:column_stairsubpillar_hades_core_turquosite +hades_stairs:step_in_bark +columnia:column_linkangle_down_hades_core_turquosite_brick +columnia:column_linkangle_hades_core_turquosite_brick +columnia:column_linkvertical_hades_core_turquosite_brick +columnia:column_linkcrossdown_hades_core_turquosite_brick +columnia:column_linkcross_hades_core_turquosite_brick +columnia:column_linkdown_hades_core_turquosite_brick +columnia:column_link_hades_core_turquosite_brick +columnia:column_crosslink_hades_core_turquosite_brick +columnia:column_linktee_hades_trees_colwood_cyan +columnia:column_bottom_hades_core_turquosite_brick +columnia:column_top_hades_core_turquosite_brick +columnia:column_mid_hades_core_turquosite_brick +columnia:column_top_hades_core_tuff_baked +hades_stairs:stair_basalt_brick +columnia:column_linktee_down_hades_core_turquosite +columnia:column_link_hades_core_cinnabar +columnia:column_crosslink_hades_core_brick_magenta +hades_stairs:slab_dark_green +columnia:column_linkangle_down_hades_core_turquosite +columnia:column_linkangle_hades_core_turquosite +columnia:column_linkcrossdown_hades_core_turquosite +columnia:column_linkcross_hades_core_turquosite +columnia:column_linkdown_hades_core_turquosite +columnia:column_link_hades_core_turquosite +columnia:column_linkdown_hades_core_lillite +hades_vines:cave_rotten +columnia:column_linktee_hades_core_brick_green +columnia:column_top_hades_core_turquosite +columnia:column_mid_hades_core_turquosite +columnia:column_stairsubpillar_hades_core_cinnabar_brick +columnia:column_stairsub_hades_trees_jungle_wood +hades_stairs:slab_double_goldblock +hades_waterplants:seaweed_2 +columnia:column_linktee_down_hades_core_cinnabar_brick +columnia:column_linktee_hades_core_cinnabar_brick +columnia:column_linkangle_down_hades_core_cinnabar_brick +columnia:column_linkangle_hades_core_cinnabar_brick +hades_doors:door_steel_orange_c +columnia:column_linkvertical_hades_core_cinnabar_brick +columnia:column_linkvertical_hades_core_brick_orange +hades_stairs:stair_steelblock +hades_stairs:stair_wood +columnia:column_mid_hades_core_cobble_baked +columnia:column_linkdown_hades_core_cinnabar_brick +columnia:column_link_hades_core_cinnabar_brick +columnia:column_crosslink_hades_core_cinnabar_brick +columnia:column_bottom_hades_core_cinnabar_brick +columnia:column_top_hades_core_cinnabar_brick +hades_doors:door_steel_magenta_c +columnia:column_mid_hades_core_cinnabar_brick +columnia:column_stairsubpillar_hades_core_cinnabar +columnia:column_linktee_down_hades_core_cinnabar +columnia:column_stairsub_hades_core_stonebrick +columnia:column_linkangle_hades_core_cinnabar +hades_stairs:stair_in_colwood_cyan +hades_doors:door_basalt_e +columnia:column_crosslink_hades_core_cinnabar +columnia:column_stairsub_hades_core_essexite_brick +hades_tiles:floor_jungle_lush +columnia:bracket +columnia:column_stairsubpillar_hades_core_orangite_brick +columnia:column_stairsub_hades_core_orangite_brick +columnia:column_linktee_down_hades_core_orangite_brick +columnia:column_linktee_hades_core_orangite_brick +columnia:column_linkangle_down_hades_core_orangite_brick +columnia:column_linkangle_hades_core_orangite_brick +hades_stairs:stair_cobble_baked +columnia:column_linkcrossdown_hades_core_orangite_brick +columnia:column_linkcross_hades_core_orangite_brick +columnia:column_linkdown_hades_core_orangite_brick +columnia:column_link_hades_core_orangite_brick +hades_core:cobble +columnia:column_crosslink_hades_core_orangite_brick +columnia:column_bottom_hades_core_orangite_brick +columnia:column_top_hades_core_orangite_brick +columnia:column_mid_hades_core_orangite_brick +columnia:column_stairsubpillar_hades_core_orangite +columnia:column_linktee_down_hades_core_orangite +columnia:column_linktee_hades_core_orangite +columnia:column_linkangle_hades_core_orangite +columnia:column_linktee_down_hades_core_cobble +columnia:column_linkcrossdown_hades_core_orangite +columnia:column_linkdown_hades_core_apolline_brick +columnia:column_crosslink_hades_trees_birch_bark +columnia:column_stairsubpillar_hades_core_apolline_brick +columnia:column_stairsub_hades_core_apolline_brick +columnia:column_linktee_down_hades_core_apolline_brick +columnia:column_linktee_hades_core_apolline_brick +hades_doors:trapdoor_steel_bar_open +columnia:column_linkangle_down_hades_core_apolline_brick +columnia:column_linkangle_hades_core_apolline_brick +columnia:column_linkvertical_hades_core_apolline_brick +hades_bushes:white +columnia:column_linkcrossdown_hades_core_apolline_brick +columnia:column_linkcross_hades_core_apolline_brick +columnia:column_mid_hades_core_orangite +columnia:column_link_hades_core_apolline_brick +columnia:column_crosslink_hades_core_apolline_brick +columnia:column_bottom_hades_core_apolline_brick +hades_stairs:step_cream_wood +columnia:column_linkangle_down_hades_core_olivine +columnia:column_mid_hades_core_apolline_brick +columnia:column_crosslink_hades_trees_colwood_blue +columnia:column_linktee_down_hades_core_apolline +columnia:column_linktee_hades_core_apolline +columnia:column_linktee_down_hades_core_basalt +columnia:column_linkvertical_hades_trees_lush_wood +hades_core:cobble_block_baked +columnia:column_linkvertical_hades_trees_cream_wood +hades_core:ash +hades_trees:banana +hades_stairs:stair_out_cinnabar +columnia:column_linkcrossdown_hades_core_apolline +columnia:column_link_hades_core_apolline +columnia:column_top_hades_core_apolline +columnia:column_mid_hades_core_apolline +columnia:column_stairsubpillar_hades_core_olivine_brick +columnia:column_stairsub_hades_core_olivine_brick +hades_core:glowing_cactus_block +hades_stairs:stair_in_chondrite_brick +columnia:column_mid_hades_core_olivine_brick +columnia:column_crosslink_hades_core_olivine +hades_core:lillite +hades_stairs:slab_colwood_white +columnia:column_stairsub_hades_trees_colwood_cyan +hades_doors:door_steel_violet_a +columnia:column_linkangle_hades_core_sandstonebrick +hades_stairs:slab_olivine +columnia:column_stairsub_hades_trees_colwood_magenta +columnia:column_mid_hades_core_brick_white +hades_flowerpots:flower_pot_white +columnia:column_link_hades_core_tuff_baked +hades_tiles:floor_chondrite_tuffbaked +columnia:column_linkcrossdown_hades_trees_colwood_yellow +gluncarp:black +hades_stairs:step_brick_cyan +hades_lamps:lantern +hades_fences:fence_wood_red +hades_doors:door_steel_red_e +hades_tiles:floor_pale_cream +columnia:column_crosslink_hades_trees_cream_wood +hades_doors:door_stone_baked_a +hades_doors:trapdoor_steel_bar +hades_core:azurite_brick +hades_core:apolline_block +columnia:column_linkcross_hades_trees_jungle_bark +columnia:column_linktee_hades_core_brick_grey +hades_doors:door_steel_yellow_c +hades_doors:trapdoor_pale_open +columnia:column_linkcross_hades_core_stonebrick +hades_walls:sandstone_volcanic +columnia:column_linkdown_hades_core_essexite +hades_stairs:step_in_colwood_green +hades_core:tuff_baked_brick +columnia:column_bottom_hades_core_olivine_brick +hades_doors:door_dungeon2_b +hades_doors:door_marble_b +hades_stairs:stair_in_brick_red +columnia:column_linkangle_hades_core_obsidianbrick +columnia:column_stairsubpillar_hades_core_marble_brick +columnia:column_stairsubpillar_hades_core_basalt_brick +hades_flowerpots:flower_pot_olive_leaves +columnia:column_linkcrossdown_hades_core_brick_grey +hades_core:ladder_cream_wood +hades_doors:door_steel_pink_d +columnia:column_stairsubpillar_hades_trees_bark +columnia:column_link_hades_core_brick_cyan +columnia:column_linktee_down_hades_core_marble_brick +columnia:column_linktee_hades_core_marble_brick +hades_doors:door_steel_black_e +hades_core:basalt +columnia:column_bottom_hades_trees_colwood_yellow +hades_stairs:step_out_brick_magenta +hades_doors:trapdoor_rusty_bar_open +columnia:column_stairsub_hades_core_marble +columnia:column_mid_hades_core_brick_red +hades_grass:dead_grass_2 +hades_tiles:floor_wood_lush +hades_doors:door_rusty_bar_e +hades_doors:door_rusty_bar_d +hades_doors:door_rusty_bar_a +hades_doors:door_steel_brown_d +hades_stairs:stair_out_lillite +columnia:column_linkangle_hades_core_basalt_brick +hades_waterplants:waterlily_45 +hades_core:cinnabar_block +columnia:column_stairsubpillar_hades_core_azurite +columnia:column_stairsub_hades_trees_colwood_red +hades_stairs:stair_out_brick_blue +hades_doors:door_essexite_b +columnia:column_mid_hades_core_chondrite_brick +hades_stairs:stair_basalt +hades_stairs:step_out_floor_sandstonevolcanic_sandstonevolcanic +columnia:column_linkangle_hades_trees_colwood_dark_green +hades_stairs:stair_yellow +hades_doors:door_steel_darkgrey_b +hades_tiles:floor_tuffbaked_sandstone +columnia:column_linkcrossdown_hades_trees_colwood_magenta +hades_doors:door_steel_blue_e +columnia:column_linkcross_hades_core_cobble_sandstone_volcanic +hades_flowerpots:flower_pot_burned_branches +hades_core:obsidian_block +hades_stairs:step_out_charred_bark +hades_doors:door_steel_blue_c +hades_doors:door_steel_blue_b +columnia:column_linkcrossdown_hades_core_brick_dark_green +columnia:column_stairsub_hades_trees_bark +hades_doors:gate_jungle_wood_open +hades_windows:window_wood_brown +hades_tiles:floor_jungle_pale +hades_torches:torch_ceiling +hades_doors:door_steel_grey_e +hades_doors:door_steel_green_e +columnia:column_stairsub_hades_core_cobble_baked +hades_trees:birch_bark +columnia:column_bottom_hades_core_essexite_brick +hades_doors:door_rusty_bar_c +columnia:column_linkcross_hades_core_olivine_brick +hades_stairs:stair_in_floor_wood_wood +columnia:column_linkcrossdown_hades_core_stonebrick +hades_doors:door_wood_lush_d +hades_doors:door_wood_cream_d +columnia:column_crosslink_hades_core_brick_blue +hades_doors:door_wood_lush_c +hades_tiles:floor_lush_cream +columnia:column_crosslink_hades_core_tuff_baked_brick +hades_doors:door_wood_cream_a +hades_chests:chest_white_locked +columnia:column_linkangle_down_hades_core_cinnabar +columnia:column_mid_hades_trees_colwood_cyan +hades_windows:window_wood_pink +hades_core:turquosite +hades_doors:door_wood_d +hades_doors:door_stone_baked_d +columnia:column_stairsubpillar_hades_core_brick_red +columnia:column_linkdown_hades_core_brick_black +hades_core:ladder +columnia:column_linkdown_hades_core_brick_dark_green +hades_windows:window_wood_orange +hades_stairs:step_out_azurite +columnia:column_mid_hades_core_brick_dark_green +columnia:column_linkcross_hades_core_cinnabar +columnia:column_linkvertical_hades_core_brick_dark_green +hades_flowerpots:flower_pot_banana_leaves +hades_flowerpots:flower_pot_orange_leaves +hades_core:ash_block +hades_flowerpots:flower_pot_birch_sapling +hades_tiles:floor_pale_pale +columnia:column_linktee_down_hades_trees_pale_bark +columnia:column_linkvertical_hades_core_chondrite_brick +columnia:column_link_hades_trees_colwood_magenta +hades_windows:window_pale_wood +columnia:column_linkcross_hades_trees_colwood_yellow +columnia:column_link_hades_core_brick_blue +columnia:column_linkangle_down_hades_trees_pale_wood +hades_core:tuff_baked_block +hades_trees:olive_leaves +columnia:column_mid_hades_core_brick_grey +columnia:column_linkcross_hades_trees_bark +columnia:column_bottom_hades_core_basalt +hades_doors:gate_lush_wood_closed +columnia:column_mid_hades_core_cobble +hades_flowerpots:flower_pot_cultivated_jungle_sapling +hades_stairs:stair_floor_tuff_tuff +hades_doors:door_sandstone_a +hades_stairs:stair_chondrite +hades_stairs:slab_sandstone +hades_stairs:stair_out_floor_jungle_jungle +columnia:column_linktee_down_hades_trees_lush_wood +hades_tiles:floor_jungle_jungle +hades_chests:chest_red +columnia:column_linkangle_hades_core_brick +columnia:column_mid_hades_trees_orange_bark +hades_core:obsidianbrick +columnia:column_linkcross_hades_trees_colwood_black +hades_fences:fence_wood_dark_grey +hades_doors:door_steel_violet_c +columnia:column_linktee_down_hades_trees_canvas_bark +columnia:column_link_hades_core_essexite_brick +hades_core:stone_with_copper +hades_furniture:table_lamp_off +hades_doors:door_dungeon1_a +columnia:rusty_block +columnia:column_mid_hades_trees_colwood_grey +hades_doors:gate_lush_wood_open +columnia:column_linkangle_down_hades_core_chondrite +columnia:column_mid_hades_trees_canvas_bark +hades_core:essexite_brick +columnia:column_linktee_hades_core_brick_cyan +hades_stairs:step_out_colwood_dark_green +columnia:column_linkdown_hades_trees_orange_bark +columnia:column_linktee_hades_core_cobble +columnia:column_stairsub_hades_trees_colwood_brown +columnia:column_stairsub_hades_core_sandstone +columnia:column_linkvertical_hades_core_brick_green +columnia:column_bottom_hades_core_brick_blue +gluncarp:dark_green +hades_stairs:stair_out_sandstone_volcanic +columnia:column_top_hades_core_sandstone_volcanic +hades_core:marble +hades_stairs:step_brick_green +hades_flowerpots:flower_pot_leaves +hades_core:mossycobble +columnia:column_linkdown_hades_core_sandstonebrick +columnia:column_bottom_hades_trees_colwood_red +columnia:column_linkvertical_hades_core_cobble_sandstone_volcanic +hades_torches:torch_low +hades_waterplants:seaweed_3 +columnia:column_top_hades_core_stonebrick +columnia:column_mid_hades_core_brick +columnia:column_linkangle_down_hades_trees_cream_wood +hades_chests:chest_violet +columnia:column_stairsub_hades_core_brick_brown +columnia:column_mid_hades_core_chondrite +hades_core:floor_bstone_sandstone +hades_furniture:bars +hades_refruit:bud_cocoa +columnia:column_linktee_hades_trees_jungle_bark +hades_stairs:stair_in_stone_baked +hades_doors:trapdoor_open +hades_core:sugarcane +columnia:column_bottom_hades_trees_pale_wood +hades_doors:door_glass_a +hades_tiles:floor_stonebaked_tuff +columnia:column_linkcross_hades_core_basalt +hades_tiles:floor_wood_wood +columnia:column_link_hades_core_basalt_brick +hades_stairs:step_out_copperblock +hades_windows:window_wood_uncolored +hades_stairs:step_out_colwood_violet +hades_flowerpots:flower_pot_jungle_sapling +columnia:column_linkangle_down_hades_trees_bark +columnia:column_link_hades_core_cobble_sandstone_volcanic +hades_core:dirt_with_grass_l2 +columnia:column_linkangle_hades_core_cobble_sandstone +columnia:column_crosslink_hades_trees_colwood_dark_grey +hades_core:ladder_pale_wood +columnia:column_linkdown_hades_trees_colwood_orange +hades_bushes:branch_bush +columnia:column_bottom_hades_core_essexite +hades_windows:window_wood_magenta +columnia:column_link_hades_core_obsidianbrick +columnia:column_linkcrossdown_hades_trees_canvas_bark +columnia:column_stairsubpillar_hades_trees_colwood_grey +hades_flowerpots:flower_pot_pale_leaves +hades_walls:sandstone +hades_stairs:step_in_floor_essexitegold_essexitegold +hades_fences:fence_wood_uncolored +columnia:column_crosslink_hades_core_brick_dark_green +hades_tiles:floor_essexite_essexitegold +columnia:column_mid_hades_trees_wood +hades_tiles:floor_basalt_marble +columnia:column_top_hades_core_sandstonebrick +hades_core:stone_baked +columnia:column_linkdown_hades_core_stonebrick +hades_tiles:floor_marble_essexite +hades_trees:cultivated_jungle_sapling +hades_tiles:floor_pale_wood +hades_trees:banana_sapling +hades_flowerpots:flower_pot_birch_leaves +hades_stairs:slab_obsidianbrick +columnia:column_stairsub_hades_trees_pale_bark +hades_tiles:floor_lush_jungle +columnia:column_top_hades_trees_lush_wood +columnia:column_linkcross_hades_core_cobble_sandstone +columnia:column_linkcrossdown_hades_core_cobble_sandstone +columnia:column_top_hades_trees_canvas_bark +columnia:column_linkdown_hades_trees_colwood_grey +columnia:column_linkvertical_hades_trees_colwood_orange +columnia:column_stairsubpillar_hades_trees_colwood_blue +hades_core:coalblock +columnia:column_stairsub_hades_core_sandstone_volcanic_brick +columnia:column_linkvertical_hades_trees_colwood_blue +columnia:column_linkangle_hades_core_azurite +columnia:column_linkangle_hades_core_lillite +hades_chests:chest_magenta_locked +columnia:column_stairsub_hades_core_tuff +hades_fences:fence_wood_grey +hades_stairs:slab_sandstone_volcanic +columnia:column_linkangle_down_hades_core_stonebrick_baked +columnia:column_stairsubpillar_hades_trees_colwood_green +columnia:column_stairsubpillar_hades_trees_orange_bark +columnia:column_mid_hades_core_brick_black +hades_tiles:floor_wood_jungle +columnia:column_mid_hades_core_sandstonebrick +hades_furniture:chair_white +columnia:column_linkcross_hades_trees_colwood_dark_green +columnia:column_linkvertical_hades_trees_pale_wood +hades_chests:chest_grey_locked +hades_trees:cocoa_sapling +hades_trees:colwood_violet +columnia:column_bottom_hades_core_brick_dark_green +hades_furniture:plant_pot +hades_stairs:step_in_brick_green +hades_tiles:floor_essexite_marble +hades_flowers:red +hades_walls:cobble_sandstone_volcanic +hades_furniture:table_lamp_low +gluncarp:violet +hades_tiles:floor_wood_pale +hades_flowerpots:flower_pot_cactus +columnia:column_stairsub_hades_core_chondrite +columnia:column_crosslink_hades_trees_colwood_violet +columnia:column_stairsubpillar_hades_trees_jungle_wood +hades_doors:trapdoor_steel +columnia:column_linktee_down_hades_trees_colwood_cyan +columnia:column_linkcrossdown_hades_trees_colwood_cyan +columnia:column_crosslink_hades_trees_colwood_dark_green +hades_stairs:step_in_wood +hades_torches:torch_low_wall +columnia:column_linkangle_down_hades_trees_colwood_cyan +hades_stairs:step_in_lillite +columnia:column_linkcross_hades_trees_pale_bark +hades_stairs:stair_out_apolline +hades_tiles:floor_lush_lush +columnia:column_stairsub_hades_core_brick_blue +hades_chests:chest_cyan_locked +hades_doors:door_steel_brown_e +columnia:column_mid_hades_core_brick_green +hades_chests:chest_yellow_locked +hades_trees:bark +columnia:column_stairsubpillar_hades_core_brick_magenta +hades_grass:grass_5 +columnia:column_stairsubpillar_hades_trees_colwood_magenta +columnia:column_crosslink_hades_core_azurite +hades_tiles:floor_sandstone_tuff +hades_doors:door_essexite_e +hades_flowerpots:flower_pot_orange_sapling +columnia:column_link_hades_trees_colwood_uncolored +hades_core:cinnabar_brick +hades_grass:dead_grass_1 +hades_flowerpots:flower_pot_banana_sapling +columnia:column_bottom_hades_core_obsidianbrick +hades_refruit:bud_banana +hades_trees:orange +columnia:column_linktee_hades_trees_colwood_pink +hades_tiles:floor_basalt_basalt +gluncarp:orange +columnia:column_stairsubpillar_hades_core_obsidianbrick +columnia:column_crosslink_hades_core_tuff +columnia:column_linkcross_hades_core_brick_yellow +columnia:column_mid_hades_core_obsidian +columnia:column_mid_hades_trees_cream_wood +hades_glowcrystals:glowglass +hades_core:gravel_volcanic +columnia:column_top_hades_core_brick +hades_stairs:step_in_steelblock +hades_stairs:stair_colwood_magenta +columnia:column_linkcross_hades_trees_colwood_uncolored +hades_stairs:step_out_brick_brown +hades_fences:fence_wood_dark_green +hades_doors:door_steel_orange_e +columnia:column_mid_hades_trees_lush_wood +hades_tiles:floor_sandstone_sandstone +hades_glowcrystals:glowcrystal_torch +columnia:column_bottom_hades_trees_cream_wood +hades_stairs:stair_in_colwood_green +columnia:column_linktee_hades_trees_pale_wood +hades_stairs:slab_stonebrick +columnia:column_mid_hades_core_brick_yellow +hades_core:dirt +columnia:column_stairsubpillar_hades_trees_wood +hades_doors:door_steel_e +columnia:column_linkcrossdown_hades_core_mossycobble +columnia:column_linktee_down_hades_core_stonebrick_baked +hades_trees:tree +columnia:column_linkdown_hades_core_stone_baked +hades_doors:door_steel_magenta_e +hades_trees:lush_wood +columnia:column_linkangle_down_hades_core_sandstone_volcanic +columnia:column_linktee_hades_trees_wood +hades_doors:door_wood_jungle_d +hades_furniture:table_black +columnia:column_mid_hades_trees_colwood_dark_green +hades_fences:fence_wood_brown +hades_furnaces:prism_furnace_active +columnia:column_link_hades_core_stonebrick +hades_trees:olive_sapling +columnia:column_mid_hades_trees_colwood_yellow +hades_furniture:armchair_brown +hades_stairs:step_in_cyan +hades_stairs:slab_floor_stone_stone +ignore +hades_stairs:slab_brick_red +hades_core:sandstone +hades_doors:trapdoor_cream_open +hades_core:olivine_brick +hades_doors:door_steel_bar_b +hades_furniture:table_uncolored +columnia:column_link_hades_core_mossycobble +hades_stairs:stair_out_colwood_dark_green +hades_chests:chest_black_locked +columnia:column_linkangle_hades_trees_colwood_orange +signs_lib:sign_wall_white_black +hades_chests:chest_blue_locked +hades_stairs:step_out_brick_red +columnia:column_bottom_hades_core_stonebrick_baked +hades_doors:door_steel_bar_a +hades_waterplants:waterlily_s1 +hades_core:brick_cyan +columnia:column_linkvertical_hades_core_olivine_brick +hades_stairs:stair_stonebrick_baked +hades_doors:door_steel_bar_e +hades_doors:gate_cream_wood_open +columnia:column_link_hades_core_stone_baked +columnia:column_linkcross_hades_core_marble_brick +hades_stairs:stair_red +hades_stairs:step_in_brick_white +columnia:column_linkcross_hades_trees_birch_bark +hades_doors:door_steel_pink_e +columnia:column_top_hades_trees_colwood_black +hades_stairs:stair_out_jungle_wood +columnia:column_link_hades_core_basalt +columnia:column_mid_hades_core_stone_baked +hades_stairs:stair_out_colwood_grey +columnia:column_linktee_down_hades_core_cobble_baked +columnia:column_bottom_hades_core_brick_white +columnia:column_linkangle_down_hades_core_cobble_baked +hades_tiles:floor_tuffbaked_stonebaked +columnia:column_stairsub_hades_core_cobble_sandstone +hades_stairs:step_in_sandstone +hades_trees:birch_sapling +hades_stairs:stair_out_jungle_bark +columnia:column_linkcross_hades_core_cobble_baked +columnia:column_link_hades_core_cobble_baked +columnia:column_linkangle_hades_core_sandstone_volcanic_brick +columnia:column_linkangle_down_hades_core_sandstone +columnia:column_stairsubpillar_hades_core_chondrite_brick +hades_tiles:floor_tuff_sandstone +columnia:column_linkvertical_hades_trees_jungle_bark +columnia:column_linkvertical_hades_core_sandstone_volcanic_brick +columnia:column_linkcross_hades_core_brick_cyan +columnia:column_linkcrossdown_hades_core_essexite_brick +columnia:column_stairsub_hades_core_brick_dark_grey +hades_refruit:flower_coconut +columnia:column_linkcross_hades_core_sandstone_volcanic_brick +columnia:column_top_hades_core_sandstone_volcanic_brick +columnia:column_crosslink_hades_core_sandstone_volcanic +hades_stairs:stair_floor_essexite_essexite +columnia:column_bottom_hades_trees_jungle_bark +columnia:column_linkvertical_hades_trees_colwood_brown +columnia:column_linktee_hades_core_brick_brown +hades_stairs:stair_brick_brown +columnia:column_linkangle_hades_core_cobble_sandstone_volcanic +columnia:column_linkcrossdown_hades_core_sandstonebrick +hades_trees:colwood_dark_grey +columnia:column_linktee_hades_core_marble +hades_chests:chest_dark_green_locked +columnia:column_linkvertical_hades_core_sandstone_volcanic +columnia:column_linkdown_hades_core_sandstone_volcanic_brick +hades_tiles:floor_cream_lush +hades_stairs:step_out_orange +columnia:column_linktee_down_hades_trees_colwood_violet +columnia:column_linkvertical_hades_trees_canvas_bark +columnia:column_mid_hades_core_olivine +columnia:column_crosslink_hades_core_cactus_brick +columnia:column_linkangle_down_hades_core_tuff_baked +columnia:column_linkangle_hades_core_cobble +columnia:column_linkangle_down_hades_core_cobble +columnia:column_mid_hades_core_brick_violet +gluncarp:magenta +columnia:column_mid_hades_trees_colwood_black +columnia:column_stairsub_hades_core_cobble +columnia:column_linkangle_down_hades_core_brick_dark_green +hades_doors:door_wood_pale_d +columnia:column_linkcrossdown_hades_core_cobble_baked +columnia:column_top_hades_core_cobble_baked +columnia:column_linkangle_hades_core_cobble_baked +hades_doors:door_steel_magenta_a +columnia:column_linkangle_down_hades_trees_birch_bark +columnia:column_link_hades_core_tuff_brick +hades_chests:chest_locked +columnia:column_linkangle_down_hades_core_brick_pink +columnia:column_linkangle_hades_trees_orange_bark +columnia:column_linkcrossdown_hades_core_stone +columnia:column_stairsubpillar_hades_core_stone +hades_doors:door_rusty_bar_b +columnia:column_mid_hades_core_cactus_brick +hades_stairs:stair_colwood_grey +columnia:column_top_hades_core_cactus_brick +hades_stairs:stair_in_colwood_violet +columnia:column_link_hades_core_cobble +columnia:column_linkcrossdown_hades_core_cactus_brick +columnia:column_linkangle_hades_core_cactus_brick +columnia:column_linkangle_hades_core_apolline +columnia:column_mid_hades_core_stone +columnia:column_top_hades_core_stone_baked +columnia:column_bottom_hades_core_brick_green +hades_tiles:floor_chondrite_stone +columnia:column_bottom_hades_trees_birch_bark +columnia:column_linkangle_hades_core_stone_baked +columnia:column_linkangle_down_hades_core_stone_baked +hades_doors:door_steel_darkgreen_a +columnia:column_stairsubpillar_hades_core_stone_baked +columnia:column_top_hades_core_stonebrick_baked +hades_stairs:step_essexite +columnia:column_linkvertical_hades_core_stonebrick_baked +hades_lamps:lamp_wall +hades_waterplants:waterlily_s2 +columnia:column_stairsub_hades_core_stonebrick_baked +columnia:column_bottom_hades_core_mossycobble +hades_chests:chest_pink +hades_stairs:stair_magenta +columnia:column_link_hades_trees_bark +hades_stairs:stair_out_floor_stone_stone +hades_trees:jungle_wood +columnia:column_bottom_hades_core_obsidian +columnia:column_bottom_hades_core_brick +hades_stairs:stair_in_jungle_bark +columnia:column_stairsub_hades_core_obsidian +columnia:column_crosslink_hades_core_brick_pink +signs_lib:sign_wall +columnia:column_linkcrossdown_hades_core_obsidianbrick +hades_stairs:stair_brick_violet +columnia:column_top_hades_trees_colwood_yellow +columnia:column_bottom_hades_core_stonebrick +hades_vines:willow +columnia:column_linkangle_hades_core_stonebrick +columnia:column_linkangle_down_hades_core_stonebrick +columnia:column_stairsubpillar_hades_trees_pale_wood +columnia:column_top_hades_trees_colwood_dark_green +hades_tiles:floor_sandstonevolcanic_stone +columnia:column_linkangle_hades_trees_wood +columnia:column_linkcross_hades_trees_cream_wood +hades_stairs:step_out_sandstonebrick +hades_stairs:slab_floor_jungle_jungle +hades_stairs:step_out_chondrite +hades_doors:door_obsidian_glass_e +columnia:column_bottom_hades_core_brick_yellow +hades_stairs:step_in_brown +columnia:column_linktee_down_hades_trees_jungle_wood +columnia:column_bottom_hades_core_brick_pink +columnia:column_linktee_hades_core_brick_violet +columnia:column_top_hades_trees_pale_wood +columnia:column_crosslink_hades_trees_pale_wood +hades_core:sandstonebrick +columnia:column_linkcrossdown_hades_trees_pale_wood +columnia:column_bottom_hades_core_cobble_sandstone +columnia:column_mid_hades_trees_jungle_bark +columnia:column_linktee_hades_trees_colwood_white +columnia:column_linkcross_hades_core_chondrite_brick +hades_tiles:floor_chondrite_sandstone +columnia:column_linkcrossdown_hades_trees_wood +columnia:column_linktee_hades_trees_cream_wood +columnia:column_crosslink_hades_core_basalt_brick +columnia:column_linktee_down_hades_trees_cream_wood +hades_core:orangite_brick +columnia:column_bottom_hades_trees_lush_wood +columnia:column_linkangle_hades_trees_colwood_blue +columnia:column_link_hades_trees_lush_wood +hades_stairs:step_in_colwood_magenta +columnia:column_linkangle_down_hades_core_apolline +columnia:column_linkangle_down_hades_core_olivine_brick +hades_stairs:slab_brick +columnia:column_top_hades_trees_colwood_uncolored +columnia:column_bottom_hades_trees_colwood_black +columnia:column_linkangle_hades_trees_colwood_uncolored +columnia:column_link_hades_core_cactus_brick +columnia:column_linktee_hades_trees_jungle_wood +columnia:column_linktee_down_hades_trees_colwood_uncolored +columnia:column_linkcrossdown_hades_trees_colwood_white +columnia:column_top_hades_core_mossycobble +hades_trees:pale_tree +columnia:column_linkangle_down_hades_trees_colwood_red +columnia:column_linkdown_hades_core_stone +columnia:column_linkvertical_hades_trees_colwood_black +columnia:column_linkangle_hades_trees_colwood_black +hades_core:stone_with_mese +hades_windows:window_wood_yellow +columnia:column_linkcrossdown_hades_trees_colwood_uncolored +hades_stairs:slab_cobble +columnia:column_mid_hades_trees_colwood_blue +hades_core:stone_with_iron +hades_stairs:slab_cinnabar +hades_flowerpots:flower_pot_orange +hades_doors:door_wood_jungle_e +columnia:column_linkcross_hades_trees_pale_wood +hades_stairs:slab_colwood_orange +hades_flowerpots:flower_pot_jungle_leaves +hades_core:brick_violet +hades_doors:door_glass_d +columnia:column_crosslink_hades_trees_colwood_brown +columnia:column_link_hades_trees_colwood_brown +columnia:column_top_hades_core_brick_green +hades_stairs:stair_out_magenta +hades_walls:cobble_sandstone +columnia:column_linktee_hades_core_sandstone_volcanic +hades_doors:door_steel_white_a +hades_furnaces:furnace_active +columnia:column_stairsubpillar_hades_trees_colwood_brown +columnia:column_top_hades_trees_colwood_cyan +columnia:column_linkvertical_hades_core_stone_baked +hades_food:tomato_potato_salad +hades_doors:hidden_center +columnia:column_mid_hades_core_obsidianbrick +columnia:column_linkangle_hades_trees_colwood_cyan +hades_tiles:floor_stone_stone +hades_doors:door_dungeon1_e +columnia:column_crosslink_hades_core_basalt +columnia:column_linkvertical_hades_core_stonebrick +columnia:column_linkcrossdown_hades_trees_colwood_dark_green +columnia:column_stairsub_hades_trees_colwood_dark_green +hades_stairs:stair_in_floor_jungle_jungle +hades_stairs:step_in_colwood_violet +hades_tiles:floor_marble_basalt +hades_stairs:stair_in_colwood_white +hades_stairs:stair_floor_marble_marble +columnia:column_linkangle_hades_trees_colwood_dark_grey +columnia:column_linkangle_down_hades_trees_colwood_dark_grey +columnia:column_bottom_hades_core_sandstonebrick +hades_trees:canvas_tree +columnia:column_linktee_hades_trees_colwood_dark_grey +hades_doors:door_wood_lush_e +hades_stairs:slab_floor_stonebaked_stonebaked +columnia:column_mid_hades_trees_jungle_wood +hades_doors:door_chondrite_c +columnia:column_linkcross_hades_core_mossycobble +hades_tiles:floor_stonebaked_stone +columnia:column_linkangle_down_hades_core_cactus_brick +columnia:column_linktee_hades_trees_colwood_grey +columnia:column_linkcrossdown_hades_trees_colwood_green +hades_tiles:floor_pale_jungle +columnia:column_bottom_hades_trees_colwood_green +columnia:column_linkcross_hades_core_cactus_brick +columnia:column_stairsubpillar_hades_core_tuff +columnia:column_linktee_hades_core_stonebrick +columnia:column_bottom_hades_trees_colwood_blue +columnia:column_stairsub_hades_trees_colwood_green +hades_furniture:table_lamp_max +columnia:column_top_hades_trees_colwood_magenta +columnia:column_linktee_down_hades_trees_colwood_magenta +columnia:column_linkcross_hades_trees_colwood_magenta +columnia:column_stairsubpillar_hades_core_cactus_brick +columnia:column_link_hades_trees_colwood_grey +hades_doors:door_steel_bar_c +columnia:column_linktee_hades_core_sandstone +columnia:column_linkdown_hades_trees_colwood_magenta +hades_flowerpots:flower_pot_canvas_sapling +hades_tiles:floor_stonebaked_tuffbaked +columnia:column_top_hades_core_basalt +columnia:column_mid_hades_trees_colwood_orange +columnia:column_linktee_down_hades_trees_colwood_green +hades_stairs:slab_floor_essexite_essexite +columnia:column_linkcrossdown_hades_trees_colwood_orange +columnia:column_linkvertical_hades_trees_colwood_magenta +columnia:column_linktee_hades_trees_colwood_orange +columnia:column_linktee_hades_trees_colwood_red +columnia:column_top_hades_trees_colwood_pink +columnia:column_linkdown_hades_trees_colwood_uncolored +hades_stairs:stair_out_obsidianbrick +columnia:column_linkangle_down_hades_trees_colwood_dark_green +columnia:column_linkangle_hades_trees_colwood_pink +columnia:column_top_hades_trees_colwood_red +hades_stairs:slab_double_floorblock_essexite_gold_block +columnia:column_linkcross_hades_trees_colwood_red +signs_lib:sign_wall_red +hades_trees:canvas_bark +columnia:column_top_hades_core_essexite_brick +columnia:column_mid_hades_trees_colwood_violet +columnia:column_top_hades_trees_colwood_violet +columnia:column_linkdown_hades_trees_colwood_violet +columnia:column_linkcross_hades_trees_colwood_violet +hades_furniture:rusty_bars +columnia:column_top_hades_core_cobble +columnia:column_linkcrossdown_hades_trees_colwood_blue +columnia:column_top_hades_trees_colwood_white +columnia:column_link_hades_trees_colwood_yellow +hades_doors:door_steel_cyan_a +columnia:column_stairsub_hades_core_sandstonebrick +hades_tiles:floor_stone_sandstone +columnia:column_crosslink_hades_trees_colwood_uncolored +columnia:column_stairsub_hades_trees_colwood_white +hades_tiles:floor_jungle_cream +hades_doors:door_dungeon1_b +columnia:column_crosslink_hades_trees_colwood_magenta +columnia:column_mid_hades_core_stonebrick +hades_stairs:stair_out_yellow +hades_core:tuff_baked +columnia:column_linkdown_hades_core_tuff_baked_brick +hades_stairs:stair_out_colwood_pink +columnia:column_linktee_hades_core_lillite +columnia:column_linkcross_hades_trees_colwood_pink +hades_stairs:step_in_pale_wood +columnia:column_linkdown_hades_trees_wood +columnia:column_linkangle_hades_core_brick_pink +hades_stairs:stair_sandstone_volcanic_brick +columnia:column_stairsubpillar_hades_core_sandstonebrick +columnia:column_linkangle_hades_core_brick_violet +hades_stairs:step_out_floor_tuff_tuff +columnia:column_link_hades_trees_jungle_bark +hades_stairs:stair_in_brick +hades_core:cobble_sandstone_volcanic +hades_doors:door_wood_pale_e +columnia:column_linkangle_down_hades_trees_colwood_uncolored +columnia:column_stairsub_hades_trees_jungle_bark +columnia:column_linkcrossdown_hades_core_sandstone_volcanic +columnia:column_crosslink_hades_core_stonebrick +hades_doors:door_stone_a +columnia:column_linktee_hades_trees_pale_bark +columnia:column_linkangle_hades_trees_colwood_violet +columnia:column_mid_hades_core_brick_brown +columnia:column_linktee_hades_trees_colwood_blue +columnia:column_linkvertical_hades_core_cobble_sandstone +columnia:column_linktee_down_hades_core_cobble_sandstone_volcanic +columnia:column_linkdown_hades_core_essexite_brick +hades_doors:door_wood_pale_a +columnia:column_link_hades_trees_colwood_blue +hades_stairs:step_out_brick_dark_grey +columnia:column_mid_hades_core_sandstone_volcanic +columnia:column_top_hades_trees_orange_bark +columnia:column_linkcross_hades_core_brick_violet +hades_stairs:step_in_magenta +columnia:column_crosslink_hades_trees_orange_bark +columnia:column_link_hades_trees_orange_bark +columnia:column_link_hades_core_marble +columnia:column_mid_hades_core_sandstone +columnia:column_linkcross_hades_trees_orange_bark +hades_grass:dead_grass_3 +hades_tiles:floor_sandstone_stone +columnia:column_linktee_hades_trees_orange_bark +hades_stairs:step_in_colwood_pink +columnia:column_linktee_hades_trees_colwood_green +columnia:column_bottom_hades_core_brick_brown +hades_core:orangite +columnia:column_link_hades_trees_jungle_wood +columnia:column_linkangle_hades_trees_canvas_bark +columnia:column_linkangle_down_hades_trees_canvas_bark +columnia:column_linkangle_hades_core_brick_blue +hades_stairs:stair_out_sandstone +columnia:column_stairsubpillar_hades_core_brick_grey +columnia:column_linkangle_down_hades_core_brick_black +columnia:column_linktee_down_hades_core_brick_brown +columnia:column_mid_hades_trees_birch_bark +columnia:column_stairsubpillar_hades_trees_canvas_bark +hades_windows:window_wood_darkgreen +columnia:column_link_hades_trees_colwood_cyan +columnia:column_stairsubpillar_hades_trees_cream_wood +columnia:column_crosslink_hades_core_brick +hades_core:floor_essexite_gold +hades_doors:door_steel_grey_b +columnia:column_linkangle_down_hades_core_brick +columnia:column_linktee_down_hades_core_cactus_brick +columnia:column_linktee_down_hades_core_brick +hades_trees:colwood_black +hades_core:essexite_block +hades_stairs:stair_in_floor_lush_lush +hades_trees:pale_wood +columnia:column_linkcross_hades_core_brick_white +columnia:column_linkcrossdown_hades_core_brick_black +hades_cloth:yellow +hades_stairs:step_colwood_cyan +columnia:column_stairsub_hades_trees_colwood_uncolored +hades_core:bookshelf +columnia:column_stairsubpillar_hades_trees_colwood_pink +hades_tiles:floor_essexitegold_essexite +hades_doors:door_steel_darkgrey_c +columnia:column_mid_hades_core_brick_orange +hades_stairs:slab_pale_wood +hades_flowerpots:flower_pot_cocoa_sapling +columnia:column_bottom_hades_core_brick_cyan +columnia:column_linkdown_hades_core_brick_cyan +hades_furniture:chair_black +hades_tiles:floor_chondrite_tuff +columnia:column_stairsub_hades_trees_pale_wood +columnia:column_linkangle_hades_trees_lush_wood +hades_trees:olive +hades_doors:door_steel_orange_b +hades_doors:trapdoor_jungle_open +columnia:column_top_columnia_rusty_block +columnia:column_linktee_down_hades_trees_jungle_bark +hades_doors:door_stone_b +columnia:column_linkcross_hades_core_stone +columnia:column_crosslink_hades_core_brick_cyan +columnia:column_linkangle_hades_core_brick_dark_green +columnia:column_stairsub_hades_core_brick_dark_green +columnia:column_stairsubpillar_hades_trees_jungle_bark +hades_stairs:slab_floor_chondrite_chondrite +columnia:column_mid_hades_trees_colwood_pink +columnia:column_linkvertical_hades_core_sandstonebrick +hades_core:mossytuff +columnia:column_linktee_down_hades_trees_colwood_pink +columnia:column_linkangle_hades_core_brick_yellow +columnia:column_linkangle_down_hades_core_brick_dark_grey +hades_tiles:floor_wood_cream +columnia:column_mid_hades_core_brick_cyan +columnia:column_linkangle_down_hades_core_brick_green +hades_trees:colwood_orange +columnia:column_linkcross_hades_core_brick_blue +hades_doors:door_steel_black_a +columnia:column_crosslink_hades_core_tuff_brick +columnia:column_linktee_hades_core_brick_blue +columnia:column_linkcross_hades_core_brick_grey +hades_stairs:step_in_grey +columnia:column_linkdown_hades_core_cobble +columnia:column_mid_hades_core_brick_magenta +hades_stairs:stair_brick_green +columnia:column_linktee_down_hades_trees_bark +columnia:column_top_hades_core_cobble_sandstone_volcanic +columnia:column_linktee_hades_core_brick_magenta +hades_chests:chest_white +columnia:column_linkdown_hades_core_obsidianbrick +columnia:column_bottom_hades_core_cinnabar +hades_stairs:stair_in_brick_grey +columnia:column_linkvertical_hades_trees_bark +hades_tiles:floor_stonebaked_chondrite +columnia:column_linktee_down_hades_core_brick_black +columnia:column_stairsub_hades_core_brick_orange +columnia:column_stairsubpillar_hades_core_cobble_sandstone_volcanic +columnia:column_link_hades_core_brick_pink +hades_stairs:step_in_brick_dark_green +columnia:column_linkcrossdown_hades_core_sandstone_volcanic_brick +columnia:column_linktee_down_hades_core_sandstonebrick +hades_tiles:floor_essexite_essexite +columnia:column_linkvertical_hades_core_brick_black +hades_doors:door_dungeon1_d +columnia:column_linkdown_hades_core_brick_violet +hades_stairs:stair_out_copperblock +columnia:column_top_hades_core_chondrite_brick +columnia:column_linktee_hades_core_stone_baked +columnia:column_top_hades_core_brick_black +columnia:column_stairsubpillar_hades_core_olivine +columnia:column_linktee_hades_core_brick +columnia:column_linkdown_hades_core_brick_white +hades_flowerpots:flower_pot +columnia:column_crosslink_hades_core_brick_yellow +columnia:column_mid_hades_core_marble_brick +columnia:column_top_hades_core_marble_brick +columnia:column_crosslink_hades_core_marble_brick +hades_stairs:step_sandstone_volcanic +hades_stairs:step_brick_black +hades_tiles:floor_jungle_wood +columnia:column_linkcrossdown_hades_core_marble_brick +hades_stairs:stair_in_brick_white +columnia:column_linkangle_hades_core_marble_brick +columnia:column_linkangle_down_hades_core_marble_brick +columnia:column_linkvertical_hades_core_mossycobble +columnia:column_stairsub_hades_core_marble_brick +columnia:column_linkcross_hades_trees_colwood_brown +hades_waterplants:waterlily_s3 +columnia:column_linktee_hades_core_chondrite +columnia:column_stairsubpillar_hades_core_stonebrick +columnia:column_bottom_hades_core_brick_red +columnia:column_linkcross_hades_trees_colwood_cyan +hades_stairs:step_in_cobble +columnia:column_bottom_hades_core_marble_brick +columnia:column_linkcross_hades_core_sandstone_volcanic +columnia:column_top_hades_core_obsidianbrick +columnia:column_stairsub_hades_core_brick_black +columnia:column_linkvertical_hades_trees_colwood_cyan +columnia:column_mid_hades_core_basalt_brick +columnia:column_linkdown_hades_core_basalt_brick +columnia:column_linkcross_hades_core_basalt_brick +columnia:column_linkcrossdown_hades_core_brick_cyan +columnia:column_linktee_hades_core_basalt_brick +columnia:column_top_hades_core_brick_blue +columnia:column_stairsub_hades_core_olivine +hades_stairs:stair_out_brick_black +columnia:column_linkcrossdown_hades_trees_colwood_violet +hades_chests:chest_grey +columnia:column_bottom_hades_core_tuff_brick +columnia:column_top_hades_core_brick_grey +columnia:column_linktee_hades_core_obsidianbrick +columnia:column_linkcross_hades_core_tuff_baked +columnia:column_top_hades_core_brick_white +columnia:column_linktee_down_hades_core_tuff_baked +columnia:column_mid_hades_core_tuff_baked_brick +hades_trees:jungle_leaves +hades_stairs:slab_colwood_blue +hades_farming:seed_wheat +columnia:column_linkangle_down_hades_core_essexite +columnia:column_mid_hades_core_essexite_brick +hades_beds:bed_bottom +columnia:column_stairsubpillar_hades_core_essexite_brick +columnia:column_linkdown_hades_core_basalt +columnia:column_linkangle_hades_trees_colwood_brown diff --git a/mods/xcompat/test/nodelist/mineclonia.txt b/mods/xcompat/test/nodelist/mineclonia.txt new file mode 100644 index 00000000..1ab4d6da --- /dev/null +++ b/mods/xcompat/test/nodelist/mineclonia.txt @@ -0,0 +1,3406 @@ +mcl_walls:brick_5 +mcl_walls:brick_6 +pipeworks:storage_tank_6 +mesecons:wire_10111010_on +mesecons:wire_10111010_off +mcl_walls:brick_8 +mesecons:wire_01110001_on +mesecons:wire_01110001_off +mcl_walls:brick_10 +mcl_stairs:slab_jungle_bark +mcl_stairs:slab_jungle_bark_top +mcl_walls:brick_12 +mesecons:wire_11111010_on +mesecons:wire_11111010_off +mesecons:wire_11110001_on +mesecons:wire_11110001_off +mcl_walls:brick_15 +mcl_walls:brick_16 +pipeworks:expansion_tank_8 +mcl_walls:brick_21 +mesecons:wire_01100110_on +mesecons:wire_01100110_off +mesecons:wire_10011001_on +mesecons:wire_10011001_off +mcl_walls:sandstone_1 +mcl_walls:sandstone_2 +mcl_walls:sandstone_3 +pipeworks:expansion_tank_9 +mesecons:wire_11100110_on +mesecons:wire_11100110_off +mesecons_pressureplates:pressure_plate_jungle_on +mesecons:wire_11011001_on +mesecons:wire_11011001_off +pipeworks:storage_tank_9 +mesecons_button:button_jungle_off +mcl_ocean:tube_coral +mcl_stairs:slab_deepslate_cobbled_top +mcl_stairs:slab_deepslate_cobbled_double +mesecons:wire_01110110_on +mesecons:wire_01110110_off +mesecons:wire_10111001_on +mesecons:wire_10111001_off +mcl_ocean:dead_tube_coral_fan +mcl_walls:sandstone_13 +mcl_deepslate:deepslatecobbledwall_0 +mcl_walls:sandstone_14 +mcl_deepslate:deepslatecobbledwall_1 +mesecons:wire_11110110_on +mesecons:wire_11110110_off +mcl_walls:sandstone_16 +mesecons:wire_11111001_on +mesecons:wire_11111001_off +mcl_ocean:dead_brain_coral +mcl_walls:redsandstone_0 +mcl_stairs:slab_deepslate_tiles_cracked_top +mcl_walls:redsandstone_1 +mesecons:wire_11101110_on +mesecons:wire_11101110_off +mesecons:wire_01010101_on +mcl_ocean:bubble_coral_block +homedecor:painting_15 +mcl_ocean:dead_bubble_coral_block +homedecor:banister_wood_diagonal_right_grey +mesecons:wire_11111110_on +mesecons:wire_11111110_off +mcl_ocean:dead_bubble_coral +homedecor:banister_wood_diagonal_right_red +homedecor:banister_wood_diagonal_right_vermilion +mcl_ocean:bubble_coral_fan +homedecor:banister_wood_diagonal_right_orange +mcl_ocean:dead_bubble_coral_fan +homedecor:banister_wood_diagonal_right_amber +mesecons:wire_00010001_on +mcl_ocean:fire_coral_block +homedecor:banister_wood_diagonal_right_lime +mcl_ocean:dead_fire_coral_block +homedecor:banister_wood_diagonal_right_chartreuse +mcl_trees:stripped_spruce +homedecor:banister_wood_diagonal_right_harlequin +mcl_ocean:fire_coral +homedecor:banister_wood_diagonal_right_green +mcl_ocean:dead_fire_coral +mcl_trees:wood_spruce +homedecor:banister_wood_diagonal_right_spring +mcl_ocean:fire_coral_fan +mcl_fences:red_nether_brick_fence +mcl_trees:bark_stripped_spruce +mcl_trees:bark_spruce +mcl_monster_eggs:monster_egg_stonebrickcarved +homedecor:banister_wood_diagonal_right_cerulean +mcl_ocean:horn_coral_block +homedecor:banister_wood_diagonal_right_azure +mcl_fences:nether_brick_fence_gate +mcl_fences:nether_brick_fence_gate_open +mcl_ocean:horn_coral +mcl_ocean:dead_horn_coral +mcl_ocean:horn_coral_fan +mcl_ocean:dead_horn_coral_fan +mcl_trees:leaves_spruce +air +mcl_ocean:seagrass_dirt +mcl_ocean:seagrass_sand +mcl_ocean:seagrass_redsand +mcl_ocean:seagrass_gravel +mesecons_pressureplates:pressure_plate_crimson_off +mesecons_pressureplates:pressure_plate_crimson_on +mesecons_button:button_crimson_off +mcl_walls:cobble +mcl_walls:mossycobble +mcl_walls:andesite +mcl_walls:granite +mesecons_button:button_crimson_on +mcl_walls:diorite +mcl_walls:brick +mcl_walls:sandstone +mcl_walls:redsandstone +mcl_walls:stonebrick +mcl_walls:stonebrickmossy +mcl_walls:prismarine +mcl_walls:endbricks +mcl_walls:netherbrick +mcl_walls:rednetherbrick +mcl_walls:mudbrick +mcl_walls:cobble_0 +mcl_walls:cobble_1 +mcl_walls:cobble_2 +mcl_walls:cobble_3 +mcl_walls:cobble_4 +mcl_walls:cobble_5 +mcl_walls:cobble_6 +mcl_walls:cobble_7 +mcl_walls:cobble_8 +mcl_walls:cobble_9 +mcl_walls:cobble_10 +mcl_walls:cobble_11 +mcl_walls:cobble_12 +mcl_walls:cobble_13 +pipeworks:accelerator_tube_9 +mcl_walls:cobble_14 +pipeworks:tube_1 +mcl_walls:cobble_15 +mcl_walls:cobble_16 +mcl_walls:cobble_21 +mcl_walls:mossycobble_0 +mcl_walls:mossycobble_1 +mcl_walls:mossycobble_2 +mcl_walls:mossycobble_3 +mcl_walls:mossycobble_4 +mcl_walls:mossycobble_5 +pipeworks:mese_sand_tube_2 +mcl_walls:mossycobble_6 +mcl_flowerpots:flower_pot_warped_fungus +mcl_walls:mossycobble_7 +mcl_walls:mossycobble_8 +pipeworks:mese_sand_tube_4 +mcl_walls:mossycobble_9 +mcl_walls:mossycobble_10 +homedecor:microwave_oven_active +mcl_walls:mossycobble_11 +pipeworks:mese_sand_tube_6 +mcl_walls:mossycobble_12 +mcl_walls:mossycobble_13 +pipeworks:one_way_tube +mcl_walls:mossycobble_14 +pipeworks:mese_sand_tube_8 +mcl_walls:mossycobble_15 +mcl_walls:mossycobble_16 +mcl_walls:mossycobble_21 +pipeworks:mese_sand_tube_10 +homedecor:microwave_oven_active_locked +pipeworks:tube_2 +mcl_walls:andesite_0 +mcl_walls:andesite_1 +pipeworks:tube_3 +mcl_walls:andesite_2 +mcl_walls:andesite_3 +mcl_walls:andesite_4 +mcl_stairs:stair_lapisblock_inner +mcl_walls:andesite_5 +mcl_walls:andesite_6 +pipeworks:tube_5 +mcl_walls:andesite_7 +mcl_walls:andesite_8 +mcl_stairs:slab_lapisblock_top +mcl_walls:andesite_9 +mcl_walls:andesite_10 +mcl_walls:andesite_11 +pipeworks:tube_7 +mcl_walls:andesite_12 +pipeworks:crossing_tube_2 +mcl_walls:andesite_13 +mcl_walls:andesite_14 +mcl_walls:andesite_15 +pipeworks:crossing_tube_4 +pipeworks:tube_9 +pipeworks:crossing_tube_5 +pipeworks:crossing_tube_6 +pipeworks:crossing_tube_7 +homedecor:kitchen_cabinet_colorable_locked +pipeworks:crossing_tube_8 +mcl_signs:wall_sign_cherry_blossom +pipeworks:crossing_tube_9 +homedecor:kitchen_cabinet_colored_locked +pipeworks:crossing_tube_10 +pipeworks:crossing_tube_compatibility +homedecor:kitchen_cabinet_colorable_with_drawers_locked +mesecons_pressureplates:pressure_plate_cherry_blossom_off +mesecons_pressureplates:pressure_plate_cherry_blossom_on +mesecons_button:button_cherry_blossom_off +homedecor:kitchen_cabinet_colored_granite +homedecor:kitchen_cabinet_colorable_granite_locked +mesecons_button:button_cherry_blossom_on +mcl_flowerpots:flower_pot_sapling_cherry_blossom +homedecor:kitchen_cabinet_colored_with_drawers_granite +mcl_heads:zombie_ceiling +homedecor:kitchen_cabinet_colorable_with_drawers_granite +mcl_heads:zombie_wall +homedecor:kitchen_cabinet_colored_with_drawers_granite_locked +mcl_heads:creeper_ceiling +mcl_heads:creeper_wall +homedecor:kitchen_cabinet_colorable_marble_locked +homedecor:kitchen_cabinet_colorable_marble +homedecor:banister_wood_diagonal_right_sapphire +homedecor:banister_wood_diagonal_right_blue +mcl_heads:steve_wall +homedecor:banister_wood_diagonal_right_violet +homedecor:kitchen_cabinet_colored_with_drawers_marble +homedecor:banister_wood_diagonal_right_mulberry +homedecor:banister_wood_diagonal_right_magenta +homedecor:banister_wood_diagonal_right_fuchsia +homedecor:kitchen_cabinet_colorable_with_drawers_marble_locked +homedecor:banister_wood_diagonal_right_rose +mcl_bamboo:bamboo_mosaic +homedecor:banister_wood_diagonal_right_crimson +homedecor:banister_white_dark_diagonal_right +homedecor:banister_brass_diagonal_right +mcl_bamboo:scaffolding_horizontal +homedecor:banister_wrought_iron_diagonal_right +mcl_flowerpots:flower_pot_bamboo +mcl_stairs:slab_bamboo +mcl_stairs:slab_bamboo_top +mcl_stairs:slab_bamboo_double +mcl_trees:tree_bamboo +mcl_trees:wood_bamboo +mcl_stairs:slab_bamboo_bark +mcl_stairs:slab_bamboo_bark_top +mcl_stairs:slab_bamboo_bark_double +mcl_flowerpots:flower_pot_allium +mcl_flowerpots:flower_pot_azure_bluet +mcl_flowerpots:flower_pot_blue_orchid +mcl_flowerpots:flower_pot_dandelion +mcl_flowerpots:flower_pot_fern +mcl_flowerpots:flower_pot_oxeye_daisy +mcl_trees:stripped_bamboo +mcl_flowerpots:flower_pot_tulip_orange +mcl_flowerpots:flower_pot_tulip_pink +mcl_flowerpots:flower_pot_tulip_red +mcl_flowerpots:flower_pot_tulip_white +mcl_signs:wall_sign_bamboo +mcl_flowers:allium +mcl_signs:standing_sign_bamboo +mcl_flowers:blue_orchid +mcl_trees:bark_stripped_bamboo +mcl_trees:bark_bamboo +mcl_flowers:double_fern_top +mcl_flowers:fern +mcl_flowers:lilac +mcl_flowers:lilac_top +mcl_flowers:oxeye_daisy +mcl_flowers:peony +mesecons_pressureplates:pressure_plate_bamboo_off +mcl_flowers:poppy +mesecons_pressureplates:pressure_plate_bamboo_on +mcl_flowers:rose_bush_top +mcl_flowers:sunflower +mcl_flowers:sunflower_top +mesecons_button:button_bamboo_off +mcl_bells:bell +mcl_flowers:double_grass_top +mcl_flowers:tulip_orange +mesecons_button:button_bamboo_on +mcl_flowers:tulip_red +mcl_flowers:tulip_white +mcl_flowers:waterlily +mcl_heads:creeper +mcl_heads:skeleton +mcl_fences:bamboo_fence +mcl_heads:wither_skeleton +mcl_fences:bamboo_fence_gate +mcl_fences:bamboo_fence_gate_open +mcl_core:ladder +mcl_core:lava_source +mcl_core:lava_flowing +mcl_core:water_source +mcl_core:water_flowing +mclx_core:river_water_source +mclx_core:river_water_flowing +mcl_maps:filled_map_mcl_skins_base_1B47A57FF_male_crea +mcl_maps:filled_map_mcl_skins_base_18D471DFF_female_crea +mcl_maps:filled_map_mcl_skins_base_18D471DFF_male_crea +mcl_maps:filled_map_character_male_crea +mcl_doors:door_bamboo_b_1 +mcl_nether:nether_wart_1 +mcl_nether:nether_wart_2 +mcl_nether:nether_wart +mcl_amethyst:amethyst_cluster +mcl_amethyst:budding_amethyst_block +mcl_maps:filled_map_mcl_skins_base_1B47A57FF_female_surv +mcl_doors:door_bamboo_b_2 +mcl_maps:filled_map_mcl_skins_base_1B47A57FF_male_surv +mcl_doors:door_bamboo_t_2 +mcl_maps:filled_map_mcl_skins_base_18D471DFF_female_surv +mcl_doors:trapdoor_bamboo +mcl_maps:filled_map_mcl_skins_base_18D471DFF_male_surv +mcl_maps:filled_map_character_male_surv +mcl_maps:filled_map_mcl_skins_character_1_female_surv +mcl_comparators:comparator_on_sub +mcl_comparators:comparator_off_sub +mcl_comparators:comparator_on_comp +mcl_comparators:comparator_off_comp +mesecons_delayer:delayer_off_1 +mcl_doors:trapdoor_bamboo_open +mesecons_delayer:delayer_off_3 +mesecons_delayer:delayer_off_4 +mesecons_delayer:delayer_on_1 +mesecons_delayer:delayer_on_2 +mcl_stairs:stair_bamboo +mcl_mushrooms:brown_mushroom_block_cap_101110 +mcl_amethyst:tinted_glass +mcl_stairs:stair_bamboo_inner +mesecons_torch:mesecon_torch_on_wall +mcl_mushrooms:brown_mushroom_block_cap_110000 +mcl_ocean:sea_pickle_1_dead_brain_coral_block +mcl_mushrooms:brown_mushroom_block_cap_110001 +mcl_ocean:sea_pickle_3_dead_brain_coral_block +mcl_mushrooms:brown_mushroom_block_cap_110010 +mcl_amethyst:medium_amethyst_bud +mcl_mushrooms:brown_mushroom_block_cap_110011 +mcl_stairs:stair_bamboo_bark_outer +mcl_amethyst:large_amethyst_bud +mcl_chests:dark_green_shulker_box_small +mcl_mushrooms:brown_mushroom_block_cap_110101 +mcl_chests:lightblue_shulker_box_small +mcl_mushrooms:brown_mushroom_block_cap_110110 +mcl_chests:orange_shulker_box_small +mcl_mushrooms:brown_mushroom_block_cap_110111 +mcl_chests:pink_shulker_box_small +mcl_mushrooms:brown_mushroom_block_cap_111000 +mcl_chests:red_shulker_box_small +mcl_mushrooms:brown_mushroom_block_cap_111001 +mcl_chests:white_shulker_box_small +mcl_mushrooms:brown_mushroom_block_cap_111010 +mcl_core:snow +mcl_mushrooms:brown_mushroom_block_cap_111011 +mcl_core:snow_3 +mcl_core:snow_4 +mesecons:wire_11010101_on +mesecons:wire_11010101_off +mcl_core:snow_7 +mcl_mushrooms:brown_mushroom_block_cap_111110 +mcl_torches:torch +mcl_torches:torch_wall +mcl_farming:wheat +mcl_farming:wheat_2 +mcl_farming:wheat_3 +mcl_farming:wheat_4 +mcl_farming:wheat_5 +mcl_farming:wheat_6 +mcl_farming:wheat_7 +mcl_deepslate:deepslate_bricks_cracked +pipeworks:tag_tube_110100 +homedecor:wood_table_large_square +pipeworks:tag_tube_110101 +mcl_stairs:slab_andesite_smooth +mcl_stairs:slab_andesite_smooth_top +mcl_stairs:slab_andesite_smooth_double +mesecons:wire_11110101_on +mcl_amethyst:small_amethyst_bud +pipeworks:tag_tube_110111 +pipeworks:tag_tube_111000 +mcl_stairs:slab_deepslate_bricks +mcl_stairs:slab_deepslate_bricks_top +mcl_stairs:slab_deepslate_bricks_double +mcl_stairs:stair_granite_smooth +homedecor:banister_wood_diagonal_left_grey +mcl_stairs:stair_granite_smooth_outer +mcl_stairs:stair_granite_smooth_inner +mcl_deepslate:deepslatebrickswall +mcl_copper:block_raw +homedecor:banister_wood_diagonal_left_red +mcl_stairs:slab_granite_smooth +mcl_stairs:slab_granite_smooth_top +mcl_stairs:slab_granite_smooth_double +mesecons:wire_11111101_on +mesecons:wire_11111101_off +homedecor:banister_wood_diagonal_left_vermilion +mcl_deepslate:deepslatebrickswall_4 +mcl_deepslate:deepslatebrickswall_5 +mcl_deepslate:deepslatebrickswall_6 +mcl_deepslate:deepslatebrickswall_7 +mcl_stairs:stair_diorite_smooth +mesecons:wire_00110011_on +mcl_stairs:stair_diorite_smooth_outer +mcl_stairs:stair_diorite_smooth_inner +mcl_deepslate:deepslatebrickswall_10 +homedecor:banister_wood_horizontal_yellow +mcl_deepslate:deepslatebrickswall_11 +homedecor:banister_wood_diagonal_left_yellow +mcl_deepslate:deepslatebrickswall_12 +mcl_stairs:slab_diorite_smooth +mcl_stairs:slab_diorite_smooth_top +mcl_stairs:slab_diorite_smooth_double +mesecons:wire_10110011_off +homedecor:banister_wood_diagonal_left_lime +mcl_deepslate:deepslatebrickswall_15 +building_blocks:Tar +mcl_deepslate:deepslatebrickswall_16 +homedecor:banister_wood_horizontal_chartreuse +mcl_deepslate:deepslatebrickswall_21 +homedecor:banister_wood_diagonal_left_chartreuse +mcl_stairs:stair_stonebrickmossy +mesecons:wire_01110011_off +mcl_stairs:stair_stonebrickmossy_outer +mcl_stairs:stair_stonebrickmossy_inner +building_blocks:fakegrass +homedecor:banister_wood_horizontal_green +building_blocks:hardwood +homedecor:simple_bench +mcl_stairs:slab_stonebrickmossy +mcl_stairs:slab_stonebrickmossy_top +mcl_stairs:slab_stonebrickmossy_double +mesecons:wire_11110011_off +homedecor:kitchen_chair_wood +homedecor:office_chair_basic +homedecor:office_chair_upscale +homedecor:banister_wood_horizontal_spring +homedecor:banister_wood_diagonal_left_spring +mesecons:wire_10111011_on +mesecons:wire_10111011_off +pipeworks:spigot_pouring +mcl_villages:crop_flower_2 +mcl_wool:white +mcl_stairs:stair_copper_cut +pipeworks:fountainhead +pipeworks:fountainhead_pouring +mcl_stairs:stair_copper_cut_outer +mcl_stairs:stair_copper_cut_inner +homedecor:banister_wood_diagonal_left_cyan +mesecons:wire_11111011_on +mesecons:wire_11111011_off +mcl_wool:yellow_carpet +homedecor:banister_wood_horizontal_cerulean +mcl_stairs:slab_copper_cut +mcl_stairs:slab_copper_cut_top +mcl_stairs:slab_copper_cut_double +building_blocks:woodglass +homedecor:banister_wood_horizontal_azure +homedecor:banister_wood_diagonal_left_azure +mesecons:wire_01110111_on +mesecons:wire_01110111_off +homedecor:banister_wood_horizontal_sapphire +mcl_stairs:stair_copper_exposed_cut +homedecor:banister_wood_diagonal_left_sapphire +mcl_stairs:stair_copper_exposed_cut_outer +mcl_stairs:stair_copper_exposed_cut_inner +homedecor:banister_wood_horizontal_blue +mcl_lanterns:lantern_ceiling +mesecons:wire_11110111_on +mesecons:wire_11110111_off +mcl_stairs:slab_copper_exposed_cut +mcl_stairs:slab_copper_exposed_cut_top +mcl_stairs:slab_copper_exposed_cut_double +homedecor:banister_wood_diagonal_left_indigo +mcl_lanterns:soul_lantern_ceiling +mcl_wool:magenta +mesecons:wire_11111111_on +mesecons:wire_11111111_off +building_blocks:BWtile +mcl_wool:magenta_carpet +homedecor:banister_wood_horizontal_mulberry +building_blocks:Fireplace +mcl_wool:blue +homedecor:banister_wood_horizontal_magenta +homedecor:banister_wood_diagonal_left_magenta +mcl_flowerpots:flower_pot_deadbush +mesecons_walllever:wall_lever_off +mcl_wool:green +mcl_core:light_0 +mcl_wool:green_carpet +mesecons_walllever:wall_lever_on +mcl_core:light_1 +mcl_wool:brown +mcl_core:light_2 +mcl_core:light_3 +mcl_fletching_table:fletching_table +mcl_core:light_4 +mcl_core:light_5 +mcl_core:light_6 +mcl_core:light_7 +mcl_core:light_8 +mesecons_solarpanel:solar_panel_on +mcl_core:light_9 +mcl_cartography_table:cartography_table +mcl_core:light_10 +mesecons_solarpanel:solar_panel_inverted_off +mcl_core:light_11 +mcl_core:light_12 +mcl_core:light_13 +mcl_core:light_14 +homedecor:shingle_side_glass +homedecor:skylight +homedecor:shingle_outer_corner_terracotta +homedecor:shingle_inner_corner_terracotta +homedecor:shingle_side_terracotta +homedecor:shingle_inner_corner_wood +homedecor:shingle_outer_corner_wood +homedecor:shingle_side_wood +homedecor:fence_picket_white +mcl_chests:yellow_shulker_box +homedecor:fence_privacy_corner +mcl_chests:white_shulker_box +mcl_chests:dark_grey_shulker_box +homedecor:fence_privacy +mcl_chests:blue_shulker_box +pipeworks:filter +pipeworks:mese_filter +mcl_chests:green_shulker_box +mcl_chests:magenta_shulker_box +homedecor:fence_barbed_wire +mcl_chests:black_shulker_box +mcl_chests:red_shulker_box +mcl_chests:pink_shulker_box +mcl_chests:brown_shulker_box +mcl_chests:dark_green_shulker_box +mcl_chests:orange_shulker_box +mcl_chests:cyan_shulker_box +mcl_chests:lightblue_shulker_box +mcl_chests:grey_shulker_box +mcl_blackstone:blackstone_chiseled_polished +mcl_blackstone:blackstone_brick_polished +mcl_stairs:slab_blackstone_polished +mcl_blackstone:nether_gold +mcl_blackstone:blackstone_gilded +homedecor:digital_clock +homedecor:analog_clock_wood +homedecor:grandfather_clock +homedecor:analog_clock_plastic +mcl_walls:endbricks_12 +mcl_walls:endbricks_13 +mcl_composters:composter +mcl_walls:endbricks_15 +mcl_walls:endbricks_16 +mcl_walls:endbricks_21 +mcl_composters:composter_ready +mcl_cauldrons:cauldron +mcl_walls:netherbrick_0 +mcl_walls:netherbrick_1 +mcl_composters:composter_1 +mcl_composters:composter_2 +mcl_composters:composter_3 +mcl_composters:composter_4 +mcl_composters:composter_5 +mcl_composters:composter_6 +mcl_composters:composter_7 +mcl_walls:netherbrick_5 +mcl_walls:netherbrick_6 +mcl_walls:netherbrick_7 +mcl_walls:netherbrick_8 +mcl_walls:netherbrick_9 +mcl_walls:netherbrick_10 +mcl_trees:bark_oak +mcl_walls:netherbrick_11 +mcl_walls:netherbrick_12 +mcl_walls:netherbrick_13 +mesecons:wire_00000000_off +mcl_walls:netherbrick_14 +mcl_walls:netherbrick_15 +mcl_brewing:stand_000 +mcl_walls:netherbrick_16 +mcl_walls:netherbrick_21 +homedecor:desk_fan +mcl_walls:rednetherbrick_0 +mcl_monster_eggs:monster_egg_stonebrickcracked +mcl_monster_eggs:monster_egg_stonebrick +mcl_walls:rednetherbrick_2 +mcl_trees:leaves_oak +mcl_walls:rednetherbrick_3 +mcl_walls:rednetherbrick_4 +mcl_walls:rednetherbrick_5 +mcl_walls:rednetherbrick_6 +mcl_walls:rednetherbrick_7 +mcl_walls:rednetherbrick_8 +mesecons:wire_10000000_on +mesecons:wire_10000000_off +mcl_walls:rednetherbrick_10 +mcl_walls:rednetherbrick_11 +mcl_walls:rednetherbrick_12 +mcl_walls:rednetherbrick_13 +mcl_walls:rednetherbrick_14 +mcl_fences:oak_fence_gate +mcl_walls:rednetherbrick_15 +mcl_walls:rednetherbrick_16 +mcl_walls:rednetherbrick_21 +homedecor:medicine_cabinet_open +mcl_trees:leaves_acacia +mcl_panes:pane_white_flat +mcl_walls:mudbrick_1 +mcl_nether:magma +mcl_walls:mudbrick_2 +ontime_clocks:green_digital +mcl_walls:mudbrick_4 +mcl_fences:acacia_fence +mcl_walls:mudbrick_5 +mcl_fences:acacia_fence_gate +mcl_doors:door_oak_b_1 +ontime_clocks:red_digital +mcl_walls:mudbrick_7 +mcl_walls:mudbrick_8 +mcl_doors:door_oak_t_1 +ontime_clocks:white +mcl_doors:door_oak_b_2 +ontime_clocks:frameless_black +mcl_tnt:tnt +mcl_walls:mudbrick_12 +mcl_doors:trapdoor_oak +ontime_clocks:frameless_gold +mcl_stairs:slab_prismarine_dark +mcl_doors:door_acacia_b_1 +mcl_amethyst:amethyst_block +ontime_clocks:frameless_white +mcl_walls:mudbrick_16 +mcl_doors:door_acacia_t_1 +mcl_amethyst:calcite +mcl_blackstone:basalt_smooth +mcl_doors:door_acacia_b_2 +mcl_doors:door_acacia_t_2 +mcl_doors:trapdoor_acacia +mcl_raw_ores:raw_iron_block +mcl_anvils:anvil_damage_2 +mcl_stairs:stair_oak_outer +mcl_stairs:stair_oak_inner +mcl_panes:pane_magenta_flat +mcl_stairs:stair_oak_bark +mcl_raw_ores:raw_gold_block +mcl_stairs:stair_oak_bark_outer +mcl_stairs:stair_oak_bark_inner +mcl_stairs:stair_acacia +homedecor:shingle_outer_corner_asphalt +mcl_stairs:stair_acacia_outer +mcl_stairs:stair_acacia_inner +mcl_farming:soil +mcl_farming:soil_wet +mcl_stairs:slab_oak_top +mcl_stairs:slab_oak_double +homedecor:plasma_lamp_6 +mcl_panes:pane_magenta +homedecor:ground_lantern_6 +mcl_stairs:stair_acacia_bark_outer +mcl_mangrove:propagule +mcl_mangrove:mangrove_roots +homedecor:ceiling_lantern_6 +mcl_panes:pane_blue_flat +mcl_stairs:slab_oak_bark +mcl_sponges:sponge +mcl_stairs:slab_oak_bark_double +homedecor:lattice_lantern_small_6 +homedecor:desk_lamp_6 +mcl_stairs:stair_concrete_magenta +homedecor:ceiling_lamp_6 +mcl_mangrove:hanging_propagule_1 +mcl_end:purpur_block +mcl_signs:wall_sign_oak +mcl_panes:pane_blue +mcl_itemframes:frame +mcl_stairs:slab_concrete_magenta_double +homedecor:glowlight_half_7 +mcl_mangrove:water_logged_roots +mcl_mangrove:river_water_logged_roots +homedecor:chimney +mcl_panes:pane_green_flat +homedecor:doghouse +steel:plate_soft +steel:plate_rusted +homedecor:plasma_lamp_7 +mesecons_pressureplates:pressure_plate_oak_off +mcl_signs:wall_sign_dark_oak +mesecons_pressureplates:pressure_plate_oak_on +mcl_stairs:stair_concrete_blue +homedecor:hanging_lantern_7 +mcl_stairs:stair_concrete_blue_inner +mesecons_button:button_oak_off +homedecor:ceiling_lantern_7 +mcl_pottery_sherds:pot +mcl_panes:pane_green +mcl_stairs:slab_concrete_blue_top +mesecons_pressureplates:pressure_plate_dark_oak_on +steel:grate_hard +homedecor:desk_lamp_7 +mesecons_button:button_dark_oak_off +mcl_trees:stripped_mangrove +mcl_trees:tree_mangrove +mcl_panes:pane_brown_flat +mesecons_button:button_dark_oak_on +signs_road:black_left_sign +mcl_trees:wood_mangrove +mcl_flowerpots:flower_pot_sapling_dark_oak +signs_road:black_right_sign +homedecor:swing +mcl_trees:bark_stripped_mangrove +mcl_trees:bark_mangrove +mcl_stairs:stair_concrete_green_inner +signs_road:white_left_sign +steel:strut_mount +signs_road:white_right_sign +mcl_panes:pane_brown +mcl_stairs:slab_concrete_green_top +homedecor:plasma_lamp_8 +signs_road:blue_left_sign +homedecor:ground_lantern_8 +signs_road:blue_right_sign +mcl_farming:potato_1 +homedecor:hanging_lantern_8 +mcl_panes:pane_black_flat +mcl_farming:potato +homedecor:ceiling_lantern_8 +homedecor:lattice_lantern_large_8 +steel:shingle_side_roofing +homedecor:lattice_lantern_small_8 +mcl_stairs:stair_concrete_brown_outer +homedecor:desk_lamp_8 +steel:shingle_outer_corner_roofing +steel:shingle_inner_corner_roofing +homedecor:ceiling_lamp_8 +mcl_farming:potato_2 +mcl_farming:potato_3 +mcl_farming:potato_4 +mcl_farming:potato_5 +mcl_farming:potato_6 +mcl_farming:potato_7 +homedecor:standing_lamp_8 +mcl_trees:wood_jungle +homedecor:glowlight_half_9 +homedecor:glowlight_quarter_9 +mcl_trees:bark_stripped_jungle +mcl_trees:bark_jungle +mcl_beds:respawn_anchor +mcl_stairs:stair_concrete_black_outer +mesecons_torch:mesecon_torch_overheated +mesecons_torch:mesecon_torch_overheated_wall +homedecor:stonepath +homedecor:hanging_lantern_9 +mcl_fences:crimson_fence +pipeworks:tag_tube_000000 +homedecor:ceiling_lantern_9 +mcl_stairs:slab_concrete_black_top +pipeworks:tag_tube_000001 +homedecor:lattice_lantern_large_9 +pipeworks:tag_tube_000010 +homedecor:lattice_lantern_small_9 +homedecor:lattice_wood +pipeworks:tag_tube_000011 +homedecor:desk_lamp_9 +pipeworks:tag_tube_000100 +mcl_books:bookshelf +homedecor:television +pipeworks:tag_tube_000101 +homedecor:table_lamp_9 +pipeworks:tag_tube_000110 +homedecor:tv +homedecor:standing_lamp_9 +pipeworks:tag_tube_000111 +homedecor:curtain_open +pipeworks:tag_tube_001000 +mcl_doors:door_crimson_b_1 +mcl_farming:beetroot_0 +pipeworks:tag_tube_001001 +homedecor:glowlight_small_cube_10 +homedecor:lattice_white_wood_vegetal +mcl_farming:beetroot_1 +mcl_farming:beetroot_2 +pipeworks:tag_tube_001011 +mcl_farming:beetroot +pipeworks:tag_tube_001100 +pipeworks:tag_tube_001101 +pipeworks:tag_tube_001110 +homedecor:shrubbery_yellow +mcl_stairs:stair_concrete_silver +pipeworks:tag_tube_001111 +mcl_stairs:stair_concrete_silver_outer +mcl_stairs:stair_concrete_silver_inner +pipeworks:tag_tube_010000 +homedecor:shutter_colored +pipeworks:tag_tube_010001 +mcl_stairs:slab_concrete_silver +pipeworks:tag_tube_010010 +mcl_stairs:slab_concrete_silver_double +homedecor:shrubbery_red +pipeworks:tag_tube_010011 +homedecor:table_lamp_10 +pipeworks:tag_tube_010100 +homedecor:standing_lamp_10 +pipeworks:tag_tube_010101 +homedecor:glowlight_half_11 +pipeworks:tag_tube_010110 +homedecor:glowlight_quarter_11 +pipeworks:tag_tube_010111 +mcl_stairs:stair_concrete_light_blue +pipeworks:tag_tube_011000 +mcl_stairs:stair_concrete_light_blue_inner +homedecor:plasma_lamp_11 +pipeworks:tag_tube_011001 +homedecor:window_plain +homedecor:blinds_thin +pipeworks:tag_tube_011010 +mcl_farming:sweet_berry_bush_1 +mesecons_pistons:piston_down_pusher_normal +pipeworks:tag_tube_011011 +mcl_core:snowblock +pipeworks:tag_tube_011100 +mcl_farming:sweet_berry_bush_0 +mesecons_pistons:piston_down_pusher_sticky +mcl_farming:sweet_berry_bush_3 +mcl_farming:sweet_berry_bush_2 +mcl_stairs:slab_crimson_bark +pipeworks:tag_tube_011110 +mcl_stairs:slab_crimson_bark_double +pipeworks:tag_tube_011111 +pipeworks:tag_tube_100000 +mcl_stairs:stair_concrete_orange_outer +pipeworks:tag_tube_100001 +pipeworks:tag_tube_100010 +mcl_signs:wall_sign_crimson +pipeworks:tag_tube_100011 +mcl_stairs:slab_concrete_orange_top +mcl_stairs:slab_concrete_orange_double +pipeworks:tag_tube_100100 +pipeworks:tag_tube_100101 +homedecor:curtainrod_brass +pipeworks:tag_tube_100110 +mcl_lectern:lectern +pipeworks:tag_tube_100111 +homedecor:curtainrod_wrought_iron +pipeworks:tag_tube_101000 +ignore +pipeworks:tag_tube_101001 +pipeworks:tag_tube_101010 +homedecor:desk_locked +pipeworks:tag_tube_101011 +homedecor:stained_glass +mcl_stairs:slab_stone_rough_top +mcl_stairs:slab_stone_rough_double +pipeworks:tag_tube_101101 +mcl_stairs:stair_concrete_lime_inner +pipeworks:tag_tube_101110 +homedecor:calendar +pipeworks:tag_tube_101111 +mcl_stairs:slab_concrete_lime +mcl_stairs:slab_concrete_lime_top +pipeworks:tag_tube_110000 +mcl_stairs:slab_stone +mcl_stairs:slab_stone_top +mcl_stairs:slab_stone_double +mcl_blackstone:soul_torch +mcl_stairs:stair_andesite +mcl_stairs:stair_concrete_purple +mcl_stairs:stair_andesite_outer +mcl_stairs:stair_andesite_inner +mcl_stairs:stair_concrete_purple_inner +pipeworks:sand_tube_2 +mcl_stairs:slab_andesite +mcl_stairs:slab_andesite_top +mcl_stairs:slab_andesite_double +pipeworks:sand_tube_4 +pipeworks:sand_tube_5 +pipeworks:sand_tube_6 +mcl_mushrooms:red_mushroom_block_stem_full +pipeworks:sand_tube_7 +mcl_stairs:stair_granite +mcl_stairs:stair_granite_outer +mcl_stairs:stair_granite_inner +mcl_mushrooms:red_mushroom_block_cap_111111 +mcl_mushrooms:red_mushroom_block_cap_000000 +mcl_stairs:stair_concrete_grey_outer +pipeworks:sand_tube_10 +mcl_stairs:slab_granite +mcl_stairs:slab_granite_top +mcl_stairs:slab_granite_double +mcl_mushrooms:red_mushroom_block_cap_000001 +mcl_stairs:slab_concrete_grey +mcl_stairs:slab_concrete_grey_top +mcl_stairs:slab_concrete_grey_double +mcl_deepslate:deepslatecobbledwall_3 +mcl_deepslate:deepslatecobbledwall_4 +mcl_deepslate:deepslatecobbledwall_5 +mcl_deepslate:deepslatecobbledwall_6 +mcl_deepslate:deepslatecobbledwall_7 +mcl_deepslate:deepslatecobbledwall_8 +mcl_deepslate:deepslatecobbledwall_9 +mcl_deepslate:deepslatecobbledwall_10 +mcl_stairs:stair_concrete_cyan_inner +mcl_deepslate:deepslatecobbledwall_11 +mcl_mushrooms:red_mushroom_block_cap_000101 +mcl_colorblocks:concrete_powder_green +mcl_deepslate:deepslatecobbledwall_13 +mcl_colorblocks:concrete_green +mcl_deepslate:deepslatecobbledwall_14 +mcl_stairs:slab_concrete_cyan_double +mcl_mushrooms:red_mushroom_block_cap_000110 +mcl_deepslate:deepslatecobbledwall_16 +mcl_deepslate:deepslatecobbledwall_21 +mcl_mushrooms:red_mushroom_block_cap_000111 +mcl_mushrooms:red_mushroom_block_cap_001000 +mcl_mushrooms:red_mushroom_block_cap_001001 +mcl_colorblocks:hardened_clay_brown +mcl_stairs:stair_deepslate_polished_outer +mcl_stairs:stair_deepslate_polished_inner +mcl_colorblocks:concrete_powder_brown +mcl_mushrooms:red_mushroom_block_cap_001010 +mcl_colorblocks:concrete_brown +mcl_stairs:slab_deepslate_polished +mcl_stairs:slab_deepslate_polished_top +mcl_mushrooms:red_mushroom_block_cap_001011 +mcl_blackstone:soul_fire +mcl_mushrooms:red_mushroom_block_cap_001100 +mcl_deepslate:deepslatepolishedwall +mcl_mushrooms:red_mushroom_block_cap_001101 +mcl_deepslate:deepslatepolishedwall_1 +mcl_deepslate:deepslatepolishedwall_2 +mcl_mushrooms:red_mushroom_block_cap_001110 +mcl_colorblocks:hardened_clay_black +mcl_deepslate:deepslatepolishedwall_4 +mcl_colorblocks:concrete_powder_black +mcl_mushrooms:red_mushroom_block_cap_001111 +mcl_colorblocks:concrete_black +pipeworks:tag_tube_111100 +mcl_mushrooms:red_mushroom_block_cap_010000 +mcl_stairs:stair_blackstone_polished_outer +pipeworks:tag_tube_111101 +mcl_mushrooms:red_mushroom_block_cap_010001 +pipeworks:tag_tube_111110 +pipeworks:tag_tube_111111 +mcl_stairs:slab_end_stone_top +mcl_stairs:slab_end_stone_double +mcl_colorblocks:hardened_clay_red +mcl_colorblocks:concrete_powder_red +mcl_colorblocks:concrete_red +mcl_stairs:stair_stone_inner +mcl_farming:carrot +mcl_farming:carrot_7 +mcl_farming:carrot_6 +mcl_farming:carrot_5 +mcl_farming:carrot_4 +mcl_farming:carrot_3 +mcl_farming:carrot_2 +mcl_farming:carrot_1 +mcl_colorblocks:hardened_clay_silver +mcl_stairs:slab_concrete_yellow_top +mcl_stairs:slab_concrete_yellow_double +mcl_colorblocks:concrete_powder_silver +mcl_colorblocks:concrete_silver +mcl_stairs:stair_concrete_white +mcl_stairs:stair_concrete_white_outer +mcl_stairs:stair_concrete_white_inner +mcl_colorblocks:hardened_clay_light_blue +mcl_colorblocks:concrete_powder_cyan +mcl_wool:black_carpet +mcl_colorblocks:concrete_light_blue +mcl_heads:skeleton_ceiling +mcl_heads:skeleton_wall +mcl_wool:red +mcl_doors:door_mangrove_t_1 +mcl_wool:red_carpet +mcl_doors:door_mangrove_b_2 +mcl_doors:door_mangrove_t_2 +mcl_heads:wither_skeleton_ceiling +mcl_doors:trapdoor_mangrove +mcl_heads:wither_skeleton_wall +mcl_wool:silver_carpet +mcl_colorblocks:concrete_powder_orange +mcl_colorblocks:concrete_orange +mcl_wool:light_blue +mcl_doors:trapdoor_mangrove_open +mcl_wool:light_blue_carpet +mcl_stairs:stair_mangrove +mcl_stairs:stair_mangrove_outer +mcl_armor_stand:armor_stand +mcl_wool:orange_carpet +mcl_stairs:stair_mangrove_bark +mcl_stairs:stair_mangrove_bark_outer +mcl_stairs:stair_mangrove_bark_inner +mcl_colorblocks:concrete_powder_lime +mcl_colorblocks:concrete_lime +mcl_wool:lime_carpet +mesecons_delayer:delayer_on_locked +mcl_wool:purple +mcl_crimson:crimson_nylium +mcl_wool:purple_carpet +mcl_flowerpots:flower_pot_crimson_roots +homedecor:banister_brass_horizontal +mcl_flowerpots:flower_pot_crimson_fungus +mcl_crimson:crimson_fungus +mcl_wool:grey +homedecor:painting_4 +mcl_crimson:shroomlight +mcl_beds:respawn_anchor_charged_1 +mcl_wool:grey_carpet +mcl_crimson:warped_wart_block +mcl_beds:respawn_anchor_charged_2 +mcl_flowerpots:flower_pot_warped_roots +mcl_colorblocks:concrete_purple +mcl_beds:respawn_anchor_charged_3 +mcl_wool:cyan +homedecor:bathtub_clawfoot_brass_taps +mcl_beds:respawn_anchor_charged_4 +mcl_stairs:stair_goldblock +mcl_wool:cyan_carpet +pipeworks:tag_tube_101100 +mcl_crimson:twisting_vines +mcl_crimson:warped_fungus +mcl_stairs:slab_acacia +mcl_walls:stonebrickmossy_0 +mcl_doors:door_spruce_b_2 +mesecons:wire_11011101_on +mcl_walls:endbricks_9 +mcl_walls:prismarine_14 +mcl_stairs:slab_redsandstonesmooth2_top +mcl_stairs:slab_brick_block +mcl_panes:pane_pink_flat +mcl_stairs:slab_warped_double +mcl_colorblocks:hardened_clay_grey +mcl_stairs:slab_warped_top +mcl_stairs:slab_sandstone_top +mcl_colorblocks:concrete_powder_grey +mcl_stairs:stair_warped_bark_inner +mcl_colorblocks:concrete_grey +mcl_stairs:stair_warped_bark_outer +mcl_villages:crop_flower_1 +mcl_villages:crop_flower_7 +mcl_villages:crop_flower_8 +mcl_stairs:stair_lapisblock_outer +mcl_doors:trapdoor_warped_open +mcl_stairs:slab_ironblock_top +mcl_doors:door_warped_t_2 +mcl_stairs:stair_stonebrickcracked +mcl_doors:door_warped_t_1 +mcl_doors:door_warped_b_1 +mcl_fences:warped_fence_gate +mcl_fences:warped_fence_gate_open +mcl_minecarts:activator_rail_on +mcl_fences:warped_fence +mcl_trees:bark_stripped_warped +mcl_loom:loom +mcl_trees:stripped_warped +mcl_trees:bark_warped +mcl_minecarts:detector_rail_on +mcl_minecarts:detector_rail +mcl_trees:wood_warped +mcl_trees:tree_warped +pipeworks:pipe_1_empty +mesecons_button:button_jungle_on +mcl_stairs:slab_crimson_bark_top +mcl_stairs:slab_crimson_double +mcl_stairs:slab_crimson_top +mcl_stairs:slab_crimson +mcl_droppers:dropper_up +mcl_droppers:dropper_down +mcl_stairs:stair_crimson_bark_inner +pipeworks:pipe_compatibility_loaded +mcl_droppers:dropper +mcl_stairs:stair_crimson_bark_outer +mcl_minecarts:golden_rail_on +mcl_stairs:stair_crimson_bark +pipeworks:valve_on_empty +mcl_stairs:stair_crimson_inner +pipeworks:valve_off_empty +mcl_stairs:stair_crimson_outer +pipeworks:entry_panel_empty +mcl_stairs:stair_crimson +pipeworks:flow_sensor_empty +mcl_doors:trapdoor_crimson_open +pipeworks:straight_pipe_empty +mcl_doors:trapdoor_crimson +pipeworks:valve_on_loaded +mcl_doors:door_crimson_t_2 +pipeworks:entry_panel_loaded +mcl_doors:door_crimson_b_2 +pipeworks:flow_sensor_loaded +mcl_doors:door_crimson_t_1 +pipeworks:straight_pipe_loaded +mcl_fences:crimson_fence_gate +mcl_fences:crimson_fence_gate_open +homedecor:medicine_cabinet +homedecor:shower_head +homedecor:banister_wood_diagonal_left_malachite +mcl_observers:observer_up_off +mcl_observers:observer_up_on +mcl_observers:observer_down_off +mcl_observers:observer_down_on +pipeworks:pipe_2_empty +homedecor:banister_wood_horizontal_lime +pipeworks:pipe_2_loaded +mcl_doors:door_cherry_blossom_t_2 +homedecor:shower_tray +mcl_doors:trapdoor_cherry_blossom +mcl_observers:observer_on +pipeworks:pipe_3_loaded +mcl_stairs:slab_deepslate_bricks_cracked_double +mcl_stairs:slab_deepslate_bricks_cracked_top +mcl_stairs:slab_deepslate_bricks_cracked +pipeworks:pipe_4_empty +mcl_cake:cake_4 +pipeworks:pipe_4_loaded +mcl_cake:cake_5 +mcl_cake:cake_6 +mcl_cake:cake +mcl_doors:trapdoor_cherry_blossom_open +mcl_trees:bark_stripped_oak +pipeworks:pipe_5_loaded +mcl_blackstone:wall +mcl_blackstone:wall_21 +mcl_stairs:stair_cherry_blossom +pipeworks:pipe_6_empty +mcl_stairs:stair_cherry_blossom_outer +mcl_stairs:stair_cherry_blossom_inner +mcl_core:cobble +mcl_stairs:stair_end_bricks_inner +mcl_stairs:slab_end_bricks +pipeworks:pipe_7_empty +pipeworks:mese_tube_000000 +pipeworks:pipe_7_loaded +mcl_stairs:stair_cherry_blossom_bark +mcl_signs:wall_sign_jungle +mcl_stairs:stair_cherry_blossom_bark_outer +mcl_stairs:stair_cherry_blossom_bark_inner +mcl_blackstone:wall_13 +pipeworks:pipe_8_loaded +pipeworks:mese_tube_000010 +mcl_blackstone:wall_12 +mcl_blackstone:wall_11 +pipeworks:pipe_9_empty +mcl_panes:pane_pink +mcl_stairs:slab_cherry_blossom +mcl_stairs:slab_cherry_blossom_top +mcl_stairs:slab_cherry_blossom_double +mcl_blackstone:wall_9 +pipeworks:mese_tube_000100 +mcl_blackstone:wall_8 +pipeworks:pipe_10_loaded +mcl_blackstone:wall_7 +mcl_stairs:stair_acacia_bark_inner +pipeworks:mese_tube_000101 +mcl_walls:mudbrick_11 +mcl_walls:mudbrick_9 +mcl_walls:mudbrick_3 +mcl_walls:rednetherbrick_9 +pipeworks:mese_tube_000110 +mcl_stairs:slab_cherry_blossom_bark +mcl_stairs:slab_cherry_blossom_bark_top +mcl_stairs:slab_cherry_blossom_bark_double +mcl_blackstone:wall_1 +pipeworks:mese_tube_000111 +mcl_blackstone:wall_0 +mcl_stairs:slab_blackstone_brick_polished_double +mcl_stairs:slab_blackstone_brick_polished_top +pipeworks:mese_tube_001000 +mcl_stairs:slab_blackstone_brick_polished +mcl_stairs:stair_oak +mcl_stairs:stair_blackstone_brick_polished_outer +mcl_stairs:stair_blackstone_brick_polished +pipeworks:mese_tube_001001 +mcl_stairs:slab_blackstone_polished_double +mcl_stairs:slab_blackstone_polished_top +mcl_stairs:stair_blackstone_polished_inner +mcl_stairs:stair_blackstone_polished +pipeworks:mese_tube_001010 +mcl_stairs:slab_blackstone_double +homedecor:skylight_frosted +mcl_stairs:slab_blackstone_top +mcl_stairs:slab_blackstone +pipeworks:mese_tube_001011 +mcl_stairs:stair_blackstone_inner +mcl_stairs:stair_blackstone_outer +mcl_stairs:stair_andesite_smooth_outer +mcl_sponges:sponge_wet +pipeworks:mese_tube_001100 +mcl_blackstone:quartz_brick +mcl_blackstone:blackstone_polished +mcl_blackstone:basalt +mcl_blackstone:basalt_polished +pipeworks:mese_tube_001101 +mcl_blackstone:blackstone +mcl_stairs:slab_concrete_cyan_top +mcl_stairs:slab_concrete_cyan +mcl_stairs:stair_concrete_cyan_outer +pipeworks:mese_tube_001110 +mcl_stairs:stair_concrete_cyan +mcl_stairs:stair_concrete_grey_inner +mcl_stairs:stair_concrete_grey +homedecor:shingles_wood +pipeworks:mese_tube_001111 +mcl_villages:crop_gourd_2 +mcl_villages:crop_gourd_1 +mcl_stairs:slab_concrete_purple_double +pipeworks:mese_tube_010000 +mcl_stairs:slab_concrete_purple_top +mcl_stairs:slab_concrete_purple +mcl_stairs:stair_concrete_purple_outer +mcl_stairs:slab_concrete_lime_double +pipeworks:mese_tube_010001 +mcl_stairs:stair_concrete_lime_outer +lavalamp:lavalamp +mcl_stairs:stair_concrete_lime +mcl_stairs:slab_concrete_orange +pipeworks:mese_tube_010010 +mcl_stairs:stair_concrete_orange_inner +mcl_stairs:stair_concrete_orange +mcl_stairs:slab_concrete_light_blue_double +lavalamp:lavalamp_off +pipeworks:mese_tube_010011 +mcl_stairs:slab_concrete_light_blue_top +mcl_stairs:slab_concrete_light_blue +mcl_stairs:stair_concrete_light_blue_outer +mcl_stairs:slab_concrete_silver_top +pipeworks:mese_tube_010100 +mcl_stairs:slab_concrete_red_double +mcl_stairs:slab_concrete_red_top +mcl_stairs:slab_concrete_red +mcl_stairs:stair_concrete_red_inner +pipeworks:mese_tube_010101 +homedecor:plasma_ball_off +mcl_stairs:stair_concrete_red_outer +mcl_stairs:stair_concrete_red +mcl_stairs:slab_concrete_black_double +pipeworks:mese_tube_010110 +mcl_stairs:slab_concrete_black +mesecons_pressureplates:pressure_plate_stone_off +mcl_stairs:stair_concrete_black_inner +mesecons_pressureplates:pressure_plate_stone_on +pipeworks:mese_tube_010111 +mcl_stairs:stair_concrete_black +mcl_stairs:slab_concrete_brown_double +mcl_stairs:slab_concrete_brown_top +mesecons_pressureplates:pressure_plate_polished_blackstone_off +pipeworks:mese_tube_011000 +mesecons_pressureplates:pressure_plate_polished_blackstone_on +mcl_stairs:slab_concrete_brown +pipeworks:tube_compatibility +mcl_stairs:stair_concrete_brown_inner +pipeworks:mese_tube_011001 +mcl_stairs:stair_concrete_brown +mcl_stairs:slab_concrete_green_double +mcl_stairs:slab_concrete_green +mcl_stairs:stair_concrete_green_outer +pipeworks:mese_tube_011010 +mcl_stairs:stair_concrete_green +mcl_stairs:slab_concrete_blue_double +mcl_stairs:slab_concrete_blue +mcl_stairs:stair_concrete_blue_outer +pipeworks:mese_tube_011011 +mcl_stairs:slab_concrete_magenta_top +mcl_stairs:slab_concrete_magenta +homedecor:wall_sconce +mcl_walls:redsandstone_2 +pipeworks:mese_tube_011100 +mcl_walls:redsandstone_3 +mcl_stairs:stair_concrete_magenta_inner +mcl_walls:redsandstone_4 +mcl_stairs:stair_concrete_magenta_outer +mcl_walls:redsandstone_5 +mcl_stairs:slab_concrete_pink_double +mcl_walls:redsandstone_6 +mcl_stairs:slab_concrete_pink_top +mcl_walls:redsandstone_7 +mcl_stairs:stair_redsandstone_outer +mcl_walls:redsandstone_8 +pipeworks:steel_block_embedded_tube +mcl_walls:redsandstone_9 +mcl_stairs:slab_concrete_pink +mcl_walls:redsandstone_10 +mcl_stairs:stair_concrete_pink_inner +mcl_walls:redsandstone_11 +mcl_stairs:slab_redsandstone_top +mcl_walls:redsandstone_12 +mcl_stairs:stair_concrete_pink_outer +mcl_walls:redsandstone_13 +mcl_stairs:stair_concrete_pink +mcl_walls:redsandstone_14 +mcl_stairs:slab_concrete_white_double +mcl_walls:redsandstone_15 +mcl_stairs:slab_concrete_white_top +mcl_walls:redsandstone_16 +pipeworks:mese_tube_100010 +mcl_walls:redsandstone_21 +mcl_stairs:stair_redsandstonesmooth2 +mcl_stairs:slab_concrete_white +mcl_stairs:stair_redsandstonesmooth2_outer +mcl_stairs:stair_redsandstonesmooth2_inner +mcl_walls:stonebrick_0 +mcl_stairs:slab_concrete_yellow +mcl_walls:stonebrick_1 +mcl_stairs:stair_concrete_yellow_inner +mcl_walls:stonebrick_2 +mcl_stairs:slab_redsandstonesmooth2 +mcl_walls:stonebrick_3 +mcl_stairs:slab_redsandstonesmooth2_double +mcl_walls:stonebrick_4 +homedecor:welcome_mat_green +mcl_walls:stonebrick_5 +mcl_stairs:stair_concrete_yellow_outer +mcl_walls:stonebrick_6 +homedecor:welcome_mat_brown +mcl_walls:stonebrick_7 +mcl_stairs:stair_concrete_yellow +mcl_walls:stonebrick_8 +homedecor:welcome_mat_grey +mcl_walls:stonebrick_9 +mcl_walls:stonebrick_10 +mcl_stairs:stair_redsandstonesmooth_inner +mcl_walls:stonebrick_11 +mcl_stairs:stair_stone_outer +mcl_walls:stonebrick_12 +mcl_core:slimeblock +mcl_walls:stonebrick_13 +mcl_stairs:slab_redsandstonesmooth +mcl_walls:stonebrick_14 +mcl_stairs:slab_redsandstonesmooth_double +mcl_walls:stonebrick_15 +mcl_chests:ender_chest +mcl_walls:stonebrick_16 +mesecons_commandblock:commandblock_off +mcl_walls:stonebrick_21 +mcl_portals:portal +mcl_portals:end_portal_frame +mcl_enchanting:table +mcl_jukebox:jukebox +mcl_banners:hanging_banner +mcl_banners:standing_banner +mcl_beehives:bee_nest +mcl_walls:stonebrickmossy_2 +mcl_compass:lodestone +mcl_walls:stonebrickmossy_3 +mcl_sculk:catalyst +mcl_furnaces:furnace_active +mcl_blast_furnace:blast_furnace +mcl_blast_furnace:blast_furnace_active +mcl_smoker:smoker +mcl_smoker:smoker_active +mcl_stairs:slab_stonebrick_double +mcl_walls:stonebrickmossy_7 +mcl_stairs:stair_stone +mcl_walls:stonebrickmossy_8 +mcl_walls:stonebrickmossy_9 +mcl_stairs:slab_end_stone +mcl_walls:stonebrickmossy_10 +mcl_barrels:barrel_open +mcl_walls:stonebrickmossy_11 +mcl_stairs:stair_end_stone_inner +mcl_walls:stonebrickmossy_12 +mcl_stairs:stair_end_stone_outer +mcl_walls:stonebrickmossy_13 +mcl_chests:chest_small +mcl_walls:stonebrickmossy_14 +mcl_chests:chest_right +mcl_walls:stonebrickmossy_15 +mcl_chests:trapped_chest_small +mcl_walls:stonebrickmossy_16 +mcl_chests:trapped_chest_right +mcl_walls:stonebrickmossy_21 +mcl_stairs:stair_end_stone +mcl_stairs:slab_deepslate_tiles_cracked_double +mcl_stairs:slab_deepslate_tiles_cracked +mcl_trees:leaves_mangrove +mcl_campfires:campfire +mcl_campfires:campfire_lit +mcl_walls:prismarine_1 +mcl_campfires:soul_campfire_lit +mcl_walls:prismarine_2 +mcl_stairs:stair_deepslate_tiles_cracked_inner +mcl_walls:prismarine_3 +pipeworks:broken_tube_3 +mcl_fences:mangrove_fence +mcl_stairs:stair_deepslate_tiles_cracked_outer +mcl_fences:mangrove_fence_gate +mcl_fences:mangrove_fence_gate_open +mcl_walls:prismarine_6 +mcl_colorblocks:glazed_terracotta_orange +mcl_walls:prismarine_7 +mcl_colorblocks:glazed_terracotta_green +mcl_walls:prismarine_8 +mcl_colorblocks:glazed_terracotta_purple +mcl_walls:prismarine_9 +mcl_colorblocks:glazed_terracotta_blue +mcl_walls:prismarine_10 +mcl_colorblocks:glazed_terracotta_white +mcl_walls:prismarine_11 +mcl_colorblocks:glazed_terracotta_silver +mcl_walls:prismarine_12 +mcl_colorblocks:glazed_terracotta_brown +mcl_walls:prismarine_13 +mcl_colorblocks:glazed_terracotta_pink +mcl_bamboo:bamboo +mcl_bamboo:bamboo_endcap +mcl_bamboo:bamboo_1 +mcl_bamboo:bamboo_2 +mcl_bamboo:bamboo_3 +mcl_stairs:stair_deepslate_tiles_cracked +mcl_bamboo:scaffolding +mcl_beds:bed_black_top +mcl_beds:bed_black_bottom +mcl_beds:bed_blue_top +mcl_beds:bed_blue_bottom +mcl_beds:bed_brown_top +mcl_beds:bed_brown_bottom +mcl_beds:bed_cyan_top +mcl_beds:bed_cyan_bottom +mcl_beds:bed_green_top +mcl_beds:bed_green_bottom +mcl_beds:bed_grey_top +mcl_walls:endbricks_4 +mcl_beds:bed_light_blue_top +mcl_walls:endbricks_5 +mcl_beds:bed_lime_top +mcl_beds:bed_lime_bottom +mcl_beds:bed_magenta_top +mcl_walls:endbricks_7 +mcl_beds:bed_orange_top +mcl_beds:bed_orange_bottom +mcl_beds:bed_pink_top +mcl_beds:bed_pink_bottom +mcl_beds:bed_purple_top +mcl_beds:bed_purple_bottom +mcl_beds:bed_red_top +mcl_beds:bed_red_bottom +mcl_beds:bed_silver_top +mcl_beds:bed_silver_bottom +mcl_deepslate:tuff +mcl_beds:bed_white_bottom +mcl_beds:bed_yellow_top +mcl_beds:bed_yellow_bottom +mcl_core:cactus +mcl_core:reeds +mcl_core:vine +mcl_cake:cake_1 +mcl_cake:cake_2 +mcl_cake:cake_3 +mesecons:wire_01010001_on +mesecons:wire_01010001_off +pipeworks:digiline_filter +mcl_farming:pumpkin_face +mcl_farming:pumpkin_face_light +mcl_farming:pumpkin +mcl_farming:melon +mcl_end:chorus_plant +mcl_core:cobweb +mcl_cocoas:cocoa_1 +mcl_cocoas:cocoa_2 +mesecons:wire_11010001_on +mesecons:wire_11010001_off +mcl_stairs:stair_deepslate_bricks_cracked_inner +mcl_stairs:stair_deepslate_bricks_cracked_outer +mcl_stairs:stair_deepslate_bricks_cracked +mcl_doors:iron_door_t_1 +mcl_doors:iron_door_b_1 +mcl_doors:iron_door_t_2 +mcl_doors:iron_door_b_2 +mcl_stairs:slab_stonebrickcracked_double +mesecons:wire_00110001_on +mesecons:wire_00110001_off +mcl_stairs:slab_stonebrickcracked_top +mcl_stairs:slab_stonebrickcracked +mcl_stairs:stair_stonebrickcracked_inner +mcl_stairs:slab_jungle +mcl_doors:door_warped_b_2 +mesecons:wire_10110001_on +mesecons:wire_10110001_off +mcl_stairs:slab_ironblock_double +mcl_doors:trapdoor_warped +mesecons:wire_11111000_on +mesecons:wire_11111000_off +mcl_stairs:slab_ironblock +mcl_stairs:stair_ironblock_inner +mcl_stairs:stair_ironblock_outer +mcl_stairs:stair_ironblock +mcl_stairs:stair_bamboo_bark_inner +mcl_stairs:slab_goldblock_top +mcl_stairs:stair_bamboo_bark +mcl_stairs:stair_goldblock_inner +mcl_stairs:stair_goldblock_outer +mesecons:wire_01000100_on +mesecons:wire_01000100_off +mcl_crimson:nether_sprouts +mcl_stairs:slab_lapisblock_double +mcl_stairs:slab_lapisblock +mcl_stairs:stair_warped +mcl_stairs:stair_lapisblock +mcl_stairs:stair_warped_outer +mcl_stairs:stair_warped_inner +mcl_villages:crop_flower_5 +mesecons:wire_11000100_on +mesecons:wire_11000100_off +mcl_villages:crop_flower_3 +mcl_stairs:stair_warped_bark +mcl_villages:crop_tree_8 +mcl_villages:crop_tree_6 +mcl_villages:crop_tree_5 +mesecons:wire_01100100_on +mesecons:wire_01100100_off +pipeworks:steel_pane_embedded_tube +mcl_crimson:weeping_vines +mcl_villages:crop_bush_7 +pipeworks:nodebreaker_off +mcl_villages:crop_bush_6 +mcl_ocean:dried_kelp_block +pipeworks:nodebreaker_on +mcl_villages:crop_bush_5 +mesecons:wire_11100100_on +mesecons:wire_11100100_off +mcl_villages:crop_bush_4 +mcl_villages:crop_bush_3 +mcl_villages:crop_bush_2 +mcl_villages:crop_bush_1 +pipeworks:teleport_tube_9 +mcl_deepslate:deepslatetileswall_3 +mcl_villages:crop_gourd_6 +mesecons:wire_01010100_on +mesecons:wire_01010100_off +pipeworks:deployer_on +mcl_villages:crop_root_8 +mcl_villages:crop_root_6 +pipeworks:dispenser_off +mcl_villages:crop_root_5 +mcl_villages:crop_root_3 +mesecons:wire_11010100_on +mesecons:wire_11010100_off +mcl_villages:crop_root_2 +mcl_villages:crop_root_1 +mcl_villages:crop_grain_7 +mcl_villages:crop_grain_6 +pipeworks:sand_tube_1 +mcl_villages:crop_grain_3 +mcl_villages:crop_grain_2 +mesecons:wire_01110100_on +mesecons:wire_01110100_off +mcl_villages:crop_grain_1 +mcl_villages:path_endpoint +mcl_villages:no_paths +mcl_villages:building_block +homedecor:pole_brass +mcl_crimson:crimson_roots +mcl_crimson:warped_roots +mcl_trees:stripped_crimson +mcl_trees:tree_crimson +mesecons:wire_11110100_on +mesecons:wire_11110100_off +homedecor:taps_brass +homedecor:taps +mcl_trees:wood_crimson +mcl_walls:stonebrickmossy_6 +homedecor:toilet_open +mcl_trees:leaves_spruce_orphan +homedecor:toilet +mcl_trees:bark_stripped_crimson +mcl_trees:bark_crimson +mesecons:wire_11001100_on +mesecons:wire_11001100_off +homedecor:banister_wood_diagonal_left_rose +homedecor:desk_lamp_11 +homedecor:banister_wood_diagonal_left_fuchsia +mcl_fences:spruce_fence +homedecor:ceiling_lamp_11 +mcl_fences:spruce_fence_gate +mcl_fences:spruce_fence_gate_open +homedecor:bathroom_tiles_dark +homedecor:table_lamp_11 +mesecons:wire_11101100_on +mesecons:wire_11101100_off +homedecor:standing_lamp_11 +homedecor:radiator +homedecor:space_heater +homedecor:ceiling_fan +homedecor:glowlight_half_12 +homedecor:air_conditioner +homedecor:glowlight_quarter_12 +homedecor:alarm_clock +homedecor:glowlight_small_cube_12 +mesecons:wire_11011100_on +mesecons:wire_11011100_off +homedecor:shrubbery_green +mcl_doors:door_spruce_b_1 +homedecor:plasma_lamp_12 +homedecor:shrubbery_large_green +homedecor:shrubbery_large_red +homedecor:ground_lantern_12 +mcl_doors:door_spruce_t_1 +homedecor:shrubbery_large_yellow +homedecor:hanging_lantern_12 +mesecons:wire_11111100_on +mesecons:wire_11111100_off +homedecor:ceiling_lantern_12 +mcl_doors:door_spruce_t_2 +homedecor:well +mcl_doors:trapdoor_spruce +homedecor:swing_rope +homedecor:lattice_wood_vegetal +homedecor:lattice_lantern_small_12 +homedecor:lattice_white_wood +homedecor:barbecue +mesecons:wire_00100010_on +mesecons:wire_00100010_off +homedecor:paper_towel +homedecor:ceiling_lamp_12 +mcl_flowerpots:flower_pot_sapling_oak +homedecor:copper_pans +mcl_doors:trapdoor_spruce_open +homedecor:table_lamp_12 +homedecor:kitchen_cabinet_colored_with_sink +homedecor:kitchen_cabinet_colored_with_sink_locked +homedecor:standing_lamp_12 +mesecons:wire_10100010_on +mesecons:wire_10100010_off +mcl_stairs:stair_spruce_outer +mcl_stairs:stair_spruce_inner +mcl_walls:sandstone_11 +homedecor:glowlight_quarter_13 +homedecor:kitchen_cabinet_colorable_with_sink_locked +homedecor:glowlight_small_cube_13 +homedecor:kitchen_cabinet_colored_half +homedecor:kitchen_cabinet_colored_half_locked +mcl_stairs:stair_spruce_bark +mesecons:wire_01100010_on +mesecons:wire_01100010_off +mcl_stairs:stair_spruce_bark_inner +homedecor:kitchen_cabinet_colorable_half +homedecor:ground_lantern_13 +homedecor:kitchen_cabinet_colorable_half_locked +mcl_lightning_rods:rod +homedecor:hanging_lantern_13 +homedecor:kitchen_cabinet_colored_with_drawers_steel +mcl_lightning_rods:rod_powered +mcl_stairs:slab_spruce +mesecons:wire_11100010_on +mesecons:wire_11100010_off +homedecor:lattice_lantern_large_13 +homedecor:kitchen_cabinet_colored_with_drawers_steel_locked +mcl_farming:melontige_1 +homedecor:lattice_lantern_small_13 +homedecor:kitchen_cabinet_colorable_with_drawers_steel +homedecor:kitchen_cabinet_colorable_with_drawers_steel_locked +homedecor:desk_lamp_13 +homedecor:kitchen_cabinet_colored_steel +homedecor:kitchen_cabinet_colored_steel_locked +mesecons:wire_00110010_on +mesecons:wire_00110010_off +homedecor:kitchen_cabinet_colorable_steel +mcl_stairs:slab_spruce_bark +mcl_stairs:slab_spruce_bark_top +mcl_stairs:slab_spruce_bark_double +homedecor:kitchen_cabinet_colorable_steel_locked +homedecor:standing_lamp_13 +homedecor:kitchen_cabinet_colored_with_drawers_marble_locked +homedecor:kitchen_cabinet_colorable_with_drawers_marble +homedecor:kitchen_cabinet_colored_marble +homedecor:kitchen_cabinet_colored_marble_locked +homedecor:kitchen_cabinet_colorable_with_drawers_granite_locked +homedecor:kitchen_cabinet_colored_granite_locked +mcl_farming:melontige_unconnect +mcl_farming:melontige_2 +mcl_farming:melontige_3 +mcl_farming:melontige_4 +mcl_farming:melontige_5 +mcl_farming:melontige_6 +mcl_farming:melontige_7 +homedecor:wood_table_large_square_with_wrought_iron_legs +homedecor:kitchen_cabinet_colorable_granite +homedecor:kitchen_cabinet_colored_with_drawers +homedecor:kitchen_cabinet_colored_with_drawers_locked +homedecor:wood_table_large_square_with_wood_legs +homedecor:kitchen_cabinet_colorable_with_drawers +homedecor:kitchen_cabinet_colored +mesecons:wire_01110010_on +mesecons:wire_01110010_off +mesecons_pressureplates:pressure_plate_spruce_on +mesecons_button:button_spruce_off +mcl_fences:oak_fence +homedecor:dishwasher_wood +mesecons_button:button_spruce_on +mesecons:wire_11110010_on +mesecons:wire_11110010_off +mcl_wool:pink_carpet +homedecor:wood_table_small_square_with_wood_legs +mcl_flowerpots:flower_pot_sapling_spruce +homedecor:dishwasher_steel +mcl_walls:sandstone_12 +homedecor:microwave_oven +homedecor:microwave_oven_locked +mcl_stairs:stair_mangrove_inner +homedecor:oven_steel_active_locked +mesecons:wire_10101010_on +mesecons:wire_10101010_off +homedecor:lattice_lantern_small_14 +homedecor:desk_lamp_14 +homedecor:ceiling_lamp_14 +homedecor:wood_table_small_round_with_wrought_iron_legs +homedecor:standing_lamp_14 +homedecor:oven_steel +mcl_mangrove:propagule_mud +homedecor:wood_table_small_round_with_wood_legs +mcl_walls:mudbrick_0 +mcl_chests:yellow_shulker_box_small +homedecor:oven +mcl_farming:melontige_linked_r +mcl_farming:melontige_linked_l +mcl_farming:melontige_linked_t +mcl_farming:melontige_linked_b +homedecor:oven_locked +homedecor:refrigerator_white +mcl_heads:zombie +homedecor:refrigerator_steel +mcl_flowers:peony_top +homedecor:torch_wall +lrfurn:endtable +homedecor:chandelier_brass +mcl_cocoas:cocoa_3 +mcl_dispensers:dispenser_up +mcl_dispensers:dispenser_down +mcl_doors:trapdoor_oak_open +mcl_dispensers:dispenser +homedecor:chain_steel_top +mcl_trees:stripped_acacia +homedecor:oil_lamp_tabletop +mcl_walls:brick_9 +mcl_walls:brick_7 +homedecor:candlestick_wrought_iron +mcl_trees:wood_acacia +lrfurn:coffeetable +homedecor:candle_thin +mcl_deepslate:deepslate_with_lapis +homedecor:glowlight_half_0 +mcl_trees:bark_stripped_acacia +mcl_trees:bark_acacia +homedecor:wall_lamp_on +homedecor:glowlight_quarter_0 +mcl_colorblocks:hardened_clay_purple +mcl_signs:standing_sign_acacia +homedecor:plasma_ball_on +homedecor:wall_lamp_off +homedecor:glowlight_small_cube_0 +mcl_trees:leaves_birch_orphan +homedecor:rope_light_on_floor_off +homedecor:table_lamp_14 +homedecor:plasma_lamp_0 +mcl_walls:endbricks_3 +mcl_walls:endbricks_2 +homedecor:hanging_lantern_14 +homedecor:ground_lantern_0 +mcl_walls:prismarine_15 +homedecor:plasma_lamp_14 +mcl_panes:pane_black +mcl_anvils:anvil +mcl_anvils:anvil_damage_1 +mcl_trees:stripped_jungle +mcl_stairs:stair_spruce +homedecor:ceiling_lantern_0 +homedecor:table_lamp_13 +homedecor:ceiling_lamp_13 +homedecor:ceiling_lantern_13 +homedecor:plasma_lamp_13 +homedecor:lattice_lantern_large_0 +lrfurn:longsofa +homedecor:glowlight_half_13 +homedecor:desk_lamp_12 +homedecor:lattice_lantern_large_12 +homedecor:lattice_lantern_small_11 +homedecor:lattice_lantern_small_0 +homedecor:lattice_lantern_large_11 +homedecor:ceiling_lantern_11 +homedecor:hanging_lantern_11 +homedecor:desk_lamp_0 +homedecor:ground_lantern_11 +homedecor:glowlight_small_cube_11 +homedecor:ceiling_lamp_10 +homedecor:ceiling_lamp_0 +homedecor:desk_lamp_10 +homedecor:lattice_lantern_small_10 +homedecor:lattice_lantern_large_10 +homedecor:ceiling_lantern_10 +homedecor:table_lamp_0 +homedecor:hanging_lantern_10 +homedecor:ground_lantern_10 +homedecor:plasma_lamp_10 +homedecor:painting_16 +homedecor:standing_lamp_0 +homedecor:glowlight_quarter_10 +homedecor:glowlight_half_10 +homedecor:ceiling_lamp_9 +homedecor:ground_lantern_9 +fake_fire:ice_fire +homedecor:painting_17 +homedecor:plasma_lamp_9 +homedecor:glowlight_small_cube_9 +homedecor:glowlight_quarter_1 +homedecor:table_lamp_8 +homedecor:glowlight_small_cube_8 +homedecor:glowlight_quarter_8 +homedecor:painting_18 +homedecor:glowlight_half_8 +homedecor:standing_lamp_7 +homedecor:table_lamp_7 +homedecor:ceiling_lamp_7 +homedecor:lattice_lantern_small_7 +fake_fire:embers +homedecor:painting_19 +homedecor:lattice_lantern_large_7 +homedecor:ground_lantern_1 +homedecor:ground_lantern_7 +homedecor:glowlight_small_cube_7 +homedecor:hanging_lantern_1 +homedecor:painting_20 +homedecor:glowlight_quarter_7 +homedecor:ceiling_lantern_1 +homedecor:standing_lamp_6 +homedecor:table_lamp_6 +homedecor:lattice_lantern_large_6 +homedecor:lattice_lantern_large_1 +homedecor:hanging_lantern_6 +homedecor:glowlight_small_cube_6 +homedecor:glowlight_quarter_6 +homedecor:glowlight_half_6 +mcl_cherry_blossom:pink_petals +mcl_colorblocks:glazed_terracotta_yellow +mcl_walls:sandstone_5 +homedecor:desk_lamp_1 +fake_fire:chimney_top_stone +homedecor:ceiling_lamp_5 +mcl_trees:leaves_cherry_blossom +homedecor:desk_lamp_5 +homedecor:lattice_lantern_small_5 +homedecor:lattice_lantern_large_5 +homedecor:table_lamp_1 +homedecor:ceiling_lantern_5 +mesecons_delayer:delayer_on_3 +homedecor:standing_lamp_1 +mcl_doors:door_jungle_t_2 +mcl_doors:trapdoor_jungle +mcl_flowers:azure_bluet +homedecor:glowlight_half_2 +homedecor:washing_machine +homedecor:glowlight_quarter_2 +mcl_fire:eternal_fire +homedecor:dryer +homedecor:glowlight_half_5 +homedecor:standing_lamp_4 +homedecor:ironing_board +mcl_beds:bed_white_top +mcl_trees:stripped_cherry_blossom +mcl_trees:tree_cherry_blossom +mcl_trees:tree_birch +mcl_trees:tree_jungle +homedecor:hanging_lantern_2 +mcl_stairs:stair_bamboo_outer +mcl_trees:wood_cherry_blossom +homedecor:ceiling_lantern_2 +mcl_chests:trapped_chest_on_small +mcl_monster_eggs:monster_egg_cobble +homedecor:lattice_lantern_large_2 +mcl_trees:bark_stripped_cherry_blossom +mcl_trees:bark_cherry_blossom +mcl_chests:trapped_chest_on_right +homedecor:inbox +mcl_stairs:stair_jungle_bark_inner +homedecor:desk_lamp_2 +mcl_stairs:stair_deepslate_cobbled +homedecor:ground_lantern_4 +homedecor:ceiling_lamp_2 +homedecor:plasma_lamp_4 +homedecor:glowlight_small_cube_4 +homedecor:glowlight_quarter_4 +homedecor:table_lamp_2 +homedecor:banister_wood_horizontal_fuchsia +homedecor:standing_lamp_3 +homedecor:standing_lamp_2 +homedecor:table_lamp_3 +pipeworks:tube_4 +homedecor:pole_wrought_iron +homedecor:glowlight_half_3 +mesecons:wire_11101010_off +homedecor:lattice_lantern_small_3 +homedecor:bars +homedecor:lattice_lantern_large_3 +homedecor:glowlight_quarter_3 +mcl_trees:leaves_cherry_blossom_orphan +homedecor:glowlight_small_cube_3 +homedecor:ceiling_lamp_1 +homedecor:ground_lantern_2 +homedecor:plasma_lamp_3 +homedecor:lattice_lantern_small_2 +homedecor:L_binding_bars +homedecor:ground_lantern_3 +homedecor:chains +mcl_fences:cherry_blossom_fence +homedecor:hanging_lantern_3 +homedecor:plasma_lamp_2 +homedecor:glowlight_small_cube_2 +homedecor:ceiling_lantern_3 +homedecor:lattice_lantern_small_1 +homedecor:plasma_lamp_1 +mesecons_noteblock:noteblock +homedecor:glowlight_small_cube_1 +homedecor:glowlight_half_1 +mcl_fences:cherry_blossom_fence_gate +mcl_fences:cherry_blossom_fence_gate_open +homedecor:hanging_lantern_0 +homedecor:desk_lamp_3 +mesecons:wire_10010001_on +homedecor:japanese_wall_top +homedecor:ceiling_lamp_3 +homedecor:tatami_mat +homedecor:spiral_staircase +homedecor:banister_wrought_iron_horizontal +mcl_deepslate:deepslate +homedecor:bathtub_clawfoot_chrome_taps +homedecor:banister_white_dark_horizontal +homedecor:wall_shelf +homedecor:banister_wood_horizontal_grey +homedecor:banister_wood_horizontal_crimson +homedecor:banister_wood_horizontal_rose +homedecor:glowlight_half_4 +homedecor:toaster_loaf +mcl_doors:door_cherry_blossom_b_1 +homedecor:banister_wood_horizontal_violet +homedecor:toaster +homedecor:bottle_green +homedecor:bottle_brown +mcl_doors:door_cherry_blossom_t_1 +homedecor:4_bottles_green +homedecor:4_bottles_multi +mcl_doors:door_cherry_blossom_b_2 +homedecor:banister_wood_horizontal_indigo +homedecor:coffee_maker +homedecor:banister_wood_horizontal_cyan +homedecor:banister_wood_horizontal_turquoise +homedecor:banister_wood_horizontal_malachite +homedecor:cutlery_set +homedecor:banister_wood_horizontal_harlequin +homedecor:sink +homedecor:banister_wood_horizontal_amber +homedecor:banister_wood_horizontal_orange +homedecor:banister_wood_horizontal_vermilion +homedecor:banister_wood_horizontal_red +pipeworks:mese_tube_110011 +mcl_farming:pumpkin_1 +homedecor:banister_wood_diagonal_right_indigo +homedecor:banister_wood_diagonal_right_cyan +homedecor:banister_wood_diagonal_right_turquoise +homedecor:banister_wood_diagonal_right_malachite +homedecor:banister_wood_diagonal_right_yellow +homedecor:banister_wood_diagonal_right +homedecor:banister_wrought_iron_diagonal_left +homedecor:banister_brass_diagonal_left +homedecor:banister_white_dark_diagonal_left +homedecor:banister_wood_diagonal_left_crimson +homedecor:bathroom_tiles_light +homedecor:bathroom_tiles_medium +mcl_core:goldblock +homedecor:banister_wood_diagonal_left_mulberry +mcl_core:clay +homedecor:banister_wood_diagonal_left_violet +mcl_core:packed_ice +homedecor:banister_wood_diagonal_left_blue +mcl_core:bone_block +homedecor:banister_wood_diagonal_left_cerulean +mcl_core:ironblock +homedecor:banister_wood_diagonal_left_turquoise +homedecor:towel_rod +mcl_core:emeraldblock +homedecor:banister_wood_diagonal_left_green +homedecor:banister_wood_diagonal_left_harlequin +homedecor:banister_wood_diagonal_left_amber +mcl_farming:pumpkintige_unconnect +mcl_farming:pumpkin_2 +mcl_farming:pumpkin_3 +mcl_farming:pumpkin_4 +mcl_farming:pumpkin_5 +mcl_farming:pumpkin_6 +mcl_farming:pumpkin_7 +homedecor:banister_wood_diagonal_left_orange +mcl_itemframes:glow_frame +homedecor:banister_wood_diagonal_left +pipeworks:priority_tube_8 +pipeworks:broken_tube_6 +homedecor:trophy +pipeworks:teleport_tube_3 +homedecor:pool_table +homedecor:dvd_cd_cabinet +homedecor:cardboard_box +homedecor:cardboard_box_big +homedecor:fishtank_lighted +homedecor:fishtank +homedecor:bathroom_set +mcl_trees:tree_acacia +homedecor:rug_small +homedecor:ceiling_tile +homedecor:ceiling_paint +homedecor:desk_globe +homedecor:desk +homedecor:filing_cabinet +homedecor:filing_cabinet_locked +homedecor:shutter +homedecor:window_flowerbox +homedecor:curtainrod_wood +homedecor:curtain_closed +homedecor:blinds_thick +homedecor:window_quartered +building_blocks:terrycloth_towel +building_blocks:Tarmac_spread +building_blocks:gravel_spread +building_blocks:brobble_spread +building_blocks:Marble +mcl_hoppers:hopper_side +mcl_hoppers:hopper +mcl_hoppers:hopper_disabled +building_blocks:Roofing +building_blocks:Adobe +building_blocks:smoothglass +building_blocks:grate +technic:granite +mcl_hoppers:hopper_side_disabled +fake_fire:chimney_top_sandstone +fake_fire:fancy_fire +mcl_mushrooms:red_mushroom_block_cap_100011 +homedecor:nightstand_mahogany_two_drawers_locked +mcl_core:brick_block +homedecor:nightstand_mahogany_one_drawer_locked +homedecor:nightstand_oak_two_drawers +mcl_doors:door_oak_t_2 +mcl_doors:door_birch_b_2 +mcl_flowerpots:flower_pot_sapling_jungle +mcl_chests:black_shulker_box_small +homedecor:bed_extended +homedecor:table_legs_wrought_iron +mcl_copper:block_preserved +mcl_copper:block_cut_preserved +mcl_copper:block_exposed_preserved +mcl_copper:block_exposed_cut_preserved +mcl_copper:block_weathered_preserved +mcl_copper:block_weathered_cut_preserved +mcl_copper:block_oxidized_preserved +mcl_copper:block_oxidized_cut_preserved +homedecor:book_open_brown +homedecor:book_brown +mcl_deepslate:deepslate_tiles_cracked +mcl_core:glass_black +homedecor:book_grey +homedecor:book_open_violet +mcl_colorblocks:glazed_terracotta_black +mcl_trees:wood_oak +mcl_mushrooms:mushroom_brown +mcl_trees:sapling_oak +mcl_trees:sapling_spruce +mcl_trees:sapling_birch +mcl_trees:sapling_dark_oak +homedecor:book_open_blue +mesecons_torch:mesecon_torch_on +mcl_signs:standing_sign_spruce +homedecor:book_green +mcl_stairs:slab_deepslate_tiles +mcl_stairs:slab_deepslate_tiles_top +mcl_stairs:slab_deepslate_tiles_double +homedecor:book_open_red +mcl_chests:trapped_chest_on_left +mcl_core:redsandstone +mcl_stairs:stair_stonebrick_outer +mcl_sculk:sculk +mcl_stairs:stair_sandstonesmooth2_inner +mesecons:wire_00010001_off +mcl_deepslate:deepslatetileswall +mcl_deepslate:deepslatetileswall_0 +homedecor:light_switch_off +mcl_deepslate:deepslatetileswall_1 +mcl_core:frosted_ice_1 +mcl_deepslate:deepslatetileswall_2 +mcl_chests:trapped_chest_left +mcl_core:frosted_ice_2 +homedecor:power_outlet +mcl_deepslate:deepslatetileswall_4 +mcl_core:frosted_ice_3 +mcl_deepslate:deepslatetileswall_5 +homedecor:telephone +mcl_deepslate:deepslatetileswall_6 +mcl_stairs:stair_redsandstonesmooth +mcl_deepslate:deepslatetileswall_7 +mcl_walls:endbricks_0 +mcl_deepslate:deepslatetileswall_8 +mcl_nether:red_nether_brick +mcl_deepslate:deepslatetileswall_9 +mcl_minecarts:rail +mcl_deepslate:deepslatetileswall_10 +mcl_stairs:stair_copper_cut_preserved +mcl_deepslate:deepslatetileswall_11 +mcl_minecarts:golden_rail +mcl_deepslate:deepslatetileswall_12 +mcl_walls:stonebrickmossy_4 +mcl_deepslate:deepslatetileswall_13 +mcl_stairs:stair_copper_exposed_cut_preserved +mcl_minecarts:activator_rail +mcl_stairs:stair_sandstonesmooth_outer +mcl_deepslate:deepslatetileswall_15 +mcl_barrels:barrel_closed +mcl_meshhand:mcl_skins_base_1EEB592FF_female_crea +mcl_stairs:stair_copper_weathered_cut_preserved +mcl_meshhand:mcl_skins_base_1EEB592FF_male_crea +mcl_meshhand:mcl_skins_base_1B47A57FF_female_crea +mcl_meshhand:mcl_skins_base_1B47A57FF_male_crea +mcl_meshhand:mcl_skins_base_18D471DFF_female_crea +mcl_meshhand:mcl_skins_base_18D471DFF_male_crea +mcl_stairs:stair_copper_oxidized_cut_preserved +mcl_meshhand:mcl_skins_character_1_female_crea +mcl_meshhand:mcl_skins_base_1EEB592FF_female_surv +mcl_meshhand:mcl_skins_base_1EEB592FF_male_surv +mcl_meshhand:mcl_skins_base_1B47A57FF_female_surv +mcl_meshhand:mcl_skins_base_1B47A57FF_male_surv +mcl_meshhand:mcl_skins_base_18D471DFF_female_surv +mcl_stairs:slab_copper_cut_preserved +mcl_meshhand:character_male_surv +mcl_meshhand:mcl_skins_character_1_female_surv +homedecor:fence_wrought_iron_2_corner +homedecor:fence_wrought_iron_2 +mcl_stairs:slab_copper_exposed_cut_preserved +mcl_flowers:double_fern +homedecor:fence_chainlink +homedecor:fence_barbed_wire_corner +homedecor:fence_picket_corner_white +mcl_stairs:slab_copper_weathered_cut_preserved +homedecor:fence_picket_corner +mcl_mushrooms:red_mushroom_block_cap_010010 +homedecor:fence_picket +mcl_mud:mud_bricks +mcl_stairs:slab_copper_oxidized_cut_preserved +mcl_doors:door_jungle_b_1 +mcl_mushrooms:red_mushroom_block_cap_010011 +homedecor:coat_tree +homedecor:coatrack_wallmount +mcl_stairs:stair_copper_cut_inner_preserved +mcl_mushrooms:red_mushroom_block_cap_010100 +homedecor:openframe_bookshelf +mcl_stairs:stair_copper_exposed_cut_inner_preserved +homedecor:wine_rack +mcl_mushrooms:red_mushroom_block_cap_010101 +mcl_stairs:stair_copper_weathered_cut_inner_preserved +homedecor:4_bottles_brown +homedecor:painting_14 +mcl_stairs:stair_copper_oxidized_cut_inner_preserved +homedecor:painting_13 +homedecor:painting_12 +homedecor:painting_11 +homedecor:painting_10 +mcl_stairs:stair_copper_cut_outer_preserved +homedecor:painting_9 +mcl_cauldrons:cauldron_1 +mcl_stairs:stair_copper_exposed_cut_outer_preserved +mcl_mushrooms:red_mushroom_block_cap_011000 +mcl_cauldrons:cauldron_1r +mcl_stairs:stair_copper_weathered_cut_outer_preserved +mcl_stairs:slab_acacia_top +mcl_stairs:slab_acacia_double +mcl_stairs:stair_copper_oxidized_cut_outer_preserved +homedecor:painting_8 +mcl_mushrooms:red_mushroom_block_cap_011010 +homedecor:painting_7 +homedecor:painting_6 +homedecor:painting_5 +mcl_end:end_stone +mcl_nether:netherrack +mcl_stairs:slab_copper_cut_top_preserved +mcl_crimson:warped_nylium +mcl_mushrooms:red_mushroom_block_cap_011100 +homedecor:painting_3 +homedecor:painting_2 +mcl_mushrooms:red_mushroom_block_cap_011101 +mcl_stairs:slab_copper_exposed_cut_top_preserved +homedecor:painting_1 +homedecor:picture_frame2 +mcl_mushrooms:red_mushroom_block_cap_011110 +homedecor:picture_frame1 +homedecor:tv_off +mcl_stairs:slab_copper_weathered_cut_top_preserved +mcl_mushrooms:red_mushroom_block_cap_011111 +homedecor:tv_stand +steel:strut +mcl_mushrooms:red_mushroom_block_cap_100000 +steel:roofing_wall +mcl_stairs:slab_copper_oxidized_cut_top_preserved +mcl_mushrooms:red_mushroom_block_cap_100001 +steel:roofing +steel:grate_soft +mcl_mushrooms:red_mushroom_block_cap_100010 +steel:plate_hard +homedecor:shingle_side_asphalt +homedecor:shingle_inner_corner_asphalt +mcl_stairs:slab_copper_cut_double_preserved +homedecor:shingles_terracotta +homedecor:shingles_asphalt +mcl_mushrooms:red_mushroom_block_cap_100100 +homedecor:kitchen_chair_padded +homedecor:bench_large_2 +mcl_stairs:slab_copper_exposed_cut_double_preserved +mcl_mushrooms:red_mushroom_block_cap_100101 +homedecor:bench_large_1 +homedecor:deckchair_striped_blue +mcl_mushrooms:red_mushroom_block_cap_100110 +homedecor:deckchair +mcl_stairs:slab_copper_weathered_cut_double_preserved +homedecor:armchair +mcl_mushrooms:red_mushroom_block_cap_100111 +lrfurn:armchair +mcl_deepslate:deepslatepolishedwall_9 +mcl_mushrooms:red_mushroom_block_cap_101000 +mcl_stairs:slab_copper_oxidized_cut_double_preserved +mcl_mushrooms:red_mushroom_block_cap_101001 +mcl_stairs:stair_copper_weathered_cut_outer +mcl_stairs:stair_copper_weathered_cut_inner +mcl_mushrooms:red_mushroom_block_cap_101010 +homedecor:table_white +homedecor:table_mahogany +homedecor:table +mcl_mushrooms:red_mushroom_block_cap_101011 +mcl_stairs:slab_copper_weathered_cut +mcl_stairs:slab_copper_weathered_cut_top +mcl_stairs:slab_copper_weathered_cut_double +homedecor:wood_table_small_round_with_brass_legs +homedecor:wood_table_small_round +mcl_mushrooms:red_mushroom_block_cap_101101 +basic_materials:cement_block +homedecor:wood_table_small_square_with_wrought_iron_legs +mesecons:wire_01000000_on +mesecons:wire_01000000_off +homedecor:wood_table_small_square_with_brass_legs +basic_materials:concrete_block +mcl_mushrooms:red_mushroom_block_cap_101111 +mcl_stairs:stair_copper_oxidized_cut_outer +basic_materials:chain_steel +mcl_mushrooms:red_mushroom_block_cap_110000 +mcl_cauldrons:cauldron_3_lava +mcl_mushrooms:red_mushroom_block_cap_110001 +homedecor:wood_table_small_square +basic_materials:chain_brass +mcl_stairs:slab_copper_oxidized_cut +mcl_stairs:slab_copper_oxidized_cut_top +mcl_stairs:slab_copper_oxidized_cut_double +basic_materials:brass_block +homedecor:wood_table_large_square_with_brass_legs +homedecor:glass_table_small_round_with_wood_legs +mcl_mushrooms:red_mushroom_block_cap_110100 +homedecor:glass_table_small_round_with_wrought_iron_legs +mcl_mushrooms:red_mushroom_block_cap_110101 +homedecor:glass_table_small_round_with_brass_legs +mesecons:wire_00100000_on +mesecons:wire_00100000_off +homedecor:glass_table_small_round +homedecor:glass_table_small_square_with_wood_legs +homedecor:glass_table_small_square_with_wrought_iron_legs +mcl_mushrooms:red_mushroom_block_cap_110111 +homedecor:glass_table_small_square_with_brass_legs +homedecor:glass_table_small_square +mcl_mushrooms:red_mushroom_block_cap_111000 +homedecor:glass_table_large_square_with_wood_legs +mcl_mushrooms:red_mushroom_block_cap_111001 +mesecons:wire_10100000_on +mesecons:wire_10100000_off +mcl_mushrooms:red_mushroom_block_cap_111010 +homedecor:glass_table_large_square_with_wrought_iron_legs +mcl_stairs:slab_dark_oak +mcl_stairs:slab_dark_oak_top +mcl_stairs:slab_dark_oak_double +mcl_mushrooms:red_mushroom_block_cap_111100 +homedecor:glass_table_large_square_with_brass_legs +mcl_mushrooms:red_mushroom_block_cap_111101 +homedecor:glass_table_large_square +mcl_cauldrons:cauldron_1_lava +mcl_mushrooms:red_mushroom_block_cap_111110 +mcl_panes:pane_silver_flat +homedecor:table_legs_wood +homedecor:bed_regular +homedecor:table_legs_brass +homedecor:trash_can +homedecor:trash_can_green_open +mcl_stairs:slab_dark_oak_bark +mcl_stairs:slab_dark_oak_bark_top +mcl_stairs:slab_dark_oak_bark_double +mesecons:wire_11100000_on +mesecons:wire_11100000_off +mcl_cauldrons:cauldron_2_lava +homedecor:trash_can_green +mcl_brewing:stand_100 +mcl_brewing:stand_010 +mcl_brewing:stand_001 +mcl_brewing:stand_110 +mcl_brewing:stand_101 +mcl_brewing:stand_011 +mcl_brewing:stand_111 +mesecons:wire_00010000_on +mesecons:wire_00010000_off +itemframes:pedestal +mcl_mushrooms:brown_mushroom_block_cap_000100 +itemframes:frame +mcl_mushrooms:brown_mushroom_block_cap_000101 +mcl_panes:pane_light_blue_flat +mcl_mushrooms:brown_mushroom_block_cap_000110 +pipeworks:autocrafter +mcl_mushrooms:brown_mushroom_block_cap_000111 +pipeworks:storage_tank_10 +mcl_mushrooms:brown_mushroom_block_cap_001000 +mesecons:wire_10010000_off +mcl_mushrooms:brown_mushroom_block_cap_001001 +pipeworks:expansion_tank_10 +mcl_mushrooms:brown_mushroom_block_cap_001010 +pipeworks:mese_tube_100011 +mcl_mushrooms:brown_mushroom_block_cap_001011 +pipeworks:storage_tank_8 +mcl_mushrooms:brown_mushroom_block_cap_001100 +pipeworks:storage_tank_7 +mcl_mushrooms:brown_mushroom_block_cap_001101 +mesecons:wire_01010000_on +mesecons:wire_01010000_off +pipeworks:expansion_tank_7 +mcl_mushrooms:brown_mushroom_block_cap_001111 +pipeworks:mese_tube_100101 +mcl_mushrooms:brown_mushroom_block_cap_010000 +pipeworks:expansion_tank_6 +mcl_mushrooms:brown_mushroom_block_cap_010001 +pipeworks:storage_tank_5 +mcl_mushrooms:brown_mushroom_block_cap_010010 +mcl_panes:pane_orange_flat +mcl_mushrooms:brown_mushroom_block_cap_010011 +mesecons:wire_11010000_off +mcl_mushrooms:brown_mushroom_block_cap_010100 +pipeworks:mese_tube_100111 +mcl_mushrooms:brown_mushroom_block_cap_010101 +pipeworks:expansion_tank_5 +mcl_mushrooms:brown_mushroom_block_cap_010110 +mcl_nether:nether_lava_source +pipeworks:storage_tank_4 +pipeworks:expansion_tank_4 +pipeworks:storage_tank_3 +mesecons:wire_00110000_on +mesecons:wire_00110000_off +mcl_end:end_bricks +pipeworks:mese_tube_101010 +pipeworks:expansion_tank_3 +mcl_panes:pane_orange +pipeworks:storage_tank_2 +pipeworks:expansion_tank_2 +mcl_end:purpur_pillar +mcl_stairs:stair_copper_oxidized_cut +mcl_copper:block_weathered_cut +mesecons:wire_10110000_on +mesecons:wire_10110000_off +pipeworks:storage_tank_0 +mcl_core:stone_with_coal +pipeworks:expansion_tank_0 +mcl_signs:wall_sign_birch +pipeworks:spigot +pipeworks:grating +pipeworks:pump_off +mcl_core:stone_with_iron +pipeworks:pump_on +pipeworks:pipe_compatibility_empty +pipeworks:pipe_10_empty +pipeworks:pipe_9_loaded +mcl_core:stone_with_gold +mesecons:wire_01110000_on +mesecons:wire_01110000_off +pipeworks:pipe_8_empty +mesecons_pressureplates:pressure_plate_birch_on +pipeworks:pipe_6_loaded +mcl_panes:pane_lime +pipeworks:pipe_5_empty +mesecons_button:button_birch_off +mcl_ocean:kelp_redsand +pipeworks:pipe_3_empty +pipeworks:pipe_1_loaded +mesecons_button:button_birch_on +mesecons:wire_11110000_off +mcl_core:stone_with_redstone_lit +mcl_panes:pane_purple_flat +pipeworks:mese_sand_tube_compatibility +mcl_flowerpots:flower_pot_sapling_birch +pipeworks:priority_tube_2 +pipeworks:mese_sand_tube_9 +pipeworks:mese_sand_tube_7 +pipeworks:priority_tube_3 +pipeworks:mese_sand_tube_5 +mesecons:wire_10001000_on +mesecons:wire_10001000_off +pipeworks:mese_sand_tube_3 +mcl_stairs:stair_end_bricks +pipeworks:priority_tube_5 +mcl_stairs:stair_end_bricks_outer +mcl_beacons:beacon +pipeworks:priority_tube_6 +pipeworks:mese_sand_tube_1 +mcl_panes:pane_purple +pipeworks:priority_tube_7 +mesecons:wire_11001000_on +mesecons:wire_11001000_off +mcl_sus_nodes:sand_1 +mcl_stairs:slab_end_bricks_double +pipeworks:sand_tube_compatibility +pipeworks:priority_tube_9 +mcl_sus_nodes:sand_2 +pipeworks:sand_tube_9 +mcl_panes:pane_grey_flat +pipeworks:sand_tube_8 +mcl_sus_nodes:sand_3 +mesecons:wire_10101000_on +mesecons:wire_10101000_off +pipeworks:sand_tube_3 +mcl_villages:crop_grain_4 +mcl_sus_nodes:gravel +mcl_villages:crop_grain_5 +mcl_sus_nodes:gravel_1 +mesecons:wire_11101000_on +mcl_sus_nodes:gravel_2 +mcl_panes:pane_grey +mcl_villages:crop_grain_8 +mesecons:wire_10011000_on +mcl_nether:ancient_debris +mcl_villages:crop_root_4 +mcl_flowerpots:flower_pot_cactus +mesecons:wire_11011000_on +mesecons:wire_11011000_off +mcl_villages:crop_root_7 +mcl_core:glass +mcl_panes:pane_cyan +mesecons:wire_10111000_on +mesecons:wire_10111000_off +mcl_villages:crop_gourd_3 +mcl_villages:crop_gourd_4 +homedecor:kitchen_cabinet_colorable +mcl_villages:crop_gourd_5 +mcl_core:glass_grey +mcl_villages:crop_gourd_7 +pipeworks:teleport_tube_10 +mcl_core:glass_yellow +mcl_villages:crop_gourd_8 +mcl_deepslate:deepslatetileswall_16 +pipeworks:trashcan +pipeworks:accelerator_tube_1 +pipeworks:teleport_tube_6 +pipeworks:teleport_tube_5 +mcl_core:glass_white +pipeworks:teleport_tube_4 +homedecor:piano +pipeworks:accelerator_tube_3 +pipeworks:teleport_tube_2 +pipeworks:teleport_tube_1 +pipeworks:accelerator_tube_4 +mcl_core:glass_pink +pipeworks:tag_tube_111011 +pipeworks:accelerator_tube_5 +pipeworks:tag_tube_111010 +mcl_portals:portal_end +pipeworks:accelerator_tube_6 +pipeworks:tag_tube_111001 +pipeworks:tag_tube_110110 +pipeworks:accelerator_tube_7 +pipeworks:tag_tube_110011 +pipeworks:tag_tube_110010 +mesecons_pistons:piston_normal_on +mesecons_pistons:piston_pusher_normal +pipeworks:tag_tube_110001 +mcl_villages:crop_bush_8 +pipeworks:tag_tube_011101 +pipeworks:tag_tube_001010 +mcl_villages:crop_tree_1 +mesecons_torch:redstoneblock +mcl_villages:crop_tree_2 +mcl_villages:crop_tree_3 +signs_road:green_left_sign +mcl_villages:crop_tree_4 +signs_road:green_right_sign +mesecons_pistons:piston_sticky_on +mesecons_pistons:piston_pusher_sticky +signs_road:yellow_left_sign +signs_road:yellow_right_sign +mcl_villages:crop_tree_7 +mcl_deepslate:deepslatebrickswall_0 +mesecons_pistons:piston_up_normal_on +mesecons_pistons:piston_up_pusher_normal +mcl_copper:block +signs_road:red_right_sign +mesecons_pistons:piston_up_sticky_on +mesecons_pistons:piston_up_pusher_sticky +mcl_walls:sandstone_4 +pipeworks:mese_tube_101011 +mcl_villages:crop_flower_4 +homedecor:flower_pot_terracotta +homedecor:flower_pot_green +homedecor:flower_pot_black +pipeworks:mese_tube_101100 +mcl_villages:crop_flower_6 +mcl_doors:trapdoor_jungle_open +signs_road:large_street_sign +pipeworks:mese_tube_101101 +signs_road:red_street_sign +signs_road:blue_sign +signs_road:yellow_sign +signs_road:green_sign +signs:wooden_long_sign +signs_road:red_sign +signs_road:white_sign +homedecor:rug_large +homedecor:rug_persian +pipeworks:mese_tube_101111 +mcl_stairs:stair_jungle_inner +mcl_walls:diorite_16 +pipeworks:mese_tube_110000 +homedecor:japanese_wall_middle +homedecor:japanese_wall_bottom +mcl_flowerpots:flower_pot_wither_rose +mcl_stairs:stair_stonebrickcracked_outer +pipeworks:mese_tube_110001 +mcl_deepslate:deepslatecobbledwall_12 +pipeworks:mese_tube_111111 +homedecor:dartboard +mcl_flowerpots:flower_pot_lily_of_the_valley +pipeworks:mese_tube_110010 +pipeworks:tube_10 +homedecor:sportbench +pipeworks:broken_tube_9 +homedecor:skateboard +mcl_flowerpots:flower_pot_cornflower +pipeworks:accelerator_tube_2 +pipeworks:crossing_tube_3 +pipeworks:mese_tube_110111 +pipeworks:mese_tube_100001 +pipeworks:mese_tube_110100 +pipeworks:mese_tube_101000 +homedecor:banister_wood_horizontal +pipeworks:mese_tube_101110 +pipeworks:mese_tube_101001 +pipeworks:mese_tube_110101 +boards:black_board +pipeworks:mese_tube_100110 +boards:green_board +pipeworks:mese_tube_100100 +pipeworks:mese_tube_110110 +pipeworks:mese_tube_100000 +pipeworks:mese_tube_011111 +pipeworks:mese_tube_011110 +pipeworks:mese_tube_011101 +mcl_nether:netheriteblock +pipeworks:mese_tube_000011 +pipeworks:mese_tube_000001 +pipeworks:mese_tube_111000 +pipeworks:crossing_tube_1 +pipeworks:accelerator_tube_compatibility +pipeworks:accelerator_tube_10 +pipeworks:accelerator_tube_8 +pipeworks:mese_tube_111001 +pipeworks:priority_tube_compatibility +pipeworks:priority_tube_10 +pipeworks:mese_tube_111010 +pipeworks:priority_tube_4 +pipeworks:priority_tube_1 +pipeworks:broken_tube_compatibility +pipeworks:broken_tube_10 +pipeworks:mese_tube_111011 +pipeworks:broken_tube_8 +pipeworks:broken_tube_7 +pipeworks:mese_tube_111100 +pipeworks:broken_tube_5 +pipeworks:broken_tube_4 +pipeworks:broken_tube_2 +pipeworks:broken_tube_1 +pipeworks:mese_tube_111101 +pipeworks:tube_8 +pipeworks:tube_6 +pipeworks:mese_tube_111110 +mcl_core:coarse_dirt +mcl_nether:soul_sand +mcl_mobspawners:spawner +mcl_core:barrier +mcl_end:chorus_flower +mcl_end:chorus_flower_dead +mcl_end:end_rod +mcl_end:dragon_egg +mcl_portals:end_portal_frame_eye +mcl_lanterns:chain +pipeworks:dispenser_on +pipeworks:deployer_off +mcl_nether:cracked_nether_brick +mcl_nether:nether_wart_block +signs:wooden_left_sign +mcl_core:grass_path +signs:wooden_right_sign +mcl_nether:quartz_block +pipeworks:teleport_tube_7 +mcl_deepslate:deepslate_chiseled +mcl_deepslate:deepslatetileswall_21 +pipeworks:teleport_tube_8 +mcl_beehives:bee_nest_1 +mcl_nether:quartz_chiseled +mcl_beehives:bee_nest_2 +mcl_deepslate:deepslatetileswall_14 +mcl_beehives:bee_nest_3 +mcl_nether:quartz_pillar +mcl_beehives:bee_nest_4 +pipeworks:teleport_tube_compatibility +mcl_stairs:stair_deepslate_tiles_inner +mcl_nether:quartz_smooth +mcl_stairs:stair_deepslate_tiles_outer +mcl_stairs:stair_deepslate_tiles +mcl_deepslate:deepslate_tiles +mcl_deepslate:deepslatebrickswall_14 +signs:wooden_sign +mcl_deepslate:deepslatebrickswall_13 +signs:label_medium +signs:paper_poster +mcl_deepslate:deepslatebrickswall_9 +mcl_deepslate:deepslatebrickswall_8 +mcl_deepslate:deepslatebrickswall_3 +mcl_deepslate:deepslatebrickswall_2 +mcl_deepslate:deepslatebrickswall_1 +mcl_stairs:stair_deepslate_bricks_inner +mcl_stairs:stair_deepslate_bricks_outer +mcl_stairs:stair_deepslate_bricks +mcl_deepslate:deepslate_bricks +mcl_deepslate:deepslatepolishedwall_21 +mcl_deepslate:deepslatepolishedwall_16 +mcl_deepslate:deepslatepolishedwall_15 +mcl_deepslate:deepslatepolishedwall_14 +mcl_deepslate:deepslatepolishedwall_13 +mcl_deepslate:deepslatepolishedwall_12 +mcl_deepslate:deepslatepolishedwall_11 +mcl_deepslate:deepslatepolishedwall_10 +mcl_trees:stripped_dark_oak +lrfurn:sofa +mcl_deepslate:deepslatepolishedwall_8 +mcl_deepslate:deepslatepolishedwall_7 +mcl_deepslate:deepslatepolishedwall_6 +mcl_trees:wood_dark_oak +mcl_deepslate:deepslatepolishedwall_5 +mcl_deepslate:deepslatepolishedwall_3 +mcl_deepslate:deepslatepolishedwall_0 +mcl_stairs:slab_deepslate_polished_double +mcl_trees:bark_stripped_dark_oak +mcl_trees:bark_dark_oak +mcl_stairs:stair_deepslate_polished +mcl_deepslate:deepslate_polished +mcl_deepslate:deepslatecobbledwall +mcl_deepslate:deepslatecobbledwall_15 +mcl_deepslate:deepslatecobbledwall_2 +mcl_stairs:slab_jungle_top +homedecor:hanging_lantern_4 +mesecons:wire_10110010_off +homedecor:ceiling_lantern_4 +mcl_farming:wheat_1 +homedecor:lattice_lantern_large_4 +mcl_monster_eggs:monster_egg_stone +homedecor:lattice_lantern_small_4 +mcl_doors:door_bamboo_t_1 +homedecor:desk_lamp_4 +mcl_trees:leaves_dark_oak +mcl_trees:leaves_dark_oak_orphan +homedecor:ceiling_lamp_4 +mcl_stairs:stair_jungle +mcl_trees:sapling_jungle +homedecor:table_lamp_4 +homedecor:book_red +mcl_fences:dark_oak_fence +mcl_sus_nodes:gravel_3 +mcl_fences:dark_oak_fence_gate +mcl_fences:dark_oak_fence_gate_open +mcl_walls:diorite_9 +homedecor:glowlight_quarter_5 +mcl_flowerpots:flower_pot_poppy +homedecor:glowlight_small_cube_5 +homedecor:fence_chainlink_corner +mcl_flowers:rose_bush +homedecor:plasma_lamp_5 +homedecor:book_open_green +mcl_lush_caves:spore_blossom +homedecor:ground_lantern_5 +mcl_lush_caves:moss_carpet +mesecons_delayer:delayer_off_2 +homedecor:hanging_lantern_5 +homedecor:book_blue +mcl_stairs:slab_stone_rough +mcl_lush_caves:hanging_roots +mcl_doors:door_dark_oak_b_1 +mcl_lush_caves:rooted_dirt +mcl_stairs:stair_quartzblock_outer +mcl_stairs:stair_quartzblock_inner +mcl_doors:door_jungle_t_1 +mcl_doors:door_dark_oak_t_1 +homedecor:book_violet +mcl_colorblocks:glazed_terracotta_grey +mcl_doors:door_dark_oak_b_2 +mcl_stairs:slab_quartzblock +mcl_stairs:slab_quartzblock_top +mcl_doors:door_dark_oak_t_2 +homedecor:fence_brass +mcl_doors:trapdoor_dark_oak +mcl_stairs:stair_andesite_smooth_inner +homedecor:table_lamp_5 +homedecor:fence_wrought_iron +mcl_colorblocks:glazed_terracotta_lime +homedecor:standing_lamp_5 +mcl_colorblocks:glazed_terracotta_red +mcl_stairs:stair_redsandstone +mcl_walls:prismarine_5 +mcl_stairs:stair_quartz_smooth +mcl_lush_caves:cave_vines_lit +mcl_lush_caves:cave_vines +mcl_doors:trapdoor_dark_oak_open +mcl_core:lapisblock +mcl_walls:prismarine_4 +mcl_copper:block_exposed_cut +mcl_copper:block_cut +mcl_stairs:stair_dark_oak +mcl_stairs:slab_quartz_smooth +mcl_stairs:stair_dark_oak_outer +mcl_stairs:stair_dark_oak_inner +mcl_lush_caves:azalea +mcl_colorblocks:concrete_pink +mcl_farming:pumpkintige_linked_r +mcl_farming:pumpkintige_linked_l +mcl_farming:pumpkintige_linked_t +mcl_farming:pumpkintige_linked_b +mcl_stairs:stair_dark_oak_bark +mcl_core:diamondblock +mcl_stairs:stair_dark_oak_bark_outer +mcl_stairs:stair_dark_oak_bark_inner +mcl_stairs:stair_nether_brick +mcl_copper:block_weathered +mcl_stairs:stair_nether_brick_outer +mcl_stairs:stair_nether_brick_inner +mcl_fences:jungle_fence_gate +mcl_campfires:soul_campfire +mcl_fences:jungle_fence +mcl_maps:filled_map_mcl_skins_base_1EEB592FF_female_surv +mcl_stairs:slab_sandstonesmooth_top +mcl_stairs:slab_nether_brick +mcl_stairs:slab_nether_brick_top +mcl_colorblocks:hardened_clay_magenta +mcl_maps:filled_map_mcl_skins_base_1B47A57FF_female_crea +mcl_maps:filled_map_mcl_skins_base_1EEB592FF_male_crea +mcl_colorblocks:concrete_powder_magenta +mcl_maps:filled_map_mcl_skins_base_1EEB592FF_female_crea +mcl_colorblocks:concrete_magenta +mcl_core:coalblock +homedecor:light_switch_on +mcl_stairs:stair_sandstonesmooth_inner +homedecor:speaker_open +mcl_stairs:stair_sandstonesmooth +mcl_stairs:stair_red_nether_brick +mcl_chests:chest +mcl_stairs:stair_red_nether_brick_outer +mcl_stairs:stair_red_nether_brick_inner +homedecor:bed_kingsize +homedecor:nightstand_oak_one_drawer +homedecor:speaker +homedecor:nightstand_mahogany_one_drawer +homedecor:nightstand_mahogany_two_drawers +mcl_stairs:slab_red_nether_brick +mcl_stairs:slab_red_nether_brick_top +mcl_stairs:slab_red_nether_brick_double +mcl_mushrooms:red_mushroom_block_cap_101100 +homedecor:doorbell +mcl_colorblocks:hardened_clay_blue +mesecons:wire_11000000_on +mcl_stairs:slab_stonebrick_top +mcl_colorblocks:concrete_powder_blue +mcl_stairs:slab_stonebrick +mcl_colorblocks:concrete_blue +mcl_walls:stonebrickmossy_5 +homedecor:cobweb_corner +mcl_cauldrons:cauldron_2 +mcl_fences:nether_brick_fence +homedecor:cobweb_centered +mcl_stairs:stair_stonebrick_inner +homedecor:cobweb_flat +mcl_stairs:stair_stonebrick +mcl_mushrooms:brown_mushroom_block_cap_111111 +homedecor:cobweb_plantlike +mesecons_commandblock:commandblock_on +mcl_stairs:slab_sandstone_double +mcl_stairs:slab_warped +mcl_mangrove:mangrove_mud_roots +homedecor:nightstand_oak_one_drawer_locked +mcl_core:crying_obsidian +mcl_core:obsidian +mcl_stairs:slab_redsandstonesmooth_top +mcl_core:void +mcl_core:realm_barrier +mesecons:wire_00000000_on +mesecons_pressureplates:pressure_plate_birch_off +mcl_walls:rednetherbrick_1 +mcl_stairs:stair_redsandstonesmooth_outer +homedecor:dvd_vcr +mcl_panes:pane_white +homedecor:nightstand_oak_two_drawers_locked +mcl_stairs:slab_warped_bark +mcl_stairs:slab_warped_bark_top +mcl_stairs:slab_warped_bark_double +mcl_walls:endbricks_10 +mcl_walls:endbricks_14 +mcl_stairs:slab_oak +mcl_walls:mudbrick_21 +mcl_walls:mudbrick_14 +mcl_walls:mudbrick_6 +mcl_observers:observer_off +signs_road:red_left_sign +mcl_lush_caves:azalea_leaves +mesecons_button:button_oak_on +mcl_signs:wall_sign_warped +mcl_walls:endbricks_8 +mcl_lush_caves:azalea_leaves_flowering +mcl_stairs:slab_redsandstone_double +mcl_stairs:slab_redsandstone +mcl_trees:tree_oak +homedecor:projection_screen +mcl_walls:prismarine_21 +mcl_stairs:stair_mossycobble +mcl_stairs:stair_redsandstone_inner +mesecons_pressureplates:pressure_plate_warped_off +mcl_core:snow_5 +mesecons_pressureplates:pressure_plate_warped_on +mcl_core:snow_2 +homedecor:speaker_small +mcl_walls:stonebrickmossy_1 +mesecons_button:button_warped_off +homedecor:stereo +mcl_flowerpots:flower_pot_azalea +homedecor:book_open_grey +mesecons_button:button_warped_on +mcl_mushrooms:red_mushroom_block_cap_011001 +mesecons_solarpanel:solar_panel_inverted_on +mcl_core:snow_8 +mcl_flowerpots:flower_pot_azalea_flowering +mcl_core:snow_6 +mcl_core:frosted_ice_0 +mcl_core:glass_brown +mcl_stairs:stair_cobble +mcl_mushrooms:red_mushroom_block_cap_011011 +mcl_mushrooms:red_mushroom_block_cap_110011 +mesecons_solarpanel:solar_panel_off +mcl_walls:sandstone_8 +mcl_flowerpots:flower_pot_mushroom_brown +mesecons:wire_00110011_off +mesecons_pistons:piston_down_sticky_on +mcl_walls:sandstone_0 +mcl_walls:brick_14 +mcl_walls:brick_13 +mcl_stairs:slab_acacia_bark +mcl_stairs:slab_acacia_bark_top +mcl_stairs:slab_acacia_bark_double +mcl_stairs:slab_diorite +mesecons:wire_01110101_on +mcl_core:stone_with_lapis +mcl_sculk:vein +mcl_stairs:stair_diorite_inner +mcl_stairs:stair_diorite_outer +mcl_core:ice +mesecons:wire_01110101_off +mcl_honey:honeycomb_block +mcl_stairs:stair_spruce_bark_outer +mcl_nether:chiseled_nether_brick +mcl_signs:wall_sign_acacia +mcl_walls:brick_0 +mcl_stairs:slab_oak_bark_top +mesecons:wire_10110010_on +signs:label_small +mcl_flowers:tulip_pink +mcl_honey:honey_block +mcl_grindstone:grindstone +mcl_stairs:stair_acacia_bark +mcl_doors:trapdoor_acacia_open +mcl_doors:iron_trapdoor_open +mesecons_pressureplates:pressure_plate_acacia_off +mcl_walls:granite_21 +mesecons_pressureplates:pressure_plate_acacia_on +mesecons:wire_11110011_on +mesecons:wire_11110101_off +mcl_wool:brown_carpet +mesecons_pistons:piston_sticky_off +mesecons_pistons:piston_normal_off +mesecons_pistons:piston_up_sticky_off +mesecons_pistons:piston_up_normal_off +mesecons_pistons:piston_down_sticky_off +mesecons_pistons:piston_down_normal_off +mcl_walls:granite_13 +mcl_walls:netherbrick_2 +mcl_ocean:prismarine +mcl_flowerpots:flower_pot_sapling_acacia +mcl_copper:block_oxidized_cut +mcl_core:stonebrickmossy +mcl_ocean:prismarine_brick +mcl_copper:block_exposed +mcl_stairs:stair_deepslate_cobbled_inner +mcl_ocean:prismarine_dark +mcl_maps:filled_map_mcl_skins_character_1_female_crea +mcl_mushrooms:red_mushroom_block_stem +mcl_mushrooms:brown_mushroom_block_cap_100110 +mcl_mushrooms:red_mushroom_block_cap_110010 +mcl_lanterns:lantern_floor +mcl_trees:tree_dark_oak +mcl_walls:andesite_21 +mcl_walls:sandstone_21 +mcl_mushrooms:red_mushroom_block_cap_000011 +mesecons_button:button_stone_off +mcl_colorblocks:hardened_clay_green +mesecons_lightstone:lightstone_off +mcl_core:bedrock +mcl_stairs:slab_mangrove +mcl_stairs:slab_mangrove_top +mcl_stairs:slab_mangrove_double +mcl_fences:red_nether_brick_fence_gate_open +mesecons_lightstone:lightstone_on +mcl_colorblocks:concrete_powder_light_blue +mcl_stairs:slab_nether_brick_double +mcl_stairs:slab_quartz_smooth_top +mcl_nether:glowstone +mesecons:wire_10110011_on +mcl_stairs:stair_quartz_smooth_outer +mcl_mushrooms:red_mushroom_block_cap_010111 +mcl_stairs:stair_quartzblock +mcl_trees:stripped_birch +mcl_nether:quartz_ore +mcl_stairs:slab_mangrove_bark +mcl_stairs:slab_mangrove_bark_top +mcl_stairs:slab_mangrove_bark_double +mcl_stairs:stair_prismarine_inner +mcl_ocean:sea_pickle_4_dead_brain_coral_block +mcl_wool:blue_carpet +mcl_ocean:sea_pickle_2_off_dead_brain_coral_block +mcl_mushrooms:red_mushroom_block_cap_111011 +mcl_trees:bark_stripped_birch +mcl_trees:bark_birch +mcl_stairs:slab_prismarine_top +mcl_stairs:slab_prismarine_double +mcl_ocean:sea_pickle_1_off_dead_brain_coral_block +mcl_mushrooms:red_mushroom_block_cap_110110 +mcl_signs:wall_sign_mangrove +mcl_ocean:kelp_sand +mcl_stairs:stair_purpur_block +mcl_ocean:dead_horn_coral_block +mcl_stairs:stair_purpur_block_outer +mcl_stairs:stair_purpur_block_inner +mcl_flowerpots:flower_pot +mcl_stairs:slab_mud_brick +mcl_stairs:stair_prismarine_brick +mcl_meshhand:mcl_skins_base_18D471DFF_male_surv +mcl_stairs:stair_prismarine_brick_outer +mcl_stairs:stair_prismarine_brick_inner +mcl_stairs:slab_purpur_block_top +mcl_stairs:slab_purpur_block_double +mesecons_pressureplates:pressure_plate_mangrove_off +mcl_mushrooms:brown_mushroom_block_stem_full +mesecons_pressureplates:pressure_plate_mangrove_on +mcl_stairs:slab_prismarine_brick +mcl_stairs:slab_prismarine_brick_top +mcl_stairs:slab_prismarine_brick_double +mesecons_button:button_mangrove_off +mcl_stairs:stair_birch_bark_inner +mcl_walls:endbricks_11 +mcl_mushrooms:brown_mushroom_block_cap_000011 +mcl_chests:violet_shulker_box_small +mcl_wool:pink +mesecons:wire_01100000_off +mcl_fences:birch_fence +mesecons_button:button_stone_on +mcl_fences:birch_fence_gate +mcl_stairs:stair_prismarine_dark +mesecons:wire_10010000_on +mesecons_button:button_mangrove_on +mcl_stairs:stair_prismarine_dark_inner +mcl_trees:leaves_oak_orphan +mcl_trees:leaves_jungle +mcl_chests:magenta_shulker_box_small +mcl_signs:standing_sign_oak +mcl_mushrooms:brown_mushroom_block_cap_111101 +mcl_stairs:slab_prismarine_dark_top +mcl_stairs:slab_prismarine_dark_double +mcl_signs:standing_sign_jungle +mcl_colorblocks:concrete_powder_yellow +mcl_signs:standing_sign_birch +mcl_trees:leaves_jungle_orphan +mesecons_button:button_polished_blackstone_off +mcl_stairs:slab_spruce_double +mcl_doors:door_birch_b_1 +mesecons:wire_11010000_on +mesecons_button:button_polished_blackstone_on +mcl_beehives:beehive +mcl_signs:standing_sign_crimson +mcl_doors:door_birch_t_1 +mcl_signs:standing_sign_warped +mcl_stonecutter:stonecutter +mcl_signs:standing_sign_cherry_blossom +mcl_target:target_off +mcl_mangrove:propagule_dirt +mcl_doors:door_birch_t_2 +mcl_walls:brick_11 +mcl_mangrove:propagule_coarse_dirt +mcl_stairs:stair_jungle_outer +mesecons:wire_11011101_off +mcl_farming:hay_block +mcl_beds:bed_grey_bottom +mcl_stairs:stair_sandstone_inner +mcl_lush_caves:azalea_flowering +mcl_panes:pane_cyan_flat +mcl_trees:leaves_birch +mcl_wool:white_carpet +mcl_mushrooms:brown_mushroom_block_cap_001110 +mcl_panes:pane_red_flat +mcl_doors:trapdoor_birch_open +mcl_mushrooms:brown_mushroom_block_cap_101111 +mcl_beacons:beacon_beam +mcl_blackstone:soul_soil +mcl_core:stone_with_redstone +mcl_flowerpots:flower_pot_propagule +signs_road:blue_street_sign +mcl_stairs:stair_birch_outer +mcl_stairs:stair_birch_inner +mcl_colorblocks:concrete_powder_pink +mesecons:wire_10010001_off +mcl_heads:steve +mesecons:wire_01110011_on +mcl_mangrove:propagule_clay +mcl_stairs:slab_mud_brick_double +mcl_stairs:stair_birch_bark +mcl_heads:steve_ceiling +mcl_stairs:stair_birch_bark_outer +mcl_panes:pane_natural_flat +mcl_walls:sandstone_15 +mcl_beehives:beehive_5 +mcl_beehives:bee_nest_5 +mesecons:wire_11110000_on +mcl_mud:mud +mcl_trees:leaves_acacia_orphan +mcl_stairs:stair_birch +mcl_stairs:slab_birch +mcl_stairs:slab_birch_top +mcl_stairs:slab_birch_double +mcl_colorblocks:concrete_cyan +mcl_colorblocks:glazed_terracotta_cyan +mcl_stairs:slab_spruce_top +mcl_colorblocks:hardened_clay_cyan +mcl_colorblocks:glazed_terracotta_magenta +mcl_signs:wall_sign_spruce +mcl_panes:pane_natural +mesecons_pressureplates:pressure_plate_spruce_off +mcl_fences:acacia_fence_gate_open +mcl_colorblocks:glazed_terracotta_light_blue +mcl_mushrooms:mushroom_red +mcl_mushrooms:red_mushroom_block_cap_101110 +mcl_stairs:slab_birch_bark +mcl_stairs:slab_birch_bark_top +mcl_stairs:slab_birch_bark_double +mcl_panes:bar +mcl_stairs:stair_mud_brick_inner +mcl_panes:pane_yellow_flat +mcl_core:podzol +mcl_core:podzol_snow +mcl_core:mycelium +mcl_core:mycelium_snow +mcl_trees:stripped_oak +mcl_beehives:beehive_1 +mcl_doors:trapdoor_birch +mcl_beehives:beehive_2 +mcl_panes:bar_flat +mcl_beehives:beehive_3 +mesecons:wire_10011000_off +mcl_beehives:beehive_4 +mesecons_pressureplates:pressure_plate_jungle_off +mcl_signs:standing_sign_dark_oak +mesecons_pressureplates:pressure_plate_dark_oak_off +homedecor:rope_light_on_floor_on +mcl_panes:pane_yellow +mcl_panes:pane_red +mcl_stairs:stair_prismarine_dark_outer +mcl_panes:pane_lime_flat +mcl_fences:birch_fence_gate_open +mcl_colorblocks:concrete_powder_purple +homedecor:rope_light_on_ceiling_on +homedecor:rope_light_on_ceiling_off +mcl_flowers:cornflower +mcl_flowers:lily_of_the_valley +mcl_lush_caves:moss +mesecons_delayer:delayer_off_locked +mcl_core:dirt +mcl_flowers:wither_rose +mcl_wool:lime +mcl_stairs:slab_end_bricks_top +mcl_trees:wood_birch +mcl_stairs:stair_prismarine_outer +mcl_stairs:stair_prismarine +mcl_wool:orange +mcl_core:stone +mcl_stairs:slab_jungle_bark_double +mcl_chests:chest_left +mcl_chests:trapped_chest +mcl_colorblocks:hardened_clay_lime +mcl_colorblocks:hardened_clay_orange +mcl_chests:trapped_chest_on +mcl_chests:ender_chest_small +mcl_wool:silver +mcl_chests:dark_grey_shulker_box_small +mcl_chests:violet_shulker_box +mcl_chests:green_shulker_box_small +mcl_doors:door_mangrove_b_1 +mcl_ocean:tube_coral_block +mesecons_button:button_acacia_on +mcl_wool:black +mesecons_button:button_acacia_off +mcl_chests:brown_shulker_box_small +mcl_chests:cyan_shulker_box_small +mcl_chests:grey_shulker_box_small +mcl_mushrooms:brown_mushroom_block_cap_000000 +mcl_chests:blue_shulker_box_small +mcl_stairs:slab_purpur_block +mcl_stairs:slab_prismarine +mcl_panes:pane_light_blue +mcl_panes:pane_silver +mcl_target:target_on +mcl_ocean:dead_tube_coral_block +mcl_ocean:dead_tube_coral +mcl_ocean:tube_coral_fan +mcl_ocean:brain_coral_block +mcl_ocean:dead_brain_coral_block +mcl_ocean:brain_coral +mcl_ocean:brain_coral_fan +mcl_ocean:dead_brain_coral_fan +mcl_ocean:bubble_coral +mcl_ocean:dead_fire_coral_fan +mcl_mushrooms:brown_mushroom_block_cap_010111 +mcl_ocean:kelp_dirt +mcl_mushrooms:brown_mushroom_block_cap_011000 +mcl_ocean:kelp_gravel +mcl_mushrooms:brown_mushroom_block_cap_011001 +mcl_ocean:sea_pickle_2_dead_brain_coral_block +mcl_mushrooms:brown_mushroom_block_cap_011010 +mcl_ocean:sea_pickle_3_off_dead_brain_coral_block +mcl_mushrooms:brown_mushroom_block_cap_011011 +mcl_ocean:sea_pickle_4_off_dead_brain_coral_block +mcl_mushrooms:brown_mushroom_block_cap_011100 +mcl_nether:nether_brick +mcl_mushrooms:brown_mushroom_block_cap_011101 +mcl_stairs:slab_quartzblock_double +mcl_mushrooms:brown_mushroom_block_cap_011110 +mcl_stairs:stair_quartz_smooth_inner +mcl_mushrooms:brown_mushroom_block_cap_011111 +mcl_stairs:slab_quartz_smooth_double +mcl_mushrooms:brown_mushroom_block_cap_100000 +mcl_nether:nether_lava_flowing +mcl_mushrooms:brown_mushroom_block_cap_100001 +mcl_fences:red_nether_brick_fence_gate +mcl_mushrooms:brown_mushroom_block_cap_100010 +mcl_mushrooms:red_mushroom_block_cap_000100 +mcl_mushrooms:brown_mushroom_block_cap_100011 +mcl_mushrooms:red_mushroom_block_cap_000010 +mcl_mushrooms:brown_mushroom_block_cap_100100 +mcl_meshhand:character_male_crea +mcl_mushrooms:brown_mushroom_block_cap_100101 +mcl_flowers:double_grass +mcl_sus_nodes:sand +mcl_doors:iron_trapdoor +mcl_mushrooms:brown_mushroom_block_cap_100111 +mcl_copper:stone_with_copper +mcl_mushrooms:brown_mushroom_block_cap_101000 +mcl_copper:block_oxidized +mcl_mushrooms:brown_mushroom_block_cap_101001 +mcl_stairs:stair_copper_weathered_cut +mcl_mushrooms:brown_mushroom_block_cap_101010 +mcl_stairs:stair_copper_oxidized_cut_inner +mcl_mushrooms:brown_mushroom_block_cap_101011 +mcl_walls:sandstone_10 +mcl_mushrooms:brown_mushroom_block_cap_101100 +mesecons_torch:mesecon_torch_off +mcl_mushrooms:brown_mushroom_block_cap_101101 +mcl_core:stone_with_emerald +mcl_nether:nether_wart_0 +mcl_crafting_table:crafting_table +mesecons_delayer:delayer_on_4 +mcl_stairs:stair_blackstone +mcl_core:stone_with_diamond +homedecor:chandelier_steel +homedecor:chain_brass_top +mcl_core:stonebrick +mcl_stairs:stair_diorite +mcl_mushrooms:brown_mushroom_block_cap_000010 +mcl_core:glass_magenta +mcl_core:stonebrickcarved +homedecor:candle +mcl_furnaces:furnace +mcl_core:stonebrickcracked +homedecor:candlestick_brass +homedecor:oil_lamp +mcl_core:glass_blue +mcl_stairs:slab_diorite_top +mcl_stairs:slab_diorite_double +mcl_core:stone_smooth +mcl_flowerpots:flower_pot_mushroom_red +mcl_core:granite +mcl_walls:sandstone_6 +mcl_core:glass_green +mcl_walls:sandstone_7 +mcl_core:granite_smooth +mesecons_pistons:piston_down_normal_on +homedecor:kitchen_cabinet_colorable_with_sink +homedecor:dishwasher +mcl_core:andesite +mcl_colorblocks:hardened_clay +mcl_stairs:stair_cobble_outer +mcl_stairs:stair_cobble_inner +mcl_core:andesite_smooth +homedecor:dishwasher_marble +homedecor:dishwasher_granite +homedecor:kitchen_faucet +mcl_core:diorite +mcl_stairs:slab_cobble +mcl_stairs:slab_cobble_top +mcl_stairs:slab_cobble_double +mcl_core:diorite_smooth +homedecor:toilet_paper +mcl_stairs:stair_blackstone_brick_polished_inner +mcl_core:glass_red +mcl_sponges:sponge_wet_river_water +mcl_walls:prismarine_0 +mcl_core:dirt_with_grass_snow +homedecor:glowlight_half_14 +homedecor:glowlight_quarter_14 +homedecor:glowlight_small_cube_14 +mcl_core:glass_silver +homedecor:ground_lantern_14 +mcl_stairs:stair_mossycobble_outer +mcl_stairs:stair_mossycobble_inner +mcl_walls:endbricks_1 +homedecor:ceiling_lantern_14 +homedecor:lattice_lantern_large_14 +mcl_walls:endbricks_6 +mcl_core:glass_light_blue +mcl_stairs:slab_mossycobble +mcl_stairs:slab_mossycobble_top +mcl_stairs:slab_mossycobble_double +mcl_walls:netherbrick_3 +mcl_blackstone:wall_2 +homedecor:oven_active +mcl_blackstone:wall_3 +mcl_core:glass_orange +mcl_blackstone:wall_4 +mcl_walls:mudbrick_10 +mcl_blackstone:wall_5 +mcl_walls:mudbrick_13 +mcl_blackstone:wall_6 +mcl_stairs:stair_brick_block +mcl_core:glass_lime +mcl_stairs:stair_brick_block_outer +mcl_stairs:stair_brick_block_inner +mcl_core:sand +mcl_core:gravel +mcl_trees:leaves_mangrove_orphan +mcl_blackstone:wall_10 +mcl_walls:mudbrick_15 +mcl_core:glass_purple +mcl_stairs:slab_brick_block_top +mcl_stairs:slab_brick_block_double +homedecor:oven_active_locked +mcl_core:sandstone +mesecons:wire_11101000_off +mcl_blackstone:wall_14 +homedecor:oven_steel_active +mcl_blackstone:wall_15 +mcl_fences:oak_fence_gate_open +mcl_blackstone:wall_16 +mcl_mushrooms:brown_mushroom_block_cap_111100 +mcl_core:sandstonesmooth +mcl_stairs:stair_sandstone +mcl_core:glass_cyan +mcl_stairs:stair_sandstone_outer +mcl_core:sandstonecarved +mcl_signs:standing_sign_mangrove +mcl_blackstone:soul_torch_wall +mcl_walls:netherbrick_4 +mcl_core:sandstonesmooth2 +homedecor:oven_steel_locked +mcl_stairs:slab_sandstone +mcl_core:redsand +mcl_colorblocks:hardened_clay_yellow +mcl_deepslate:deepslate_cobbled +mcl_mushrooms:brown_mushroom_block_cap_000001 +mcl_ocean:sea_lantern +mcl_deepslate:deepslate_reinforced +mcl_colorblocks:concrete_yellow +mcl_portals:portal_gateway +mcl_deepslate:infested_deepslate +mcl_mushrooms:brown_mushroom_block_stem +mcl_fire:fire +mcl_core:redsandstonesmooth +mcl_stairs:stair_sandstonesmooth2 +mesecons:wire_01100000_on +mcl_stairs:stair_sandstonesmooth2_outer +mcl_core:redsandstonecarved +mcl_cauldrons:cauldron_2r +mcl_cauldrons:cauldron_3 +mcl_cauldrons:cauldron_3r +mcl_core:redsandstonesmooth2 +mesecons:wire_11000000_off +mcl_stairs:slab_sandstonesmooth2 +mcl_stairs:slab_sandstonesmooth2_top +mcl_stairs:slab_sandstonesmooth2_double +mcl_beds:bed_light_blue_bottom +mcl_walls:andesite_16 +mcl_colorblocks:hardened_clay_white +mcl_deepslate:deepslate_with_redstone_lit +mcl_deepslate:deepslate_with_redstone +mcl_colorblocks:concrete_powder_white +mcl_mushrooms:red_mushroom_block_cap_010110 +mcl_colorblocks:concrete_white +mcl_walls:granite_0 +mcl_lanterns:soul_lantern_floor +mcl_walls:granite_1 +mcl_walls:granite_2 +mcl_core:mossycobble +mcl_walls:granite_3 +mcl_wool:yellow +mcl_walls:granite_4 +mcl_smithing_table:table +mcl_walls:granite_5 +mcl_stairs:slab_sandstonesmooth +mcl_walls:granite_6 +mcl_stairs:slab_sandstonesmooth_double +mcl_walls:granite_7 +mcl_walls:granite_8 +mcl_fences:jungle_fence_gate_open +mcl_walls:granite_9 +mcl_colorblocks:hardened_clay_pink +mcl_walls:granite_10 +pipeworks:expansion_tank_1 +mcl_walls:granite_11 +mcl_walls:prismarine_16 +mcl_walls:granite_12 +mcl_beds:bed_magenta_bottom +mcl_mud:packed_mud +pipeworks:storage_tank_1 +mcl_walls:granite_14 +mcl_walls:sandstone_9 +mcl_walls:granite_15 +mcl_stairs:stair_stone_rough +mcl_walls:granite_16 +mcl_stairs:stair_stone_rough_outer +mcl_stairs:stair_stone_rough_inner +mcl_stairs:stair_andesite_smooth +mesecons:wire_01010101_off +mcl_mushrooms:brown_mushroom_block_cap_110100 +mesecons_torch:mesecon_torch_off_wall +mcl_walls:diorite_0 +mcl_stairs:slab_deepslate_cobbled +mcl_walls:diorite_1 +mcl_doors:door_jungle_b_2 +mcl_walls:diorite_2 +mcl_maps:filled_map_mcl_skins_base_1EEB592FF_male_surv +mcl_walls:diorite_3 +homedecor:refrigerator_white_locked +mcl_walls:diorite_4 +mcl_flowers:tallgrass +mcl_walls:diorite_5 +homedecor:refrigerator_steel_locked +mcl_walls:diorite_6 +mcl_flowers:dandelion +mcl_walls:diorite_7 +mcl_core:deadbush +mcl_walls:diorite_8 +mcl_stairs:stair_mud_brick +mcl_deepslate:deepslate_with_coal +mcl_stairs:stair_mud_brick_outer +mcl_walls:diorite_10 +mcl_trees:sapling_acacia +mcl_walls:diorite_11 +mcl_trees:sapling_cherry_blossom +mcl_walls:diorite_12 +mcl_deepslate:deepslate_with_iron +mcl_walls:diorite_13 +mcl_stairs:slab_mud_brick_top +mcl_walls:diorite_14 +mcl_trees:tree_spruce +mcl_walls:diorite_15 +mcl_stairs:slab_goldblock +mcl_deepslate:deepslate_with_gold +mcl_stairs:slab_goldblock_double +mcl_walls:diorite_21 +mcl_stairs:stair_jungle_bark +mcl_monster_eggs:monster_egg_stonebrickmossy +mcl_stairs:stair_jungle_bark_outer +mesecons:wire_11101010_on +mcl_deepslate:deepslate_with_emerald +mcl_core:dirt_with_grass +mcl_walls:brick_1 +mcl_stairs:stair_deepslate_cobbled_outer +mcl_walls:brick_2 +mcl_deepslate:deepslate_with_copper +mcl_walls:brick_3 +mcl_deepslate:deepslate_with_diamond +mcl_walls:brick_4 +mcl_stairs:slab_jungle_double diff --git a/mods/xcompat/test/nodelist/minetest.txt b/mods/xcompat/test/nodelist/minetest.txt new file mode 100644 index 00000000..472668a0 --- /dev/null +++ b/mods/xcompat/test/nodelist/minetest.txt @@ -0,0 +1,1494 @@ +pipeworks:steel_block_embedded_tube +steel:roofing +homedecor:ceiling_lantern_0 +steel:roofing_wall +homedecor:lattice_lantern_large_0 +pipeworks:steel_pane_embedded_tube +steel:strut +homedecor:lattice_lantern_small_0 +steel:strut_mount +homedecor:desk_lamp_0 +homedecor:dryer +steel:steel_block +homedecor:ceiling_lamp_0 +homedecor:ironing_board +beds:bed_bottom +homedecor:table_lamp_0 +basic_materials:cement_block +homedecor:standing_lamp_0 +beds:fancy_bed_top +basic_materials:concrete_block +steel:shingle_side_roofing +basic_materials:chain_steel +steel:shingle_outer_corner_roofing +steel:shingle_inner_corner_roofing +homedecor:inbox +basic_materials:brass_block +homedecor:glowlight_small_cube_1 +homedecor:plasma_lamp_1 +homedecor:ground_lantern_1 +homedecor:hanging_lantern_1 +homedecor:ceiling_lantern_1 +homedecor:lattice_lantern_large_1 +homedecor:lattice_lantern_small_1 +homedecor:filing_cabinet_locked +homedecor:filing_cabinet +homedecor:ceiling_lamp_1 +doors:homedecor_wood_plain_d +homedecor:desk_locked +homedecor:standing_lamp_1 +homedecor:glowlight_half_2 +homedecor:glowlight_quarter_2 +stairs:stair_stonebrick +homedecor:calendar +doors:homedecor_exterior_fancy_a +stairs:stair_inner_stonebrick +doors:homedecor_exterior_fancy_b +homedecor:hanging_lantern_2 +stairs:stair_outer_stonebrick +homedecor:ceiling_lantern_2 +stairs:slab_stonebrick +homedecor:lattice_lantern_small_2 +stairs:stair_stone_block +homedecor:desk_lamp_2 +default:bush_stem +homedecor:ceiling_lamp_2 +stairs:stair_inner_stone_block +default:bush_leaves +homedecor:table_lamp_2 +stairs:stair_outer_stone_block +homedecor:standing_lamp_2 +tnt:tnt_burning +stairs:slab_stone_block +default:blueberry_bush_leaves +homedecor:glowlight_quarter_3 +homedecor:glowlight_small_cube_3 +default:acacia_bush_stem +homedecor:plasma_lamp_3 +stairs:stair_inner_desert_stone +homedecor:ground_lantern_3 +default:pine_bush_stem +stairs:stair_outer_desert_stone +default:pine_bush_needles +homedecor:ceiling_lantern_3 +stairs:slab_desert_stone +default:sand_with_kelp +stairs:stair_desert_cobble +homedecor:lattice_lantern_small_3 +boards:black_board +boards:green_board +stairs:stair_inner_desert_cobble +homedecor:ceiling_lamp_3 +homedecor:table_lamp_3 +default:coral_skeleton +homedecor:standing_lamp_3 +homedecor:fishtank_lighted +homedecor:glowlight_half_4 +stairs:stair_desert_stonebrick +homedecor:glowlight_quarter_4 +default:coral_cyan +pipeworks:pump_off +stairs:stair_inner_desert_stonebrick +building_blocks:Tar +stairs:slab_ice +default:coral_orange +homedecor:wall_sconce +stairs:stair_snowblock +homedecor:ceiling_lantern_4 +stairs:stair_inner_snowblock +stairs:stair_desert_stone_block +building_blocks:fakegrass +default:water_flowing +building_blocks:hardwood +stairs:stair_outer_snowblock +homedecor:desk_lamp_4 +default:river_water_source +stairs:slab_snowblock +default:river_water_flowing +stairs:stair_outer_desert_stone_block +stairs:stair_glass +homedecor:standing_lamp_4 +homedecor:piano +stairs:slab_glass +homedecor:glowlight_half_5 +stairs:stair_sandstone +homedecor:glowlight_quarter_5 +stairs:stair_inner_glass +pipeworks:filter +pipeworks:mese_filter +stairs:stair_inner_sandstone +stairs:stair_outer_glass +homedecor:ground_lantern_5 +stairs:stair_obsidian_glass +building_blocks:grate +stairs:slab_sandstone +stairs:slab_obsidian_glass +homedecor:lattice_lantern_large_5 +stairs:stair_sandstonebrick +stairs:stair_inner_obsidian_glass +homedecor:lattice_lantern_small_5 +default:bookshelf +stairs:stair_inner_sandstonebrick +fireflies:firefly_bottle +pipeworks:priority_tube_1 +stairs:stair_outer_sandstonebrick +building_blocks:brobble_spread +stairs:slab_sandstonebrick +pipeworks:priority_tube_4 +pipeworks:priority_tube_5 +building_blocks:Tarmac_spread +default:ladder_wood +building_blocks:terrycloth_towel +default:ladder_steel +building_blocks:BWtile +default:fence_wood +pipeworks:priority_tube_9 +stairs:slab_sandstone_block +default:fence_acacia_wood +pipeworks:priority_tube_10 +stairs:stair_desert_sandstone +default:fence_junglewood +default:permafrost_with_moss +default:fence_pine_wood +stairs:stair_inner_desert_sandstone +default:sand +default:fence_aspen_wood +default:desert_sand +default:fence_rail_wood +default:silver_sand +stairs:slab_desert_sandstone +default:gravel +default:fence_rail_acacia_wood +stairs:stair_desert_sandstone_brick +vessels:shelf +default:clay +default:fence_rail_junglewood +pipeworks:mese_tube_010100 +stairs:stair_inner_desert_sandstone_brick +vessels:drinking_glass +default:snowblock +pipeworks:mese_tube_010101 +default:ice +vessels:steel_bottle +flowers:rose +default:cave_ice +stairs:slab_desert_sandstone_brick +pipeworks:tag_tube_100101 +flowers:geranium +stairs:stair_desert_sandstone_block +default:obsidian_glass +flowers:dandelion_white +farming:cotton_5 +default:brick +stairs:stair_inner_desert_sandstone_block +farming:cotton_6 +default:meselamp +carts:powerrail +stairs:stair_outer_desert_sandstone_block +pipeworks:tag_tube_101010 +default:mese_post_light +pipeworks:tube_4 +default:mese_post_light_acacia_wood +default:mese_post_light_junglewood +pipeworks:tag_tube_101100 +default:mese_post_light_pine_wood +pipeworks:mese_tube_011011 +default:mese_post_light_aspen_wood +default:cloud +default:junglewood +stairs:stair_inner_silver_sandstone +pipeworks:tag_tube_101111 +stairs:stair_outer_silver_sandstone +homedecor:table_lamp_8 +stairs:slab_silver_sandstone +pipeworks:tube_8 +homedecor:standing_lamp_8 +default:pine_wood +pipeworks:tag_tube_110011 +homedecor:glowlight_half_9 +homedecor:glowlight_quarter_9 +pipeworks:mese_tube_100000 +default:acacia_tree +pipeworks:tag_tube_110101 +flowers:mushroom_red +default:acacia_wood +homedecor:plasma_lamp_9 +flowers:mushroom_brown +default:acacia_leaves +homedecor:ground_lantern_9 +pipeworks:mese_tube_100010 +pipeworks:tag_tube_111000 +homedecor:hanging_lantern_9 +default:aspen_tree +homedecor:ceiling_lantern_9 +pipeworks:tag_tube_111010 +homedecor:lattice_lantern_large_9 +pipeworks:tag_tube_111011 +homedecor:lattice_lantern_small_9 +pipeworks:pipe_compatibility_empty +pipeworks:tag_tube_111100 +pipeworks:pipe_compatibility_loaded +default:stone_with_coal +flowers:waterlily +default:coalblock +flowers:waterlily_waving +default:stone_with_iron +pipeworks:entry_panel_empty +default:steelblock +pipeworks:straight_pipe_empty +default:stone_with_copper +pipeworks:valve_on_loaded +pipeworks:entry_panel_loaded +default:copperblock +pipeworks:flow_sensor_loaded +default:stone_with_tin +default:tinblock +flowers:chrysanthemum_green +flowers:tulip_black +default:bronzeblock +default:stone_with_mese +default:mese +default:stone_with_gold +default:goldblock +default:stone_with_diamond +default:diamondblock +default:large_cactus_seedling +default:dry_shrub +default:junglegrass +default:grass_1 +default:dry_grass_1 +default:fern_1 +default:marram_grass_1 +homedecor:curtainrod_wood +pipeworks:broken_tube_2 +homedecor:spiral_staircase +pipeworks:broken_tube_3 +pipeworks:broken_tube_4 +pipeworks:broken_tube_5 +pipeworks:broken_tube_6 +homedecor:flower_pot_terracotta +homedecor:flower_pot_green +homedecor:coatrack_wallmount +homedecor:coat_tree +pipeworks:broken_tube_9 +pipeworks:broken_tube_10 +homedecor:welcome_mat_green +pipeworks:broken_tube_compatibility +homedecor:rug_small +homedecor:welcome_mat_brown +homedecor:rug_large +homedecor:rug_persian +homedecor:welcome_mat_grey +homedecor:japanese_wall_top +homedecor:japanese_wall_middle +homedecor:japanese_wall_bottom +homedecor:tatami_mat +homedecor:pool_table +homedecor:dartboard +homedecor:sportbench +homedecor:skateboard +homedecor:fence_picket_corner +homedecor:fence_picket +homedecor:banister_wood_horizontal +default:apple +homedecor:fence_picket_corner_white +homedecor:fence_picket_white +homedecor:fence_privacy_corner +homedecor:ceiling_paint +default:tree +homedecor:ceiling_tile +homedecor:fence_privacy +default:jungletree +default:jungleleaves +homedecor:fence_barbed_wire_corner +homedecor:fence_barbed_wire +default:pine_tree +default:pine_needles +homedecor:fence_chainlink_corner +homedecor:fence_chainlink +homedecor:fence_wrought_iron_2_corner +homedecor:analog_clock_wood +homedecor:grandfather_clock +homedecor:potted_rose +homedecor:analog_clock_plastic +homedecor:potted_tulip +homedecor:alarm_clock +default:sapling +default:junglesapling +default:pine_sapling +default:acacia_sapling +default:aspen_sapling +default:bush_sapling +default:blueberry_bush_sapling +default:acacia_bush_sapling +default:pine_bush_sapling +default:emergent_jungle_sapling +default:stonebrick +homedecor:banister_wood_diagonal_left +default:stone_block +homedecor:banister_wood_horizontal_red +homedecor:banister_wood_diagonal_left_red +default:desert_stone +default:desert_cobble +homedecor:banister_wood_horizontal_vermilion +default:desert_stonebrick +homedecor:banister_wood_horizontal_orange +homedecor:air_conditioner +homedecor:banister_wood_diagonal_left_orange +default:sandstone +homedecor:desk_fan +default:sandstonebrick +homedecor:ceiling_fan +default:sandstone_block +homedecor:space_heater +default:desert_sandstone +homedecor:radiator +default:desert_sandstone_brick +homedecor:oven_steel +stairs:stair_silver_sandstone_brick +default:desert_sandstone_block +homedecor:desk_lamp_5 +homedecor:kitchen_cabinet_colorable +default:silver_sandstone +homedecor:ceiling_lamp_5 +stairs:stair_inner_silver_sandstone_brick +default:silver_sandstone_brick +pipeworks:teleport_tube_7 +homedecor:table_lamp_5 +default:silver_sandstone_block +stairs:stair_outer_silver_sandstone_brick +homedecor:standing_lamp_5 +butterflies:butterfly_red +butterflies:butterfly_violet +default:obsidianbrick +homedecor:shower_head +homedecor:glowlight_half_6 +default:obsidian_block +homedecor:glowlight_quarter_6 +homedecor:glowlight_small_cube_6 +homedecor:plasma_lamp_6 +stairs:stair_inner_silver_sandstone_block +homedecor:ground_lantern_6 +default:dirt_with_grass_footsteps +homedecor:hanging_lantern_6 +butterflies:hidden_butterfly_white +homedecor:ceiling_lantern_6 +stairs:slab_silver_sandstone_block +homedecor:lattice_lantern_large_6 +butterflies:hidden_butterfly_red +stairs:stair_obsidian +homedecor:rope_light_on_ceiling_on +homedecor:rope_light_on_ceiling_off +default:dirt_with_coniferous_litter +homedecor:desk_lamp_6 +butterflies:hidden_butterfly_violet +stairs:stair_inner_obsidian +homedecor:ceiling_lamp_6 +homedecor:wall_lamp_on +lavalamp:lavalamp_off +homedecor:table_lamp_6 +homedecor:standing_lamp_6 +stairs:slab_obsidian +homedecor:glowlight_half_7 +stairs:stair_obsidianbrick +homedecor:glowlight_quarter_7 +homedecor:toaster_loaf +homedecor:glowlight_small_cube_7 +homedecor:toaster +stairs:stair_inner_obsidianbrick +homedecor:bottle_brown +homedecor:plasma_lamp_7 +homedecor:4_bottles_green +homedecor:4_bottles_multi +homedecor:ground_lantern_7 +homedecor:coffee_maker +homedecor:hanging_lantern_7 +homedecor:ceiling_lantern_7 +pipeworks:tube_2 +fire:basic_flame +homedecor:lattice_lantern_large_7 +fire:permanent_flame +homedecor:lattice_lantern_small_7 +homedecor:desk_lamp_7 +homedecor:ceiling_lamp_7 +homedecor:table_lamp_7 +homedecor:standing_lamp_7 +fireflies:hidden_firefly +homedecor:glowlight_half_8 +homedecor:glowlight_quarter_8 +doors:homedecor_french_mahogany_c +homedecor:glowlight_small_cube_8 +doors:homedecor_french_mahogany_d +homedecor:shingles_terracotta +homedecor:plasma_lamp_8 +xpanes:obsidian_pane +homedecor:ground_lantern_8 +pipeworks:mese_sand_tube_2 +homedecor:hanging_lantern_8 +pipeworks:mese_sand_tube_3 +homedecor:ceiling_lantern_8 +pipeworks:mese_sand_tube_4 +itemframes:pedestal +homedecor:lattice_lantern_large_8 +pipeworks:mese_sand_tube_5 +doors:homedecor_french_white_c +homedecor:lattice_lantern_small_8 +doors:homedecor_french_white_d +pipeworks:sand_tube_1 +homedecor:desk_lamp_8 +pipeworks:mese_sand_tube_7 +homedecor:gate_barbed_wire_open +homedecor:ceiling_lamp_8 +homedecor:gate_barbed_wire_closed +vessels:glass_bottle +homedecor:gate_chainlink_open +flowers:dandelion_yellow +homedecor:gate_chainlink_closed +homedecor:gate_picket_open +pipeworks:sand_tube_5 +homedecor:gate_picket_closed +homedecor:gate_picket_white_open +doors:homedecor_basic_panel_c +homedecor:gate_picket_white_closed +homedecor:chain_steel_top +homedecor:chandelier_steel +homedecor:chain_brass_top +homedecor:chandelier_brass +pipeworks:mese_tube_000100 +xpanes:trapdoor_steel_bar_open +pipeworks:sand_tube_9 +homedecor:candle +homedecor:candlestick_wrought_iron +homedecor:candle_thin +homedecor:candlestick_brass +homedecor:oil_lamp +homedecor:oil_lamp_tabletop +homedecor:door_japanese_closed +pipeworks:mese_tube_000110 +doors:homedecor_wood_plain_a +doors:homedecor_wrought_iron_a +doors:homedecor_wrought_iron_b +pipeworks:mese_tube_000111 +doors:homedecor_wrought_iron_c +doors:homedecor_wrought_iron_d +pipeworks:mese_tube_001000 +pipeworks:mese_tube_001001 +wool:cyan +bones:bones +homedecor:glowlight_half_14 +homedecor:glowlight_quarter_14 +homedecor:glowlight_small_cube_14 +homedecor:plasma_lamp_14 +homedecor:ground_lantern_14 +doors:homedecor_carolina_d +homedecor:hanging_lantern_14 +doors:homedecor_french_white_b +homedecor:ceiling_lantern_14 +homedecor:lattice_lantern_large_14 +homedecor:lattice_lantern_small_14 +homedecor:desk_lamp_14 +homedecor:ceiling_lamp_14 +homedecor:table_lamp_14 +homedecor:standing_lamp_14 +xpanes:trapdoor_steel_bar +homedecor:torch_wall +pipeworks:mese_tube_000001 +doors:homedecor_woodglass_a +pipeworks:mese_tube_001111 +doors:homedecor_woodglass_b +pipeworks:mese_tube_000010 +doors:homedecor_woodglass_c +doors:homedecor_basic_panel_a +doors:homedecor_woodglass_d +doors:homedecor_basic_panel_b +pipeworks:mese_tube_010001 +wool:pink +pipeworks:mese_tube_010010 +stairs:stair_sandstone_block +lavalamp:lavalamp +pipeworks:mese_tube_010011 +doors:homedecor_closet_mahogany_a +xpanes:pane +doors:homedecor_closet_mahogany_b +homedecor:glowlight_half_0 +doors:homedecor_closet_mahogany_d +homedecor:glowlight_quarter_0 +homedecor:glowlight_small_cube_0 +xpanes:obsidian_pane_flat +homedecor:plasma_lamp_0 +homedecor:ground_lantern_0 +doors:homedecor_closet_oak_a +doors:homedecor_closet_oak_b +doors:homedecor_closet_oak_c +doors:homedecor_closet_oak_d +doors:homedecor_wood_plain_b +doors:homedecor_wood_plain_c +doors:hidden +default:grass_4 +default:grass_5 +default:dry_grass_2 +default:dry_grass_3 +default:dry_grass_4 +default:dry_grass_5 +default:fern_2 +default:fern_3 +default:marram_grass_2 +default:marram_grass_3 +homedecor:bed_kingsize +homedecor:nightstand_oak_one_drawer +homedecor:nightstand_oak_two_drawers +homedecor:nightstand_mahogany_one_drawer +homedecor:nightstand_mahogany_two_drawers +ontime_clocks:green_digital +ontime_clocks:red_digital +ontime_clocks:white +ontime_clocks:frameless_black +ontime_clocks:frameless_gold +homedecor:nightstand_mahogany_two_drawers_locked +ontime_clocks:frameless_white +doors:trapdoor +homedecor:pole_brass +doors:trapdoor_steel +homedecor:window_quartered +homedecor:window_plain +homedecor:blinds_thin +homedecor:blinds_thick +homedecor:window_flowerbox +homedecor:nightstand_oak_one_drawer_locked +air +pipeworks:straight_pipe_loaded +homedecor:wall_shelf +pipeworks:pipe_1_loaded +walls:desertcobble +doors:gate_acacia_wood_closed +doors:gate_junglewood_closed +doors:gate_pine_wood_closed +doors:gate_aspen_wood_closed +pipeworks:pipe_3_empty +pipeworks:pipe_3_loaded +ignore +homedecor:wood_table_large_square_with_wrought_iron_legs +stairs:slab_steelblock +stairs:stair_pine_wood +stairs:stair_tinblock +doors:door_wood_b +doors:door_wood_c +farming:cotton_wild +stairs:stair_inner_tinblock +homedecor:wood_table_small_square_with_brass_legs +pipeworks:pipe_6_loaded +homedecor:stained_glass +farming:wheat_3 +homedecor:wood_table_small_square_with_wrought_iron_legs +pipeworks:pipe_7_empty +farming:wheat_4 +pipeworks:pipe_7_loaded +stairs:slab_tinblock +farming:wheat_5 +pipeworks:pipe_8_empty +stairs:stair_copperblock +pipeworks:pipe_8_loaded +farming:wheat_7 +homedecor:wood_table_small_round_with_brass_legs +stairs:stair_inner_copperblock +default:sign_wall_wood +homedecor:wood_table_small_round_with_wrought_iron_legs +stairs:stair_outer_copperblock +default:sign_wall_steel +homedecor:wood_table_small_round_with_wood_legs +default:dirt_with_snow +stairs:stair_bronzeblock +farming:cotton_1 +default:cobble +default:mossycobble +stairs:slab_cobble +stairs:slab_mossycobble +stairs:stair_cobble +stairs:stair_mossycobble +lrfurn:endtable +stairs:stair_inner_mossycobble +stairs:stair_outer_cobble +stairs:stair_outer_mossycobble +stairs:stair_outer_bronzeblock +walls:mossycobble +farming:dry_soil +farming:dry_soil_wet +stairs:slab_bronzeblock +technic:granite +stairs:stair_goldblock +lrfurn:coffeetable +stairs:stair_inner_goldblock +farming:desert_sand_soil_wet +stairs:stair_outer_goldblock +doors:door_steel_a +stairs:slab_goldblock +doors:door_steel_b +doors:door_steel_c +homedecor:book_grey +doors:door_steel_d +homedecor:book_open_grey +stairs:stair_inner_ice +steles:stone_stele +steles:sandstone_stele +farming:seed_wheat +steles:desert_stone_stele +homedecor:trash_can_green_open +doors:door_glass_b +homedecor:trash_can_green +homedecor:book_red +doors:door_glass_d +homedecor:book_open_red +homedecor:shingle_side_glass +homedecor:skylight +homedecor:shingle_outer_corner_terracotta +homedecor:shingle_inner_corner_terracotta +homedecor:book_open_green +homedecor:shingle_inner_corner_wood +homedecor:shingle_outer_corner_wood +homedecor:shingle_side_wood +doors:door_obsidian_glass_c +homedecor:book_blue +doors:trapdoor_open +homedecor:book_open_blue +homedecor:trash_can +homedecor:shingles_asphalt +stairs:slab_straw +homedecor:book_violet +homedecor:book_open_violet +homedecor:skylight_frosted +pipeworks:expansion_tank_1 +doors:gate_wood_open +homedecor:nightstand_oak_two_drawers_locked +homedecor:nightstand_mahogany_one_drawer_locked +homedecor:book_brown +doors:gate_acacia_wood_open +homedecor:bed_extended +homedecor:book_open_brown +homedecor:bed_regular +doors:gate_junglewood_open +beds:bed_top +beds:fancy_bed_bottom +homedecor:table_legs_wood +doors:gate_pine_wood_open +homedecor:wood_table_small_square +farming:cotton_8 +farming:cotton_7 +homedecor:armchair +pipeworks:storage_tank_2 +farming:cotton_4 +farming:cotton_3 +farming:cotton_2 +farming:seed_cotton +farming:wheat_8 +farming:wheat_6 +farming:wheat_2 +pipeworks:expansion_tank_3 +stairs:stair_outer_straw +farming:wheat_1 +stairs:stair_inner_straw +stairs:stair_straw +farming:straw +pipeworks:storage_tank_3 +farming:desert_sand_soil +farming:soil_wet +farming:soil +fake_fire:ice_fire +homedecor:openframe_bookshelf +pipeworks:crossing_tube_9 +pipeworks:expansion_tank_4 +homedecor:office_chair_basic +stairs:slab_desert_stonebrick +homedecor:kitchen_chair_wood +homedecor:bench_large_2 +fake_fire:fancy_fire +pipeworks:storage_tank_4 +homedecor:glass_table_small_square +homedecor:bench_large_1 +signs_road:black_left_sign +homedecor:wood_table_small_round +pipeworks:one_way_tube +fake_fire:embers +signs_road:black_right_sign +homedecor:deckchair_striped_blue +pipeworks:mese_sand_tube_1 +doors:door_wood_a +lrfurn:sofa +signs_road:white_left_sign +pipeworks:storage_tank_5 +homedecor:shingle_inner_corner_asphalt +homedecor:table +homedecor:table_mahogany +homedecor:table_white +wool:magenta +default:lava_source +default:obsidian +signs_road:blue_left_sign +pipeworks:tag_tube_000110 +signs_road:blue_right_sign +fake_fire:chimney_top_stone +pipeworks:tag_tube_000111 +fake_fire:chimney_top_sandstone +wool:red +signs_road:green_left_sign +wool:orange +signs_road:green_right_sign +pipeworks:tag_tube_001001 +homedecor:kitchen_cabinet_colorable_marble_locked +homedecor:kitchen_cabinet_colorable_marble +pipeworks:tag_tube_001010 +signs_road:yellow_left_sign +default:coral_pink +signs_road:yellow_right_sign +homedecor:table_legs_brass +homedecor:kitchen_cabinet_colored_marble_locked +pipeworks:tag_tube_001100 +wool:yellow +signs_road:red_left_sign +homedecor:kitchen_cabinet_colored_with_drawers_marble +signs_road:red_right_sign +homedecor:table_legs_wrought_iron +pipeworks:tag_tube_001110 +wool:green +wool:dark_green +homedecor:kitchen_cabinet_colorable_with_drawers_marble_locked +homedecor:kitchen_cabinet_colorable_with_drawers_marble +wool:blue +pipeworks:storage_tank_8 +wool:violet +wool:black +wool:dark_grey +homedecor:kitchen_cabinet_colored_with_drawers_marble_locked +wool:grey +wool:white +homedecor:glass_table_large_square +pipeworks:autocrafter +signs_road:yellow_sign +signs_road:red_sign +homedecor:gate_half_door_closed +signs_road:red_street_sign +signs_road:green_sign +signs_road:blue_street_sign +homedecor:glass_table_large_square_with_wrought_iron_legs +signs_road:white_sign +doors:homedecor_exterior_fancy_d +default:coral_brown +homedecor:glass_table_large_square_with_wood_legs +homedecor:kitchen_cabinet_colorable_steel_locked +homedecor:gate_half_door_white_closed +pipeworks:expansion_tank_9 +pipeworks:expansion_tank_10 +pipeworks:storage_tank_9 +homedecor:gate_half_door_white_open +pipeworks:storage_tank_10 +homedecor:kitchen_cabinet_colored_steel_locked +pipeworks:expansion_tank_8 +homedecor:glass_table_small_square_with_brass_legs +pipeworks:storage_tank_7 +homedecor:kitchen_cabinet_colored_with_drawers_steel +pipeworks:expansion_tank_7 +homedecor:glass_table_small_square_with_wrought_iron_legs +pipeworks:storage_tank_6 +pipeworks:expansion_tank_6 +pipeworks:expansion_tank_5 +homedecor:glass_table_small_square_with_wood_legs +homedecor:kitchen_cabinet_colorable_with_drawers_steel +pipeworks:expansion_tank_2 +pipeworks:storage_tank_1 +pipeworks:storage_tank_0 +pipeworks:expansion_tank_0 +pipeworks:flow_sensor_empty +homedecor:kitchen_cabinet_colored_with_drawers_steel_locked +pipeworks:spigot_pouring +homedecor:banister_wood_horizontal_blue +homedecor:glass_table_small_round_with_brass_legs +pipeworks:grating +pipeworks:valve_off_empty +pipeworks:valve_on_empty +homedecor:glass_table_small_round_with_wrought_iron_legs +butterflies:butterfly_white +pipeworks:pipe_10_loaded +homedecor:kitchen_cabinet_colorable_half_locked +homedecor:glass_table_small_round_with_wood_legs +pipeworks:pipe_10_empty +pipeworks:pipe_9_loaded +pipeworks:pipe_9_empty +homedecor:kitchen_cabinet_colored_half_locked +pipeworks:pipe_6_empty +pipeworks:pipe_5_loaded +pipeworks:pipe_5_empty +homedecor:fence_wrought_iron_2 +pipeworks:pipe_4_loaded +pipeworks:pipe_4_empty +pipeworks:pipe_2_loaded +pipeworks:pipe_2_empty +homedecor:fence_brass +homedecor:kitchen_cabinet_colorable_with_sink_locked +pipeworks:pipe_1_empty +pipeworks:mese_sand_tube_compatibility +homedecor:fence_wrought_iron +pipeworks:mese_sand_tube_10 +homedecor:kitchen_cabinet_colored_with_sink_locked +pipeworks:mese_sand_tube_9 +pipeworks:mese_sand_tube_8 +pipeworks:mese_sand_tube_6 +homedecor:cutlery_set +homedecor:deckchair +pipeworks:sand_tube_compatibility +pipeworks:sand_tube_10 +pipeworks:sand_tube_8 +pipeworks:sand_tube_7 +pipeworks:sand_tube_6 +pipeworks:sand_tube_4 +pipeworks:sand_tube_3 +pipeworks:sand_tube_2 +pipeworks:teleport_tube_compatibility +pipeworks:teleport_tube_10 +pipeworks:teleport_tube_9 +pipeworks:teleport_tube_8 +pipeworks:teleport_tube_6 +pipeworks:teleport_tube_5 +pipeworks:teleport_tube_4 +pipeworks:teleport_tube_3 +pipeworks:teleport_tube_2 +pipeworks:teleport_tube_1 +pipeworks:tag_tube_111111 +pipeworks:tag_tube_111110 +pipeworks:tag_tube_111101 +pipeworks:tag_tube_111001 +pipeworks:tag_tube_110111 +pipeworks:tag_tube_110110 +pipeworks:tag_tube_110100 +pipeworks:tag_tube_110010 +pipeworks:tag_tube_110001 +pipeworks:tag_tube_110000 +pipeworks:tag_tube_101110 +pipeworks:tag_tube_101101 +pipeworks:tag_tube_101011 +pipeworks:tag_tube_101001 +homedecor:pole_wrought_iron +pipeworks:tag_tube_101000 +pipeworks:tag_tube_100111 +pipeworks:tag_tube_100110 +homedecor:bars +pipeworks:tag_tube_100100 +homedecor:hanging_lantern_5 +stairs:slab_desert_cobble +steel:plate_hard +homedecor:speaker_open +homedecor:wood_table_large_square_with_brass_legs +pipeworks:tag_tube_011111 +pipeworks:tag_tube_011110 +homedecor:L_binding_bars +pipeworks:tag_tube_011101 +homedecor:chains +pipeworks:tag_tube_011100 +homedecor:speaker +pipeworks:tag_tube_011011 +pipeworks:tag_tube_011010 +pipeworks:tag_tube_011001 +pipeworks:tag_tube_011000 +pipeworks:tag_tube_010111 +homedecor:kitchen_cabinet_colored_with_drawers_granite_locked +pipeworks:tag_tube_010101 +pipeworks:tag_tube_010100 +pipeworks:tag_tube_010011 +pipeworks:tag_tube_000000 +pipeworks:tag_tube_010010 +homedecor:kitchen_cabinet_colorable_steel +pipeworks:tag_tube_000001 +stairs:stair_wood +pipeworks:tag_tube_010000 +pipeworks:tag_tube_000010 +homedecor:kitchen_cabinet_colorable_with_drawers_steel_locked +pipeworks:tag_tube_001101 +pipeworks:tag_tube_000011 +stairs:stair_inner_wood +pipeworks:tag_tube_001011 +pipeworks:nodebreaker_off +pipeworks:tag_tube_001000 +pipeworks:tag_tube_000101 +stairs:stair_outer_wood +pipeworks:tag_tube_000100 +pipeworks:mese_tube_111111 +homedecor:banister_wood_diagonal_left_azure +stairs:stair_silver_sandstone_block +stairs:stair_outer_silver_sandstone_block +pipeworks:mese_tube_111011 +stairs:stair_junglewood +pipeworks:mese_tube_111010 +pipeworks:mese_tube_111001 +homedecor:potted_bonsai +pipeworks:mese_tube_110111 +homedecor:dvd_vcr +stairs:stair_inner_junglewood +pipeworks:mese_tube_110110 +pipeworks:deployer_on +pipeworks:mese_tube_110101 +xpanes:door_steel_bar_c +stairs:stair_outer_junglewood +homedecor:wardrobe +pipeworks:mese_tube_110011 +default:apple_mark +stairs:slab_junglewood +pipeworks:mese_tube_110001 +doors:homedecor_french_mahogany_a +pipeworks:mese_tube_101111 +doors:homedecor_french_oak_b +pipeworks:mese_tube_101101 +homedecor:painting_1 +homedecor:door_japanese_open +homedecor:plasma_ball_on +stairs:stair_inner_pine_wood +pipeworks:mese_tube_101010 +pipeworks:mese_tube_101001 +pipeworks:mese_tube_101000 +homedecor:painting_6 +homedecor:rope_light_on_floor_on +homedecor:rope_light_on_floor_off +pipeworks:mese_tube_100110 +doors:door_obsidian_glass_a +default:grass_2 +pipeworks:mese_tube_100011 +pipeworks:mese_tube_100001 +stairs:stair_acacia_wood +homedecor:speaker_small +pipeworks:mese_tube_011111 +pipeworks:mese_tube_011110 +homedecor:stereo +pipeworks:mese_tube_011101 +stairs:stair_inner_acacia_wood +pipeworks:mese_tube_011100 +pipeworks:mese_tube_011010 +pipeworks:mese_tube_011001 +pipeworks:mese_tube_011000 +stairs:stair_outer_acacia_wood +pipeworks:mese_tube_010111 +homedecor:telephone +pipeworks:mese_tube_010110 +stairs:slab_acacia_wood +pipeworks:mese_tube_010000 +homedecor:potted_dandelion_yellow +pipeworks:mese_tube_001110 +stairs:stair_aspen_wood +pipeworks:mese_tube_001101 +pipeworks:mese_tube_001100 +pipeworks:dispenser_on +pipeworks:mese_tube_001011 +pipeworks:mese_tube_001010 +stairs:stair_inner_aspen_wood +pipeworks:mese_tube_000101 +pipeworks:mese_tube_000011 +pipeworks:mese_tube_000000 +homedecor:simple_bench +stairs:stair_outer_aspen_wood +pipeworks:crossing_tube_compatibility +homedecor:kitchen_chair_padded +homedecor:potted_geranium +stairs:slab_aspen_wood +homedecor:office_chair_upscale +homedecor:tv_stand +homedecor:swing_rope +homedecor:swing +stairs:stair_stone +pipeworks:crossing_tube_7 +homedecor:potted_viola +doors:homedecor_basic_panel_d +pipeworks:crossing_tube_5 +homedecor:desk +stairs:stair_inner_stone +pipeworks:crossing_tube_3 +homedecor:potted_cactus +default:fence_rail_aspen_wood +homedecor:glass_table_large_square_with_brass_legs +stairs:stair_outer_stone +pipeworks:accelerator_tube_10 +homedecor:light_switch_on +pipeworks:accelerator_tube_9 +doors:door_wood_d +pipeworks:accelerator_tube_7 +pipeworks:accelerator_tube_6 +default:snow +pipeworks:accelerator_tube_4 +signs:wooden_left_sign +homedecor:power_outlet +signs:wooden_right_sign +homedecor:dishwasher_granite +homedecor:kitchen_faucet +homedecor:taps +pipeworks:accelerator_tube_3 +homedecor:copper_pans +homedecor:paper_towel +homedecor:toilet_paper +pipeworks:accelerator_tube_2 +homedecor:doorbell +pipeworks:accelerator_tube_1 +homedecor:desk_lamp_9 +homedecor:cardboard_box_big +pipeworks:priority_tube_compatibility +homedecor:ceiling_lamp_9 +pipeworks:priority_tube_8 +homedecor:cobweb_corner +homedecor:dvd_cd_cabinet +homedecor:table_lamp_9 +pipeworks:priority_tube_7 +homedecor:cobweb_centered +homedecor:standing_lamp_9 +homedecor:cobweb_flat +pipeworks:priority_tube_6 +homedecor:trophy +homedecor:glowlight_half_10 +pipeworks:priority_tube_3 +homedecor:glowlight_quarter_10 +pipeworks:priority_tube_2 +homedecor:glowlight_small_cube_10 +pipeworks:broken_tube_8 +pipeworks:broken_tube_7 +pipeworks:broken_tube_1 +pipeworks:tube_compatibility +homedecor:plasma_lamp_10 +pipeworks:tube_10 +pipeworks:tube_9 +homedecor:ground_lantern_10 +pipeworks:tube_7 +pipeworks:tube_6 +homedecor:hanging_lantern_10 +homedecor:banister_wood_diagonal_left_grey +pipeworks:tube_5 +homedecor:ceiling_lantern_10 +pipeworks:tube_3 +pipeworks:tube_1 +homedecor:lattice_lantern_large_10 +pipeworks:dispenser_off +pipeworks:deployer_off +homedecor:lattice_lantern_small_10 +pipeworks:nodebreaker_on +pipeworks:trashcan +homedecor:desk_lamp_10 +pipeworks:digiline_filter +homedecor:bathroom_set +homedecor:ceiling_lamp_10 +homedecor:oven_locked +homedecor:bathtub_clawfoot_chrome_taps +lrfurn:longsofa +homedecor:table_lamp_10 +homedecor:shower_tray +default:desert_stone_block +homedecor:standing_lamp_10 +homedecor:oven_active_locked +homedecor:fishtank +stairs:stair_inner_sandstone_block +homedecor:glowlight_half_11 +homedecor:oven_steel_active +homedecor:glowlight_quarter_11 +homedecor:lattice_lantern_large_3 +homedecor:glowlight_small_cube_11 +homedecor:plasma_lamp_5 +homedecor:medicine_cabinet +homedecor:towel_rod +homedecor:banister_wood_horizontal_amber +homedecor:plasma_lamp_11 +homedecor:banister_wood_diagonal_left_amber +homedecor:bathroom_tiles_light +homedecor:ground_lantern_11 +homedecor:bathroom_tiles_medium +homedecor:banister_wood_horizontal_yellow +homedecor:hanging_lantern_11 +homedecor:banister_wood_diagonal_left_yellow +xpanes:pane_flat +homedecor:ceiling_lantern_11 +homedecor:digital_clock +doors:homedecor_carolina_a +homedecor:lattice_lantern_large_11 +homedecor:painting_2 +homedecor:banister_wood_diagonal_left_lime +homedecor:lattice_lantern_small_11 +default:chest +homedecor:microwave_oven_active +homedecor:desk_lamp_11 +homedecor:banister_wood_horizontal_chartreuse +homedecor:ceiling_lamp_4 +homedecor:ceiling_lamp_11 +homedecor:shrubbery_large_green +homedecor:picture_frame2 +homedecor:shingles_wood +homedecor:table_lamp_11 +homedecor:banister_wood_horizontal_harlequin +homedecor:well +homedecor:standing_lamp_11 +tnt:boom +stairs:stair_outer_desert_sandstone +homedecor:banister_wood_horizontal_green +homedecor:glowlight_half_12 +homedecor:banister_wood_diagonal_left_green +homedecor:glowlight_quarter_12 +stairs:slab_obsidianbrick +homedecor:glowlight_small_cube_12 +homedecor:lattice_wood +homedecor:banister_wood_horizontal_malachite +homedecor:book_green +homedecor:banister_wood_diagonal_left_malachite +homedecor:plasma_lamp_12 +homedecor:doghouse +homedecor:barbecue +homedecor:ground_lantern_12 +homedecor:banister_wood_horizontal_spring +homedecor:kitchen_cabinet_colored_with_sink +homedecor:hanging_lantern_12 +homedecor:kitchen_cabinet_colorable_with_sink +basic_materials:chain_brass +homedecor:ceiling_lantern_12 +homedecor:kitchen_cabinet_colorable_half +homedecor:banister_wood_horizontal_turquoise +homedecor:lattice_lantern_large_12 +homedecor:banister_wood_diagonal_left_turquoise +pipeworks:tag_tube_001111 +homedecor:lattice_lantern_small_12 +homedecor:kitchen_cabinet_colored_steel +homedecor:banister_wood_horizontal_cyan +homedecor:desk_lamp_12 +homedecor:banister_wood_diagonal_left_cyan +pipeworks:tag_tube_010001 +homedecor:ceiling_lamp_12 +homedecor:kitchen_cabinet_colored_marble +stairs:stair_obsidian_block +homedecor:banister_wood_horizontal_cerulean +homedecor:table_lamp_12 +homedecor:banister_wood_diagonal_left_cerulean +homedecor:microwave_oven_locked +homedecor:standing_lamp_12 +stairs:stair_inner_obsidian_block +homedecor:refrigerator_white +homedecor:banister_wood_horizontal_azure +homedecor:glowlight_half_13 +homedecor:refrigerator_steel +homedecor:glowlight_quarter_13 +pipeworks:tag_tube_010110 +homedecor:refrigerator_white_locked +default:chest_locked_open +homedecor:banister_wood_horizontal_sapphire +default:glass +homedecor:refrigerator_steel_locked +homedecor:plasma_lamp_13 +stairs:stair_brick +homedecor:oven +homedecor:ground_lantern_13 +homedecor:kitchen_cabinet_colored_granite +homedecor:banister_wood_diagonal_left_blue +homedecor:hanging_lantern_13 +stairs:stair_inner_brick +homedecor:kitchen_cabinet_colored_granite_locked +homedecor:ceiling_lantern_13 +homedecor:banister_wood_horizontal_indigo +homedecor:kitchen_cabinet_colorable_locked +homedecor:lattice_lantern_large_13 +homedecor:kitchen_cabinet_colorable_granite_locked +homedecor:kitchen_cabinet_colored_with_drawers_locked +homedecor:lattice_lantern_small_13 +homedecor:banister_wood_horizontal_violet +doors:gate_wood_closed +homedecor:desk_lamp_13 +homedecor:kitchen_cabinet_colorable_with_drawers +stairs:stair_steelblock +homedecor:ceiling_lamp_13 +homedecor:kitchen_cabinet_colorable_with_drawers_locked +homedecor:banister_wood_horizontal_mulberry +homedecor:wood_table_large_square_with_wood_legs +homedecor:table_lamp_13 +stairs:stair_inner_steelblock +homedecor:kitchen_cabinet_colored_locked +homedecor:standing_lamp_13 +homedecor:banister_wood_horizontal_magenta +homedecor:kitchen_cabinet_colorable_granite +homedecor:banister_wood_diagonal_left_magenta +homedecor:dishwasher_steel +homedecor:dishwasher_wood +homedecor:dishwasher_marble +homedecor:dishwasher +homedecor:banister_wood_horizontal_fuchsia +homedecor:microwave_oven_active_locked +homedecor:banister_wood_diagonal_left_fuchsia +homedecor:microwave_oven +homedecor:kitchen_cabinet_colored_with_drawers_granite +homedecor:oven_steel_active_locked +homedecor:banister_wood_horizontal_rose +homedecor:oven_steel_locked +homedecor:banister_wood_diagonal_left_rose +homedecor:oven_active +homedecor:kitchen_cabinet_colorable_with_drawers_granite_locked +homedecor:kitchen_cabinet_colorable_with_drawers_granite +homedecor:shingle_side_terracotta +homedecor:banister_wood_horizontal_crimson +stairs:stair_inner_cobble +homedecor:banister_wood_diagonal_left_crimson +pipeworks:accelerator_tube_5 +signs:wooden_long_sign +building_blocks:Fireplace +homedecor:kitchen_cabinet_colored +default:furnace_active +pipeworks:tag_tube_100000 +default:furnace +homedecor:plasma_ball_off +pipeworks:tag_tube_100001 +pipeworks:accelerator_tube_8 +stairs:stair_outer_desert_cobble +pipeworks:tag_tube_100010 +homedecor:kitchen_cabinet_colored_with_drawers +wool:brown +pipeworks:tag_tube_100011 +homedecor:medicine_cabinet_open +stairs:stair_outer_sandstone +pipeworks:accelerator_tube_compatibility +stairs:slab_stone +homedecor:shrubbery_green +stairs:slab_wood +homedecor:lattice_lantern_small_4 +homedecor:kitchen_cabinet_colored_half +signs_road:white_right_sign +homedecor:wall_lamp_off +homedecor:toilet_open +xpanes:door_steel_bar_d +xpanes:door_steel_bar_b +homedecor:toilet +signs_road:large_street_sign +signs_road:blue_sign +default:wood +default:torch_ceiling +default:torch_wall +doors:gate_aspen_wood_open +stairs:stair_outer_pine_wood +doors:trapdoor_steel_open +default:lava_flowing +doors:door_obsidian_glass_b +doors:door_glass_c +doors:door_glass_a +lrfurn:armchair +homedecor:stonepath +homedecor:gate_half_door_open +tnt:gunpowder_burning +default:cactus +tnt:gunpowder +default:dirt +default:dirt_with_grass +default:dirt_with_dry_grass +default:dirt_with_rainforest_litter +default:dry_dirt +default:dry_dirt_with_dry_grass +default:papyrus +doors:homedecor_closet_mahogany_c +flowers:viola +stairs:stair_outer_obsidian_glass +stairs:stair_outer_ice +homedecor:cobweb_plantlike +homedecor:bathtub_clawfoot_brass_taps +homedecor:lattice_white_wood +stairs:stair_outer_obsidian +homedecor:shingle_outer_corner_asphalt +stairs:slab_silver_sandstone_brick +stairs:slab_desert_sandstone_block +stairs:stair_outer_desert_sandstone_brick +default:coral_green +homedecor:lattice_wood_vegetal +homedecor:taps_brass +default:grass_3 +stairs:stair_inner_desert_stone_block +pipeworks:mese_tube_100100 +stairs:stair_silver_sandstone +default:blueberry_bush_leaves_with_berries +homedecor:lattice_white_wood_vegetal +homedecor:lattice_lantern_small_6 +pipeworks:mese_tube_100101 +homedecor:wood_table_large_square +homedecor:banister_wood_diagonal_left_sapphire +stairs:stair_inner_bronzeblock +homedecor:wine_rack +homedecor:tv_off +homedecor:television +homedecor:banister_wood_diagonal_left_chartreuse +homedecor:sink +pipeworks:crossing_tube_1 +pipeworks:mese_tube_100111 +homedecor:tv +pipeworks:crossing_tube_2 +homedecor:shrubbery_red +default:fence_rail_pine_wood +homedecor:shrubbery_large_red +homedecor:desk_globe +homedecor:banister_white_dark_horizontal +pipeworks:crossing_tube_4 +homedecor:banister_white_dark_diagonal_left +xpanes:bar +homedecor:curtain_closed +homedecor:picture_frame1 +homedecor:painting_4 +pipeworks:crossing_tube_6 +homedecor:banister_brass_horizontal +pipeworks:mese_tube_101011 +homedecor:banister_brass_diagonal_left +stairs:slab_desert_stone_block +homedecor:bathroom_tiles_dark +pipeworks:crossing_tube_8 +pipeworks:mese_tube_101100 +homedecor:bottle_green +homedecor:banister_wrought_iron_horizontal +doors:homedecor_carolina_b +homedecor:banister_wrought_iron_diagonal_left +pipeworks:crossing_tube_10 +homedecor:shrubbery_yellow +homedecor:banister_wood_diagonal_right_grey +homedecor:shrubbery_large_yellow +homedecor:banister_wood_diagonal_right +pipeworks:mese_tube_101110 +homedecor:banister_wood_diagonal_right_red +xpanes:bar_flat +homedecor:banister_wood_diagonal_right_vermilion +homedecor:shutter +homedecor:banister_wood_diagonal_right_orange +doors:homedecor_french_mahogany_b +homedecor:banister_wood_diagonal_right_amber +pipeworks:mese_tube_110000 +homedecor:banister_wood_diagonal_right_yellow +stairs:stair_ice +homedecor:banister_wood_diagonal_right_lime +homedecor:shutter_colored +homedecor:banister_wood_diagonal_right_chartreuse +doors:homedecor_french_white_a +homedecor:banister_wood_diagonal_right_harlequin +doors:homedecor_french_oak_a +homedecor:banister_wood_diagonal_right_green +pipeworks:mese_tube_110010 +homedecor:banister_wood_diagonal_right_malachite +walls:cobble +homedecor:banister_wood_diagonal_right_spring +homedecor:light_switch_off +homedecor:banister_wood_diagonal_right_turquoise +homedecor:painting_3 +homedecor:banister_wood_diagonal_right_cyan +homedecor:curtain_open +homedecor:banister_wood_diagonal_right_cerulean +pipeworks:mese_tube_110100 +homedecor:banister_wood_diagonal_right_azure +xpanes:door_steel_bar_a +homedecor:banister_wood_diagonal_right_sapphire +building_blocks:woodglass +homedecor:banister_wood_diagonal_right_blue +building_blocks:Roofing +homedecor:banister_wood_diagonal_right_indigo +itemframes:frame +homedecor:banister_wood_diagonal_right_violet +homedecor:painting_5 +homedecor:banister_wood_diagonal_right_mulberry +homedecor:flower_pot_black +homedecor:banister_wood_diagonal_right_magenta +homedecor:potted_dandelion_white +homedecor:banister_wood_diagonal_right_fuchsia +fireflies:firefly +homedecor:banister_wood_diagonal_right_rose +pipeworks:mese_tube_111000 +homedecor:banister_wood_diagonal_right_crimson +default:torch +homedecor:cardboard_box +homedecor:banister_wood_diagonal_left_vermilion +homedecor:banister_white_dark_diagonal_right +homedecor:painting_7 +homedecor:4_bottles_brown +homedecor:banister_brass_diagonal_right +default:permafrost_with_stones +default:permafrost +homedecor:banister_wrought_iron_diagonal_right +stairs:stair_outer_steelblock +homedecor:painting_8 +homedecor:banister_wood_diagonal_left_mulberry +homedecor:wood_table_small_square_with_wood_legs +pipeworks:mese_tube_111100 +homedecor:banister_wood_diagonal_left_violet +stairs:slab_brick +stairs:stair_outer_brick +homedecor:painting_9 +pipeworks:mese_tube_111101 +pipeworks:pump_on +stairs:slab_obsidian_block +pipeworks:mese_tube_111110 +default:chest_open +stairs:stair_outer_obsidianbrick +homedecor:painting_10 +homedecor:banister_wood_diagonal_left_spring +default:water_source +default:chest_locked +stairs:stair_outer_tinblock +homedecor:banister_wood_horizontal_lime +pipeworks:spigot +homedecor:painting_11 +carts:rail +homedecor:banister_wood_horizontal_grey +homedecor:washing_machine +pipeworks:fountainhead +pipeworks:fountainhead_pouring +stairs:slab_copperblock +homedecor:painting_12 +doors:homedecor_french_oak_d +signs:label_small +homedecor:curtainrod_wrought_iron +stairs:stair_desert_stone +homedecor:curtainrod_brass +building_blocks:smoothglass +homedecor:painting_13 +homedecor:projection_screen +default:acacia_bush_leaves +doors:homedecor_carolina_c +signs:label_medium +signs:wooden_sign +default:leaves +homedecor:painting_14 +stairs:stair_outer_obsidian_block +default:stone +building_blocks:Adobe +building_blocks:Marble +building_blocks:gravel_spread +homedecor:shingle_side_asphalt +homedecor:painting_15 +stairs:stair_outer_sandstone_block +flowers:tulip +homedecor:glowlight_half_1 +homedecor:glowlight_quarter_1 +homedecor:desk_lamp_1 +homedecor:table_lamp_1 +homedecor:painting_16 +homedecor:glowlight_small_cube_2 +homedecor:plasma_lamp_2 +homedecor:ground_lantern_2 +homedecor:lattice_lantern_large_2 +homedecor:glowlight_half_3 +homedecor:hanging_lantern_3 +homedecor:painting_17 +homedecor:desk_lamp_3 +homedecor:glowlight_small_cube_4 +homedecor:plasma_lamp_4 +homedecor:ground_lantern_4 +homedecor:hanging_lantern_4 +homedecor:lattice_lantern_large_4 +homedecor:painting_18 +homedecor:chimney +homedecor:table_lamp_4 +homedecor:glowlight_small_cube_5 +steel:plate_soft +steel:plate_rusted +homedecor:ceiling_lantern_5 +homedecor:painting_19 +homedecor:banister_wood_diagonal_left_harlequin +default:aspen_leaves +default:aspen_wood +homedecor:glowlight_small_cube_9 +carts:brakerail +signs:paper_poster +homedecor:painting_20 +doors:homedecor_french_oak_c +doors:homedecor_exterior_fancy_c +homedecor:banister_wood_diagonal_left_indigo +homedecor:glass_table_small_round +steel:grate_soft +stairs:stair_outer_desert_stonebrick +homedecor:glowlight_small_cube_13 +doors:door_obsidian_glass_d +steel:grate_hard +stairs:slab_pine_wood +homedecor:hanging_lantern_0 diff --git a/mods/xcompat/test/nodelist/voxelibre.txt b/mods/xcompat/test/nodelist/voxelibre.txt new file mode 100644 index 00000000..777d1a11 --- /dev/null +++ b/mods/xcompat/test/nodelist/voxelibre.txt @@ -0,0 +1,2499 @@ +mcl_maps:filled_map_character_male_crea +mcl_doors:spruce_trapdoor_ladder +mcl_colorblocks:hardened_clay_white +mcl_ocean:dead_tube_coral_block +mcl_chests:green_shulker_box +mcl_beehives:bee_nest +mcl_cauldrons:cauldron_3 +mcl_stairs:stair_copper_cut +mcl_doors:birch_trapdoor_ladder +mcl_core:barrier +vl_hollow_logs:stripped_warped_hyphae_hollow +mcl_core:sprucetree +mcl_walls:prismarine_6 +xpanes:pane_green +mcl_stairs:stair_wood +mcl_flowerpots:flower_pot_blue_orchid +mcl_core:glass_yellow +mcl_portals:portal_gateway +mcl_core:light_2 +mcl_stairs:stair_crimson_hyphae_wood_inner +mcl_ocean:bubble_coral_block +mesecons_lightstone:lightstone_off +mcl_colorblocks:glazed_terracotta_orange +mcl_farming:potato_1 +mcl_flowerpots:flower_pot_tulip_pink +mcl_flowers:double_grass_top +mcl_amethyst:medium_amethyst_bud +mcl_stairs:stair_warped_hyphae_wood_outer +mcl_stairs:slab_stonebrickcracked_double +mcl_walls:andesite_5 +mcl_mobspawners:spawner +mcl_mud:mud +mesecons_pistons:piston_up_sticky_on +mcl_core:frosted_ice_1 +mcl_compass:lodestone +mcl_stairs:slab_brick_block +mcl_crimson:weeping_vines +mcl_colorblocks:concrete_orange +mcl_walls:stonebrickmossy +mcl_colorblocks:glazed_terracotta_pillar_silver +mcl_core:ironblock +mcl_end:dragon_egg +mcl_stairs:stair_redsandstonesmooth2_outer +mcl_brewing:stand_011 +mcl_walls:mudbrick_7 +mcl_stairs:stair_waxed_copper_oxidized_cut_inner +mcl_beds:respawn_anchor_charged_4 +mcl_lanterns:chain +mcl_stairs:slab_birchtree_bark_double +mcl_mushrooms:red_mushroom_block_cap_110010 +mcl_stairs:slab_concrete_orange +mcl_core:snow_6 +mcl_chests:cyan_shulker_box_small +mcl_crimson:warped_door_b_3 +mcl_beds:bed_blue_top +mcl_walls:redsandstone_6 +mcl_deepslate:deepslatecobbledwall_2 +mcl_stairs:stair_concrete_magenta_outer +mcl_wool:pink_carpet +mcl_walls:brick_3 +mcl_walls:prismarine +mcl_mushrooms:brown_mushroom_block_cap_110100 +mcl_fences:birch_fence_gate_open +mcl_brewing:stand_010 +mcl_walls:rednetherbrick_4 +mcl_mushrooms:brown_mushroom_block_cap_110000 +mcl_core:jungletree +mcl_wool:blue_carpet +mcl_flowerpots:flower_pot_lily_of_the_valley +mcl_stairs:slab_crimson_hyphae_wood_double +mcl_cherry_blossom:cherry_door_t_2 +mcl_flowers:poppy +xpanes:pane_white +mcl_stairs:slab_acaciawood_top +mcl_ocean:kelp_sand +mcl_walls:diorite_3 +mcl_stairs:stair_mangrove_wood_inner +mcl_cake:cake_4 +mcl_deepslate:deepslatepolishedwall_8 +mcl_ocean:kelp_dirt +mcl_deepslate:deepslatebrickswall_8 +mcl_cake:cake +mcl_minecarts:detector_rail +mcl_walls:brick_21 +mcl_core:acaciatree_bark +mcl_stairs:slab_copper_cut +mcl_wool:green_carpet +mcl_stairs:slab_blackstone_brick_polished_double +mcl_flowers:double_grass +mcl_torches:torch_wall +mesecons_pressureplates:pressure_plate_birchwood_on +mcl_doors:acacia_door_t_3 +mcl_beehives:beehive_3 +mcl_core:packed_ice +mcl_stairs:slab_bamboo_mosaic_double +mcl_walls:stonebrickmossy_1 +mesecons_button:button_warped_hyphae_wood_on +mcl_walls:rednetherbrick_15 +mcl_farming:melontige_4 +mcl_stairs:stair_acaciawood_inner +mcl_stairs:stair_concrete_red_inner +xpanes:pane_light_blue_flat +mcl_walls:rednetherbrick_21 +mcl_core:mycelium_snow +mcl_signs:standing_sign22_5_warped_hyphae_wood +xpanes:pane_yellow +mcl_walls:redsandstone_12 +mcl_wool:yellow +mcl_stonecutter:stonecutter +mcl_walls:diorite_5 +mcl_comparators:comparator_on_comp +mcl_stairs:stair_stone_rough_inner +mesecons_torch:mesecon_torch_overheated +mcl_stairs:slab_birchtree_bark +mcl_stairs:stair_sandstone_outer +mcl_stairs:stair_copper_exposed_cut_outer +mcl_core:glass_magenta +mcl_deepslate:deepslatetileswall_10 +mesecons_torch:mesecon_torch_overheated_wall +xpanes:bar +mesecons_button:button_polished_blackstone_off +mcl_observers:observer_on +mcl_ocean:sea_lantern +mcl_doors:trapdoor_ladder +mcl_anvils:anvil_damage_2 +xpanes:bar_flat +mcl_bamboo:bamboo_1 +mcl_stairs:slab_sandstonesmooth2 +mcl_end:end_rod_lightblue +mcl_walls:stonebrickmossy_3 +mcl_wool:orange_carpet +mcl_core:stone_with_redstone_lit +mcl_stairs:slab_bamboo_block_top +mcl_mushrooms:red_mushroom_block_cap_010111 +mcl_deepslate:deepslatecobbledwall_15 +mcl_walls:stonebrick_4 +mcl_farming:pumpkintige_linked_l +mcl_stairs:stair_diorite_smooth_outer +mcl_fences:jungle_fence_gate_open +mcl_core:frosted_ice_0 +mcl_end:end_rod_purple +mcl_stairs:slab_deepslate_cobbled_top +mcl_wool:silver +mcl_colorblocks:concrete_magenta +mcl_stairs:stair_sandstonesmooth2_inner +mcl_walls:andesite_2 +mcl_core:stone_with_iron +mcl_mushrooms:brown_mushroom_block_cap_011110 +mcl_farming:melontige_7 +mcl_colorblocks:glazed_terracotta_pink +mesecons_torch:redstoneblock +mcl_walls:stonebrick_5 +mcl_flowers:lilac +mcl_deepslate:deepslatecobbledwall_3 +mcl_core:snow_5 +mcl_walls:brick_14 +mcl_core:lava_source +mcl_walls:granite_15 +mcl_crimson:warped_door_b_2 +mcl_stairs:slab_sandstone_top +mcl_signs:standing_sign_bamboo +mcl_mushrooms:red_mushroom_block_cap_101101 +mcl_walls:redsandstone_5 +mcl_walls:rednetherbrick_7 +mcl_stairs:slab_nether_brick +mcl_walls:brick_0 +mcl_meshhand:mcl_skins_base_1B47A57FF_female_surv +mcl_stairs:stair_sandstone +xpanes:pane_green_flat +mcl_signs:standing_sign_mangrove_wood +mesecons_button:button_wood_off +mcl_deepslate:deepslatepolishedwall_9 +mcl_stairs:stair_blackstone_inner +mcl_core:glass +mcl_stairs:slab_andesite_double +mcl_flowers:rose_bush_top +mcl_flowers:allium +mcl_ocean:brain_coral +xpanes:pane_yellow_flat +mcl_cherry_blossom:cherrytree +mcl_stairs:stair_concrete_magenta_inner +mcl_blackstone:soul_torch_wall +mcl_blackstone:wall_6 +mcl_flowerpots:flower_pot_darksapling +mcl_end:end_rod_green +mcl_doors:jungle_trapdoor_ladder +mcl_mangrove:mangrove_door_t_2 +mcl_heads:wither_skeleton45 +mcl_walls:granite_6 +mcl_stairs:slab_stone_rough_top +mcl_compressed_blocks:sextuple_compressed_cobblestone +mcl_signs:standing_sign45_mangrove_wood +mcl_walls:stonebrickmossy_0 +mcl_stairs:stair_bamboo_stripped_outer +mcl_crimson:warped_roots +mcl_signs:wall_sign_warped_hyphae_wood +mcl_stairs:stair_tree_bark +mcl_enchanting:table +mcl_core:mycelium +mesecons_lightstone:lightstone_on_cyan +mclx_fences:red_nether_brick_fence +mcl_stairs:slab_deepslate_polished +mcl_stairs:slab_concrete_silver_top +mcl_walls:prismarine_10 +air +mcl_walls:granite +mcl_mangrove:propagule_mud +mcl_core:darkleaves +mcl_chests:red_shulker_box_small +mcl_farming:sweet_berry_bush_1 +mcl_composters:composter_2 +mcl_beehives:bee_nest_2 +mcl_walls:redsandstone_11 +mcl_walls:mossycobble_7 +mesecons_lightstone:lightstone_on_blue +mcl_deepslate:deepslatebrickswall_6 +mcl_cherry_blossom:stripped_cherrytree_bark +mcl_crimson:warped_hyphae_wood +vl_hollow_logs:stripped_crimson_hyphae_hollow +mcl_cauldrons:cauldron +mcl_stairs:stair_mangrove_wood_outer +mcl_copper:block_weathered_cut +mcl_walls:stonebrickmossy_12 +mcl_beehives:bee_nest_3 +mcl_farming:potato_3 +mcl_stairs:stair_andesite_smooth +mcl_deepslate:deepslatepolishedwall_14 +mcl_stairs:stair_waxed_copper_weathered_cut_inner +mesecons_button:button_polished_blackstone_on +mcl_deepslate:deepslatecobbledwall_16 +mcl_stairs:stair_prismarine_dark_inner +mcl_crimson:nether_sprouts +mcl_core:light_0 +mcl_ocean:seagrass_redsand +mcl_blackstone:wall_5 +mcl_fences:dark_oak_fence +mcl_walls:stonebrick_6 +mcl_farming:pumpkin +mcl_doors:jungle_door_t_1 +mcl_colorblocks:concrete_powder_silver +mcl_stairs:slab_sprucetree_bark +mcl_walls:endbricks_0 +mcl_beds:respawn_anchor_charged_2 +mcl_torches:torch +mcl_core:clay +mcl_fences:birch_fence_gate +mcl_core:snow_4 +mcl_banners:standing_banner +mcl_wool:purple +mcl_chests:green_shulker_box_small +mcl_walls:rednetherbrick_14 +mcl_lanterns:lantern_ceiling +mcl_fences:jungle_fence +mcl_maps:filled_map_mcl_skins_base_1EEB592FF_male_crea +mcl_stairs:stair_sprucetree_bark +mcl_stairs:stair_deepslate_polished_inner +mcl_stairs:slab_goldblock +mcl_walls:rednetherbrick_6 +mcl_mangrove:mangrove_wood_fence_gate +mcl_smithing_table:table +mcl_stairs:slab_quartzblock_double +mcl_crimson:stripped_warped_hyphae_bark +mcl_stairs:slab_deepslate_polished_top +mcl_stairs:slab_copper_exposed_cut +mcl_amethyst:amethyst_cluster +mcl_sculk:catalyst +mcl_beds:bed_magenta_bottom +mesecons_pressureplates:pressure_plate_crimson_hyphae_wood_on +mcl_colorblocks:concrete_yellow +mcl_stairs:slab_concrete_grey_top +mcl_walls:redsandstone_0 +mesecons_delayer:delayer_on_1 +mcl_crimson:crimson_door_b_1 +mcl_deepslate:deepslate_with_redstone_lit +mcl_nether:red_nether_brick +mcl_walls:granite_7 +mcl_walls:diorite_15 +mcl_stairs:stair_quartzblock_outer +mcl_walls:mudbrick_14 +mcl_core:diorite_smooth +mcl_wool:brown +mcl_colorblocks:hardened_clay_brown +mcl_doors:acacia_trapdoor_open +mcl_farming:soil_wet +mcl_mushrooms:mushroom_red +mcl_flowerpots:flower_pot_cactus +mesecons_commandblock:commandblock_on +mcl_stairs:slab_jungletree_bark +mesecons_lightstone:lightstone_on_white +mcl_doors:birch_trapdoor_open +mcl_walls:stonebrick_21 +mcl_ocean:tube_coral +mcl_stairs:slab_copper_weathered_cut_top +mcl_stairs:slab_acaciawood_double +mcl_walls:prismarine_7 +mcl_stairs:slab_blackstone +mcl_chests:trapped_chest_left +mesecons_pistons:piston_normal_on +mcl_stairs:stair_blackstone_polished_inner +mcl_ocean:sea_pickle_3_dead_brain_coral_block +mesecons_lightstone:lightstone_on_red +mcl_flowers:clover +mcl_stairs:stair_quartzblock_inner +mcl_stairs:stair_tree_bark_inner +mcl_hoppers:hopper_side_disabled +mesecons_lightstone:lightstone_on_yellow +mcl_doors:jungle_door_t_4 +mcl_farming:sweet_berry_bush_2 +mcl_cherry_blossom:cherrywood +mcl_walls:sandstone_11 +mcl_core:glass_purple +mcl_copper:waxed_block +mesecons_lightstone:lightstone_off_brown +mcl_cauldrons:cauldron_2 +mcl_walls:diorite_7 +mcl_composters:composter_1 +mcl_stairs:slab_red_nether_brick +mcl_core:light_11 +mcl_lanterns:soul_lantern_floor +mcl_walls:mossycobble_0 +mcl_deepslate:deepslatetileswall_16 +mcl_crimson:warped_fence_gate_open +mcl_stairs:stair_stonebrickcracked_inner +mcl_farming:potato_2 +mesecons_pistons:piston_up_pusher_normal +mcl_blackstone:wall_21 +mcl_stairs:slab_deepslate_tiles_top +xpanes:pane_natural_flat +mcl_mangrove:mangrove_trapdoor_open +mcl_walls:stonebrickmossy_13 +mcl_stairs:slab_mossycobble_double +mcl_doors:jungle_trapdoor_open +mcl_flowerpots:flower_pot_dandelion +mcl_flowers:sunflower +mcl_cherry_blossom:cherryleaves_orphan +mcl_farming:pumpkin_face_light +mcl_colorblocks:hardened_clay_lime +mcl_mushrooms:brown_mushroom_block_cap_001100 +mcl_walls:prismarine_0 +mcl_walls:prismarine_21 +mcl_deepslate:infested_deepslate +mcl_mushrooms:red_mushroom_block_cap_000011 +mcl_crafting_table:crafting_table +mcl_stairs:slab_darkwood +mcl_walls:brick_15 +mcl_core:stripped_dark_oak +mcl_colorblocks:concrete_powder_red +mcl_beds:bed_magenta_top +mcl_stairs:slab_granite_smooth +mcl_chests:trapped_chest_on_left +mcl_bamboo:bamboo +mcl_chests:ender_chest_small +vl_hollow_logs:stripped_acacia_hollow +mcl_chests:violet_shulker_box_small +mcl_core:stone +mcl_dispensers:dispenser +mcl_wool:yellow_carpet +mcl_furnaces:furnace_active +mcl_walls:rednetherbrick_1 +mcl_nether:quartz_block +mcl_walls:brick_16 +mcl_stairs:slab_copper_weathered_cut +mcl_copper:waxed_block_oxidized +mcl_mushrooms:brown_mushroom_block_cap_001101 +mcl_mushrooms:brown_mushroom_block_cap_011001 +mcl_cherry_blossom:cherry_door_b_3 +mcl_walls:endbricks_2 +mcl_core:brick_block +mcl_walls:mudbrick_11 +mcl_heads:skeleton_wall +mcl_comparators:comparator_off_comp +mcl_core:stripped_jungle_bark +mcl_colorblocks:concrete_light_blue +mcl_core:snow_8 +mcl_walls:granite_8 +mcl_farming:melon +mcl_beehives:beehive_2 +mcl_stairs:slab_copper_cut_top +mcl_core:acaciatree +mcl_stairs:stair_quartzblock +mcl_walls:redsandstone_7 +mcl_wool:light_blue +mcl_doors:wooden_door_b_3 +mcl_stairs:slab_mossycobble_top +mcl_bamboo:bamboo_3 +mcl_deepslate:deepslatepolishedwall_16 +mcl_compressed_blocks:quadruple_compressed_cobblestone +mcl_core:darktree +mcl_stairs:slab_sandstonesmooth2_double +mcl_deepslate:deepslatetileswall_3 +mcl_end:purpur_block +mcl_doors:dark_oak_trapdoor_ladder +mcl_deepslate:deepslatebrickswall_5 +mcl_copper:waxed_block_cut +mcl_walls:endbricks_14 +mcl_stairs:stair_concrete_red +mcl_colorblocks:concrete_black +mcl_deepslate:deepslatecobbledwall_10 +mcl_doors:jungle_door_t_3 +mcl_mushrooms:brown_mushroom_block_cap_000111 +mcl_walls:netherbrick_8 +mcl_farming:melontige_5 +mcl_mushrooms:brown_mushroom_block_cap_000011 +mcl_doors:birch_door_t_4 +mcl_stairs:stair_concrete_blue +mcl_walls:rednetherbrick_10 +xpanes:pane_pink +mcl_walls:diorite_0 +mcl_meshhand:mcl_skins_character_1_female_crea +mcl_stairs:stair_andesite_smooth_outer +mcl_walls:granite_9 +mcl_flowerpots:flower_pot_cornflower +mcl_walls:andesite_21 +mesecons_lightstone:lightstone_off_magenta +mcl_chests:orange_shulker_box +mcl_end:end_rod_yellow +mesecons_pressureplates:pressure_plate_warped_hyphae_wood_off +mcl_flowers:oxeye_daisy +mcl_crimson:warped_door_t_4 +mcl_end:end_rod_magenta +mcl_walls:sandstone_2 +mcl_core:birchwood +xpanes:pane_blue +mesecons_lightstone:lightstone_on_brown +mesecons_pistons:piston_down_normal_on +mcl_chests:grey_shulker_box +mcl_cauldrons:cauldron_1_lava +mcl_stairs:stair_redsandstone_outer +mcl_stairs:stair_end_bricks_outer +mcl_stairs:stair_bamboo_mosaic_outer +mcl_colorblocks:glazed_terracotta_grey +mcl_farming:pumpkin_face +mcl_doors:trapdoor_open +mcl_walls:mossycobble_1 +mcl_walls:prismarine_1 +mcl_nether:ancient_debris +mcl_walls:mudbrick_1 +mcl_colorblocks:concrete_red +mcl_stairs:stair_blackstone_chiseled_polished_inner +mesecons_delayer:delayer_on_locked +mcl_brewing:stand_101 +mcl_walls:granite_1 +mcl_walls:redsandstone_2 +mcl_walls:redsandstone_13 +mcl_stairs:slab_copper_cut_double +mcl_deepslate:deepslate_with_coal +mcl_colorblocks:glazed_terracotta_pillar_black +mcl_mushrooms:red_mushroom_block_cap_011110 +mcl_stairs:slab_redsandstone_top +mcl_campfires:soul_campfire +mcl_core:cactus +mcl_deepslate:deepslate_bricks +mcl_walls:rednetherbrick_16 +mcl_stairs:slab_redsandstonesmooth2 +mcl_core:sandstonesmooth +mcl_core:light_12 +mcl_deepslate:deepslatetileswall_15 +mcl_wool:magenta +mcl_furnaces:furnace +mcl_crimson:crimson_fence +mcl_deepslate:deepslatepolishedwall_4 +mcl_walls:mudbrick_16 +mcl_stairs:stair_blackstone_polished +mcl_walls:stonebrick_0 +mcl_cherry_blossom:cherry_door_b_2 +mcl_walls:cobble_21 +mcl_walls:granite_11 +mcl_colorblocks:glazed_terracotta_pillar_lime +mcl_stairs:stair_redsandstone_inner +mcl_flowerpots:flower_pot_mushroom_brown +mcl_flowers:fern +mcl_stairs:slab_end_bricks_double +mcl_stairs:slab_brick_block_top +mcl_core:redsandstonesmooth2 +mcl_target:target_on +mcl_blackstone:wall_16 +mcl_stairs:stair_darktree_bark +mcl_stairs:stair_red_nether_brick +mcl_blackstone:wall_7 +mcl_stairs:stair_waxed_copper_exposed_cut_outer +xpanes:pane_silver +mcl_doors:wooden_door_b_2 +mcl_doors:spruce_door_t_1 +mcl_bamboo:bamboo_2 +mcl_fire:eternal_fire +mcl_mangrove:mangrove_door_t_3 +mcl_stairs:stair_red_nether_brick_outer +mcl_ocean:fire_coral_block +mcl_core:crying_obsidian +mcl_walls:sandstone_21 +mcl_heads:stalker_wall +mcl_deepslate:tuff +mcl_stairs:stair_blackstone_chiseled_polished_outer +mcl_stairs:slab_blackstone_polished_top +mcl_stairs:stair_deepslate_polished_outer +mcl_colorblocks:hardened_clay_purple +mcl_stairs:slab_andesite_smooth_double +mesecons_pistons:piston_down_pusher_sticky +mcl_core:glass_silver +mcl_farming:pumpkin_5 +mcl_deepslate:deepslatebrickswall_4 +mcl_walls:rednetherbrick_0 +mcl_stairs:stair_waxed_copper_cut_inner +mcl_copper:block_oxidized_cut +mcl_stairs:stair_jungletree_bark_inner +mcl_crimson:warped_trapdoor_ladder +mcl_ocean:kelp_redsand +mcl_beds:bed_grey_bottom +mcl_mangrove:hanging_propagule_1 +mcl_stairs:stair_prismarine_dark_outer +mcl_walls:endbricks_15 +mcl_fences:acacia_fence_gate_open +mcl_stairs:slab_copper_oxidized_cut_top +mcl_stairs:slab_redsandstone_double +mcl_flowerpots:flower_pot_warped_fungus +mcl_walls:sandstone +mcl_stairs:stair_warped_hyphae_wood_inner +mcl_walls:rednetherbrick_13 +mcl_maps:filled_map_character_male_surv +mcl_stairs:slab_waxed_copper_weathered_cut_double +mcl_heads:wither_skeleton67_5 +mcl_deepslate:deepslatecobbledwall_11 +mcl_stairs:stair_sandstone_inner +mcl_walls:mossycobble_2 +mcl_stairs:slab_prismarine_dark_double +mcl_stairs:slab_concrete_white_double +mcl_core:tree_bark +mcl_stairs:stair_blackstone_chiseled_polished +mcl_crimson:crimson_roots +mcl_walls:diorite_1 +mcl_walls:sandstone_13 +mcl_stairs:stair_bamboo_plank +mcl_deepslate:deepslate +mcl_stairs:slab_stonebrickcracked +mcl_doors:jungle_trapdoor +mcl_core:water_source +mesecons_lightstone:lightstone_off_lightblue +mcl_walls:mudbrick_2 +mcl_wool:black_carpet +mcl_stairs:slab_wood_top +mcl_walls:cobble_14 +mcl_farming:melontige_3 +mcl_stairs:stair_cobble +mcl_deepslate:deepslatetileswall +mcl_crimson:warped_fungus +mcl_copper:stone_with_copper +mcl_stairs:stair_prismarine_outer +mcl_mushrooms:brown_mushroom_block_cap_101000 +mcl_walls:netherbrick_9 +mcl_core:jungletree_bark +mcl_wool:red_carpet +mcl_amethyst:small_amethyst_bud +mcl_core:sprucesapling +mcl_walls:prismarine_2 +mesecons_lightstone:lightstone_off_orange +mcl_stairs:stair_stonebrickmossy_outer +mcl_stairs:slab_birchwood +mcl_beds:respawn_anchor_charged_1 +mcl_walls:mossycobble_21 +mcl_core:redsand +mcl_meshhand:mcl_skins_character_1_female_surv +mcl_stairs:slab_concrete_brown +mcl_signs:standing_sign45_bamboo +mcl_core:jungleleaves_orphan +mcl_farming:melontige_unconnect +mcl_walls:redsandstone_1 +mcl_signs:standing_sign67_5_crimson_hyphae_wood +mcl_minecarts:rail +mesecons:wire_00010000_off +mcl_stairs:slab_granite_double +mcl_stairs:stair_diorite +mcl_stairs:slab_jungletree_bark_double +mcl_beds:bed_lime_bottom +mcl_chests:blue_shulker_box_small +mcl_stairs:stair_granite_smooth_outer +mcl_stairs:slab_mangrove_wood_top +mcl_brewing:stand_100 +mcl_stairs:stair_concrete_light_blue_outer +mcl_walls:granite_16 +mcl_end:end_rod_grey +mcl_chests:magenta_shulker_box +mcl_cherry_blossom:cherry_door_b_1 +mcl_core:mossycobble +mcl_stairs:stair_copper_cut_outer +mcl_crimson:warped_fence_gate +mcl_stairs:slab_redsandstone +mcl_walls:cobble_15 +mcl_stairs:stair_stonebrickmossy_inner +mcl_core:glass_orange +mcl_core:light_7 +mcl_doors:jungle_door_b_3 +mcl_stairs:slab_mangrove_wood_double +mcl_stairs:slab_waxed_copper_cut +mcl_doors:wooden_door_b_1 +mcl_chests:black_shulker_box +mcl_walls:diorite_14 +mcl_signs:standing_sign22_5 +mcl_walls:stonebrick_1 +mcl_core:glass_blue +mcl_ocean:dead_bubble_coral +mcl_stairs:slab_copper_weathered_cut_double +mcl_stairs:stair_bamboo_mosaic +mcl_deepslate:deepslatetileswall_9 +mcl_minecarts:golden_rail +mcl_stairs:slab_stonebrickmossy +mcl_signs:standing_sign22_5_bamboo +mcl_stairs:stair_goldblock_inner +mcl_core:obsidian +mesecons_delayer:delayer_on_4 +mcl_walls:rednetherbrick_3 +mcl_crimson:crimson_door_b_4 +mcl_droppers:dropper_down +mcl_stairs:stair_mud_brick_inner +mcl_farming:carrot +mcl_cake:cake_2 +mcl_farming:pumpkin_4 +mcl_core:slimeblock +mcl_stairs:stair_waxed_copper_cut_outer +mcl_stairs:slab_bamboo_mosaic +mcl_stairs:slab_birchwood_double +mcl_stairs:slab_diorite_smooth_double +mcl_flowers:cornflower +mcl_stairs:stair_concrete_white_outer +mcl_stairs:slab_blackstone_double +mcl_blackstone:wall_14 +mcl_stairs:stair_redsandstone +mcl_blackstone:soul_fire +mcl_core:glass_black +mcl_core:birchleaves_orphan +mcl_stairs:stair_prismarine_dark +mcl_walls:rednetherbrick_12 +mcl_mangrove:mangrove_trapdoor_ladder +mcl_stairs:stair_goldblock +mcl_chests:chest +mcl_chests:black_shulker_box_small +mcl_walls:diorite_2 +mcl_core:birchleaves +mcl_deepslate:deepslatecobbledwall_12 +mcl_itemframes:item_frame +mcl_walls:prismarine_3 +mcl_deepslate:deepslate_with_gold +mcl_composters:composter_6 +mcl_heads:stalker +mcl_monster_eggs:monster_egg_cobble +mcl_stairs:slab_deepslate_tiles_double +mcl_stairs:stair_stone_rough_outer +mcl_stairs:stair_diorite_smooth_inner +mcl_farming:carrot_5 +mcl_chests:cyan_shulker_box +mcl_farming:beetroot_1 +xpanes:pane_red +mcl_core:light_10 +mcl_stairs:slab_granite_smooth_double +mcl_crimson:stripped_crimson_hyphae +mcl_stairs:slab_wood +mcl_copper:block_weathered +mcl_walls:mossycobble_3 +mcl_walls:mudbrick_3 +mcl_deepslate:deepslatebrickswall_14 +mcl_deepslate:deepslatebrickswall_2 +mesecons_lightstone:lightstone_on_lightblue +mcl_colorblocks:glazed_terracotta_silver +mcl_stairs:slab_concrete_light_blue_top +mcl_stairs:slab_cherrywood_double +mcl_doors:acacia_door_b_3 +mcl_core:granite +mcl_deepslate:deepslatetileswall_21 +mcl_farming:melontige_6 +mcl_crimson:crimson_door_t_4 +mcl_stairs:stair_copper_exposed_cut +mcl_bamboo:pressure_plate_bamboo_wood_off +mesecons_pressureplates:pressure_plate_mangrove_wood_on +mcl_mushrooms:red_mushroom_block_cap_111010 +mcl_stairs:stair_copper_oxidized_cut_outer +mcl_farming:melontige_linked_b +mcl_ocean:horn_coral_fan +mcl_crimson:crimson_hyphae_wood +mcl_core:dirt_with_grass +mcl_doors:iron_trapdoor +mcl_deepslate:deepslatepolishedwall_6 +mcl_compressed_blocks:triple_compressed_cobblestone +mcl_bells:bell +mcl_walls:brick_11 +mcl_copper:block +mesecons_lightstone:lightstone_on_black +mcl_stairs:slab_crimson_hyphae_wood_top +mcl_wool:black +mcl_wool:light_blue_carpet +mcl_ocean:brain_coral_block +mcl_colorblocks:hardened_clay_orange +mcl_flowerpots:flower_pot_tulip_red +mcl_signs:wall_sign +mcl_stairs:stair_waxed_copper_oxidized_cut_outer +mcl_crimson:warped_trapdoor_open +mcl_fences:fence_gate_open +mcl_doors:spruce_trapdoor +mcl_walls:mudbrick_10 +mcl_wool:lime +mesecons_lightstone:lightstone_on_pink +mcl_deepslate:deepslatecobbledwall_8 +mcl_mangrove:mangrove_stripped +mcl_walls:stonebrick_2 +mcl_copper:block_oxidized +mcl_stairs:slab_blackstone_top +mcl_crimson:crimson_door_t_1 +mcl_colorblocks:concrete_powder_cyan +mcl_farming:wheat_7 +mcl_walls:granite_13 +mcl_stairs:stair_stonebrickcracked +mcl_composters:composter_5 +mcl_mushrooms:brown_mushroom_block_cap_000010 +mesecons_delayer:delayer_off_locked +mcl_signs:standing_sign67_5 +mcl_crimson:warped_hyphae +mcl_stairs:slab_quartzblock_top +mcl_cherry_blossom:cherry_trapdoor_ladder +mcl_maps:filled_map_mcl_skins_character_1_female_surv +mcl_deepslate:deepslatetileswall_8 +mcl_beehives:beehive_1 +mcl_walls:netherbrick +mesecons_lightstone:lightstone_off_white +mcl_core:snow +mcl_core:snowblock +mcl_signs:wall_sign_crimson_hyphae_wood +mcl_observers:observer_down_on +mcl_walls:endbricks_21 +mcl_deepslate:deepslatetileswall_13 +mcl_colorblocks:hardened_clay_silver +mcl_flowers:fourleaf_clover +mcl_signs:standing_sign22_5_crimson_hyphae_wood +mcl_walls:diorite_11 +xpanes:pane_purple +mesecons_lightstone:lightstone_off_silver +mcl_deepslate:deepslatebrickswall +mcl_blackstone:nether_gold +mcl_bamboo:bamboo_fence_gate_open +mcl_portals:portal +mcl_fletching_table:fletching_table +mcl_deepslate:deepslatecobbledwall_13 +mcl_flowers:sunflower_top +mcl_beds:bed_silver_top +mcl_deepslate:deepslatebrickswall_1 +mcl_heads:skeleton +mcl_bamboo:bamboo_block +mcl_doors:jungle_door_b_2 +mcl_blackstone:blackstone +mcl_deepslate:deepslatecobbledwall_21 +mcl_compressed_blocks:octuple_compressed_cobblestone +mcl_stairs:slab_prismarine_dark_top +mcl_mushrooms:red_mushroom_block_stem +mcl_beds:bed_cyan_bottom +mcl_walls:redsandstone_3 +mcl_stairs:slab_deepslate_cobbled_double +mcl_deepslate:deepslatebrickswall_15 +mcl_stairs:slab_stonebrick_double +mcl_mushrooms:mushroom_brown +mcl_chests:orange_shulker_box_small +mcl_stairs:slab_stone_top +mcl_deepslate:deepslatepolishedwall_15 +mcl_stairs:slab_concrete_purple +mesecons_torch:mesecon_torch_off +mcl_stairs:slab_deepslate_cobbled +mcl_campfires:campfire_lit +mcl_stairs:slab_prismarine_top +mcl_maps:filled_map_mcl_skins_base_18D471DFF_female_crea +mcl_walls:brick_9 +mcl_core:deadbush +mcl_walls:sandstone_1 +mcl_core:stone_with_gold +mcl_crimson:warped_door_t_1 +mcl_farming:melontige_1 +mcl_farming:beetroot_0 +mcl_stairs:stair_quartz_smooth_outer +mcl_beds:respawn_anchor +mcl_stairs:stair_blackstone_brick_polished_inner +mclx_fences:red_nether_brick_fence_gate +mcl_walls:mudbrick +mcl_observers:observer_up_off +mesecons_lightstone:lightstone_on_orange +mcl_mangrove:mangroveleaves_orphan +mcl_nether:quartz_smooth +mcl_farming:pumpkin_6 +mcl_end:end_bricks +mcl_mushrooms:red_mushroom_block_cap_101111 +mcl_walls:netherbrick_4 +mcl_minecarts:activator_rail +vl_hollow_logs:acaciatree_hollow +mcl_stairs:slab_concrete_silver_double +mcl_beds:bed_light_blue_top +mcl_walls:andesite_8 +mcl_signs:wall_sign_darkwood +mcl_crimson:warped_door_b_4 +mcl_bamboo:bamboo_door_t_3 +mcl_flowers:peony +mcl_stairs:stair_prismarine +mcl_nether:nether_wart_1 +mcl_portals:portal_end +mcl_signs:standing_sign45_crimson_hyphae_wood +mcl_stairs:stair_red_nether_brick_inner +mcl_end:chorus_plant +mcl_stairs:slab_blackstone_chiseled_polished_top +mcl_flowers:wither_rose +mcl_mangrove:river_water_logged_roots +mcl_deepslate:deepslatepolishedwall_7 +mcl_stairs:slab_deepslate_bricks +mcl_walls:granite_10 +mesecons_button:button_crimson_hyphae_wood_off +mcl_walls:sandstone_15 +mcl_deepslate:deepslatecobbledwall_9 +mcl_colorblocks:hardened_clay_magenta +mcl_signs:standing_sign67_5_warped_hyphae_wood +mcl_core:redsandstonecarved +mcl_flowers:tulip_white +mcl_nether:nether_wart +mcl_stairs:stair_cobble_outer +mcl_walls:cobble_4 +mcl_deepslate:deepslate_with_emerald +mesecons_button:button_birchwood_on +mcl_farming:melontige_linked_t +mcl_compressed_blocks:quintuple_compressed_cobblestone +mcl_core:water_flowing +mcl_deepslate:deepslatetileswall_12 +mcl_blackstone:wall_12 +mcl_minecarts:detector_rail_on +mcl_doors:wooden_door_t_3 +mcl_stairs:stair_andesite_smooth_inner +mcl_flowerpots:flower_pot_azure_bluet +mcl_core:coalblock +mcl_ocean:horn_coral +mcl_ocean:dead_brain_coral +mcl_core:darksapling +mcl_walls:redsandstone +mcl_droppers:dropper_up +mcl_monster_eggs:monster_egg_stonebrick +mcl_ocean:bubble_coral +mcl_end:end_rod_orange +mcl_stairs:stair_blackstone_brick_polished +mcl_stairs:stair_deepslate_cobbled +mcl_stairs:slab_purpur_block_double +mcl_stairs:stair_bamboo_stripped +vl_hollow_logs:birchtree_hollow +mcl_compressed_blocks:compressed_cobblestone +mcl_walls:endbricks_10 +mcl_lanterns:lantern_floor +mcl_walls:redsandstone_21 +mcl_stairs:slab_lapisblock_double +mcl_monster_eggs:monster_egg_stonebrickcarved +mcl_anvils:anvil_damage_1 +mesecons_commandblock:commandblock_off +mcl_stairs:slab_waxed_copper_exposed_cut +mcl_stairs:slab_waxed_copper_exposed_cut_double +mcl_crimson:warped_nylium +mesecons_lightstone:lightstone_off_blue +mcl_stairs:stair_concrete_grey_outer +mcl_core:sprucetree_bark +mcl_stairs:slab_crimson_hyphae_wood +mcl_stairs:slab_cobble_double +mcl_beehives:bee_nest_1 +mcl_core:gravel +xpanes:pane_red_flat +mcl_signs:wall_sign_sprucewood +mesecons_lightstone:lightstone_off_grey +mcl_mangrove:mangrove_door_b_1 +mcl_doors:acacia_door_t_4 +mcl_deepslate:deepslatetileswall_6 +mcl_deepslate:deepslatepolishedwall_12 +mcl_walls:brick_12 +mcl_deepslate:deepslatetileswall_11 +mcl_ocean:sea_pickle_4_dead_brain_coral_block +mcl_stairs:stair_prismarine_brick_inner +mcl_mushrooms:brown_mushroom_block_stem_full +mcl_walls:netherbrick_5 +mcl_walls:mossycobble +mcl_walls:netherbrick_13 +mcl_core:birchsapling +mcl_stairs:stair_copper_weathered_cut_outer +mcl_farming:pumpkin_1 +mcl_flowers:tulip_pink +mcl_blackstone:wall_13 +mcl_core:emeraldblock +mcl_doors:dark_oak_door_t_4 +mcl_mushrooms:red_mushroom_block_cap_000100 +mcl_bamboo:bamboo_door_b_4 +mcl_core:stripped_jungle +mcl_deepslate:deepslate_chiseled +mesecons_pressureplates:pressure_plate_darkwood_off +mcl_flowers:tulip_orange +xpanes:pane_natural +mcl_deepslate:deepslatepolishedwall_0 +mcl_stairs:slab_andesite_smooth +mcl_walls:mossycobble_14 +mcl_flowerpots:flower_pot_poppy +mcl_beehives:beehive_4 +mcl_copper:waxed_block_oxidized_cut +mcl_colorblocks:glazed_terracotta_pillar_yellow +mcl_nether:nether_brick +mcl_stairs:slab_waxed_copper_oxidized_cut_top +mcl_chests:grey_shulker_box_small +mcl_cherry_blossom:cherry_fence_gate +mesecons_button:button_mangrove_wood_on +mcl_stairs:stair_redsandstonesmooth2 +mcl_stairs:stair_deepslate_cobbled_inner +mcl_wool:silver_carpet +mcl_core:stone_smooth +mcl_heads:steve22_5 +mcl_walls:endbricks_11 +mcl_core:stripped_birch +mcl_crimson:crimson_fence_gate_open +mcl_chests:trapped_chest_small +mcl_nether:nether_wart_0 +mcl_end:end_rod +mcl_deepslate:deepslatecobbledwall +mcl_stairs:stair_junglewood_inner +mcl_heads:steve67_5 +mcl_farming:carrot_7 +mcl_stairs:stair_redsandstonesmooth2_inner +mcl_core:stripped_oak +mcl_bamboo:bamboo_fence +mesecons_delayer:delayer_off_2 +mcl_ocean:dead_bubble_coral_block +mcl_stairs:stair_deepslate_bricks_inner +mesecons_pressureplates:pressure_plate_polished_blackstone_on +mcl_signs:standing_sign_crimson_hyphae_wood +mcl_doors:wooden_door_t_2 +mcl_walls:sandstone_12 +mcl_stairs:slab_birchtree_bark_top +mcl_walls:granite_5 +mcl_mangrove:mangrove_mud_roots +mcl_stairs:slab_blackstone_polished_double +mcl_crimson:crimson_fence_gate +mcl_stairs:slab_granite_top +mcl_walls:diorite_13 +mcl_stairs:stair_darktree_bark_inner +mcl_walls:prismarine_16 +xpanes:pane_white_flat +mcl_walls:netherbrick_11 +mcl_core:junglesapling +mcl_walls:redsandstone_8 +mcl_walls:mudbrick_12 +mcl_mud:mud_bricks +mcl_colorblocks:concrete_brown +mclx_core:river_water_flowing +mcl_stairs:stair_sprucewood_inner +mesecons_lightstone:lightstone_off_purple +mcl_stairs:stair_warped_hyphae_wood +mcl_chests:lightblue_shulker_box_small +mcl_signs:standing_sign_darkwood +mcl_smoker:smoker +mcl_stairs:stair_blackstone_brick_polished_outer +mesecons_button:button_darkwood_on +mcl_mangrove:mangrove_trapdoor +mcl_ocean:dead_fire_coral_fan +mcl_walls:brick_13 +mcl_deepslate:deepslatebrickswall_7 +mcl_farming:wheat_5 +mcl_colorblocks:glazed_terracotta_pillar_white +mcl_mangrove:mangrove_stripped_bark +mcl_smoker:smoker_active +mesecons_solarpanel:solar_panel_inverted_off +mcl_core:acaciawood +mcl_bamboo:bamboo_mosaic +mcl_crimson:crimson_trapdoor +mcl_compressed_blocks:septuple_compressed_cobblestone +mcl_core:stripped_oak_bark +mcl_core:birchtree +mesecons_pressureplates:pressure_plate_sprucewood_on +mcl_walls:diorite_21 +xpanes:pane_gray +mcl_farming:soil +mcl_mangrove:mangrove_wood +mcl_stairs:stair_tree_bark_outer +mcl_farming:beetroot_2 +mcl_farming:melontige_linked_r +mcl_deepslate:deepslatepolishedwall_1 +mcl_stairs:slab_stone_rough +mcl_colorblocks:hardened_clay_red +mcl_stairs:stair_sprucetree_bark_inner +mcl_walls:netherbrick_6 +mcl_stairs:stair_end_bricks +mcl_blackstone:basalt +mcl_blackstone:soul_torch +mcl_beacons:beacon_beam +mcl_stairs:slab_quartz_smooth +mcl_core:stone_with_lapis +mcl_walls:cobble_10 +mcl_walls:andesite_14 +mcl_farming:potato +mcl_walls:netherbrick_12 +mcl_core:glass_brown +mcl_stairs:slab_warped_hyphae_wood_top +mcl_core:snow_3 +mcl_core:darkwood +mcl_heads:wither_skeleton_wall +mcl_flowers:lily_of_the_valley +mcl_campfires:campfire +mcl_ocean:tube_coral_block +mcl_mushrooms:red_mushroom_block_cap_001011 +mcl_stairs:stair_mud_brick_outer +mcl_ocean:sea_pickle_1_dead_brain_coral_block +mcl_core:stripped_birch_bark +mcl_mushrooms:red_mushroom_block_cap_010001 +mcl_stairs:stair_purpur_block +mcl_doors:trapdoor +mcl_end:end_rod_blue +mcl_farming:carrot_6 +mcl_stairs:stair_waxed_copper_exposed_cut +mcl_signs:wall_sign_birchwood +mcl_doors:iron_door_t_3 +mcl_minecarts:activator_rail_on +mesecons_solarpanel:solar_panel_off +mcl_signs:standing_sign45_warped_hyphae_wood +mcl_core:goldblock +mcl_mushrooms:brown_mushroom_block_cap_101011 +mcl_doors:iron_door_b_4 +mcl_walls:endbricks_8 +mcl_farming:wheat_6 +mcl_nether:glowstone +mcl_stairs:stair_goldblock_outer +mcl_colorblocks:concrete_powder_black +mcl_portals:end_portal_frame_eye +mcl_doors:wooden_door_t_1 +mcl_chests:yellow_shulker_box_small +mcl_jukebox:jukebox +mcl_core:stone_with_coal +vl_hollow_logs:darktree_hollow +mcl_core:stripped_acacia +mcl_monster_eggs:monster_egg_stone +mcl_doors:birch_door_t_2 +mcl_flowerpots:flower_pot_acaciasapling +mcl_flowers:azure_bluet +mcl_walls:diorite_10 +mclx_fences:red_nether_brick_fence_gate_open +mcl_stairs:stair_jungletree_bark +mcl_deepslate:deepslatetileswall_5 +mcl_stairs:slab_end_bricks +mcl_walls:stonebrickmossy_15 +mcl_stairs:slab_concrete_silver +mcl_stairs:stair_blackstone_polished_outer +mcl_core:glass_gray +mcl_ocean:bubble_coral_fan +mesecons:wire_10111011_off +mcl_walls:endbricks_12 +mesecons_button:button_mangrove_wood_off +mcl_stairs:slab_waxed_copper_oxidized_cut +mcl_end:end_rod_cyan +mcl_core:glass_red +mcl_walls:stonebrickmossy_9 +mcl_core:stonebrick +mcl_deepslate:deepslatebrickswall_10 +mcl_walls:diorite +mcl_farming:pumpkintige_linked_r +mcl_walls:endbricks_13 +mesecons_button:button_wood_on +mcl_ocean:dead_horn_coral_fan +mcl_flowerpots:flower_pot_tulip_white +mcl_core:jungleleaves +mcl_stairs:slab_copper_exposed_cut_double +mcl_farming:melontige_2 +mcl_stairs:stair_purpur_block_outer +mcl_heads:stalker22_5 +mcl_bamboo:scaffolding +mcl_stairs:slab_concrete_green +mcl_mangrove:mangrove_door_b_3 +mcl_flowerpots:flower_pot_tulip_orange +mcl_stairs:stair_junglewood_outer +mcl_chests:trapped_chest_on_right +mcl_walls:cobble_11 +mcl_colorblocks:glazed_terracotta_pillar_grey +mcl_stairs:slab_mud_brick +mcl_deepslate:deepslatepolishedwall_2 +mcl_brewing:stand_001 +mcl_colorblocks:concrete_powder_green +mcl_crimson:warped_wart_block +mcl_ocean:dead_fire_coral_block +mcl_barrels:barrel_open +mcl_villages:structblock +mcl_cherry_blossom:pressure_plate_cherrywood_off +mesecons_pistons:piston_up_pusher_sticky +mcl_core:snow_2 +mcl_wool:pink +mcl_core:acaciasapling +mcl_wool:red +mcl_cake:cake_1 +mcl_fences:jungle_fence_gate +mcl_crimson:warped_door_b_1 +mcl_stairs:slab_prismarine_dark +mcl_beehives:beehive +mcl_stairs:stair_deepslate_bricks +mcl_cake:cake_6 +mcl_beds:respawn_anchor_charged_3 +mcl_beds:bed_white_top +mesecons_torch:mesecon_torch_off_wall +mcl_beds:bed_light_blue_bottom +mcl_beds:bed_lime_top +mcl_beds:bed_pink_top +mcl_beds:bed_pink_bottom +mcl_cocoas:cocoa_3 +mcl_beds:bed_brown_top +mcl_beds:bed_brown_bottom +mcl_beds:bed_purple_top +mcl_maps:filled_map_mcl_skins_base_18D471DFF_male_crea +mcl_loom:loom +mcl_beds:bed_orange_top +mcl_cherry_blossom:cherry_door_b_4 +mcl_beds:bed_orange_bottom +mcl_deepslate:deepslatecobbledwall_4 +mcl_beds:bed_green_top +mcl_crimson:warped_hyphae_bark +mcl_brewing:stand_000 +mcl_beds:bed_green_bottom +mcl_beds:bed_yellow_top +mcl_beds:bed_yellow_bottom +mcl_beds:bed_black_top +mcl_core:light_6 +mcl_beds:bed_silver_bottom +mcl_signs:standing_sign_warped_hyphae_wood +mcl_beds:bed_grey_top +mcl_monster_eggs:monster_egg_stonebrickmossy +mcl_beds:bed_cyan_top +mcl_beds:bed_blue_bottom +mcl_nether:nether_wart_2 +mcl_doors:acacia_door_t_2 +mcl_beds:bed_red_bottom +mcl_books:bookshelf +mcl_stairs:slab_bamboo_mosaic_top +mesecons_torch:mesecon_torch_on_wall +mcl_doors:iron_door_t_4 +mcl_walls:endbricks_9 +mesecons_solarpanel:solar_panel_on +mesecons_button:button_bamboo_on +mcl_beacons:beacon +mesecons_button:button_bamboo_off +mcl_stairs:stair_ironblock_inner +mcl_stairs:slab_bamboo_plank_double +mcl_meshhand:mcl_skins_base_1EEB592FF_female_crea +mcl_signs:standing_sign67_5_bamboo +mcl_signs:wall_sign_bamboo +mcl_bamboo:pressure_plate_bamboo_wood_on +mcl_copper:block_exposed_cut +mcl_bamboo:bamboo_fence_gate +mcl_stairs:slab_quartz_smooth_top +mcl_core:redsandstone +mcl_doors:wooden_door_b_4 +mcl_stairs:slab_bamboo_plank_top +mcl_farming:pumpkintige_linked_b +mcl_stairs:slab_bamboo_plank +mcl_mangrove:mangrove_door_t_4 +mcl_stairs:stair_bamboo_plank_inner +mcl_stairs:stair_bamboo_plank_outer +mcl_colorblocks:hardened_clay_pink +mcl_doors:dark_oak_door_t_1 +mesecons_pressureplates:pressure_plate_darkwood_on +mcl_stairs:slab_bamboo_stripped_top +mcl_stairs:stair_cobble_inner +mcl_stairs:slab_bamboo_stripped +mesecons:wire_10110011_off +mcl_stairs:slab_bamboo_block_double +mcl_stairs:slab_bamboo_block +mcl_amethyst:budding_amethyst_block +mcl_stairs:stair_bamboo_block_inner +mcl_stairs:stair_bamboo_block_outer +mcl_core:stonebrickcarved +mcl_stairs:stair_bamboo_block +mcl_bamboo:bamboo_trapdoor_ladder +mcl_bamboo:bamboo_trapdoor_open +mcl_stairs:slab_prismarine_brick +xpanes:pane_silver_flat +mcl_bamboo:bamboo_trapdoor +mcl_colorblocks:concrete_powder_white +mcl_bamboo:bamboo_door_b_3 +mcl_bamboo:bamboo_door_t_2 +mcl_crimson:crimson_hyphae_bark +mcl_stairs:stair_cherrywood_outer +mcl_walls:cobble_7 +mcl_mangrove:mangrove_roots +mcl_bamboo:bamboo_door_t_1 +mcl_bamboo:bamboo_door_b_1 +mcl_ocean:tube_coral_fan +mcl_stairs:slab_concrete_grey +mcl_stairs:slab_concrete_yellow +mcl_bamboo:bamboo_plank +mcl_bamboo:bamboo_block_stripped +mcl_bamboo:bamboo_endcap +mcl_blackstone:wall +mcl_blackstone:wall_15 +mcl_blackstone:wall_11 +mcl_grindstone:grindstone +mcl_mushrooms:red_mushroom_block_cap_111100 +mcl_blackstone:wall_8 +mcl_blackstone:wall_4 +mcl_nether:soul_sand +mcl_blackstone:wall_3 +mcl_blackstone:wall_2 +mcl_blackstone:wall_1 +mcl_blackstone:blackstone_chiseled_polished +mcl_stairs:slab_blackstone_brick_polished_top +mcl_stairs:slab_blackstone_brick_polished +mcl_stairs:slab_blackstone_chiseled_polished_double +mcl_stairs:slab_blackstone_chiseled_polished +mcl_stairs:slab_blackstone_polished +mcl_walls:netherbrick_14 +mcl_stairs:slab_darktree_bark +mcl_blackstone:soul_soil +mcl_core:light_14 +mcl_doors:birch_door_t_1 +mcl_deepslate:deepslate_bricks_cracked +mcl_blackstone:quartz_brick +mcl_blackstone:blackstone_brick_polished +xpanes:pane_magenta_flat +mcl_fences:fence +mcl_blackstone:wall_0 +mcl_blackstone:blackstone_polished +mcl_stairs:stair_ironblock +mcl_heads:steve +mcl_blackstone:basalt_polished +mcl_blackstone:blackstone_gilded +mcl_stairs:slab_concrete_light_blue_double +mcl_stairs:slab_concrete_light_blue +mcl_stairs:stair_concrete_light_blue_inner +mcl_stairs:stair_concrete_light_blue +mcl_amethyst:tinted_glass +mcl_stairs:slab_concrete_lime_double +mcl_stairs:slab_concrete_lime_top +mcl_walls:cobble_12 +mcl_stairs:slab_concrete_lime +mcl_stairs:stair_concrete_lime_inner +mcl_deepslate:deepslatetileswall_4 +mcl_stairs:stair_concrete_lime_outer +mcl_stairs:stair_concrete_lime +mcl_stairs:slab_concrete_pink_double +mesecons_button:button_warped_hyphae_wood_off +mcl_portals:end_portal_frame +mesecons_walllever:wall_lever_off +mcl_stairs:slab_concrete_pink_top +mcl_stairs:slab_concrete_pink +mcl_stairs:stair_concrete_pink_inner +mcl_deepslate:deepslatebrickswall_11 +mcl_stairs:stair_concrete_pink_outer +mcl_core:glass_pink +xpanes:pane_purple_flat +mcl_stairs:slab_concrete_brown_double +mcl_farming:wheat_3 +mcl_stairs:slab_concrete_brown_top +mcl_stairs:stair_concrete_brown_inner +vl_hollow_logs:mangrove_stripped_hollow +mcl_stairs:stair_concrete_brown_outer +mcl_stairs:stair_concrete_brown +mcl_stairs:slab_concrete_purple_double +mesecons_pistons:piston_down_pusher_normal +mcl_stairs:slab_concrete_purple_top +mcl_stairs:stair_concrete_purple_inner +mcl_stairs:stair_concrete_purple_outer +mcl_stairs:slab_acaciawood +mcl_stairs:slab_concrete_orange_double +mcl_stairs:slab_concrete_orange_top +mcl_stairs:stair_concrete_orange_inner +mcl_walls:prismarine_8 +mcl_stairs:stair_concrete_orange_outer +mcl_ocean:horn_coral_block +mcl_nether:nether_wart_block +mcl_mushrooms:brown_mushroom_block_cap_011000 +mcl_stairs:stair_copper_weathered_cut +mcl_deepslate:deepslatepolishedwall_11 +mcl_stairs:slab_concrete_magenta_top +mcl_core:light_8 +mcl_stairs:slab_concrete_magenta +mcl_mangrove:mangrove_door_b_2 +mcl_deepslate:deepslate_cobbled +mcl_walls:stonebrick_15 +mcl_stairs:stair_concrete_grey +mcl_stairs:slab_concrete_blue_double +mcl_stairs:slab_concrete_blue_top +mcl_stairs:slab_concrete_blue +mcl_doors:acacia_trapdoor +mcl_stairs:stair_concrete_blue_inner +mcl_stairs:stair_concrete_blue_outer +mcl_stairs:slab_concrete_cyan_double +mcl_stairs:slab_concrete_cyan_top +mcl_farming:pumpkin_3 +mcl_doors:dark_oak_door_b_4 +mcl_farming:melontige_linked_l +mcl_stairs:stair_concrete_cyan_inner +mcl_stairs:stair_concrete_cyan_outer +mcl_stairs:stair_concrete_cyan +mcl_stairs:slab_concrete_green_double +mcl_stairs:slab_concrete_green_top +mcl_stairs:stair_concrete_green_inner +mcl_stairs:stair_concrete_green_outer +mcl_core:light_4 +mcl_comparators:comparator_on_sub +mcl_stairs:stair_concrete_green +mcl_stairs:slab_concrete_yellow_double +mcl_stairs:slab_concrete_yellow_top +mcl_stairs:stair_concrete_yellow_inner +mcl_stairs:stair_concrete_yellow_outer +mcl_walls:mudbrick_9 +mcl_heads:stalker67_5 +mcl_stairs:slab_concrete_red_double +mcl_compressed_blocks:double_compressed_cobblestone +mcl_doors:birch_door_b_1 +mcl_stairs:slab_concrete_red_top +mcl_walls:netherbrick_0 +mcl_stairs:slab_concrete_red +mcl_heads:steve_wall +mcl_cherry_blossom:stripped_cherrytree +mcl_colorblocks:concrete_white +mcl_stairs:slab_concrete_black_double +mcl_core:andesite +mcl_stairs:slab_concrete_black_top +mcl_ocean:sea_pickle_4_off_dead_brain_coral_block +mcl_mushrooms:brown_mushroom_block_stem +mcl_walls:brick_5 +mcl_mangrove:mangrove_wood_fence +mcl_stairs:stair_concrete_black_inner +mcl_walls:andesite_4 +mcl_stairs:stair_concrete_black_outer +mcl_walls:sandstone_14 +mcl_core:spruceleaves_orphan +mcl_mushrooms:red_mushroom_block_cap_110101 +mcl_wool:green +mcl_flowerpots:flower_pot_mushroom_red +mcl_stairs:stair_concrete_silver_inner +mcl_stairs:stair_concrete_silver_outer +mcl_stairs:slab_stonebrick +mcl_stairs:stair_concrete_silver +mcl_stairs:slab_concrete_grey_double +mcl_flowerpots:flower_pot_bamboo_plant +mcl_walls:cobble_0 +mcl_stairs:stair_concrete_grey_inner +mcl_stairs:stair_concrete_magenta +mcl_core:leaves_orphan +mesecons_pistons:piston_pusher_sticky +mcl_stairs:slab_concrete_white_top +mcl_mushrooms:brown_mushroom_block_cap_111010 +mcl_stairs:slab_concrete_white +mcl_stairs:stair_concrete_white_inner +mesecons:wire_11001000_off +mcl_stairs:stair_birchwood_inner +mcl_copper:waxed_block_exposed +mcl_stairs:stair_stonebrickcracked_outer +mcl_stairs:stair_ironblock_outer +mcl_core:glass_lime +mcl_blackstone:basalt_smooth +mcl_stairs:slab_ironblock_double +mcl_end:end_rod_brown +mcl_cocoas:cocoa_2 +mcl_stairs:slab_ironblock_top +mcl_stairs:slab_ironblock +mcl_stairs:slab_goldblock_top +mcl_doors:dark_oak_door_t_3 +mcl_mushrooms:brown_mushroom_block_cap_010101 +mcl_stairs:stair_lapisblock +mcl_walls:andesite_16 +mcl_stairs:slab_lapisblock_top +mcl_stairs:slab_lapisblock +mcl_barrels:barrel_closed +mcl_deepslate:deepslatepolishedwall_3 +mcl_heads:wither_skeleton +mcl_stairs:slab_darktree_bark_double +mcl_stairs:stair_bamboo_stripped_inner +mcl_stairs:stair_blackstone +mcl_core:redsandstonesmooth +mcl_amethyst:large_amethyst_bud +mcl_stairs:stair_birchtree_bark_inner +mcl_walls:redsandstone_14 +mcl_deepslate:deepslatecobbledwall_5 +mesecons_pressureplates:pressure_plate_mangrove_wood_off +mcl_stairs:stair_birchtree_bark +mcl_stairs:slab_sprucetree_bark_double +mcl_walls:endbricks_16 +mcl_stairs:stair_sprucetree_bark_outer +mcl_nether:quartz_chiseled +mcl_stairs:slab_acaciatree_bark_double +mcl_stairs:slab_acaciatree_bark_top +mcl_walls:stonebrickmossy_5 +mcl_stairs:slab_acaciatree_bark +mcl_chests:dark_grey_shulker_box +mcl_target:target_off +mcl_stairs:stair_acaciatree_bark_inner +mcl_heads:zombie45 +mcl_core:sprucewood +mcl_stairs:stair_acaciatree_bark_outer +mcl_ocean:fire_coral +mcl_stairs:stair_acaciatree_bark +mcl_stairs:stair_jungletree_bark_outer +mcl_stairs:slab_tree_bark_double +mcl_stairs:slab_tree_bark_top +mcl_stairs:slab_tree_bark +mcl_walls:mudbrick_5 +mcl_colorblocks:glazed_terracotta_light_blue +mcl_colorblocks:concrete_powder_light_blue +mcl_stairs:slab_nether_brick_double +mcl_colorblocks:hardened_clay_light_blue +mcl_core:diamondblock +mcl_colorblocks:concrete_lime +mcl_colorblocks:concrete_powder_lime +mcl_colorblocks:glazed_terracotta_pillar_pink +mcl_colorblocks:concrete_pink +mcl_stairs:slab_purpur_block_top +mcl_mushrooms:red_mushroom_block_cap_011000 +mcl_stairs:slab_bamboo_stripped_double +mcl_core:acacialeaves +mcl_core:glass_white +mcl_core:ladder +mcl_colorblocks:glazed_terracotta_brown +mcl_end:purpur_pillar +mcl_colorblocks:concrete_powder_brown +mcl_colorblocks:glazed_terracotta_pillar_purple +mcl_fences:birch_fence +mcl_mushrooms:brown_mushroom_block_cap_111110 +mcl_colorblocks:concrete_powder_purple +mcl_colorblocks:glazed_terracotta_pillar_orange +mcl_colorblocks:concrete_powder_orange +mcl_stairs:slab_junglewood +mcl_stairs:slab_copper_oxidized_cut_double +mcl_walls:prismarine_14 +xpanes:pane_brown +mcl_colorblocks:glazed_terracotta_pillar_blue +mcl_stairs:stair_waxed_copper_weathered_cut_outer +mcl_colorblocks:glazed_terracotta_blue +mcl_walls:diorite_8 +mcl_colorblocks:concrete_blue +mcl_stairs:stair_prismarine_inner +mcl_colorblocks:glazed_terracotta_pillar_cyan +mcl_colorblocks:glazed_terracotta_cyan +mcl_colorblocks:concrete_cyan +mcl_colorblocks:hardened_clay_cyan +mcl_colorblocks:glazed_terracotta_pillar_green +mcl_stairs:stair_prismarine_brick +mcl_colorblocks:glazed_terracotta_green +mcl_colorblocks:concrete_green +mcl_stairs:slab_junglewood_double +mcl_colorblocks:glazed_terracotta_yellow +mcl_core:junglewood +mcl_colorblocks:concrete_powder_yellow +mcl_stairs:stair_birchwood +mcl_colorblocks:glazed_terracotta_pillar_red +mcl_colorblocks:glazed_terracotta_red +mcl_walls:stonebrick +mcl_colorblocks:glazed_terracotta_black +mcl_colorblocks:hardened_clay_black +mcl_colorblocks:concrete_silver +mcl_colorblocks:concrete_grey +mcl_colorblocks:concrete_powder_grey +mcl_walls:mossycobble_10 +mcl_doors:iron_door_b_2 +mcl_colorblocks:hardened_clay_grey +mcl_colorblocks:glazed_terracotta_white +mcl_stairs:stair_concrete_red_outer +mcl_bamboo:bamboo_door_t_4 +mcl_colorblocks:hardened_clay +mcl_minecarts:golden_rail_on +xpanes:pane_cyan +mcl_walls:cobble_13 +mcl_fences:dark_oak_fence_gate +mcl_composters:composter_ready +mcl_walls:mossycobble_16 +mcl_composters:composter_7 +mcl_composters:composter_4 +mcl_composters:composter_3 +mcl_walls:mossycobble_9 +mcl_hoppers:hopper_side +mcl_crimson:stripped_warped_hyphae +mcl_hoppers:hopper_disabled +mcl_chests:white_shulker_box +mcl_hoppers:hopper +mcl_signs:standing_sign67_5_sprucewood +mcl_cauldrons:cauldron_3_lava +mcl_dispensers:dispenser_down +mcl_farming:pumpkintige_linked_t +mcl_signs:standing_sign22_5_junglewood +mcl_droppers:dropper +vl_hollow_logs:warped_hyphae_hollow +vl_hollow_logs:crimson_hyphae_hollow +mesecons_lightstone:lightstone_off_cyan +vl_hollow_logs:mangrove_tree_hollow +mcl_stairs:slab_nether_brick_top +vl_hollow_logs:stripped_cherrytree_hollow +vl_hollow_logs:cherrytree_hollow +mcl_walls:sandstone_8 +vl_hollow_logs:tree_hollow +mcl_walls:granite_0 +mcl_fences:nether_brick_fence +vl_hollow_logs:stripped_spruce_hollow +vl_hollow_logs:sprucetree_hollow +vl_hollow_logs:stripped_jungle_hollow +vl_hollow_logs:jungletree_hollow +mcl_wool:purple_carpet +mcl_walls:prismarine_12 +mcl_sculk:sculk +mcl_core:glass_cyan +vl_hollow_logs:stripped_birch_hollow +mcl_wool:white_carpet +mesecons_button:button_cherrywood_on +mcl_deepslate:deepslatebrickswall_12 +mcl_stairs:slab_waxed_copper_weathered_cut_top +mesecons_button:button_cherrywood_off +mcl_cherry_blossom:cherry_fence_gate_open +mcl_observers:observer_off +mcl_cherry_blossom:cherry_fence +mcl_signs:standing_sign67_5_cherrywood +mcl_signs:standing_sign45_cherrywood +mcl_crimson:crimson_hyphae +mcl_signs:standing_sign22_5_cherrywood +mcl_signs:standing_sign_cherrywood +mcl_crimson:crimson_door_b_3 +mcl_signs:wall_sign_cherrywood +mcl_doors:jungle_door_b_1 +mcl_stairs:slab_cherrywood_top +mcl_stairs:slab_cherrywood +mcl_stairs:slab_deepslate_bricks_double +mcl_stairs:stair_cherrywood_inner +mcl_bamboo:bamboo_door_b_2 +mcl_walls:stonebrickmossy_10 +mcl_stairs:stair_cherrywood +mesecons_lightstone:lightstone_on_green +mesecons:wire_11110101_on +mcl_walls:prismarine_9 +mcl_farming:wheat_4 +mcl_cherry_blossom:cherry_trapdoor +mcl_ocean:dead_brain_coral_fan +mcl_core:light_9 +mcl_cherry_blossom:cherry_door_t_4 +mcl_cherry_blossom:cherry_door_t_3 +mcl_cherry_blossom:cherry_door_t_1 +mcl_cherry_blossom:cherrysapling +mcl_stairs:slab_copper_oxidized_cut +mcl_stairs:stair_waxed_copper_cut +mcl_cherry_blossom:cherrytree_bark +mcl_stairs:stair_waxed_copper_oxidized_cut +mcl_stairs:stair_mossycobble_outer +mcl_chests:chest_left +mcl_end:end_rod_pink +mcl_ocean:dead_bubble_coral_fan +mcl_deepslate:deepslatebrickswall_16 +mesecons_walllever:wall_lever_on +mcl_copper:waxed_block_weathered +mcl_stairs:stair_deepslate_tiles +vl_hollow_logs:stripped_dark_oak_hollow +mesecons:wire_01110000_off +mesecons_button:button_sprucewood_off +mesecons_button:button_birchwood_off +mcl_deepslate:deepslatecobbledwall_14 +mesecons:wire_10011001_on +mcl_walls:stonebrick_16 +mesecons:wire_10000000_off +mesecons_button:button_darkwood_off +mesecons_button:button_stone_on +mesecons:wire_11110100_on +mcl_stairs:stair_waxed_copper_exposed_cut_inner +mesecons:wire_01000000_on +mesecons:wire_11111010_off +mcl_flowers:double_fern +mcl_walls:andesite_13 +mcl_stairs:slab_waxed_copper_cut_top +mesecons_lightstone:lightstone_off_pink +mcl_stairs:stair_stonebrickmossy +mesecons:wire_11111000_on +mesecons_pressureplates:pressure_plate_warped_hyphae_wood_on +mcl_raw_ores:raw_iron_block +mcl_stairs:slab_darktree_bark_top +mcl_farming:pumpkin_2 +mesecons_pressureplates:pressure_plate_sprucewood_off +mcl_core:dirt_with_grass_snow +mcl_cauldrons:cauldron_2r +mesecons:wire_01010000_on +mcl_walls:diorite_9 +mcl_signs:standing_sign45_sprucewood +mcl_mushrooms:brown_mushroom_block_cap_010111 +mcl_doors:birch_door_b_4 +mcl_farming:potato_5 +mcl_honey:honeycomb_block +mcl_mushrooms:red_mushroom_block_cap_000111 +mcl_farming:pumpkintige_unconnect +mcl_maps:filled_map_mcl_skins_character_1_female_crea +mcl_mushrooms:brown_mushroom_block_cap_100111 +mcl_nether:quartz_ore +mcl_chests:chest_small +xpanes:pane_lime_flat +mcl_mushrooms:brown_mushroom_block_cap_011101 +mesecons_pressureplates:pressure_plate_junglewood_off +mcl_core:vine +mcl_heads:skeleton67_5 +mcl_signs:wall_sign_junglewood +mesecons_pistons:piston_normal_off +mesecons_pressureplates:pressure_plate_acaciawood_off +mesecons:wire_01100000_off +xpanes:pane_light_blue +mcl_walls:prismarine_15 +mesecons_lightstone:lightstone_on_magenta +mesecons:wire_11111111_off +mcl_doors:spruce_door_t_4 +mesecons:wire_11110111_off +mesecons:wire_11110111_on +mcl_walls:andesite_9 +mesecons:wire_01110111_on +mesecons:wire_11111011_off +mcl_core:lava_flowing +mcl_wool:lime_carpet +mesecons:wire_11110011_on +mesecons:wire_01110011_on +mcl_stairs:stair_andesite_inner +mesecons:wire_10110011_on +mesecons:wire_00110011_off +mcl_mangrove:mangrove_door_t_1 +mesecons:wire_11111101_off +mcl_observers:observer_down_off +mesecons:wire_11111101_on +mesecons:wire_11011101_off +mesecons:wire_11011101_on +mcl_core:light_5 +mcl_core:sandstonecarved +mesecons:wire_01110101_on +mcl_cocoas:cocoa_1 +mesecons:wire_11010101_off +mcl_walls:stonebrickmossy_4 +mesecons:wire_11010101_on +mcl_mushrooms:red_mushroom_block_cap_011001 +mesecons:wire_01010101_off +mcl_stairs:stair_granite_smooth +mcl_stairs:stair_diorite_outer +mcl_lectern:lectern +mcl_stairs:slab_mud_brick_top +mesecons:wire_11110001_off +mesecons:wire_11110001_on +mesecons:wire_00000000_off +mcl_core:reeds +mesecons_delayer:delayer_off_1 +mcl_farming:carrot_3 +mcl_mushrooms:red_mushroom_block_cap_011011 +mcl_doors:acacia_door_b_2 +mcl_wool:cyan_carpet +mesecons:wire_00110001_off +mcl_stairs:stair_wood_outer +mesecons:wire_11010001_off +mcl_stairs:slab_end_bricks_top +mesecons:wire_01010001_off +mcl_walls:netherbrick_1 +mcl_farming:carrot_4 +mesecons:wire_10010001_off +mesecons:wire_10010001_on +mcl_wool:grey_carpet +mesecons:wire_11111110_on +mesecons:wire_11101110_off +mcl_mushrooms:red_mushroom_block_cap_111000 +mesecons:wire_11101110_on +mesecons:wire_11110110_off +mesecons:wire_11110110_on +mcl_heads:skeleton22_5 +mcl_sponges:sponge +mcl_walls:rednetherbrick_9 +mesecons:wire_11100110_off +mcl_walls:andesite_7 +mesecons:wire_11100110_on +mcl_deepslate:deepslatecobbledwall_6 +mesecons:wire_01100110_on +mesecons:wire_11111010_on +mcl_mushrooms:brown_mushroom_block_cap_011011 +mesecons:wire_10111010_off +mcl_stairs:stair_concrete_orange +mcl_ocean:prismarine +mesecons:wire_10111010_on +mcl_cherry_blossom:cherryleaves +mesecons:wire_11101010_on +mesecons:wire_10101010_on +mesecons:wire_11110010_off +mcl_beehives:bee_nest_5 +mcl_doors:jungle_door_t_2 +mesecons:wire_11110010_on +mesecons:wire_01110010_off +mesecons_pressureplates:pressure_plate_polished_blackstone_off +mesecons_pistons:piston_up_sticky_off +mcl_end:end_rod_white +mcl_stairs:slab_goldblock_double +mesecons:wire_11100010_off +mcl_stairs:stair_copper_weathered_cut_inner +mcl_core:leaves +mcl_chests:brown_shulker_box +mesecons:wire_01100010_on +mcl_walls:mudbrick_21 +mesecons:wire_10100010_on +mesecons:wire_00100010_off +mesecons:wire_00100010_on +mesecons:wire_11111100_off +mcl_stairs:stair_crimson_hyphae_wood +mesecons:wire_11111100_on +mesecons:wire_11011100_off +mesecons:wire_11011100_on +mcl_chests:pink_shulker_box +mesecons:wire_11101100_off +mesecons:wire_11101100_on +mcl_anvils:anvil +mcl_stairs:stair_darkwood_outer +mcl_doors:iron_door_b_3 +mcl_stairs:stair_darkwood +mcl_mushrooms:red_mushroom_block_cap_111111 +mcl_deepslate:deepslatetileswall_2 +mesecons:wire_01110100_on +mcl_stairs:slab_sprucewood +mcl_doors:dark_oak_door_b_3 +mcl_core:stripped_dark_oak_bark +mesecons:wire_01010100_on +mesecons:wire_11100100_off +mesecons:wire_01100100_off +mcl_colorblocks:hardened_clay_green +mesecons:wire_11000100_on +mesecons_pistons:piston_pusher_normal +mcl_doors:spruce_door_t_2 +mcl_chests:ender_chest +mesecons_pressureplates:pressure_plate_stone_off +mcl_flowers:tulip_red +mcl_signs:standing_sign45 +mcl_mushrooms:red_mushroom_block_cap_001010 +mesecons:wire_01000100_on +mcl_walls:stonebrick_8 +mcl_walls:andesite +mcl_walls:mossycobble_15 +mesecons:wire_11111000_off +mesecons:wire_01100100_on +mcl_walls:mudbrick_8 +mcl_doors:acacia_door_b_1 +mcl_core:andesite_smooth +mcl_colorblocks:glazed_terracotta_pillar_light_blue +mcl_stairs:stair_blackstone_outer +mcl_walls:cobble_2 +mcl_core:podzol +mcl_walls:andesite_12 +mcl_farming:wheat_1 +mcl_mangrove:mangrove_door_b_4 +mcl_chests:dark_green_shulker_box_small +mcl_walls:cobble_16 +mcl_stairs:stair_copper_oxidized_cut +mcl_doors:acacia_door_b_4 +mcl_walls:stonebrick_11 +mcl_stairs:stair_quartz_smooth_inner +mcl_walls:rednetherbrick_11 +mcl_stairs:slab_red_nether_brick_top +mcl_chests:trapped_chest_on +mesecons:wire_11001000_on +mesecons:wire_10001000_off +mcl_itemframes:glow_item_frame +mesecons:wire_11110000_on +mesecons:wire_01110000_on +mcl_deepslate:deepslatebrickswall_21 +mcl_doors:jungle_door_b_4 +mcl_ocean:dead_horn_coral_block +mcl_walls:diorite_12 +mcl_sponges:sponge_wet +mesecons:wire_00110000_off +mcl_doors:spruce_door_b_4 +mcl_maps:filled_map_mcl_skins_base_1EEB592FF_female_crea +mcl_walls:brick_1 +mcl_walls:endbricks_1 +mcl_deepslate:deepslatepolishedwall_21 +mesecons:wire_11100000_on +mcl_walls:stonebrick_14 +mcl_walls:prismarine_11 +mesecons:wire_01100000_on +mesecons:wire_10100000_off +xpanes:pane_cyan_flat +mcl_deepslate:deepslate_with_lapis +mcl_colorblocks:glazed_terracotta_lime +mesecons:wire_00100000_off +mesecons:wire_11000000_off +mesecons:wire_10000000_on +mcl_crimson:crimson_fungus +mcl_deepslate:deepslatetileswall_1 +mcl_fences:acacia_fence +mcl_tnt:tnt +mesecons:wire_01010100_off +mcl_core:birchtree_bark +mcl_farming:sweet_berry_bush_0 +mcl_dispensers:dispenser_up +mesecons:wire_10111011_on +mcl_crimson:warped_door_t_3 +mcl_colorblocks:concrete_powder_magenta +mcl_ocean:seagrass_sand +mcl_cake:cake_3 +mcl_chests:dark_green_shulker_box +mcl_doors:spruce_door_b_2 +xpanes:pane_magenta +mcl_doors:birch_trapdoor +mcl_chests:violet_shulker_box +mcl_walls:sandstone_10 +mcl_wool:blue +mcl_meshhand:mcl_skins_base_18D471DFF_male_crea +mcl_deepslate:deepslatebrickswall_13 +mcl_walls:netherbrick_2 +vl_hollow_logs:stripped_oak_hollow +mcl_mushrooms:red_mushroom_block_cap_011101 +mcl_blast_furnace:blast_furnace +mcl_chests:trapped_chest_right +mcl_chests:brown_shulker_box_small +mcl_doors:birch_door_b_3 +mcl_signs:wall_sign_mangrove_wood +mcl_chests:dark_grey_shulker_box_small +mesecons_pistons:piston_down_sticky_on +mcl_core:light_3 +mcl_signs:standing_sign_sprucewood +mcl_walls:andesite_10 +mcl_stairs:slab_mangrove_wood +mcl_doors:spruce_trapdoor_open +mcl_walls:netherbrick_16 +mcl_doors:iron_door_t_1 +mcl_deepslate:deepslatebrickswall_3 +mcl_farming:beetroot +mesecons_lightstone:lightstone_off_black +mcl_stairs:stair_lapisblock_inner +mcl_walls:diorite_6 +mcl_stairs:stair_granite_outer +mcl_meshhand:mcl_skins_base_18D471DFF_female_crea +mcl_cauldrons:cauldron_1 +mcl_crimson:warped_trapdoor +mcl_core:ice +mcl_chests:lightblue_shulker_box +mesecons:wire_11010000_off +mcl_doors:spruce_door_b_3 +mesecons:wire_10110001_off +mcl_core:coarse_dirt +mcl_fire:fire +mcl_farming:potato_4 +mcl_mushrooms:brown_mushroom_block_cap_110110 +mcl_mushrooms:red_mushroom_block_cap_000000 +mesecons:wire_10100010_off +mcl_chests:chest_right +mcl_flowers:double_fern_top +mcl_mushrooms:brown_mushroom_block_cap_100100 +mcl_colorblocks:hardened_clay_blue +mcl_composters:composter +mcl_stairs:stair_sandstonesmooth2_outer +mcl_walls:mossycobble_8 +mcl_core:stripped_acacia_bark +mcl_beds:bed_black_bottom +mcl_signs:standing_sign67_5_acaciawood +mclx_fences:nether_brick_fence_gate +mcl_maps:filled_map_mcl_skins_base_18D471DFF_female_surv +mcl_banners:hanging_banner +mcl_lightning_rods:rod +mcl_walls:stonebrickmossy_11 +mcl_doors:iron_trapdoor_open +mcl_core:dirt +mesecons_lightstone:lightstone_on_purple +mcl_walls:cobble_5 +mcl_walls:brick_4 +mcl_deepslate:deepslatepolishedwall_13 +mcl_stairs:stair_deepslate_tiles_outer +mcl_beehives:beehive_5 +mcl_flowerpots:flower_pot_allium +mcl_core:granite_smooth +mcl_stairs:slab_granite_smooth_top +mcl_mushrooms:red_mushroom_block_cap_001110 +mcl_deepslate:deepslatetileswall_14 +mcl_walls:granite_2 +mcl_stairs:stair_acaciawood_outer +mcl_ocean:dead_brain_coral_block +mcl_walls:mudbrick_4 +mcl_maps:filled_map_mcl_skins_base_1EEB592FF_male_surv +mcl_stairs:slab_concrete_black +mcl_mushrooms:red_mushroom_block_cap_111101 +mcl_deepslate:deepslate_with_diamond +mcl_nether:nether_lava_source +mcl_mushrooms:brown_mushroom_block_cap_110011 +mcl_farming:carrot_2 +mcl_mushrooms:red_mushroom_block_cap_010010 +mcl_blast_furnace:blast_furnace_active +mcl_core:sandstonesmooth2 +mcl_mushrooms:red_mushroom_block_cap_001001 +mcl_end:end_stone +mcl_stairs:stair_deepslate_polished +mcl_mushrooms:brown_mushroom_block_cap_110111 +mcl_core:frosted_ice_2 +mcl_stairs:stair_birchtree_bark_outer +mcl_walls:andesite_6 +xpanes:pane_brown_flat +mcl_walls:endbricks_4 +mcl_stairs:stair_mossycobble +mcl_colorblocks:glazed_terracotta_magenta +mcl_stairs:slab_quartz_smooth_double +mcl_mushrooms:brown_mushroom_block_cap_111001 +mcl_mushrooms:brown_mushroom_block_cap_111000 +mcl_doors:dark_oak_trapdoor +mcl_stairs:stair_concrete_pink +mcl_stairs:slab_warped_hyphae_wood_double +mcl_nether:netherrack +mcl_doors:iron_trapdoor_ladder +mcl_stairs:slab_darkwood_double +mcl_stairs:stair_granite +mcl_signs:standing_sign_junglewood +mcl_mushrooms:red_mushroom_block_cap_100010 +mcl_mushrooms:brown_mushroom_block_cap_111111 +mcl_signs:standing_sign67_5_darkwood +mcl_walls:redsandstone_16 +mcl_nether:netheriteblock +mcl_mushrooms:brown_mushroom_block_cap_110001 +mesecons:wire_01100010_off +mcl_core:stone_with_emerald +mcl_heads:zombie +mcl_walls:redsandstone_9 +ignore +mcl_mushrooms:brown_mushroom_block_cap_010001 +mcl_mushrooms:red_mushroom_block_cap_100111 +mcl_mushrooms:brown_mushroom_block_cap_101010 +mcl_meshhand:mcl_skins_base_1B47A57FF_male_surv +mcl_chests:trapped_chest +mcl_mushrooms:brown_mushroom_block_cap_011100 +mesecons_pressureplates:pressure_plate_crimson_hyphae_wood_off +mcl_maps:filled_map_mcl_skins_base_1B47A57FF_female_surv +mcl_mushrooms:brown_mushroom_block_cap_110010 +mcl_crimson:warped_fence +mcl_mushrooms:brown_mushroom_block_cap_100010 +mcl_mushrooms:brown_mushroom_block_cap_100001 +mcl_mushrooms:brown_mushroom_block_cap_000000 +mcl_mushrooms:red_mushroom_block_cap_110000 +mcl_fences:spruce_fence_gate_open +mesecons:wire_11010000_on +mcl_mushrooms:red_mushroom_block_cap_010101 +mcl_deepslate:deepslatecobbledwall_7 +mcl_nether:quartz_pillar +mcl_mushrooms:brown_mushroom_block_cap_100110 +mesecons:wire_11100010_on +mesecons:wire_01110100_off +mcl_stairs:slab_diorite_smooth_top +mcl_stairs:slab_concrete_magenta_double +mesecons:wire_00000000_on +mcl_flowerpots:flower_pot_crimson_fungus +mesecons:wire_11000000_on +mcl_fences:spruce_fence_gate +mcl_mushrooms:brown_mushroom_block_cap_001111 +mesecons:wire_10100000_on +mcl_mushrooms:brown_mushroom_block_cap_010100 +mcl_flowers:lilac_top +mcl_mushrooms:brown_mushroom_block_cap_001011 +mcl_flowers:peony_top +mesecons_button:button_stone_off +mcl_doors:dark_oak_trapdoor_open +mcl_doors:spruce_door_t_3 +mcl_flowerpots:flower_pot_cherrysapling +mcl_stairs:slab_deepslate_tiles +mcl_stairs:slab_redsandstonesmooth2_double +mcl_chests:white_shulker_box_small +mcl_stairs:stair_bamboo_mosaic_inner +mesecons:wire_10010000_off +mcl_mushrooms:red_mushroom_block_cap_001100 +mcl_mushrooms:red_mushroom_block_cap_100000 +mcl_end:end_rod_black +mcl_ocean:dead_tube_coral_fan +mcl_doors:spruce_door_b_1 +mesecons:wire_10110000_on +mcl_end:end_rod_silver +mcl_mushrooms:red_mushroom_block_cap_110011 +mcl_mushrooms:brown_mushroom_block_cap_100101 +mesecons:wire_10001000_on +mcl_mangrove:propagule_coarse_dirt +mcl_mushrooms:red_mushroom_block_cap_110111 +mesecons:wire_01010001_on +mcl_fences:acacia_fence_gate +mesecons:wire_10011000_on +mcl_deepslate:deepslate_polished +mcl_doors:iron_door_b_1 +mesecons:wire_00110000_on +mcl_mushrooms:brown_mushroom_block_cap_000001 +mcl_deepslate:deepslate_with_iron +mcl_core:darktree_bark +mcl_stairs:stair_lapisblock_outer +mcl_mushrooms:red_mushroom_block_stem_full +mcl_walls:sandstone_16 +mcl_stairs:stair_stonebrick_outer +mcl_meshhand:mcl_skins_base_1EEB592FF_female_surv +mesecons:wire_10010000_on +mcl_meshhand:mcl_skins_base_1B47A57FF_female_crea +mesecons:wire_10111000_on +mcl_mangrove:mangrove_tree +mcl_walls:cobble_3 +mcl_copper:block_cut +mcl_mushrooms:brown_mushroom_block_cap_010010 +mcl_fences:dark_oak_fence_gate_open +mesecons:wire_11000100_off +mcl_mushrooms:brown_mushroom_block_cap_101111 +mcl_mushrooms:red_mushroom_block_cap_100100 +mcl_cauldrons:cauldron_3r +mcl_stairs:slab_diorite_smooth +mcl_stairs:stair_sprucewood_outer +mcl_stairs:slab_stonebrickmossy_double +mcl_mushrooms:red_mushroom_block_cap_101010 +mesecons:wire_11010100_off +mcl_core:stone_with_redstone +mcl_stairs:slab_stone_double +mcl_stairs:stair_crimson_hyphae_wood_outer +mesecons:wire_11111011_on +mcl_villages:stonebrickcarved +mcl_signs:standing_sign45_birchwood +mcl_mushrooms:brown_mushroom_block_cap_000101 +mcl_doors:dark_oak_door_b_1 +mesecons_pistons:piston_sticky_on +mcl_farming:pumpkin_7 +mcl_walls:andesite_15 +mcl_walls:rednetherbrick_2 +mcl_ocean:dead_horn_coral +mcl_mushrooms:red_mushroom_block_cap_011100 +mcl_cherry_blossom:cherry_trapdoor_open +mesecons:wire_01110101_off +mcl_mushrooms:brown_mushroom_block_cap_101110 +mcl_mushrooms:red_mushroom_block_cap_101001 +mcl_crimson:shroomlight +mesecons:wire_10110010_on +mcl_farming:wheat_2 +mcl_walls:cobble_8 +mcl_ocean:prismarine_brick +mesecons:wire_01110010_on +mcl_walls:stonebrick_9 +mcl_mushrooms:red_mushroom_block_cap_011111 +mcl_mushrooms:brown_mushroom_block_cap_111101 +mcl_core:lapisblock +mcl_farming:potato_7 +mcl_stairs:stair_waxed_copper_weathered_cut +mesecons_pistons:piston_down_normal_off +mcl_mushrooms:red_mushroom_block_cap_000110 +mcl_heads:stalker45 +mcl_blackstone:wall_10 +mcl_core:stonebrickmossy +mcl_stairs:slab_prismarine_brick_top +mcl_walls:rednetherbrick_8 +mesecons_pressureplates:pressure_plate_stone_on +mesecons:wire_10101010_off +mcl_mushrooms:red_mushroom_block_cap_100110 +mcl_deepslate:deepslatetileswall_0 +mcl_mushrooms:red_mushroom_block_cap_100101 +mesecons_button:button_junglewood_on +mcl_campfires:soul_campfire_lit +mcl_core:grass_path +mcl_colorblocks:concrete_powder_pink +mcl_stairs:stair_darktree_bark_outer +mcl_doors:birch_door_b_2 +mcl_observers:observer_up_on +mcl_mushrooms:brown_mushroom_block_cap_001110 +mcl_mushrooms:red_mushroom_block_cap_101011 +xpanes:pane_orange_flat +mesecons:wire_00010001_off +mcl_walls:redsandstone_15 +mesecons:wire_01100110_off +xpanes:pane_blue_flat +xpanes:pane_gray_flat +mesecons:wire_01110110_off +mcl_mushrooms:red_mushroom_block_cap_111011 +mcl_blackstone:wall_9 +mesecons_pressureplates:pressure_plate_birchwood_off +mcl_mushrooms:brown_mushroom_block_cap_000100 +mcl_core:stripped_spruce_bark +mcl_mushrooms:brown_mushroom_block_cap_001010 +mcl_walls:netherbrick_15 +mcl_wool:brown_carpet +mcl_colorblocks:glazed_terracotta_pillar_magenta +mcl_stairs:stair_diorite_smooth +mesecons_delayer:delayer_on_3 +mcl_core:darkleaves_orphan +mcl_core:stripped_spruce +mcl_walls:brick_10 +mcl_walls:cobble +mesecons_button:button_sprucewood_on +mesecons_pistons:piston_down_sticky_off +mclx_fences:nether_brick_fence_gate_open +mcl_crimson:crimson_trapdoor_ladder +mesecons_pressureplates:pressure_plate_wood_on +mcl_stairs:slab_sandstone +mcl_copper:block_raw +mcl_stairs:slab_wood_double +mcl_mushrooms:brown_mushroom_block_cap_101100 +mcl_walls:mossycobble_12 +mcl_walls:redsandstone_4 +mcl_walls:sandstone_4 +mcl_mushrooms:brown_mushroom_block_cap_001000 +mcl_colorblocks:glazed_terracotta_purple +mcl_mud:packed_mud +mcl_stairs:stair_purpur_block_inner +mcl_mushrooms:red_mushroom_block_cap_011010 +mcl_walls:andesite_3 +mcl_mangrove:propagule_dirt +mcl_ocean:dead_tube_coral +mcl_stairs:slab_prismarine +mcl_copper:block_exposed +mcl_mushrooms:brown_mushroom_block_cap_100000 +mcl_mushrooms:brown_mushroom_block_cap_101101 +mcl_deepslate:deepslatecobbledwall_0 +mcl_walls:granite_3 +mcl_end:end_rod_red +mcl_crimson:warped_door_t_2 +mesecons_button:button_acaciawood_off +mcl_sponges:sponge_wet_river_water +mcl_lightning_rods:rod_powered +mcl_core:spruceleaves +mcl_mushrooms:brown_mushroom_block_cap_010110 +mcl_deepslate:deepslatepolishedwall_10 +mcl_ocean:seagrass_gravel +mesecons:wire_01110110_on +mcl_core:glass_light_blue +mcl_doors:dark_oak_door_t_2 +mesecons_lightstone:lightstone_on_lime +xpanes:pane_pink_flat +mesecons:wire_11100000_off +mesecons_lightstone:lightstone_on_silver +xpanes:pane_lime +mesecons:wire_01110011_off +mesecons:wire_01000100_off +mcl_mushrooms:brown_mushroom_block_cap_110101 +mcl_raw_ores:raw_gold_block +mesecons:wire_11110101_off +mcl_stairs:slab_waxed_copper_exposed_cut_top +mcl_cauldrons:cauldron_1r +mcl_cauldrons:cauldron_2_lava +mesecons_lightstone:lightstone_on_grey +mesecons:wire_11010100_on +mcl_brewing:stand_111 +mcl_mushrooms:red_mushroom_block_cap_010000 +mcl_beds:bed_red_top +mesecons_lightstone:lightstone_on +mcl_walls:mossycobble_4 +mcl_heads:wither_skeleton22_5 +mcl_signs:standing_sign22_5_mangrove_wood +mcl_stairs:stair_mud_brick +mcl_heads:zombie22_5 +mcl_mushrooms:brown_mushroom_block_cap_011010 +mcl_farming:carrot_1 +mcl_stairs:slab_red_nether_brick_double +mcl_core:sapling +mcl_stairs:stair_concrete_black +mcl_wool:white +mcl_stairs:slab_sandstone_double +mesecons:wire_10110000_off +mcl_mushrooms:red_mushroom_block_cap_100001 +mesecons:wire_10011000_off +mcl_mushrooms:brown_mushroom_block_cap_001001 +mesecons_delayer:delayer_off_3 +mcl_stairs:slab_andesite +mcl_meshhand:mcl_skins_base_18D471DFF_male_surv +mcl_flowerpots:flower_pot +mcl_mushrooms:red_mushroom_block_cap_101100 +mcl_copper:waxed_block_exposed_cut +mcl_flowerpots:flower_pot_junglesapling +mcl_core:diorite +mcl_flowerpots:flower_pot_birchsapling +mcl_maps:filled_map_mcl_skins_base_1B47A57FF_male_crea +mcl_chests:yellow_shulker_box +mcl_monster_eggs:monster_egg_stonebrickcracked +mesecons:wire_00110010_on +mcl_stairs:slab_junglewood_top +mcl_fences:spruce_fence +mcl_stairs:slab_jungletree_bark_top +mcl_stairs:stair_birchwood_outer +mesecons:wire_11110011_off +mesecons:wire_11111001_off +mcl_walls:prismarine_4 +mcl_flowerpots:flower_pot_oxeye_daisy +mesecons_pressureplates:pressure_plate_acaciawood_on +mcl_stairs:stair_andesite +mesecons:wire_01000000_off +mesecons:wire_11100100_on +mcl_flowerpots:flower_pot_propagule +mcl_stairs:stair_nether_brick +mcl_core:podzol_snow +mesecons:wire_10111001_off +mesecons:wire_11010001_on +mcl_walls:granite_21 +mcl_flowerpots:flower_pot_warped_roots +mcl_doors:acacia_door_t_1 +mcl_core:realm_barrier +mcl_maps:filled_map_mcl_skins_base_1B47A57FF_female_crea +mcl_flowerpots:flower_pot_deadbush +mcl_maps:filled_map_mcl_skins_base_1EEB592FF_female_surv +mcl_end:chorus_flower_dead +mesecons_lightstone:lightstone_off_red +mesecons_delayer:delayer_on_2 +mcl_ocean:sea_pickle_2_dead_brain_coral_block +mcl_stairs:slab_stone +mcl_beds:bed_white_bottom +mcl_maps:filled_map_mcl_skins_base_18D471DFF_male_surv +mcl_mushrooms:red_mushroom_block_cap_001101 +mcl_mushrooms:brown_mushroom_block_cap_100011 +mcl_meshhand:character_male_crea +mcl_signs:standing_sign +mcl_mushrooms:red_mushroom_block_cap_010110 +mesecons_pistons:piston_up_normal_off +mcl_signs:standing_sign_birchwood +mcl_signs:standing_sign22_5_birchwood +mcl_stairs:stair_end_bricks_inner +mcl_signs:standing_sign67_5_birchwood +mesecons_pressureplates:pressure_plate_wood_off +mcl_core:frosted_ice_3 +mcl_signs:standing_sign22_5_darkwood +mcl_signs:standing_sign45_darkwood +mcl_stairs:stair_copper_oxidized_cut_inner +mcl_crimson:crimson_door_b_2 +mesecons_lightstone:lightstone_off_yellow +mesecons_delayer:delayer_off_4 +mcl_armor_stand:armor_stand +mcl_mushrooms:red_mushroom_block_cap_100011 +mcl_signs:standing_sign22_5_acaciawood +mcl_core:bedrock +mcl_walls:netherbrick_21 +mcl_deepslate:deepslate_tiles_cracked +mcl_stairs:stair_wood_inner +mcl_signs:standing_sign45_acaciawood +mclx_core:river_water_source +mcl_deepslate:deepslatepolishedwall +mcl_walls:sandstone_7 +mesecons_pistons:piston_sticky_off +mcl_doors:wooden_door_t_4 +mcl_colorblocks:glazed_terracotta_pillar_brown +mesecons_lightstone:lightstone_off_lime +mcl_ocean:fire_coral_fan +mesecons:wire_11011001_on +mcl_walls:stonebrickmossy_7 +mcl_ocean:seagrass_dirt +mcl_crimson:crimson_trapdoor_open +mcl_meshhand:character_male_surv +mcl_flowerpots:flower_pot_crimson_roots +mcl_ocean:sea_pickle_2_off_dead_brain_coral_block +mcl_chests:trapped_chest_on_small +mcl_maps:filled_map_mcl_skins_base_1B47A57FF_male_surv +mcl_walls:cobble_1 +mcl_stairs:slab_waxed_copper_cut_double +mcl_mushrooms:red_mushroom_block_cap_001111 +mcl_chests:red_shulker_box +mcl_amethyst:amethyst_block +mcl_walls:cobble_6 +mcl_core:stone_with_diamond +mcl_walls:redsandstone_10 +mcl_walls:cobble_9 +mcl_ocean:kelp_gravel +mcl_stairs:stair_deepslate_cobbled_outer +mesecons:wire_11101000_on +mcl_mushrooms:red_mushroom_block_cap_101000 +mcl_mushrooms:red_mushroom_block_cap_000001 +mesecons:wire_10101000_off +mesecons:wire_10110001_on +mcl_walls:mossycobble_6 +mesecons_torch:mesecon_torch_on +mcl_chests:blue_shulker_box +mcl_walls:mossycobble_11 +mcl_walls:mossycobble_13 +mcl_stairs:stair_prismarine_brick_outer +mcl_walls:andesite_1 +mcl_honey:honey_block +mcl_stairs:stair_granite_smooth_inner +mcl_stairs:slab_waxed_copper_oxidized_cut_double +mcl_core:acacialeaves_orphan +mcl_mushrooms:red_mushroom_block_cap_001000 +mcl_walls:andesite_11 +mesecons:wire_11101000_off +mcl_mushrooms:brown_mushroom_block_cap_000110 +mcl_walls:netherbrick_3 +mcl_mushrooms:red_mushroom_block_cap_000101 +mcl_stairs:slab_granite +mcl_nether:nether_lava_flowing +mcl_walls:granite_14 +mcl_stairs:slab_prismarine_brick_double +mesecons_solarpanel:solar_panel_inverted_on +mcl_flowerpots:flower_pot_sprucesapling +mcl_walls:endbricks_3 +mcl_walls:brick_2 +mcl_flowers:tallgrass +mcl_stairs:stair_darkwood_inner +mcl_walls:brick_7 +mcl_mushrooms:red_mushroom_block_cap_111110 +mcl_stairs:slab_sprucewood_double +mcl_signs:standing_sign_acaciawood +mcl_walls:brick +mesecons_lightstone:lightstone_off_green +mcl_stairs:slab_copper_exposed_cut_top +mesecons:wire_10011001_off +mcl_walls:sandstone_5 +mcl_heads:steve45 +mcl_walls:sandstone_6 +mcl_signs:standing_sign67_5_mangrove_wood +mcl_walls:prismarine_13 +mcl_meshhand:mcl_skins_base_1B47A57FF_male_crea +mcl_walls:sandstone_9 +mcl_deepslate:deepslate_with_redstone +mcl_doors:birch_door_t_3 +xpanes:pane_black_flat +mcl_lanterns:soul_lantern_ceiling +mcl_walls:sandstone_3 +mcl_meshhand:mcl_skins_base_1EEB592FF_male_surv +mcl_walls:diorite_16 +mcl_deepslate:deepslatetileswall_7 +mcl_end:end_rod_lime +mcl_walls:andesite_0 +mcl_stairs:slab_brick_block_double +mesecons:wire_11011000_off +mcl_walls:stonebrick_7 +mcl_walls:stonebrick_10 +mcl_cherry_blossom:pressure_plate_cherrywood_on +mcl_stairs:stair_stonebrick +mcl_walls:stonebrick_13 +mcl_chests:magenta_shulker_box_small +mcl_walls:stonebrickmossy_8 +mcl_walls:stonebrickmossy_16 +mcl_walls:stonebrickmossy_21 +mcl_mushrooms:brown_mushroom_block_cap_010011 +mcl_stairs:slab_diorite +mcl_crimson:stripped_crimson_hyphae_bark +mcl_signs:standing_sign22_5_sprucewood +mcl_colorblocks:concrete_purple +mcl_core:cobweb +mcl_amethyst:calcite +mcl_core:glass_green +mesecons:wire_11001100_on +mesecons:wire_10110010_off +mcl_walls:endbricks_7 +mcl_stairs:slab_sprucetree_bark_top +mcl_beehives:bee_nest_4 +mesecons:wire_11111110_off +mcl_core:void +mcl_farming:potato_6 +mesecons:wire_11110100_off +mesecons_button:button_junglewood_off +mcl_walls:netherbrick_7 +mcl_walls:netherbrick_10 +mcl_ocean:dead_fire_coral +mcl_stairs:stair_brick_block +mcl_stairs:slab_purpur_block +mcl_core:tree +mcl_core:light_1 +mcl_walls:rednetherbrick +mcl_mangrove:mangroveleaves +mcl_stairs:slab_deepslate_bricks_top +mcl_walls:mudbrick_0 +mesecons:wire_00110010_off +mcl_wool:magenta_carpet +mcl_walls:stonebrick_3 +mcl_wool:grey +mcl_core:sandstone +mcl_walls:mudbrick_13 +mcl_mushrooms:brown_mushroom_block_cap_101001 +mesecons:wire_00110011_on +mcl_stairs:stair_concrete_yellow +mesecons:wire_00110001_on +mcl_stairs:stair_junglewood +mcl_flowers:rose_bush +mcl_deepslate:deepslate_with_copper +mcl_walls:mudbrick_6 +mcl_stairs:stair_acaciawood +mcl_ocean:brain_coral_fan +mcl_stairs:stair_concrete_purple +mcl_stairs:stair_sprucewood +mcl_walls:granite_4 +mcl_ocean:sea_pickle_1_off_dead_brain_coral_block +mcl_deepslate:deepslate_tiles +mcl_stairs:slab_sprucewood_top +mcl_stairs:slab_stonebrickcracked_top +mcl_heads:skeleton45 +mcl_core:sand +mcl_stairs:slab_birchwood_top +mcl_walls:endbricks_5 +mcl_stairs:slab_waxed_copper_weathered_cut +mcl_mushrooms:red_mushroom_block_cap_010011 +mcl_flowers:waterlily +mcl_mushrooms:brown_mushroom_block_cap_111100 +mcl_stairs:slab_concrete_cyan +mcl_stairs:slab_darkwood_top +mcl_stairs:slab_stone_rough_double +mesecons_pistons:piston_up_normal_on +mcl_mushrooms:red_mushroom_block_cap_110110 +mcl_flowers:blue_orchid +mcl_stairs:stair_deepslate_bricks_outer +mcl_stairs:stair_andesite_outer +mcl_farming:sweet_berry_bush_3 +mcl_stairs:slab_andesite_top +mcl_walls:brick_6 +mcl_stairs:stair_granite_inner +mcl_walls:granite_12 +mcl_cartography_table:cartography_table +mcl_deepslate:deepslatecobbledwall_1 +mcl_mangrove:propagule +mcl_core:snow_7 +mcl_stairs:stair_diorite_inner +mcl_doors:iron_door_t_2 +mcl_stairs:slab_diorite_top +mesecons:wire_01010101_on +mcl_stairs:slab_cobble +mcl_stairs:slab_cobble_top +mcl_farming:hay_block +mcl_stairs:slab_diorite_double +mesecons:wire_11011000_on +mcl_stairs:stair_brick_block_outer +mcl_stairs:stair_brick_block_inner +mcl_chests:pink_shulker_box_small +mcl_signs:standing_sign67_5_junglewood +mcl_stairs:stair_sandstonesmooth2 +mcl_stairs:slab_sandstonesmooth2_top +mcl_meshhand:mcl_skins_base_1EEB592FF_male_crea +mcl_comparators:comparator_off_sub +mcl_stairs:stair_copper_exposed_cut_inner +mcl_walls:stonebrick_12 +mcl_stairs:stair_stonebrick_inner +mcl_stairs:slab_stonebrick_top +mesecons_button:button_acaciawood_on +mcl_stairs:slab_quartzblock +mcl_stairs:stair_quartz_smooth +mcl_walls:endbricks +mcl_stairs:stair_nether_brick_outer +mcl_stairs:stair_nether_brick_inner +mcl_doors:acacia_trapdoor_ladder +mcl_walls:rednetherbrick_5 +mcl_mushrooms:brown_mushroom_block_cap_010000 +mcl_brewing:stand_110 +mcl_stairs:stair_concrete_white +mesecons_button:button_crimson_hyphae_wood_on +mcl_beds:bed_purple_bottom +mcl_walls:mossycobble_5 +mcl_colorblocks:concrete_powder_blue +mesecons:wire_01010000_off +mcl_stairs:slab_prismarine_double +mcl_walls:prismarine_5 +mesecons:wire_10111001_on +mcl_cake:cake_5 +mcl_ocean:prismarine_dark +mcl_wool:cyan +xpanes:pane_black +mcl_stairs:slab_mud_brick_double +mcl_flowerpots:flower_pot_sapling +mcl_walls:stonebrickmossy_2 +mcl_colorblocks:hardened_clay_yellow +mcl_stairs:slab_andesite_smooth_top +mcl_doors:dark_oak_door_b_2 +mcl_walls:brick_8 +mcl_core:bone_block +mcl_mushrooms:red_mushroom_block_cap_111001 +mcl_stairs:slab_stonebrickmossy_top +mesecons_pressureplates:pressure_plate_junglewood_on +mesecons:wire_11111111_on +mcl_walls:endbricks_6 +mcl_wool:orange +mcl_deepslate:deepslatebrickswall_9 +mcl_walls:sandstone_0 +mcl_end:chorus_flower +mcl_mangrove:propagule_clay +mcl_mangrove:water_logged_roots +mcl_walls:mudbrick_15 +mcl_ocean:sea_pickle_3_off_dead_brain_coral_block +mcl_mushrooms:red_mushroom_block_cap_000010 +mesecons:wire_00100000_on +mcl_mangrove:mangrove_wood_fence_gate_open +mcl_sculk:vein +mesecons_noteblock:noteblock +mcl_stairs:stair_mangrove_wood +mesecons:wire_01110001_on +mesecons:wire_11110000_off +mcl_crimson:twisting_vines +mcl_mushrooms:brown_mushroom_block_cap_011111 +mesecons:wire_11111001_on +mcl_mangrove:mangrove_tree_bark +mcl_stairs:slab_warped_hyphae_wood +mcl_flowerpots:flower_pot_fern +mcl_nether:magma +mcl_walls:stonebrickmossy_6 +mesecons:wire_10111000_off +mesecons:wire_00010001_on +mcl_core:stonebrickcracked +mcl_copper:waxed_block_weathered_cut +mcl_crimson:crimson_door_t_2 +mcl_crimson:crimson_door_t_3 +mesecons:wire_01110001_off +mcl_mushrooms:brown_mushroom_block_cap_111011 +mcl_mushrooms:red_mushroom_block_cap_110001 +mesecons:wire_11101010_off +mcl_mushrooms:red_mushroom_block_cap_101110 +mcl_flowers:dandelion +mcl_ocean:dried_kelp_block +mcl_meshhand:mcl_skins_base_18D471DFF_female_surv +mcl_signs:standing_sign45_junglewood +xpanes:pane_orange +mcl_stairs:slab_mossycobble +mcl_heads:zombie67_5 +mcl_mushrooms:red_mushroom_block_cap_110100 +mcl_core:light_13 +mcl_heads:zombie_wall +mcl_farming:wheat +mcl_core:cobble +mesecons:wire_11001100_off +mcl_stairs:stair_mossycobble_inner +mesecons:wire_01110111_off +mcl_stairs:slab_redsandstonesmooth2_top +mcl_core:wood +mesecons:wire_11011001_off +mcl_flowerpots:flower_pot_wither_rose +mcl_signs:wall_sign_acaciawood +mesecons:wire_00010000_on +mcl_walls:stonebrickmossy_14 +mcl_walls:diorite_4 +mesecons:wire_10101000_on +mcl_deepslate:deepslatepolishedwall_5 +mcl_deepslate:deepslatebrickswall_0 +mcl_stairs:slab_deepslate_polished_double +mcl_stairs:stair_stone_rough +mcl_fences:fence_gate +mcl_mushrooms:red_mushroom_block_cap_010100 +mcl_crimson:crimson_nylium +mcl_stairs:stair_deepslate_tiles_inner +mcl_stairs:stair_copper_cut_inner